ch-admin-api-client-typescript 3.4.8 → 3.5.1
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 +314 -24
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +326 -14
- package/package.json +1 -1
- package/src/api.ts +466 -30
package/lib/api.d.ts
CHANGED
|
@@ -581,6 +581,24 @@ export interface ArticleItemModel {
|
|
|
581
581
|
* @memberof ArticleItemModel
|
|
582
582
|
*/
|
|
583
583
|
'hospitalSlug'?: string | null;
|
|
584
|
+
/**
|
|
585
|
+
*
|
|
586
|
+
* @type {string}
|
|
587
|
+
* @memberof ArticleItemModel
|
|
588
|
+
*/
|
|
589
|
+
'youtubeUrl'?: string | null;
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @type {Array<ArticleTagItemModel>}
|
|
593
|
+
* @memberof ArticleItemModel
|
|
594
|
+
*/
|
|
595
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
596
|
+
/**
|
|
597
|
+
*
|
|
598
|
+
* @type {Array<MediaModel>}
|
|
599
|
+
* @memberof ArticleItemModel
|
|
600
|
+
*/
|
|
601
|
+
'medias'?: Array<MediaModel> | null;
|
|
584
602
|
/**
|
|
585
603
|
*
|
|
586
604
|
* @type {AuditableEntity}
|
|
@@ -662,46 +680,46 @@ export interface ArticleModel {
|
|
|
662
680
|
'hospitalSlug'?: string | null;
|
|
663
681
|
/**
|
|
664
682
|
*
|
|
665
|
-
* @type {
|
|
683
|
+
* @type {string}
|
|
666
684
|
* @memberof ArticleModel
|
|
667
685
|
*/
|
|
668
|
-
'
|
|
686
|
+
'youtubeUrl'?: string | null;
|
|
669
687
|
/**
|
|
670
688
|
*
|
|
671
|
-
* @type {
|
|
689
|
+
* @type {Array<ArticleTagItemModel>}
|
|
672
690
|
* @memberof ArticleModel
|
|
673
691
|
*/
|
|
674
|
-
'
|
|
692
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
675
693
|
/**
|
|
676
694
|
*
|
|
677
|
-
* @type {
|
|
695
|
+
* @type {Array<MediaModel>}
|
|
678
696
|
* @memberof ArticleModel
|
|
679
697
|
*/
|
|
680
|
-
'
|
|
698
|
+
'medias'?: Array<MediaModel> | null;
|
|
681
699
|
/**
|
|
682
700
|
*
|
|
683
|
-
* @type {
|
|
701
|
+
* @type {AuditableEntity}
|
|
684
702
|
* @memberof ArticleModel
|
|
685
703
|
*/
|
|
686
|
-
'
|
|
704
|
+
'auditableEntity'?: AuditableEntity;
|
|
687
705
|
/**
|
|
688
706
|
*
|
|
689
707
|
* @type {string}
|
|
690
708
|
* @memberof ArticleModel
|
|
691
709
|
*/
|
|
692
|
-
'
|
|
710
|
+
'description'?: string | null;
|
|
693
711
|
/**
|
|
694
712
|
*
|
|
695
|
-
* @type {
|
|
713
|
+
* @type {string}
|
|
696
714
|
* @memberof ArticleModel
|
|
697
715
|
*/
|
|
698
|
-
'
|
|
716
|
+
'overview'?: string | null;
|
|
699
717
|
/**
|
|
700
718
|
*
|
|
701
|
-
* @type {
|
|
719
|
+
* @type {string}
|
|
702
720
|
* @memberof ArticleModel
|
|
703
721
|
*/
|
|
704
|
-
'
|
|
722
|
+
'content'?: string | null;
|
|
705
723
|
}
|
|
706
724
|
/**
|
|
707
725
|
*
|
|
@@ -4201,6 +4219,19 @@ export interface CreateHospitalEvaluationCommand {
|
|
|
4201
4219
|
*/
|
|
4202
4220
|
'referenceUrl'?: string | null;
|
|
4203
4221
|
}
|
|
4222
|
+
/**
|
|
4223
|
+
*
|
|
4224
|
+
* @export
|
|
4225
|
+
* @interface CreateHospitalLanguageCommand
|
|
4226
|
+
*/
|
|
4227
|
+
export interface CreateHospitalLanguageCommand {
|
|
4228
|
+
/**
|
|
4229
|
+
*
|
|
4230
|
+
* @type {string}
|
|
4231
|
+
* @memberof CreateHospitalLanguageCommand
|
|
4232
|
+
*/
|
|
4233
|
+
'langaugeCode'?: string | null;
|
|
4234
|
+
}
|
|
4204
4235
|
/**
|
|
4205
4236
|
*
|
|
4206
4237
|
* @export
|
|
@@ -4752,7 +4783,19 @@ export interface CreateServiceReviewCommand {
|
|
|
4752
4783
|
* @type {string}
|
|
4753
4784
|
* @memberof CreateServiceReviewCommand
|
|
4754
4785
|
*/
|
|
4755
|
-
'
|
|
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;
|
|
4756
4799
|
/**
|
|
4757
4800
|
*
|
|
4758
4801
|
* @type {boolean}
|
|
@@ -7580,6 +7623,44 @@ export interface HospitalItemModel {
|
|
|
7580
7623
|
*/
|
|
7581
7624
|
'auditableEntity'?: AuditableEntity;
|
|
7582
7625
|
}
|
|
7626
|
+
/**
|
|
7627
|
+
*
|
|
7628
|
+
* @export
|
|
7629
|
+
* @interface HospitalLanguageItemModel
|
|
7630
|
+
*/
|
|
7631
|
+
export interface HospitalLanguageItemModel {
|
|
7632
|
+
/**
|
|
7633
|
+
*
|
|
7634
|
+
* @type {string}
|
|
7635
|
+
* @memberof HospitalLanguageItemModel
|
|
7636
|
+
*/
|
|
7637
|
+
'code'?: string | null;
|
|
7638
|
+
/**
|
|
7639
|
+
*
|
|
7640
|
+
* @type {string}
|
|
7641
|
+
* @memberof HospitalLanguageItemModel
|
|
7642
|
+
*/
|
|
7643
|
+
'name'?: string | null;
|
|
7644
|
+
}
|
|
7645
|
+
/**
|
|
7646
|
+
*
|
|
7647
|
+
* @export
|
|
7648
|
+
* @interface HospitalLanguagesModel
|
|
7649
|
+
*/
|
|
7650
|
+
export interface HospitalLanguagesModel {
|
|
7651
|
+
/**
|
|
7652
|
+
*
|
|
7653
|
+
* @type {Array<HospitalLanguageItemModel>}
|
|
7654
|
+
* @memberof HospitalLanguagesModel
|
|
7655
|
+
*/
|
|
7656
|
+
'items'?: Array<HospitalLanguageItemModel> | null;
|
|
7657
|
+
/**
|
|
7658
|
+
*
|
|
7659
|
+
* @type {PagedListMetaData}
|
|
7660
|
+
* @memberof HospitalLanguagesModel
|
|
7661
|
+
*/
|
|
7662
|
+
'metaData'?: PagedListMetaData;
|
|
7663
|
+
}
|
|
7583
7664
|
/**
|
|
7584
7665
|
*
|
|
7585
7666
|
* @export
|
|
@@ -7742,6 +7823,12 @@ export interface HospitalModel {
|
|
|
7742
7823
|
* @memberof HospitalModel
|
|
7743
7824
|
*/
|
|
7744
7825
|
'customStyle'?: string | null;
|
|
7826
|
+
/**
|
|
7827
|
+
*
|
|
7828
|
+
* @type {Array<HospitalLanguageItemModel>}
|
|
7829
|
+
* @memberof HospitalModel
|
|
7830
|
+
*/
|
|
7831
|
+
'langauges'?: Array<HospitalLanguageItemModel> | null;
|
|
7745
7832
|
}
|
|
7746
7833
|
/**
|
|
7747
7834
|
*
|
|
@@ -10127,6 +10214,24 @@ export interface ServiceReviewItemModel {
|
|
|
10127
10214
|
* @memberof ServiceReviewItemModel
|
|
10128
10215
|
*/
|
|
10129
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;
|
|
10130
10235
|
/**
|
|
10131
10236
|
*
|
|
10132
10237
|
* @type {string}
|
|
@@ -10206,6 +10311,24 @@ export interface ServiceReviewModel {
|
|
|
10206
10311
|
* @memberof ServiceReviewModel
|
|
10207
10312
|
*/
|
|
10208
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;
|
|
10209
10332
|
/**
|
|
10210
10333
|
*
|
|
10211
10334
|
* @type {string}
|
|
@@ -10271,7 +10394,19 @@ export interface ServiceReviewModel {
|
|
|
10271
10394
|
* @type {string}
|
|
10272
10395
|
* @memberof ServiceReviewModel
|
|
10273
10396
|
*/
|
|
10274
|
-
'
|
|
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;
|
|
10275
10410
|
}
|
|
10276
10411
|
/**
|
|
10277
10412
|
*
|
|
@@ -13056,7 +13191,31 @@ export interface UpdateServiceReviewCommand {
|
|
|
13056
13191
|
* @type {string}
|
|
13057
13192
|
* @memberof UpdateServiceReviewCommand
|
|
13058
13193
|
*/
|
|
13059
|
-
'
|
|
13194
|
+
'name'?: string | null;
|
|
13195
|
+
/**
|
|
13196
|
+
*
|
|
13197
|
+
* @type {string}
|
|
13198
|
+
* @memberof UpdateServiceReviewCommand
|
|
13199
|
+
*/
|
|
13200
|
+
'slug'?: string | null;
|
|
13201
|
+
/**
|
|
13202
|
+
*
|
|
13203
|
+
* @type {string}
|
|
13204
|
+
* @memberof UpdateServiceReviewCommand
|
|
13205
|
+
*/
|
|
13206
|
+
'description'?: string | null;
|
|
13207
|
+
/**
|
|
13208
|
+
*
|
|
13209
|
+
* @type {string}
|
|
13210
|
+
* @memberof UpdateServiceReviewCommand
|
|
13211
|
+
*/
|
|
13212
|
+
'content'?: string | null;
|
|
13213
|
+
/**
|
|
13214
|
+
*
|
|
13215
|
+
* @type {string}
|
|
13216
|
+
* @memberof UpdateServiceReviewCommand
|
|
13217
|
+
*/
|
|
13218
|
+
'languageCode'?: string | null;
|
|
13060
13219
|
/**
|
|
13061
13220
|
*
|
|
13062
13221
|
* @type {boolean}
|
|
@@ -21950,6 +22109,36 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21950
22109
|
* @throws {RequiredError}
|
|
21951
22110
|
*/
|
|
21952
22111
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22112
|
+
/**
|
|
22113
|
+
*
|
|
22114
|
+
* @summary Get all GetAllLanguages.
|
|
22115
|
+
* @param {string} hospitalId
|
|
22116
|
+
* @param {string} [name]
|
|
22117
|
+
* @param {number} [page]
|
|
22118
|
+
* @param {number} [limit]
|
|
22119
|
+
* @param {Date} [lastRetrieved]
|
|
22120
|
+
* @param {*} [options] Override http request option.
|
|
22121
|
+
* @throws {RequiredError}
|
|
22122
|
+
*/
|
|
22123
|
+
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22124
|
+
/**
|
|
22125
|
+
*
|
|
22126
|
+
* @summary Delete GetAllLanguage.
|
|
22127
|
+
* @param {string} hospitalId
|
|
22128
|
+
* @param {string} languageCode
|
|
22129
|
+
* @param {*} [options] Override http request option.
|
|
22130
|
+
* @throws {RequiredError}
|
|
22131
|
+
*/
|
|
22132
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22133
|
+
/**
|
|
22134
|
+
*
|
|
22135
|
+
* @summary Create HospitalLanguages.
|
|
22136
|
+
* @param {string} hospitalId
|
|
22137
|
+
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
22138
|
+
* @param {*} [options] Override http request option.
|
|
22139
|
+
* @throws {RequiredError}
|
|
22140
|
+
*/
|
|
22141
|
+
apiV1HospitalsHospitalIdLanguagesPost: (hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21953
22142
|
/**
|
|
21954
22143
|
*
|
|
21955
22144
|
* @summary Get all HospitalMedias.
|
|
@@ -22684,6 +22873,36 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22684
22873
|
* @throws {RequiredError}
|
|
22685
22874
|
*/
|
|
22686
22875
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22876
|
+
/**
|
|
22877
|
+
*
|
|
22878
|
+
* @summary Get all GetAllLanguages.
|
|
22879
|
+
* @param {string} hospitalId
|
|
22880
|
+
* @param {string} [name]
|
|
22881
|
+
* @param {number} [page]
|
|
22882
|
+
* @param {number} [limit]
|
|
22883
|
+
* @param {Date} [lastRetrieved]
|
|
22884
|
+
* @param {*} [options] Override http request option.
|
|
22885
|
+
* @throws {RequiredError}
|
|
22886
|
+
*/
|
|
22887
|
+
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>>;
|
|
22888
|
+
/**
|
|
22889
|
+
*
|
|
22890
|
+
* @summary Delete GetAllLanguage.
|
|
22891
|
+
* @param {string} hospitalId
|
|
22892
|
+
* @param {string} languageCode
|
|
22893
|
+
* @param {*} [options] Override http request option.
|
|
22894
|
+
* @throws {RequiredError}
|
|
22895
|
+
*/
|
|
22896
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22897
|
+
/**
|
|
22898
|
+
*
|
|
22899
|
+
* @summary Create HospitalLanguages.
|
|
22900
|
+
* @param {string} hospitalId
|
|
22901
|
+
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
22902
|
+
* @param {*} [options] Override http request option.
|
|
22903
|
+
* @throws {RequiredError}
|
|
22904
|
+
*/
|
|
22905
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22687
22906
|
/**
|
|
22688
22907
|
*
|
|
22689
22908
|
* @summary Get all HospitalMedias.
|
|
@@ -23418,6 +23637,36 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23418
23637
|
* @throws {RequiredError}
|
|
23419
23638
|
*/
|
|
23420
23639
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
23640
|
+
/**
|
|
23641
|
+
*
|
|
23642
|
+
* @summary Get all GetAllLanguages.
|
|
23643
|
+
* @param {string} hospitalId
|
|
23644
|
+
* @param {string} [name]
|
|
23645
|
+
* @param {number} [page]
|
|
23646
|
+
* @param {number} [limit]
|
|
23647
|
+
* @param {Date} [lastRetrieved]
|
|
23648
|
+
* @param {*} [options] Override http request option.
|
|
23649
|
+
* @throws {RequiredError}
|
|
23650
|
+
*/
|
|
23651
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
23652
|
+
/**
|
|
23653
|
+
*
|
|
23654
|
+
* @summary Delete GetAllLanguage.
|
|
23655
|
+
* @param {string} hospitalId
|
|
23656
|
+
* @param {string} languageCode
|
|
23657
|
+
* @param {*} [options] Override http request option.
|
|
23658
|
+
* @throws {RequiredError}
|
|
23659
|
+
*/
|
|
23660
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
23661
|
+
/**
|
|
23662
|
+
*
|
|
23663
|
+
* @summary Create HospitalLanguages.
|
|
23664
|
+
* @param {string} hospitalId
|
|
23665
|
+
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
23666
|
+
* @param {*} [options] Override http request option.
|
|
23667
|
+
* @throws {RequiredError}
|
|
23668
|
+
*/
|
|
23669
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
23421
23670
|
/**
|
|
23422
23671
|
*
|
|
23423
23672
|
* @summary Get all HospitalMedias.
|
|
@@ -24181,6 +24430,39 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24181
24430
|
* @memberof HospitalsApi
|
|
24182
24431
|
*/
|
|
24183
24432
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
24433
|
+
/**
|
|
24434
|
+
*
|
|
24435
|
+
* @summary Get all GetAllLanguages.
|
|
24436
|
+
* @param {string} hospitalId
|
|
24437
|
+
* @param {string} [name]
|
|
24438
|
+
* @param {number} [page]
|
|
24439
|
+
* @param {number} [limit]
|
|
24440
|
+
* @param {Date} [lastRetrieved]
|
|
24441
|
+
* @param {*} [options] Override http request option.
|
|
24442
|
+
* @throws {RequiredError}
|
|
24443
|
+
* @memberof HospitalsApi
|
|
24444
|
+
*/
|
|
24445
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
24446
|
+
/**
|
|
24447
|
+
*
|
|
24448
|
+
* @summary Delete GetAllLanguage.
|
|
24449
|
+
* @param {string} hospitalId
|
|
24450
|
+
* @param {string} languageCode
|
|
24451
|
+
* @param {*} [options] Override http request option.
|
|
24452
|
+
* @throws {RequiredError}
|
|
24453
|
+
* @memberof HospitalsApi
|
|
24454
|
+
*/
|
|
24455
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24456
|
+
/**
|
|
24457
|
+
*
|
|
24458
|
+
* @summary Create HospitalLanguages.
|
|
24459
|
+
* @param {string} hospitalId
|
|
24460
|
+
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
24461
|
+
* @param {*} [options] Override http request option.
|
|
24462
|
+
* @throws {RequiredError}
|
|
24463
|
+
* @memberof HospitalsApi
|
|
24464
|
+
*/
|
|
24465
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24184
24466
|
/**
|
|
24185
24467
|
*
|
|
24186
24468
|
* @summary Get all HospitalMedias.
|
|
@@ -26670,6 +26952,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26670
26952
|
/**
|
|
26671
26953
|
*
|
|
26672
26954
|
* @summary Get all ServiceReviews.
|
|
26955
|
+
* @param {string} [id]
|
|
26673
26956
|
* @param {string} [serviceId]
|
|
26674
26957
|
* @param {string} [serviceName]
|
|
26675
26958
|
* @param {string} [patientId]
|
|
@@ -26686,7 +26969,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26686
26969
|
* @param {*} [options] Override http request option.
|
|
26687
26970
|
* @throws {RequiredError}
|
|
26688
26971
|
*/
|
|
26689
|
-
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>;
|
|
26972
|
+
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>;
|
|
26690
26973
|
/**
|
|
26691
26974
|
*
|
|
26692
26975
|
* @summary Create a ServiceReview.
|
|
@@ -26706,10 +26989,11 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26706
26989
|
/**
|
|
26707
26990
|
*
|
|
26708
26991
|
* @param {string} serviceReviewId
|
|
26992
|
+
* @param {string} [languageCode]
|
|
26709
26993
|
* @param {*} [options] Override http request option.
|
|
26710
26994
|
* @throws {RequiredError}
|
|
26711
26995
|
*/
|
|
26712
|
-
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26996
|
+
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26713
26997
|
/**
|
|
26714
26998
|
*
|
|
26715
26999
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -26778,6 +27062,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
26778
27062
|
/**
|
|
26779
27063
|
*
|
|
26780
27064
|
* @summary Get all ServiceReviews.
|
|
27065
|
+
* @param {string} [id]
|
|
26781
27066
|
* @param {string} [serviceId]
|
|
26782
27067
|
* @param {string} [serviceName]
|
|
26783
27068
|
* @param {string} [patientId]
|
|
@@ -26794,7 +27079,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
26794
27079
|
* @param {*} [options] Override http request option.
|
|
26795
27080
|
* @throws {RequiredError}
|
|
26796
27081
|
*/
|
|
26797
|
-
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>>;
|
|
27082
|
+
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>>;
|
|
26798
27083
|
/**
|
|
26799
27084
|
*
|
|
26800
27085
|
* @summary Create a ServiceReview.
|
|
@@ -26814,10 +27099,11 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
26814
27099
|
/**
|
|
26815
27100
|
*
|
|
26816
27101
|
* @param {string} serviceReviewId
|
|
27102
|
+
* @param {string} [languageCode]
|
|
26817
27103
|
* @param {*} [options] Override http request option.
|
|
26818
27104
|
* @throws {RequiredError}
|
|
26819
27105
|
*/
|
|
26820
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
27106
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
26821
27107
|
/**
|
|
26822
27108
|
*
|
|
26823
27109
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -26886,6 +27172,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
26886
27172
|
/**
|
|
26887
27173
|
*
|
|
26888
27174
|
* @summary Get all ServiceReviews.
|
|
27175
|
+
* @param {string} [id]
|
|
26889
27176
|
* @param {string} [serviceId]
|
|
26890
27177
|
* @param {string} [serviceName]
|
|
26891
27178
|
* @param {string} [patientId]
|
|
@@ -26902,7 +27189,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
26902
27189
|
* @param {*} [options] Override http request option.
|
|
26903
27190
|
* @throws {RequiredError}
|
|
26904
27191
|
*/
|
|
26905
|
-
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>;
|
|
27192
|
+
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>;
|
|
26906
27193
|
/**
|
|
26907
27194
|
*
|
|
26908
27195
|
* @summary Create a ServiceReview.
|
|
@@ -26922,10 +27209,11 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
26922
27209
|
/**
|
|
26923
27210
|
*
|
|
26924
27211
|
* @param {string} serviceReviewId
|
|
27212
|
+
* @param {string} [languageCode]
|
|
26925
27213
|
* @param {*} [options] Override http request option.
|
|
26926
27214
|
* @throws {RequiredError}
|
|
26927
27215
|
*/
|
|
26928
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
27216
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
26929
27217
|
/**
|
|
26930
27218
|
*
|
|
26931
27219
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -26996,6 +27284,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
26996
27284
|
/**
|
|
26997
27285
|
*
|
|
26998
27286
|
* @summary Get all ServiceReviews.
|
|
27287
|
+
* @param {string} [id]
|
|
26999
27288
|
* @param {string} [serviceId]
|
|
27000
27289
|
* @param {string} [serviceName]
|
|
27001
27290
|
* @param {string} [patientId]
|
|
@@ -27013,7 +27302,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27013
27302
|
* @throws {RequiredError}
|
|
27014
27303
|
* @memberof ServiceReviewsApi
|
|
27015
27304
|
*/
|
|
27016
|
-
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>>;
|
|
27305
|
+
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>>;
|
|
27017
27306
|
/**
|
|
27018
27307
|
*
|
|
27019
27308
|
* @summary Create a ServiceReview.
|
|
@@ -27035,11 +27324,12 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27035
27324
|
/**
|
|
27036
27325
|
*
|
|
27037
27326
|
* @param {string} serviceReviewId
|
|
27327
|
+
* @param {string} [languageCode]
|
|
27038
27328
|
* @param {*} [options] Override http request option.
|
|
27039
27329
|
* @throws {RequiredError}
|
|
27040
27330
|
* @memberof ServiceReviewsApi
|
|
27041
27331
|
*/
|
|
27042
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
27332
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
27043
27333
|
/**
|
|
27044
27334
|
*
|
|
27045
27335
|
* @summary Get all ServiceReviewMedias.
|