ch-admin-api-client-typescript 3.4.0 → 3.4.1
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 +551 -137
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +367 -221
- package/package.json +1 -1
- package/src/api.ts +670 -191
package/lib/api.d.ts
CHANGED
|
@@ -3605,12 +3605,90 @@ export interface CreateDealServiceCommand {
|
|
|
3605
3605
|
* @interface CreateDoctorAffiliationCommand
|
|
3606
3606
|
*/
|
|
3607
3607
|
export interface CreateDoctorAffiliationCommand {
|
|
3608
|
+
/**
|
|
3609
|
+
*
|
|
3610
|
+
* @type {string}
|
|
3611
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3612
|
+
*/
|
|
3613
|
+
'doctorId'?: string;
|
|
3608
3614
|
/**
|
|
3609
3615
|
*
|
|
3610
3616
|
* @type {string}
|
|
3611
3617
|
* @memberof CreateDoctorAffiliationCommand
|
|
3612
3618
|
*/
|
|
3613
3619
|
'hospitalId'?: string;
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @type {string}
|
|
3623
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3624
|
+
*/
|
|
3625
|
+
'name'?: string | null;
|
|
3626
|
+
/**
|
|
3627
|
+
*
|
|
3628
|
+
* @type {string}
|
|
3629
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3630
|
+
*/
|
|
3631
|
+
'description'?: string | null;
|
|
3632
|
+
/**
|
|
3633
|
+
*
|
|
3634
|
+
* @type {string}
|
|
3635
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3636
|
+
*/
|
|
3637
|
+
'content'?: string | null;
|
|
3638
|
+
/**
|
|
3639
|
+
*
|
|
3640
|
+
* @type {string}
|
|
3641
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3642
|
+
*/
|
|
3643
|
+
'customStyle'?: string | null;
|
|
3644
|
+
/**
|
|
3645
|
+
*
|
|
3646
|
+
* @type {number}
|
|
3647
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3648
|
+
*/
|
|
3649
|
+
'order'?: number;
|
|
3650
|
+
/**
|
|
3651
|
+
*
|
|
3652
|
+
* @type {string}
|
|
3653
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3654
|
+
*/
|
|
3655
|
+
'photo'?: string | null;
|
|
3656
|
+
/**
|
|
3657
|
+
*
|
|
3658
|
+
* @type {string}
|
|
3659
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3660
|
+
*/
|
|
3661
|
+
'photoThumbnail'?: string | null;
|
|
3662
|
+
/**
|
|
3663
|
+
*
|
|
3664
|
+
* @type {string}
|
|
3665
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3666
|
+
*/
|
|
3667
|
+
'background'?: string | null;
|
|
3668
|
+
/**
|
|
3669
|
+
*
|
|
3670
|
+
* @type {string}
|
|
3671
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3672
|
+
*/
|
|
3673
|
+
'backgroundThumbnail'?: string | null;
|
|
3674
|
+
/**
|
|
3675
|
+
*
|
|
3676
|
+
* @type {boolean}
|
|
3677
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3678
|
+
*/
|
|
3679
|
+
'consultationEnabled'?: boolean | null;
|
|
3680
|
+
/**
|
|
3681
|
+
*
|
|
3682
|
+
* @type {number}
|
|
3683
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3684
|
+
*/
|
|
3685
|
+
'consultationFee'?: number | null;
|
|
3686
|
+
/**
|
|
3687
|
+
*
|
|
3688
|
+
* @type {Array<MediaModel>}
|
|
3689
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3690
|
+
*/
|
|
3691
|
+
'medias'?: Array<MediaModel> | null;
|
|
3614
3692
|
}
|
|
3615
3693
|
/**
|
|
3616
3694
|
*
|
|
@@ -5462,6 +5540,12 @@ export interface DeleteFaqTagCommand {
|
|
|
5462
5540
|
* @interface DoctorAffiliationItemModel
|
|
5463
5541
|
*/
|
|
5464
5542
|
export interface DoctorAffiliationItemModel {
|
|
5543
|
+
/**
|
|
5544
|
+
*
|
|
5545
|
+
* @type {string}
|
|
5546
|
+
* @memberof DoctorAffiliationItemModel
|
|
5547
|
+
*/
|
|
5548
|
+
'id'?: string;
|
|
5465
5549
|
/**
|
|
5466
5550
|
*
|
|
5467
5551
|
* @type {string}
|
|
@@ -5473,13 +5557,61 @@ export interface DoctorAffiliationItemModel {
|
|
|
5473
5557
|
* @type {string}
|
|
5474
5558
|
* @memberof DoctorAffiliationItemModel
|
|
5475
5559
|
*/
|
|
5476
|
-
'
|
|
5560
|
+
'doctorId'?: string;
|
|
5477
5561
|
/**
|
|
5478
5562
|
*
|
|
5479
5563
|
* @type {string}
|
|
5480
5564
|
* @memberof DoctorAffiliationItemModel
|
|
5481
5565
|
*/
|
|
5482
|
-
'
|
|
5566
|
+
'languageCode'?: string | null;
|
|
5567
|
+
/**
|
|
5568
|
+
*
|
|
5569
|
+
* @type {string}
|
|
5570
|
+
* @memberof DoctorAffiliationItemModel
|
|
5571
|
+
*/
|
|
5572
|
+
'name'?: string | null;
|
|
5573
|
+
/**
|
|
5574
|
+
*
|
|
5575
|
+
* @type {string}
|
|
5576
|
+
* @memberof DoctorAffiliationItemModel
|
|
5577
|
+
*/
|
|
5578
|
+
'slug'?: string | null;
|
|
5579
|
+
/**
|
|
5580
|
+
*
|
|
5581
|
+
* @type {boolean}
|
|
5582
|
+
* @memberof DoctorAffiliationItemModel
|
|
5583
|
+
*/
|
|
5584
|
+
'confirmed'?: boolean;
|
|
5585
|
+
/**
|
|
5586
|
+
*
|
|
5587
|
+
* @type {string}
|
|
5588
|
+
* @memberof DoctorAffiliationItemModel
|
|
5589
|
+
*/
|
|
5590
|
+
'photo'?: string | null;
|
|
5591
|
+
/**
|
|
5592
|
+
*
|
|
5593
|
+
* @type {string}
|
|
5594
|
+
* @memberof DoctorAffiliationItemModel
|
|
5595
|
+
*/
|
|
5596
|
+
'photoThumbnail'?: string | null;
|
|
5597
|
+
/**
|
|
5598
|
+
*
|
|
5599
|
+
* @type {boolean}
|
|
5600
|
+
* @memberof DoctorAffiliationItemModel
|
|
5601
|
+
*/
|
|
5602
|
+
'consultationEnabled'?: boolean | null;
|
|
5603
|
+
/**
|
|
5604
|
+
*
|
|
5605
|
+
* @type {number}
|
|
5606
|
+
* @memberof DoctorAffiliationItemModel
|
|
5607
|
+
*/
|
|
5608
|
+
'consultationFee'?: number | null;
|
|
5609
|
+
/**
|
|
5610
|
+
*
|
|
5611
|
+
* @type {number}
|
|
5612
|
+
* @memberof DoctorAffiliationItemModel
|
|
5613
|
+
*/
|
|
5614
|
+
'order'?: number;
|
|
5483
5615
|
}
|
|
5484
5616
|
/**
|
|
5485
5617
|
*
|
|
@@ -5487,12 +5619,96 @@ export interface DoctorAffiliationItemModel {
|
|
|
5487
5619
|
* @interface DoctorAffiliationModel
|
|
5488
5620
|
*/
|
|
5489
5621
|
export interface DoctorAffiliationModel {
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {string}
|
|
5625
|
+
* @memberof DoctorAffiliationModel
|
|
5626
|
+
*/
|
|
5627
|
+
'id'?: string;
|
|
5490
5628
|
/**
|
|
5491
5629
|
*
|
|
5492
5630
|
* @type {string}
|
|
5493
5631
|
* @memberof DoctorAffiliationModel
|
|
5494
5632
|
*/
|
|
5495
5633
|
'hospitalId'?: string;
|
|
5634
|
+
/**
|
|
5635
|
+
*
|
|
5636
|
+
* @type {string}
|
|
5637
|
+
* @memberof DoctorAffiliationModel
|
|
5638
|
+
*/
|
|
5639
|
+
'doctorId'?: string;
|
|
5640
|
+
/**
|
|
5641
|
+
*
|
|
5642
|
+
* @type {string}
|
|
5643
|
+
* @memberof DoctorAffiliationModel
|
|
5644
|
+
*/
|
|
5645
|
+
'languageCode'?: string | null;
|
|
5646
|
+
/**
|
|
5647
|
+
*
|
|
5648
|
+
* @type {string}
|
|
5649
|
+
* @memberof DoctorAffiliationModel
|
|
5650
|
+
*/
|
|
5651
|
+
'name'?: string | null;
|
|
5652
|
+
/**
|
|
5653
|
+
*
|
|
5654
|
+
* @type {string}
|
|
5655
|
+
* @memberof DoctorAffiliationModel
|
|
5656
|
+
*/
|
|
5657
|
+
'slug'?: string | null;
|
|
5658
|
+
/**
|
|
5659
|
+
*
|
|
5660
|
+
* @type {boolean}
|
|
5661
|
+
* @memberof DoctorAffiliationModel
|
|
5662
|
+
*/
|
|
5663
|
+
'confirmed'?: boolean;
|
|
5664
|
+
/**
|
|
5665
|
+
*
|
|
5666
|
+
* @type {string}
|
|
5667
|
+
* @memberof DoctorAffiliationModel
|
|
5668
|
+
*/
|
|
5669
|
+
'photo'?: string | null;
|
|
5670
|
+
/**
|
|
5671
|
+
*
|
|
5672
|
+
* @type {string}
|
|
5673
|
+
* @memberof DoctorAffiliationModel
|
|
5674
|
+
*/
|
|
5675
|
+
'photoThumbnail'?: string | null;
|
|
5676
|
+
/**
|
|
5677
|
+
*
|
|
5678
|
+
* @type {boolean}
|
|
5679
|
+
* @memberof DoctorAffiliationModel
|
|
5680
|
+
*/
|
|
5681
|
+
'consultationEnabled'?: boolean | null;
|
|
5682
|
+
/**
|
|
5683
|
+
*
|
|
5684
|
+
* @type {number}
|
|
5685
|
+
* @memberof DoctorAffiliationModel
|
|
5686
|
+
*/
|
|
5687
|
+
'consultationFee'?: number | null;
|
|
5688
|
+
/**
|
|
5689
|
+
*
|
|
5690
|
+
* @type {number}
|
|
5691
|
+
* @memberof DoctorAffiliationModel
|
|
5692
|
+
*/
|
|
5693
|
+
'order'?: number;
|
|
5694
|
+
/**
|
|
5695
|
+
*
|
|
5696
|
+
* @type {string}
|
|
5697
|
+
* @memberof DoctorAffiliationModel
|
|
5698
|
+
*/
|
|
5699
|
+
'description'?: string | null;
|
|
5700
|
+
/**
|
|
5701
|
+
*
|
|
5702
|
+
* @type {string}
|
|
5703
|
+
* @memberof DoctorAffiliationModel
|
|
5704
|
+
*/
|
|
5705
|
+
'overview'?: string | null;
|
|
5706
|
+
/**
|
|
5707
|
+
*
|
|
5708
|
+
* @type {string}
|
|
5709
|
+
* @memberof DoctorAffiliationModel
|
|
5710
|
+
*/
|
|
5711
|
+
'content'?: string | null;
|
|
5496
5712
|
/**
|
|
5497
5713
|
*
|
|
5498
5714
|
* @type {string}
|
|
@@ -5505,6 +5721,36 @@ export interface DoctorAffiliationModel {
|
|
|
5505
5721
|
* @memberof DoctorAffiliationModel
|
|
5506
5722
|
*/
|
|
5507
5723
|
'hospitalSlug'?: string | null;
|
|
5724
|
+
/**
|
|
5725
|
+
*
|
|
5726
|
+
* @type {string}
|
|
5727
|
+
* @memberof DoctorAffiliationModel
|
|
5728
|
+
*/
|
|
5729
|
+
'background'?: string | null;
|
|
5730
|
+
/**
|
|
5731
|
+
*
|
|
5732
|
+
* @type {string}
|
|
5733
|
+
* @memberof DoctorAffiliationModel
|
|
5734
|
+
*/
|
|
5735
|
+
'backgroundThumbnail'?: string | null;
|
|
5736
|
+
/**
|
|
5737
|
+
*
|
|
5738
|
+
* @type {string}
|
|
5739
|
+
* @memberof DoctorAffiliationModel
|
|
5740
|
+
*/
|
|
5741
|
+
'customStyle'?: string | null;
|
|
5742
|
+
/**
|
|
5743
|
+
*
|
|
5744
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5745
|
+
* @memberof DoctorAffiliationModel
|
|
5746
|
+
*/
|
|
5747
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5748
|
+
/**
|
|
5749
|
+
*
|
|
5750
|
+
* @type {Array<MediaModel>}
|
|
5751
|
+
* @memberof DoctorAffiliationModel
|
|
5752
|
+
*/
|
|
5753
|
+
'medias'?: Array<MediaModel> | null;
|
|
5508
5754
|
}
|
|
5509
5755
|
/**
|
|
5510
5756
|
*
|
|
@@ -11636,18 +11882,115 @@ export interface UpdateDealsSearchIndexCommand {
|
|
|
11636
11882
|
/**
|
|
11637
11883
|
*
|
|
11638
11884
|
* @export
|
|
11639
|
-
* @interface
|
|
11885
|
+
* @interface UpdateDoctorAffiliationCommand
|
|
11640
11886
|
*/
|
|
11641
|
-
export interface
|
|
11887
|
+
export interface UpdateDoctorAffiliationCommand {
|
|
11642
11888
|
/**
|
|
11643
11889
|
*
|
|
11644
11890
|
* @type {string}
|
|
11645
|
-
* @memberof
|
|
11891
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11646
11892
|
*/
|
|
11647
|
-
'
|
|
11893
|
+
'languageCode'?: string | null;
|
|
11648
11894
|
/**
|
|
11649
11895
|
*
|
|
11650
|
-
* @type {
|
|
11896
|
+
* @type {string}
|
|
11897
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11898
|
+
*/
|
|
11899
|
+
'name'?: string | null;
|
|
11900
|
+
/**
|
|
11901
|
+
*
|
|
11902
|
+
* @type {string}
|
|
11903
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11904
|
+
*/
|
|
11905
|
+
'slug'?: string | null;
|
|
11906
|
+
/**
|
|
11907
|
+
*
|
|
11908
|
+
* @type {string}
|
|
11909
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11910
|
+
*/
|
|
11911
|
+
'description'?: string | null;
|
|
11912
|
+
/**
|
|
11913
|
+
*
|
|
11914
|
+
* @type {string}
|
|
11915
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11916
|
+
*/
|
|
11917
|
+
'content'?: string | null;
|
|
11918
|
+
/**
|
|
11919
|
+
*
|
|
11920
|
+
* @type {string}
|
|
11921
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11922
|
+
*/
|
|
11923
|
+
'customStyle'?: string | null;
|
|
11924
|
+
/**
|
|
11925
|
+
*
|
|
11926
|
+
* @type {number}
|
|
11927
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11928
|
+
*/
|
|
11929
|
+
'order'?: number;
|
|
11930
|
+
/**
|
|
11931
|
+
*
|
|
11932
|
+
* @type {string}
|
|
11933
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11934
|
+
*/
|
|
11935
|
+
'photo'?: string | null;
|
|
11936
|
+
/**
|
|
11937
|
+
*
|
|
11938
|
+
* @type {string}
|
|
11939
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11940
|
+
*/
|
|
11941
|
+
'photoThumbnail'?: string | null;
|
|
11942
|
+
/**
|
|
11943
|
+
*
|
|
11944
|
+
* @type {string}
|
|
11945
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11946
|
+
*/
|
|
11947
|
+
'background'?: string | null;
|
|
11948
|
+
/**
|
|
11949
|
+
*
|
|
11950
|
+
* @type {string}
|
|
11951
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11952
|
+
*/
|
|
11953
|
+
'backgroundThumbnail'?: string | null;
|
|
11954
|
+
/**
|
|
11955
|
+
*
|
|
11956
|
+
* @type {boolean}
|
|
11957
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11958
|
+
*/
|
|
11959
|
+
'consultationEnabled'?: boolean | null;
|
|
11960
|
+
/**
|
|
11961
|
+
*
|
|
11962
|
+
* @type {number}
|
|
11963
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11964
|
+
*/
|
|
11965
|
+
'consultationFee'?: number | null;
|
|
11966
|
+
/**
|
|
11967
|
+
*
|
|
11968
|
+
* @type {boolean}
|
|
11969
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11970
|
+
*/
|
|
11971
|
+
'confirmed'?: boolean;
|
|
11972
|
+
/**
|
|
11973
|
+
*
|
|
11974
|
+
* @type {Array<MediaModel>}
|
|
11975
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
11976
|
+
*/
|
|
11977
|
+
'medias'?: Array<MediaModel> | null;
|
|
11978
|
+
}
|
|
11979
|
+
/**
|
|
11980
|
+
*
|
|
11981
|
+
* @export
|
|
11982
|
+
* @interface UpdateDoctorCertificateCommand
|
|
11983
|
+
*/
|
|
11984
|
+
export interface UpdateDoctorCertificateCommand {
|
|
11985
|
+
/**
|
|
11986
|
+
*
|
|
11987
|
+
* @type {string}
|
|
11988
|
+
* @memberof UpdateDoctorCertificateCommand
|
|
11989
|
+
*/
|
|
11990
|
+
'certificate'?: string | null;
|
|
11991
|
+
/**
|
|
11992
|
+
*
|
|
11993
|
+
* @type {Date}
|
|
11651
11994
|
* @memberof UpdateDoctorCertificateCommand
|
|
11652
11995
|
*/
|
|
11653
11996
|
'activeFrom'?: Date | null;
|
|
@@ -18277,48 +18620,237 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18277
18620
|
apiV1DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
18278
18621
|
}
|
|
18279
18622
|
/**
|
|
18280
|
-
*
|
|
18623
|
+
* DoctorAffiliationsApi - axios parameter creator
|
|
18281
18624
|
* @export
|
|
18282
18625
|
*/
|
|
18283
|
-
export declare const
|
|
18626
|
+
export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
18284
18627
|
/**
|
|
18285
18628
|
*
|
|
18286
18629
|
* @summary Get all doctor affiliations.
|
|
18287
|
-
* @param {string}
|
|
18630
|
+
* @param {string} [hospitalId]
|
|
18288
18631
|
* @param {string} [hospitalName]
|
|
18632
|
+
* @param {string} [doctorId]
|
|
18633
|
+
* @param {string} [name]
|
|
18634
|
+
* @param {string} [slug]
|
|
18635
|
+
* @param {string} [languageCode]
|
|
18636
|
+
* @param {boolean} [showHidden]
|
|
18289
18637
|
* @param {number} [page]
|
|
18290
18638
|
* @param {number} [limit]
|
|
18291
18639
|
* @param {Date} [lastRetrieved]
|
|
18292
18640
|
* @param {*} [options] Override http request option.
|
|
18293
18641
|
* @throws {RequiredError}
|
|
18294
18642
|
*/
|
|
18295
|
-
|
|
18643
|
+
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18296
18644
|
/**
|
|
18297
18645
|
*
|
|
18298
18646
|
* @summary Delete doctor affiliation.
|
|
18299
|
-
* @param {string}
|
|
18300
|
-
* @param {string} hospitalId
|
|
18647
|
+
* @param {string} id
|
|
18301
18648
|
* @param {*} [options] Override http request option.
|
|
18302
18649
|
* @throws {RequiredError}
|
|
18303
18650
|
*/
|
|
18304
|
-
|
|
18651
|
+
apiV1DoctoraffiliationsIdDelete: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18305
18652
|
/**
|
|
18306
18653
|
*
|
|
18307
18654
|
* @summary Get doctor affiliation.
|
|
18308
|
-
* @param {string}
|
|
18309
|
-
* @param {string} hospitalId
|
|
18655
|
+
* @param {string} id
|
|
18310
18656
|
* @param {*} [options] Override http request option.
|
|
18311
18657
|
* @throws {RequiredError}
|
|
18312
18658
|
*/
|
|
18313
|
-
|
|
18659
|
+
apiV1DoctoraffiliationsIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18660
|
+
/**
|
|
18661
|
+
*
|
|
18662
|
+
* @summary Update Hospital.
|
|
18663
|
+
* @param {string} id
|
|
18664
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
18665
|
+
* @param {*} [options] Override http request option.
|
|
18666
|
+
* @throws {RequiredError}
|
|
18667
|
+
*/
|
|
18668
|
+
apiV1DoctoraffiliationsIdPut: (id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18669
|
+
/**
|
|
18670
|
+
*
|
|
18671
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
18672
|
+
* @param {*} [options] Override http request option.
|
|
18673
|
+
* @throws {RequiredError}
|
|
18674
|
+
*/
|
|
18675
|
+
apiV1DoctoraffiliationsPost: (createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18676
|
+
};
|
|
18677
|
+
/**
|
|
18678
|
+
* DoctorAffiliationsApi - functional programming interface
|
|
18679
|
+
* @export
|
|
18680
|
+
*/
|
|
18681
|
+
export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
|
|
18682
|
+
/**
|
|
18683
|
+
*
|
|
18684
|
+
* @summary Get all doctor affiliations.
|
|
18685
|
+
* @param {string} [hospitalId]
|
|
18686
|
+
* @param {string} [hospitalName]
|
|
18687
|
+
* @param {string} [doctorId]
|
|
18688
|
+
* @param {string} [name]
|
|
18689
|
+
* @param {string} [slug]
|
|
18690
|
+
* @param {string} [languageCode]
|
|
18691
|
+
* @param {boolean} [showHidden]
|
|
18692
|
+
* @param {number} [page]
|
|
18693
|
+
* @param {number} [limit]
|
|
18694
|
+
* @param {Date} [lastRetrieved]
|
|
18695
|
+
* @param {*} [options] Override http request option.
|
|
18696
|
+
* @throws {RequiredError}
|
|
18697
|
+
*/
|
|
18698
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
18699
|
+
/**
|
|
18700
|
+
*
|
|
18701
|
+
* @summary Delete doctor affiliation.
|
|
18702
|
+
* @param {string} id
|
|
18703
|
+
* @param {*} [options] Override http request option.
|
|
18704
|
+
* @throws {RequiredError}
|
|
18705
|
+
*/
|
|
18706
|
+
apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18707
|
+
/**
|
|
18708
|
+
*
|
|
18709
|
+
* @summary Get doctor affiliation.
|
|
18710
|
+
* @param {string} id
|
|
18711
|
+
* @param {*} [options] Override http request option.
|
|
18712
|
+
* @throws {RequiredError}
|
|
18713
|
+
*/
|
|
18714
|
+
apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
18715
|
+
/**
|
|
18716
|
+
*
|
|
18717
|
+
* @summary Update Hospital.
|
|
18718
|
+
* @param {string} id
|
|
18719
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
18720
|
+
* @param {*} [options] Override http request option.
|
|
18721
|
+
* @throws {RequiredError}
|
|
18722
|
+
*/
|
|
18723
|
+
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
18314
18724
|
/**
|
|
18315
18725
|
*
|
|
18316
|
-
* @param {string} doctorId
|
|
18317
18726
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
18318
18727
|
* @param {*} [options] Override http request option.
|
|
18319
18728
|
* @throws {RequiredError}
|
|
18320
18729
|
*/
|
|
18321
|
-
|
|
18730
|
+
apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
18731
|
+
};
|
|
18732
|
+
/**
|
|
18733
|
+
* DoctorAffiliationsApi - factory interface
|
|
18734
|
+
* @export
|
|
18735
|
+
*/
|
|
18736
|
+
export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
18737
|
+
/**
|
|
18738
|
+
*
|
|
18739
|
+
* @summary Get all doctor affiliations.
|
|
18740
|
+
* @param {string} [hospitalId]
|
|
18741
|
+
* @param {string} [hospitalName]
|
|
18742
|
+
* @param {string} [doctorId]
|
|
18743
|
+
* @param {string} [name]
|
|
18744
|
+
* @param {string} [slug]
|
|
18745
|
+
* @param {string} [languageCode]
|
|
18746
|
+
* @param {boolean} [showHidden]
|
|
18747
|
+
* @param {number} [page]
|
|
18748
|
+
* @param {number} [limit]
|
|
18749
|
+
* @param {Date} [lastRetrieved]
|
|
18750
|
+
* @param {*} [options] Override http request option.
|
|
18751
|
+
* @throws {RequiredError}
|
|
18752
|
+
*/
|
|
18753
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
18754
|
+
/**
|
|
18755
|
+
*
|
|
18756
|
+
* @summary Delete doctor affiliation.
|
|
18757
|
+
* @param {string} id
|
|
18758
|
+
* @param {*} [options] Override http request option.
|
|
18759
|
+
* @throws {RequiredError}
|
|
18760
|
+
*/
|
|
18761
|
+
apiV1DoctoraffiliationsIdDelete(id: string, options?: any): AxiosPromise<boolean>;
|
|
18762
|
+
/**
|
|
18763
|
+
*
|
|
18764
|
+
* @summary Get doctor affiliation.
|
|
18765
|
+
* @param {string} id
|
|
18766
|
+
* @param {*} [options] Override http request option.
|
|
18767
|
+
* @throws {RequiredError}
|
|
18768
|
+
*/
|
|
18769
|
+
apiV1DoctoraffiliationsIdGet(id: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
18770
|
+
/**
|
|
18771
|
+
*
|
|
18772
|
+
* @summary Update Hospital.
|
|
18773
|
+
* @param {string} id
|
|
18774
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
18775
|
+
* @param {*} [options] Override http request option.
|
|
18776
|
+
* @throws {RequiredError}
|
|
18777
|
+
*/
|
|
18778
|
+
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
18779
|
+
/**
|
|
18780
|
+
*
|
|
18781
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
18782
|
+
* @param {*} [options] Override http request option.
|
|
18783
|
+
* @throws {RequiredError}
|
|
18784
|
+
*/
|
|
18785
|
+
apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
18786
|
+
};
|
|
18787
|
+
/**
|
|
18788
|
+
* DoctorAffiliationsApi - object-oriented interface
|
|
18789
|
+
* @export
|
|
18790
|
+
* @class DoctorAffiliationsApi
|
|
18791
|
+
* @extends {BaseAPI}
|
|
18792
|
+
*/
|
|
18793
|
+
export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
18794
|
+
/**
|
|
18795
|
+
*
|
|
18796
|
+
* @summary Get all doctor affiliations.
|
|
18797
|
+
* @param {string} [hospitalId]
|
|
18798
|
+
* @param {string} [hospitalName]
|
|
18799
|
+
* @param {string} [doctorId]
|
|
18800
|
+
* @param {string} [name]
|
|
18801
|
+
* @param {string} [slug]
|
|
18802
|
+
* @param {string} [languageCode]
|
|
18803
|
+
* @param {boolean} [showHidden]
|
|
18804
|
+
* @param {number} [page]
|
|
18805
|
+
* @param {number} [limit]
|
|
18806
|
+
* @param {Date} [lastRetrieved]
|
|
18807
|
+
* @param {*} [options] Override http request option.
|
|
18808
|
+
* @throws {RequiredError}
|
|
18809
|
+
* @memberof DoctorAffiliationsApi
|
|
18810
|
+
*/
|
|
18811
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
18812
|
+
/**
|
|
18813
|
+
*
|
|
18814
|
+
* @summary Delete doctor affiliation.
|
|
18815
|
+
* @param {string} id
|
|
18816
|
+
* @param {*} [options] Override http request option.
|
|
18817
|
+
* @throws {RequiredError}
|
|
18818
|
+
* @memberof DoctorAffiliationsApi
|
|
18819
|
+
*/
|
|
18820
|
+
apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18821
|
+
/**
|
|
18822
|
+
*
|
|
18823
|
+
* @summary Get doctor affiliation.
|
|
18824
|
+
* @param {string} id
|
|
18825
|
+
* @param {*} [options] Override http request option.
|
|
18826
|
+
* @throws {RequiredError}
|
|
18827
|
+
* @memberof DoctorAffiliationsApi
|
|
18828
|
+
*/
|
|
18829
|
+
apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
18830
|
+
/**
|
|
18831
|
+
*
|
|
18832
|
+
* @summary Update Hospital.
|
|
18833
|
+
* @param {string} id
|
|
18834
|
+
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
18835
|
+
* @param {*} [options] Override http request option.
|
|
18836
|
+
* @throws {RequiredError}
|
|
18837
|
+
* @memberof DoctorAffiliationsApi
|
|
18838
|
+
*/
|
|
18839
|
+
apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
18840
|
+
/**
|
|
18841
|
+
*
|
|
18842
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
18843
|
+
* @param {*} [options] Override http request option.
|
|
18844
|
+
* @throws {RequiredError}
|
|
18845
|
+
* @memberof DoctorAffiliationsApi
|
|
18846
|
+
*/
|
|
18847
|
+
apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
18848
|
+
}
|
|
18849
|
+
/**
|
|
18850
|
+
* DoctorsApi - axios parameter creator
|
|
18851
|
+
* @export
|
|
18852
|
+
*/
|
|
18853
|
+
export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
18322
18854
|
/**
|
|
18323
18855
|
*
|
|
18324
18856
|
* @summary Delete DoctorCertificate.
|
|
@@ -18721,44 +19253,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18721
19253
|
* @export
|
|
18722
19254
|
*/
|
|
18723
19255
|
export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
|
|
18724
|
-
/**
|
|
18725
|
-
*
|
|
18726
|
-
* @summary Get all doctor affiliations.
|
|
18727
|
-
* @param {string} doctorId
|
|
18728
|
-
* @param {string} [hospitalName]
|
|
18729
|
-
* @param {number} [page]
|
|
18730
|
-
* @param {number} [limit]
|
|
18731
|
-
* @param {Date} [lastRetrieved]
|
|
18732
|
-
* @param {*} [options] Override http request option.
|
|
18733
|
-
* @throws {RequiredError}
|
|
18734
|
-
*/
|
|
18735
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
18736
|
-
/**
|
|
18737
|
-
*
|
|
18738
|
-
* @summary Delete doctor affiliation.
|
|
18739
|
-
* @param {string} doctorId
|
|
18740
|
-
* @param {string} hospitalId
|
|
18741
|
-
* @param {*} [options] Override http request option.
|
|
18742
|
-
* @throws {RequiredError}
|
|
18743
|
-
*/
|
|
18744
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18745
|
-
/**
|
|
18746
|
-
*
|
|
18747
|
-
* @summary Get doctor affiliation.
|
|
18748
|
-
* @param {string} doctorId
|
|
18749
|
-
* @param {string} hospitalId
|
|
18750
|
-
* @param {*} [options] Override http request option.
|
|
18751
|
-
* @throws {RequiredError}
|
|
18752
|
-
*/
|
|
18753
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
18754
|
-
/**
|
|
18755
|
-
*
|
|
18756
|
-
* @param {string} doctorId
|
|
18757
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
18758
|
-
* @param {*} [options] Override http request option.
|
|
18759
|
-
* @throws {RequiredError}
|
|
18760
|
-
*/
|
|
18761
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
18762
19256
|
/**
|
|
18763
19257
|
*
|
|
18764
19258
|
* @summary Delete DoctorCertificate.
|
|
@@ -19161,44 +19655,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19161
19655
|
* @export
|
|
19162
19656
|
*/
|
|
19163
19657
|
export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19164
|
-
/**
|
|
19165
|
-
*
|
|
19166
|
-
* @summary Get all doctor affiliations.
|
|
19167
|
-
* @param {string} doctorId
|
|
19168
|
-
* @param {string} [hospitalName]
|
|
19169
|
-
* @param {number} [page]
|
|
19170
|
-
* @param {number} [limit]
|
|
19171
|
-
* @param {Date} [lastRetrieved]
|
|
19172
|
-
* @param {*} [options] Override http request option.
|
|
19173
|
-
* @throws {RequiredError}
|
|
19174
|
-
*/
|
|
19175
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19176
|
-
/**
|
|
19177
|
-
*
|
|
19178
|
-
* @summary Delete doctor affiliation.
|
|
19179
|
-
* @param {string} doctorId
|
|
19180
|
-
* @param {string} hospitalId
|
|
19181
|
-
* @param {*} [options] Override http request option.
|
|
19182
|
-
* @throws {RequiredError}
|
|
19183
|
-
*/
|
|
19184
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
19185
|
-
/**
|
|
19186
|
-
*
|
|
19187
|
-
* @summary Get doctor affiliation.
|
|
19188
|
-
* @param {string} doctorId
|
|
19189
|
-
* @param {string} hospitalId
|
|
19190
|
-
* @param {*} [options] Override http request option.
|
|
19191
|
-
* @throws {RequiredError}
|
|
19192
|
-
*/
|
|
19193
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
19194
|
-
/**
|
|
19195
|
-
*
|
|
19196
|
-
* @param {string} doctorId
|
|
19197
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
19198
|
-
* @param {*} [options] Override http request option.
|
|
19199
|
-
* @throws {RequiredError}
|
|
19200
|
-
*/
|
|
19201
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
19202
19658
|
/**
|
|
19203
19659
|
*
|
|
19204
19660
|
* @summary Delete DoctorCertificate.
|
|
@@ -19603,48 +20059,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19603
20059
|
* @extends {BaseAPI}
|
|
19604
20060
|
*/
|
|
19605
20061
|
export declare class DoctorsApi extends BaseAPI {
|
|
19606
|
-
/**
|
|
19607
|
-
*
|
|
19608
|
-
* @summary Get all doctor affiliations.
|
|
19609
|
-
* @param {string} doctorId
|
|
19610
|
-
* @param {string} [hospitalName]
|
|
19611
|
-
* @param {number} [page]
|
|
19612
|
-
* @param {number} [limit]
|
|
19613
|
-
* @param {Date} [lastRetrieved]
|
|
19614
|
-
* @param {*} [options] Override http request option.
|
|
19615
|
-
* @throws {RequiredError}
|
|
19616
|
-
* @memberof DoctorsApi
|
|
19617
|
-
*/
|
|
19618
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19619
|
-
/**
|
|
19620
|
-
*
|
|
19621
|
-
* @summary Delete doctor affiliation.
|
|
19622
|
-
* @param {string} doctorId
|
|
19623
|
-
* @param {string} hospitalId
|
|
19624
|
-
* @param {*} [options] Override http request option.
|
|
19625
|
-
* @throws {RequiredError}
|
|
19626
|
-
* @memberof DoctorsApi
|
|
19627
|
-
*/
|
|
19628
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19629
|
-
/**
|
|
19630
|
-
*
|
|
19631
|
-
* @summary Get doctor affiliation.
|
|
19632
|
-
* @param {string} doctorId
|
|
19633
|
-
* @param {string} hospitalId
|
|
19634
|
-
* @param {*} [options] Override http request option.
|
|
19635
|
-
* @throws {RequiredError}
|
|
19636
|
-
* @memberof DoctorsApi
|
|
19637
|
-
*/
|
|
19638
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
19639
|
-
/**
|
|
19640
|
-
*
|
|
19641
|
-
* @param {string} doctorId
|
|
19642
|
-
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
19643
|
-
* @param {*} [options] Override http request option.
|
|
19644
|
-
* @throws {RequiredError}
|
|
19645
|
-
* @memberof DoctorsApi
|
|
19646
|
-
*/
|
|
19647
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
19648
20062
|
/**
|
|
19649
20063
|
*
|
|
19650
20064
|
* @summary Delete DoctorCertificate.
|