ch-admin-api-client-typescript 3.5.1 → 3.5.4
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 +188 -30
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +98 -7
- package/package.json +1 -1
- package/src/api.ts +233 -33
package/lib/api.d.ts
CHANGED
|
@@ -2701,6 +2701,12 @@ export interface ContributorItemModel {
|
|
|
2701
2701
|
* @memberof ContributorItemModel
|
|
2702
2702
|
*/
|
|
2703
2703
|
'photoThumbnail'?: string | null;
|
|
2704
|
+
/**
|
|
2705
|
+
*
|
|
2706
|
+
* @type {string}
|
|
2707
|
+
* @memberof ContributorItemModel
|
|
2708
|
+
*/
|
|
2709
|
+
'website'?: string | null;
|
|
2704
2710
|
/**
|
|
2705
2711
|
*
|
|
2706
2712
|
* @type {number}
|
|
@@ -2792,6 +2798,12 @@ export interface ContributorModel {
|
|
|
2792
2798
|
* @memberof ContributorModel
|
|
2793
2799
|
*/
|
|
2794
2800
|
'photoThumbnail'?: string | null;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {string}
|
|
2804
|
+
* @memberof ContributorModel
|
|
2805
|
+
*/
|
|
2806
|
+
'website'?: string | null;
|
|
2795
2807
|
/**
|
|
2796
2808
|
*
|
|
2797
2809
|
* @type {number}
|
|
@@ -2916,6 +2928,12 @@ export interface CountryItemModel {
|
|
|
2916
2928
|
* @memberof CountryItemModel
|
|
2917
2929
|
*/
|
|
2918
2930
|
'confirmed'?: boolean;
|
|
2931
|
+
/**
|
|
2932
|
+
*
|
|
2933
|
+
* @type {string}
|
|
2934
|
+
* @memberof CountryItemModel
|
|
2935
|
+
*/
|
|
2936
|
+
'logo'?: string | null;
|
|
2919
2937
|
/**
|
|
2920
2938
|
*
|
|
2921
2939
|
* @type {AuditableEntity}
|
|
@@ -2959,6 +2977,12 @@ export interface CountryModel {
|
|
|
2959
2977
|
* @memberof CountryModel
|
|
2960
2978
|
*/
|
|
2961
2979
|
'confirmed'?: boolean;
|
|
2980
|
+
/**
|
|
2981
|
+
*
|
|
2982
|
+
* @type {string}
|
|
2983
|
+
* @memberof CountryModel
|
|
2984
|
+
*/
|
|
2985
|
+
'logo'?: string | null;
|
|
2962
2986
|
/**
|
|
2963
2987
|
*
|
|
2964
2988
|
* @type {AuditableEntity}
|
|
@@ -2985,10 +3009,10 @@ export interface CountryModel {
|
|
|
2985
3009
|
'content'?: string | null;
|
|
2986
3010
|
/**
|
|
2987
3011
|
*
|
|
2988
|
-
* @type {
|
|
3012
|
+
* @type {Array<MediaModel>}
|
|
2989
3013
|
* @memberof CountryModel
|
|
2990
3014
|
*/
|
|
2991
|
-
'
|
|
3015
|
+
'medias'?: Array<MediaModel> | null;
|
|
2992
3016
|
}
|
|
2993
3017
|
/**
|
|
2994
3018
|
*
|
|
@@ -7544,6 +7568,12 @@ export interface HospitalItemModel {
|
|
|
7544
7568
|
* @memberof HospitalItemModel
|
|
7545
7569
|
*/
|
|
7546
7570
|
'languageCode'?: string | null;
|
|
7571
|
+
/**
|
|
7572
|
+
*
|
|
7573
|
+
* @type {string}
|
|
7574
|
+
* @memberof HospitalItemModel
|
|
7575
|
+
*/
|
|
7576
|
+
'countryName'?: string | null;
|
|
7547
7577
|
/**
|
|
7548
7578
|
*
|
|
7549
7579
|
* @type {string}
|
|
@@ -7679,6 +7709,12 @@ export interface HospitalModel {
|
|
|
7679
7709
|
* @memberof HospitalModel
|
|
7680
7710
|
*/
|
|
7681
7711
|
'languageCode'?: string | null;
|
|
7712
|
+
/**
|
|
7713
|
+
*
|
|
7714
|
+
* @type {string}
|
|
7715
|
+
* @memberof HospitalModel
|
|
7716
|
+
*/
|
|
7717
|
+
'countryName'?: string | null;
|
|
7682
7718
|
/**
|
|
7683
7719
|
*
|
|
7684
7720
|
* @type {string}
|
|
@@ -7866,6 +7902,36 @@ export interface HospitalServiceItemModel {
|
|
|
7866
7902
|
* @memberof HospitalServiceItemModel
|
|
7867
7903
|
*/
|
|
7868
7904
|
'confirmed'?: boolean;
|
|
7905
|
+
/**
|
|
7906
|
+
*
|
|
7907
|
+
* @type {string}
|
|
7908
|
+
* @memberof HospitalServiceItemModel
|
|
7909
|
+
*/
|
|
7910
|
+
'hospitalId'?: string;
|
|
7911
|
+
/**
|
|
7912
|
+
*
|
|
7913
|
+
* @type {string}
|
|
7914
|
+
* @memberof HospitalServiceItemModel
|
|
7915
|
+
*/
|
|
7916
|
+
'hospitalName'?: string | null;
|
|
7917
|
+
/**
|
|
7918
|
+
*
|
|
7919
|
+
* @type {string}
|
|
7920
|
+
* @memberof HospitalServiceItemModel
|
|
7921
|
+
*/
|
|
7922
|
+
'hospitalSlug'?: string | null;
|
|
7923
|
+
/**
|
|
7924
|
+
*
|
|
7925
|
+
* @type {string}
|
|
7926
|
+
* @memberof HospitalServiceItemModel
|
|
7927
|
+
*/
|
|
7928
|
+
'specialtyId'?: string;
|
|
7929
|
+
/**
|
|
7930
|
+
*
|
|
7931
|
+
* @type {string}
|
|
7932
|
+
* @memberof HospitalServiceItemModel
|
|
7933
|
+
*/
|
|
7934
|
+
'specialtyName'?: string | null;
|
|
7869
7935
|
/**
|
|
7870
7936
|
*
|
|
7871
7937
|
* @type {number}
|
|
@@ -7929,76 +7995,76 @@ export interface HospitalServiceModel {
|
|
|
7929
7995
|
'confirmed'?: boolean;
|
|
7930
7996
|
/**
|
|
7931
7997
|
*
|
|
7932
|
-
* @type {
|
|
7998
|
+
* @type {string}
|
|
7933
7999
|
* @memberof HospitalServiceModel
|
|
7934
8000
|
*/
|
|
7935
|
-
'
|
|
8001
|
+
'hospitalId'?: string;
|
|
7936
8002
|
/**
|
|
7937
8003
|
*
|
|
7938
8004
|
* @type {string}
|
|
7939
8005
|
* @memberof HospitalServiceModel
|
|
7940
8006
|
*/
|
|
7941
|
-
'
|
|
8007
|
+
'hospitalName'?: string | null;
|
|
7942
8008
|
/**
|
|
7943
8009
|
*
|
|
7944
8010
|
* @type {string}
|
|
7945
8011
|
* @memberof HospitalServiceModel
|
|
7946
8012
|
*/
|
|
7947
|
-
'
|
|
8013
|
+
'hospitalSlug'?: string | null;
|
|
7948
8014
|
/**
|
|
7949
8015
|
*
|
|
7950
|
-
* @type {
|
|
8016
|
+
* @type {string}
|
|
7951
8017
|
* @memberof HospitalServiceModel
|
|
7952
8018
|
*/
|
|
7953
|
-
'
|
|
8019
|
+
'specialtyId'?: string;
|
|
7954
8020
|
/**
|
|
7955
8021
|
*
|
|
7956
8022
|
* @type {string}
|
|
7957
8023
|
* @memberof HospitalServiceModel
|
|
7958
8024
|
*/
|
|
7959
|
-
'
|
|
8025
|
+
'specialtyName'?: string | null;
|
|
7960
8026
|
/**
|
|
7961
8027
|
*
|
|
7962
|
-
* @type {
|
|
8028
|
+
* @type {number}
|
|
7963
8029
|
* @memberof HospitalServiceModel
|
|
7964
8030
|
*/
|
|
7965
|
-
'
|
|
8031
|
+
'order'?: number;
|
|
7966
8032
|
/**
|
|
7967
8033
|
*
|
|
7968
8034
|
* @type {string}
|
|
7969
8035
|
* @memberof HospitalServiceModel
|
|
7970
8036
|
*/
|
|
7971
|
-
'
|
|
8037
|
+
'photo'?: string | null;
|
|
7972
8038
|
/**
|
|
7973
8039
|
*
|
|
7974
8040
|
* @type {string}
|
|
7975
8041
|
* @memberof HospitalServiceModel
|
|
7976
8042
|
*/
|
|
7977
|
-
'
|
|
8043
|
+
'photoThumbnail'?: string | null;
|
|
7978
8044
|
/**
|
|
7979
8045
|
*
|
|
7980
|
-
* @type {
|
|
8046
|
+
* @type {AuditableEntity}
|
|
7981
8047
|
* @memberof HospitalServiceModel
|
|
7982
8048
|
*/
|
|
7983
|
-
'
|
|
8049
|
+
'auditableEntity'?: AuditableEntity;
|
|
7984
8050
|
/**
|
|
7985
8051
|
*
|
|
7986
8052
|
* @type {string}
|
|
7987
8053
|
* @memberof HospitalServiceModel
|
|
7988
8054
|
*/
|
|
7989
|
-
'
|
|
8055
|
+
'description'?: string | null;
|
|
7990
8056
|
/**
|
|
7991
8057
|
*
|
|
7992
8058
|
* @type {string}
|
|
7993
8059
|
* @memberof HospitalServiceModel
|
|
7994
8060
|
*/
|
|
7995
|
-
'
|
|
8061
|
+
'overview'?: string | null;
|
|
7996
8062
|
/**
|
|
7997
8063
|
*
|
|
7998
8064
|
* @type {string}
|
|
7999
8065
|
* @memberof HospitalServiceModel
|
|
8000
8066
|
*/
|
|
8001
|
-
'
|
|
8067
|
+
'content'?: string | null;
|
|
8002
8068
|
/**
|
|
8003
8069
|
*
|
|
8004
8070
|
* @type {string}
|
|
@@ -8251,6 +8317,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8251
8317
|
* @memberof HospitalSpecialtyItemModel
|
|
8252
8318
|
*/
|
|
8253
8319
|
'specialtyId'?: string;
|
|
8320
|
+
/**
|
|
8321
|
+
*
|
|
8322
|
+
* @type {string}
|
|
8323
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8324
|
+
*/
|
|
8325
|
+
'specialtyName'?: string | null;
|
|
8326
|
+
/**
|
|
8327
|
+
*
|
|
8328
|
+
* @type {string}
|
|
8329
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8330
|
+
*/
|
|
8331
|
+
'specialtyTypeId'?: string;
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @type {string}
|
|
8335
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8336
|
+
*/
|
|
8337
|
+
'specialtyTypeName'?: string | null;
|
|
8338
|
+
/**
|
|
8339
|
+
*
|
|
8340
|
+
* @type {MarketingType}
|
|
8341
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8342
|
+
*/
|
|
8343
|
+
'marketingType'?: MarketingType;
|
|
8254
8344
|
}
|
|
8255
8345
|
/**
|
|
8256
8346
|
*
|
|
@@ -8335,49 +8425,61 @@ export interface HospitalSpecialtyModel {
|
|
|
8335
8425
|
* @type {string}
|
|
8336
8426
|
* @memberof HospitalSpecialtyModel
|
|
8337
8427
|
*/
|
|
8338
|
-
'
|
|
8428
|
+
'specialtyName'?: string | null;
|
|
8339
8429
|
/**
|
|
8340
8430
|
*
|
|
8341
8431
|
* @type {string}
|
|
8342
8432
|
* @memberof HospitalSpecialtyModel
|
|
8343
8433
|
*/
|
|
8344
|
-
'
|
|
8434
|
+
'specialtyTypeId'?: string;
|
|
8345
8435
|
/**
|
|
8346
8436
|
*
|
|
8347
8437
|
* @type {string}
|
|
8348
8438
|
* @memberof HospitalSpecialtyModel
|
|
8349
8439
|
*/
|
|
8350
|
-
'
|
|
8440
|
+
'specialtyTypeName'?: string | null;
|
|
8441
|
+
/**
|
|
8442
|
+
*
|
|
8443
|
+
* @type {MarketingType}
|
|
8444
|
+
* @memberof HospitalSpecialtyModel
|
|
8445
|
+
*/
|
|
8446
|
+
'marketingType'?: MarketingType;
|
|
8351
8447
|
/**
|
|
8352
8448
|
*
|
|
8353
8449
|
* @type {string}
|
|
8354
8450
|
* @memberof HospitalSpecialtyModel
|
|
8355
8451
|
*/
|
|
8356
|
-
'
|
|
8452
|
+
'description'?: string | null;
|
|
8357
8453
|
/**
|
|
8358
8454
|
*
|
|
8359
8455
|
* @type {string}
|
|
8360
8456
|
* @memberof HospitalSpecialtyModel
|
|
8361
8457
|
*/
|
|
8362
|
-
'
|
|
8458
|
+
'overview'?: string | null;
|
|
8363
8459
|
/**
|
|
8364
8460
|
*
|
|
8365
8461
|
* @type {string}
|
|
8366
8462
|
* @memberof HospitalSpecialtyModel
|
|
8367
8463
|
*/
|
|
8368
|
-
'
|
|
8464
|
+
'content'?: string | null;
|
|
8369
8465
|
/**
|
|
8370
8466
|
*
|
|
8371
8467
|
* @type {string}
|
|
8372
8468
|
* @memberof HospitalSpecialtyModel
|
|
8373
8469
|
*/
|
|
8374
|
-
'
|
|
8470
|
+
'hospitalId'?: string;
|
|
8375
8471
|
/**
|
|
8376
8472
|
*
|
|
8377
8473
|
* @type {string}
|
|
8378
8474
|
* @memberof HospitalSpecialtyModel
|
|
8379
8475
|
*/
|
|
8380
|
-
'
|
|
8476
|
+
'hospitalName'?: string | null;
|
|
8477
|
+
/**
|
|
8478
|
+
*
|
|
8479
|
+
* @type {string}
|
|
8480
|
+
* @memberof HospitalSpecialtyModel
|
|
8481
|
+
*/
|
|
8482
|
+
'hospitalSlug'?: string | null;
|
|
8381
8483
|
/**
|
|
8382
8484
|
*
|
|
8383
8485
|
* @type {string}
|
|
@@ -12689,6 +12791,25 @@ export interface UpdateHospitalSnsHandleCommand {
|
|
|
12689
12791
|
*/
|
|
12690
12792
|
'handle'?: string | null;
|
|
12691
12793
|
}
|
|
12794
|
+
/**
|
|
12795
|
+
*
|
|
12796
|
+
* @export
|
|
12797
|
+
* @interface UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12798
|
+
*/
|
|
12799
|
+
export interface UpdateHospitalSpecialtiesSearchIndexCommand {
|
|
12800
|
+
/**
|
|
12801
|
+
*
|
|
12802
|
+
* @type {number}
|
|
12803
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12804
|
+
*/
|
|
12805
|
+
'batchSize'?: number | null;
|
|
12806
|
+
/**
|
|
12807
|
+
*
|
|
12808
|
+
* @type {boolean}
|
|
12809
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12810
|
+
*/
|
|
12811
|
+
'reCreate'?: boolean | null;
|
|
12812
|
+
}
|
|
12692
12813
|
/**
|
|
12693
12814
|
*
|
|
12694
12815
|
* @export
|
|
@@ -18778,6 +18899,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18778
18899
|
* @param {string} [doctorId]
|
|
18779
18900
|
* @param {string} [doctorName]
|
|
18780
18901
|
* @param {string} [doctorSlug]
|
|
18902
|
+
* @param {string} [specialtyId]
|
|
18781
18903
|
* @param {string} [languageCode]
|
|
18782
18904
|
* @param {boolean} [showHidden]
|
|
18783
18905
|
* @param {number} [page]
|
|
@@ -18786,7 +18908,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18786
18908
|
* @param {*} [options] Override http request option.
|
|
18787
18909
|
* @throws {RequiredError}
|
|
18788
18910
|
*/
|
|
18789
|
-
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18911
|
+
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18790
18912
|
/**
|
|
18791
18913
|
*
|
|
18792
18914
|
* @summary Delete doctor affiliation.
|
|
@@ -18834,6 +18956,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18834
18956
|
* @param {string} [doctorId]
|
|
18835
18957
|
* @param {string} [doctorName]
|
|
18836
18958
|
* @param {string} [doctorSlug]
|
|
18959
|
+
* @param {string} [specialtyId]
|
|
18837
18960
|
* @param {string} [languageCode]
|
|
18838
18961
|
* @param {boolean} [showHidden]
|
|
18839
18962
|
* @param {number} [page]
|
|
@@ -18842,7 +18965,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18842
18965
|
* @param {*} [options] Override http request option.
|
|
18843
18966
|
* @throws {RequiredError}
|
|
18844
18967
|
*/
|
|
18845
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: 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>>;
|
|
18968
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: 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>>;
|
|
18846
18969
|
/**
|
|
18847
18970
|
*
|
|
18848
18971
|
* @summary Delete doctor affiliation.
|
|
@@ -18890,6 +19013,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18890
19013
|
* @param {string} [doctorId]
|
|
18891
19014
|
* @param {string} [doctorName]
|
|
18892
19015
|
* @param {string} [doctorSlug]
|
|
19016
|
+
* @param {string} [specialtyId]
|
|
18893
19017
|
* @param {string} [languageCode]
|
|
18894
19018
|
* @param {boolean} [showHidden]
|
|
18895
19019
|
* @param {number} [page]
|
|
@@ -18898,7 +19022,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18898
19022
|
* @param {*} [options] Override http request option.
|
|
18899
19023
|
* @throws {RequiredError}
|
|
18900
19024
|
*/
|
|
18901
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19025
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
18902
19026
|
/**
|
|
18903
19027
|
*
|
|
18904
19028
|
* @summary Delete doctor affiliation.
|
|
@@ -18948,6 +19072,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18948
19072
|
* @param {string} [doctorId]
|
|
18949
19073
|
* @param {string} [doctorName]
|
|
18950
19074
|
* @param {string} [doctorSlug]
|
|
19075
|
+
* @param {string} [specialtyId]
|
|
18951
19076
|
* @param {string} [languageCode]
|
|
18952
19077
|
* @param {boolean} [showHidden]
|
|
18953
19078
|
* @param {number} [page]
|
|
@@ -18957,7 +19082,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18957
19082
|
* @throws {RequiredError}
|
|
18958
19083
|
* @memberof DoctorAffiliationsApi
|
|
18959
19084
|
*/
|
|
18960
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19085
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
18961
19086
|
/**
|
|
18962
19087
|
*
|
|
18963
19088
|
* @summary Delete doctor affiliation.
|
|
@@ -26782,6 +26907,14 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
26782
26907
|
* @throws {RequiredError}
|
|
26783
26908
|
*/
|
|
26784
26909
|
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26910
|
+
/**
|
|
26911
|
+
*
|
|
26912
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26913
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26914
|
+
* @param {*} [options] Override http request option.
|
|
26915
|
+
* @throws {RequiredError}
|
|
26916
|
+
*/
|
|
26917
|
+
apiV1SearchHospitalspecialtiesPost: (updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26785
26918
|
/**
|
|
26786
26919
|
*
|
|
26787
26920
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26828,6 +26961,14 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
26828
26961
|
* @throws {RequiredError}
|
|
26829
26962
|
*/
|
|
26830
26963
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26964
|
+
/**
|
|
26965
|
+
*
|
|
26966
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26967
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26968
|
+
* @param {*} [options] Override http request option.
|
|
26969
|
+
* @throws {RequiredError}
|
|
26970
|
+
*/
|
|
26971
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26831
26972
|
/**
|
|
26832
26973
|
*
|
|
26833
26974
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26874,6 +27015,14 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
26874
27015
|
* @throws {RequiredError}
|
|
26875
27016
|
*/
|
|
26876
27017
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
27018
|
+
/**
|
|
27019
|
+
*
|
|
27020
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
27021
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
27022
|
+
* @param {*} [options] Override http request option.
|
|
27023
|
+
* @throws {RequiredError}
|
|
27024
|
+
*/
|
|
27025
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26877
27026
|
/**
|
|
26878
27027
|
*
|
|
26879
27028
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26925,6 +27074,15 @@ export declare class SearchApi extends BaseAPI {
|
|
|
26925
27074
|
* @memberof SearchApi
|
|
26926
27075
|
*/
|
|
26927
27076
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
27077
|
+
/**
|
|
27078
|
+
*
|
|
27079
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
27080
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
27081
|
+
* @param {*} [options] Override http request option.
|
|
27082
|
+
* @throws {RequiredError}
|
|
27083
|
+
* @memberof SearchApi
|
|
27084
|
+
*/
|
|
27085
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26928
27086
|
/**
|
|
26929
27087
|
*
|
|
26930
27088
|
* @summary Update or Re-create specialties Azure Search Services Index
|