ch-admin-api-client-typescript 2.9.5 → 2.9.8

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.
Files changed (5) hide show
  1. package/lib/api.d.ts +1012 -128
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/api.js +1543 -314
  4. package/package.json +1 -1
  5. package/src/api.ts +2554 -1100
package/lib/api.d.ts CHANGED
@@ -4194,16 +4194,16 @@ export interface CreateHospitalCommand {
4194
4194
  'websiteUrl'?: string | null;
4195
4195
  /**
4196
4196
  *
4197
- * @type {Array<AwardModel>}
4197
+ * @type {string}
4198
4198
  * @memberof CreateHospitalCommand
4199
4199
  */
4200
- 'awards'?: Array<AwardModel> | null;
4200
+ 'contactTel'?: string | null;
4201
4201
  /**
4202
4202
  *
4203
- * @type {Array<MediaModel>}
4203
+ * @type {string}
4204
4204
  * @memberof CreateHospitalCommand
4205
4205
  */
4206
- 'medias'?: Array<MediaModel> | null;
4206
+ 'contactEmail'?: string | null;
4207
4207
  /**
4208
4208
  *
4209
4209
  * @type {LocationModel}
@@ -4346,6 +4346,25 @@ export interface CreateHospitalServiceCommand {
4346
4346
  */
4347
4347
  'medias'?: Array<MediaModel> | null;
4348
4348
  }
4349
+ /**
4350
+ *
4351
+ * @export
4352
+ * @interface CreateHospitalSnsHandleCommand
4353
+ */
4354
+ export interface CreateHospitalSnsHandleCommand {
4355
+ /**
4356
+ *
4357
+ * @type {SnsType}
4358
+ * @memberof CreateHospitalSnsHandleCommand
4359
+ */
4360
+ 'snsType'?: SnsType;
4361
+ /**
4362
+ *
4363
+ * @type {string}
4364
+ * @memberof CreateHospitalSnsHandleCommand
4365
+ */
4366
+ 'handle'?: string | null;
4367
+ }
4349
4368
  /**
4350
4369
  *
4351
4370
  * @export
@@ -4419,6 +4438,37 @@ export interface CreateHospitalSpecialtyCommand {
4419
4438
  */
4420
4439
  'medias'?: Array<MediaModel> | null;
4421
4440
  }
4441
+ /**
4442
+ *
4443
+ * @export
4444
+ * @interface CreateHospitalWorkingDayCommand
4445
+ */
4446
+ export interface CreateHospitalWorkingDayCommand {
4447
+ /**
4448
+ *
4449
+ * @type {string}
4450
+ * @memberof CreateHospitalWorkingDayCommand
4451
+ */
4452
+ 'dayOfWeek'?: string | null;
4453
+ /**
4454
+ *
4455
+ * @type {Date}
4456
+ * @memberof CreateHospitalWorkingDayCommand
4457
+ */
4458
+ 'timeFrom'?: Date;
4459
+ /**
4460
+ *
4461
+ * @type {Date}
4462
+ * @memberof CreateHospitalWorkingDayCommand
4463
+ */
4464
+ 'timeTo'?: Date;
4465
+ /**
4466
+ *
4467
+ * @type {boolean}
4468
+ * @memberof CreateHospitalWorkingDayCommand
4469
+ */
4470
+ 'checkHoliday'?: boolean;
4471
+ }
4422
4472
  /**
4423
4473
  *
4424
4474
  * @export
@@ -7396,6 +7446,12 @@ export interface HospitalItemModel {
7396
7446
  * @memberof HospitalItemModel
7397
7447
  */
7398
7448
  'specialtiesSummerized'?: string | null;
7449
+ /**
7450
+ *
7451
+ * @type {boolean}
7452
+ * @memberof HospitalItemModel
7453
+ */
7454
+ 'paymentEnabled'?: boolean;
7399
7455
  /**
7400
7456
  *
7401
7457
  * @type {Array<AwardModel>}
@@ -7631,6 +7687,12 @@ export interface HospitalModel {
7631
7687
  * @memberof HospitalModel
7632
7688
  */
7633
7689
  'specialtiesSummerized'?: string | null;
7690
+ /**
7691
+ *
7692
+ * @type {boolean}
7693
+ * @memberof HospitalModel
7694
+ */
7695
+ 'paymentEnabled'?: boolean;
7634
7696
  /**
7635
7697
  *
7636
7698
  * @type {Array<AwardModel>}
@@ -7685,6 +7747,30 @@ export interface HospitalModel {
7685
7747
  * @memberof HospitalModel
7686
7748
  */
7687
7749
  'languageCode'?: string | null;
7750
+ /**
7751
+ *
7752
+ * @type {string}
7753
+ * @memberof HospitalModel
7754
+ */
7755
+ 'contactTel'?: string | null;
7756
+ /**
7757
+ *
7758
+ * @type {string}
7759
+ * @memberof HospitalModel
7760
+ */
7761
+ 'contactEmail'?: string | null;
7762
+ /**
7763
+ *
7764
+ * @type {Array<WorkingDay>}
7765
+ * @memberof HospitalModel
7766
+ */
7767
+ 'workingDays'?: Array<WorkingDay> | null;
7768
+ /**
7769
+ *
7770
+ * @type {Array<SnsHandle>}
7771
+ * @memberof HospitalModel
7772
+ */
7773
+ 'snsHandles'?: Array<SnsHandle> | null;
7688
7774
  }
7689
7775
  /**
7690
7776
  *
@@ -7842,6 +7928,12 @@ export interface HospitalServiceItemModel {
7842
7928
  * @memberof HospitalServiceItemModel
7843
7929
  */
7844
7930
  'photoThumbnail'?: string | null;
7931
+ /**
7932
+ *
7933
+ * @type {Array<LocalizedUrlModel>}
7934
+ * @memberof HospitalServiceItemModel
7935
+ */
7936
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7845
7937
  /**
7846
7938
  *
7847
7939
  * @type {Array<MediaModel>}
@@ -8011,6 +8103,12 @@ export interface HospitalServiceModel {
8011
8103
  * @memberof HospitalServiceModel
8012
8104
  */
8013
8105
  'photoThumbnail'?: string | null;
8106
+ /**
8107
+ *
8108
+ * @type {Array<LocalizedUrlModel>}
8109
+ * @memberof HospitalServiceModel
8110
+ */
8111
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8014
8112
  /**
8015
8113
  *
8016
8114
  * @type {Array<MediaModel>}
@@ -8074,6 +8172,25 @@ export interface HospitalSimpleItemModel {
8074
8172
  */
8075
8173
  'confirmed'?: boolean;
8076
8174
  }
8175
+ /**
8176
+ *
8177
+ * @export
8178
+ * @interface HospitalSnsHandlesModel
8179
+ */
8180
+ export interface HospitalSnsHandlesModel {
8181
+ /**
8182
+ *
8183
+ * @type {Array<SnsHandleModel>}
8184
+ * @memberof HospitalSnsHandlesModel
8185
+ */
8186
+ 'items'?: Array<SnsHandleModel> | null;
8187
+ /**
8188
+ *
8189
+ * @type {PagedListMetaData}
8190
+ * @memberof HospitalSnsHandlesModel
8191
+ */
8192
+ 'metaData'?: PagedListMetaData;
8193
+ }
8077
8194
  /**
8078
8195
  *
8079
8196
  * @export
@@ -8256,6 +8373,12 @@ export interface HospitalSpecialtyItemModel {
8256
8373
  * @memberof HospitalSpecialtyItemModel
8257
8374
  */
