ch-admin-api-client-typescript 2.9.6 → 2.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -1250,6 +1250,12 @@ export interface BookingItemModel {
1250
1250
  * @memberof BookingItemModel
1251
1251
  */
1252
1252
  'completionRate'?: number;
1253
+ /**
1254
+ *
1255
+ * @type {boolean}
1256
+ * @memberof BookingItemModel
1257
+ */
1258
+ 'isExternal'?: boolean;
1253
1259
  }
1254
1260
  /**
1255
1261
  *
@@ -1467,6 +1473,12 @@ export interface BookingModel {
1467
1473
  * @memberof BookingModel
1468
1474
  */
1469
1475
  'completionRate'?: number;
1476
+ /**
1477
+ *
1478
+ * @type {boolean}
1479
+ * @memberof BookingModel
1480
+ */
1481
+ 'isExternal'?: boolean;
1470
1482
  /**
1471
1483
  *
1472
1484
  * @type {Array<BookingChangeLogModel>}
@@ -2408,6 +2420,12 @@ export interface ConsultationItemModel {
2408
2420
  * @memberof ConsultationItemModel
2409
2421
  */
2410
2422
  'completionRate'?: number;
2423
+ /**
2424
+ *
2425
+ * @type {boolean}
2426
+ * @memberof ConsultationItemModel
2427
+ */
2428
+ 'isExternal'?: boolean;
2411
2429
  }
2412
2430
  /**
2413
2431
  *
@@ -2685,6 +2703,12 @@ export interface ConsultationModel {
2685
2703
  * @memberof ConsultationModel
2686
2704
  */
2687
2705
  'completionRate'?: number;
2706
+ /**
2707
+ *
2708
+ * @type {boolean}
2709
+ * @memberof ConsultationModel
2710
+ */
2711
+ 'isExternal'?: boolean;
2688
2712
  /**
2689
2713
  *
2690
2714
  * @type {Array<ConsultationChangeLogModel>}
@@ -4194,16 +4218,16 @@ export interface CreateHospitalCommand {
4194
4218
  'websiteUrl'?: string | null;
4195
4219
  /**
4196
4220
  *
4197
- * @type {Array<AwardModel>}
4221
+ * @type {string}
4198
4222
  * @memberof CreateHospitalCommand
4199
4223
  */
4200
- 'awards'?: Array<AwardModel> | null;
4224
+ 'contactTel'?: string | null;
4201
4225
  /**
4202
4226
  *
4203
- * @type {Array<MediaModel>}
4227
+ * @type {string}
4204
4228
  * @memberof CreateHospitalCommand
4205
4229
  */
4206
- 'medias'?: Array<MediaModel> | null;
4230
+ 'contactEmail'?: string | null;
4207
4231
  /**
4208
4232
  *
4209
4233
  * @type {LocationModel}
@@ -4346,6 +4370,25 @@ export interface CreateHospitalServiceCommand {
4346
4370
  */
4347
4371
  'medias'?: Array<MediaModel> | null;
4348
4372
  }
4373
+ /**
4374
+ *
4375
+ * @export
4376
+ * @interface CreateHospitalSnsHandleCommand
4377
+ */
4378
+ export interface CreateHospitalSnsHandleCommand {
4379
+ /**
4380
+ *
4381
+ * @type {SnsType}
4382
+ * @memberof CreateHospitalSnsHandleCommand
4383
+ */
4384
+ 'snsType'?: SnsType;
4385
+ /**
4386
+ *
4387
+ * @type {string}
4388
+ * @memberof CreateHospitalSnsHandleCommand
4389
+ */
4390
+ 'handle'?: string | null;
4391
+ }
4349
4392
  /**
4350
4393
  *
4351
4394
  * @export
@@ -4419,6 +4462,37 @@ export interface CreateHospitalSpecialtyCommand {
4419
4462
  */
4420
4463
  'medias'?: Array<MediaModel> | null;
4421
4464
  }
4465
+ /**
4466
+ *
4467
+ * @export
4468
+ * @interface CreateHospitalWorkingDayCommand
4469
+ */
4470
+ export interface CreateHospitalWorkingDayCommand {
4471
+ /**
4472
+ *
4473
+ * @type {string}
4474
+ * @memberof CreateHospitalWorkingDayCommand
4475
+ */
4476
+ 'dayOfWeek'?: string | null;
4477
+ /**
4478
+ *
4479
+ * @type {Date}
4480
+ * @memberof CreateHospitalWorkingDayCommand
4481
+ */
4482
+ 'timeFrom'?: Date;
4483
+ /**
4484
+ *
4485
+ * @type {Date}
4486
+ * @memberof CreateHospitalWorkingDayCommand
4487
+ */
4488
+ 'timeTo'?: Date;
4489
+ /**
4490
+ *
4491
+ * @type {boolean}
4492
+ * @memberof CreateHospitalWorkingDayCommand
4493
+ */
4494
+ 'checkHoliday'?: boolean;
4495
+ }
4422
4496
  /**
4423
4497
  *
4424
4498
  * @export
@@ -7396,6 +7470,12 @@ export interface HospitalItemModel {
7396
7470
  * @memberof HospitalItemModel
7397
7471
  */
7398
7472
  'specialtiesSummerized'?: string | null;
7473
+ /**
7474
+ *
7475
+ * @type {boolean}
7476
+ * @memberof HospitalItemModel
7477
+ */
7478
+ 'paymentEnabled'?: boolean;
7399
7479
  /**
7400
7480
  *
7401
7481
  * @type {Array<AwardModel>}
@@ -7631,6 +7711,12 @@ export interface HospitalModel {
7631
7711
  * @memberof HospitalModel
7632
7712
  */
7633
7713
  'specialtiesSummerized'?: string | null;
7714
+ /**
7715
+ *
7716
+ * @type {boolean}
7717
+ * @memberof HospitalModel
7718
+ */
7719
+ 'paymentEnabled'?: boolean;
7634
7720
  /**
7635
7721
  *
7636
7722
  * @type {Array<AwardModel>}
@@ -7685,6 +7771,30 @@ export interface HospitalModel {
7685
7771
  * @memberof HospitalModel
7686
7772
  */
7687
7773
  'languageCode'?: string | null;
7774
+ /**
7775
+ *
7776
+ * @type {string}
7777
+ * @memberof HospitalModel
7778
+ */
7779
+ 'contactTel'?: string | null;
7780
+ /**
7781
+ *
7782
+ * @type {string}
7783
+ * @memberof HospitalModel
7784
+ */
7785
+ 'contactEmail'?: string | null;
7786
+ /**
7787
+ *
7788
+ * @type {Array<WorkingDay>}
7789
+ * @memberof HospitalModel
7790
+ */
7791
+ 'workingDays'?: Array<WorkingDay> | null;
7792
+ /**
7793
+ *
7794
+ * @type {Array<SnsHandle>}
7795
+ * @memberof HospitalModel
7796
+ */
7797
+ 'snsHandles'?: Array<SnsHandle> | null;
7688
7798
  }
7689
7799
  /**
7690
7800
  *
@@ -7842,6 +7952,12 @@ export interface HospitalServiceItemModel {
7842
7952
  * @memberof HospitalServiceItemModel
7843
7953
  */
7844
7954
  'photoThumbnail'?: string | null;
7955
+ /**
7956
+ *
7957
+ * @type {Array<LocalizedUrlModel>}
7958
+ * @memberof HospitalServiceItemModel
7959
+ */
7960
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7845
7961
  /**
7846
7962
  *
7847
7963
  * @type {Array<MediaModel>}
@@ -8011,6 +8127,12 @@ export interface HospitalServiceModel {
8011
8127
  * @memberof HospitalServiceModel
8012
8128
  */
8013
8129
  'photoThumbnail'?: string | null;
8130
+ /**
8131
+ *
8132
+ * @type {Array<LocalizedUrlModel>}
8133
+ * @memberof HospitalServiceModel
8134
+ */
8135
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8014
8136
  /**
8015
8137
  *
8016
8138
  * @type {Array<MediaModel>}
@@ -8074,6 +8196,25 @@ export interface HospitalSimpleItemModel {
8074
8196
  */
8075
8197
  'confirmed'?: boolean;
8076
8198
  }
