ch-admin-api-client-typescript 2.9.6 → 2.9.7
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 +961 -147
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1354 -302
- package/package.json +1 -1
- package/src/api.ts +2387 -1083
package/lib/api.d.ts
CHANGED
|
@@ -4194,16 +4194,16 @@ export interface CreateHospitalCommand {
|
|
|
4194
4194
|
'websiteUrl'?: string | null;
|
|
4195
4195
|
/**
|
|
4196
4196
|
*
|
|
4197
|
-
* @type {
|
|
4197
|
+
* @type {string}
|
|
4198
4198
|
* @memberof CreateHospitalCommand
|
|
4199
4199
|
*/
|
|
4200
|
-
'
|
|
4200
|
+
'contactTel'?: string | null;
|
|
4201
4201
|
/**
|
|
4202
4202
|
*
|
|
4203
|
-
* @type {
|
|
4203
|
+
* @type {string}
|
|
4204
4204
|
* @memberof CreateHospitalCommand
|
|
4205
4205
|
*/
|
|
4206
|
-
'
|
|
4206
|
+
'contactEmail'?: string | null;
|
|
4207
4207
|
/**
|
|
4208
4208
|
*
|
|
4209
4209
|
* @type {LocationModel}
|
|
@@ -4346,6 +4346,25 @@ export interface CreateHospitalServiceCommand {
|
|
|
4346
4346
|
*/
|
|
4347
4347
|
'medias'?: Array<MediaModel> | null;
|
|
4348
4348
|
}
|
|
4349
|
+
/**
|
|
4350
|
+
*
|
|
4351
|
+
* @export
|
|
4352
|
+
* @interface CreateHospitalSnsHandleCommand
|
|
4353
|
+
*/
|
|
4354
|
+
export interface CreateHospitalSnsHandleCommand {
|
|
4355
|
+
/**
|
|
4356
|
+
*
|
|
4357
|
+
* @type {SnsType}
|
|
4358
|
+
* @memberof CreateHospitalSnsHandleCommand
|
|
4359
|
+
*/
|
|
4360
|
+
'snsType'?: SnsType;
|
|
4361
|
+
/**
|
|
4362
|
+
*
|
|
4363
|
+
* @type {string}
|
|
4364
|
+
* @memberof CreateHospitalSnsHandleCommand
|
|
4365
|
+
*/
|
|
4366
|
+
'handle'?: string | null;
|
|
4367
|
+
}
|
|
4349
4368
|
/**
|
|
4350
4369
|
*
|
|
4351
4370
|
* @export
|
|
@@ -4419,6 +4438,37 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
4419
4438
|
*/
|
|
4420
4439
|
'medias'?: Array<MediaModel> | null;
|
|
4421
4440
|
}
|
|
4441
|
+
/**
|
|
4442
|
+
*
|
|
4443
|
+
* @export
|
|
4444
|
+
* @interface CreateHospitalWorkingDayCommand
|
|
4445
|
+
*/
|
|
4446
|
+
export interface CreateHospitalWorkingDayCommand {
|
|
4447
|
+
/**
|
|
4448
|
+
*
|
|
4449
|
+
* @type {string}
|
|
4450
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4451
|
+
*/
|
|
4452
|
+
'dayOfWeek'?: string | null;
|
|
4453
|
+
/**
|
|
4454
|
+
*
|
|
4455
|
+
* @type {Date}
|
|
4456
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4457
|
+
*/
|
|
4458
|
+
'timeFrom'?: Date;
|
|
4459
|
+
/**
|
|
4460
|
+
*
|
|
4461
|
+
* @type {Date}
|
|
4462
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4463
|
+
*/
|
|
4464
|
+
'timeTo'?: Date;
|
|
4465
|
+
/**
|
|
4466
|
+
*
|
|
4467
|
+
* @type {boolean}
|
|
4468
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4469
|
+
*/
|
|
4470
|
+
'checkHoliday'?: boolean;
|
|
4471
|
+
}
|
|
4422
4472
|
/**
|
|
4423
4473
|
*
|
|
4424
4474
|
* @export
|
|
@@ -7396,6 +7446,12 @@ export interface HospitalItemModel {
|
|
|
7396
7446
|
* @memberof HospitalItemModel
|
|
7397
7447
|
*/
|
|
7398
7448
|
'specialtiesSummerized'?: string | null;
|
|
7449
|
+
/**
|
|
7450
|
+
*
|
|
7451
|
+
* @type {boolean}
|
|
7452
|
+
* @memberof HospitalItemModel
|
|
7453
|
+
*/
|
|
7454
|
+
'paymentEnabled'?: boolean;
|
|
7399
7455
|
/**
|
|
7400
7456
|
*
|
|
7401
7457
|
* @type {Array<AwardModel>}
|
|
@@ -7631,6 +7687,12 @@ export interface HospitalModel {
|
|
|
7631
7687
|
* @memberof HospitalModel
|
|
7632
7688
|
*/
|
|
7633
7689
|
'specialtiesSummerized'?: string | null;
|
|
7690
|
+
/**
|
|
7691
|
+
*
|
|
7692
|
+
* @type {boolean}
|
|
7693
|
+
* @memberof HospitalModel
|
|
7694
|
+
*/
|
|
7695
|
+
'paymentEnabled'?: boolean;
|
|
7634
7696
|
/**
|
|
7635
7697
|
*
|
|
7636
7698
|
* @type {Array<AwardModel>}
|
|
@@ -7685,6 +7747,30 @@ export interface HospitalModel {
|
|
|
7685
7747
|
* @memberof HospitalModel
|
|
7686
7748
|
*/
|
|
7687
7749
|
'languageCode'?: string | null;
|
|
7750
|
+
/**
|
|
7751
|
+
*
|
|
7752
|
+
* @type {string}
|
|
7753
|
+
* @memberof HospitalModel
|
|
7754
|
+
*/
|
|
7755
|
+
'contactTel'?: string | null;
|
|
7756
|
+
/**
|
|
7757
|
+
*
|
|
7758
|
+
* @type {string}
|
|
7759
|
+
* @memberof HospitalModel
|
|
7760
|
+
*/
|
|
7761
|
+
'contactEmail'?: string | null;
|
|
7762
|
+
/**
|
|
7763
|
+
*
|
|
7764
|
+
* @type {Array<WorkingDay>}
|
|
7765
|
+
* @memberof HospitalModel
|
|
7766
|
+
*/
|
|
7767
|
+
'workingDays'?: Array<WorkingDay> | null;
|
|
7768
|
+
/**
|
|
7769
|
+
*
|
|
7770
|
+
* @type {Array<SnsHandle>}
|
|
7771
|
+
* @memberof HospitalModel
|
|
7772
|
+
*/
|
|
7773
|
+
'snsHandles'?: Array<SnsHandle> | null;
|
|
7688
7774
|
}
|
|
7689
7775
|
/**
|
|
7690
7776
|
*
|
|
@@ -7842,6 +7928,12 @@ export interface HospitalServiceItemModel {
|
|
|
7842
7928
|
* @memberof HospitalServiceItemModel
|
|
7843
7929
|
*/
|
|
7844
7930
|
'photoThumbnail'?: string | null;
|
|
7931
|
+
/**
|
|
7932
|
+
*
|
|
7933
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7934
|
+
* @memberof HospitalServiceItemModel
|
|
7935
|
+
*/
|
|
7936
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7845
7937
|
/**
|
|
7846
7938
|
*
|
|
7847
7939
|
* @type {Array<MediaModel>}
|
|
@@ -8011,6 +8103,12 @@ export interface HospitalServiceModel {
|
|
|
8011
8103
|
* @memberof HospitalServiceModel
|
|
8012
8104
|
*/
|
|
8013
8105
|
'photoThumbnail'?: string | null;
|
|
8106
|
+
/**
|
|
8107
|
+
*
|
|
8108
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8109
|
+
* @memberof HospitalServiceModel
|
|
8110
|
+
*/
|
|
8111
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8014
8112
|
/**
|
|
8015
8113
|
*
|
|
8016
8114
|
* @type {Array<MediaModel>}
|
|
@@ -8074,6 +8172,25 @@ export interface HospitalSimpleItemModel {
|
|
|
8074
8172
|
*/
|
|
8075
8173
|
'confirmed'?: boolean;
|
|
8076
8174
|
}
|
|
8175
|
+
/**
|
|
8176
|
+
*
|
|
8177
|
+
* @export
|
|
8178
|
+
* @interface HospitalSnsHandlesModel
|
|
8179
|
+
*/
|
|
8180
|
+
export interface HospitalSnsHandlesModel {
|
|
8181
|
+
/**
|
|
8182
|
+
*
|
|
8183
|
+
* @type {Array<SnsHandleModel>}
|
|
8184
|
+
* @memberof HospitalSnsHandlesModel
|
|
8185
|
+
*/
|
|
8186
|
+
'items'?: Array<SnsHandleModel> | null;
|
|
8187
|
+
/**
|
|
8188
|
+
*
|
|
8189
|
+
* @type {PagedListMetaData}
|
|
8190
|
+
* @memberof HospitalSnsHandlesModel
|
|
8191
|
+
*/
|
|
8192
|
+
'metaData'?: PagedListMetaData;
|
|
8193
|
+
}
|
|
8077
8194
|
/**
|
|
8078
8195
|
*
|
|
8079
8196
|
* @export
|
|
@@ -8256,6 +8373,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8256
8373
|
* @memberof HospitalSpecialtyItemModel
|
|
8257
8374
|
*/
|
|
8258
8375
|
'backgroundThumbnail'?: string | null;
|
|
8376
|
+
/**
|
|
8377
|
+
*
|
|
8378
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8379
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8380
|
+
*/
|
|
8381
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8259
8382
|
/**
|
|
8260
8383
|
*
|
|
8261
8384
|
* @type {Array<MediaModel>}
|
|
@@ -8413,6 +8536,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8413
8536
|
* @memberof HospitalSpecialtyModel
|
|
8414
8537
|
*/
|
|
8415
8538
|
'backgroundThumbnail'?: string | null;
|
|
8539
|
+
/**
|
|
8540
|
+
*
|
|
8541
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8542
|
+
* @memberof HospitalSpecialtyModel
|
|
8543
|
+
*/
|
|
8544
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8416
8545
|
/**
|
|
8417
8546
|
*
|
|
8418
8547
|
* @type {Array<MediaModel>}
|
|
@@ -8474,6 +8603,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8474
8603
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8475
8604
|
*/
|
|
8476
8605
|
'order'?: number;
|
|
8606
|
+
/**
|
|
8607
|
+
*
|
|
8608
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8609
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8610
|
+
*/
|
|
8611
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8477
8612
|
/**
|
|
8478
8613
|
*
|
|
8479
8614
|
* @type {boolean}
|
|
@@ -10420,6 +10555,31 @@ export interface ServiceReviewsModel {
|
|
|
10420
10555
|
*/
|
|
10421
10556
|
'metaData'?: PagedListMetaData;
|
|
10422
10557
|
}
|
|
10558
|
+
/**
|
|
10559
|
+
*
|
|
10560
|
+
* @export
|
|
10561
|
+
* @interface SnsHandle
|
|
10562
|
+
*/
|
|
10563
|
+
export interface SnsHandle {
|
|
10564
|
+
/**
|
|
10565
|
+
*
|
|
10566
|
+
* @type {string}
|
|
10567
|
+
* @memberof SnsHandle
|
|
10568
|
+
*/
|
|
10569
|
+
'id'?: string;
|
|
10570
|
+
/**
|
|
10571
|
+
*
|
|
10572
|
+
* @type {SnsType}
|
|
10573
|
+
* @memberof SnsHandle
|
|
10574
|
+
*/
|
|
10575
|
+
'snsType'?: SnsType;
|
|
10576
|
+
/**
|
|
10577
|
+
*
|
|
10578
|
+
* @type {string}
|
|
10579
|
+
* @memberof SnsHandle
|
|
10580
|
+
*/
|
|
10581
|
+
'handle'?: string | null;
|
|
10582
|
+
}
|
|
10423
10583
|
/**
|
|
10424
10584
|
*
|
|
10425
10585
|
* @export
|
|
@@ -10453,7 +10613,9 @@ export interface SnsHandleModel {
|
|
|
10453
10613
|
export declare enum SnsType {
|
|
10454
10614
|
Twitter = "Twitter",
|
|
10455
10615
|
Facebook = "Facebook",
|
|
10456
|
-
Instagram = "Instagram"
|
|
10616
|
+
Instagram = "Instagram",
|
|
10617
|
+
LinkedIn = "LinkedIn",
|
|
10618
|
+
Youtube = "Youtube"
|
|
10457
10619
|
}
|
|
10458
10620
|
/**
|
|
10459
10621
|
*
|
|
@@ -10574,6 +10736,12 @@ export interface SpecialtyItemModel {
|
|
|
10574
10736
|
* @memberof SpecialtyItemModel
|
|
10575
10737
|
*/
|
|
10576
10738
|
'specialtyTypeName'?: string | null;
|
|
10739
|
+
/**
|
|
10740
|
+
*
|
|
10741
|
+
* @type {Array<LocalizedUrlModel>}
|
|
10742
|
+
* @memberof SpecialtyItemModel
|
|
10743
|
+
*/
|
|
10744
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10577
10745
|
/**
|
|
10578
10746
|
*
|
|
10579
10747
|
* @type {boolean}
|
|
@@ -10653,6 +10821,12 @@ export interface SpecialtyModel {
|
|
|
10653
10821
|
* @memberof SpecialtyModel
|
|
10654
10822
|
*/
|
|
10655
10823
|
'specialtyTypeName'?: string | null;
|
|
10824
|
+
/**
|
|
10825
|
+
*
|
|
10826
|
+
* @type {Array<LocalizedUrlModel>}
|
|
10827
|
+
* @memberof SpecialtyModel
|
|
10828
|
+
*/
|
|
10829
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10656
10830
|
/**
|
|
10657
10831
|
*
|
|
10658
10832
|
* @type {boolean}
|
|
@@ -12280,6 +12454,24 @@ export interface UpdateHospitalCommand {
|
|
|
12280
12454
|
* @memberof UpdateHospitalCommand
|
|
12281
12455
|
*/
|
|
12282
12456
|
'websiteUrl'?: string | null;
|
|
12457
|
+
/**
|
|
12458
|
+
*
|
|
12459
|
+
* @type {string}
|
|
12460
|
+
* @memberof UpdateHospitalCommand
|
|
12461
|
+
*/
|
|
12462
|
+
'contactTel'?: string | null;
|
|
12463
|
+
/**
|
|
12464
|
+
*
|
|
12465
|
+
* @type {string}
|
|
12466
|
+
* @memberof UpdateHospitalCommand
|
|
12467
|
+
*/
|
|
12468
|
+
'contactEmail'?: string | null;
|
|
12469
|
+
/**
|
|
12470
|
+
*
|
|
12471
|
+
* @type {boolean}
|
|
12472
|
+
* @memberof UpdateHospitalCommand
|
|
12473
|
+
*/
|
|
12474
|
+
'paymentEnabled'?: boolean;
|
|
12283
12475
|
/**
|
|
12284
12476
|
*
|
|
12285
12477
|
* @type {boolean}
|
|
@@ -12433,6 +12625,25 @@ export interface UpdateHospitalServiceCommand {
|
|
|
12433
12625
|
*/
|
|
12434
12626
|
'medias'?: Array<MediaModel> | null;
|
|
12435
12627
|
}
|
|
12628
|
+
/**
|
|
12629
|
+
*
|
|
12630
|
+
* @export
|
|
12631
|
+
* @interface UpdateHospitalSnsHandleCommand
|
|
12632
|
+
*/
|
|
12633
|
+
export interface UpdateHospitalSnsHandleCommand {
|
|
12634
|
+
/**
|
|
12635
|
+
*
|
|
12636
|
+
* @type {SnsType}
|
|
12637
|
+
* @memberof UpdateHospitalSnsHandleCommand
|
|
12638
|
+
*/
|
|
12639
|
+
'snsType'?: SnsType;
|
|
12640
|
+
/**
|
|
12641
|
+
*
|
|
12642
|
+
* @type {string}
|
|
12643
|
+
* @memberof UpdateHospitalSnsHandleCommand
|
|
12644
|
+
*/
|
|
12645
|
+
'handle'?: string | null;
|
|
12646
|
+
}
|
|
12436
12647
|
/**
|
|
12437
12648
|
*
|
|
12438
12649
|
* @export
|
|
@@ -12518,6 +12729,37 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
12518
12729
|
*/
|
|
12519
12730
|
'medias'?: Array<MediaModel> | null;
|
|
12520
12731
|
}
|
|
12732
|
+
/**
|
|
12733
|
+
*
|
|
12734
|
+
* @export
|
|
12735
|
+
* @interface UpdateHospitalWorkingDayCommand
|
|
12736
|
+
*/
|
|
12737
|
+
export interface UpdateHospitalWorkingDayCommand {
|
|
12738
|
+
/**
|
|
12739
|
+
*
|
|
12740
|
+
* @type {string}
|
|
12741
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12742
|
+
*/
|
|
12743
|
+
'dayOfWeek'?: string | null;
|
|
12744
|
+
/**
|
|
12745
|
+
*
|
|
12746
|
+
* @type {Date}
|
|
12747
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12748
|
+
*/
|
|
12749
|
+
'timeFrom'?: Date;
|
|
12750
|
+
/**
|
|
12751
|
+
*
|
|
12752
|
+
* @type {Date}
|
|
12753
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12754
|
+
*/
|
|
12755
|
+
'timeTo'?: Date;
|
|
12756
|
+
/**
|
|
12757
|
+
*
|
|
12758
|
+
* @type {boolean}
|
|
12759
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12760
|
+
*/
|
|
12761
|
+
'checkHoliday'?: boolean;
|
|
12762
|
+
}
|
|
12521
12763
|
/**
|
|
12522
12764
|
*
|
|
12523
12765
|
* @export
|
|
@@ -13339,110 +13581,140 @@ export interface WeatherForecast {
|
|
|
13339
13581
|
'summary'?: string | null;
|
|
13340
13582
|
}
|
|
13341
13583
|
/**
|
|
13342
|
-
*
|
|
13584
|
+
*
|
|
13343
13585
|
* @export
|
|
13586
|
+
* @interface WorkingDay
|
|
13344
13587
|
*/
|
|
13345
|
-
export
|
|
13588
|
+
export interface WorkingDay {
|
|
13346
13589
|
/**
|
|
13347
13590
|
*
|
|
13348
|
-
* @
|
|
13349
|
-
* @
|
|
13350
|
-
* @param {*} [options] Override http request option.
|
|
13351
|
-
* @throws {RequiredError}
|
|
13591
|
+
* @type {string}
|
|
13592
|
+
* @memberof WorkingDay
|
|
13352
13593
|
*/
|
|
13353
|
-
|
|
13594
|
+
'id'?: string;
|
|
13354
13595
|
/**
|
|
13355
13596
|
*
|
|
13356
|
-
* @
|
|
13357
|
-
* @
|
|
13358
|
-
* @param {string} [languageCode]
|
|
13359
|
-
* @param {boolean} [returnDefaultValue]
|
|
13360
|
-
* @param {*} [options] Override http request option.
|
|
13361
|
-
* @throws {RequiredError}
|
|
13597
|
+
* @type {string}
|
|
13598
|
+
* @memberof WorkingDay
|
|
13362
13599
|
*/
|
|
13363
|
-
|
|
13600
|
+
'dayOfWeek'?: string | null;
|
|
13364
13601
|
/**
|
|
13365
13602
|
*
|
|
13366
|
-
* @
|
|
13367
|
-
* @
|
|
13368
|
-
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13369
|
-
* @param {*} [options] Override http request option.
|
|
13370
|
-
* @throws {RequiredError}
|
|
13603
|
+
* @type {Date}
|
|
13604
|
+
* @memberof WorkingDay
|
|
13371
13605
|
*/
|
|
13372
|
-
|
|
13606
|
+
'timeFrom'?: Date;
|
|
13373
13607
|
/**
|
|
13374
13608
|
*
|
|
13375
|
-
* @
|
|
13376
|
-
* @
|
|
13377
|
-
* @param {string} [hospitalName]
|
|
13378
|
-
* @param {string} [hospitalSlug]
|
|
13379
|
-
* @param {string} [overviewTitle]
|
|
13380
|
-
* @param {string} [normalizedOverviewTitle]
|
|
13381
|
-
* @param {string} [overview]
|
|
13382
|
-
* @param {string} [content]
|
|
13383
|
-
* @param {string} [customStyle]
|
|
13384
|
-
* @param {string} [background]
|
|
13385
|
-
* @param {string} [backgroundThumbnail]
|
|
13386
|
-
* @param {string} [languageCode]
|
|
13387
|
-
* @param {boolean} [returnDefaultValue]
|
|
13388
|
-
* @param {boolean} [confirmed]
|
|
13389
|
-
* @param {number} [page]
|
|
13390
|
-
* @param {number} [limit]
|
|
13391
|
-
* @param {Date} [lastRetrieved]
|
|
13392
|
-
* @param {*} [options] Override http request option.
|
|
13393
|
-
* @throws {RequiredError}
|
|
13609
|
+
* @type {Date}
|
|
13610
|
+
* @memberof WorkingDay
|
|
13394
13611
|
*/
|
|
13395
|
-
|
|
13612
|
+
'timeTo'?: Date;
|
|
13396
13613
|
/**
|
|
13397
13614
|
*
|
|
13398
|
-
* @
|
|
13399
|
-
* @
|
|
13400
|
-
* @param {*} [options] Override http request option.
|
|
13401
|
-
* @throws {RequiredError}
|
|
13615
|
+
* @type {boolean}
|
|
13616
|
+
* @memberof WorkingDay
|
|
13402
13617
|
*/
|
|
13403
|
-
|
|
13618
|
+
'checkHoliday'?: boolean;
|
|
13619
|
+
}
|
|
13620
|
+
/**
|
|
13621
|
+
*
|
|
13622
|
+
* @export
|
|
13623
|
+
* @interface WorkingDayItemModel
|
|
13624
|
+
*/
|
|
13625
|
+
export interface WorkingDayItemModel {
|
|
13404
13626
|
/**
|
|
13405
13627
|
*
|
|
13406
|
-
* @
|
|
13407
|
-
* @
|
|
13408
|
-
* @param {boolean} [returnDefaultValue]
|
|
13409
|
-
* @param {*} [options] Override http request option.
|
|
13410
|
-
* @throws {RequiredError}
|
|
13628
|
+
* @type {string}
|
|
13629
|
+
* @memberof WorkingDayItemModel
|
|
13411
13630
|
*/
|
|
13412
|
-
|
|
13413
|
-
|
|
13631
|
+
'id'?: string;
|
|
13632
|
+
/**
|
|
13633
|
+
*
|
|
13634
|
+
* @type {string}
|
|
13635
|
+
* @memberof WorkingDayItemModel
|
|
13636
|
+
*/
|
|
13637
|
+
'dayOfWeek'?: string | null;
|
|
13638
|
+
/**
|
|
13639
|
+
*
|
|
13640
|
+
* @type {Date}
|
|
13641
|
+
* @memberof WorkingDayItemModel
|
|
13642
|
+
*/
|
|
13643
|
+
'timeFrom'?: Date;
|
|
13644
|
+
/**
|
|
13645
|
+
*
|
|
13646
|
+
* @type {Date}
|
|
13647
|
+
* @memberof WorkingDayItemModel
|
|
13648
|
+
*/
|
|
13649
|
+
'timeTo'?: Date;
|
|
13650
|
+
/**
|
|
13651
|
+
*
|
|
13652
|
+
* @type {boolean}
|
|
13653
|
+
* @memberof WorkingDayItemModel
|
|
13654
|
+
*/
|
|
13655
|
+
'checkHoliday'?: boolean;
|
|
13656
|
+
}
|
|
13414
13657
|
/**
|
|
13415
|
-
*
|
|
13658
|
+
*
|
|
13416
13659
|
* @export
|
|
13660
|
+
* @interface WorkingDayModel
|
|
13417
13661
|
*/
|
|
13418
|
-
export
|
|
13662
|
+
export interface WorkingDayModel {
|
|
13419
13663
|
/**
|
|
13420
13664
|
*
|
|
13421
|
-
* @
|
|
13422
|
-
* @
|
|
13423
|
-
* @param {*} [options] Override http request option.
|
|
13424
|
-
* @throws {RequiredError}
|
|
13665
|
+
* @type {string}
|
|
13666
|
+
* @memberof WorkingDayModel
|
|
13425
13667
|
*/
|
|
13426
|
-
|
|
13668
|
+
'id'?: string;
|
|
13427
13669
|
/**
|
|
13428
13670
|
*
|
|
13429
|
-
* @
|
|
13430
|
-
* @
|
|
13431
|
-
* @param {string} [languageCode]
|
|
13432
|
-
* @param {boolean} [returnDefaultValue]
|
|
13433
|
-
* @param {*} [options] Override http request option.
|
|
13434
|
-
* @throws {RequiredError}
|
|
13671
|
+
* @type {string}
|
|
13672
|
+
* @memberof WorkingDayModel
|
|
13435
13673
|
*/
|
|
13436
|
-
|
|
13674
|
+
'dayOfWeek'?: string | null;
|
|
13437
13675
|
/**
|
|
13438
13676
|
*
|
|
13439
|
-
* @
|
|
13440
|
-
* @
|
|
13441
|
-
|
|
13442
|
-
|
|
13443
|
-
|
|
13677
|
+
* @type {Date}
|
|
13678
|
+
* @memberof WorkingDayModel
|
|
13679
|
+
*/
|
|
13680
|
+
'timeFrom'?: Date;
|
|
13681
|
+
/**
|
|
13682
|
+
*
|
|
13683
|
+
* @type {Date}
|
|
13684
|
+
* @memberof WorkingDayModel
|
|
13685
|
+
*/
|
|
13686
|
+
'timeTo'?: Date;
|
|
13687
|
+
/**
|
|
13688
|
+
*
|
|
13689
|
+
* @type {boolean}
|
|
13690
|
+
* @memberof WorkingDayModel
|
|
13691
|
+
*/
|
|
13692
|
+
'checkHoliday'?: boolean;
|
|
13693
|
+
}
|
|
13694
|
+
/**
|
|
13695
|
+
*
|
|
13696
|
+
* @export
|
|
13697
|
+
* @interface WorkingDaysModel
|
|
13698
|
+
*/
|
|
13699
|
+
export interface WorkingDaysModel {
|
|
13700
|
+
/**
|
|
13701
|
+
*
|
|
13702
|
+
* @type {Array<WorkingDayItemModel>}
|
|
13703
|
+
* @memberof WorkingDaysModel
|
|
13704
|
+
*/
|
|
13705
|
+
'items'?: Array<WorkingDayItemModel> | null;
|
|
13706
|
+
/**
|
|
13707
|
+
*
|
|
13708
|
+
* @type {PagedListMetaData}
|
|
13709
|
+
* @memberof WorkingDaysModel
|
|
13444
13710
|
*/
|
|
13445
|
-
|
|
13711
|
+
'metaData'?: PagedListMetaData;
|
|
13712
|
+
}
|
|
13713
|
+
/**
|
|
13714
|
+
* AboutUsApi - axios parameter creator
|
|
13715
|
+
* @export
|
|
13716
|
+
*/
|
|
13717
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13446
13718
|
/**
|
|
13447
13719
|
*
|
|
13448
13720
|
* @summary Get all AboutUsList.
|
|
@@ -13465,7 +13737,34 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13465
13737
|
* @param {*} [options] Override http request option.
|
|
13466
13738
|
* @throws {RequiredError}
|
|
13467
13739
|
*/
|
|
13468
|
-
apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig
|
|
13740
|
+
apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13741
|
+
/**
|
|
13742
|
+
*
|
|
13743
|
+
* @summary Delete AboutUs.
|
|
13744
|
+
* @param {string} hospitalId
|
|
13745
|
+
* @param {*} [options] Override http request option.
|
|
13746
|
+
* @throws {RequiredError}
|
|
13747
|
+
*/
|
|
13748
|
+
apiV1AboutusHospitalIdDelete: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13749
|
+
/**
|
|
13750
|
+
*
|
|
13751
|
+
* @summary Get AboutUs.
|
|
13752
|
+
* @param {string} hospitalId
|
|
13753
|
+
* @param {string} [languageCode]
|
|
13754
|
+
* @param {boolean} [returnDefaultValue]
|
|
13755
|
+
* @param {*} [options] Override http request option.
|
|
13756
|
+
* @throws {RequiredError}
|
|
13757
|
+
*/
|
|
13758
|
+
apiV1AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13759
|
+
/**
|
|
13760
|
+
*
|
|
13761
|
+
* @summary Update AboutUs.
|
|
13762
|
+
* @param {string} hospitalId
|
|
13763
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13764
|
+
* @param {*} [options] Override http request option.
|
|
13765
|
+
* @throws {RequiredError}
|
|
13766
|
+
*/
|
|
13767
|
+
apiV1AboutusHospitalIdPut: (hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13469
13768
|
/**
|
|
13470
13769
|
*
|
|
13471
13770
|
* @summary Create AboutUs.
|
|
@@ -13473,7 +13772,7 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13473
13772
|
* @param {*} [options] Override http request option.
|
|
13474
13773
|
* @throws {RequiredError}
|
|
13475
13774
|
*/
|
|
13476
|
-
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig
|
|
13775
|
+
apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13477
13776
|
/**
|
|
13478
13777
|
*
|
|
13479
13778
|
* @param {string} slug
|
|
@@ -13482,40 +13781,86 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13482
13781
|
* @param {*} [options] Override http request option.
|
|
13483
13782
|
* @throws {RequiredError}
|
|
13484
13783
|
*/
|
|
13485
|
-
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig
|
|
13784
|
+
apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13486
13785
|
};
|
|
13487
13786
|
/**
|
|
13488
|
-
* AboutUsApi -
|
|
13787
|
+
* AboutUsApi - functional programming interface
|
|
13489
13788
|
* @export
|
|
13490
13789
|
*/
|
|
13491
|
-
export declare const
|
|
13790
|
+
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
13791
|
+
/**
|
|
13792
|
+
*
|
|
13793
|
+
* @summary Get all AboutUsList.
|
|
13794
|
+
* @param {string} [hospitalId]
|
|
13795
|
+
* @param {string} [hospitalName]
|
|
13796
|
+
* @param {string} [hospitalSlug]
|
|
13797
|
+
* @param {string} [overviewTitle]
|
|
13798
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13799
|
+
* @param {string} [overview]
|
|
13800
|
+
* @param {string} [content]
|
|
13801
|
+
* @param {string} [customStyle]
|
|
13802
|
+
* @param {string} [background]
|
|
13803
|
+
* @param {string} [backgroundThumbnail]
|
|
13804
|
+
* @param {string} [languageCode]
|
|
13805
|
+
* @param {boolean} [returnDefaultValue]
|
|
13806
|
+
* @param {boolean} [confirmed]
|
|
13807
|
+
* @param {number} [page]
|
|
13808
|
+
* @param {number} [limit]
|
|
13809
|
+
* @param {Date} [lastRetrieved]
|
|
13810
|
+
* @param {*} [options] Override http request option.
|
|
13811
|
+
* @throws {RequiredError}
|
|
13812
|
+
*/
|
|
13813
|
+
apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
|
|
13492
13814
|
/**
|
|
13493
13815
|
*
|
|
13494
13816
|
* @summary Delete AboutUs.
|
|
13495
|
-
* @param {string}
|
|
13817
|
+
* @param {string} hospitalId
|
|
13496
13818
|
* @param {*} [options] Override http request option.
|
|
13497
13819
|
* @throws {RequiredError}
|
|
13498
13820
|
*/
|
|
13499
|
-
|
|
13821
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13500
13822
|
/**
|
|
13501
13823
|
*
|
|
13502
13824
|
* @summary Get AboutUs.
|
|
13503
|
-
* @param {string}
|
|
13825
|
+
* @param {string} hospitalId
|
|
13504
13826
|
* @param {string} [languageCode]
|
|
13505
13827
|
* @param {boolean} [returnDefaultValue]
|
|
13506
13828
|
* @param {*} [options] Override http request option.
|
|
13507
13829
|
* @throws {RequiredError}
|
|
13508
13830
|
*/
|
|
13509
|
-
|
|
13831
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13510
13832
|
/**
|
|
13511
13833
|
*
|
|
13512
13834
|
* @summary Update AboutUs.
|
|
13513
|
-
* @param {string}
|
|
13835
|
+
* @param {string} hospitalId
|
|
13514
13836
|
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13515
13837
|
* @param {*} [options] Override http request option.
|
|
13516
13838
|
* @throws {RequiredError}
|
|
13517
13839
|
*/
|
|
13518
|
-
|
|
13840
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13841
|
+
/**
|
|
13842
|
+
*
|
|
13843
|
+
* @summary Create AboutUs.
|
|
13844
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13845
|
+
* @param {*} [options] Override http request option.
|
|
13846
|
+
* @throws {RequiredError}
|
|
13847
|
+
*/
|
|
13848
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13849
|
+
/**
|
|
13850
|
+
*
|
|
13851
|
+
* @param {string} slug
|
|
13852
|
+
* @param {string} [languageCode]
|
|
13853
|
+
* @param {boolean} [returnDefaultValue]
|
|
13854
|
+
* @param {*} [options] Override http request option.
|
|
13855
|
+
* @throws {RequiredError}
|
|
13856
|
+
*/
|
|
13857
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13858
|
+
};
|
|
13859
|
+
/**
|
|
13860
|
+
* AboutUsApi - factory interface
|
|
13861
|
+
* @export
|
|
13862
|
+
*/
|
|
13863
|
+
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13519
13864
|
/**
|
|
13520
13865
|
*
|
|
13521
13866
|
* @summary Get all AboutUsList.
|
|
@@ -13541,59 +13886,56 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
13541
13886
|
apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
|
|
13542
13887
|
/**
|
|
13543
13888
|
*
|
|
13544
|
-
* @summary
|
|
13545
|
-
* @param {
|
|
13889
|
+
* @summary Delete AboutUs.
|
|
13890
|
+
* @param {string} hospitalId
|
|
13546
13891
|
* @param {*} [options] Override http request option.
|
|
13547
13892
|
* @throws {RequiredError}
|
|
13548
13893
|
*/
|
|
13549
|
-
|
|
13894
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
13550
13895
|
/**
|
|
13551
13896
|
*
|
|
13552
|
-
* @
|
|
13897
|
+
* @summary Get AboutUs.
|
|
13898
|
+
* @param {string} hospitalId
|
|
13553
13899
|
* @param {string} [languageCode]
|
|
13554
13900
|
* @param {boolean} [returnDefaultValue]
|
|
13555
13901
|
* @param {*} [options] Override http request option.
|
|
13556
13902
|
* @throws {RequiredError}
|
|
13557
13903
|
*/
|
|
13558
|
-
|
|
13559
|
-
};
|
|
13560
|
-
/**
|
|
13561
|
-
* AboutUsApi - object-oriented interface
|
|
13562
|
-
* @export
|
|
13563
|
-
* @class AboutUsApi
|
|
13564
|
-
* @extends {BaseAPI}
|
|
13565
|
-
*/
|
|
13566
|
-
export declare class AboutUsApi extends BaseAPI {
|
|
13904
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13567
13905
|
/**
|
|
13568
13906
|
*
|
|
13569
|
-
* @summary
|
|
13570
|
-
* @param {string}
|
|
13907
|
+
* @summary Update AboutUs.
|
|
13908
|
+
* @param {string} hospitalId
|
|
13909
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13571
13910
|
* @param {*} [options] Override http request option.
|
|
13572
13911
|
* @throws {RequiredError}
|
|
13573
|
-
* @memberof AboutUsApi
|
|
13574
13912
|
*/
|
|
13575
|
-
|
|
13913
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13576
13914
|
/**
|
|
13577
13915
|
*
|
|
13578
|
-
* @summary
|
|
13579
|
-
* @param {
|
|
13580
|
-
* @param {string} [languageCode]
|
|
13581
|
-
* @param {boolean} [returnDefaultValue]
|
|
13916
|
+
* @summary Create AboutUs.
|
|
13917
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13582
13918
|
* @param {*} [options] Override http request option.
|
|
13583
13919
|
* @throws {RequiredError}
|
|
13584
|
-
* @memberof AboutUsApi
|
|
13585
13920
|
*/
|
|
13586
|
-
|
|
13921
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13587
13922
|
/**
|
|
13588
13923
|
*
|
|
13589
|
-
* @
|
|
13590
|
-
* @param {string}
|
|
13591
|
-
* @param {
|
|
13924
|
+
* @param {string} slug
|
|
13925
|
+
* @param {string} [languageCode]
|
|
13926
|
+
* @param {boolean} [returnDefaultValue]
|
|
13592
13927
|
* @param {*} [options] Override http request option.
|
|
13593
13928
|
* @throws {RequiredError}
|
|
13594
|
-
* @memberof AboutUsApi
|
|
13595
13929
|
*/
|
|
13596
|
-
|
|
13930
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13931
|
+
};
|
|
13932
|
+
/**
|
|
13933
|
+
* AboutUsApi - object-oriented interface
|
|
13934
|
+
* @export
|
|
13935
|
+
* @class AboutUsApi
|
|
13936
|
+
* @extends {BaseAPI}
|
|
13937
|
+
*/
|
|
13938
|
+
export declare class AboutUsApi extends BaseAPI {
|
|
13597
13939
|
/**
|
|
13598
13940
|
*
|
|
13599
13941
|
* @summary Get all AboutUsList.
|
|
@@ -13618,6 +13960,36 @@ export declare class AboutUsApi extends BaseAPI {
|
|
|
13618
13960
|
* @memberof AboutUsApi
|
|
13619
13961
|
*/
|
|
13620
13962
|
apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel>>;
|
|
13963
|
+
/**
|
|
13964
|
+
*
|
|
13965
|
+
* @summary Delete AboutUs.
|
|
13966
|
+
* @param {string} hospitalId
|
|
13967
|
+
* @param {*} [options] Override http request option.
|
|
13968
|
+
* @throws {RequiredError}
|
|
13969
|
+
* @memberof AboutUsApi
|
|
13970
|
+
*/
|
|
13971
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
13972
|
+
/**
|
|
13973
|
+
*
|
|
13974
|
+
* @summary Get AboutUs.
|
|
13975
|
+
* @param {string} hospitalId
|
|
13976
|
+
* @param {string} [languageCode]
|
|
13977
|
+
* @param {boolean} [returnDefaultValue]
|
|
13978
|
+
* @param {*} [options] Override http request option.
|
|
13979
|
+
* @throws {RequiredError}
|
|
13980
|
+
* @memberof AboutUsApi
|
|
13981
|
+
*/
|
|
13982
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13983
|
+
/**
|
|
13984
|
+
*
|
|
13985
|
+
* @summary Update AboutUs.
|
|
13986
|
+
* @param {string} hospitalId
|
|
13987
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13988
|
+
* @param {*} [options] Override http request option.
|
|
13989
|
+
* @throws {RequiredError}
|
|
13990
|
+
* @memberof AboutUsApi
|
|
13991
|
+
*/
|
|
13992
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13621
13993
|
/**
|
|
13622
13994
|
*
|
|
13623
13995
|
* @summary Create AboutUs.
|
|
@@ -20869,13 +21241,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20869
21241
|
* @param {string} [languageCode]
|
|
20870
21242
|
* @param {Array<string>} [ids]
|
|
20871
21243
|
* @param {boolean} [returnDefaultValue]
|
|
21244
|
+
* @param {boolean} [paymentEnabled]
|
|
20872
21245
|
* @param {number} [page]
|
|
20873
21246
|
* @param {number} [limit]
|
|
20874
21247
|
* @param {Date} [lastRetrieved]
|
|
20875
21248
|
* @param {*} [options] Override http request option.
|
|
20876
21249
|
* @throws {RequiredError}
|
|
20877
21250
|
*/
|
|
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>;
|
|
21251
|
+
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
21252
|
/**
|
|
20880
21253
|
*
|
|
20881
21254
|
* @summary Delete HospitalAccreditation.
|
|
@@ -21097,70 +21470,122 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21097
21470
|
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21098
21471
|
/**
|
|
21099
21472
|
*
|
|
21100
|
-
* @summary Get all
|
|
21473
|
+
* @summary Get all HospitalHandles.
|
|
21101
21474
|
* @param {string} hospitalId
|
|
21475
|
+
* @param {string} [hospitalId2]
|
|
21102
21476
|
* @param {string} [id]
|
|
21103
|
-
* @param {
|
|
21477
|
+
* @param {SnsType} [snsType]
|
|
21478
|
+
* @param {string} [handle]
|
|
21104
21479
|
* @param {number} [page]
|
|
21105
21480
|
* @param {number} [limit]
|
|
21106
21481
|
* @param {Date} [lastRetrieved]
|
|
21107
21482
|
* @param {*} [options] Override http request option.
|
|
21108
21483
|
* @throws {RequiredError}
|
|
21109
21484
|
*/
|
|
21110
|
-
|
|
21485
|
+
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>;
|
|
21111
21486
|
/**
|
|
21112
21487
|
*
|
|
21113
|
-
* @summary Delete
|
|
21488
|
+
* @summary Delete HospitalHandle.
|
|
21114
21489
|
* @param {string} hospitalId
|
|
21115
|
-
* @param {string}
|
|
21490
|
+
* @param {string} handleId
|
|
21116
21491
|
* @param {*} [options] Override http request option.
|
|
21117
21492
|
* @throws {RequiredError}
|
|
21118
21493
|
*/
|
|
21119
|
-
|
|
21494
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21120
21495
|
/**
|
|
21121
21496
|
*
|
|
21122
|
-
* @summary Get
|
|
21497
|
+
* @summary Get HospitalHandle.
|
|
21123
21498
|
* @param {string} hospitalId
|
|
21124
|
-
* @param {string}
|
|
21499
|
+
* @param {string} handleId
|
|
21125
21500
|
* @param {*} [options] Override http request option.
|
|
21126
21501
|
* @throws {RequiredError}
|
|
21127
21502
|
*/
|
|
21128
|
-
|
|
21503
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21129
21504
|
/**
|
|
21130
21505
|
*
|
|
21131
|
-
* @summary Update
|
|
21506
|
+
* @summary Update HospitalHandle.
|
|
21132
21507
|
* @param {string} hospitalId
|
|
21133
|
-
* @param {string}
|
|
21134
|
-
* @param {
|
|
21508
|
+
* @param {string} handleId
|
|
21509
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
21135
21510
|
* @param {*} [options] Override http request option.
|
|
21136
21511
|
* @throws {RequiredError}
|
|
21137
21512
|
*/
|
|
21138
|
-
|
|
21513
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut: (hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21139
21514
|
/**
|
|
21140
21515
|
*
|
|
21141
|
-
* @summary
|
|
21516
|
+
* @summary Get HospitalHandle.
|
|
21142
21517
|
* @param {string} hospitalId
|
|
21143
|
-
* @param {
|
|
21518
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
21144
21519
|
* @param {*} [options] Override http request option.
|
|
21145
21520
|
* @throws {RequiredError}
|
|
21146
21521
|
*/
|
|
21147
|
-
|
|
21522
|
+
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21148
21523
|
/**
|
|
21149
21524
|
*
|
|
21150
|
-
* @summary
|
|
21525
|
+
* @summary Get all HospitalMedias.
|
|
21151
21526
|
* @param {string} hospitalId
|
|
21152
|
-
* @param {
|
|
21527
|
+
* @param {string} [id]
|
|
21528
|
+
* @param {MediaType} [mediaType]
|
|
21529
|
+
* @param {number} [page]
|
|
21530
|
+
* @param {number} [limit]
|
|
21531
|
+
* @param {Date} [lastRetrieved]
|
|
21153
21532
|
* @param {*} [options] Override http request option.
|
|
21154
21533
|
* @throws {RequiredError}
|
|
21155
21534
|
*/
|
|
21156
|
-
|
|
21535
|
+
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21157
21536
|
/**
|
|
21158
21537
|
*
|
|
21159
|
-
* @summary
|
|
21538
|
+
* @summary Delete HospitalMedia
|
|
21160
21539
|
* @param {string} hospitalId
|
|
21161
|
-
* @param {string}
|
|
21162
|
-
* @param {
|
|
21163
|
-
* @
|
|
21540
|
+
* @param {string} mediaId
|
|
21541
|
+
* @param {*} [options] Override http request option.
|
|
21542
|
+
* @throws {RequiredError}
|
|
21543
|
+
*/
|
|
21544
|
+
apiV1HospitalsHospitalIdMediasMediaIdDelete: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21545
|
+
/**
|
|
21546
|
+
*
|
|
21547
|
+
* @summary Get HospitalMedia.
|
|
21548
|
+
* @param {string} hospitalId
|
|
21549
|
+
* @param {string} mediaId
|
|
21550
|
+
* @param {*} [options] Override http request option.
|
|
21551
|
+
* @throws {RequiredError}
|
|
21552
|
+
*/
|
|
21553
|
+
apiV1HospitalsHospitalIdMediasMediaIdGet: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21554
|
+
/**
|
|
21555
|
+
*
|
|
21556
|
+
* @summary Update HospitalMedia.
|
|
21557
|
+
* @param {string} hospitalId
|
|
21558
|
+
* @param {string} mediaId
|
|
21559
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
21560
|
+
* @param {*} [options] Override http request option.
|
|
21561
|
+
* @throws {RequiredError}
|
|
21562
|
+
*/
|
|
21563
|
+
apiV1HospitalsHospitalIdMediasMediaIdPut: (hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21564
|
+
/**
|
|
21565
|
+
*
|
|
21566
|
+
* @summary Create HospitalMedia.
|
|
21567
|
+
* @param {string} hospitalId
|
|
21568
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
21569
|
+
* @param {*} [options] Override http request option.
|
|
21570
|
+
* @throws {RequiredError}
|
|
21571
|
+
*/
|
|
21572
|
+
apiV1HospitalsHospitalIdMediasPost: (hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21573
|
+
/**
|
|
21574
|
+
*
|
|
21575
|
+
* @summary Update Hospital.
|
|
21576
|
+
* @param {string} hospitalId
|
|
21577
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
21578
|
+
* @param {*} [options] Override http request option.
|
|
21579
|
+
* @throws {RequiredError}
|
|
21580
|
+
*/
|
|
21581
|
+
apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21582
|
+
/**
|
|
21583
|
+
*
|
|
21584
|
+
* @summary Get all HospitalSpecialties.
|
|
21585
|
+
* @param {string} hospitalId
|
|
21586
|
+
* @param {string} [hospitalName]
|
|
21587
|
+
* @param {string} [hospitalSlug]
|
|
21588
|
+
* @param {string} [specialtyId]
|
|
21164
21589
|
* @param {string} [specialtyName]
|
|
21165
21590
|
* @param {string} [specialtyTypeId]
|
|
21166
21591
|
* @param {string} [hospitalSpecialtySlug]
|
|
@@ -21367,6 +21792,60 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21367
21792
|
* @throws {RequiredError}
|
|
21368
21793
|
*/
|
|
21369
21794
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21795
|
+
/**
|
|
21796
|
+
*
|
|
21797
|
+
* @summary Get all HospitalWorkingDays.
|
|
21798
|
+
* @param {string} hospitalId
|
|
21799
|
+
* @param {string} [hospitalId2]
|
|
21800
|
+
* @param {string} [id]
|
|
21801
|
+
* @param {string} [dayOfWeek]
|
|
21802
|
+
* @param {Date} [timeFrom]
|
|
21803
|
+
* @param {Date} [timeTo]
|
|
21804
|
+
* @param {boolean} [checkHoliday]
|
|
21805
|
+
* @param {number} [page]
|
|
21806
|
+
* @param {number} [limit]
|
|
21807
|
+
* @param {Date} [lastRetrieved]
|
|
21808
|
+
* @param {*} [options] Override http request option.
|
|
21809
|
+
* @throws {RequiredError}
|
|
21810
|
+
*/
|
|
21811
|
+
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>;
|
|
21812
|
+
/**
|
|
21813
|
+
*
|
|
21814
|
+
* @summary Create HospitalWorkingDay.
|
|
21815
|
+
* @param {string} hospitalId
|
|
21816
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
21817
|
+
* @param {*} [options] Override http request option.
|
|
21818
|
+
* @throws {RequiredError}
|
|
21819
|
+
*/
|
|
21820
|
+
apiV1HospitalsHospitalIdWorkingdaysPost: (hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21821
|
+
/**
|
|
21822
|
+
*
|
|
21823
|
+
* @summary Delete HospitalWorkingDay.
|
|
21824
|
+
* @param {string} hospitalId
|
|
21825
|
+
* @param {string} workingDayId
|
|
21826
|
+
* @param {*} [options] Override http request option.
|
|
21827
|
+
* @throws {RequiredError}
|
|
21828
|
+
*/
|
|
21829
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21830
|
+
/**
|
|
21831
|
+
*
|
|
21832
|
+
* @summary Get HospitalWorkingDay.
|
|
21833
|
+
* @param {string} hospitalId
|
|
21834
|
+
* @param {string} workingDayId
|
|
21835
|
+
* @param {*} [options] Override http request option.
|
|
21836
|
+
* @throws {RequiredError}
|
|
21837
|
+
*/
|
|
21838
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21839
|
+
/**
|
|
21840
|
+
*
|
|
21841
|
+
* @summary Update HospitalWorkingDay.
|
|
21842
|
+
* @param {string} hospitalId
|
|
21843
|
+
* @param {string} workingDayId
|
|
21844
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
21845
|
+
* @param {*} [options] Override http request option.
|
|
21846
|
+
* @throws {RequiredError}
|
|
21847
|
+
*/
|
|
21848
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21370
21849
|
/**
|
|
21371
21850
|
*
|
|
21372
21851
|
* @summary Create Hospital.
|
|
@@ -21391,13 +21870,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21391
21870
|
* @param {string} [languageCode]
|
|
21392
21871
|
* @param {Array<string>} [ids]
|
|
21393
21872
|
* @param {boolean} [returnDefaultValue]
|
|
21873
|
+
* @param {boolean} [paymentEnabled]
|
|
21394
21874
|
* @param {number} [page]
|
|
21395
21875
|
* @param {number} [limit]
|
|
21396
21876
|
* @param {Date} [lastRetrieved]
|
|
21397
21877
|
* @param {*} [options] Override http request option.
|
|
21398
21878
|
* @throws {RequiredError}
|
|
21399
21879
|
*/
|
|
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>;
|
|
21880
|
+
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
21881
|
/**
|
|
21402
21882
|
*
|
|
21403
21883
|
* @param {string} slug
|
|
@@ -21429,13 +21909,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21429
21909
|
* @param {string} [languageCode]
|
|
21430
21910
|
* @param {Array<string>} [ids]
|
|
21431
21911
|
* @param {boolean} [returnDefaultValue]
|
|
21912
|
+
* @param {boolean} [paymentEnabled]
|
|
21432
21913
|
* @param {number} [page]
|
|
21433
21914
|
* @param {number} [limit]
|
|
21434
21915
|
* @param {Date} [lastRetrieved]
|
|
21435
21916
|
* @param {*} [options] Override http request option.
|
|
21436
21917
|
* @throws {RequiredError}
|
|
21437
21918
|
*/
|
|
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>>;
|
|
21919
|
+
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
21920
|
/**
|
|
21440
21921
|
*
|
|
21441
21922
|
* @summary Delete HospitalAccreditation.
|
|
@@ -21655,6 +22136,58 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21655
22136
|
* @throws {RequiredError}
|
|
21656
22137
|
*/
|
|
21657
22138
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
22139
|
+
/**
|
|
22140
|
+
*
|
|
22141
|
+
* @summary Get all HospitalHandles.
|
|
22142
|
+
* @param {string} hospitalId
|
|
22143
|
+
* @param {string} [hospitalId2]
|
|
22144
|
+
* @param {string} [id]
|
|
22145
|
+
* @param {SnsType} [snsType]
|
|
22146
|
+
* @param {string} [handle]
|
|
22147
|
+
* @param {number} [page]
|
|
22148
|
+
* @param {number} [limit]
|
|
22149
|
+
* @param {Date} [lastRetrieved]
|
|
22150
|
+
* @param {*} [options] Override http request option.
|
|
22151
|
+
* @throws {RequiredError}
|
|
22152
|
+
*/
|
|
22153
|
+
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>>;
|
|
22154
|
+
/**
|
|
22155
|
+
*
|
|
22156
|
+
* @summary Delete HospitalHandle.
|
|
22157
|
+
* @param {string} hospitalId
|
|
22158
|
+
* @param {string} handleId
|
|
22159
|
+
* @param {*} [options] Override http request option.
|
|
22160
|
+
* @throws {RequiredError}
|
|
22161
|
+
*/
|
|
22162
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22163
|
+
/**
|
|
22164
|
+
*
|
|
22165
|
+
* @summary Get HospitalHandle.
|
|
22166
|
+
* @param {string} hospitalId
|
|
22167
|
+
* @param {string} handleId
|
|
22168
|
+
* @param {*} [options] Override http request option.
|
|
22169
|
+
* @throws {RequiredError}
|
|
22170
|
+
*/
|
|
22171
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22172
|
+
/**
|
|
22173
|
+
*
|
|
22174
|
+
* @summary Update HospitalHandle.
|
|
22175
|
+
* @param {string} hospitalId
|
|
22176
|
+
* @param {string} handleId
|
|
22177
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
22178
|
+
* @param {*} [options] Override http request option.
|
|
22179
|
+
* @throws {RequiredError}
|
|
22180
|
+
*/
|
|
22181
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22182
|
+
/**
|
|
22183
|
+
*
|
|
22184
|
+
* @summary Get HospitalHandle.
|
|
22185
|
+
* @param {string} hospitalId
|
|
22186
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
22187
|
+
* @param {*} [options] Override http request option.
|
|
22188
|
+
* @throws {RequiredError}
|
|
22189
|
+
*/
|
|
22190
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
21658
22191
|
/**
|
|
21659
22192
|
*
|
|
21660
22193
|
* @summary Get all HospitalMedias.
|
|
@@ -21927,6 +22460,60 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21927
22460
|
* @throws {RequiredError}
|
|
21928
22461
|
*/
|
|
21929
22462
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22463
|
+
/**
|
|
22464
|
+
*
|
|
22465
|
+
* @summary Get all HospitalWorkingDays.
|
|
22466
|
+
* @param {string} hospitalId
|
|
22467
|
+
* @param {string} [hospitalId2]
|
|
22468
|
+
* @param {string} [id]
|
|
22469
|
+
* @param {string} [dayOfWeek]
|
|
22470
|
+
* @param {Date} [timeFrom]
|
|
22471
|
+
* @param {Date} [timeTo]
|
|
22472
|
+
* @param {boolean} [checkHoliday]
|
|
22473
|
+
* @param {number} [page]
|
|
22474
|
+
* @param {number} [limit]
|
|
22475
|
+
* @param {Date} [lastRetrieved]
|
|
22476
|
+
* @param {*} [options] Override http request option.
|
|
22477
|
+
* @throws {RequiredError}
|
|
22478
|
+
*/
|
|
22479
|
+
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>>;
|
|
22480
|
+
/**
|
|
22481
|
+
*
|
|
22482
|
+
* @summary Create HospitalWorkingDay.
|
|
22483
|
+
* @param {string} hospitalId
|
|
22484
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
22485
|
+
* @param {*} [options] Override http request option.
|
|
22486
|
+
* @throws {RequiredError}
|
|
22487
|
+
*/
|
|
22488
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22489
|
+
/**
|
|
22490
|
+
*
|
|
22491
|
+
* @summary Delete HospitalWorkingDay.
|
|
22492
|
+
* @param {string} hospitalId
|
|
22493
|
+
* @param {string} workingDayId
|
|
22494
|
+
* @param {*} [options] Override http request option.
|
|
22495
|
+
* @throws {RequiredError}
|
|
22496
|
+
*/
|
|
22497
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22498
|
+
/**
|
|
22499
|
+
*
|
|
22500
|
+
* @summary Get HospitalWorkingDay.
|
|
22501
|
+
* @param {string} hospitalId
|
|
22502
|
+
* @param {string} workingDayId
|
|
22503
|
+
* @param {*} [options] Override http request option.
|
|
22504
|
+
* @throws {RequiredError}
|
|
22505
|
+
*/
|
|
22506
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22507
|
+
/**
|
|
22508
|
+
*
|
|
22509
|
+
* @summary Update HospitalWorkingDay.
|
|
22510
|
+
* @param {string} hospitalId
|
|
22511
|
+
* @param {string} workingDayId
|
|
22512
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
22513
|
+
* @param {*} [options] Override http request option.
|
|
22514
|
+
* @throws {RequiredError}
|
|
22515
|
+
*/
|
|
22516
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
21930
22517
|
/**
|
|
21931
22518
|
*
|
|
21932
22519
|
* @summary Create Hospital.
|
|
@@ -21951,13 +22538,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21951
22538
|
* @param {string} [languageCode]
|
|
21952
22539
|
* @param {Array<string>} [ids]
|
|
21953
22540
|
* @param {boolean} [returnDefaultValue]
|
|
22541
|
+
* @param {boolean} [paymentEnabled]
|
|
21954
22542
|
* @param {number} [page]
|
|
21955
22543
|
* @param {number} [limit]
|
|
21956
22544
|
* @param {Date} [lastRetrieved]
|
|
21957
22545
|
* @param {*} [options] Override http request option.
|
|
21958
22546
|
* @throws {RequiredError}
|
|
21959
22547
|
*/
|
|
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>>;
|
|
22548
|
+
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
22549
|
/**
|
|
21962
22550
|
*
|
|
21963
22551
|
* @param {string} slug
|
|
@@ -21989,13 +22577,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21989
22577
|
* @param {string} [languageCode]
|
|
21990
22578
|
* @param {Array<string>} [ids]
|
|
21991
22579
|
* @param {boolean} [returnDefaultValue]
|
|
22580
|
+
* @param {boolean} [paymentEnabled]
|
|
21992
22581
|
* @param {number} [page]
|
|
21993
22582
|
* @param {number} [limit]
|
|
21994
22583
|
* @param {Date} [lastRetrieved]
|
|
21995
22584
|
* @param {*} [options] Override http request option.
|
|
21996
22585
|
* @throws {RequiredError}
|
|
21997
22586
|
*/
|
|
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>;
|
|
22587
|
+
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
22588
|
/**
|
|
22000
22589
|
*
|
|
22001
22590
|
* @summary Delete HospitalAccreditation.
|
|
@@ -22215,6 +22804,58 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22215
22804
|
* @throws {RequiredError}
|
|
22216
22805
|
*/
|
|
22217
22806
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
22807
|
+
/**
|
|
22808
|
+
*
|
|
22809
|
+
* @summary Get all HospitalHandles.
|
|
22810
|
+
* @param {string} hospitalId
|
|
22811
|
+
* @param {string} [hospitalId2]
|
|
22812
|
+
* @param {string} [id]
|
|
22813
|
+
* @param {SnsType} [snsType]
|
|
22814
|
+
* @param {string} [handle]
|
|
22815
|
+
* @param {number} [page]
|
|
22816
|
+
* @param {number} [limit]
|
|
22817
|
+
* @param {Date} [lastRetrieved]
|
|
22818
|
+
* @param {*} [options] Override http request option.
|
|
22819
|
+
* @throws {RequiredError}
|
|
22820
|
+
*/
|
|
22821
|
+
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>;
|
|
22822
|
+
/**
|
|
22823
|
+
*
|
|
22824
|
+
* @summary Delete HospitalHandle.
|
|
22825
|
+
* @param {string} hospitalId
|
|
22826
|
+
* @param {string} handleId
|
|
22827
|
+
* @param {*} [options] Override http request option.
|
|
22828
|
+
* @throws {RequiredError}
|
|
22829
|
+
*/
|
|
22830
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: any): AxiosPromise<boolean>;
|
|
22831
|
+
/**
|
|
22832
|
+
*
|
|
22833
|
+
* @summary Get HospitalHandle.
|
|
22834
|
+
* @param {string} hospitalId
|
|
22835
|
+
* @param {string} handleId
|
|
22836
|
+
* @param {*} [options] Override http request option.
|
|
22837
|
+
* @throws {RequiredError}
|
|
22838
|
+
*/
|
|
22839
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
22840
|
+
/**
|
|
22841
|
+
*
|
|
22842
|
+
* @summary Update HospitalHandle.
|
|
22843
|
+
* @param {string} hospitalId
|
|
22844
|
+
* @param {string} handleId
|
|
22845
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
22846
|
+
* @param {*} [options] Override http request option.
|
|
22847
|
+
* @throws {RequiredError}
|
|
22848
|
+
*/
|
|
22849
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
22850
|
+
/**
|
|
22851
|
+
*
|
|
22852
|
+
* @summary Get HospitalHandle.
|
|
22853
|
+
* @param {string} hospitalId
|
|
22854
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
22855
|
+
* @param {*} [options] Override http request option.
|
|
22856
|
+
* @throws {RequiredError}
|
|
22857
|
+
*/
|
|
22858
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
22218
22859
|
/**
|
|
22219
22860
|
*
|
|
22220
22861
|
* @summary Get all HospitalMedias.
|
|
@@ -22487,6 +23128,60 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22487
23128
|
* @throws {RequiredError}
|
|
22488
23129
|
*/
|
|
22489
23130
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
23131
|
+
/**
|
|
23132
|
+
*
|
|
23133
|
+
* @summary Get all HospitalWorkingDays.
|
|
23134
|
+
* @param {string} hospitalId
|
|
23135
|
+
* @param {string} [hospitalId2]
|
|
23136
|
+
* @param {string} [id]
|
|
23137
|
+
* @param {string} [dayOfWeek]
|
|
23138
|
+
* @param {Date} [timeFrom]
|
|
23139
|
+
* @param {Date} [timeTo]
|
|
23140
|
+
* @param {boolean} [checkHoliday]
|
|
23141
|
+
* @param {number} [page]
|
|
23142
|
+
* @param {number} [limit]
|
|
23143
|
+
* @param {Date} [lastRetrieved]
|
|
23144
|
+
* @param {*} [options] Override http request option.
|
|
23145
|
+
* @throws {RequiredError}
|
|
23146
|
+
*/
|
|
23147
|
+
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>;
|
|
23148
|
+
/**
|
|
23149
|
+
*
|
|
23150
|
+
* @summary Create HospitalWorkingDay.
|
|
23151
|
+
* @param {string} hospitalId
|
|
23152
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
23153
|
+
* @param {*} [options] Override http request option.
|
|
23154
|
+
* @throws {RequiredError}
|
|
23155
|
+
*/
|
|
23156
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
23157
|
+
/**
|
|
23158
|
+
*
|
|
23159
|
+
* @summary Delete HospitalWorkingDay.
|
|
23160
|
+
* @param {string} hospitalId
|
|
23161
|
+
* @param {string} workingDayId
|
|
23162
|
+
* @param {*} [options] Override http request option.
|
|
23163
|
+
* @throws {RequiredError}
|
|
23164
|
+
*/
|
|
23165
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<boolean>;
|
|
23166
|
+
/**
|
|
23167
|
+
*
|
|
23168
|
+
* @summary Get HospitalWorkingDay.
|
|
23169
|
+
* @param {string} hospitalId
|
|
23170
|
+
* @param {string} workingDayId
|
|
23171
|
+
* @param {*} [options] Override http request option.
|
|
23172
|
+
* @throws {RequiredError}
|
|
23173
|
+
*/
|
|
23174
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23175
|
+
/**
|
|
23176
|
+
*
|
|
23177
|
+
* @summary Update HospitalWorkingDay.
|
|
23178
|
+
* @param {string} hospitalId
|
|
23179
|
+
* @param {string} workingDayId
|
|
23180
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
23181
|
+
* @param {*} [options] Override http request option.
|
|
23182
|
+
* @throws {RequiredError}
|
|
23183
|
+
*/
|
|
23184
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
22490
23185
|
/**
|
|
22491
23186
|
*
|
|
22492
23187
|
* @summary Create Hospital.
|
|
@@ -22511,13 +23206,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22511
23206
|
* @param {string} [languageCode]
|
|
22512
23207
|
* @param {Array<string>} [ids]
|
|
22513
23208
|
* @param {boolean} [returnDefaultValue]
|
|
23209
|
+
* @param {boolean} [paymentEnabled]
|
|
22514
23210
|
* @param {number} [page]
|
|
22515
23211
|
* @param {number} [limit]
|
|
22516
23212
|
* @param {Date} [lastRetrieved]
|
|
22517
23213
|
* @param {*} [options] Override http request option.
|
|
22518
23214
|
* @throws {RequiredError}
|
|
22519
23215
|
*/
|
|
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>;
|
|
23216
|
+
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
23217
|
/**
|
|
22522
23218
|
*
|
|
22523
23219
|
* @param {string} slug
|
|
@@ -22551,6 +23247,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22551
23247
|
* @param {string} [languageCode]
|
|
22552
23248
|
* @param {Array<string>} [ids]
|
|
22553
23249
|
* @param {boolean} [returnDefaultValue]
|
|
23250
|
+
* @param {boolean} [paymentEnabled]
|
|
22554
23251
|
* @param {number} [page]
|
|
22555
23252
|
* @param {number} [limit]
|
|
22556
23253
|
* @param {Date} [lastRetrieved]
|
|
@@ -22558,7 +23255,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22558
23255
|
* @throws {RequiredError}
|
|
22559
23256
|
* @memberof HospitalsApi
|
|
22560
23257
|
*/
|
|
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>>;
|
|
23258
|
+
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
23259
|
/**
|
|
22563
23260
|
*
|
|
22564
23261
|
* @summary Delete HospitalAccreditation.
|
|
@@ -22799,6 +23496,63 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22799
23496
|
* @memberof HospitalsApi
|
|
22800
23497
|
*/
|
|
22801
23498
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
23499
|
+
/**
|
|
23500
|
+
*
|
|
23501
|
+
* @summary Get all HospitalHandles.
|
|
23502
|
+
* @param {string} hospitalId
|
|
23503
|
+
* @param {string} [hospitalId2]
|
|
23504
|
+
* @param {string} [id]
|
|
23505
|
+
* @param {SnsType} [snsType]
|
|
23506
|
+
* @param {string} [handle]
|
|
23507
|
+
* @param {number} [page]
|
|
23508
|
+
* @param {number} [limit]
|
|
23509
|
+
* @param {Date} [lastRetrieved]
|
|
23510
|
+
* @param {*} [options] Override http request option.
|
|
23511
|
+
* @throws {RequiredError}
|
|
23512
|
+
* @memberof HospitalsApi
|
|
23513
|
+
*/
|
|
23514
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23515
|
+
/**
|
|
23516
|
+
*
|
|
23517
|
+
* @summary Delete HospitalHandle.
|
|
23518
|
+
* @param {string} hospitalId
|
|
23519
|
+
* @param {string} handleId
|
|
23520
|
+
* @param {*} [options] Override http request option.
|
|
23521
|
+
* @throws {RequiredError}
|
|
23522
|
+
* @memberof HospitalsApi
|
|
23523
|
+
*/
|
|
23524
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23525
|
+
/**
|
|
23526
|
+
*
|
|
23527
|
+
* @summary Get HospitalHandle.
|
|
23528
|
+
* @param {string} hospitalId
|
|
23529
|
+
* @param {string} handleId
|
|
23530
|
+
* @param {*} [options] Override http request option.
|
|
23531
|
+
* @throws {RequiredError}
|
|
23532
|
+
* @memberof HospitalsApi
|
|
23533
|
+
*/
|
|
23534
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23535
|
+
/**
|
|
23536
|
+
*
|
|
23537
|
+
* @summary Update HospitalHandle.
|
|
23538
|
+
* @param {string} hospitalId
|
|
23539
|
+
* @param {string} handleId
|
|
23540
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
23541
|
+
* @param {*} [options] Override http request option.
|
|
23542
|
+
* @throws {RequiredError}
|
|
23543
|
+
* @memberof HospitalsApi
|
|
23544
|
+
*/
|
|
23545
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23546
|
+
/**
|
|
23547
|
+
*
|
|
23548
|
+
* @summary Get HospitalHandle.
|
|
23549
|
+
* @param {string} hospitalId
|
|
23550
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
23551
|
+
* @param {*} [options] Override http request option.
|
|
23552
|
+
* @throws {RequiredError}
|
|
23553
|
+
* @memberof HospitalsApi
|
|
23554
|
+
*/
|
|
23555
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
22802
23556
|
/**
|
|
22803
23557
|
*
|
|
22804
23558
|
* @summary Get all HospitalMedias.
|
|
@@ -23093,6 +23847,65 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23093
23847
|
* @memberof HospitalsApi
|
|
23094
23848
|
*/
|
|
23095
23849
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
23850
|
+
/**
|
|
23851
|
+
*
|
|
23852
|
+
* @summary Get all HospitalWorkingDays.
|
|
23853
|
+
* @param {string} hospitalId
|
|
23854
|
+
* @param {string} [hospitalId2]
|
|
23855
|
+
* @param {string} [id]
|
|
23856
|
+
* @param {string} [dayOfWeek]
|
|
23857
|
+
* @param {Date} [timeFrom]
|
|
23858
|
+
* @param {Date} [timeTo]
|
|
23859
|
+
* @param {boolean} [checkHoliday]
|
|
23860
|
+
* @param {number} [page]
|
|
23861
|
+
* @param {number} [limit]
|
|
23862
|
+
* @param {Date} [lastRetrieved]
|
|
23863
|
+
* @param {*} [options] Override http request option.
|
|
23864
|
+
* @throws {RequiredError}
|
|
23865
|
+
* @memberof HospitalsApi
|
|
23866
|
+
*/
|
|
23867
|
+
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>>;
|
|
23868
|
+
/**
|
|
23869
|
+
*
|
|
23870
|
+
* @summary Create HospitalWorkingDay.
|
|
23871
|
+
* @param {string} hospitalId
|
|
23872
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
23873
|
+
* @param {*} [options] Override http request option.
|
|
23874
|
+
* @throws {RequiredError}
|
|
23875
|
+
* @memberof HospitalsApi
|
|
23876
|
+
*/
|
|
23877
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23878
|
+
/**
|
|
23879
|
+
*
|
|
23880
|
+
* @summary Delete HospitalWorkingDay.
|
|
23881
|
+
* @param {string} hospitalId
|
|
23882
|
+
* @param {string} workingDayId
|
|
23883
|
+
* @param {*} [options] Override http request option.
|
|
23884
|
+
* @throws {RequiredError}
|
|
23885
|
+
* @memberof HospitalsApi
|
|
23886
|
+
*/
|
|
23887
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23888
|
+
/**
|
|
23889
|
+
*
|
|
23890
|
+
* @summary Get HospitalWorkingDay.
|
|
23891
|
+
* @param {string} hospitalId
|
|
23892
|
+
* @param {string} workingDayId
|
|
23893
|
+
* @param {*} [options] Override http request option.
|
|
23894
|
+
* @throws {RequiredError}
|
|
23895
|
+
* @memberof HospitalsApi
|
|
23896
|
+
*/
|
|
23897
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
23898
|
+
/**
|
|
23899
|
+
*
|
|
23900
|
+
* @summary Update HospitalWorkingDay.
|
|
23901
|
+
* @param {string} hospitalId
|
|
23902
|
+
* @param {string} workingDayId
|
|
23903
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
23904
|
+
* @param {*} [options] Override http request option.
|
|
23905
|
+
* @throws {RequiredError}
|
|
23906
|
+
* @memberof HospitalsApi
|
|
23907
|
+
*/
|
|
23908
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
23096
23909
|
/**
|
|
23097
23910
|
*
|
|
23098
23911
|
* @summary Create Hospital.
|
|
@@ -23118,6 +23931,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23118
23931
|
* @param {string} [languageCode]
|
|
23119
23932
|
* @param {Array<string>} [ids]
|
|
23120
23933
|
* @param {boolean} [returnDefaultValue]
|
|
23934
|
+
* @param {boolean} [paymentEnabled]
|
|
23121
23935
|
* @param {number} [page]
|
|
23122
23936
|
* @param {number} [limit]
|
|
23123
23937
|
* @param {Date} [lastRetrieved]
|
|
@@ -23125,7 +23939,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23125
23939
|
* @throws {RequiredError}
|
|
23126
23940
|
* @memberof HospitalsApi
|
|
23127
23941
|
*/
|
|
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>>;
|
|
23942
|
+
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
23943
|
/**
|
|
23130
23944
|
*
|
|
23131
23945
|
* @param {string} slug
|