ch-api-client-typescript2 4.0.8 → 4.1.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 +263 -115
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +326 -150
- package/package.json +1 -1
- package/src/api.ts +416 -179
package/lib/api.d.ts
CHANGED
|
@@ -775,16 +775,6 @@ export interface ArticleSourcesModel {
|
|
|
775
775
|
*/
|
|
776
776
|
'metaData'?: PagedListMetaData;
|
|
777
777
|
}
|
|
778
|
-
/**
|
|
779
|
-
*
|
|
780
|
-
* @export
|
|
781
|
-
* @enum {string}
|
|
782
|
-
*/
|
|
783
|
-
export declare enum ArticleStatus {
|
|
784
|
-
Draft = "Draft",
|
|
785
|
-
Active = "Active",
|
|
786
|
-
Archived = "Archived"
|
|
787
|
-
}
|
|
788
778
|
/**
|
|
789
779
|
*
|
|
790
780
|
* @export
|
|
@@ -2721,12 +2711,6 @@ export interface CreateBookingCommand {
|
|
|
2721
2711
|
* @interface CreateChatUserCommand
|
|
2722
2712
|
*/
|
|
2723
2713
|
export interface CreateChatUserCommand {
|
|
2724
|
-
/**
|
|
2725
|
-
*
|
|
2726
|
-
* @type {string}
|
|
2727
|
-
* @memberof CreateChatUserCommand
|
|
2728
|
-
*/
|
|
2729
|
-
'userId'?: string;
|
|
2730
2714
|
/**
|
|
2731
2715
|
*
|
|
2732
2716
|
* @type {string}
|
|
@@ -2751,6 +2735,12 @@ export interface CreateChatUserCommand {
|
|
|
2751
2735
|
* @memberof CreateChatUserCommand
|
|
2752
2736
|
*/
|
|
2753
2737
|
'discoveryKeys'?: Array<string> | null;
|
|
2738
|
+
/**
|
|
2739
|
+
*
|
|
2740
|
+
* @type {string}
|
|
2741
|
+
* @memberof CreateChatUserCommand
|
|
2742
|
+
*/
|
|
2743
|
+
'hospitalId'?: string;
|
|
2754
2744
|
}
|
|
2755
2745
|
/**
|
|
2756
2746
|
*
|
|
@@ -5889,6 +5879,36 @@ export interface HospitalServiceItemModel {
|
|
|
5889
5879
|
* @memberof HospitalServiceItemModel
|
|
5890
5880
|
*/
|
|
5891
5881
|
'hospitalSpecialtySlug'?: string | null;
|
|
5882
|
+
/**
|
|
5883
|
+
*
|
|
5884
|
+
* @type {string}
|
|
5885
|
+
* @memberof HospitalServiceItemModel
|
|
5886
|
+
*/
|
|
5887
|
+
'hospitalSpecialtyId'?: string;
|
|
5888
|
+
/**
|
|
5889
|
+
*
|
|
5890
|
+
* @type {Procedure}
|
|
5891
|
+
* @memberof HospitalServiceItemModel
|
|
5892
|
+
*/
|
|
5893
|
+
'procedure'?: Procedure;
|
|
5894
|
+
/**
|
|
5895
|
+
*
|
|
5896
|
+
* @type {number}
|
|
5897
|
+
* @memberof HospitalServiceItemModel
|
|
5898
|
+
*/
|
|
5899
|
+
'minPrice'?: number | null;
|
|
5900
|
+
/**
|
|
5901
|
+
*
|
|
5902
|
+
* @type {number}
|
|
5903
|
+
* @memberof HospitalServiceItemModel
|
|
5904
|
+
*/
|
|
5905
|
+
'maxPrice'?: number | null;
|
|
5906
|
+
/**
|
|
5907
|
+
*
|
|
5908
|
+
* @type {boolean}
|
|
5909
|
+
* @memberof HospitalServiceItemModel
|
|
5910
|
+
*/
|
|
5911
|
+
'priceReuqest'?: boolean;
|
|
5892
5912
|
/**
|
|
5893
5913
|
*
|
|
5894
5914
|
* @type {number}
|
|
@@ -5962,6 +5982,36 @@ export interface HospitalServiceModel {
|
|
|
5962
5982
|
* @memberof HospitalServiceModel
|
|
5963
5983
|
*/
|
|
5964
5984
|
'hospitalSpecialtySlug'?: string | null;
|
|
5985
|
+
/**
|
|
5986
|
+
*
|
|
5987
|
+
* @type {string}
|
|
5988
|
+
* @memberof HospitalServiceModel
|
|
5989
|
+
*/
|
|
5990
|
+
'hospitalSpecialtyId'?: string;
|
|
5991
|
+
/**
|
|
5992
|
+
*
|
|
5993
|
+
* @type {Procedure}
|
|
5994
|
+
* @memberof HospitalServiceModel
|
|
5995
|
+
*/
|
|
5996
|
+
'procedure'?: Procedure;
|
|
5997
|
+
/**
|
|
5998
|
+
*
|
|
5999
|
+
* @type {number}
|
|
6000
|
+
* @memberof HospitalServiceModel
|
|
6001
|
+
*/
|
|
6002
|
+
'minPrice'?: number | null;
|
|
6003
|
+
/**
|
|
6004
|
+
*
|
|
6005
|
+
* @type {number}
|
|
6006
|
+
* @memberof HospitalServiceModel
|
|
6007
|
+
*/
|
|
6008
|
+
'maxPrice'?: number | null;
|
|
6009
|
+
/**
|
|
6010
|
+
*
|
|
6011
|
+
* @type {boolean}
|
|
6012
|
+
* @memberof HospitalServiceModel
|
|
6013
|
+
*/
|
|
6014
|
+
'priceReuqest'?: boolean;
|
|
5965
6015
|
/**
|
|
5966
6016
|
*
|
|
5967
6017
|
* @type {number}
|
|
@@ -6040,30 +6090,6 @@ export interface HospitalServiceModel {
|
|
|
6040
6090
|
* @memberof HospitalServiceModel
|
|
6041
6091
|
*/
|
|
6042
6092
|
'serviceCategoryName'?: string | null;
|
|
6043
|
-
/**
|
|
6044
|
-
*
|
|
6045
|
-
* @type {Procedure}
|
|
6046
|
-
* @memberof HospitalServiceModel
|
|
6047
|
-
*/
|
|
6048
|
-
'procedure'?: Procedure;
|
|
6049
|
-
/**
|
|
6050
|
-
*
|
|
6051
|
-
* @type {number}
|
|
6052
|
-
* @memberof HospitalServiceModel
|
|
6053
|
-
*/
|
|
6054
|
-
'minPrice'?: number | null;
|
|
6055
|
-
/**
|
|
6056
|
-
*
|
|
6057
|
-
* @type {number}
|
|
6058
|
-
* @memberof HospitalServiceModel
|
|
6059
|
-
*/
|
|
6060
|
-
'maxPrice'?: number | null;
|
|
6061
|
-
/**
|
|
6062
|
-
*
|
|
6063
|
-
* @type {boolean}
|
|
6064
|
-
* @memberof HospitalServiceModel
|
|
6065
|
-
*/
|
|
6066
|
-
'priceReuqest'?: boolean;
|
|
6067
6093
|
/**
|
|
6068
6094
|
*
|
|
6069
6095
|
* @type {string}
|
|
@@ -6274,6 +6300,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6274
6300
|
* @memberof HospitalSpecialtyItemModel
|
|
6275
6301
|
*/
|
|
6276
6302
|
'specialtyId'?: string;
|
|
6303
|
+
/**
|
|
6304
|
+
*
|
|
6305
|
+
* @type {string}
|
|
6306
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6307
|
+
*/
|
|
6308
|
+
'specialtyName'?: string | null;
|
|
6309
|
+
/**
|
|
6310
|
+
*
|
|
6311
|
+
* @type {string}
|
|
6312
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6313
|
+
*/
|
|
6314
|
+
'specialtyTypeId'?: string;
|
|
6315
|
+
/**
|
|
6316
|
+
*
|
|
6317
|
+
* @type {string}
|
|
6318
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6319
|
+
*/
|
|
6320
|
+
'specialtyTypeName'?: string | null;
|
|
6321
|
+
/**
|
|
6322
|
+
*
|
|
6323
|
+
* @type {MarketingType}
|
|
6324
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6325
|
+
*/
|
|
6326
|
+
'marketingType'?: MarketingType;
|
|
6277
6327
|
/**
|
|
6278
6328
|
*
|
|
6279
6329
|
* @type {AuditableEntity}
|
|
@@ -6361,58 +6411,70 @@ export interface HospitalSpecialtyModel {
|
|
|
6361
6411
|
'specialtyId'?: string;
|
|
6362
6412
|
/**
|
|
6363
6413
|
*
|
|
6364
|
-
* @type {
|
|
6414
|
+
* @type {string}
|
|
6365
6415
|
* @memberof HospitalSpecialtyModel
|
|
6366
6416
|
*/
|
|
6367
|
-
'
|
|
6417
|
+
'specialtyName'?: string | null;
|
|
6368
6418
|
/**
|
|
6369
6419
|
*
|
|
6370
6420
|
* @type {string}
|
|
6371
6421
|
* @memberof HospitalSpecialtyModel
|
|
6372
6422
|
*/
|
|
6373
|
-
'
|
|
6423
|
+
'specialtyTypeId'?: string;
|
|
6374
6424
|
/**
|
|
6375
6425
|
*
|
|
6376
6426
|
* @type {string}
|
|
6377
6427
|
* @memberof HospitalSpecialtyModel
|
|
6378
6428
|
*/
|
|
6379
|
-
'
|
|
6429
|
+
'specialtyTypeName'?: string | null;
|
|
6430
|
+
/**
|
|
6431
|
+
*
|
|
6432
|
+
* @type {MarketingType}
|
|
6433
|
+
* @memberof HospitalSpecialtyModel
|
|
6434
|
+
*/
|
|
6435
|
+
'marketingType'?: MarketingType;
|
|
6436
|
+
/**
|
|
6437
|
+
*
|
|
6438
|
+
* @type {AuditableEntity}
|
|
6439
|
+
* @memberof HospitalSpecialtyModel
|
|
6440
|
+
*/
|
|
6441
|
+
'auditableEntity'?: AuditableEntity;
|
|
6380
6442
|
/**
|
|
6381
6443
|
*
|
|
6382
6444
|
* @type {string}
|
|
6383
6445
|
* @memberof HospitalSpecialtyModel
|
|
6384
6446
|
*/
|
|
6385
|
-
'
|
|
6447
|
+
'description'?: string | null;
|
|
6386
6448
|
/**
|
|
6387
6449
|
*
|
|
6388
6450
|
* @type {string}
|
|
6389
6451
|
* @memberof HospitalSpecialtyModel
|
|
6390
6452
|
*/
|
|
6391
|
-
'
|
|
6453
|
+
'overview'?: string | null;
|
|
6392
6454
|
/**
|
|
6393
6455
|
*
|
|
6394
6456
|
* @type {string}
|
|
6395
6457
|
* @memberof HospitalSpecialtyModel
|
|
6396
6458
|
*/
|
|
6397
|
-
'
|
|
6459
|
+
'content'?: string | null;
|
|
6398
6460
|
/**
|
|
6399
6461
|
*
|
|
6400
6462
|
* @type {string}
|
|
6401
6463
|
* @memberof HospitalSpecialtyModel
|
|
6402
6464
|
*/
|
|
6403
|
-
'
|
|
6465
|
+
'hospitalId'?: string;
|
|
6404
6466
|
/**
|
|
6405
6467
|
*
|
|
6406
6468
|
* @type {string}
|
|
6407
6469
|
* @memberof HospitalSpecialtyModel
|
|
6408
6470
|
*/
|
|
6409
|
-
'
|
|
6471
|
+
'hospitalName'?: string | null;
|
|
6410
6472
|
/**
|
|
6411
6473
|
*
|
|
6412
6474
|
* @type {string}
|
|
6413
6475
|
* @memberof HospitalSpecialtyModel
|
|
6414
6476
|
*/
|
|
6415
|
-
'
|
|
6477
|
+
'hospitalSlug'?: string | null;
|
|
6416
6478
|
/**
|
|
6417
6479
|
*
|
|
6418
6480
|
* @type {string}
|
|
@@ -10029,7 +10091,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10029
10091
|
* @param {string} [id]
|
|
10030
10092
|
* @param {string} [name]
|
|
10031
10093
|
* @param {string} [description]
|
|
10032
|
-
* @param {ArticleStatus} [status]
|
|
10033
10094
|
* @param {MarketingType} [marketingType]
|
|
10034
10095
|
* @param {string} [userId]
|
|
10035
10096
|
* @param {string} [userName]
|
|
@@ -10049,7 +10110,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10049
10110
|
* @param {*} [options] Override http request option.
|
|
10050
10111
|
* @throws {RequiredError}
|
|
10051
10112
|
*/
|
|
10052
|
-
apiV2ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
10113
|
+
apiV2ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10053
10114
|
/**
|
|
10054
10115
|
*
|
|
10055
10116
|
* @param {string} slug
|
|
@@ -10171,7 +10232,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
10171
10232
|
* @param {string} [id]
|
|
10172
10233
|
* @param {string} [name]
|
|
10173
10234
|
* @param {string} [description]
|
|
10174
|
-
* @param {ArticleStatus} [status]
|
|
10175
10235
|
* @param {MarketingType} [marketingType]
|
|
10176
10236
|
* @param {string} [userId]
|
|
10177
10237
|
* @param {string} [userName]
|
|
@@ -10191,7 +10251,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
10191
10251
|
* @param {*} [options] Override http request option.
|
|
10192
10252
|
* @throws {RequiredError}
|
|
10193
10253
|
*/
|
|
10194
|
-
apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
10254
|
+
apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
10195
10255
|
/**
|
|
10196
10256
|
*
|
|
10197
10257
|
* @param {string} slug
|
|
@@ -10313,7 +10373,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
10313
10373
|
* @param {string} [id]
|
|
10314
10374
|
* @param {string} [name]
|
|
10315
10375
|
* @param {string} [description]
|
|
10316
|
-
* @param {ArticleStatus} [status]
|
|
10317
10376
|
* @param {MarketingType} [marketingType]
|
|
10318
10377
|
* @param {string} [userId]
|
|
10319
10378
|
* @param {string} [userName]
|
|
@@ -10333,7 +10392,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
10333
10392
|
* @param {*} [options] Override http request option.
|
|
10334
10393
|
* @throws {RequiredError}
|
|
10335
10394
|
*/
|
|
10336
|
-
apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
10395
|
+
apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
10337
10396
|
/**
|
|
10338
10397
|
*
|
|
10339
10398
|
* @param {string} slug
|
|
@@ -10466,7 +10525,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10466
10525
|
* @param {string} [id]
|
|
10467
10526
|
* @param {string} [name]
|
|
10468
10527
|
* @param {string} [description]
|
|
10469
|
-
* @param {ArticleStatus} [status]
|
|
10470
10528
|
* @param {MarketingType} [marketingType]
|
|
10471
10529
|
* @param {string} [userId]
|
|
10472
10530
|
* @param {string} [userName]
|
|
@@ -10487,7 +10545,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10487
10545
|
* @throws {RequiredError}
|
|
10488
10546
|
* @memberof ArticlesApi
|
|
10489
10547
|
*/
|
|
10490
|
-
apiV2ArticlesGet(id?: string, name?: string, description?: string,
|
|
10548
|
+
apiV2ArticlesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
|
|
10491
10549
|
/**
|
|
10492
10550
|
*
|
|
10493
10551
|
* @param {string} slug
|
|
@@ -10773,6 +10831,13 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
10773
10831
|
* @throws {RequiredError}
|
|
10774
10832
|
*/
|
|
10775
10833
|
apiV2ChatusersCurrentGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10834
|
+
/**
|
|
10835
|
+
*
|
|
10836
|
+
* @summary Delete chatUser.
|
|
10837
|
+
* @param {*} [options] Override http request option.
|
|
10838
|
+
* @throws {RequiredError}
|
|
10839
|
+
*/
|
|
10840
|
+
apiV2ChatusersDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10776
10841
|
/**
|
|
10777
10842
|
*
|
|
10778
10843
|
* @summary Get all chatUsers.
|
|
@@ -10795,12 +10860,12 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
10795
10860
|
apiV2ChatusersPost: (createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10796
10861
|
/**
|
|
10797
10862
|
*
|
|
10798
|
-
* @summary
|
|
10799
|
-
* @param {
|
|
10863
|
+
* @summary Update chatUser.
|
|
10864
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10800
10865
|
* @param {*} [options] Override http request option.
|
|
10801
10866
|
* @throws {RequiredError}
|
|
10802
10867
|
*/
|
|
10803
|
-
|
|
10868
|
+
apiV2ChatusersPut: (updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10804
10869
|
/**
|
|
10805
10870
|
*
|
|
10806
10871
|
* @summary Get chatUser.
|
|
@@ -10809,15 +10874,6 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
10809
10874
|
* @throws {RequiredError}
|
|
10810
10875
|
*/
|
|
10811
10876
|
apiV2ChatusersUserIdGet: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10812
|
-
/**
|
|
10813
|
-
*
|
|
10814
|
-
* @summary Update chatUser.
|
|
10815
|
-
* @param {string} userId
|
|
10816
|
-
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10817
|
-
* @param {*} [options] Override http request option.
|
|
10818
|
-
* @throws {RequiredError}
|
|
10819
|
-
*/
|
|
10820
|
-
apiV2ChatusersUserIdPut: (userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10821
10877
|
};
|
|
10822
10878
|
/**
|
|
10823
10879
|
* ChatUsersApi - functional programming interface
|
|
@@ -10830,6 +10886,13 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
10830
10886
|
* @throws {RequiredError}
|
|
10831
10887
|
*/
|
|
10832
10888
|
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
10889
|
+
/**
|
|
10890
|
+
*
|
|
10891
|
+
* @summary Delete chatUser.
|
|
10892
|
+
* @param {*} [options] Override http request option.
|
|
10893
|
+
* @throws {RequiredError}
|
|
10894
|
+
*/
|
|
10895
|
+
apiV2ChatusersDelete(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10833
10896
|
/**
|
|
10834
10897
|
*
|
|
10835
10898
|
* @summary Get all chatUsers.
|
|
@@ -10852,12 +10915,12 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
10852
10915
|
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
10853
10916
|
/**
|
|
10854
10917
|
*
|
|
10855
|
-
* @summary
|
|
10856
|
-
* @param {
|
|
10918
|
+
* @summary Update chatUser.
|
|
10919
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10857
10920
|
* @param {*} [options] Override http request option.
|
|
10858
10921
|
* @throws {RequiredError}
|
|
10859
10922
|
*/
|
|
10860
|
-
|
|
10923
|
+
apiV2ChatusersPut(updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
10861
10924
|
/**
|
|
10862
10925
|
*
|
|
10863
10926
|
* @summary Get chatUser.
|
|
@@ -10866,15 +10929,6 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
10866
10929
|
* @throws {RequiredError}
|
|
10867
10930
|
*/
|
|
10868
10931
|
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
10869
|
-
/**
|
|
10870
|
-
*
|
|
10871
|
-
* @summary Update chatUser.
|
|
10872
|
-
* @param {string} userId
|
|
10873
|
-
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10874
|
-
* @param {*} [options] Override http request option.
|
|
10875
|
-
* @throws {RequiredError}
|
|
10876
|
-
*/
|
|
10877
|
-
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
10878
10932
|
};
|
|
10879
10933
|
/**
|
|
10880
10934
|
* ChatUsersApi - factory interface
|
|
@@ -10887,6 +10941,13 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
|
|
|
10887
10941
|
* @throws {RequiredError}
|
|
10888
10942
|
*/
|
|
10889
10943
|
apiV2ChatusersCurrentGet(options?: any): AxiosPromise<ChatUserModel>;
|
|
10944
|
+
/**
|
|
10945
|
+
*
|
|
10946
|
+
* @summary Delete chatUser.
|
|
10947
|
+
* @param {*} [options] Override http request option.
|
|
10948
|
+
* @throws {RequiredError}
|
|
10949
|
+
*/
|
|
10950
|
+
apiV2ChatusersDelete(options?: any): AxiosPromise<boolean>;
|
|
10890
10951
|
/**
|
|
10891
10952
|
*
|
|
10892
10953
|
* @summary Get all chatUsers.
|
|
@@ -10909,12 +10970,12 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
|
|
|
10909
10970
|
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
|
|
10910
10971
|
/**
|
|
10911
10972
|
*
|
|
10912
|
-
* @summary
|
|
10913
|
-
* @param {
|
|
10973
|
+
* @summary Update chatUser.
|
|
10974
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10914
10975
|
* @param {*} [options] Override http request option.
|
|
10915
10976
|
* @throws {RequiredError}
|
|
10916
10977
|
*/
|
|
10917
|
-
|
|
10978
|
+
apiV2ChatusersPut(updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
|
|
10918
10979
|
/**
|
|
10919
10980
|
*
|
|
10920
10981
|
* @summary Get chatUser.
|
|
@@ -10923,15 +10984,6 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
|
|
|
10923
10984
|
* @throws {RequiredError}
|
|
10924
10985
|
*/
|
|
10925
10986
|
apiV2ChatusersUserIdGet(userId: string, options?: any): AxiosPromise<ChatUserModel>;
|
|
10926
|
-
/**
|
|
10927
|
-
*
|
|
10928
|
-
* @summary Update chatUser.
|
|
10929
|
-
* @param {string} userId
|
|
10930
|
-
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10931
|
-
* @param {*} [options] Override http request option.
|
|
10932
|
-
* @throws {RequiredError}
|
|
10933
|
-
*/
|
|
10934
|
-
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
|
|
10935
10987
|
};
|
|
10936
10988
|
/**
|
|
10937
10989
|
* ChatUsersApi - object-oriented interface
|
|
@@ -10947,6 +10999,14 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
10947
10999
|
* @memberof ChatUsersApi
|
|
10948
11000
|
*/
|
|
10949
11001
|
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
11002
|
+
/**
|
|
11003
|
+
*
|
|
11004
|
+
* @summary Delete chatUser.
|
|
11005
|
+
* @param {*} [options] Override http request option.
|
|
11006
|
+
* @throws {RequiredError}
|
|
11007
|
+
* @memberof ChatUsersApi
|
|
11008
|
+
*/
|
|
11009
|
+
apiV2ChatusersDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
10950
11010
|
/**
|
|
10951
11011
|
*
|
|
10952
11012
|
* @summary Get all chatUsers.
|
|
@@ -10971,13 +11031,13 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
10971
11031
|
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
10972
11032
|
/**
|
|
10973
11033
|
*
|
|
10974
|
-
* @summary
|
|
10975
|
-
* @param {
|
|
11034
|
+
* @summary Update chatUser.
|
|
11035
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10976
11036
|
* @param {*} [options] Override http request option.
|
|
10977
11037
|
* @throws {RequiredError}
|
|
10978
11038
|
* @memberof ChatUsersApi
|
|
10979
11039
|
*/
|
|
10980
|
-
|
|
11040
|
+
apiV2ChatusersPut(updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
10981
11041
|
/**
|
|
10982
11042
|
*
|
|
10983
11043
|
* @summary Get chatUser.
|
|
@@ -10987,16 +11047,6 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
10987
11047
|
* @memberof ChatUsersApi
|
|
10988
11048
|
*/
|
|
10989
11049
|
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
10990
|
-
/**
|
|
10991
|
-
*
|
|
10992
|
-
* @summary Update chatUser.
|
|
10993
|
-
* @param {string} userId
|
|
10994
|
-
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
10995
|
-
* @param {*} [options] Override http request option.
|
|
10996
|
-
* @throws {RequiredError}
|
|
10997
|
-
* @memberof ChatUsersApi
|
|
10998
|
-
*/
|
|
10999
|
-
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
11000
11050
|
}
|
|
11001
11051
|
/**
|
|
11002
11052
|
* CommunicationsApi - axios parameter creator
|
|
@@ -12463,6 +12513,28 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12463
12513
|
* @export
|
|
12464
12514
|
*/
|
|
12465
12515
|
export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
12516
|
+
/**
|
|
12517
|
+
*
|
|
12518
|
+
* @summary Get all DoctorAffiliationMedias.
|
|
12519
|
+
* @param {string} doctorAffiliationId
|
|
12520
|
+
* @param {string} [id]
|
|
12521
|
+
* @param {MediaType} [mediaType]
|
|
12522
|
+
* @param {number} [page]
|
|
12523
|
+
* @param {number} [limit]
|
|
12524
|
+
* @param {Date} [lastRetrieved]
|
|
12525
|
+
* @param {*} [options] Override http request option.
|
|
12526
|
+
* @throws {RequiredError}
|
|
12527
|
+
*/
|
|
12528
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasGet: (doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12529
|
+
/**
|
|
12530
|
+
*
|
|
12531
|
+
* @summary Get DoctorAffiliationMedia.
|
|
12532
|
+
* @param {string} doctorAffiliationId
|
|
12533
|
+
* @param {string} mediaId
|
|
12534
|
+
* @param {*} [options] Override http request option.
|
|
12535
|
+
* @throws {RequiredError}
|
|
12536
|
+
*/
|
|
12537
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet: (doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12466
12538
|
/**
|
|
12467
12539
|
*
|
|
12468
12540
|
* @summary Get all doctor affiliations.
|
|
@@ -12505,6 +12577,28 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12505
12577
|
* @export
|
|
12506
12578
|
*/
|
|
12507
12579
|
export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
|
|
12580
|
+
/**
|
|
12581
|
+
*
|
|
12582
|
+
* @summary Get all DoctorAffiliationMedias.
|
|
12583
|
+
* @param {string} doctorAffiliationId
|
|
12584
|
+
* @param {string} [id]
|
|
12585
|
+
* @param {MediaType} [mediaType]
|
|
12586
|
+
* @param {number} [page]
|
|
12587
|
+
* @param {number} [limit]
|
|
12588
|
+
* @param {Date} [lastRetrieved]
|
|
12589
|
+
* @param {*} [options] Override http request option.
|
|
12590
|
+
* @throws {RequiredError}
|
|
12591
|
+
*/
|
|
12592
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
12593
|
+
/**
|
|
12594
|
+
*
|
|
12595
|
+
* @summary Get DoctorAffiliationMedia.
|
|
12596
|
+
* @param {string} doctorAffiliationId
|
|
12597
|
+
* @param {string} mediaId
|
|
12598
|
+
* @param {*} [options] Override http request option.
|
|
12599
|
+
* @throws {RequiredError}
|
|
12600
|
+
*/
|
|
12601
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
12508
12602
|
/**
|
|
12509
12603
|
*
|
|
12510
12604
|
* @summary Get all doctor affiliations.
|
|
@@ -12547,6 +12641,28 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12547
12641
|
* @export
|
|
12548
12642
|
*/
|
|
12549
12643
|
export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
12644
|
+
/**
|
|
12645
|
+
*
|
|
12646
|
+
* @summary Get all DoctorAffiliationMedias.
|
|
12647
|
+
* @param {string} doctorAffiliationId
|
|
12648
|
+
* @param {string} [id]
|
|
12649
|
+
* @param {MediaType} [mediaType]
|
|
12650
|
+
* @param {number} [page]
|
|
12651
|
+
* @param {number} [limit]
|
|
12652
|
+
* @param {Date} [lastRetrieved]
|
|
12653
|
+
* @param {*} [options] Override http request option.
|
|
12654
|
+
* @throws {RequiredError}
|
|
12655
|
+
*/
|
|
12656
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
12657
|
+
/**
|
|
12658
|
+
*
|
|
12659
|
+
* @summary Get DoctorAffiliationMedia.
|
|
12660
|
+
* @param {string} doctorAffiliationId
|
|
12661
|
+
* @param {string} mediaId
|
|
12662
|
+
* @param {*} [options] Override http request option.
|
|
12663
|
+
* @throws {RequiredError}
|
|
12664
|
+
*/
|
|
12665
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
12550
12666
|
/**
|
|
12551
12667
|
*
|
|
12552
12668
|
* @summary Get all doctor affiliations.
|
|
@@ -12591,6 +12707,30 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12591
12707
|
* @extends {BaseAPI}
|
|
12592
12708
|
*/
|
|
12593
12709
|
export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
12710
|
+
/**
|
|
12711
|
+
*
|
|
12712
|
+
* @summary Get all DoctorAffiliationMedias.
|
|
12713
|
+
* @param {string} doctorAffiliationId
|
|
12714
|
+
* @param {string} [id]
|
|
12715
|
+
* @param {MediaType} [mediaType]
|
|
12716
|
+
* @param {number} [page]
|
|
12717
|
+
* @param {number} [limit]
|
|
12718
|
+
* @param {Date} [lastRetrieved]
|
|
12719
|
+
* @param {*} [options] Override http request option.
|
|
12720
|
+
* @throws {RequiredError}
|
|
12721
|
+
* @memberof DoctorAffiliationsApi
|
|
12722
|
+
*/
|
|
12723
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
12724
|
+
/**
|
|
12725
|
+
*
|
|
12726
|
+
* @summary Get DoctorAffiliationMedia.
|
|
12727
|
+
* @param {string} doctorAffiliationId
|
|
12728
|
+
* @param {string} mediaId
|
|
12729
|
+
* @param {*} [options] Override http request option.
|
|
12730
|
+
* @throws {RequiredError}
|
|
12731
|
+
* @memberof DoctorAffiliationsApi
|
|
12732
|
+
*/
|
|
12733
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12594
12734
|
/**
|
|
12595
12735
|
*
|
|
12596
12736
|
* @summary Get all doctor affiliations.
|
|
@@ -14319,13 +14459,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14319
14459
|
* @param {string} [slug]
|
|
14320
14460
|
* @param {MarketingType} [marketingType]
|
|
14321
14461
|
* @param {string} [languageCode]
|
|
14462
|
+
* @param {boolean} [showHidden]
|
|
14322
14463
|
* @param {number} [page]
|
|
14323
14464
|
* @param {number} [limit]
|
|
14324
14465
|
* @param {Date} [lastRetrieved]
|
|
14325
14466
|
* @param {*} [options] Override http request option.
|
|
14326
14467
|
* @throws {RequiredError}
|
|
14327
14468
|
*/
|
|
14328
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14469
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14329
14470
|
/**
|
|
14330
14471
|
*
|
|
14331
14472
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14363,13 +14504,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14363
14504
|
* @param {string} [slug]
|
|
14364
14505
|
* @param {MarketingType} [marketingType]
|
|
14365
14506
|
* @param {string} [languageCode]
|
|
14507
|
+
* @param {boolean} [showHidden]
|
|
14366
14508
|
* @param {number} [page]
|
|
14367
14509
|
* @param {number} [limit]
|
|
14368
14510
|
* @param {Date} [lastRetrieved]
|
|
14369
14511
|
* @param {*} [options] Override http request option.
|
|
14370
14512
|
* @throws {RequiredError}
|
|
14371
14513
|
*/
|
|
14372
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14514
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14373
14515
|
/**
|
|
14374
14516
|
*
|
|
14375
14517
|
* @summary Get HospitalSpecialty by slug.
|
|
@@ -14698,13 +14840,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14698
14840
|
* @param {string} [slug]
|
|
14699
14841
|
* @param {MarketingType} [marketingType]
|
|
14700
14842
|
* @param {string} [languageCode]
|
|
14843
|
+
* @param {boolean} [showHidden]
|
|
14701
14844
|
* @param {number} [page]
|
|
14702
14845
|
* @param {number} [limit]
|
|
14703
14846
|
* @param {Date} [lastRetrieved]
|
|
14704
14847
|
* @param {*} [options] Override http request option.
|
|
14705
14848
|
* @throws {RequiredError}
|
|
14706
14849
|
*/
|
|
14707
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
14850
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
14708
14851
|
/**
|
|
14709
14852
|
*
|
|
14710
14853
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -14742,13 +14885,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14742
14885
|
* @param {string} [slug]
|
|
14743
14886
|
* @param {MarketingType} [marketingType]
|
|
14744
14887
|
* @param {string} [languageCode]
|
|
14888
|
+
* @param {boolean} [showHidden]
|
|
14745
14889
|
* @param {number} [page]
|
|
14746
14890
|
* @param {number} [limit]
|
|
14747
14891
|
* @param {Date} [lastRetrieved]
|
|
14748
14892
|
* @param {*} [options] Override http request option.
|
|
14749
14893
|
* @throws {RequiredError}
|
|
14750
14894
|
*/
|
|
14751
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
14895
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
14752
14896
|
/**
|
|
14753
14897
|
*
|
|
14754
14898
|
* @summary Get HospitalSpecialty by slug.
|
|
@@ -15077,13 +15221,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15077
15221
|
* @param {string} [slug]
|
|
15078
15222
|
* @param {MarketingType} [marketingType]
|
|
15079
15223
|
* @param {string} [languageCode]
|
|
15224
|
+
* @param {boolean} [showHidden]
|
|
15080
15225
|
* @param {number} [page]
|
|
15081
15226
|
* @param {number} [limit]
|
|
15082
15227
|
* @param {Date} [lastRetrieved]
|
|
15083
15228
|
* @param {*} [options] Override http request option.
|
|
15084
15229
|
* @throws {RequiredError}
|
|
15085
15230
|
*/
|
|
15086
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15231
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15087
15232
|
/**
|
|
15088
15233
|
*
|
|
15089
15234
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15121,13 +15266,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15121
15266
|
* @param {string} [slug]
|
|
15122
15267
|
* @param {MarketingType} [marketingType]
|
|
15123
15268
|
* @param {string} [languageCode]
|
|
15269
|
+
* @param {boolean} [showHidden]
|
|
15124
15270
|
* @param {number} [page]
|
|
15125
15271
|
* @param {number} [limit]
|
|
15126
15272
|
* @param {Date} [lastRetrieved]
|
|
15127
15273
|
* @param {*} [options] Override http request option.
|
|
15128
15274
|
* @throws {RequiredError}
|
|
15129
15275
|
*/
|
|
15130
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
15276
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
15131
15277
|
/**
|
|
15132
15278
|
*
|
|
15133
15279
|
* @summary Get HospitalSpecialty by slug.
|
|
@@ -15472,6 +15618,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15472
15618
|
* @param {string} [slug]
|
|
15473
15619
|
* @param {MarketingType} [marketingType]
|
|
15474
15620
|
* @param {string} [languageCode]
|
|
15621
|
+
* @param {boolean} [showHidden]
|
|
15475
15622
|
* @param {number} [page]
|
|
15476
15623
|
* @param {number} [limit]
|
|
15477
15624
|
* @param {Date} [lastRetrieved]
|
|
@@ -15479,7 +15626,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15479
15626
|
* @throws {RequiredError}
|
|
15480
15627
|
* @memberof HospitalsApi
|
|
15481
15628
|
*/
|
|
15482
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15629
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15483
15630
|
/**
|
|
15484
15631
|
*
|
|
15485
15632
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -15519,6 +15666,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15519
15666
|
* @param {string} [slug]
|
|
15520
15667
|
* @param {MarketingType} [marketingType]
|
|
15521
15668
|
* @param {string} [languageCode]
|
|
15669
|
+
* @param {boolean} [showHidden]
|
|
15522
15670
|
* @param {number} [page]
|
|
15523
15671
|
* @param {number} [limit]
|
|
15524
15672
|
* @param {Date} [lastRetrieved]
|
|
@@ -15526,7 +15674,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15526
15674
|
* @throws {RequiredError}
|
|
15527
15675
|
* @memberof HospitalsApi
|
|
15528
15676
|
*/
|
|
15529
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
15677
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
15530
15678
|
/**
|
|
15531
15679
|
*
|
|
15532
15680
|
* @summary Get HospitalSpecialty by slug.
|