8199
+ /**
8200
+ *
8201
+ * @export
8202
+ * @interface HospitalSnsHandlesModel
8203
+ */
8204
+ export interface HospitalSnsHandlesModel {
8205
+ /**
8206
+ *
8207
+ * @type {Array<SnsHandleModel>}
8208
+ * @memberof HospitalSnsHandlesModel
8209
+ */
8210
+ 'items'?: Array<SnsHandleModel> | null;
8211
+ /**
8212
+ *
8213
+ * @type {PagedListMetaData}
8214
+ * @memberof HospitalSnsHandlesModel
8215
+ */
8216
+ 'metaData'?: PagedListMetaData;
8217
+ }
8077
8218
  /**
8078
8219
  *
8079
8220
  * @export
@@ -8256,6 +8397,12 @@ export interface HospitalSpecialtyItemModel {
8256
8397
  * @memberof HospitalSpecialtyItemModel
8257
8398
  */
8258
8399
  'backgroundThumbnail'?: string | null;
8400
+ /**
8401
+ *
8402
+ * @type {Array<LocalizedUrlModel>}
8403
+ * @memberof HospitalSpecialtyItemModel
8404
+ */
8405
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8259
8406
  /**
8260
8407
  *
8261
8408
  * @type {Array<MediaModel>}
@@ -8413,6 +8560,12 @@ export interface HospitalSpecialtyModel {
8413
8560
  * @memberof HospitalSpecialtyModel
8414
8561
  */
8415
8562
  'backgroundThumbnail'?: string | null;
8563
+ /**
8564
+ *
8565
+ * @type {Array<LocalizedUrlModel>}
8566
+ * @memberof HospitalSpecialtyModel
8567
+ */
8568
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8416
8569
  /**
8417
8570
  *
8418
8571
  * @type {Array<MediaModel>}
@@ -8474,6 +8627,12 @@ export interface HospitalSpecialtySimpleItemModel {
8474
8627
  * @memberof HospitalSpecialtySimpleItemModel
8475
8628
  */
8476
8629
  'order'?: number;
8630
+ /**
8631
+ *
8632
+ * @type {Array<LocalizedUrlModel>}
8633
+ * @memberof HospitalSpecialtySimpleItemModel
8634
+ */
8635
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8477
8636
  /**
8478
8637
  *
8479
8638
  * @type {boolean}
@@ -10420,6 +10579,31 @@ export interface ServiceReviewsModel {
10420
10579
  */
10421
10580
  'metaData'?: PagedListMetaData;
10422
10581
  }
10582
+ /**
10583
+ *
10584
+ * @export
10585
+ * @interface SnsHandle
10586
+ */
10587
+ export interface SnsHandle {
10588
+ /**
10589
+ *
10590
+ * @type {string}
10591
+ * @memberof SnsHandle
10592
+ */
10593
+ 'id'?: string;
10594
+ /**
10595
+ *
10596
+ * @type {SnsType}
10597
+ * @memberof SnsHandle
10598
+ */
10599
+ 'snsType'?: SnsType;
10600
+ /**
10601
+ *
10602
+ * @type {string}
10603
+ * @memberof SnsHandle
10604
+ */
10605
+ 'handle'?: string | null;
10606
+ }
10423
10607
  /**
10424
10608
  *
10425
10609
  * @export
@@ -10453,7 +10637,9 @@ export interface SnsHandleModel {
10453
10637
  export declare enum SnsType {
10454
10638
  Twitter = "Twitter",
10455
10639
  Facebook = "Facebook",
10456
- Instagram = "Instagram"
10640
+ Instagram = "Instagram",
10641
+ LinkedIn = "LinkedIn",
10642
+ Youtube = "Youtube"
10457
10643
  }
10458
10644
  /**
10459
10645
  *
@@ -10574,6 +10760,12 @@ export interface SpecialtyItemModel {
10574
10760
  * @memberof SpecialtyItemModel
10575
10761
  */
10576
10762
  'specialtyTypeName'?: string | null;
10763
+ /**
10764
+ *
10765
+ * @type {Array<LocalizedUrlModel>}
10766
+ * @memberof SpecialtyItemModel
10767
+ */
10768
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10577
10769
  /**
10578
10770
  *
10579
10771
  * @type {boolean}
@@ -10653,6 +10845,12 @@ export interface SpecialtyModel {
10653
10845
  * @memberof SpecialtyModel
10654
10846
  */
10655
10847
  'specialtyTypeName'?: string | null;
10848
+ /**
10849
+ *
10850
+ * @type {Array<LocalizedUrlModel>}
10851
+ * @memberof SpecialtyModel
10852
+ */
10853
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
10656
10854
  /**
10657
10855
  *
10658
10856
  * @type {boolean}
@@ -11233,10 +11431,10 @@ export interface UpdateAboutUsPageCommand {
11233
11431
  'confirmed'?: boolean;
11234
11432
  /**
11235
11433
  *
11236
- * @type {Array<Media>}
11434
+ * @type {Array<MediaModel>}
11237
11435
  * @memberof UpdateAboutUsPageCommand
11238
11436
  */
11239
- 'medias'?: Array<Media> | null;
11437
+ 'medias'?: Array<MediaModel> | null;
11240
11438
  /**
11241
11439
  *
11242
11440
  * @type {AuditableEntity}
@@ -12280,6 +12478,24 @@ export interface UpdateHospitalCommand {
12280
12478
  * @memberof UpdateHospitalCommand
12281
12479
  */
12282
12480
  'websiteUrl'?: string | null;
12481
+ /**
12482
+ *
12483
+ * @type {string}
12484
+ * @memberof UpdateHospitalCommand
12485
+ */
12486
+ 'contactTel'?: string | null;
12487
+ /**
12488
+ *
12489
+ * @type {string}
12490
+ * @memberof UpdateHospitalCommand
12491
+ */
12492
+ 'contactEmail'?: string | null;
12493
+ /**
12494
+ *
12495
+ * @type {boolean}
12496
+ * @memberof UpdateHospitalCommand
12497
+ */
12498
+ 'paymentEnabled'?: boolean;
12283
12499
  /**
12284
12500
  *
12285
12501
  * @type {boolean}
@@ -12433,6 +12649,25 @@ export interface UpdateHospitalServiceCommand {
12433
12649
  */
12434
12650
  'medias'?: Array<MediaModel> | null;
12435
12651
  }
12652
+ /**
12653
+ *
12654
+ * @export
12655
+ * @interface UpdateHospitalSnsHandleCommand
12656
+ */
12657
+ export interface UpdateHospitalSnsHandleCommand {
12658
+ /**
12659
+ *
12660
+ * @type {SnsType}
12661
+ * @memberof UpdateHospitalSnsHandleCommand
12662
+ */
12663
+ 'snsType'?: SnsType;
12664
+ /**
12665
+ *
12666
+ * @type {string}
12667
+ * @memberof UpdateHospitalSnsHandleCommand
12668
+ */
12669
+ 'handle'?: string | null;
12670
+ }
12436
12671
  /**
12437
12672
  *
12438
12673
  * @export
@@ -12518,6 +12753,37 @@ export interface UpdateHospitalSpecialtyCommand {
12518
12753
  */
12519
12754
  'medias'?: Array<MediaModel> | null;
12520
12755
  }
12756
+ /**
12757
+ *
12758
+ * @export
12759
+ * @interface UpdateHospitalWorkingDayCommand
12760
+ */
12761
+ export interface UpdateHospitalWorkingDayCommand {
12762
+ /**
12763
+ *
12764
+ * @type {string}
12765
+ * @memberof UpdateHospitalWorkingDayCommand
12766
+ */
12767
+ 'dayOfWeek'?: string | null;
12768
+ /**
12769
+ *
12770
+ * @type {Date}
12771
+ * @memberof UpdateHospitalWorkingDayCommand
12772
+ */
12773
+ 'timeFrom'?: Date;
12774
+ /**
12775
+ *
12776
+ * @type {Date}
12777
+ * @memberof UpdateHospitalWorkingDayCommand
12778
+ */
12779
+ 'timeTo'?: Date;
12780
+ /**
12781
+ *
12782
+ * @type {boolean}
12783
+ * @memberof UpdateHospitalWorkingDayCommand
12784
+ */
12785
+ 'checkHoliday'?: boolean;
12786
+ }
12521
12787
  /**
12522
12788
  *
12523
12789
  * @export
@@ -13339,54 +13605,157 @@ export interface WeatherForecast {
13339
13605
  'summary'?: string | null;
13340
13606
  }
13341
13607
  /**
13342
- * AboutUsApi - axios parameter creator
13608
+ *
13343
13609
  * @export
13610
+ * @interface WorkingDay
13344
13611
  */
