ch-admin-api-client-typescript 3.1.3 → 3.2.0

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 CHANGED
@@ -5180,6 +5180,12 @@ export interface DealItemModel {
5180
5180
  * @memberof DealItemModel
5181
5181
  */
5182
5182
  'photoThumbnail'?: string | null;
5183
+ /**
5184
+ *
5185
+ * @type {number}
5186
+ * @memberof DealItemModel
5187
+ */
5188
+ 'order'?: number;
5183
5189
  /**
5184
5190
  *
5185
5191
  * @type {Array<DealPackageItemModel>}
@@ -5259,6 +5265,12 @@ export interface DealItemSimpleModel {
5259
5265
  * @memberof DealItemSimpleModel
5260
5266
  */
5261
5267
  'localizedUrls'?: Array<LocalizedUrlModel> | null;
5268
+ /**
5269
+ *
5270
+ * @type {number}
5271
+ * @memberof DealItemSimpleModel
5272
+ */
5273
+ 'order'?: number;
5262
5274
  /**
5263
5275
  *
5264
5276
  * @type {boolean}
@@ -5368,6 +5380,12 @@ export interface DealModel {
5368
5380
  * @memberof DealModel
5369
5381
  */
5370
5382
  'photoThumbnail'?: string | null;
5383
+ /**
5384
+ *
5385
+ * @type {number}
5386
+ * @memberof DealModel
5387
+ */
5388
+ 'order'?: number;
5371
5389
  /**
5372
5390
  *
5373
5391
  * @type {Array<DealPackageItemModel>}
@@ -10610,12 +10628,30 @@ export interface ServiceReviewItemModel {
10610
10628
  * @memberof ServiceReviewItemModel
10611
10629
  */
10612
10630
  'reviewType'?: ReviewType;
10631
+ /**
10632
+ *
10633
+ * @type {Array<LocalizedUrlModel>}
10634
+ * @memberof ServiceReviewItemModel
10635
+ */
10636
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10637
+ /**
10638
+ *
10639
+ * @type {boolean}
10640
+ * @memberof ServiceReviewItemModel
10641
+ */
10642
+ 'confirmed'?: boolean;
10613
10643
  /**
10614
10644
  *
10615
10645
  * @type {Array<MediaModel>}
10616
10646
  * @memberof ServiceReviewItemModel
10617
10647
  */
10618
10648
  'medias'?: Array<MediaModel> | null;
10649
+ /**
10650
+ *
10651
+ * @type {AuditableEntity}
10652
+ * @memberof ServiceReviewItemModel
10653
+ */
10654
+ 'auditableEntity'?: AuditableEntity;
10619
10655
  }
10620
10656
  /**
10621
10657
  *
@@ -10677,12 +10713,30 @@ export interface ServiceReviewModel {
10677
10713
  * @memberof ServiceReviewModel
10678
10714
  */
10679
10715
  'reviewType'?: ReviewType;
10716
+ /**
10717
+ *
10718
+ * @type {Array<LocalizedUrlModel>}
10719
+ * @memberof ServiceReviewModel
10720
+ */
10721
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10722
+ /**
10723
+ *
10724
+ * @type {boolean}
10725
+ * @memberof ServiceReviewModel
10726
+ */
10727
+ 'confirmed'?: boolean;
10680
10728
  /**
10681
10729
  *
10682
10730
  * @type {Array<MediaModel>}
10683
10731
  * @memberof ServiceReviewModel
10684
10732
  */
10685
10733
  'medias'?: Array<MediaModel> | null;
10734
+ /**
10735
+ *
10736
+ * @type {AuditableEntity}
10737
+ * @memberof ServiceReviewModel
10738
+ */
10739
+ 'auditableEntity'?: AuditableEntity;
10686
10740
  }
10687
10741
  /**
10688
10742
  *
@@ -10763,7 +10817,8 @@ export declare enum SnsType {
10763
10817
  Facebook = "Facebook",
10764
10818
  Instagram = "Instagram",
10765
10819
  LinkedIn = "LinkedIn",
10766
- Youtube = "Youtube"
10820
+ Youtube = "Youtube",
10821
+ KakaoTalk = "KakaoTalk"
10767
10822
  }
10768
10823
  /**
10769
10824
  *
@@ -10824,6 +10879,25 @@ export interface SpecialtiesModel {
10824
10879
  */