8258
8375
  'backgroundThumbnail'?: string | null;
8376
+ /**
8377
+ *
8378
+ * @type {Array<LocalizedUrlModel>}
8379
+ * @memberof HospitalSpecialtyItemModel
8380
+ */
8381
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8259
8382
  /**
8260
8383
  *
8261
8384
  * @type {Array<MediaModel>}
@@ -8413,6 +8536,12 @@ export interface HospitalSpecialtyModel {
8413
8536
  * @memberof HospitalSpecialtyModel
8414
8537
  */
8415
8538
  'backgroundThumbnail'?: string | null;
8539
+ /**
8540
+ *
8541
+ * @type {Array<LocalizedUrlModel>}
8542
+ * @memberof HospitalSpecialtyModel
8543
+ */
8544
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8416
8545
  /**
8417
8546
  *
8418
8547
  * @type {Array<MediaModel>}
@@ -8474,6 +8603,12 @@ export interface HospitalSpecialtySimpleItemModel {
8474
8603
  * @memberof HospitalSpecialtySimpleItemModel
8475
8604
  */
8476
8605
  'order'?: number;
8606
+ /**
8607
+ *
8608
+ * @type {Array<LocalizedUrlModel>}
8609
+ * @memberof HospitalSpecialtySimpleItemModel
8610
+ */
8611
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8477
8612
  /**
8478
8613
  *
8479
8614
  * @type {boolean}
@@ -10420,6 +10555,31 @@ export interface ServiceReviewsModel {
10420
10555
  */
10421
10556
  'metaData'?: PagedListMetaData;
10422
10557
  }
10558
+ /**
10559
+ *
10560
+ * @export
10561
+ * @interface SnsHandle
10562
+ */
10563
+ export interface SnsHandle {
10564
+ /**
10565
+ *
10566
+ * @type {string}
10567
+ * @memberof SnsHandle
10568
+ */
10569
+ 'id'?: string;
10570
+ /**
10571
+ *
10572
+ * @type {SnsType}
10573
+ * @memberof SnsHandle
10574
+ */
10575
+ 'snsType'?: SnsType;
10576
+ /**
10577
+ *
10578
+ * @type {string}
10579
+ * @memberof SnsHandle
10580
+ */
10581
+ 'handle'?: string | null;
10582
+ }
10423
10583
  /**
10424
10584
  *
10425
10585
  * @export
@@ -10453,7 +10613,9 @@ export interface SnsHandleModel {
10453
10613
  export declare enum SnsType {
10454
10614
  Twitter = "Twitter",
10455
10615
  Facebook = "Facebook",
10456
- Instagram = "Instagram"
10616
+ Instagram = "Instagram",
10617
+ LinkedIn = "LinkedIn",
10618
+ Youtube = "Youtube"
10457
10619
  }
10458
10620
  /**
10459
10621
  *
@@ -10574,6 +10736,12 @@ export interface SpecialtyItemModel {
10574
10736
  * @memberof SpecialtyItemModel
10575
10737
  */
10576
10738
  'specialtyTypeName'?: string | null;
10739
+ /**
10740
+ *
10741
+ * @type {Array<LocalizedUrlModel>}
10742
+ * @memberof SpecialtyItemModel
10743
+ */
10744
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10577
10745
  /**
10578
10746
  *
10579
10747
  * @type {boolean}
@@ -10653,6 +10821,12 @@ export interface SpecialtyModel {
10653
10821
  * @memberof SpecialtyModel
10654
10822
  */
10655
10823
  'specialtyTypeName'?: string | null;
10824
+ /**
10825
+ *
10826
+ * @type {Array<LocalizedUrlModel>}
10827
+ * @memberof SpecialtyModel
10828
+ */
10829
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10656
10830
  /**
10657
10831
  *
10658
10832
  * @type {boolean}
@@ -12280,6 +12454,24 @@ export interface UpdateHospitalCommand {
12280
12454
  * @memberof UpdateHospitalCommand
12281
12455
  */
12282
12456
  'websiteUrl'?: string | null;
12457
+ /**
12458
+ *
12459
+ * @type {string}
12460
+ * @memberof UpdateHospitalCommand
12461
+ */
12462
+ 'contactTel'?: string | null;
12463
+ /**
12464
+ *
12465
+ * @type {string}
12466
+ * @memberof UpdateHospitalCommand
12467
+ */
12468
+ 'contactEmail'?: string | null;
12469
+ /**
12470
+ *
12471
+ * @type {boolean}
12472
+ * @memberof UpdateHospitalCommand
12473
+ */
12474
+ 'paymentEnabled'?: boolean;
12283
12475
  /**
12284
12476
  *
12285
12477
  * @type {boolean}
@@ -12433,6 +12625,25 @@ export interface UpdateHospitalServiceCommand {
12433
12625
  */
12434
12626
  'medias'?: Array<MediaModel> | null;
12435
12627
  }
12628
+ /**
12629
+ *
12630
+ * @export
12631
+ * @interface UpdateHospitalSnsHandleCommand
12632
+ */
12633
+ export interface UpdateHospitalSnsHandleCommand {
12634
+ /**
12635
+ *
12636
+ * @type {SnsType}
12637
+ * @memberof UpdateHospitalSnsHandleCommand
12638
+ */
12639
+ 'snsType'?: SnsType;
12640
+ /**
12641
+ *
12642
+ * @type {string}
12643
+ * @memberof UpdateHospitalSnsHandleCommand
12644
+ */
12645
+ 'handle'?: string | null;
12646
+ }
12436
12647
  /**
12437
12648
  *
12438
12649
  * @export
@@ -12518,6 +12729,37 @@ export interface UpdateHospitalSpecialtyCommand {
12518
12729
  */
12519
12730
  'medias'?: Array<MediaModel> | null;
12520
12731
  }
12732
+ /**
12733
+ *
12734
+ * @export
12735
+ * @interface UpdateHospitalWorkingDayCommand
12736
+ */
12737
+ export interface UpdateHospitalWorkingDayCommand {
12738
+ /**
12739
+ *
12740
+ * @type {string}
12741
+ * @memberof UpdateHospitalWorkingDayCommand
12742
+ */
12743
+ 'dayOfWeek'?: string | null;
12744
+ /**
12745
+ *
12746
+ * @type {Date}
12747
+ * @memberof UpdateHospitalWorkingDayCommand
12748
+ */
12749
+ 'timeFrom'?: Date;
12750
+ /**
12751
+ *
12752
+ * @type {Date}
12753
+ * @memberof UpdateHospitalWorkingDayCommand
12754
+ */
12755
+ 'timeTo'?: Date;
12756
+ /**
12757
+ *
12758
+ * @type {boolean}
12759
+ * @memberof UpdateHospitalWorkingDayCommand
12760
+ */
12761
+ 'checkHoliday'?: boolean;
12762
+ }
12521
12763
  /**
12522
12764
  *
12523
12765
  * @export
@@ -13339,110 +13581,140 @@ export interface WeatherForecast {
13339
13581
  'summary'?: string | null;
13340
13582
  }
13341
13583
  /**
13342
- * AboutUsApi - axios parameter creator
13584
+ *
13343
13585
  * @export
13586
+ * @interface WorkingDay
13344
13587
  */