13345
- export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13612
+ export interface WorkingDay {
13346
13613
  /**
13347
13614
  *
13348
- * @summary Delete AboutUs.
13349
- * @param {string} aboutUsId
13350
- * @param {*} [options] Override http request option.
13351
- * @throws {RequiredError}
13615
+ * @type {string}
13616
+ * @memberof WorkingDay
13352
13617
  */
13353
- apiV1AboutusAboutUsIdDelete: (aboutUsId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13618
+ 'id'?: string;
13354
13619
  /**
13355
13620
  *
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}
13621
+ * @type {string}
13622
+ * @memberof WorkingDay
13362
13623
  */
13363
- apiV1AboutusAboutUsIdGet: (aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13624
+ 'dayOfWeek'?: string | null;
13364
13625
  /**
13365
13626
  *
13366
- * @summary Update AboutUs.
13367
- * @param {string} aboutUsId
13368
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13369
- * @param {*} [options] Override http request option.
13370
- * @throws {RequiredError}
13627
+ * @type {Date}
13628
+ * @memberof WorkingDay
13371
13629
  */
13372
- apiV1AboutusAboutUsIdPut: (aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13630
+ 'timeFrom'?: Date;
13373
13631
  /**
13374
13632
  *
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]
13633
+ * @type {Date}
13634
+ * @memberof WorkingDay
13635
+ */
13636
+ 'timeTo'?: Date;
13637
+ /**
13638
+ *
13639
+ * @type {boolean}
13640
+ * @memberof WorkingDay
13641
+ */
13642
+ 'checkHoliday'?: boolean;
13643
+ }
13644
+ /**
13645
+ *
13646
+ * @export
13647
+ * @interface WorkingDayItemModel
13648
+ */
13649
+ export interface WorkingDayItemModel {
13650
+ /**
13651
+ *
13652
+ * @type {string}
13653
+ * @memberof WorkingDayItemModel
13654
+ */
13655
+ 'id'?: string;
13656
+ /**
13657
+ *
13658
+ * @type {string}
13659
+ * @memberof WorkingDayItemModel
13660
+ */
13661
+ 'dayOfWeek'?: string | null;
13662
+ /**
13663
+ *
13664
+ * @type {Date}
13665
+ * @memberof WorkingDayItemModel
13666
+ */
13667
+ 'timeFrom'?: Date;
13668
+ /**
13669
+ *
13670
+ * @type {Date}
13671
+ * @memberof WorkingDayItemModel
13672
+ */
13673
+ 'timeTo'?: Date;
13674
+ /**
13675
+ *
13676
+ * @type {boolean}
13677
+ * @memberof WorkingDayItemModel
13678
+ */
13679
+ 'checkHoliday'?: boolean;
13680
+ }
13681
+ /**
13682
+ *
13683
+ * @export
13684
+ * @interface WorkingDayModel
13685
+ */
13686
+ export interface WorkingDayModel {
13687
+ /**
13688
+ *
13689
+ * @type {string}
13690
+ * @memberof WorkingDayModel
13691
+ */
13692
+ 'id'?: string;
13693
+ /**
13694
+ *
13695
+ * @type {string}
13696
+ * @memberof WorkingDayModel
13697
+ */
13698
+ 'dayOfWeek'?: string | null;
13699
+ /**
13700
+ *
13701
+ * @type {Date}
13702
+ * @memberof WorkingDayModel
13703
+ */
13704
+ 'timeFrom'?: Date;
13705
+ /**
13706
+ *
13707
+ * @type {Date}
13708
+ * @memberof WorkingDayModel
13709
+ */
13710
+ 'timeTo'?: Date;
13711
+ /**
13712
+ *
13713
+ * @type {boolean}
13714
+ * @memberof WorkingDayModel
13715
+ */
13716
+ 'checkHoliday'?: boolean;
13717
+ }
13718
+ /**
13719
+ *
13720
+ * @export
13721
+ * @interface WorkingDaysModel
13722
+ */
13723
+ export interface WorkingDaysModel {
13724
+ /**
13725
+ *
13726
+ * @type {Array<WorkingDayItemModel>}
13727
+ * @memberof WorkingDaysModel
13728
+ */
13729
+ 'items'?: Array<WorkingDayItemModel> | null;
13730
+ /**
13731
+ *
13732
+ * @type {PagedListMetaData}
13733
+ * @memberof WorkingDaysModel
13734
+ */
13735
+ 'metaData'?: PagedListMetaData;
13736
+ }
13737
+ /**
13738
+ * AboutUsApi - axios parameter creator
13739
+ * @export
13740
+ */
13741
+ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13742
+ /**
13743
+ *
13744
+ * @summary Get all AboutUsList.
13745
+ * @param {string} [hospitalId]
13746
+ * @param {string} [hospitalName]
13747
+ * @param {string} [hospitalSlug]
13748
+ * @param {string} [overviewTitle]
13749
+ * @param {string} [normalizedOverviewTitle]
13750
+ * @param {string} [overview]
13751
+ * @param {string} [content]
13752
+ * @param {string} [customStyle]
13753
+ * @param {string} [background]
13754
+ * @param {string} [backgroundThumbnail]
13755
+ * @param {string} [languageCode]
13756
+ * @param {boolean} [returnDefaultValue]
13757
+ * @param {boolean} [confirmed]
13758
+ * @param {number} [page]
13390
13759
  * @param {number} [limit]
13391
13760
  * @param {Date} [lastRetrieved]
13392
13761
  * @param {*} [options] Override http request option.
@@ -13395,54 +13764,54 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
13395
13764
  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>;
13396
13765
  /**
13397
13766
  *
13398
- * @summary Create AboutUs.
13399
- * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13767
+ * @summary Delete AboutUs.
13768
+ * @param {string} hospitalId
13400
13769
  * @param {*} [options] Override http request option.
13401
13770
  * @throws {RequiredError}
13402
13771
  */
13403
- apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13772
+ apiV1AboutusHospitalIdDelete: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13404
13773
  /**
13405
13774
  *
13406
- * @param {string} slug
13775
+ * @summary Get AboutUs.
13776
+ * @param {string} hospitalId
13407
13777
  * @param {string} [languageCode]
13408
13778
  * @param {boolean} [returnDefaultValue]
13409
13779
  * @param {*} [options] Override http request option.
13410
13780
  * @throws {RequiredError}
13411
13781
  */
13412
- apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13413
- };
13414
- /**
13415
- * AboutUsApi - functional programming interface
13416
- * @export
13417
- */
13418
- export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
13782
+ apiV1AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13419
13783
  /**
13420
13784
  *
13421
- * @summary Delete AboutUs.
13422
- * @param {string} aboutUsId
13785
+ * @summary Update AboutUs.
13786
+ * @param {string} hospitalId
13787
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13423
13788
  * @param {*} [options] Override http request option.
13424
13789
  * @throws {RequiredError}
13425
13790
  */
13426
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13791
+ apiV1AboutusHospitalIdPut: (hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13427
13792
  /**
13428
13793
  *
13429
- * @summary Get AboutUs.
13430
- * @param {string} aboutUsId
13431
- * @param {string} [languageCode]
13432
- * @param {boolean} [returnDefaultValue]
13794
+ * @summary Create AboutUs.
13795
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13433
13796
  * @param {*} [options] Override http request option.
13434
13797
  * @throws {RequiredError}
13435
13798
  */
13436
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13799
+ apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13437
13800
  /**
13438
13801
  *
13439
- * @summary Update AboutUs.
13440
- * @param {string} aboutUsId
13441
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13802
+ * @param {string} slug
13803
+ * @param {string} [languageCode]
13804
+ * @param {boolean} [returnDefaultValue]
13442
13805
  * @param {*} [options] Override http request option.
13443
13806
  * @throws {RequiredError}
13444
13807
  */
13445
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13808
+ apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13809
+ };
13810
+ /**
13811
+ * AboutUsApi - functional programming interface
13812
+ * @export
13813
+ */
13814
+ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
13446
13815
  /**
13447
13816
  *
13448
13817
  * @summary Get all AboutUsList.
@@ -13468,54 +13837,54 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13468
13837
  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>>;
13469
13838
  /**
13470
13839
  *
13471
- * @summary Create AboutUs.
13472
- * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13840
+ * @summary Delete AboutUs.
13841
+ * @param {string} hospitalId
13473
13842
  * @param {*} [options] Override http request option.
13474
13843
  * @throws {RequiredError}
13475
13844
  */
13476
- apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13845
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13477
13846
  /**
13478
13847
  *
13479
- * @param {string} slug
13848
+ * @summary Get AboutUs.
13849
+ * @param {string} hospitalId
13480
13850
  * @param {string} [languageCode]
13481
13851
  * @param {boolean} [returnDefaultValue]
13482
13852
  * @param {*} [options] Override http request option.
13483
13853
  * @throws {RequiredError}
13484
13854
  */
13485
- apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13486
- };
13487
- /**
13488
- * AboutUsApi - factory interface
13489
- * @export
13490
- */
13491
- export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13855
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13492
13856
  /**
13493
13857
  *
13494
- * @summary Delete AboutUs.
13495
- * @param {string} aboutUsId
13858
+ * @summary Update AboutUs.
13859
+ * @param {string} hospitalId
13860
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13496
13861
  * @param {*} [options] Override http request option.
13497
13862
  * @throws {RequiredError}
13498
13863
  */
13499
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: any): AxiosPromise<boolean>;
13864
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13500
13865
  /**
13501
13866
  *
13502
- * @summary Get AboutUs.
13503
- * @param {string} aboutUsId
13504
- * @param {string} [languageCode]
13505
- * @param {boolean} [returnDefaultValue]
13867
+ * @summary Create AboutUs.
13868
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13506
13869
  * @param {*} [options] Override http request option.
13507
13870
  * @throws {RequiredError}
13508
13871
  */