10825
10880
  'metaData'?: PagedListMetaData;
10826
10881
  }
10882
+ /**
10883
+ *
10884
+ * @export
10885
+ * @interface SpecialtiesSimpleModel
10886
+ */
10887
+ export interface SpecialtiesSimpleModel {
10888
+ /**
10889
+ *
10890
+ * @type {Array<SpecialtyItemSimpleModel>}
10891
+ * @memberof SpecialtiesSimpleModel
10892
+ */
10893
+ 'items'?: Array<SpecialtyItemSimpleModel> | null;
10894
+ /**
10895
+ *
10896
+ * @type {PagedListMetaData}
10897
+ * @memberof SpecialtiesSimpleModel
10898
+ */
10899
+ 'metaData'?: PagedListMetaData;
10900
+ }
10827
10901
  /**
10828
10902
  *
10829
10903
  * @export
@@ -10909,6 +10983,43 @@ export interface SpecialtyItemModel {
10909
10983
  */
10910
10984
  'medias'?: Array<MediaModel> | null;
10911
10985
  }
10986
+ /**
10987
+ *
10988
+ * @export
10989
+ * @interface SpecialtyItemSimpleModel
10990
+ */
10991
+ export interface SpecialtyItemSimpleModel {
10992
+ /**
10993
+ *
10994
+ * @type {string}
10995
+ * @memberof SpecialtyItemSimpleModel
10996
+ */
10997
+ 'id'?: string;
10998
+ /**
10999
+ *
11000
+ * @type {string}
11001
+ * @memberof SpecialtyItemSimpleModel
11002
+ */
11003
+ 'name'?: string | null;
11004
+ /**
11005
+ *
11006
+ * @type {string}
11007
+ * @memberof SpecialtyItemSimpleModel
11008
+ */
11009
+ 'slug'?: string | null;
11010
+ /**
11011
+ *
11012
+ * @type {string}
11013
+ * @memberof SpecialtyItemSimpleModel
11014
+ */
11015
+ 'specialtyTypeId'?: string;
11016
+ /**
11017
+ *
11018
+ * @type {boolean}
11019
+ * @memberof SpecialtyItemSimpleModel
11020
+ */
11021
+ 'confirmed'?: boolean;
11022
+ }
10912
11023
  /**
10913
11024
  *
10914
11025
  * @export
@@ -12074,6 +12185,12 @@ export interface UpdateDealCommand {
12074
12185
  * @memberof UpdateDealCommand
12075
12186
  */
12076
12187
  'serviceDuration'?: number;
12188
+ /**
12189
+ *
12190
+ * @type {number}
12191
+ * @memberof UpdateDealCommand
12192
+ */
12193
+ 'order'?: number;
12077
12194
  /**
12078
12195
  *
12079
12196
  * @type {string}
@@ -13326,6 +13443,18 @@ export interface UpdateServiceReviewCommand {
13326
13443
  * @memberof UpdateServiceReviewCommand
13327
13444
  */
13328
13445
  'rate'?: number | null;
13446
+ /**
13447
+ *
13448
+ * @type {string}
13449
+ * @memberof UpdateServiceReviewCommand
13450
+ */
13451
+ 'languageCode'?: string | null;
13452
+ /**
13453
+ *
13454
+ * @type {boolean}
13455
+ * @memberof UpdateServiceReviewCommand
13456
+ */
13457
+ 'confirmed'?: boolean;
13329
13458
  }
13330
13459
  /**
13331
13460
  *
@@ -21195,10 +21324,11 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
21195
21324
  *
21196
21325
  * @summary Delete faq.
21197
21326
  * @param {string} faqId
21327
+ * @param {boolean} [forceDelete]
21198
21328
  * @param {*} [options] Override http request option.
21199
21329
  * @throws {RequiredError}
21200
21330
  */
