ch-admin-api-client-typescript 2.8.5 → 2.8.6
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 +453 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +339 -8
- package/package.json +1 -1
- package/src/api.ts +608 -7
package/lib/api.d.ts
CHANGED
|
@@ -3975,6 +3975,18 @@ export interface CreateHospitalServiceCommand {
|
|
|
3975
3975
|
* @memberof CreateHospitalServiceCommand
|
|
3976
3976
|
*/
|
|
3977
3977
|
'order'?: number;
|
|
3978
|
+
/**
|
|
3979
|
+
*
|
|
3980
|
+
* @type {string}
|
|
3981
|
+
* @memberof CreateHospitalServiceCommand
|
|
3982
|
+
*/
|
|
3983
|
+
'photo'?: string | null;
|
|
3984
|
+
/**
|
|
3985
|
+
*
|
|
3986
|
+
* @type {string}
|
|
3987
|
+
* @memberof CreateHospitalServiceCommand
|
|
3988
|
+
*/
|
|
3989
|
+
'photoThumbnail'?: string | null;
|
|
3978
3990
|
}
|
|
3979
3991
|
/**
|
|
3980
3992
|
*
|
|
@@ -4012,6 +4024,30 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
4012
4024
|
* @memberof CreateHospitalSpecialtyCommand
|
|
4013
4025
|
*/
|
|
4014
4026
|
'order'?: number;
|
|
4027
|
+
/**
|
|
4028
|
+
*
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4031
|
+
*/
|
|
4032
|
+
'photo'?: string | null;
|
|
4033
|
+
/**
|
|
4034
|
+
*
|
|
4035
|
+
* @type {string}
|
|
4036
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4037
|
+
*/
|
|
4038
|
+
'photoThumbnail'?: string | null;
|
|
4039
|
+
/**
|
|
4040
|
+
*
|
|
4041
|
+
* @type {string}
|
|
4042
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4043
|
+
*/
|
|
4044
|
+
'background'?: string | null;
|
|
4045
|
+
/**
|
|
4046
|
+
*
|
|
4047
|
+
* @type {string}
|
|
4048
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4049
|
+
*/
|
|
4050
|
+
'backgroundThumbnail'?: string | null;
|
|
4015
4051
|
/**
|
|
4016
4052
|
*
|
|
4017
4053
|
* @type {Array<MediaModel>}
|
|
@@ -4482,6 +4518,85 @@ export interface CreateTemplateVersionCommand {
|
|
|
4482
4518
|
*/
|
|
4483
4519
|
'htmlContent'?: string | null;
|
|
4484
4520
|
}
|
|
4521
|
+
/**
|
|
4522
|
+
*
|
|
4523
|
+
* @export
|
|
4524
|
+
* @interface DashBoardModel
|
|
4525
|
+
*/
|
|
4526
|
+
export interface DashBoardModel {
|
|
4527
|
+
/**
|
|
4528
|
+
*
|
|
4529
|
+
* @type {number}
|
|
4530
|
+
* @memberof DashBoardModel
|
|
4531
|
+
*/
|
|
4532
|
+
'pendingApprovalConsultationsCount'?: number;
|
|
4533
|
+
/**
|
|
4534
|
+
*
|
|
4535
|
+
* @type {number}
|
|
4536
|
+
* @memberof DashBoardModel
|
|
4537
|
+
*/
|
|
4538
|
+
'finishedConsultationsCount'?: number;
|
|
4539
|
+
/**
|
|
4540
|
+
*
|
|
4541
|
+
* @type {number}
|
|
4542
|
+
* @memberof DashBoardModel
|
|
4543
|
+
*/
|
|
4544
|
+
'consultationsRevenue'?: number;
|
|
4545
|
+
/**
|
|
4546
|
+
*
|
|
4547
|
+
* @type {Array<any>}
|
|
4548
|
+
* @memberof DashBoardModel
|
|
4549
|
+
*/
|
|
4550
|
+
'monthlyConsultationList'?: Array<any> | null;
|
|
4551
|
+
/**
|
|
4552
|
+
*
|
|
4553
|
+
* @type {number}
|
|
4554
|
+
* @memberof DashBoardModel
|
|
4555
|
+
*/
|
|
4556
|
+
'pendingApprovalDealsCount'?: number;
|
|
4557
|
+
/**
|
|
4558
|
+
*
|
|
4559
|
+
* @type {number}
|
|
4560
|
+
* @memberof DashBoardModel
|
|
4561
|
+
*/
|
|
4562
|
+
'finishedDealsCount'?: number;
|
|
4563
|
+
/**
|
|
4564
|
+
*
|
|
4565
|
+
* @type {number}
|
|
4566
|
+
* @memberof DashBoardModel
|
|
4567
|
+
*/
|
|
4568
|
+
'dealsRevenue'?: number;
|
|
4569
|
+
/**
|
|
4570
|
+
*
|
|
4571
|
+
* @type {Array<any>}
|
|
4572
|
+
* @memberof DashBoardModel
|
|
4573
|
+
*/
|
|
4574
|
+
'monthlyBookingList'?: Array<any> | null;
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @type {number}
|
|
4578
|
+
* @memberof DashBoardModel
|
|
4579
|
+
*/
|
|
4580
|
+
'articleReleased'?: number;
|
|
4581
|
+
/**
|
|
4582
|
+
*
|
|
4583
|
+
* @type {number}
|
|
4584
|
+
* @memberof DashBoardModel
|
|
4585
|
+
*/
|
|
4586
|
+
'specialtiesUsed'?: number;
|
|
4587
|
+
/**
|
|
4588
|
+
*
|
|
4589
|
+
* @type {number}
|
|
4590
|
+
* @memberof DashBoardModel
|
|
4591
|
+
*/
|
|
4592
|
+
'doctorsReleased'?: number;
|
|
4593
|
+
/**
|
|
4594
|
+
*
|
|
4595
|
+
* @type {number}
|
|
4596
|
+
* @memberof DashBoardModel
|
|
4597
|
+
*/
|
|
4598
|
+
'totalHospitalsReleased'?: number;
|
|
4599
|
+
}
|
|
4485
4600
|
/**
|
|
4486
4601
|
*
|
|
4487
4602
|
* @export
|
|
@@ -5969,6 +6084,18 @@ export interface DoctorsSimpleModel {
|
|
|
5969
6084
|
*/
|
|
5970
6085
|
'metaData'?: PagedListMetaData;
|
|
5971
6086
|
}
|
|
6087
|
+
/**
|
|
6088
|
+
*
|
|
6089
|
+
* @export
|
|
6090
|
+
* @enum {string}
|
|
6091
|
+
*/
|
|
6092
|
+
export declare enum Duration {
|
|
6093
|
+
CurrentMonth = "Current_Month",
|
|
6094
|
+
Last3Month = "Last_3_Month",
|
|
6095
|
+
Last6Month = "Last_6_Month",
|
|
6096
|
+
Last9Month = "Last_9_Month",
|
|
6097
|
+
Last12Month = "Last_12_Month"
|
|
6098
|
+
}
|
|
5972
6099
|
/**
|
|
5973
6100
|
*
|
|
5974
6101
|
* @export
|
|
@@ -7205,6 +7332,18 @@ export interface HospitalServiceItemModel {
|
|
|
7205
7332
|
* @memberof HospitalServiceItemModel
|
|
7206
7333
|
*/
|
|
7207
7334
|
'confirmed'?: boolean;
|
|
7335
|
+
/**
|
|
7336
|
+
*
|
|
7337
|
+
* @type {string}
|
|
7338
|
+
* @memberof HospitalServiceItemModel
|
|
7339
|
+
*/
|
|
7340
|
+
'photo'?: string | null;
|
|
7341
|
+
/**
|
|
7342
|
+
*
|
|
7343
|
+
* @type {string}
|
|
7344
|
+
* @memberof HospitalServiceItemModel
|
|
7345
|
+
*/
|
|
7346
|
+
'photoThumbnail'?: string | null;
|
|
7208
7347
|
/**
|
|
7209
7348
|
*
|
|
7210
7349
|
* @type {AuditableEntity}
|
|
@@ -7344,6 +7483,18 @@ export interface HospitalServiceModel {
|
|
|
7344
7483
|
* @memberof HospitalServiceModel
|
|
7345
7484
|
*/
|
|
7346
7485
|
'confirmed'?: boolean;
|
|
7486
|
+
/**
|
|
7487
|
+
*
|
|
7488
|
+
* @type {string}
|
|
7489
|
+
* @memberof HospitalServiceModel
|
|
7490
|
+
*/
|
|
7491
|
+
'photo'?: string | null;
|
|
7492
|
+
/**
|
|
7493
|
+
*
|
|
7494
|
+
* @type {string}
|
|
7495
|
+
* @memberof HospitalServiceModel
|
|
7496
|
+
*/
|
|
7497
|
+
'photoThumbnail'?: string | null;
|
|
7347
7498
|
/**
|
|
7348
7499
|
*
|
|
7349
7500
|
* @type {AuditableEntity}
|
|
@@ -7420,6 +7571,25 @@ export interface HospitalSpecialtiesModel {
|
|
|
7420
7571
|
*/
|
|
7421
7572
|
'metaData'?: PagedListMetaData;
|
|
7422
7573
|
}
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @export
|
|
7577
|
+
* @interface HospitalSpecialtiesSimpleModel
|
|
7578
|
+
*/
|
|
7579
|
+
export interface HospitalSpecialtiesSimpleModel {
|
|
7580
|
+
/**
|
|
7581
|
+
*
|
|
7582
|
+
* @type {Array<HospitalSpecialtySimpleItemModel>}
|
|
7583
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
7584
|
+
*/
|
|
7585
|
+
'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {PagedListMetaData}
|
|
7589
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
7590
|
+
*/
|
|
7591
|
+
'metaData'?: PagedListMetaData;
|
|
7592
|
+
}
|
|
7423
7593
|
/**
|
|
7424
7594
|
*
|
|
7425
7595
|
* @export
|
|
@@ -7534,6 +7704,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7534
7704
|
* @memberof HospitalSpecialtyItemModel
|
|
7535
7705
|
*/
|
|
7536
7706
|
'confirmed'?: boolean;
|
|
7707
|
+
/**
|
|
7708
|
+
*
|
|
7709
|
+
* @type {string}
|
|
7710
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7711
|
+
*/
|
|
7712
|
+
'photo'?: string | null;
|
|
7713
|
+
/**
|
|
7714
|
+
*
|
|
7715
|
+
* @type {string}
|
|
7716
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7717
|
+
*/
|
|
7718
|
+
'photoThumbnail'?: string | null;
|
|
7719
|
+
/**
|
|
7720
|
+
*
|
|
7721
|
+
* @type {string}
|
|
7722
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7723
|
+
*/
|
|
7724
|
+
'background'?: string | null;
|
|
7725
|
+
/**
|
|
7726
|
+
*
|
|
7727
|
+
* @type {string}
|
|
7728
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7729
|
+
*/
|
|
7730
|
+
'backgroundThumbnail'?: string | null;
|
|
7537
7731
|
/**
|
|
7538
7732
|
*
|
|
7539
7733
|
* @type {Array<MediaModel>}
|
|
@@ -7661,6 +7855,30 @@ export interface HospitalSpecialtyModel {
|
|
|
7661
7855
|
* @memberof HospitalSpecialtyModel
|
|
7662
7856
|
*/
|
|
7663
7857
|
'confirmed'?: boolean;
|
|
7858
|
+
/**
|
|
7859
|
+
*
|
|
7860
|
+
* @type {string}
|
|
7861
|
+
* @memberof HospitalSpecialtyModel
|
|
7862
|
+
*/
|
|
7863
|
+
'photo'?: string | null;
|
|
7864
|
+
/**
|
|
7865
|
+
*
|
|
7866
|
+
* @type {string}
|
|
7867
|
+
* @memberof HospitalSpecialtyModel
|
|
7868
|
+
*/
|
|
7869
|
+
'photoThumbnail'?: string | null;
|
|
7870
|
+
/**
|
|
7871
|
+
*
|
|
7872
|
+
* @type {string}
|
|
7873
|
+
* @memberof HospitalSpecialtyModel
|
|
7874
|
+
*/
|
|
7875
|
+
'background'?: string | null;
|
|
7876
|
+
/**
|
|
7877
|
+
*
|
|
7878
|
+
* @type {string}
|
|
7879
|
+
* @memberof HospitalSpecialtyModel
|
|
7880
|
+
*/
|
|
7881
|
+
'backgroundThumbnail'?: string | null;
|
|
7664
7882
|
/**
|
|
7665
7883
|
*
|
|
7666
7884
|
* @type {Array<MediaModel>}
|
|
@@ -7680,6 +7898,49 @@ export interface HospitalSpecialtyModel {
|
|
|
7680
7898
|
*/
|
|
7681
7899
|
'languageCode'?: string | null;
|
|
7682
7900
|
}
|
|
7901
|
+
/**
|
|
7902
|
+
*
|
|
7903
|
+
* @export
|
|
7904
|
+
* @interface HospitalSpecialtySimpleItemModel
|
|
7905
|
+
*/
|
|
7906
|
+
export interface HospitalSpecialtySimpleItemModel {
|
|
7907
|
+
/**
|
|
7908
|
+
*
|
|
7909
|
+
* @type {string}
|
|
7910
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7911
|
+
*/
|
|
7912
|
+
'id'?: string;
|
|
7913
|
+
/**
|
|
7914
|
+
*
|
|
7915
|
+
* @type {string}
|
|
7916
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7917
|
+
*/
|
|
7918
|
+
'specialtyName'?: string | null;
|
|
7919
|
+
/**
|
|
7920
|
+
*
|
|
7921
|
+
* @type {string}
|
|
7922
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7923
|
+
*/
|
|
7924
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
7925
|
+
/**
|
|
7926
|
+
*
|
|
7927
|
+
* @type {string}
|
|
7928
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7929
|
+
*/
|
|
7930
|
+
'description'?: string | null;
|
|
7931
|
+
/**
|
|
7932
|
+
*
|
|
7933
|
+
* @type {number}
|
|
7934
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7935
|
+
*/
|
|
7936
|
+
'order'?: number;
|
|
7937
|
+
/**
|
|
7938
|
+
*
|
|
7939
|
+
* @type {boolean}
|
|
7940
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7941
|
+
*/
|
|
7942
|
+
'confirmed'?: boolean;
|
|
7943
|
+
}
|
|
7683
7944
|
/**
|
|
7684
7945
|
*
|
|
7685
7946
|
* @export
|
|
@@ -11428,6 +11689,18 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11428
11689
|
* @memberof UpdateHospitalServiceCommand
|
|
11429
11690
|
*/
|
|
11430
11691
|
'confirmed'?: boolean;
|
|
11692
|
+
/**
|
|
11693
|
+
*
|
|
11694
|
+
* @type {string}
|
|
11695
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11696
|
+
*/
|
|
11697
|
+
'photo'?: string | null;
|
|
11698
|
+
/**
|
|
11699
|
+
*
|
|
11700
|
+
* @type {string}
|
|
11701
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11702
|
+
*/
|
|
11703
|
+
'photoThumbnail'?: string | null;
|
|
11431
11704
|
}
|
|
11432
11705
|
/**
|
|
11433
11706
|
*
|
|
@@ -11477,6 +11750,30 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
11477
11750
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11478
11751
|
*/
|
|
11479
11752
|
'confirmed'?: boolean;
|
|
11753
|
+
/**
|
|
11754
|
+
*
|
|
11755
|
+
* @type {string}
|
|
11756
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11757
|
+
*/
|
|
11758
|
+
'photo'?: string | null;
|
|
11759
|
+
/**
|
|
11760
|
+
*
|
|
11761
|
+
* @type {string}
|
|
11762
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11763
|
+
*/
|
|
11764
|
+
'photoThumbnail'?: string | null;
|
|
11765
|
+
/**
|
|
11766
|
+
*
|
|
11767
|
+
* @type {string}
|
|
11768
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11769
|
+
*/
|
|
11770
|
+
'background'?: string | null;
|
|
11771
|
+
/**
|
|
11772
|
+
*
|
|
11773
|
+
* @type {string}
|
|
11774
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11775
|
+
*/
|
|
11776
|
+
'backgroundThumbnail'?: string | null;
|
|
11480
11777
|
/**
|
|
11481
11778
|
*
|
|
11482
11779
|
* @type {Array<MediaModel>}
|
|
@@ -15958,6 +16255,65 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15958
16255
|
*/
|
|
15959
16256
|
apiV1CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15960
16257
|
}
|
|
16258
|
+
/**
|
|
16259
|
+
* DashBoardApi - axios parameter creator
|
|
16260
|
+
* @export
|
|
16261
|
+
*/
|
|
16262
|
+
export declare const DashBoardApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
16263
|
+
/**
|
|
16264
|
+
*
|
|
16265
|
+
* @summary Create a DashBoard.
|
|
16266
|
+
* @param {Duration} duration
|
|
16267
|
+
* @param {*} [options] Override http request option.
|
|
16268
|
+
* @throws {RequiredError}
|
|
16269
|
+
*/
|
|
16270
|
+
apiV1DashboardDurationGet: (duration: Duration, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16271
|
+
};
|
|
16272
|
+
/**
|
|
16273
|
+
* DashBoardApi - functional programming interface
|
|
16274
|
+
* @export
|
|
16275
|
+
*/
|
|
16276
|
+
export declare const DashBoardApiFp: (configuration?: Configuration | undefined) => {
|
|
16277
|
+
/**
|
|
16278
|
+
*
|
|
16279
|
+
* @summary Create a DashBoard.
|
|
16280
|
+
* @param {Duration} duration
|
|
16281
|
+
* @param {*} [options] Override http request option.
|
|
16282
|
+
* @throws {RequiredError}
|
|
16283
|
+
*/
|
|
16284
|
+
apiV1DashboardDurationGet(duration: Duration, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DashBoardModel>>;
|
|
16285
|
+
};
|
|
16286
|
+
/**
|
|
16287
|
+
* DashBoardApi - factory interface
|
|
16288
|
+
* @export
|
|
16289
|
+
*/
|
|
16290
|
+
export declare const DashBoardApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
16291
|
+
/**
|
|
16292
|
+
*
|
|
16293
|
+
* @summary Create a DashBoard.
|
|
16294
|
+
* @param {Duration} duration
|
|
16295
|
+
* @param {*} [options] Override http request option.
|
|
16296
|
+
* @throws {RequiredError}
|
|
16297
|
+
*/
|
|
16298
|
+
apiV1DashboardDurationGet(duration: Duration, options?: any): AxiosPromise<DashBoardModel>;
|
|
16299
|
+
};
|
|
16300
|
+
/**
|
|
16301
|
+
* DashBoardApi - object-oriented interface
|
|
16302
|
+
* @export
|
|
16303
|
+
* @class DashBoardApi
|
|
16304
|
+
* @extends {BaseAPI}
|
|
16305
|
+
*/
|
|
16306
|
+
export declare class DashBoardApi extends BaseAPI {
|
|
16307
|
+
/**
|
|
16308
|
+
*
|
|
16309
|
+
* @summary Create a DashBoard.
|
|
16310
|
+
* @param {Duration} duration
|
|
16311
|
+
* @param {*} [options] Override http request option.
|
|
16312
|
+
* @throws {RequiredError}
|
|
16313
|
+
* @memberof DashBoardApi
|
|
16314
|
+
*/
|
|
16315
|
+
apiV1DashboardDurationGet(duration: Duration, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DashBoardModel>>;
|
|
16316
|
+
}
|
|
15961
16317
|
/**
|
|
15962
16318
|
* DealsApi - axios parameter creator
|
|
15963
16319
|
* @export
|
|
@@ -19653,6 +20009,28 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19653
20009
|
* @throws {RequiredError}
|
|
19654
20010
|
*/
|
|
19655
20011
|
apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20012
|
+
/**
|
|
20013
|
+
*
|
|
20014
|
+
* @summary Get all HospitalSpecialties.
|
|
20015
|
+
* @param {string} hospitalId
|
|
20016
|
+
* @param {string} [hospitalName]
|
|
20017
|
+
* @param {string} [hospitalSlug]
|
|
20018
|
+
* @param {string} [specialtyId]
|
|
20019
|
+
* @param {string} [specialtyName]
|
|
20020
|
+
* @param {string} [specialtyTypeId]
|
|
20021
|
+
* @param {string} [title]
|
|
20022
|
+
* @param {MarketingType} [marketingType]
|
|
20023
|
+
* @param {string} [languageCode]
|
|
20024
|
+
* @param {boolean} [showHidden]
|
|
20025
|
+
* @param {boolean} [returnDefaultValue]
|
|
20026
|
+
* @param {boolean} [includeServices]
|
|
20027
|
+
* @param {number} [page]
|
|
20028
|
+
* @param {number} [limit]
|
|
20029
|
+
* @param {Date} [lastRetrieved]
|
|
20030
|
+
* @param {*} [options] Override http request option.
|
|
20031
|
+
* @throws {RequiredError}
|
|
20032
|
+
*/
|
|
20033
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (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, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19656
20034
|
/**
|
|
19657
20035
|
*
|
|
19658
20036
|
* @summary Delete HospitalSpecialty.
|
|
@@ -20189,6 +20567,28 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
20189
20567
|
* @throws {RequiredError}
|
|
20190
20568
|
*/
|
|
20191
20569
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
20570
|
+
/**
|
|
20571
|
+
*
|
|
20572
|
+
* @summary Get all HospitalSpecialties.
|
|
20573
|
+
* @param {string} hospitalId
|
|
20574
|
+
* @param {string} [hospitalName]
|
|
20575
|
+
* @param {string} [hospitalSlug]
|
|
20576
|
+
* @param {string} [specialtyId]
|
|
20577
|
+
* @param {string} [specialtyName]
|
|
20578
|
+
* @param {string} [specialtyTypeId]
|
|
20579
|
+
* @param {string} [title]
|
|
20580
|
+
* @param {MarketingType} [marketingType]
|
|
20581
|
+
* @param {string} [languageCode]
|
|
20582
|
+
* @param {boolean} [showHidden]
|
|
20583
|
+
* @param {boolean} [returnDefaultValue]
|
|
20584
|
+
* @param {boolean} [includeServices]
|
|
20585
|
+
* @param {number} [page]
|
|
20586
|
+
* @param {number} [limit]
|
|
20587
|
+
* @param {Date} [lastRetrieved]
|
|
20588
|
+
* @param {*} [options] Override http request option.
|
|
20589
|
+
* @throws {RequiredError}
|
|
20590
|
+
*/
|
|
20591
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(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, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
20192
20592
|
/**
|
|
20193
20593
|
*
|
|
20194
20594
|
* @summary Delete HospitalSpecialty.
|
|
@@ -20725,6 +21125,28 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20725
21125
|
* @throws {RequiredError}
|
|
20726
21126
|
*/
|
|
20727
21127
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
21128
|
+
/**
|
|
21129
|
+
*
|
|
21130
|
+
* @summary Get all HospitalSpecialties.
|
|
21131
|
+
* @param {string} hospitalId
|
|
21132
|
+
* @param {string} [hospitalName]
|
|
21133
|
+
* @param {string} [hospitalSlug]
|
|
21134
|
+
* @param {string} [specialtyId]
|
|
21135
|
+
* @param {string} [specialtyName]
|
|
21136
|
+
* @param {string} [specialtyTypeId]
|
|
21137
|
+
* @param {string} [title]
|
|
21138
|
+
* @param {MarketingType} [marketingType]
|
|
21139
|
+
* @param {string} [languageCode]
|
|
21140
|
+
* @param {boolean} [showHidden]
|
|
21141
|
+
* @param {boolean} [returnDefaultValue]
|
|
21142
|
+
* @param {boolean} [includeServices]
|
|
21143
|
+
* @param {number} [page]
|
|
21144
|
+
* @param {number} [limit]
|
|
21145
|
+
* @param {Date} [lastRetrieved]
|
|
21146
|
+
* @param {*} [options] Override http request option.
|
|
21147
|
+
* @throws {RequiredError}
|
|
21148
|
+
*/
|
|
21149
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(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, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
20728
21150
|
/**
|
|
20729
21151
|
*
|
|
20730
21152
|
* @summary Delete HospitalSpecialty.
|
|
@@ -21293,6 +21715,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21293
21715
|
* @memberof HospitalsApi
|
|
21294
21716
|
*/
|
|
21295
21717
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21718
|
+
/**
|
|
21719
|
+
*
|
|
21720
|
+
* @summary Get all HospitalSpecialties.
|
|
21721
|
+
* @param {string} hospitalId
|
|
21722
|
+
* @param {string} [hospitalName]
|
|
21723
|
+
* @param {string} [hospitalSlug]
|
|
21724
|
+
* @param {string} [specialtyId]
|
|
21725
|
+
* @param {string} [specialtyName]
|
|
21726
|
+
* @param {string} [specialtyTypeId]
|
|
21727
|
+
* @param {string} [title]
|
|
21728
|
+
* @param {MarketingType} [marketingType]
|
|
21729
|
+
* @param {string} [languageCode]
|
|
21730
|
+
* @param {boolean} [showHidden]
|
|
21731
|
+
* @param {boolean} [returnDefaultValue]
|
|
21732
|
+
* @param {boolean} [includeServices]
|
|
21733
|
+
* @param {number} [page]
|
|
21734
|
+
* @param {number} [limit]
|
|
21735
|
+
* @param {Date} [lastRetrieved]
|
|
21736
|
+
* @param {*} [options] Override http request option.
|
|
21737
|
+
* @throws {RequiredError}
|
|
21738
|
+
* @memberof HospitalsApi
|
|
21739
|
+
*/
|
|
21740
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
|
|
21296
21741
|
/**
|
|
21297
21742
|
*
|
|
21298
21743
|
* @summary Delete HospitalSpecialty.
|
|
@@ -21579,13 +22024,14 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21579
22024
|
* @param {string} [name]
|
|
21580
22025
|
* @param {string} [code]
|
|
21581
22026
|
* @param {string} [description]
|
|
22027
|
+
* @param {boolean} [showPublished]
|
|
21582
22028
|
* @param {number} [page]
|
|
21583
22029
|
* @param {number} [limit]
|
|
21584
22030
|
* @param {Date} [lastRetrieved]
|
|
21585
22031
|
* @param {*} [options] Override http request option.
|
|
21586
22032
|
* @throws {RequiredError}
|
|
21587
22033
|
*/
|
|
21588
|
-
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22034
|
+
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21589
22035
|
/**
|
|
21590
22036
|
*
|
|
21591
22037
|
* @param {string} languageId
|
|
@@ -21637,13 +22083,14 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
21637
22083
|
* @param {string} [name]
|
|
21638
22084
|
* @param {string} [code]
|
|
21639
22085
|
* @param {string} [description]
|
|
22086
|
+
* @param {boolean} [showPublished]
|
|
21640
22087
|
* @param {number} [page]
|
|
21641
22088
|
* @param {number} [limit]
|
|
21642
22089
|
* @param {Date} [lastRetrieved]
|
|
21643
22090
|
* @param {*} [options] Override http request option.
|
|
21644
22091
|
* @throws {RequiredError}
|
|
21645
22092
|
*/
|
|
21646
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
22093
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
21647
22094
|
/**
|
|
21648
22095
|
*
|
|
21649
22096
|
* @param {string} languageId
|
|
@@ -21695,13 +22142,14 @@ export declare const LanguagesApiFactory: (configuration?: Configuration | undef
|
|
|
21695
22142
|
* @param {string} [name]
|
|
21696
22143
|
* @param {string} [code]
|
|
21697
22144
|
* @param {string} [description]
|
|
22145
|
+
* @param {boolean} [showPublished]
|
|
21698
22146
|
* @param {number} [page]
|
|
21699
22147
|
* @param {number} [limit]
|
|
21700
22148
|
* @param {Date} [lastRetrieved]
|
|
21701
22149
|
* @param {*} [options] Override http request option.
|
|
21702
22150
|
* @throws {RequiredError}
|
|
21703
22151
|
*/
|
|
21704
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
22152
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
21705
22153
|
/**
|
|
21706
22154
|
*
|
|
21707
22155
|
* @param {string} languageId
|
|
@@ -21756,6 +22204,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
21756
22204
|
* @param {string} [name]
|
|
21757
22205
|
* @param {string} [code]
|
|
21758
22206
|
* @param {string} [description]
|
|
22207
|
+
* @param {boolean} [showPublished]
|
|
21759
22208
|
* @param {number} [page]
|
|
21760
22209
|
* @param {number} [limit]
|
|
21761
22210
|
* @param {Date} [lastRetrieved]
|
|
@@ -21763,7 +22212,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
21763
22212
|
* @throws {RequiredError}
|
|
21764
22213
|
* @memberof LanguagesApi
|
|
21765
22214
|
*/
|
|
21766
|
-
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
22215
|
+
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, showPublished?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
21767
22216
|
/**
|
|
21768
22217
|
*
|
|
21769
22218
|
* @param {string} languageId
|