13509
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13872
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13510
13873
  /**
13511
13874
  *
13512
- * @summary Update AboutUs.
13513
- * @param {string} aboutUsId
13514
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13875
+ * @param {string} slug
13876
+ * @param {string} [languageCode]
13877
+ * @param {boolean} [returnDefaultValue]
13515
13878
  * @param {*} [options] Override http request option.
13516
13879
  * @throws {RequiredError}
13517
13880
  */
13518
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13881
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13882
+ };
13883
+ /**
13884
+ * AboutUsApi - factory interface
13885
+ * @export
13886
+ */
13887
+ export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13519
13888
  /**
13520
13889
  *
13521
13890
  * @summary Get all AboutUsList.
@@ -13541,59 +13910,56 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
13541
13910
  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
13911
  /**
13543
13912
  *
13544
- * @summary Create AboutUs.
13545
- * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13913
+ * @summary Delete AboutUs.
13914
+ * @param {string} hospitalId
13546
13915
  * @param {*} [options] Override http request option.
13547
13916
  * @throws {RequiredError}
13548
13917
  */
13549
- apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13918
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: any): AxiosPromise<boolean>;
13550
13919
  /**
13551
13920
  *
13552
- * @param {string} slug
13921
+ * @summary Get AboutUs.
13922
+ * @param {string} hospitalId
13553
13923
  * @param {string} [languageCode]
13554
13924
  * @param {boolean} [returnDefaultValue]
13555
13925
  * @param {*} [options] Override http request option.
13556
13926
  * @throws {RequiredError}
13557
13927
  */
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 {
13928
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13567
13929
  /**
13568
13930
  *
13569
- * @summary Delete AboutUs.
13570
- * @param {string} aboutUsId
13931
+ * @summary Update AboutUs.
13932
+ * @param {string} hospitalId
13933
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13571
13934
  * @param {*} [options] Override http request option.
13572
13935
  * @throws {RequiredError}
13573
- * @memberof AboutUsApi
13574
13936
  */
13575
- apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13937
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13576
13938
  /**
13577
13939
  *
13578
- * @summary Get AboutUs.
13579
- * @param {string} aboutUsId
13580
- * @param {string} [languageCode]
13581
- * @param {boolean} [returnDefaultValue]
13940
+ * @summary Create AboutUs.
13941
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13582
13942
  * @param {*} [options] Override http request option.
13583
13943
  * @throws {RequiredError}
13584
- * @memberof AboutUsApi
13585
13944
  */
13586
- apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13945
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13587
13946
  /**
13588
13947
  *
13589
- * @summary Update AboutUs.
13590
- * @param {string} aboutUsId
13591
- * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13948
+ * @param {string} slug
13949
+ * @param {string} [languageCode]
13950
+ * @param {boolean} [returnDefaultValue]
13592
13951
  * @param {*} [options] Override http request option.
13593
13952
  * @throws {RequiredError}
13594
- * @memberof AboutUsApi
13595
13953
  */
13596
- apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13954
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13955
+ };
13956
+ /**
13957
+ * AboutUsApi - object-oriented interface
13958
+ * @export
13959
+ * @class AboutUsApi
13960
+ * @extends {BaseAPI}
13961
+ */
13962
+ export declare class AboutUsApi extends BaseAPI {
13597
13963
  /**
13598
13964
  *
13599
13965
  * @summary Get all AboutUsList.
@@ -13618,6 +13984,36 @@ export declare class AboutUsApi extends BaseAPI {
13618
13984
  * @memberof AboutUsApi
13619
13985
  */
13620
13986
  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>>;
13987
+ /**
13988
+ *
13989
+ * @summary Delete AboutUs.
13990
+ * @param {string} hospitalId
13991
+ * @param {*} [options] Override http request option.
13992
+ * @throws {RequiredError}
13993
+ * @memberof AboutUsApi
13994
+ */
13995
+ apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13996
+ /**
13997
+ *
13998
+ * @summary Get AboutUs.
13999
+ * @param {string} hospitalId
14000
+ * @param {string} [languageCode]
14001
+ * @param {boolean} [returnDefaultValue]
14002
+ * @param {*} [options] Override http request option.
14003
+ * @throws {RequiredError}
14004
+ * @memberof AboutUsApi
14005
+ */
14006
+ apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
14007
+ /**
14008
+ *
14009
+ * @summary Update AboutUs.
14010
+ * @param {string} hospitalId
14011
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
14012
+ * @param {*} [options] Override http request option.
14013
+ * @throws {RequiredError}
14014
+ * @memberof AboutUsApi
14015
+ */
14016
+ apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13621
14017
  /**
13622
14018
  *
13623
14019
  * @summary Create AboutUs.
@@ -15002,6 +15398,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
15002
15398
  * @throws {RequiredError}
15003
15399
  */
15004
15400
  apiV1BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15401
+ /**
15402
+ *
15403
+ * @summary Mark as Paid booking.
15404
+ * @param {string} bookingId
15405
+ * @param {*} [options] Override http request option.
15406
+ * @throws {RequiredError}
15407
+ */
15408
+ apiV1BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15005
15409
  /**
15006
15410
  *
15007
15411
  * @summary Reject booking.
@@ -15021,13 +15425,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
15021
15425
  * @param {string} [dealPackageId]
15022
15426
  * @param {SortingOrder} [sortRequestDate]
15023
15427
  * @param {SortingOrder} [sortConfirmedDateStart]
15428
+ * @param {boolean} [isExternal]
15024
15429
  * @param {number} [page]
15025
15430
  * @param {number} [limit]
15026
15431
  * @param {Date} [lastRetrieved]
15027
15432
  * @param {*} [options] Override http request option.
15028
15433
  * @throws {RequiredError}
15029
15434
  */
15030
- apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15435
+ apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15031
15436
  };
15032
15437
  /**
15033
15438
  * BookingsApi - functional programming interface
@@ -15067,6 +15472,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15067
15472
  * @throws {RequiredError}
15068
15473
  */
15069
15474
  apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15475
+ /**
15476
+ *
15477
+ * @summary Mark as Paid booking.
15478
+ * @param {string} bookingId
15479
+ * @param {*} [options] Override http request option.
15480
+ * @throws {RequiredError}
15481
+ */
15482
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
15070
15483
  /**
15071
15484
  *
15072
15485
  * @summary Reject booking.
@@ -15086,13 +15499,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15086
15499
  * @param {string} [dealPackageId]
15087
15500
  * @param {SortingOrder} [sortRequestDate]
15088
15501
  * @param {SortingOrder} [sortConfirmedDateStart]
15502
+ * @param {boolean} [isExternal]
15089
15503
  * @param {number} [page]
15090
15504
  * @param {number} [limit]
15091
15505
  * @param {Date} [lastRetrieved]
15092
15506
  * @param {*} [options] Override http request option.
15093
15507
  * @throws {RequiredError}
15094
15508
  */