13345
- export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13588
+ export interface WorkingDay {
13346
13589
  /**
13347
13590
  *
13348
- * @summary Delete AboutUs.
13349
- * @param {string} aboutUsId
13350
- * @param {*} [options] Override http request option.
13351
- * @throws {RequiredError}
13591
+ * @type {string}
13592
+ * @memberof WorkingDay
13352
13593
  */
13353
- apiV1AboutusAboutUsIdDelete: (aboutUsId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13594
+ 'id'?: string;
13354
13595
  /**
13355
13596
  *
13356
- * @summary Get AboutUs.
13357
- * @param {string} aboutUsId
13358
- * @param {string} [languageCode]
13359
- * @param {boolean} [returnDefaultValue]
13360
- * @param {*} [options] Override http request option.
13361
- * @throws {RequiredError}
13597
+ * @type {string}
13598
+ * @memberof WorkingDay
13362
13599
  */
13363
- apiV1AboutusAboutUsIdGet: (aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13600
+ 'dayOfWeek'?: string | null;
13364
13601
  /**
13365
13602
  *
13366
- * @summary Update AboutUs.
13367
- * @param {string} aboutUsId
13368
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13369
- * @param {*} [options] Override http request option.
13370
- * @throws {RequiredError}
13603
+ * @type {Date}
13604
+ * @memberof WorkingDay
13371
13605
  */
13372
- apiV1AboutusAboutUsIdPut: (aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13606
+ 'timeFrom'?: Date;
13373
13607
  /**
13374
13608
  *
13375
- * @summary Get all AboutUsList.
13376
- * @param {string} [hospitalId]
13377
- * @param {string} [hospitalName]
13378
- * @param {string} [hospitalSlug]
13379
- * @param {string} [overviewTitle]
13380
- * @param {string} [normalizedOverviewTitle]
13381
- * @param {string} [overview]
13382
- * @param {string} [content]
13383
- * @param {string} [customStyle]
13384
- * @param {string} [background]
13385
- * @param {string} [backgroundThumbnail]
13386
- * @param {string} [languageCode]
13387
- * @param {boolean} [returnDefaultValue]
13388
- * @param {boolean} [confirmed]
13389
- * @param {number} [page]
13390
- * @param {number} [limit]
13391
- * @param {Date} [lastRetrieved]
13392
- * @param {*} [options] Override http request option.
13393
- * @throws {RequiredError}
13609
+ * @type {Date}
13610
+ * @memberof WorkingDay
13394
13611
  */
13395
- apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13612
+ 'timeTo'?: Date;
13396
13613
  /**
13397
13614
  *
13398
- * @summary Create AboutUs.
13399
- * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13400
- * @param {*} [options] Override http request option.
13401
- * @throws {RequiredError}
13615
+ * @type {boolean}
13616
+ * @memberof WorkingDay
13402
13617
  */
13403
- apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13618
+ 'checkHoliday'?: boolean;
13619
+ }
13620
+ /**
13621
+ *
13622
+ * @export
13623
+ * @interface WorkingDayItemModel
13624
+ */
13625
+ export interface WorkingDayItemModel {
13404
13626
  /**
13405
13627
  *
13406
- * @param {string} slug
13407
- * @param {string} [languageCode]
13408
- * @param {boolean} [returnDefaultValue]
13409
- * @param {*} [options] Override http request option.
13410
- * @throws {RequiredError}
13628
+ * @type {string}
13629
+ * @memberof WorkingDayItemModel
13411
13630
  */
13412
- apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13413
- };
13631
+ 'id'?: string;
13632
+ /**
13633
+ *
13634
+ * @type {string}
13635
+ * @memberof WorkingDayItemModel
13636
+ */
13637
+ 'dayOfWeek'?: string | null;
13638
+ /**
13639
+ *
13640
+ * @type {Date}
13641
+ * @memberof WorkingDayItemModel
13642
+ */
13643
+ 'timeFrom'?: Date;
13644
+ /**
13645
+ *
13646
+ * @type {Date}
13647
+ * @memberof WorkingDayItemModel
13648
+ */
13649
+ 'timeTo'?: Date;
13650
+ /**
13651
+ *
13652
+ * @type {boolean}
13653
+ * @memberof WorkingDayItemModel
13654
+ */
13655
+ 'checkHoliday'?: boolean;
13656
+ }
13414
13657
  /**
13415
- * AboutUsApi - functional programming interface
13658
+ *
13416
13659
  * @export
13660
+ * @interface WorkingDayModel
13417
13661
  */
13418
- export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
13662
+ export interface WorkingDayModel {
13419
13663
  /**
13420
13664
  *
13421
- * @summary Delete AboutUs.
13422
- * @param {string} aboutUsId
13423
- * @param {*} [options] Override http request option.
13424
- * @throws {RequiredError}
13665
+ * @type {string}
13666
+ * @memberof WorkingDayModel
13425
13667
  */
13426
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13668
+ 'id'?: string;
13427
13669
  /**
13428
13670
  *
13429
- * @summary Get AboutUs.
13430
- * @param {string} aboutUsId
13431
- * @param {string} [languageCode]
13432
- * @param {boolean} [returnDefaultValue]
13433
- * @param {*} [options] Override http request option.
13434
- * @throws {RequiredError}
13671
+ * @type {string}
13672
+ * @memberof WorkingDayModel
13435
13673
  */
13436
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13674
+ 'dayOfWeek'?: string | null;
13437
13675
  /**
13438
13676
  *
13439
- * @summary Update AboutUs.
13440
- * @param {string} aboutUsId
13441
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13442
- * @param {*} [options] Override http request option.
13443
- * @throws {RequiredError}
13677
+ * @type {Date}
13678
+ * @memberof WorkingDayModel
13679
+ */
13680
+ 'timeFrom'?: Date;
13681
+ /**
13682
+ *
13683
+ * @type {Date}
13684
+ * @memberof WorkingDayModel
13685
+ */
13686
+ 'timeTo'?: Date;
13687
+ /**
13688
+ *
13689
+ * @type {boolean}
13690
+ * @memberof WorkingDayModel
13691
+ */
13692
+ 'checkHoliday'?: boolean;
13693
+ }
13694
+ /**
13695
+ *
13696
+ * @export
13697
+ * @interface WorkingDaysModel
13698
+ */
13699
+ export interface WorkingDaysModel {
13700
+ /**
13701
+ *
13702
+ * @type {Array<WorkingDayItemModel>}
13703
+ * @memberof WorkingDaysModel
13704
+ */
13705
+ 'items'?: Array<WorkingDayItemModel> | null;
13706
+ /**
13707
+ *
13708
+ * @type {PagedListMetaData}
13709
+ * @memberof WorkingDaysModel
13444
13710
  */
13445
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13711
+ 'metaData'?: PagedListMetaData;
13712
+ }
13713
+ /**
13714
+ * AboutUsApi - axios parameter creator
13715
+ * @export
13716
+ */
13717
+ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13446
13718
  /**
13447
13719
  *
13448
13720
  * @summary Get all AboutUsList.
@@ -13465,7 +13737,34 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13465
13737
  * @param {*} [options] Override http request option.
13466
13738
  * @throws {RequiredError}
13467
13739
  */
13468
- apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
13740
+ apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13741
+ /**
13742
+ *
13743
+ * @summary Delete AboutUs.
13744
+ * @param {string} hospitalId
13745
+ * @param {*} [options] Override http request option.
13746
+ * @throws {RequiredError}
13747
+ */
13748
+ apiV1AboutusHospitalIdDelete: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13749
+ /**
13750
+ *
13751
+ * @summary Get AboutUs.
13752
+ * @param {string} hospitalId
13753
+ * @param {string} [languageCode]
13754
+ * @param {boolean} [returnDefaultValue]
13755
+ * @param {*} [options] Override http request option.
13756
+ * @throws {RequiredError}
13757
+ */
13758
+ apiV1AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13759
+ /**
13760
+ *
13761
+ * @summary Update AboutUs.
13762
+ * @param {string} hospitalId
13763
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13764
+ * @param {*} [options] Override http request option.
13765
+ * @throws {RequiredError}
13766
+ */
13767
+ apiV1AboutusHospitalIdPut: (hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13469
13768
  /**
13470
13769
  *
13471
13770
  * @summary Create AboutUs.
@@ -13473,7 +13772,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13473
13772
  * @param {*} [options] Override http request option.
13474
13773
  * @throws {RequiredError}
13475
13774
  */
13476
- apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13775
+ apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13477
13776
  /**
13478
13777
  *
13479
13778
  * @param {string} slug
@@ -13482,40 +13781,86 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13482
13781
  * @param {*} [options] Override http request option.
13483
13782
  * @throws {RequiredError}
13484
13783
  */
13485
- apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13784
+ apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13486
13785
  };
13487
13786
  /**
13488
- * AboutUsApi - factory interface
13787
+ * AboutUsApi - functional programming interface
13489
13788
  * @export
13490
13789
  */
13491
- export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13790
+ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
13791
+ /**
13792
+ *
13793
+ * @summary Get all AboutUsList.
13794
+ * @param {string} [hospitalId]
13795
+ * @param {string} [hospitalName]
13796
+ * @param {string} [hospitalSlug]
13797
+ * @param {string} [overviewTitle]
13798
+ * @param {string} [normalizedOverviewTitle]
13799
+ * @param {string} [overview]
13800
+ * @param {string} [content]
13801
+ * @param {string} [customStyle]
13802
+ * @param {string} [background]
13803
+ * @param {string} [backgroundThumbnail]
13804
+ * @param {string} [languageCode]
13805
+ * @param {boolean} [returnDefaultValue]
13806
+ * @param {boolean} [confirmed]
13807
+ * @param {number} [page]
13808
+ * @param {number} [limit]
13809
+ * @param {Date} [lastRetrieved]
13810
+ * @param {*} [options] Override http request option.
13811
+ * @throws {RequiredError}
13812
+ */
13813
+ apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
13492
13814
  /**
13493
13815
  *
13494
13816
  * @summary Delete AboutUs.
13495
- * @param {string} aboutUsId
13817
+ * @param {string} hospitalId
13496
13818
  * @param {*} [options] Override http request option.
13497
13819
  * @throws {RequiredError}
13498
13820
  */
13499
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: any): AxiosPromise<boolean>;
13821
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13500
13822
  /**
13501
13823
  *
13502
13824
  * @summary Get AboutUs.
13503
- * @param {string} aboutUsId
13825
+ * @param {string} hospitalId
13504
13826
  * @param {string} [languageCode]
13505
13827
  * @param {boolean} [returnDefaultValue]
13506
13828
  * @param {*} [options] Override http request option.
13507
13829
  * @throws {RequiredError}
13508
13830
  */
13509
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13831
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13510
13832
  /**
13511
13833
  *
13512
13834
  * @summary Update AboutUs.
13513
- * @param {string} aboutUsId
13835
+ * @param {string} hospitalId
13514
13836
  * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13515
13837
  * @param {*} [options] Override http request option.
13516
13838
  * @throws {RequiredError}
13517
13839
  */
13518
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13840
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13841
+ /**
13842
+ *
13843
+ * @summary Create AboutUs.
13844
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13845
+ * @param {*} [options] Override http request option.
13846
+ * @throws {RequiredError}
13847
+ */
13848
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13849
+ /**
13850
+ *
13851
+ * @param {string} slug
13852
+ * @param {string} [languageCode]
13853
+ * @param {boolean} [returnDefaultValue]
13854
+ * @param {*} [options] Override http request option.
13855
+ * @throws {RequiredError}
13856
+ */
13857
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13858
+ };
13859
+ /**
13860
+ * AboutUsApi - factory interface
13861
+ * @export
13862
+ */
13863
+ export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13519
13864
  /**
13520
13865
  *
13521
13866
  * @summary Get all AboutUsList.
@@ -13541,59 +13886,56 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
13541
13886
  apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
13542
13887
  /**
13543
13888
  *
13544
- * @summary Create AboutUs.
13545
- * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13889
+ * @summary Delete AboutUs.
13890
+ * @param {string} hospitalId
13546
13891
  * @param {*} [options] Override http request option.
13547
13892
  * @throws {RequiredError}
13548
13893
  */