21201
- apiV1FaqsFaqIdDelete: (faqId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21331
+ apiV1FaqsFaqIdDelete: (faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21202
21332
  /**
21203
21333
  *
21204
21334
  * @summary Get faq.
@@ -21314,10 +21444,11 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
21314
21444
  *
21315
21445
  * @summary Delete faq.
21316
21446
  * @param {string} faqId
21447
+ * @param {boolean} [forceDelete]
21317
21448
  * @param {*} [options] Override http request option.
21318
21449
  * @throws {RequiredError}
21319
21450
  */
21320
- apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21451
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21321
21452
  /**
21322
21453
  *
21323
21454
  * @summary Get faq.
@@ -21433,10 +21564,11 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
21433
21564
  *
21434
21565
  * @summary Delete faq.
21435
21566
  * @param {string} faqId
21567
+ * @param {boolean} [forceDelete]
21436
21568
  * @param {*} [options] Override http request option.
21437
21569
  * @throws {RequiredError}
21438
21570
  */
21439
- apiV1FaqsFaqIdDelete(faqId: string, options?: any): AxiosPromise<boolean>;
21571
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
21440
21572
  /**
21441
21573
  *
21442
21574
  * @summary Get faq.
@@ -21554,11 +21686,12 @@ export declare class FaqsApi extends BaseAPI {
21554
21686
  *
21555
21687
  * @summary Delete faq.
21556
21688
  * @param {string} faqId
21689
+ * @param {boolean} [forceDelete]
21557
21690
  * @param {*} [options] Override http request option.
21558
21691
  * @throws {RequiredError}
21559
21692
  * @memberof FaqsApi
21560
21693
  */
21561
- apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21694
+ apiV1FaqsFaqIdDelete(faqId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21562
21695
  /**
21563
21696
  *
21564
21697
  * @summary Get faq.
@@ -22056,6 +22189,61 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22056
22189
  * @throws {RequiredError}
22057
22190
  */
22058
22191
  apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22192
+ /**
22193
+ *
22194
+ * @summary Get all HospitalServiceMedias.
22195
+ * @param {string} hospitalId
22196
+ * @param {string} hospitalSpecialtyId
22197
+ * @param {string} [id]
22198
+ * @param {MediaType} [mediaType]
22199
+ * @param {number} [page]
22200
+ * @param {number} [limit]
22201
+ * @param {Date} [lastRetrieved]
22202
+ * @param {*} [options] Override http request option.
22203
+ * @throws {RequiredError}
22204
+ */
22205
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22206
+ /**
22207
+ *
22208
+ * @summary Delete HospitalServiceMedia
22209
+ * @param {string} hospitalId
22210
+ * @param {string} hospitalSpecialtyId
22211
+ * @param {string} mediaId
22212
+ * @param {*} [options] Override http request option.
22213
+ * @throws {RequiredError}
22214
+ */
22215
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22216
+ /**
22217
+ *
22218
+ * @summary Get HospitalServiceMedia.
22219
+ * @param {string} hospitalId
22220
+ * @param {string} hospitalSpecialtyId
22221
+ * @param {string} mediaId
22222
+ * @param {*} [options] Override http request option.
22223
+ * @throws {RequiredError}
22224
+ */
22225
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22226
+ /**
22227
+ *
22228
+ * @summary Update HospitalServiceMedia.
22229
+ * @param {string} hospitalId
22230
+ * @param {string} hospitalSpecialtyId
22231
+ * @param {string} mediaId
22232
+ * @param {UpdateMediaCommand} [updateMediaCommand]
22233
+ * @param {*} [options] Override http request option.
22234
+ * @throws {RequiredError}
22235
+ */
22236
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22237
+ /**
22238
+ *
22239
+ * @summary Create HospitalServiceMedia.
22240
+ * @param {string} hospitalId
22241
+ * @param {string} hospitalSpecialtyId
22242
+ * @param {CreateMediaCommand} [createMediaCommand]
22243
+ * @param {*} [options] Override http request option.
22244
+ * @throws {RequiredError}
22245
+ */
22246
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost: (hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22059
22247
  /**
22060
22248
  *
22061
22249
  * @summary Create HospitalSpecialty.
@@ -22722,6 +22910,61 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22722
22910
  * @throws {RequiredError}
22723
22911
  */
22724
22912
  apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
22913
+ /**
22914
+ *
22915
+ * @summary Get all HospitalServiceMedias.
22916
+ * @param {string} hospitalId
22917
+ * @param {string} hospitalSpecialtyId
22918
+ * @param {string} [id]
22919
+ * @param {MediaType} [mediaType]
22920
+ * @param {number} [page]
22921
+ * @param {number} [limit]
22922
+ * @param {Date} [lastRetrieved]
22923
+ * @param {*} [options] Override http request option.
22924
+ * @throws {RequiredError}
22925
+ */
22926
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: 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>>;
22927
+ /**
22928
+ *
22929
+ * @summary Delete HospitalServiceMedia
22930
+ * @param {string} hospitalId
22931
+ * @param {string} hospitalSpecialtyId
22932
+ * @param {string} mediaId
22933
+ * @param {*} [options] Override http request option.
22934
+ * @throws {RequiredError}
22935
+ */
22936
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22937
+ /**
22938
+ *
22939
+ * @summary Get HospitalServiceMedia.
22940
+ * @param {string} hospitalId
22941
+ * @param {string} hospitalSpecialtyId
22942
+ * @param {string} mediaId
22943
+ * @param {*} [options] Override http request option.
22944
+ * @throws {RequiredError}
22945
+ */
22946
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
22947
+ /**
22948
+ *
22949
+ * @summary Update HospitalServiceMedia.
22950
+ * @param {string} hospitalId
22951
+ * @param {string} hospitalSpecialtyId
22952
+ * @param {string} mediaId
22953
+ * @param {UpdateMediaCommand} [updateMediaCommand]
22954
+ * @param {*} [options] Override http request option.
22955
+ * @throws {RequiredError}
22956
+ */
22957
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
22958
+ /**
22959
+ *
22960
+ * @summary Create HospitalServiceMedia.
22961
+ * @param {string} hospitalId
22962
+ * @param {string} hospitalSpecialtyId
22963
+ * @param {CreateMediaCommand} [createMediaCommand]
22964
+ * @param {*} [options] Override http request option.
22965
+ * @throws {RequiredError}
22966
+ */
22967
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
22725
22968
  /**
22726
22969
  *
22727
22970
  * @summary Create HospitalSpecialty.
@@ -23388,6 +23631,61 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23388
23631
  * @throws {RequiredError}
23389
23632
  */
23390
23633
  apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
23634
+ /**
23635
+ *
23636
+ * @summary Get all HospitalServiceMedias.
23637
+ * @param {string} hospitalId
23638
+ * @param {string} hospitalSpecialtyId
23639
+ * @param {string} [id]
23640
+ * @param {MediaType} [mediaType]
23641
+ * @param {number} [page]
23642
+ * @param {number} [limit]
23643
+ * @param {Date} [lastRetrieved]
23644
+ * @param {*} [options] Override http request option.
23645
+ * @throws {RequiredError}
23646
+ */
23647
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
23648
+ /**
23649
+ *
23650
+ * @summary Delete HospitalServiceMedia
23651
+ * @param {string} hospitalId
23652
+ * @param {string} hospitalSpecialtyId
23653
+ * @param {string} mediaId
23654
+ * @param {*} [options] Override http request option.
23655
+ * @throws {RequiredError}
23656
+ */
23657
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
23658
+ /**
23659
+ *
23660
+ * @summary Get HospitalServiceMedia.
23661
+ * @param {string} hospitalId
23662
+ * @param {string} hospitalSpecialtyId
23663
+ * @param {string} mediaId
23664
+ * @param {*} [options] Override http request option.
23665
+ * @throws {RequiredError}
23666
+ */
23667
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
23668
+ /**
23669
+ *
23670
+ * @summary Update HospitalServiceMedia.
23671
+ * @param {string} hospitalId
23672
+ * @param {string} hospitalSpecialtyId
23673
+ * @param {string} mediaId
23674
+ * @param {UpdateMediaCommand} [updateMediaCommand]
23675
+ * @param {*} [options] Override http request option.
23676
+ * @throws {RequiredError}
23677
+ */
23678
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
23679
+ /**
23680
+ *
23681
+ * @summary Create HospitalServiceMedia.
23682
+ * @param {string} hospitalId
23683
+ * @param {string} hospitalSpecialtyId
23684
+ * @param {CreateMediaCommand} [createMediaCommand]
23685
+ * @param {*} [options] Override http request option.
23686
+ * @throws {RequiredError}
23687
+ */
23688
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
23391
23689
  /**
23392
23690
  *
23393
23691
  * @summary Create HospitalSpecialty.
@@ -24090,6 +24388,66 @@ export declare class HospitalsApi extends BaseAPI {
24090
24388
  * @memberof HospitalsApi
24091
24389
  */
24092
24390
  apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
24391
+ /**
24392
+ *
24393
+ * @summary Get all HospitalServiceMedias.
24394
+ * @param {string} hospitalId
24395
+ * @param {string} hospitalSpecialtyId
24396
+ * @param {string} [id]
24397
+ * @param {MediaType} [mediaType]
24398
+ * @param {number} [page]
24399
+ * @param {number} [limit]
24400
+ * @param {Date} [lastRetrieved]
24401
+ * @param {*} [options] Override http request option.
24402
+ * @throws {RequiredError}
24403
+ * @memberof HospitalsApi
24404
+ */
24405
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
24406
+ /**
24407
+ *
24408
+ * @summary Delete HospitalServiceMedia
24409
+ * @param {string} hospitalId
24410
+ * @param {string} hospitalSpecialtyId
24411
+ * @param {string} mediaId
24412
+ * @param {*} [options] Override http request option.
24413
+ * @throws {RequiredError}
24414
+ * @memberof HospitalsApi
24415
+ */
24416
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDelete(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
24417
+ /**
24418
+ *
24419
+ * @summary Get HospitalServiceMedia.
24420
+ * @param {string} hospitalId
24421
+ * @param {string} hospitalSpecialtyId
24422
+ * @param {string} mediaId
24423
+ * @param {*} [options] Override http request option.
24424
+ * @throws {RequiredError}
24425
+ * @memberof HospitalsApi
24426
+ */
24427
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
24428
+ /**
24429
+ *
24430
+ * @summary Update HospitalServiceMedia.
24431
+ * @param {string} hospitalId
24432
+ * @param {string} hospitalSpecialtyId
24433
+ * @param {string} mediaId
24434
+ * @param {UpdateMediaCommand} [updateMediaCommand]
24435
+ * @param {*} [options] Override http request option.
24436
+ * @throws {RequiredError}
24437
+ * @memberof HospitalsApi
24438
+ */
24439
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
24440
+ /**
24441
+ *
24442
+ * @summary Create HospitalServiceMedia.
24443
+ * @param {string} hospitalId
24444
+ * @param {string} hospitalSpecialtyId
24445
+ * @param {CreateMediaCommand} [createMediaCommand]
24446
+ * @param {*} [options] Override http request option.
24447
+ * @throws {RequiredError}
24448
+ * @memberof HospitalsApi
24449
+ */
24450
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
24093
24451
  /**
24094
24452
  *
24095
24453
  * @summary Create HospitalSpecialty.
@@ -26802,13 +27160,15 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
26802
27160
  * @param {boolean} [recommended]
26803
27161
  * @param {number} [rate]
26804
27162
  * @param {ReviewType} [reviewType]
27163
+ * @param {string} [languageCode]
27164
+ * @param {boolean} [returnDefaultValue]
26805
27165
  * @param {number} [page]
26806
27166
  * @param {number} [limit]
26807
27167
  * @param {Date} [lastRetrieved]
26808
27168
  * @param {*} [options] Override http request option.
26809
27169
  * @throws {RequiredError}
26810
27170
  */
26811
- 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27171
+ 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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26812
27172
  /**
26813
27173
  *
26814
27174
  * @summary Create a ServiceReview.
@@ -26828,10 +27188,12 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
26828
27188
  /**
26829
27189
  *
26830
27190
  * @param {string} serviceReviewId
27191
+ * @param {string} [languageCode]
27192
+ * @param {boolean} [returnDefaultValue]
26831
27193
  * @param {*} [options] Override http request option.
26832
27194
  * @throws {RequiredError}
26833
27195
  */
26834
- apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27196
+ apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26835
27197
  /**
26836
27198
  *
26837
27199
  * @summary Get all ServiceReviewMedias.
@@ -26908,13 +27270,15 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
26908
27270
  * @param {boolean} [recommended]
26909
27271
  * @param {number} [rate]
26910
27272
  * @param {ReviewType} [reviewType]
27273
+ * @param {string} [languageCode]
27274
+ * @param {boolean} [returnDefaultValue]
26911
27275
  * @param {number} [page]
26912
27276
  * @param {number} [limit]
26913
27277
  * @param {Date} [lastRetrieved]
26914
27278
  * @param {*} [options] Override http request option.
26915
27279
  * @throws {RequiredError}
26916
27280
  */
26917
- 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
27281
+ 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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
26918
27282
  /**
26919
27283
  *
26920
27284
  * @summary Create a ServiceReview.
@@ -26934,10 +27298,12 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
26934
27298
  /**
26935
27299
  *
26936
27300
  * @param {string} serviceReviewId
27301
+ * @param {string} [languageCode]
27302
+ * @param {boolean} [returnDefaultValue]
26937
27303
  * @param {*} [options] Override http request option.
26938
27304
  * @throws {RequiredError}
26939
27305
  */
26940
- apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
27306
+ apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
26941
27307
  /**
26942
27308
  *
26943
27309
  * @summary Get all ServiceReviewMedias.
@@ -27014,13 +27380,15 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
27014
27380
  * @param {boolean} [recommended]
27015
27381
  * @param {number} [rate]
27016
27382
  * @param {ReviewType} [reviewType]
27383
+ * @param {string} [languageCode]
27384
+ * @param {boolean} [returnDefaultValue]
27017
27385
  * @param {number} [page]
27018
27386
  * @param {number} [limit]
27019
27387
  * @param {Date} [lastRetrieved]
27020
27388
  * @param {*} [options] Override http request option.
27021
27389
  * @throws {RequiredError}
27022
27390
  */
27023
- 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
27391
+ 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, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
27024
27392
  /**
27025
27393
  *
27026
27394
  * @summary Create a ServiceReview.
@@ -27040,10 +27408,12 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
27040
27408
  /**
27041
27409
  *
27042
27410
  * @param {string} serviceReviewId
27411
+ * @param {string} [languageCode]
27412
+ * @param {boolean} [returnDefaultValue]
27043
27413
  * @param {*} [options] Override http request option.
27044
27414
  * @throws {RequiredError}
27045
27415
  */
27046
- apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
27416
+ apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
27047
27417
  /**
27048
27418
  *
27049
27419
  * @summary Get all ServiceReviewMedias.
@@ -27122,6 +27492,8 @@ export declare class ServiceReviewsApi extends BaseAPI {
27122
27492
  * @param {boolean} [recommended]
27123
27493
  * @param {number} [rate]
27124
27494
  * @param {ReviewType} [reviewType]
27495
+ * @param {string} [languageCode]
27496
+ * @param {boolean} [returnDefaultValue]
27125
27497
  * @param {number} [page]
27126
27498
  * @param {number} [limit]
27127
27499
  * @param {Date} [lastRetrieved]
@@ -27129,7 +27501,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
27129
27501
  * @throws {RequiredError}
27130
27502
  * @memberof ServiceReviewsApi
27131
27503
  */
27132
- apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
27504
+ apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
27133
27505
  /**
27134
27506
  *
27135
27507
  * @summary Create a ServiceReview.
@@ -27151,11 +27523,13 @@ export declare class ServiceReviewsApi extends BaseAPI {
27151
27523
  /**
27152
27524
  *
27153
27525
  * @param {string} serviceReviewId
27526
+ * @param {string} [languageCode]
27527
+ * @param {boolean} [returnDefaultValue]
27154
27528
  * @param {*} [options] Override http request option.
27155
27529
  * @throws {RequiredError}
27156
27530
  * @memberof ServiceReviewsApi
27157
27531
  */
27158
- apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
27532
+ apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
27159
27533
  /**
27160
27534
  *
27161
27535
  * @summary Get all ServiceReviewMedias.
@@ -27666,6 +28040,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
27666
28040
  * @throws {RequiredError}
27667
28041
  */
27668
28042
  apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
28043
+ /**
28044
+ *
28045
+ * @summary Get all Specialties Simple.
28046
+ * @param {string} [id]
28047
+ * @param {string} [name]
28048
+ * @param {string} [description]
28049
+ * @param {string} [specialtyTypeId]
28050
+ * @param {string} [hospitalId]
28051
+ * @param {Date} [created]
28052
+ * @param {string} [languageCode]
28053
+ * @param {Array<string>} [ids]
28054
+ * @param {boolean} [returnDefaultValue]
28055
+ * @param {number} [page]
28056
+ * @param {number} [limit]
28057
+ * @param {Date} [lastRetrieved]
28058
+ * @param {*} [options] Override http request option.
28059
+ * @throws {RequiredError}
28060
+ */
28061
+ apiV1SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27669
28062
  /**
27670
28063
  *
27671
28064
  * @param {string} slug
@@ -27785,6 +28178,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
27785
28178
  * @throws {RequiredError}
27786
28179
  */
27787
28180
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
28181
+ /**
28182
+ *
28183
+ * @summary Get all Specialties Simple.
28184
+ * @param {string} [id]
28185
+ * @param {string} [name]
28186
+ * @param {string} [description]
28187
+ * @param {string} [specialtyTypeId]
28188
+ * @param {string} [hospitalId]
28189
+ * @param {Date} [created]
28190
+ * @param {string} [languageCode]
28191
+ * @param {Array<string>} [ids]
28192
+ * @param {boolean} [returnDefaultValue]
28193
+ * @param {number} [page]
28194
+ * @param {number} [limit]
28195
+ * @param {Date} [lastRetrieved]
28196
+ * @param {*} [options] Override http request option.
28197
+ * @throws {RequiredError}
28198
+ */
28199
+ apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
27788
28200
  /**
27789
28201
  *
27790
28202
  * @param {string} slug
@@ -27904,6 +28316,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
27904
28316
  * @throws {RequiredError}
27905
28317
  */
27906
28318
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
28319
+ /**
28320
+ *
28321
+ * @summary Get all Specialties Simple.
28322
+ * @param {string} [id]
28323
+ * @param {string} [name]
28324
+ * @param {string} [description]
28325
+ * @param {string} [specialtyTypeId]
28326
+ * @param {string} [hospitalId]
28327
+ * @param {Date} [created]
28328
+ * @param {string} [languageCode]
28329
+ * @param {Array<string>} [ids]
28330
+ * @param {boolean} [returnDefaultValue]
28331
+ * @param {number} [page]
28332
+ * @param {number} [limit]
28333
+ * @param {Date} [lastRetrieved]
28334
+ * @param {*} [options] Override http request option.
28335
+ * @throws {RequiredError}
28336
+ */
28337
+ apiV1SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
27907
28338
  /**
27908
28339
  *
27909
28340
  * @param {string} slug
@@ -28027,6 +28458,26 @@ export declare class SpecialtiesApi extends BaseAPI {
28027
28458
  * @memberof SpecialtiesApi
28028
28459
  */
28029
28460
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
28461
+ /**
28462
+ *
28463
+ * @summary Get all Specialties Simple.
28464
+ * @param {string} [id]
28465
+ * @param {string} [name]
28466
+ * @param {string} [description]
28467
+ * @param {string} [specialtyTypeId]
28468
+ * @param {string} [hospitalId]
28469
+ * @param {Date} [created]
28470
+ * @param {string} [languageCode]
28471
+ * @param {Array<string>} [ids]
28472
+ * @param {boolean} [returnDefaultValue]
28473
+ * @param {number} [page]
28474
+ * @param {number} [limit]
28475
+ * @param {Date} [lastRetrieved]
28476
+ * @param {*} [options] Override http request option.
28477
+ * @throws {RequiredError}
28478
+ * @memberof SpecialtiesApi
28479
+ */
28480
+ apiV1SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel>>;
28030
28481
  /**
28031
28482
  *
28032
28483
  * @param {string} slug