15095
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
15509
+ apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
15096
15510
  };
15097
15511
  /**
15098
15512
  * BookingsApi - factory interface
@@ -15132,6 +15546,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15132
15546
  * @throws {RequiredError}
15133
15547
  */
15134
15548
  apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
15549
+ /**
15550
+ *
15551
+ * @summary Mark as Paid booking.
15552
+ * @param {string} bookingId
15553
+ * @param {*} [options] Override http request option.
15554
+ * @throws {RequiredError}
15555
+ */
15556
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
15135
15557
  /**
15136
15558
  *
15137
15559
  * @summary Reject booking.
@@ -15151,13 +15573,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15151
15573
  * @param {string} [dealPackageId]
15152
15574
  * @param {SortingOrder} [sortRequestDate]
15153
15575
  * @param {SortingOrder} [sortConfirmedDateStart]
15576
+ * @param {boolean} [isExternal]
15154
15577
  * @param {number} [page]
15155
15578
  * @param {number} [limit]
15156
15579
  * @param {Date} [lastRetrieved]
15157
15580
  * @param {*} [options] Override http request option.
15158
15581
  * @throws {RequiredError}
15159
15582
  */
15160
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
15583
+ apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
15161
15584
  };
15162
15585
  /**
15163
15586
  * BookingsApi - object-oriented interface
@@ -15203,6 +15626,15 @@ export declare class BookingsApi extends BaseAPI {
15203
15626
  * @memberof BookingsApi
15204
15627
  */
15205
15628
  apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15629
+ /**
15630
+ *
15631
+ * @summary Mark as Paid booking.
15632
+ * @param {string} bookingId
15633
+ * @param {*} [options] Override http request option.
15634
+ * @throws {RequiredError}
15635
+ * @memberof BookingsApi
15636
+ */
15637
+ apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
15206
15638
  /**
15207
15639
  *
15208
15640
  * @summary Reject booking.
@@ -15223,6 +15655,7 @@ export declare class BookingsApi extends BaseAPI {
15223
15655
  * @param {string} [dealPackageId]
15224
15656
  * @param {SortingOrder} [sortRequestDate]
15225
15657
  * @param {SortingOrder} [sortConfirmedDateStart]
15658
+ * @param {boolean} [isExternal]
15226
15659
  * @param {number} [page]
15227
15660
  * @param {number} [limit]
15228
15661
  * @param {Date} [lastRetrieved]
@@ -15230,7 +15663,7 @@ export declare class BookingsApi extends BaseAPI {
15230
15663
  * @throws {RequiredError}
15231
15664
  * @memberof BookingsApi
15232
15665
  */
15233
- apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
15666
+ apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
15234
15667
  }
15235
15668
  /**
15236
15669
  * CHAdminsApi - axios parameter creator
@@ -16081,6 +16514,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16081
16514
  * @throws {RequiredError}
16082
16515
  */
16083
16516
  apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16517
+ /**
16518
+ *
16519
+ * @summary Mark as Paid booking.
16520
+ * @param {string} consultationId
16521
+ * @param {*} [options] Override http request option.
16522
+ * @throws {RequiredError}
16523
+ */
16524
+ apiV1ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16084
16525
  /**
16085
16526
  *
16086
16527
  * @summary Reject consultation.
@@ -16100,13 +16541,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16100
16541
  * @param {ConsultationType} [consultationType]
16101
16542
  * @param {SortingOrder} [sortRequestDate]
16102
16543
  * @param {SortingOrder} [sortConfirmedDateStart]
16544
+ * @param {boolean} [isExternal]
16103
16545
  * @param {number} [page]
16104
16546
  * @param {number} [limit]
16105
16547
  * @param {Date} [lastRetrieved]
16106
16548
  * @param {*} [options] Override http request option.
16107
16549
  * @throws {RequiredError}
16108
16550
  */
16109
- apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16551
+ apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16110
16552
  };
16111
16553
  /**
16112
16554
  * ConsultationsApi - functional programming interface
@@ -16146,6 +16588,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16146
16588
  * @throws {RequiredError}
16147
16589
  */
16148
16590
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16591
+ /**
16592
+ *
16593
+ * @summary Mark as Paid booking.
16594
+ * @param {string} consultationId
16595
+ * @param {*} [options] Override http request option.
16596
+ * @throws {RequiredError}
16597
+ */
16598
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
16149
16599
  /**
16150
16600
  *
16151
16601
  * @summary Reject consultation.
@@ -16165,13 +16615,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16165
16615
  * @param {ConsultationType} [consultationType]
16166
16616
  * @param {SortingOrder} [sortRequestDate]
16167
16617
  * @param {SortingOrder} [sortConfirmedDateStart]
16618
+ * @param {boolean} [isExternal]
16168
16619
  * @param {number} [page]
16169
16620
  * @param {number} [limit]
16170
16621
  * @param {Date} [lastRetrieved]
16171
16622
  * @param {*} [options] Override http request option.
16172
16623
  * @throws {RequiredError}
16173
16624
  */
16174
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
16625
+ apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
16175
16626
  };
16176
16627
  /**
16177
16628
  * ConsultationsApi - factory interface
@@ -16211,6 +16662,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16211
16662
  * @throws {RequiredError}
16212
16663
  */
16213
16664
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
16665
+ /**
16666
+ *
16667
+ * @summary Mark as Paid booking.
16668
+ * @param {string} consultationId
16669
+ * @param {*} [options] Override http request option.
16670
+ * @throws {RequiredError}
16671
+ */
16672
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
16214
16673
  /**
16215
16674
  *
16216
16675
  * @summary Reject consultation.
@@ -16230,13 +16689,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16230
16689
  * @param {ConsultationType} [consultationType]
16231
16690
  * @param {SortingOrder} [sortRequestDate]
16232
16691
  * @param {SortingOrder} [sortConfirmedDateStart]
16692
+ * @param {boolean} [isExternal]
16233
16693
  * @param {number} [page]
16234
16694
  * @param {number} [limit]
16235
16695
  * @param {Date} [lastRetrieved]
16236
16696
  * @param {*} [options] Override http request option.
16237
16697
  * @throws {RequiredError}
16238
16698
  */
16239
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
16699
+ apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
16240
16700
  };
16241
16701
  /**
16242
16702
  * ConsultationsApi - object-oriented interface
@@ -16282,6 +16742,15 @@ export declare class ConsultationsApi extends BaseAPI {
16282
16742
  * @memberof ConsultationsApi
16283
16743
  */
16284
16744
  apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16745
+ /**
16746
+ *
16747
+ * @summary Mark as Paid booking.
16748
+ * @param {string} consultationId
16749
+ * @param {*} [options] Override http request option.
16750
+ * @throws {RequiredError}
16751
+ * @memberof ConsultationsApi
16752
+ */
16753
+ apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
16285
16754
  /**
16286
16755
  *
16287
16756
  * @summary Reject consultation.
@@ -16302,6 +16771,7 @@ export declare class ConsultationsApi extends BaseAPI {
16302
16771
  * @param {ConsultationType} [consultationType]
16303
16772
  * @param {SortingOrder} [sortRequestDate]
16304
16773
  * @param {SortingOrder} [sortConfirmedDateStart]
16774
+ * @param {boolean} [isExternal]
16305
16775
  * @param {number} [page]
16306
16776
  * @param {number} [limit]
16307
16777
  * @param {Date} [lastRetrieved]
@@ -16309,7 +16779,7 @@ export declare class ConsultationsApi extends BaseAPI {
16309
16779
  * @throws {RequiredError}
16310
16780
  * @memberof ConsultationsApi
16311
16781
  */
16312
- apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
16782
+ apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
16313
16783
  }
16314
16784
  /**
16315
16785
  * ContributorsApi - axios parameter creator
@@ -20869,13 +21339,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20869
21339
  * @param {string} [languageCode]
20870
21340
  * @param {Array<string>} [ids]
20871
21341
  * @param {boolean} [returnDefaultValue]
21342
+ * @param {boolean} [paymentEnabled]
20872
21343
  * @param {number} [page]
20873
21344
  * @param {number} [limit]
20874
21345
  * @param {Date} [lastRetrieved]
20875
21346
  * @param {*} [options] Override http request option.
20876
21347
  * @throws {RequiredError}
20877
21348
  */