13549
- apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13894
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: any): AxiosPromise<boolean>;
13550
13895
  /**
13551
13896
  *
13552
- * @param {string} slug
13897
+ * @summary Get AboutUs.
13898
+ * @param {string} hospitalId
13553
13899
  * @param {string} [languageCode]
13554
13900
  * @param {boolean} [returnDefaultValue]
13555
13901
  * @param {*} [options] Override http request option.
13556
13902
  * @throws {RequiredError}
13557
13903
  */
13558
- apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13559
- };
13560
- /**
13561
- * AboutUsApi - object-oriented interface
13562
- * @export
13563
- * @class AboutUsApi
13564
- * @extends {BaseAPI}
13565
- */
13566
- export declare class AboutUsApi extends BaseAPI {
13904
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13567
13905
  /**
13568
13906
  *
13569
- * @summary Delete AboutUs.
13570
- * @param {string} aboutUsId
13907
+ * @summary Update AboutUs.
13908
+ * @param {string} hospitalId
13909
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13571
13910
  * @param {*} [options] Override http request option.
13572
13911
  * @throws {RequiredError}
13573
- * @memberof AboutUsApi
13574
13912
  */
13575
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13913
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13576
13914
  /**
13577
13915
  *
13578
- * @summary Get AboutUs.
13579
- * @param {string} aboutUsId
13580
- * @param {string} [languageCode]
13581
- * @param {boolean} [returnDefaultValue]
13916
+ * @summary Create AboutUs.
13917
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13582
13918
  * @param {*} [options] Override http request option.
13583
13919
  * @throws {RequiredError}
13584
- * @memberof AboutUsApi
13585
13920
  */
13586
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13921
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13587
13922
  /**
13588
13923
  *
13589
- * @summary Update AboutUs.
13590
- * @param {string} aboutUsId
13591
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13924
+ * @param {string} slug
13925
+ * @param {string} [languageCode]
13926
+ * @param {boolean} [returnDefaultValue]
13592
13927
  * @param {*} [options] Override http request option.
13593
13928
  * @throws {RequiredError}
13594
- * @memberof AboutUsApi
13595
13929
  */
13596
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13930
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13931
+ };
13932
+ /**
13933
+ * AboutUsApi - object-oriented interface
13934
+ * @export
13935
+ * @class AboutUsApi
13936
+ * @extends {BaseAPI}
13937
+ */
13938
+ export declare class AboutUsApi extends BaseAPI {
13597
13939
  /**
13598
13940
  *
13599
13941
  * @summary Get all AboutUsList.
@@ -13618,6 +13960,36 @@ export declare class AboutUsApi extends BaseAPI {
13618
13960
  * @memberof AboutUsApi
13619
13961
  */
13620
13962
  apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel>>;
13963
+ /**
13964
+ *
13965
+ * @summary Delete AboutUs.
13966
+ * @param {string} hospitalId
13967
+ * @param {*} [options] Override http request option.
13968
+ * @throws {RequiredError}
13969
+ * @memberof AboutUsApi
13970
+ */
13971
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13972
+ /**
13973
+ *
13974
+ * @summary Get AboutUs.
13975
+ * @param {string} hospitalId
13976
+ * @param {string} [languageCode]
13977
+ * @param {boolean} [returnDefaultValue]
13978
+ * @param {*} [options] Override http request option.
13979
+ * @throws {RequiredError}
13980
+ * @memberof AboutUsApi
13981
+ */
13982
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13983
+ /**
13984
+ *
13985
+ * @summary Update AboutUs.
13986
+ * @param {string} hospitalId
13987
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13988
+ * @param {*} [options] Override http request option.
13989
+ * @throws {RequiredError}
13990
+ * @memberof AboutUsApi
13991
+ */
13992
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13621
13993
  /**
13622
13994
  *
13623
13995
  * @summary Create AboutUs.
@@ -14092,6 +14464,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14092
14464
  * @param {string} [hospitalName]
14093
14465
  * @param {string} [countryId]
14094
14466
  * @param {string} [tag]
14467
+ * @param {string} [exceptArticleId]
14095
14468
  * @param {string} [exceptHospitalId]
14096
14469
  * @param {string} [contributorId]
14097
14470
  * @param {string} [languageCode]
@@ -14103,7 +14476,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14103
14476
  * @param {*} [options] Override http request option.
14104
14477
  * @throws {RequiredError}
14105
14478
  */
14106
- apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14479
+ apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14107
14480
  /**
14108
14481
  *
14109
14482
  * @summary Create a Article.
@@ -14362,6 +14735,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14362
14735
  * @param {string} [hospitalName]
14363
14736
  * @param {string} [countryId]
14364
14737
  * @param {string} [tag]
14738
+ * @param {string} [exceptArticleId]
14365
14739
  * @param {string} [exceptHospitalId]
14366
14740
  * @param {string} [contributorId]
14367
14741
  * @param {string} [languageCode]
@@ -14373,7 +14747,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14373
14747
  * @param {*} [options] Override http request option.
14374
14748
  * @throws {RequiredError}
14375
14749
  */
14376
- apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14750
+ apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14377
14751
  /**
14378
14752
  *
14379
14753
  * @summary Create a Article.
@@ -14632,6 +15006,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14632
15006
  * @param {string} [hospitalName]
14633
15007
  * @param {string} [countryId]
14634
15008
  * @param {string} [tag]
15009
+ * @param {string} [exceptArticleId]
14635
15010
  * @param {string} [exceptHospitalId]
14636
15011
  * @param {string} [contributorId]
14637
15012
  * @param {string} [languageCode]
@@ -14643,7 +15018,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14643
15018
  * @param {*} [options] Override http request option.
14644
15019
  * @throws {RequiredError}
14645
15020
  */
14646
- apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
15021
+ apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
14647
15022
  /**
14648
15023
  *
14649
15024
  * @summary Create a Article.
@@ -14926,6 +15301,7 @@ export declare class ArticlesApi extends BaseAPI {
14926
15301
  * @param {string} [hospitalName]
14927
15302
  * @param {string} [countryId]
14928
15303
  * @param {string} [tag]
15304
+ * @param {string} [exceptArticleId]
14929
15305
  * @param {string} [exceptHospitalId]
14930
15306
  * @param {string} [contributorId]
14931
15307
  * @param {string} [languageCode]
@@ -14938,7 +15314,7 @@ export declare class ArticlesApi extends BaseAPI {
14938
15314
  * @throws {RequiredError}
14939
15315
  * @memberof ArticlesApi
14940
15316
  */
14941
- apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
15317
+ apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
14942
15318
  /**
14943
15319
  *
14944
15320
  * @summary Create a Article.
@@ -14998,6 +15374,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14998
15374
  * @throws {RequiredError}
14999
15375
  */
15000
15376
  apiV1BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15377
+ /**
15378
+ *
15379
+ * @summary Mark as Paid booking.
15380
+ * @param {string} bookingId
15381
+ * @param {*} [options] Override http request option.
15382
+ * @throws {RequiredError}
15383
+ */
15384
+ apiV1BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15001
15385
  /**
15002
15386
  *
15003
15387
  * @summary Reject booking.
@@ -15063,6 +15447,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15063
15447
  * @throws {RequiredError}
15064
15448
  */
15065
15449
  apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15450
+ /**
15451
+ *
15452
+ * @summary Mark as Paid booking.
15453
+ * @param {string} bookingId
15454
+ * @param {*} [options] Override http request option.
15455
+ * @throws {RequiredError}
15456
+ */
15457
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
15066
15458
  /**
15067
15459
  *
15068
15460
  * @summary Reject booking.
@@ -15128,6 +15520,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15128
15520
  * @throws {RequiredError}
15129
15521
  */
15130
15522
  apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
15523
+ /**
15524
+ *
15525
+ * @summary Mark as Paid booking.
15526
+ * @param {string} bookingId
15527
+ * @param {*} [options] Override http request option.
15528
+ * @throws {RequiredError}
15529
+ */
15530
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
15131
15531
  /**
15132
15532
  *
15133
15533
  * @summary Reject booking.
@@ -15199,6 +15599,15 @@ export declare class BookingsApi extends BaseAPI {
15199
15599
  * @memberof BookingsApi
15200
15600
  */
15201
15601
  apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15602
+ /**
15603
+ *
15604
+ * @summary Mark as Paid booking.
15605
+ * @param {string} bookingId
15606
+ * @param {*} [options] Override http request option.
15607
+ * @throws {RequiredError}
15608
+ * @memberof BookingsApi
15609
+ */
15610
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
15202
15611
  /**
15203
15612
  *
15204
15613
  * @summary Reject booking.
@@ -16077,6 +16486,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16077
16486
  * @throws {RequiredError}
16078
16487
  */
16079
16488
  apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16489
+ /**
16490
+ *
16491
+ * @summary Mark as Paid booking.
16492
+ * @param {string} consultationId
16493
+ * @param {*} [options] Override http request option.
16494
+ * @throws {RequiredError}
16495
+ */
16496
+ apiV1ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16080
16497
  /**
16081
16498
  *
16082
16499
  * @summary Reject consultation.
@@ -16142,6 +16559,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16142
16559
  * @throws {RequiredError}
16143
16560
  */
16144
16561
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16562
+ /**
16563
+ *
16564
+ * @summary Mark as Paid booking.
16565
+ * @param {string} consultationId
16566
+ * @param {*} [options] Override http request option.
16567
+ * @throws {RequiredError}
16568
+ */
16569
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
16145
16570
  /**
16146
16571
  *
16147
16572
  * @summary Reject consultation.
@@ -16207,6 +16632,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16207
16632
  * @throws {RequiredError}
16208
16633
  */
16209
16634
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
16635
+ /**
16636
+ *
16637
+ * @summary Mark as Paid booking.
16638
+ * @param {string} consultationId
16639
+ * @param {*} [options] Override http request option.
16640
+ * @throws {RequiredError}
16641
+ */
16642
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
16210
16643
  /**
16211
16644
  *
16212
16645
  * @summary Reject consultation.
@@ -16278,6 +16711,15 @@ export declare class ConsultationsApi extends BaseAPI {
16278
16711
  * @memberof ConsultationsApi
16279
16712
  */
16280
16713
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16714
+ /**
16715
+ *
16716
+ * @summary Mark as Paid booking.
16717
+ * @param {string} consultationId
16718
+ * @param {*} [options] Override http request option.
16719
+ * @throws {RequiredError}
16720
+ * @memberof ConsultationsApi
16721
+ */
16722
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
16281
16723
  /**
16282
16724
  *
16283
16725
  * @summary Reject consultation.
@@ -20865,13 +21307,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20865
21307
  * @param {string} [languageCode]
20866
21308
  * @param {Array<string>} [ids]
20867
21309
  * @param {boolean} [returnDefaultValue]
21310
+ * @param {boolean} [paymentEnabled]
20868
21311
  * @param {number} [page]
20869
21312
  * @param {number} [limit]
20870
21313
  * @param {Date} [lastRetrieved]
20871
21314
  * @param {*} [options] Override http request option.
20872
21315
  * @throws {RequiredError}
20873
21316
  */
20874
- apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21317
+ apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20875
21318
  /**
20876
21319
  *
20877
21320
  * @summary Delete HospitalAccreditation.
@@ -21091,6 +21534,58 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21091
21534
  * @throws {RequiredError}
21092
21535
  */
21093
21536
  apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21537
+ /**
21538
+ *
21539
+ * @summary Get all HospitalHandles.
21540
+ * @param {string} hospitalId
21541
+ * @param {string} [hospitalId2]
21542
+ * @param {string} [id]
21543
+ * @param {SnsType} [snsType]
21544
+ * @param {string} [handle]
21545
+ * @param {number} [page]
21546
+ * @param {number} [limit]
21547
+ * @param {Date} [lastRetrieved]
21548
+ * @param {*} [options] Override http request option.
21549
+ * @throws {RequiredError}
21550
+ */
21551
+ apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21552
+ /**
21553
+ *
21554
+ * @summary Delete HospitalHandle.
21555
+ * @param {string} hospitalId
21556
+ * @param {string} handleId
21557
+ * @param {*} [options] Override http request option.
21558
+ * @throws {RequiredError}
21559
+ */
21560
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21561
+ /**
21562
+ *
21563
+ * @summary Get HospitalHandle.
21564
+ * @param {string} hospitalId
21565
+ * @param {string} handleId
21566
+ * @param {*} [options] Override http request option.
21567
+ * @throws {RequiredError}
21568
+ */
21569
+ apiV1HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21570
+ /**
21571
+ *
21572
+ * @summary Update HospitalHandle.
21573
+ * @param {string} hospitalId
21574
+ * @param {string} handleId
21575
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
21576
+ * @param {*} [options] Override http request option.
21577
+ * @throws {RequiredError}
21578
+ */
21579
+ apiV1HospitalsHospitalIdHandlesHandleIdPut: (hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21580
+ /**
21581
+ *
21582
+ * @summary Get HospitalHandle.
21583
+ * @param {string} hospitalId
21584
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
21585
+ * @param {*} [options] Override http request option.
21586
+ * @throws {RequiredError}
21587
+ */
21588
+ apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21094
21589
  /**
21095
21590
  *
21096
21591
  * @summary Get all HospitalMedias.
@@ -21363,6 +21858,60 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21363
21858
  * @throws {RequiredError}
21364
21859
  */
21365
21860
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21861
+ /**
21862
+ *
21863
+ * @summary Get all HospitalWorkingDays.
21864
+ * @param {string} hospitalId
21865
+ * @param {string} [hospitalId2]
21866
+ * @param {string} [id]
21867
+ * @param {string} [dayOfWeek]
21868
+ * @param {Date} [timeFrom]
21869
+ * @param {Date} [timeTo]
21870
+ * @param {boolean} [checkHoliday]
21871
+ * @param {number} [page]
21872
+ * @param {number} [limit]
21873
+ * @param {Date} [lastRetrieved]
21874
+ * @param {*} [options] Override http request option.
21875
+ * @throws {RequiredError}
21876
+ */
21877
+ apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21878
+ /**
21879
+ *
21880
+ * @summary Create HospitalWorkingDay.
21881
+ * @param {string} hospitalId
21882
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
21883
+ * @param {*} [options] Override http request option.
21884
+ * @throws {RequiredError}
21885
+ */
21886
+ apiV1HospitalsHospitalIdWorkingdaysPost: (hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21887
+ /**
21888
+ *
21889
+ * @summary Delete HospitalWorkingDay.
21890
+ * @param {string} hospitalId
21891
+ * @param {string} workingDayId
21892
+ * @param {*} [options] Override http request option.
21893
+ * @throws {RequiredError}
21894
+ */
21895
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21896
+ /**
21897
+ *
21898
+ * @summary Get HospitalWorkingDay.
21899
+ * @param {string} hospitalId
21900
+ * @param {string} workingDayId
21901
+ * @param {*} [options] Override http request option.
21902
+ * @throws {RequiredError}
21903
+ */
21904
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21905
+ /**
21906
+ *
21907
+ * @summary Update HospitalWorkingDay.
21908
+ * @param {string} hospitalId
21909
+ * @param {string} workingDayId
21910
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
21911
+ * @param {*} [options] Override http request option.
21912
+ * @throws {RequiredError}
21913
+ */
21914
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21366
21915
  /**
21367
21916
  *
21368
21917
  * @summary Create Hospital.
@@ -21387,13 +21936,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21387
21936
  * @param {string} [languageCode]
21388
21937
  * @param {Array<string>} [ids]
21389
21938
  * @param {boolean} [returnDefaultValue]
21939
+ * @param {boolean} [paymentEnabled]
21390
21940
  * @param {number} [page]
21391
21941
  * @param {number} [limit]
21392
21942
  * @param {Date} [lastRetrieved]
21393
21943
  * @param {*} [options] Override http request option.
21394
21944
  * @throws {RequiredError}
21395
21945
  */
21396
- apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21946
+ apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21397
21947
  /**
21398
21948
  *
21399
21949
  * @param {string} slug
@@ -21425,13 +21975,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21425
21975
  * @param {string} [languageCode]
21426
21976
  * @param {Array<string>} [ids]
21427
21977
  * @param {boolean} [returnDefaultValue]
21978
+ * @param {boolean} [paymentEnabled]
21428
21979
  * @param {number} [page]
21429
21980
  * @param {number} [limit]
21430
21981
  * @param {Date} [lastRetrieved]
21431
21982
  * @param {*} [options] Override http request option.
21432
21983
  * @throws {RequiredError}
21433
21984
  */
21434
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | 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<HospitalsModel>>;
21985
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
21435
21986
  /**
21436
21987
  *
21437
21988
  * @summary Delete HospitalAccreditation.
@@ -21651,6 +22202,58 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21651
22202
  * @throws {RequiredError}
21652
22203
  */
21653
22204
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
22205
+ /**
22206
+ *
22207
+ * @summary Get all HospitalHandles.
22208
+ * @param {string} hospitalId
22209
+ * @param {string} [hospitalId2]
22210
+ * @param {string} [id]
22211
+ * @param {SnsType} [snsType]
22212
+ * @param {string} [handle]
22213
+ * @param {number} [page]
22214
+ * @param {number} [limit]
22215
+ * @param {Date} [lastRetrieved]
22216
+ * @param {*} [options] Override http request option.
22217
+ * @throws {RequiredError}
22218
+ */
22219
+ apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
22220
+ /**
22221
+ *
22222
+ * @summary Delete HospitalHandle.
22223
+ * @param {string} hospitalId
22224
+ * @param {string} handleId
22225
+ * @param {*} [options] Override http request option.
22226
+ * @throws {RequiredError}
22227
+ */
22228
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22229
+ /**
22230
+ *
22231
+ * @summary Get HospitalHandle.
22232
+ * @param {string} hospitalId
22233
+ * @param {string} handleId
22234
+ * @param {*} [options] Override http request option.
22235
+ * @throws {RequiredError}
22236
+ */
22237
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22238
+ /**
22239
+ *
22240
+ * @summary Update HospitalHandle.
22241
+ * @param {string} hospitalId
22242
+ * @param {string} handleId
22243
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
22244
+ * @param {*} [options] Override http request option.
22245
+ * @throws {RequiredError}
22246
+ */
22247
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22248
+ /**
22249
+ *
22250
+ * @summary Get HospitalHandle.
22251
+ * @param {string} hospitalId
22252
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
22253
+ * @param {*} [options] Override http request option.
22254
+ * @throws {RequiredError}
22255
+ */
22256
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
21654
22257
  /**
21655
22258
  *
21656
22259
  * @summary Get all HospitalMedias.
@@ -21923,6 +22526,60 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21923
22526
  * @throws {RequiredError}
21924
22527
  */
21925
22528
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22529
+ /**
22530
+ *
22531
+ * @summary Get all HospitalWorkingDays.
22532
+ * @param {string} hospitalId
22533
+ * @param {string} [hospitalId2]
22534
+ * @param {string} [id]
22535
+ * @param {string} [dayOfWeek]
22536
+ * @param {Date} [timeFrom]
22537
+ * @param {Date} [timeTo]
22538
+ * @param {boolean} [checkHoliday]
22539
+ * @param {number} [page]
22540
+ * @param {number} [limit]
22541
+ * @param {Date} [lastRetrieved]
22542
+ * @param {*} [options] Override http request option.
22543
+ * @throws {RequiredError}
22544
+ */
22545
+ apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
22546
+ /**
22547
+ *
22548
+ * @summary Create HospitalWorkingDay.
22549
+ * @param {string} hospitalId
22550
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
22551
+ * @param {*} [options] Override http request option.
22552
+ * @throws {RequiredError}
22553
+ */
22554
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22555
+ /**
22556
+ *
22557
+ * @summary Delete HospitalWorkingDay.
22558
+ * @param {string} hospitalId
22559
+ * @param {string} workingDayId
22560
+ * @param {*} [options] Override http request option.
22561
+ * @throws {RequiredError}
22562
+ */
22563
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22564
+ /**
22565
+ *
22566
+ * @summary Get HospitalWorkingDay.
22567
+ * @param {string} hospitalId
22568
+ * @param {string} workingDayId
22569
+ * @param {*} [options] Override http request option.
22570
+ * @throws {RequiredError}
22571
+ */
22572
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
22573
+ /**
22574
+ *
22575
+ * @summary Update HospitalWorkingDay.
22576
+ * @param {string} hospitalId
22577
+ * @param {string} workingDayId
22578
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
22579
+ * @param {*} [options] Override http request option.
22580
+ * @throws {RequiredError}
22581
+ */
22582
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
21926
22583
  /**
21927
22584
  *
21928
22585
  * @summary Create Hospital.
@@ -21947,13 +22604,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21947
22604
  * @param {string} [languageCode]
21948
22605
  * @param {Array<string>} [ids]
21949
22606
  * @param {boolean} [returnDefaultValue]
22607
+ * @param {boolean} [paymentEnabled]
21950
22608
  * @param {number} [page]
21951
22609
  * @param {number} [limit]
21952
22610
  * @param {Date} [lastRetrieved]
21953
22611
  * @param {*} [options] Override http request option.
21954
22612
  * @throws {RequiredError}
21955
22613
  */
21956
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | 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<HospitalsSimpleModel>>;
22614
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
21957
22615
  /**
21958
22616
  *
21959
22617
  * @param {string} slug
@@ -21985,13 +22643,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21985
22643
  * @param {string} [languageCode]
21986
22644
  * @param {Array<string>} [ids]
21987
22645
  * @param {boolean} [returnDefaultValue]
22646
+ * @param {boolean} [paymentEnabled]
21988
22647
  * @param {number} [page]
21989
22648
  * @param {number} [limit]
21990
22649
  * @param {Date} [lastRetrieved]
21991
22650
  * @param {*} [options] Override http request option.
21992
22651
  * @throws {RequiredError}
21993
22652
  */
21994
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
22653
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
21995
22654
  /**
21996
22655
  *
21997
22656
  * @summary Delete HospitalAccreditation.
@@ -22211,6 +22870,58 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22211
22870
  * @throws {RequiredError}
22212
22871
  */
22213
22872
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
22873
+ /**
22874
+ *
22875
+ * @summary Get all HospitalHandles.
22876
+ * @param {string} hospitalId
22877
+ * @param {string} [hospitalId2]
22878
+ * @param {string} [id]
22879
+ * @param {SnsType} [snsType]
22880
+ * @param {string} [handle]
22881
+ * @param {number} [page]
22882
+ * @param {number} [limit]
22883
+ * @param {Date} [lastRetrieved]
22884
+ * @param {*} [options] Override http request option.
22885
+ * @throws {RequiredError}
22886
+ */
22887
+ apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
22888
+ /**
22889
+ *
22890
+ * @summary Delete HospitalHandle.
22891
+ * @param {string} hospitalId
22892
+ * @param {string} handleId
22893
+ * @param {*} [options] Override http request option.
22894
+ * @throws {RequiredError}
22895
+ */
22896
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: any): AxiosPromise<boolean>;
22897
+ /**
22898
+ *
22899
+ * @summary Get HospitalHandle.
22900
+ * @param {string} hospitalId
22901
+ * @param {string} handleId
22902
+ * @param {*} [options] Override http request option.
22903
+ * @throws {RequiredError}
22904
+ */
22905
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
22906
+ /**
22907
+ *
22908
+ * @summary Update HospitalHandle.
22909
+ * @param {string} hospitalId
22910
+ * @param {string} handleId
22911
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
22912
+ * @param {*} [options] Override http request option.
22913
+ * @throws {RequiredError}
22914
+ */
22915
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
22916
+ /**
22917
+ *
22918
+ * @summary Get HospitalHandle.
22919
+ * @param {string} hospitalId
22920
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
22921
+ * @param {*} [options] Override http request option.
22922
+ * @throws {RequiredError}
22923
+ */
22924
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
22214
22925
  /**
22215
22926
  *
22216
22927
  * @summary Get all HospitalMedias.
@@ -22483,6 +23194,60 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22483
23194
  * @throws {RequiredError}
22484
23195
  */
22485
23196
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
23197
+ /**
23198
+ *
23199
+ * @summary Get all HospitalWorkingDays.
23200
+ * @param {string} hospitalId
23201
+ * @param {string} [hospitalId2]
23202
+ * @param {string} [id]
23203
+ * @param {string} [dayOfWeek]
23204
+ * @param {Date} [timeFrom]
23205
+ * @param {Date} [timeTo]
23206
+ * @param {boolean} [checkHoliday]
23207
+ * @param {number} [page]
23208
+ * @param {number} [limit]
23209
+ * @param {Date} [lastRetrieved]
23210
+ * @param {*} [options] Override http request option.
23211
+ * @throws {RequiredError}
23212
+ */
23213
+ apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
23214
+ /**
23215
+ *
23216
+ * @summary Create HospitalWorkingDay.
23217
+ * @param {string} hospitalId
23218
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
23219
+ * @param {*} [options] Override http request option.
23220
+ * @throws {RequiredError}
23221
+ */
23222
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
23223
+ /**
23224
+ *
23225
+ * @summary Delete HospitalWorkingDay.
23226
+ * @param {string} hospitalId
23227
+ * @param {string} workingDayId
23228
+ * @param {*} [options] Override http request option.
23229
+ * @throws {RequiredError}
23230
+ */
23231
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<boolean>;
23232
+ /**
23233
+ *
23234
+ * @summary Get HospitalWorkingDay.
23235
+ * @param {string} hospitalId
23236
+ * @param {string} workingDayId
23237
+ * @param {*} [options] Override http request option.
23238
+ * @throws {RequiredError}
23239
+ */
23240
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
23241
+ /**
23242
+ *
23243
+ * @summary Update HospitalWorkingDay.
23244
+ * @param {string} hospitalId
23245
+ * @param {string} workingDayId
23246
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
23247
+ * @param {*} [options] Override http request option.
23248
+ * @throws {RequiredError}
23249
+ */
23250
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
22486
23251
  /**
22487
23252
  *
22488
23253
  * @summary Create Hospital.
@@ -22507,13 +23272,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22507
23272
  * @param {string} [languageCode]
22508
23273
  * @param {Array<string>} [ids]
22509
23274
  * @param {boolean} [returnDefaultValue]
23275
+ * @param {boolean} [paymentEnabled]
22510
23276
  * @param {number} [page]
22511
23277
  * @param {number} [limit]
22512
23278
  * @param {Date} [lastRetrieved]
22513
23279
  * @param {*} [options] Override http request option.
22514
23280
  * @throws {RequiredError}
22515
23281
  */
22516
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
23282
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
22517
23283
  /**
22518
23284
  *
22519
23285
  * @param {string} slug
@@ -22547,6 +23313,7 @@ export declare class HospitalsApi extends BaseAPI {
22547
23313
  * @param {string} [languageCode]
22548
23314
  * @param {Array<string>} [ids]
22549
23315
  * @param {boolean} [returnDefaultValue]
23316
+ * @param {boolean} [paymentEnabled]
22550
23317
  * @param {number} [page]
22551
23318
  * @param {number} [limit]
22552
23319
  * @param {Date} [lastRetrieved]
@@ -22554,7 +23321,7 @@ export declare class HospitalsApi extends BaseAPI {
22554
23321
  * @throws {RequiredError}
22555
23322
  * @memberof HospitalsApi
22556
23323
  */
22557
- apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
23324
+ apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
22558
23325
  /**
22559
23326
  *
22560
23327
  * @summary Delete HospitalAccreditation.
@@ -22795,6 +23562,63 @@ export declare class HospitalsApi extends BaseAPI {
22795
23562
  * @memberof HospitalsApi
22796
23563
  */
22797
23564
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
23565
+ /**
23566
+ *
23567
+ * @summary Get all HospitalHandles.
23568
+ * @param {string} hospitalId
23569
+ * @param {string} [hospitalId2]
23570
+ * @param {string} [id]
23571
+ * @param {SnsType} [snsType]
23572
+ * @param {string} [handle]
23573
+ * @param {number} [page]
23574
+ * @param {number} [limit]
23575
+ * @param {Date} [lastRetrieved]
23576
+ * @param {*} [options] Override http request option.
23577
+ * @throws {RequiredError}
23578
+ * @memberof HospitalsApi
23579
+ */
23580
+ apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
23581
+ /**
23582
+ *
23583
+ * @summary Delete HospitalHandle.
23584
+ * @param {string} hospitalId
23585
+ * @param {string} handleId
23586
+ * @param {*} [options] Override http request option.
23587
+ * @throws {RequiredError}
23588
+ * @memberof HospitalsApi
23589
+ */
23590
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
23591
+ /**
23592
+ *
23593
+ * @summary Get HospitalHandle.
23594
+ * @param {string} hospitalId
23595
+ * @param {string} handleId
23596
+ * @param {*} [options] Override http request option.
23597
+ * @throws {RequiredError}
23598
+ * @memberof HospitalsApi
23599
+ */
23600
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23601
+ /**
23602
+ *
23603
+ * @summary Update HospitalHandle.
23604
+ * @param {string} hospitalId
23605
+ * @param {string} handleId
23606
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
23607
+ * @param {*} [options] Override http request option.
23608
+ * @throws {RequiredError}
23609
+ * @memberof HospitalsApi
23610
+ */
23611
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23612
+ /**
23613
+ *
23614
+ * @summary Get HospitalHandle.
23615
+ * @param {string} hospitalId
23616
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
23617
+ * @param {*} [options] Override http request option.
23618
+ * @throws {RequiredError}
23619
+ * @memberof HospitalsApi
23620
+ */
23621
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
22798
23622
  /**
22799
23623
  *
22800
23624
  * @summary Get all HospitalMedias.
@@ -23089,6 +23913,65 @@ export declare class HospitalsApi extends BaseAPI {
23089
23913
  * @memberof HospitalsApi
23090
23914
  */
23091
23915
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
23916
+ /**
23917
+ *
23918
+ * @summary Get all HospitalWorkingDays.
23919
+ * @param {string} hospitalId
23920
+ * @param {string} [hospitalId2]
23921
+ * @param {string} [id]
23922
+ * @param {string} [dayOfWeek]
23923
+ * @param {Date} [timeFrom]
23924
+ * @param {Date} [timeTo]
23925
+ * @param {boolean} [checkHoliday]
23926
+ * @param {number} [page]
23927
+ * @param {number} [limit]
23928
+ * @param {Date} [lastRetrieved]
23929
+ * @param {*} [options] Override http request option.
23930
+ * @throws {RequiredError}
23931
+ * @memberof HospitalsApi
23932
+ */
23933
+ apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel>>;
23934
+ /**
23935
+ *
23936
+ * @summary Create HospitalWorkingDay.
23937
+ * @param {string} hospitalId
23938
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
23939
+ * @param {*} [options] Override http request option.
23940
+ * @throws {RequiredError}
23941
+ * @memberof HospitalsApi
23942
+ */
23943
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23944
+ /**
23945
+ *
23946
+ * @summary Delete HospitalWorkingDay.
23947
+ * @param {string} hospitalId
23948
+ * @param {string} workingDayId
23949
+ * @param {*} [options] Override http request option.
23950
+ * @throws {RequiredError}
23951
+ * @memberof HospitalsApi
23952
+ */
23953
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
23954
+ /**
23955
+ *
23956
+ * @summary Get HospitalWorkingDay.
23957
+ * @param {string} hospitalId
23958
+ * @param {string} workingDayId
23959
+ * @param {*} [options] Override http request option.
23960
+ * @throws {RequiredError}
23961
+ * @memberof HospitalsApi
23962
+ */
23963
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
23964
+ /**
23965
+ *
23966
+ * @summary Update HospitalWorkingDay.
23967
+ * @param {string} hospitalId
23968
+ * @param {string} workingDayId
23969
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
23970
+ * @param {*} [options] Override http request option.
23971
+ * @throws {RequiredError}
23972
+ * @memberof HospitalsApi
23973
+ */
23974
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
23092
23975
  /**
23093
23976
  *
23094
23977
  * @summary Create Hospital.
@@ -23114,6 +23997,7 @@ export declare class HospitalsApi extends BaseAPI {
23114
23997
  * @param {string} [languageCode]
23115
23998
  * @param {Array<string>} [ids]
23116
23999
  * @param {boolean} [returnDefaultValue]
24000
+ * @param {boolean} [paymentEnabled]
23117
24001
  * @param {number} [page]
23118
24002
  * @param {number} [limit]
23119
24003
  * @param {Date} [lastRetrieved]
@@ -23121,7 +24005,7 @@ export declare class HospitalsApi extends BaseAPI {
23121
24005
  * @throws {RequiredError}
23122
24006
  * @memberof HospitalsApi
23123
24007
  */
23124
- apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
24008
+ apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
23125
24009
  /**
23126
24010
  *
23127
24011
  * @param {string} slug