ch-admin-api-client-typescript 2.7.5 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +485 -64
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +286 -78
- package/package.json +1 -1
- package/src/api.ts +633 -101
package/lib/api.d.ts
CHANGED
|
@@ -406,34 +406,34 @@ export interface ArticleItemModel {
|
|
|
406
406
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
409
|
-
* @type {Array<
|
|
409
|
+
* @type {Array<LocalizedUrlModel>}
|
|
410
410
|
* @memberof ArticleItemModel
|
|
411
411
|
*/
|
|
412
|
-
'
|
|
412
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
413
413
|
/**
|
|
414
414
|
*
|
|
415
|
-
* @type {
|
|
415
|
+
* @type {boolean}
|
|
416
416
|
* @memberof ArticleItemModel
|
|
417
417
|
*/
|
|
418
|
-
'
|
|
418
|
+
'confirmed'?: boolean;
|
|
419
419
|
/**
|
|
420
420
|
*
|
|
421
|
-
* @type {
|
|
421
|
+
* @type {Array<MediaModel>}
|
|
422
422
|
* @memberof ArticleItemModel
|
|
423
423
|
*/
|
|
424
|
-
'
|
|
424
|
+
'medias'?: Array<MediaModel> | null;
|
|
425
425
|
/**
|
|
426
426
|
*
|
|
427
|
-
* @type {Array<
|
|
427
|
+
* @type {Array<SourceModel>}
|
|
428
428
|
* @memberof ArticleItemModel
|
|
429
429
|
*/
|
|
430
|
-
'
|
|
430
|
+
'sources'?: Array<SourceModel> | null;
|
|
431
431
|
/**
|
|
432
432
|
*
|
|
433
|
-
* @type {
|
|
433
|
+
* @type {AuditableEntity}
|
|
434
434
|
* @memberof ArticleItemModel
|
|
435
435
|
*/
|
|
436
|
-
'
|
|
436
|
+
'auditableEntity'?: AuditableEntity;
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
@@ -533,34 +533,34 @@ export interface ArticleModel {
|
|
|
533
533
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
|
-
* @type {Array<
|
|
536
|
+
* @type {Array<LocalizedUrlModel>}
|
|
537
537
|
* @memberof ArticleModel
|
|
538
538
|
*/
|
|
539
|
-
'
|
|
539
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
|
-
* @type {
|
|
542
|
+
* @type {boolean}
|
|
543
543
|
* @memberof ArticleModel
|
|
544
544
|
*/
|
|
545
|
-
'
|
|
545
|
+
'confirmed'?: boolean;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {
|
|
548
|
+
* @type {Array<MediaModel>}
|
|
549
549
|
* @memberof ArticleModel
|
|
550
550
|
*/
|
|
551
|
-
'
|
|
551
|
+
'medias'?: Array<MediaModel> | null;
|
|
552
552
|
/**
|
|
553
553
|
*
|
|
554
|
-
* @type {Array<
|
|
554
|
+
* @type {Array<SourceModel>}
|
|
555
555
|
* @memberof ArticleModel
|
|
556
556
|
*/
|
|
557
|
-
'
|
|
557
|
+
'sources'?: Array<SourceModel> | null;
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
|
-
* @type {
|
|
560
|
+
* @type {AuditableEntity}
|
|
561
561
|
* @memberof ArticleModel
|
|
562
562
|
*/
|
|
563
|
-
'
|
|
563
|
+
'auditableEntity'?: AuditableEntity;
|
|
564
564
|
/**
|
|
565
565
|
*
|
|
566
566
|
* @type {string}
|
|
@@ -3988,12 +3988,36 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
3988
3988
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3989
3989
|
*/
|
|
3990
3990
|
'specialtyId'?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
*
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
|
+
*/
|
|
3996
|
+
'title'?: string | null;
|
|
3997
|
+
/**
|
|
3998
|
+
*
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4001
|
+
*/
|
|
4002
|
+
'description'?: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
*
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4007
|
+
*/
|
|
4008
|
+
'content'?: string | null;
|
|
3991
4009
|
/**
|
|
3992
4010
|
*
|
|
3993
4011
|
* @type {number}
|
|
3994
4012
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
4013
|
*/
|
|
3996
4014
|
'order'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
3997
4021
|
}
|
|
3998
4022
|
/**
|
|
3999
4023
|
*
|
|
@@ -4512,6 +4536,30 @@ export interface DealItemModel {
|
|
|
4512
4536
|
* @memberof DealItemModel
|
|
4513
4537
|
*/
|
|
4514
4538
|
'hospitalSlug'?: string | null;
|
|
4539
|
+
/**
|
|
4540
|
+
*
|
|
4541
|
+
* @type {string}
|
|
4542
|
+
* @memberof DealItemModel
|
|
4543
|
+
*/
|
|
4544
|
+
'hospitalLocationCountry'?: string | null;
|
|
4545
|
+
/**
|
|
4546
|
+
*
|
|
4547
|
+
* @type {string}
|
|
4548
|
+
* @memberof DealItemModel
|
|
4549
|
+
*/
|
|
4550
|
+
'hospitalLocationState'?: string | null;
|
|
4551
|
+
/**
|
|
4552
|
+
*
|
|
4553
|
+
* @type {boolean}
|
|
4554
|
+
* @memberof DealItemModel
|
|
4555
|
+
*/
|
|
4556
|
+
'hospitalConsultationEnabled'?: boolean;
|
|
4557
|
+
/**
|
|
4558
|
+
*
|
|
4559
|
+
* @type {number}
|
|
4560
|
+
* @memberof DealItemModel
|
|
4561
|
+
*/
|
|
4562
|
+
'serviceDuration'?: number;
|
|
4515
4563
|
/**
|
|
4516
4564
|
*
|
|
4517
4565
|
* @type {MarketingType}
|
|
@@ -4615,6 +4663,30 @@ export interface DealModel {
|
|
|
4615
4663
|
* @memberof DealModel
|
|
4616
4664
|
*/
|
|
4617
4665
|
'hospitalSlug'?: string | null;
|
|
4666
|
+
/**
|
|
4667
|
+
*
|
|
4668
|
+
* @type {string}
|
|
4669
|
+
* @memberof DealModel
|
|
4670
|
+
*/
|
|
4671
|
+
'hospitalLocationCountry'?: string | null;
|
|
4672
|
+
/**
|
|
4673
|
+
*
|
|
4674
|
+
* @type {string}
|
|
4675
|
+
* @memberof DealModel
|
|
4676
|
+
*/
|
|
4677
|
+
'hospitalLocationState'?: string | null;
|
|
4678
|
+
/**
|
|
4679
|
+
*
|
|
4680
|
+
* @type {boolean}
|
|
4681
|
+
* @memberof DealModel
|
|
4682
|
+
*/
|
|
4683
|
+
'hospitalConsultationEnabled'?: boolean;
|
|
4684
|
+
/**
|
|
4685
|
+
*
|
|
4686
|
+
* @type {number}
|
|
4687
|
+
* @memberof DealModel
|
|
4688
|
+
*/
|
|
4689
|
+
'serviceDuration'?: number;
|
|
4618
4690
|
/**
|
|
4619
4691
|
*
|
|
4620
4692
|
* @type {MarketingType}
|
|
@@ -5438,6 +5510,67 @@ export interface DoctorItemModel {
|
|
|
5438
5510
|
*/
|
|
5439
5511
|
'confirmed'?: boolean;
|
|
5440
5512
|
}
|
|
5513
|
+
/**
|
|
5514
|
+
*
|
|
5515
|
+
* @export
|
|
5516
|
+
* @interface DoctorItemSimpleModel
|
|
5517
|
+
*/
|
|
5518
|
+
export interface DoctorItemSimpleModel {
|
|
5519
|
+
/**
|
|
5520
|
+
*
|
|
5521
|
+
* @type {string}
|
|
5522
|
+
* @memberof DoctorItemSimpleModel
|
|
5523
|
+
*/
|
|
5524
|
+
'id'?: string;
|
|
5525
|
+
/**
|
|
5526
|
+
*
|
|
5527
|
+
* @type {string}
|
|
5528
|
+
* @memberof DoctorItemSimpleModel
|
|
5529
|
+
*/
|
|
5530
|
+
'firstName'?: string | null;
|
|
5531
|
+
/**
|
|
5532
|
+
*
|
|
5533
|
+
* @type {string}
|
|
5534
|
+
* @memberof DoctorItemSimpleModel
|
|
5535
|
+
*/
|
|
5536
|
+
'lastName'?: string | null;
|
|
5537
|
+
/**
|
|
5538
|
+
*
|
|
5539
|
+
* @type {string}
|
|
5540
|
+
* @memberof DoctorItemSimpleModel
|
|
5541
|
+
*/
|
|
5542
|
+
'fullname'?: string | null;
|
|
5543
|
+
/**
|
|
5544
|
+
*
|
|
5545
|
+
* @type {string}
|
|
5546
|
+
* @memberof DoctorItemSimpleModel
|
|
5547
|
+
*/
|
|
5548
|
+
'slug'?: string | null;
|
|
5549
|
+
/**
|
|
5550
|
+
*
|
|
5551
|
+
* @type {string}
|
|
5552
|
+
* @memberof DoctorItemSimpleModel
|
|
5553
|
+
*/
|
|
5554
|
+
'hospitalId'?: string | null;
|
|
5555
|
+
/**
|
|
5556
|
+
*
|
|
5557
|
+
* @type {string}
|
|
5558
|
+
* @memberof DoctorItemSimpleModel
|
|
5559
|
+
*/
|
|
5560
|
+
'hospitalName'?: string | null;
|
|
5561
|
+
/**
|
|
5562
|
+
*
|
|
5563
|
+
* @type {string}
|
|
5564
|
+
* @memberof DoctorItemSimpleModel
|
|
5565
|
+
*/
|
|
5566
|
+
'overview'?: string | null;
|
|
5567
|
+
/**
|
|
5568
|
+
*
|
|
5569
|
+
* @type {boolean}
|
|
5570
|
+
* @memberof DoctorItemSimpleModel
|
|
5571
|
+
*/
|
|
5572
|
+
'confirmed'?: boolean;
|
|
5573
|
+
}
|
|
5441
5574
|
/**
|
|
5442
5575
|
*
|
|
5443
5576
|
* @export
|
|
@@ -5817,6 +5950,25 @@ export interface DoctorsModel {
|
|
|
5817
5950
|
*/
|
|
5818
5951
|
'metaData'?: PagedListMetaData;
|
|
5819
5952
|
}
|
|
5953
|
+
/**
|
|
5954
|
+
*
|
|
5955
|
+
* @export
|
|
5956
|
+
* @interface DoctorsSimpleModel
|
|
5957
|
+
*/
|
|
5958
|
+
export interface DoctorsSimpleModel {
|
|
5959
|
+
/**
|
|
5960
|
+
*
|
|
5961
|
+
* @type {Array<DoctorItemSimpleModel>}
|
|
5962
|
+
* @memberof DoctorsSimpleModel
|
|
5963
|
+
*/
|
|
5964
|
+
'items'?: Array<DoctorItemSimpleModel> | null;
|
|
5965
|
+
/**
|
|
5966
|
+
*
|
|
5967
|
+
* @type {PagedListMetaData}
|
|
5968
|
+
* @memberof DoctorsSimpleModel
|
|
5969
|
+
*/
|
|
5970
|
+
'metaData'?: PagedListMetaData;
|
|
5971
|
+
}
|
|
5820
5972
|
/**
|
|
5821
5973
|
*
|
|
5822
5974
|
* @export
|
|
@@ -7262,6 +7414,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
7262
7414
|
* @interface HospitalSpecialtyItemModel
|
|
7263
7415
|
*/
|
|
7264
7416
|
export interface HospitalSpecialtyItemModel {
|
|
7417
|
+
/**
|
|
7418
|
+
*
|
|
7419
|
+
* @type {string}
|
|
7420
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7421
|
+
*/
|
|
7422
|
+
'id'?: string;
|
|
7265
7423
|
/**
|
|
7266
7424
|
*
|
|
7267
7425
|
* @type {string}
|
|
@@ -7304,18 +7462,72 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7304
7462
|
* @memberof HospitalSpecialtyItemModel
|
|
7305
7463
|
*/
|
|
7306
7464
|
'specialtyTypeName'?: string | null;
|
|
7465
|
+
/**
|
|
7466
|
+
*
|
|
7467
|
+
* @type {string}
|
|
7468
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7469
|
+
*/
|
|
7470
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
7307
7471
|
/**
|
|
7308
7472
|
*
|
|
7309
7473
|
* @type {MarketingType}
|
|
7310
7474
|
* @memberof HospitalSpecialtyItemModel
|
|
7311
7475
|
*/
|
|
7312
7476
|
'marketingType'?: MarketingType;
|
|
7477
|
+
/**
|
|
7478
|
+
*
|
|
7479
|
+
* @type {string}
|
|
7480
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7481
|
+
*/
|
|
7482
|
+
'title'?: string | null;
|
|
7483
|
+
/**
|
|
7484
|
+
*
|
|
7485
|
+
* @type {string}
|
|
7486
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7487
|
+
*/
|
|
7488
|
+
'normalizedTitle'?: string | null;
|
|
7489
|
+
/**
|
|
7490
|
+
*
|
|
7491
|
+
* @type {string}
|
|
7492
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7493
|
+
*/
|
|
7494
|
+
'description'?: string | null;
|
|
7495
|
+
/**
|
|
7496
|
+
*
|
|
7497
|
+
* @type {string}
|
|
7498
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7499
|
+
*/
|
|
7500
|
+
'content'?: string | null;
|
|
7501
|
+
/**
|
|
7502
|
+
*
|
|
7503
|
+
* @type {number}
|
|
7504
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7505
|
+
*/
|
|
7506
|
+
'serviceCount'?: number;
|
|
7313
7507
|
/**
|
|
7314
7508
|
*
|
|
7315
7509
|
* @type {number}
|
|
7316
7510
|
* @memberof HospitalSpecialtyItemModel
|
|
7317
7511
|
*/
|
|
7318
7512
|
'order'?: number;
|
|
7513
|
+
/**
|
|
7514
|
+
*
|
|
7515
|
+
* @type {boolean}
|
|
7516
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7517
|
+
*/
|
|
7518
|
+
'confirmed'?: boolean;
|
|
7519
|
+
/**
|
|
7520
|
+
*
|
|
7521
|
+
* @type {Array<MediaModel>}
|
|
7522
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7523
|
+
*/
|
|
7524
|
+
'medias'?: Array<MediaModel> | null;
|
|
7525
|
+
/**
|
|
7526
|
+
*
|
|
7527
|
+
* @type {AuditableEntity}
|
|
7528
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7529
|
+
*/
|
|
7530
|
+
'auditableEntity'?: AuditableEntity;
|
|
7319
7531
|
}
|
|
7320
7532
|
/**
|
|
7321
7533
|
*
|
|
@@ -7323,6 +7535,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7323
7535
|
* @interface HospitalSpecialtyModel
|
|
7324
7536
|
*/
|
|
7325
7537
|
export interface HospitalSpecialtyModel {
|
|
7538
|
+
/**
|
|
7539
|
+
*
|
|
7540
|
+
* @type {string}
|
|
7541
|
+
* @memberof HospitalSpecialtyModel
|
|
7542
|
+
*/
|
|
7543
|
+
'id'?: string;
|
|
7326
7544
|
/**
|
|
7327
7545
|
*
|
|
7328
7546
|
* @type {string}
|
|
@@ -7365,18 +7583,78 @@ export interface HospitalSpecialtyModel {
|
|
|
7365
7583
|
* @memberof HospitalSpecialtyModel
|
|
7366
7584
|
*/
|
|
7367
7585
|
'specialtyTypeName'?: string | null;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {string}
|
|
7589
|
+
* @memberof HospitalSpecialtyModel
|
|
7590
|
+
*/
|
|
7591
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
7368
7592
|
/**
|
|
7369
7593
|
*
|
|
7370
7594
|
* @type {MarketingType}
|
|
7371
7595
|
* @memberof HospitalSpecialtyModel
|
|
7372
7596
|
*/
|
|
7373
7597
|
'marketingType'?: MarketingType;
|
|
7598
|
+
/**
|
|
7599
|
+
*
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof HospitalSpecialtyModel
|
|
7602
|
+
*/
|
|
7603
|
+
'title'?: string | null;
|
|
7604
|
+
/**
|
|
7605
|
+
*
|
|
7606
|
+
* @type {string}
|
|
7607
|
+
* @memberof HospitalSpecialtyModel
|
|
7608
|
+
*/
|
|
7609
|
+
'normalizedTitle'?: string | null;
|
|
7610
|
+
/**
|
|
7611
|
+
*
|
|
7612
|
+
* @type {string}
|
|
7613
|
+
* @memberof HospitalSpecialtyModel
|
|
7614
|
+
*/
|
|
7615
|
+
'description'?: string | null;
|
|
7616
|
+
/**
|
|
7617
|
+
*
|
|
7618
|
+
* @type {string}
|
|
7619
|
+
* @memberof HospitalSpecialtyModel
|
|
7620
|
+
*/
|
|
7621
|
+
'content'?: string | null;
|
|
7622
|
+
/**
|
|
7623
|
+
*
|
|
7624
|
+
* @type {number}
|
|
7625
|
+
* @memberof HospitalSpecialtyModel
|
|
7626
|
+
*/
|
|
7627
|
+
'serviceCount'?: number;
|
|
7374
7628
|
/**
|
|
7375
7629
|
*
|
|
7376
7630
|
* @type {number}
|
|
7377
7631
|
* @memberof HospitalSpecialtyModel
|
|
7378
7632
|
*/
|
|
7379
7633
|
'order'?: number;
|
|
7634
|
+
/**
|
|
7635
|
+
*
|
|
7636
|
+
* @type {boolean}
|
|
7637
|
+
* @memberof HospitalSpecialtyModel
|
|
7638
|
+
*/
|
|
7639
|
+
'confirmed'?: boolean;
|
|
7640
|
+
/**
|
|
7641
|
+
*
|
|
7642
|
+
* @type {Array<MediaModel>}
|
|
7643
|
+
* @memberof HospitalSpecialtyModel
|
|
7644
|
+
*/
|
|
7645
|
+
'medias'?: Array<MediaModel> | null;
|
|
7646
|
+
/**
|
|
7647
|
+
*
|
|
7648
|
+
* @type {AuditableEntity}
|
|
7649
|
+
* @memberof HospitalSpecialtyModel
|
|
7650
|
+
*/
|
|
7651
|
+
'auditableEntity'?: AuditableEntity;
|
|
7652
|
+
/**
|
|
7653
|
+
*
|
|
7654
|
+
* @type {string}
|
|
7655
|
+
* @memberof HospitalSpecialtyModel
|
|
7656
|
+
*/
|
|
7657
|
+
'languageCode'?: string | null;
|
|
7380
7658
|
}
|
|
7381
7659
|
/**
|
|
7382
7660
|
*
|
|
@@ -11133,12 +11411,54 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11133
11411
|
* @interface UpdateHospitalSpecialtyCommand
|
|
11134
11412
|
*/
|
|
11135
11413
|
export interface UpdateHospitalSpecialtyCommand {
|
|
11414
|
+
/**
|
|
11415
|
+
*
|
|
11416
|
+
* @type {string}
|
|
11417
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11418
|
+
*/
|
|
11419
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
11420
|
+
/**
|
|
11421
|
+
*
|
|
11422
|
+
* @type {string}
|
|
11423
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11424
|
+
*/
|
|
11425
|
+
'title'?: string | null;
|
|
11426
|
+
/**
|
|
11427
|
+
*
|
|
11428
|
+
* @type {string}
|
|
11429
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11430
|
+
*/
|
|
11431
|
+
'description'?: string | null;
|
|
11432
|
+
/**
|
|
11433
|
+
*
|
|
11434
|
+
* @type {string}
|
|
11435
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11436
|
+
*/
|
|
11437
|
+
'content'?: string | null;
|
|
11136
11438
|
/**
|
|
11137
11439
|
*
|
|
11138
11440
|
* @type {number}
|
|
11139
11441
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11140
11442
|
*/
|
|
11141
11443
|
'order'?: number;
|
|
11444
|
+
/**
|
|
11445
|
+
*
|
|
11446
|
+
* @type {string}
|
|
11447
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11448
|
+
*/
|
|
11449
|
+
'languageCode'?: string | null;
|
|
11450
|
+
/**
|
|
11451
|
+
*
|
|
11452
|
+
* @type {boolean}
|
|
11453
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11454
|
+
*/
|
|
11455
|
+
'confirmed'?: boolean;
|
|
11456
|
+
/**
|
|
11457
|
+
*
|
|
11458
|
+
* @type {Array<MediaModel>}
|
|
11459
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11460
|
+
*/
|
|
11461
|
+
'medias'?: Array<MediaModel> | null;
|
|
11142
11462
|
}
|
|
11143
11463
|
/**
|
|
11144
11464
|
*
|
|
@@ -15759,6 +16079,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15759
16079
|
* @param {string} [hospitalName]
|
|
15760
16080
|
* @param {string} [specialtyId]
|
|
15761
16081
|
* @param {string} [specialtyTypeId]
|
|
16082
|
+
* @param {string} [serviceId]
|
|
15762
16083
|
* @param {string} [exceptHospitalId]
|
|
15763
16084
|
* @param {string} [exceptDealId]
|
|
15764
16085
|
* @param {Array<string>} [ids]
|
|
@@ -15771,7 +16092,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15771
16092
|
* @param {*} [options] Override http request option.
|
|
15772
16093
|
* @throws {RequiredError}
|
|
15773
16094
|
*/
|
|
15774
|
-
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16095
|
+
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15775
16096
|
/**
|
|
15776
16097
|
*
|
|
15777
16098
|
* @summary Create a deal.
|
|
@@ -15936,6 +16257,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15936
16257
|
* @param {string} [hospitalName]
|
|
15937
16258
|
* @param {string} [specialtyId]
|
|
15938
16259
|
* @param {string} [specialtyTypeId]
|
|
16260
|
+
* @param {string} [serviceId]
|
|
15939
16261
|
* @param {string} [exceptHospitalId]
|
|
15940
16262
|
* @param {string} [exceptDealId]
|
|
15941
16263
|
* @param {Array<string>} [ids]
|
|
@@ -15948,7 +16270,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15948
16270
|
* @param {*} [options] Override http request option.
|
|
15949
16271
|
* @throws {RequiredError}
|
|
15950
16272
|
*/
|
|
15951
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
16273
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
15952
16274
|
/**
|
|
15953
16275
|
*
|
|
15954
16276
|
* @summary Create a deal.
|
|
@@ -16113,6 +16435,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16113
16435
|
* @param {string} [hospitalName]
|
|
16114
16436
|
* @param {string} [specialtyId]
|
|
16115
16437
|
* @param {string} [specialtyTypeId]
|
|
16438
|
+
* @param {string} [serviceId]
|
|
16116
16439
|
* @param {string} [exceptHospitalId]
|
|
16117
16440
|
* @param {string} [exceptDealId]
|
|
16118
16441
|
* @param {Array<string>} [ids]
|
|
@@ -16125,7 +16448,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16125
16448
|
* @param {*} [options] Override http request option.
|
|
16126
16449
|
* @throws {RequiredError}
|
|
16127
16450
|
*/
|
|
16128
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
16451
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
16129
16452
|
/**
|
|
16130
16453
|
*
|
|
16131
16454
|
* @summary Create a deal.
|
|
@@ -16305,6 +16628,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16305
16628
|
* @param {string} [hospitalName]
|
|
16306
16629
|
* @param {string} [specialtyId]
|
|
16307
16630
|
* @param {string} [specialtyTypeId]
|
|
16631
|
+
* @param {string} [serviceId]
|
|
16308
16632
|
* @param {string} [exceptHospitalId]
|
|
16309
16633
|
* @param {string} [exceptDealId]
|
|
16310
16634
|
* @param {Array<string>} [ids]
|
|
@@ -16318,7 +16642,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16318
16642
|
* @throws {RequiredError}
|
|
16319
16643
|
* @memberof DealsApi
|
|
16320
16644
|
*/
|
|
16321
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
16645
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
16322
16646
|
/**
|
|
16323
16647
|
*
|
|
16324
16648
|
* @summary Create a deal.
|
|
@@ -16696,6 +17020,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16696
17020
|
* @throws {RequiredError}
|
|
16697
17021
|
*/
|
|
16698
17022
|
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17023
|
+
/**
|
|
17024
|
+
*
|
|
17025
|
+
* @summary Get all Doctors.
|
|
17026
|
+
* @param {string} [hospitalId]
|
|
17027
|
+
* @param {string} [languageCode]
|
|
17028
|
+
* @param {boolean} [returnDefaultValue]
|
|
17029
|
+
* @param {Array<string>} [ids]
|
|
17030
|
+
* @param {string} [id]
|
|
17031
|
+
* @param {string} [fullname]
|
|
17032
|
+
* @param {string} [email]
|
|
17033
|
+
* @param {Gender} [gender]
|
|
17034
|
+
* @param {Date} [dateOfBirth]
|
|
17035
|
+
* @param {Date} [created]
|
|
17036
|
+
* @param {boolean} [showHidden]
|
|
17037
|
+
* @param {number} [page]
|
|
17038
|
+
* @param {number} [limit]
|
|
17039
|
+
* @param {Date} [lastRetrieved]
|
|
17040
|
+
* @param {*} [options] Override http request option.
|
|
17041
|
+
* @throws {RequiredError}
|
|
17042
|
+
*/
|
|
17043
|
+
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16699
17044
|
/**
|
|
16700
17045
|
*
|
|
16701
17046
|
* @param {string} slug
|
|
@@ -17062,6 +17407,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17062
17407
|
* @throws {RequiredError}
|
|
17063
17408
|
*/
|
|
17064
17409
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
17410
|
+
/**
|
|
17411
|
+
*
|
|
17412
|
+
* @summary Get all Doctors.
|
|
17413
|
+
* @param {string} [hospitalId]
|
|
17414
|
+
* @param {string} [languageCode]
|
|
17415
|
+
* @param {boolean} [returnDefaultValue]
|
|
17416
|
+
* @param {Array<string>} [ids]
|
|
17417
|
+
* @param {string} [id]
|
|
17418
|
+
* @param {string} [fullname]
|
|
17419
|
+
* @param {string} [email]
|
|
17420
|
+
* @param {Gender} [gender]
|
|
17421
|
+
* @param {Date} [dateOfBirth]
|
|
17422
|
+
* @param {Date} [created]
|
|
17423
|
+
* @param {boolean} [showHidden]
|
|
17424
|
+
* @param {number} [page]
|
|
17425
|
+
* @param {number} [limit]
|
|
17426
|
+
* @param {Date} [lastRetrieved]
|
|
17427
|
+
* @param {*} [options] Override http request option.
|
|
17428
|
+
* @throws {RequiredError}
|
|
17429
|
+
*/
|
|
17430
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
17065
17431
|
/**
|
|
17066
17432
|
*
|
|
17067
17433
|
* @param {string} slug
|
|
@@ -17428,6 +17794,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17428
17794
|
* @throws {RequiredError}
|
|
17429
17795
|
*/
|
|
17430
17796
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17797
|
+
/**
|
|
17798
|
+
*
|
|
17799
|
+
* @summary Get all Doctors.
|
|
17800
|
+
* @param {string} [hospitalId]
|
|
17801
|
+
* @param {string} [languageCode]
|
|
17802
|
+
* @param {boolean} [returnDefaultValue]
|
|
17803
|
+
* @param {Array<string>} [ids]
|
|
17804
|
+
* @param {string} [id]
|
|
17805
|
+
* @param {string} [fullname]
|
|
17806
|
+
* @param {string} [email]
|
|
17807
|
+
* @param {Gender} [gender]
|
|
17808
|
+
* @param {Date} [dateOfBirth]
|
|
17809
|
+
* @param {Date} [created]
|
|
17810
|
+
* @param {boolean} [showHidden]
|
|
17811
|
+
* @param {number} [page]
|
|
17812
|
+
* @param {number} [limit]
|
|
17813
|
+
* @param {Date} [lastRetrieved]
|
|
17814
|
+
* @param {*} [options] Override http request option.
|
|
17815
|
+
* @throws {RequiredError}
|
|
17816
|
+
*/
|
|
17817
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
|
|
17431
17818
|
/**
|
|
17432
17819
|
*
|
|
17433
17820
|
* @param {string} slug
|
|
@@ -17830,6 +18217,28 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17830
18217
|
* @memberof DoctorsApi
|
|
17831
18218
|
*/
|
|
17832
18219
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
18220
|
+
/**
|
|
18221
|
+
*
|
|
18222
|
+
* @summary Get all Doctors.
|
|
18223
|
+
* @param {string} [hospitalId]
|
|
18224
|
+
* @param {string} [languageCode]
|
|
18225
|
+
* @param {boolean} [returnDefaultValue]
|
|
18226
|
+
* @param {Array<string>} [ids]
|
|
18227
|
+
* @param {string} [id]
|
|
18228
|
+
* @param {string} [fullname]
|
|
18229
|
+
* @param {string} [email]
|
|
18230
|
+
* @param {Gender} [gender]
|
|
18231
|
+
* @param {Date} [dateOfBirth]
|
|
18232
|
+
* @param {Date} [created]
|
|
18233
|
+
* @param {boolean} [showHidden]
|
|
18234
|
+
* @param {number} [page]
|
|
18235
|
+
* @param {number} [limit]
|
|
18236
|
+
* @param {Date} [lastRetrieved]
|
|
18237
|
+
* @param {*} [options] Override http request option.
|
|
18238
|
+
* @throws {RequiredError}
|
|
18239
|
+
* @memberof DoctorsApi
|
|
18240
|
+
*/
|
|
18241
|
+
apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
|
|
17833
18242
|
/**
|
|
17834
18243
|
*
|
|
17835
18244
|
* @param {string} slug
|
|
@@ -18877,7 +19286,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18877
19286
|
* @summary Get all Hospitals.
|
|
18878
19287
|
* @param {string} [hospitalId]
|
|
18879
19288
|
* @param {string} [name]
|
|
18880
|
-
* @param {string} [description]
|
|
18881
19289
|
* @param {string} [countryId]
|
|
18882
19290
|
* @param {Date} [created]
|
|
18883
19291
|
* @param {MarketingType} [marketingType]
|
|
@@ -18895,7 +19303,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18895
19303
|
* @param {*} [options] Override http request option.
|
|
18896
19304
|
* @throws {RequiredError}
|
|
18897
19305
|
*/
|
|
18898
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19306
|
+
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>;
|
|
18899
19307
|
/**
|
|
18900
19308
|
*
|
|
18901
19309
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19183,15 +19591,18 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19183
19591
|
* @param {string} [specialtyId]
|
|
19184
19592
|
* @param {string} [specialtyName]
|
|
19185
19593
|
* @param {string} [specialtyTypeId]
|
|
19594
|
+
* @param {string} [title]
|
|
19186
19595
|
* @param {MarketingType} [marketingType]
|
|
19187
|
-
* @param {
|
|
19596
|
+
* @param {string} [languageCode]
|
|
19597
|
+
* @param {boolean} [showHidden]
|
|
19598
|
+
* @param {boolean} [returnDefaultValue]
|
|
19188
19599
|
* @param {number} [page]
|
|
19189
19600
|
* @param {number} [limit]
|
|
19190
19601
|
* @param {Date} [lastRetrieved]
|
|
19191
19602
|
* @param {*} [options] Override http request option.
|
|
19192
19603
|
* @throws {RequiredError}
|
|
19193
19604
|
*/
|
|
19194
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19605
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19195
19606
|
/**
|
|
19196
19607
|
*
|
|
19197
19608
|
* @summary Create HospitalSpecialty.
|
|
@@ -19215,10 +19626,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19215
19626
|
* @summary Get HospitalSpecialty.
|
|
19216
19627
|
* @param {string} hospitalId
|
|
19217
19628
|
* @param {string} specialtyId
|
|
19629
|
+
* @param {string} [languageCode]
|
|
19630
|
+
* @param {boolean} [returnDefaultValue]
|
|
19218
19631
|
* @param {*} [options] Override http request option.
|
|
19219
19632
|
* @throws {RequiredError}
|
|
19220
19633
|
*/
|
|
19221
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19634
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19222
19635
|
/**
|
|
19223
19636
|
*
|
|
19224
19637
|
* @summary Update HospitalSpecialty.
|
|
@@ -19369,7 +19782,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19369
19782
|
* @summary Get all Hospitals.
|
|
19370
19783
|
* @param {string} [hospitalId]
|
|
19371
19784
|
* @param {string} [name]
|
|
19372
|
-
* @param {string} [description]
|
|
19373
19785
|
* @param {string} [countryId]
|
|
19374
19786
|
* @param {Date} [created]
|
|
19375
19787
|
* @param {MarketingType} [marketingType]
|
|
@@ -19387,7 +19799,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19387
19799
|
* @param {*} [options] Override http request option.
|
|
19388
19800
|
* @throws {RequiredError}
|
|
19389
19801
|
*/
|
|
19390
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19802
|
+
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>;
|
|
19391
19803
|
/**
|
|
19392
19804
|
*
|
|
19393
19805
|
* @param {string} slug
|
|
@@ -19408,7 +19820,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19408
19820
|
* @summary Get all Hospitals.
|
|
19409
19821
|
* @param {string} [hospitalId]
|
|
19410
19822
|
* @param {string} [name]
|
|
19411
|
-
* @param {string} [description]
|
|
19412
19823
|
* @param {string} [countryId]
|
|
19413
19824
|
* @param {Date} [created]
|
|
19414
19825
|
* @param {MarketingType} [marketingType]
|
|
@@ -19426,7 +19837,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19426
19837
|
* @param {*} [options] Override http request option.
|
|
19427
19838
|
* @throws {RequiredError}
|
|
19428
19839
|
*/
|
|
19429
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
19840
|
+
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>>;
|
|
19430
19841
|
/**
|
|
19431
19842
|
*
|
|
19432
19843
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19714,15 +20125,18 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19714
20125
|
* @param {string} [specialtyId]
|
|
19715
20126
|
* @param {string} [specialtyName]
|
|
19716
20127
|
* @param {string} [specialtyTypeId]
|
|
20128
|
+
* @param {string} [title]
|
|
19717
20129
|
* @param {MarketingType} [marketingType]
|
|
19718
|
-
* @param {
|
|
20130
|
+
* @param {string} [languageCode]
|
|
20131
|
+
* @param {boolean} [showHidden]
|
|
20132
|
+
* @param {boolean} [returnDefaultValue]
|
|
19719
20133
|
* @param {number} [page]
|
|
19720
20134
|
* @param {number} [limit]
|
|
19721
20135
|
* @param {Date} [lastRetrieved]
|
|
19722
20136
|
* @param {*} [options] Override http request option.
|
|
19723
20137
|
* @throws {RequiredError}
|
|
19724
20138
|
*/
|
|
19725
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20139
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
19726
20140
|
/**
|
|
19727
20141
|
*
|
|
19728
20142
|
* @summary Create HospitalSpecialty.
|
|
@@ -19746,10 +20160,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19746
20160
|
* @summary Get HospitalSpecialty.
|
|
19747
20161
|
* @param {string} hospitalId
|
|
19748
20162
|
* @param {string} specialtyId
|
|
20163
|
+
* @param {string} [languageCode]
|
|
20164
|
+
* @param {boolean} [returnDefaultValue]
|
|
19749
20165
|
* @param {*} [options] Override http request option.
|
|
19750
20166
|
* @throws {RequiredError}
|
|
19751
20167
|
*/
|
|
19752
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
20168
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19753
20169
|
/**
|
|
19754
20170
|
*
|
|
19755
20171
|
* @summary Update HospitalSpecialty.
|
|
@@ -19900,7 +20316,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19900
20316
|
* @summary Get all Hospitals.
|
|
19901
20317
|
* @param {string} [hospitalId]
|
|
19902
20318
|
* @param {string} [name]
|
|
19903
|
-
* @param {string} [description]
|
|
19904
20319
|
* @param {string} [countryId]
|
|
19905
20320
|
* @param {Date} [created]
|
|
19906
20321
|
* @param {MarketingType} [marketingType]
|
|
@@ -19918,7 +20333,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19918
20333
|
* @param {*} [options] Override http request option.
|
|
19919
20334
|
* @throws {RequiredError}
|
|
19920
20335
|
*/
|
|
19921
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20336
|
+
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>>;
|
|
19922
20337
|
/**
|
|
19923
20338
|
*
|
|
19924
20339
|
* @param {string} slug
|
|
@@ -19939,7 +20354,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19939
20354
|
* @summary Get all Hospitals.
|
|
19940
20355
|
* @param {string} [hospitalId]
|
|
19941
20356
|
* @param {string} [name]
|
|
19942
|
-
* @param {string} [description]
|
|
19943
20357
|
* @param {string} [countryId]
|
|
19944
20358
|
* @param {Date} [created]
|
|
19945
20359
|
* @param {MarketingType} [marketingType]
|
|
@@ -19957,7 +20371,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19957
20371
|
* @param {*} [options] Override http request option.
|
|
19958
20372
|
* @throws {RequiredError}
|
|
19959
20373
|
*/
|
|
19960
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20374
|
+
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>;
|
|
19961
20375
|
/**
|
|
19962
20376
|
*
|
|
19963
20377
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20245,15 +20659,18 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20245
20659
|
* @param {string} [specialtyId]
|
|
20246
20660
|
* @param {string} [specialtyName]
|
|
20247
20661
|
* @param {string} [specialtyTypeId]
|
|
20662
|
+
* @param {string} [title]
|
|
20248
20663
|
* @param {MarketingType} [marketingType]
|
|
20249
|
-
* @param {
|
|
20664
|
+
* @param {string} [languageCode]
|
|
20665
|
+
* @param {boolean} [showHidden]
|
|
20666
|
+
* @param {boolean} [returnDefaultValue]
|
|
20250
20667
|
* @param {number} [page]
|
|
20251
20668
|
* @param {number} [limit]
|
|
20252
20669
|
* @param {Date} [lastRetrieved]
|
|
20253
20670
|
* @param {*} [options] Override http request option.
|
|
20254
20671
|
* @throws {RequiredError}
|
|
20255
20672
|
*/
|
|
20256
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20673
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
20257
20674
|
/**
|
|
20258
20675
|
*
|
|
20259
20676
|
* @summary Create HospitalSpecialty.
|
|
@@ -20277,10 +20694,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20277
20694
|
* @summary Get HospitalSpecialty.
|
|
20278
20695
|
* @param {string} hospitalId
|
|
20279
20696
|
* @param {string} specialtyId
|
|
20697
|
+
* @param {string} [languageCode]
|
|
20698
|
+
* @param {boolean} [returnDefaultValue]
|
|
20280
20699
|
* @param {*} [options] Override http request option.
|
|
20281
20700
|
* @throws {RequiredError}
|
|
20282
20701
|
*/
|
|
20283
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20702
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20284
20703
|
/**
|
|
20285
20704
|
*
|
|
20286
20705
|
* @summary Update HospitalSpecialty.
|
|
@@ -20431,7 +20850,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20431
20850
|
* @summary Get all Hospitals.
|
|
20432
20851
|
* @param {string} [hospitalId]
|
|
20433
20852
|
* @param {string} [name]
|
|
20434
|
-
* @param {string} [description]
|
|
20435
20853
|
* @param {string} [countryId]
|
|
20436
20854
|
* @param {Date} [created]
|
|
20437
20855
|
* @param {MarketingType} [marketingType]
|
|
@@ -20449,7 +20867,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20449
20867
|
* @param {*} [options] Override http request option.
|
|
20450
20868
|
* @throws {RequiredError}
|
|
20451
20869
|
*/
|
|
20452
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20870
|
+
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>;
|
|
20453
20871
|
/**
|
|
20454
20872
|
*
|
|
20455
20873
|
* @param {string} slug
|
|
@@ -20472,7 +20890,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20472
20890
|
* @summary Get all Hospitals.
|
|
20473
20891
|
* @param {string} [hospitalId]
|
|
20474
20892
|
* @param {string} [name]
|
|
20475
|
-
* @param {string} [description]
|
|
20476
20893
|
* @param {string} [countryId]
|
|
20477
20894
|
* @param {Date} [created]
|
|
20478
20895
|
* @param {MarketingType} [marketingType]
|
|
@@ -20491,7 +20908,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20491
20908
|
* @throws {RequiredError}
|
|
20492
20909
|
* @memberof HospitalsApi
|
|
20493
20910
|
*/
|
|
20494
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string,
|
|
20911
|
+
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>>;
|
|
20495
20912
|
/**
|
|
20496
20913
|
*
|
|
20497
20914
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20806,8 +21223,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20806
21223
|
* @param {string} [specialtyId]
|
|
20807
21224
|
* @param {string} [specialtyName]
|
|
20808
21225
|
* @param {string} [specialtyTypeId]
|
|
21226
|
+
* @param {string} [title]
|
|
20809
21227
|
* @param {MarketingType} [marketingType]
|
|
20810
|
-
* @param {
|
|
21228
|
+
* @param {string} [languageCode]
|
|
21229
|
+
* @param {boolean} [showHidden]
|
|
21230
|
+
* @param {boolean} [returnDefaultValue]
|
|
20811
21231
|
* @param {number} [page]
|
|
20812
21232
|
* @param {number} [limit]
|
|
20813
21233
|
* @param {Date} [lastRetrieved]
|
|
@@ -20815,7 +21235,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20815
21235
|
* @throws {RequiredError}
|
|
20816
21236
|
* @memberof HospitalsApi
|
|
20817
21237
|
*/
|
|
20818
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType,
|
|
21238
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
20819
21239
|
/**
|
|
20820
21240
|
*
|
|
20821
21241
|
* @summary Create HospitalSpecialty.
|
|
@@ -20841,11 +21261,13 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20841
21261
|
* @summary Get HospitalSpecialty.
|
|
20842
21262
|
* @param {string} hospitalId
|
|
20843
21263
|
* @param {string} specialtyId
|
|
21264
|
+
* @param {string} [languageCode]
|
|
21265
|
+
* @param {boolean} [returnDefaultValue]
|
|
20844
21266
|
* @param {*} [options] Override http request option.
|
|
20845
21267
|
* @throws {RequiredError}
|
|
20846
21268
|
* @memberof HospitalsApi
|
|
20847
21269
|
*/
|
|
20848
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21270
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
20849
21271
|
/**
|
|
20850
21272
|
*
|
|
20851
21273
|
* @summary Update HospitalSpecialty.
|
|
@@ -21008,7 +21430,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21008
21430
|
* @summary Get all Hospitals.
|
|
21009
21431
|
* @param {string} [hospitalId]
|
|
21010
21432
|
* @param {string} [name]
|
|
21011
|
-
* @param {string} [description]
|
|
21012
21433
|
* @param {string} [countryId]
|
|
21013
21434
|
* @param {Date} [created]
|
|
21014
21435
|
* @param {MarketingType} [marketingType]
|
|
@@ -21027,7 +21448,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21027
21448
|
* @throws {RequiredError}
|
|
21028
21449
|
* @memberof HospitalsApi
|
|
21029
21450
|
*/
|
|
21030
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string,
|
|
21451
|
+
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>>;
|
|
21031
21452
|
/**
|
|
21032
21453
|
*
|
|
21033
21454
|
* @param {string} slug
|
|
@@ -23435,6 +23856,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
23435
23856
|
* @param {string} [serviceName]
|
|
23436
23857
|
* @param {string} [patientId]
|
|
23437
23858
|
* @param {string} [patientName]
|
|
23859
|
+
* @param {Gender} [gender]
|
|
23438
23860
|
* @param {boolean} [recommended]
|
|
23439
23861
|
* @param {number} [rate]
|
|
23440
23862
|
* @param {ReviewType} [reviewType]
|
|
@@ -23444,7 +23866,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
23444
23866
|
* @param {*} [options] Override http request option.
|
|
23445
23867
|
* @throws {RequiredError}
|
|
23446
23868
|
*/
|
|
23447
|
-
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23869
|
+
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23448
23870
|
/**
|
|
23449
23871
|
*
|
|
23450
23872
|
* @summary Create a ServiceReview.
|
|
@@ -23540,6 +23962,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
23540
23962
|
* @param {string} [serviceName]
|
|
23541
23963
|
* @param {string} [patientId]
|
|
23542
23964
|
* @param {string} [patientName]
|
|
23965
|
+
* @param {Gender} [gender]
|
|
23543
23966
|
* @param {boolean} [recommended]
|
|
23544
23967
|
* @param {number} [rate]
|
|
23545
23968
|
* @param {ReviewType} [reviewType]
|
|
@@ -23549,7 +23972,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
23549
23972
|
* @param {*} [options] Override http request option.
|
|
23550
23973
|
* @throws {RequiredError}
|
|
23551
23974
|
*/
|
|
23552
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
23975
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
23553
23976
|
/**
|
|
23554
23977
|
*
|
|
23555
23978
|
* @summary Create a ServiceReview.
|
|
@@ -23645,6 +24068,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
23645
24068
|
* @param {string} [serviceName]
|
|
23646
24069
|
* @param {string} [patientId]
|
|
23647
24070
|
* @param {string} [patientName]
|
|
24071
|
+
* @param {Gender} [gender]
|
|
23648
24072
|
* @param {boolean} [recommended]
|
|
23649
24073
|
* @param {number} [rate]
|
|
23650
24074
|
* @param {ReviewType} [reviewType]
|
|
@@ -23654,7 +24078,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
23654
24078
|
* @param {*} [options] Override http request option.
|
|
23655
24079
|
* @throws {RequiredError}
|
|
23656
24080
|
*/
|
|
23657
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
24081
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
23658
24082
|
/**
|
|
23659
24083
|
*
|
|
23660
24084
|
* @summary Create a ServiceReview.
|
|
@@ -23752,6 +24176,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
23752
24176
|
* @param {string} [serviceName]
|
|
23753
24177
|
* @param {string} [patientId]
|
|
23754
24178
|
* @param {string} [patientName]
|
|
24179
|
+
* @param {Gender} [gender]
|
|
23755
24180
|
* @param {boolean} [recommended]
|
|
23756
24181
|
* @param {number} [rate]
|
|
23757
24182
|
* @param {ReviewType} [reviewType]
|
|
@@ -23762,7 +24187,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
23762
24187
|
* @throws {RequiredError}
|
|
23763
24188
|
* @memberof ServiceReviewsApi
|
|
23764
24189
|
*/
|
|
23765
|
-
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
24190
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
23766
24191
|
/**
|
|
23767
24192
|
*
|
|
23768
24193
|
* @summary Create a ServiceReview.
|
|
@@ -24070,14 +24495,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
24070
24495
|
* @summary Get all ServiceCategories.
|
|
24071
24496
|
* @param {string} [id]
|
|
24072
24497
|
* @param {string} [name]
|
|
24073
|
-
* @param {string} [description]
|
|
24074
24498
|
* @param {number} [page]
|
|
24075
24499
|
* @param {number} [limit]
|
|
24076
24500
|
* @param {Date} [lastRetrieved]
|
|
24077
24501
|
* @param {*} [options] Override http request option.
|
|
24078
24502
|
* @throws {RequiredError}
|
|
24079
24503
|
*/
|
|
24080
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined,
|
|
24504
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24081
24505
|
/**
|
|
24082
24506
|
*
|
|
24083
24507
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24121,14 +24545,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
24121
24545
|
* @summary Get all ServiceCategories.
|
|
24122
24546
|
* @param {string} [id]
|
|
24123
24547
|
* @param {string} [name]
|
|
24124
|
-
* @param {string} [description]
|
|
24125
24548
|
* @param {number} [page]
|
|
24126
24549
|
* @param {number} [limit]
|
|
24127
24550
|
* @param {Date} [lastRetrieved]
|
|
24128
24551
|
* @param {*} [options] Override http request option.
|
|
24129
24552
|
* @throws {RequiredError}
|
|
24130
24553
|
*/
|
|
24131
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24554
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
24132
24555
|
/**
|
|
24133
24556
|
*
|
|
24134
24557
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24172,14 +24595,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
24172
24595
|
* @summary Get all ServiceCategories.
|
|
24173
24596
|
* @param {string} [id]
|
|
24174
24597
|
* @param {string} [name]
|
|
24175
|
-
* @param {string} [description]
|
|
24176
24598
|
* @param {number} [page]
|
|
24177
24599
|
* @param {number} [limit]
|
|
24178
24600
|
* @param {Date} [lastRetrieved]
|
|
24179
24601
|
* @param {*} [options] Override http request option.
|
|
24180
24602
|
* @throws {RequiredError}
|
|
24181
24603
|
*/
|
|
24182
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24604
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
24183
24605
|
/**
|
|
24184
24606
|
*
|
|
24185
24607
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24225,7 +24647,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
24225
24647
|
* @summary Get all ServiceCategories.
|
|
24226
24648
|
* @param {string} [id]
|
|
24227
24649
|
* @param {string} [name]
|
|
24228
|
-
* @param {string} [description]
|
|
24229
24650
|
* @param {number} [page]
|
|
24230
24651
|
* @param {number} [limit]
|
|
24231
24652
|
* @param {Date} [lastRetrieved]
|
|
@@ -24233,7 +24654,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
24233
24654
|
* @throws {RequiredError}
|
|
24234
24655
|
* @memberof ServicesCategoriesApi
|
|
24235
24656
|
*/
|
|
24236
|
-
apiV1ServicescategoriesGet(id?: string, name?: string,
|
|
24657
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
24237
24658
|
/**
|
|
24238
24659
|
*
|
|
24239
24660
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|