20878
- 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>;
21349
+ 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>;
20879
21350
  /**
20880
21351
  *
20881
21352
  * @summary Delete HospitalAccreditation.
@@ -21095,6 +21566,58 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21095
21566
  * @throws {RequiredError}
21096
21567
  */
21097
21568
  apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21569
+ /**
21570
+ *
21571
+ * @summary Get all HospitalHandles.
21572
+ * @param {string} hospitalId
21573
+ * @param {string} [hospitalId2]
21574
+ * @param {string} [id]
21575
+ * @param {SnsType} [snsType]
21576
+ * @param {string} [handle]
21577
+ * @param {number} [page]
21578
+ * @param {number} [limit]
21579
+ * @param {Date} [lastRetrieved]
21580
+ * @param {*} [options] Override http request option.
21581
+ * @throws {RequiredError}
21582
+ */
21583
+ 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>;
21584
+ /**
21585
+ *
21586
+ * @summary Delete HospitalHandle.
21587
+ * @param {string} hospitalId
21588
+ * @param {string} handleId
21589
+ * @param {*} [options] Override http request option.
21590
+ * @throws {RequiredError}
21591
+ */
21592
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21593
+ /**
21594
+ *
21595
+ * @summary Get HospitalHandle.
21596
+ * @param {string} hospitalId
21597
+ * @param {string} handleId
21598
+ * @param {*} [options] Override http request option.
21599
+ * @throws {RequiredError}
21600
+ */
21601
+ apiV1HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21602
+ /**
21603
+ *
21604
+ * @summary Update HospitalHandle.
21605
+ * @param {string} hospitalId
21606
+ * @param {string} handleId
21607
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
21608
+ * @param {*} [options] Override http request option.
21609
+ * @throws {RequiredError}
21610
+ */
21611
+ apiV1HospitalsHospitalIdHandlesHandleIdPut: (hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21612
+ /**
21613
+ *
21614
+ * @summary Get HospitalHandle.
21615
+ * @param {string} hospitalId
21616
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
21617
+ * @param {*} [options] Override http request option.
21618
+ * @throws {RequiredError}
21619
+ */
21620
+ apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21098
21621
  /**
21099
21622
  *
21100
21623
  * @summary Get all HospitalMedias.
@@ -21324,49 +21847,103 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21324
21847
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21325
21848
  /**
21326
21849
  *
21327
- * @summary Get HospitalServiceMedia.
21850
+ * @summary Get HospitalServiceMedia.
21851
+ * @param {string} hospitalId
21852
+ * @param {string} specialtyId
21853
+ * @param {string} serviceId
21854
+ * @param {string} mediaId
21855
+ * @param {*} [options] Override http request option.
21856
+ * @throws {RequiredError}
21857
+ */
21858
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21859
+ /**
21860
+ *
21861
+ * @summary Update HospitalServiceMedia.
21862
+ * @param {string} hospitalId
21863
+ * @param {string} specialtyId
21864
+ * @param {string} serviceId
21865
+ * @param {string} mediaId
21866
+ * @param {UpdateMediaCommand} [updateMediaCommand]
21867
+ * @param {*} [options] Override http request option.
21868
+ * @throws {RequiredError}
21869
+ */
21870
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21871
+ /**
21872
+ *
21873
+ * @summary Create HospitalServiceMedia.
21874
+ * @param {string} hospitalId
21875
+ * @param {string} specialtyId
21876
+ * @param {string} serviceId
21877
+ * @param {CreateMediaCommand} [createMediaCommand]
21878
+ * @param {*} [options] Override http request option.
21879
+ * @throws {RequiredError}
21880
+ */
21881
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21882
+ /**
21883
+ *
21884
+ * @summary Update HospitalService.
21885
+ * @param {string} hospitalId
21886
+ * @param {string} specialtyId
21887
+ * @param {string} serviceId
21888
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
21889
+ * @param {*} [options] Override http request option.
21890
+ * @throws {RequiredError}
21891
+ */
21892
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21893
+ /**
21894
+ *
21895
+ * @summary Get all HospitalWorkingDays.
21896
+ * @param {string} hospitalId
21897
+ * @param {string} [hospitalId2]
21898
+ * @param {string} [id]
21899
+ * @param {string} [dayOfWeek]
21900
+ * @param {Date} [timeFrom]
21901
+ * @param {Date} [timeTo]
21902
+ * @param {boolean} [checkHoliday]
21903
+ * @param {number} [page]
21904
+ * @param {number} [limit]
21905
+ * @param {Date} [lastRetrieved]
21906
+ * @param {*} [options] Override http request option.
21907
+ * @throws {RequiredError}
21908
+ */
21909
+ 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>;
21910
+ /**
21911
+ *
21912
+ * @summary Create HospitalWorkingDay.
21328
21913
  * @param {string} hospitalId
21329
- * @param {string} specialtyId
21330
- * @param {string} serviceId
21331
- * @param {string} mediaId
21914
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
21332
21915
  * @param {*} [options] Override http request option.
21333
21916
  * @throws {RequiredError}
21334
21917
  */
21335
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21918
+ apiV1HospitalsHospitalIdWorkingdaysPost: (hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21336
21919
  /**
21337
21920
  *
21338
- * @summary Update HospitalServiceMedia.
21921
+ * @summary Delete HospitalWorkingDay.
21339
21922
  * @param {string} hospitalId
21340
- * @param {string} specialtyId
21341
- * @param {string} serviceId
21342
- * @param {string} mediaId
21343
- * @param {UpdateMediaCommand} [updateMediaCommand]
21923
+ * @param {string} workingDayId
21344
21924
  * @param {*} [options] Override http request option.
21345
21925
  * @throws {RequiredError}
21346
21926
  */
21347
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21927
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21348
21928
  /**
21349
21929
  *
21350
- * @summary Create HospitalServiceMedia.
21930
+ * @summary Get HospitalWorkingDay.
21351
21931
  * @param {string} hospitalId
21352
- * @param {string} specialtyId
21353
- * @param {string} serviceId
21354
- * @param {CreateMediaCommand} [createMediaCommand]
21932
+ * @param {string} workingDayId
21355
21933
  * @param {*} [options] Override http request option.
21356
21934
  * @throws {RequiredError}
21357
21935
  */
21358
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21936
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21359
21937
  /**
21360
21938
  *
21361
- * @summary Update HospitalService.
21939
+ * @summary Update HospitalWorkingDay.
21362
21940
  * @param {string} hospitalId
21363
- * @param {string} specialtyId
21364
- * @param {string} serviceId
21365
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
21941
+ * @param {string} workingDayId
21942
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
21366
21943
  * @param {*} [options] Override http request option.
21367
21944
  * @throws {RequiredError}
21368
21945
  */
21369
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21946
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21370
21947
  /**
21371
21948
  *
21372
21949
  * @summary Create Hospital.
@@ -21391,13 +21968,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21391
21968
  * @param {string} [languageCode]
21392
21969
  * @param {Array<string>} [ids]
21393
21970
  * @param {boolean} [returnDefaultValue]
21971
+ * @param {boolean} [paymentEnabled]
21394
21972
  * @param {number} [page]
21395
21973
  * @param {number} [limit]
21396
21974
  * @param {Date} [lastRetrieved]
21397
21975
  * @param {*} [options] Override http request option.
21398
21976
  * @throws {RequiredError}
21399
21977
  */
21400
- 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>;
21978
+ 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>;
21401
21979
  /**
21402
21980
  *
21403
21981
  * @param {string} slug
@@ -21429,13 +22007,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21429
22007
  * @param {string} [languageCode]
21430
22008
  * @param {Array<string>} [ids]
21431
22009
  * @param {boolean} [returnDefaultValue]
22010
+ * @param {boolean} [paymentEnabled]
21432
22011
  * @param {number} [page]
21433
22012
  * @param {number} [limit]
21434
22013
  * @param {Date} [lastRetrieved]
21435
22014
  * @param {*} [options] Override http request option.
21436
22015
  * @throws {RequiredError}
21437
22016
  */
21438
- 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>>;
22017
+ 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>>;
21439
22018
  /**
21440
22019
  *
21441
22020
  * @summary Delete HospitalAccreditation.
@@ -21655,6 +22234,58 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21655
22234
  * @throws {RequiredError}
21656
22235
  */
21657
22236
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
22237
+ /**
22238
+ *
22239
+ * @summary Get all HospitalHandles.
22240
+ * @param {string} hospitalId
22241
+ * @param {string} [hospitalId2]
22242
+ * @param {string} [id]
22243
+ * @param {SnsType} [snsType]
22244
+ * @param {string} [handle]
22245
+ * @param {number} [page]
22246
+ * @param {number} [limit]
22247
+ * @param {Date} [lastRetrieved]
22248
+ * @param {*} [options] Override http request option.
22249
+ * @throws {RequiredError}
22250
+ */
22251
+ 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>>;
22252
+ /**
22253
+ *
22254
+ * @summary Delete HospitalHandle.
22255
+ * @param {string} hospitalId
22256
+ * @param {string} handleId
22257
+ * @param {*} [options] Override http request option.
22258
+ * @throws {RequiredError}
22259
+ */
22260
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22261
+ /**
22262
+ *
22263
+ * @summary Get HospitalHandle.
22264
+ * @param {string} hospitalId
22265
+ * @param {string} handleId
22266
+ * @param {*} [options] Override http request option.
22267
+ * @throws {RequiredError}
22268
+ */
22269
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22270
+ /**
22271
+ *
22272
+ * @summary Update HospitalHandle.
22273
+ * @param {string} hospitalId
22274
+ * @param {string} handleId
22275
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
22276
+ * @param {*} [options] Override http request option.
22277
+ * @throws {RequiredError}
22278
+ */
22279
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22280
+ /**
22281
+ *
22282
+ * @summary Get HospitalHandle.
22283
+ * @param {string} hospitalId
22284
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
22285
+ * @param {*} [options] Override http request option.
22286
+ * @throws {RequiredError}
22287
+ */
22288
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
21658
22289
  /**
21659
22290
  *
21660
22291
  * @summary Get all HospitalMedias.
@@ -21927,6 +22558,60 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21927
22558
  * @throws {RequiredError}
21928
22559
  */
21929
22560
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22561
+ /**
22562
+ *
22563
+ * @summary Get all HospitalWorkingDays.
22564
+ * @param {string} hospitalId
22565
+ * @param {string} [hospitalId2]
22566
+ * @param {string} [id]
22567
+ * @param {string} [dayOfWeek]
22568
+ * @param {Date} [timeFrom]
22569
+ * @param {Date} [timeTo]
22570
+ * @param {boolean} [checkHoliday]
22571
+ * @param {number} [page]
22572
+ * @param {number} [limit]
22573
+ * @param {Date} [lastRetrieved]
22574
+ * @param {*} [options] Override http request option.
22575
+ * @throws {RequiredError}
22576
+ */
22577
+ 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>>;
22578
+ /**
22579
+ *
22580
+ * @summary Create HospitalWorkingDay.
22581
+ * @param {string} hospitalId
22582
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
22583
+ * @param {*} [options] Override http request option.
22584
+ * @throws {RequiredError}
22585
+ */
22586
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
22587
+ /**
22588
+ *
22589
+ * @summary Delete HospitalWorkingDay.
22590
+ * @param {string} hospitalId
22591
+ * @param {string} workingDayId
22592
+ * @param {*} [options] Override http request option.
22593
+ * @throws {RequiredError}
22594
+ */
22595
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22596
+ /**
22597
+ *
22598
+ * @summary Get HospitalWorkingDay.
22599
+ * @param {string} hospitalId
22600
+ * @param {string} workingDayId
22601
+ * @param {*} [options] Override http request option.
22602
+ * @throws {RequiredError}
22603
+ */
22604
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
22605
+ /**
22606
+ *
22607
+ * @summary Update HospitalWorkingDay.
22608
+ * @param {string} hospitalId
22609
+ * @param {string} workingDayId
22610
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
22611
+ * @param {*} [options] Override http request option.
22612
+ * @throws {RequiredError}
22613
+ */
22614
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
21930
22615
  /**
21931
22616
  *
21932
22617
  * @summary Create Hospital.
@@ -21951,13 +22636,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
21951
22636
  * @param {string} [languageCode]
21952
22637
  * @param {Array<string>} [ids]
21953
22638
  * @param {boolean} [returnDefaultValue]
22639
+ * @param {boolean} [paymentEnabled]
21954
22640
  * @param {number} [page]
21955
22641
  * @param {number} [limit]
21956
22642
  * @param {Date} [lastRetrieved]
21957
22643
  * @param {*} [options] Override http request option.
21958
22644
  * @throws {RequiredError}
21959
22645
  */
21960
- 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>>;
22646
+ 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>>;
21961
22647
  /**
21962
22648
  *
21963
22649
  * @param {string} slug
@@ -21989,13 +22675,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21989
22675
  * @param {string} [languageCode]
21990
22676
  * @param {Array<string>} [ids]
21991
22677
  * @param {boolean} [returnDefaultValue]
22678
+ * @param {boolean} [paymentEnabled]
21992
22679
  * @param {number} [page]
21993
22680
  * @param {number} [limit]
21994
22681
  * @param {Date} [lastRetrieved]
21995
22682
  * @param {*} [options] Override http request option.
21996
22683
  * @throws {RequiredError}
21997
22684
  */
21998
- 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>;
22685
+ 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>;
21999
22686
  /**
22000
22687
  *
22001
22688
  * @summary Delete HospitalAccreditation.
@@ -22215,6 +22902,58 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22215
22902
  * @throws {RequiredError}
22216
22903
  */
22217
22904
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
22905
+ /**
22906
+ *
22907
+ * @summary Get all HospitalHandles.
22908
+ * @param {string} hospitalId
22909
+ * @param {string} [hospitalId2]
22910
+ * @param {string} [id]
22911
+ * @param {SnsType} [snsType]
22912
+ * @param {string} [handle]
22913
+ * @param {number} [page]
22914
+ * @param {number} [limit]
22915
+ * @param {Date} [lastRetrieved]
22916
+ * @param {*} [options] Override http request option.
22917
+ * @throws {RequiredError}
22918
+ */
22919
+ 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>;
22920
+ /**
22921
+ *
22922
+ * @summary Delete HospitalHandle.
22923
+ * @param {string} hospitalId
22924
+ * @param {string} handleId
22925
+ * @param {*} [options] Override http request option.
22926
+ * @throws {RequiredError}
22927
+ */
22928
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: any): AxiosPromise<boolean>;
22929
+ /**
22930
+ *
22931
+ * @summary Get HospitalHandle.
22932
+ * @param {string} hospitalId
22933
+ * @param {string} handleId
22934
+ * @param {*} [options] Override http request option.
22935
+ * @throws {RequiredError}
22936
+ */
22937
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
22938
+ /**
22939
+ *
22940
+ * @summary Update HospitalHandle.
22941
+ * @param {string} hospitalId
22942
+ * @param {string} handleId
22943
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
22944
+ * @param {*} [options] Override http request option.
22945
+ * @throws {RequiredError}
22946
+ */
22947
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
22948
+ /**
22949
+ *
22950
+ * @summary Get HospitalHandle.
22951
+ * @param {string} hospitalId
22952
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
22953
+ * @param {*} [options] Override http request option.
22954
+ * @throws {RequiredError}
22955
+ */
22956
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
22218
22957
  /**
22219
22958
  *
22220
22959
  * @summary Get all HospitalMedias.
@@ -22487,6 +23226,60 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22487
23226
  * @throws {RequiredError}
22488
23227
  */
22489
23228
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
23229
+ /**
23230
+ *
23231
+ * @summary Get all HospitalWorkingDays.
23232
+ * @param {string} hospitalId
23233
+ * @param {string} [hospitalId2]
23234
+ * @param {string} [id]
23235
+ * @param {string} [dayOfWeek]
23236
+ * @param {Date} [timeFrom]
23237
+ * @param {Date} [timeTo]
23238
+ * @param {boolean} [checkHoliday]
23239
+ * @param {number} [page]
23240
+ * @param {number} [limit]
23241
+ * @param {Date} [lastRetrieved]
23242
+ * @param {*} [options] Override http request option.
23243
+ * @throws {RequiredError}
23244
+ */
23245
+ 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>;
23246
+ /**
23247
+ *
23248
+ * @summary Create HospitalWorkingDay.
23249
+ * @param {string} hospitalId
23250
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
23251
+ * @param {*} [options] Override http request option.
23252
+ * @throws {RequiredError}
23253
+ */
23254
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
23255
+ /**
23256
+ *
23257
+ * @summary Delete HospitalWorkingDay.
23258
+ * @param {string} hospitalId
23259
+ * @param {string} workingDayId
23260
+ * @param {*} [options] Override http request option.
23261
+ * @throws {RequiredError}
23262
+ */
23263
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<boolean>;
23264
+ /**
23265
+ *
23266
+ * @summary Get HospitalWorkingDay.
23267
+ * @param {string} hospitalId
23268
+ * @param {string} workingDayId
23269
+ * @param {*} [options] Override http request option.
23270
+ * @throws {RequiredError}
23271
+ */
23272
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
23273
+ /**
23274
+ *
23275
+ * @summary Update HospitalWorkingDay.
23276
+ * @param {string} hospitalId
23277
+ * @param {string} workingDayId
23278
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
23279
+ * @param {*} [options] Override http request option.
23280
+ * @throws {RequiredError}
23281
+ */
23282
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
22490
23283
  /**
22491
23284
  *
22492
23285
  * @summary Create Hospital.
@@ -22511,13 +23304,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22511
23304
  * @param {string} [languageCode]
22512
23305
  * @param {Array<string>} [ids]
22513
23306
  * @param {boolean} [returnDefaultValue]
23307
+ * @param {boolean} [paymentEnabled]
22514
23308
  * @param {number} [page]
22515
23309
  * @param {number} [limit]
22516
23310
  * @param {Date} [lastRetrieved]
22517
23311
  * @param {*} [options] Override http request option.
22518
23312
  * @throws {RequiredError}
22519
23313
  */
22520
- 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>;
23314
+ 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>;
22521
23315
  /**
22522
23316
  *
22523
23317
  * @param {string} slug
@@ -22551,6 +23345,7 @@ export declare class HospitalsApi extends BaseAPI {
22551
23345
  * @param {string} [languageCode]
22552
23346
  * @param {Array<string>} [ids]
22553
23347
  * @param {boolean} [returnDefaultValue]
23348
+ * @param {boolean} [paymentEnabled]
22554
23349
  * @param {number} [page]
22555
23350
  * @param {number} [limit]
22556
23351
  * @param {Date} [lastRetrieved]
@@ -22558,7 +23353,7 @@ export declare class HospitalsApi extends BaseAPI {
22558
23353
  * @throws {RequiredError}
22559
23354
  * @memberof HospitalsApi
22560
23355
  */
22561
- 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>>;
23356
+ 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>>;
22562
23357
  /**
22563
23358
  *
22564
23359
  * @summary Delete HospitalAccreditation.
@@ -22799,6 +23594,63 @@ export declare class HospitalsApi extends BaseAPI {
22799
23594
  * @memberof HospitalsApi
22800
23595
  */
22801
23596
  apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
23597
+ /**
23598
+ *
23599
+ * @summary Get all HospitalHandles.
23600
+ * @param {string} hospitalId
23601
+ * @param {string} [hospitalId2]
23602
+ * @param {string} [id]
23603
+ * @param {SnsType} [snsType]
23604
+ * @param {string} [handle]
23605
+ * @param {number} [page]
23606
+ * @param {number} [limit]
23607
+ * @param {Date} [lastRetrieved]
23608
+ * @param {*} [options] Override http request option.
23609
+ * @throws {RequiredError}
23610
+ * @memberof HospitalsApi
23611
+ */
23612
+ apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
23613
+ /**
23614
+ *
23615
+ * @summary Delete HospitalHandle.
23616
+ * @param {string} hospitalId
23617
+ * @param {string} handleId
23618
+ * @param {*} [options] Override http request option.
23619
+ * @throws {RequiredError}
23620
+ * @memberof HospitalsApi
23621
+ */
23622
+ apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
23623
+ /**
23624
+ *
23625
+ * @summary Get HospitalHandle.
23626
+ * @param {string} hospitalId
23627
+ * @param {string} handleId
23628
+ * @param {*} [options] Override http request option.
23629
+ * @throws {RequiredError}
23630
+ * @memberof HospitalsApi
23631
+ */
23632
+ apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23633
+ /**
23634
+ *
23635
+ * @summary Update HospitalHandle.
23636
+ * @param {string} hospitalId
23637
+ * @param {string} handleId
23638
+ * @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
23639
+ * @param {*} [options] Override http request option.
23640
+ * @throws {RequiredError}
23641
+ * @memberof HospitalsApi
23642
+ */
23643
+ apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23644
+ /**
23645
+ *
23646
+ * @summary Get HospitalHandle.
23647
+ * @param {string} hospitalId
23648
+ * @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
23649
+ * @param {*} [options] Override http request option.
23650
+ * @throws {RequiredError}
23651
+ * @memberof HospitalsApi
23652
+ */
23653
+ apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
22802
23654
  /**
22803
23655
  *
22804
23656
  * @summary Get all HospitalMedias.
@@ -23093,6 +23945,65 @@ export declare class HospitalsApi extends BaseAPI {
23093
23945
  * @memberof HospitalsApi
23094
23946
  */
23095
23947
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
23948
+ /**
23949
+ *
23950
+ * @summary Get all HospitalWorkingDays.
23951
+ * @param {string} hospitalId
23952
+ * @param {string} [hospitalId2]
23953
+ * @param {string} [id]
23954
+ * @param {string} [dayOfWeek]
23955
+ * @param {Date} [timeFrom]
23956
+ * @param {Date} [timeTo]
23957
+ * @param {boolean} [checkHoliday]
23958
+ * @param {number} [page]
23959
+ * @param {number} [limit]
23960
+ * @param {Date} [lastRetrieved]
23961
+ * @param {*} [options] Override http request option.
23962
+ * @throws {RequiredError}
23963
+ * @memberof HospitalsApi
23964
+ */
23965
+ 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>>;
23966
+ /**
23967
+ *
23968
+ * @summary Create HospitalWorkingDay.
23969
+ * @param {string} hospitalId
23970
+ * @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
23971
+ * @param {*} [options] Override http request option.
23972
+ * @throws {RequiredError}
23973
+ * @memberof HospitalsApi
23974
+ */
23975
+ apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
23976
+ /**
23977
+ *
23978
+ * @summary Delete HospitalWorkingDay.
23979
+ * @param {string} hospitalId
23980
+ * @param {string} workingDayId
23981
+ * @param {*} [options] Override http request option.
23982
+ * @throws {RequiredError}
23983
+ * @memberof HospitalsApi
23984
+ */
23985
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
23986
+ /**
23987
+ *
23988
+ * @summary Get HospitalWorkingDay.
23989
+ * @param {string} hospitalId
23990
+ * @param {string} workingDayId
23991
+ * @param {*} [options] Override http request option.
23992
+ * @throws {RequiredError}
23993
+ * @memberof HospitalsApi
23994
+ */
23995
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
23996
+ /**
23997
+ *
23998
+ * @summary Update HospitalWorkingDay.
23999
+ * @param {string} hospitalId
24000
+ * @param {string} workingDayId
24001
+ * @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
24002
+ * @param {*} [options] Override http request option.
24003
+ * @throws {RequiredError}
24004
+ * @memberof HospitalsApi
24005
+ */
24006
+ apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
23096
24007
  /**
23097
24008
  *
23098
24009
  * @summary Create Hospital.
@@ -23118,6 +24029,7 @@ export declare class HospitalsApi extends BaseAPI {
23118
24029
  * @param {string} [languageCode]
23119
24030
  * @param {Array<string>} [ids]
23120
24031
  * @param {boolean} [returnDefaultValue]
24032
+ * @param {boolean} [paymentEnabled]
23121
24033
  * @param {number} [page]
23122
24034
  * @param {number} [limit]
23123
24035
  * @param {Date} [lastRetrieved]
@@ -23125,7 +24037,7 @@ export declare class HospitalsApi extends BaseAPI {
23125
24037
  * @throws {RequiredError}
23126
24038
  * @memberof HospitalsApi
23127
24039
  */
23128
- 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>>;
24040
+ 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>>;
23129
24041
  /**
23130
24042
  *
23131
24043
  * @param {string} slug