ch-api-client-typescript2 2.7.0 → 2.7.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 CHANGED
@@ -740,6 +740,16 @@ export interface AuditableEntity {
740
740
  */
741
741
  'isDeleted'?: boolean;
742
742
  }
743
+ /**
744
+ *
745
+ * @export
746
+ * @enum {string}
747
+ */
748
+ export declare enum AutocompleteMode {
749
+ OneTerm = "OneTerm",
750
+ TwoTerms = "TwoTerms",
751
+ OneTermWithContext = "OneTermWithContext"
752
+ }
743
753
  /**
744
754
  *
745
755
  * @export
@@ -771,6 +781,69 @@ export interface AwardModel {
771
781
  */
772
782
  'date'?: Date;
773
783
  }
784
+ /**
785
+ *
786
+ * @export
787
+ * @interface AzureSearchModel
788
+ */
789
+ export interface AzureSearchModel {
790
+ /**
791
+ *
792
+ * @type {number}
793
+ * @memberof AzureSearchModel
794
+ */
795
+ 'hospitals'?: number;
796
+ /**
797
+ *
798
+ * @type {number}
799
+ * @memberof AzureSearchModel
800
+ */
801
+ 'doctors'?: number;
802
+ /**
803
+ *
804
+ * @type {number}
805
+ * @memberof AzureSearchModel
806
+ */
807
+ 'deals'?: number;
808
+ /**
809
+ *
810
+ * @type {number}
811
+ * @memberof AzureSearchModel
812
+ */
813
+ 'specialties'?: number;
814
+ /**
815
+ *
816
+ * @type {number}
817
+ * @memberof AzureSearchModel
818
+ */
819
+ 'specialtyTypes'?: number;
820
+ }
821
+ /**
822
+ *
823
+ * @export
824
+ * @interface AzureSearchServiceAutocompleteModel
825
+ */
826
+ export interface AzureSearchServiceAutocompleteModel {
827
+ /**
828
+ *
829
+ * @type {Array<string>}
830
+ * @memberof AzureSearchServiceAutocompleteModel
831
+ */
832
+ 'values'?: Array<string> | null;
833
+ }
834
+ /**
835
+ *
836
+ * @export
837
+ * @interface AzureSearchServiceSuggestModel
838
+ */
839
+ export interface AzureSearchServiceSuggestModel {
840
+ /**
841
+ *
842
+ * @type {Array<string>}
843
+ * @memberof AzureSearchServiceSuggestModel
844
+ */
845
+ 'values'?: Array<string> | null;
846
+ }
774
847
  /**
775
848
  *
776
849
  * @export
@@ -6379,6 +6452,12 @@ export interface NotificationModel {
6379
6452
  * @memberof NotificationModel
6380
6453
  */
6381
6454
  'isChecked'?: boolean;
6455
+ /**
6456
+ *
6457
+ * @type {boolean}
6458
+ * @memberof NotificationModel
6459
+ */
6460
+ 'isDeleted'?: boolean;
6382
6461
  }
6383
6462
  /**
6384
6463
  *
@@ -11019,6 +11098,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
11019
11098
  * @param {string} [hospitalId]
11020
11099
  * @param {string} [languageCode]
11021
11100
  * @param {boolean} [returnDefaultValue]
11101
+ * @param {Array<string>} [ids]
11022
11102
  * @param {string} [id]
11023
11103
  * @param {string} [fullname]
11024
11104
  * @param {string} [email]
@@ -11032,7 +11112,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
11032
11112
  * @param {*} [options] Override http request option.
11033
11113
  * @throws {RequiredError}
11034
11114
  */
11035
- apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11115
+ apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11036
11116
  /**
11037
11117
  *
11038
11118
  * @param {string} slug
@@ -11202,6 +11282,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
11202
11282
  * @param {string} [hospitalId]
11203
11283
  * @param {string} [languageCode]
11204
11284
  * @param {boolean} [returnDefaultValue]
11285
+ * @param {Array<string>} [ids]
11205
11286
  * @param {string} [id]
11206
11287
  * @param {string} [fullname]
11207
11288
  * @param {string} [email]
@@ -11215,7 +11296,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
11215
11296
  * @param {*} [options] Override http request option.
11216
11297
  * @throws {RequiredError}
11217
11298
  */
11218
- apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
11299
+ apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
11219
11300
  /**
11220
11301
  *
11221
11302
  * @param {string} slug
@@ -11385,6 +11466,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
11385
11466
  * @param {string} [hospitalId]
11386
11467
  * @param {string} [languageCode]
11387
11468
  * @param {boolean} [returnDefaultValue]
11469
+ * @param {Array<string>} [ids]
11388
11470
  * @param {string} [id]
11389
11471
  * @param {string} [fullname]
11390
11472
  * @param {string} [email]
@@ -11398,7 +11480,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
11398
11480
  * @param {*} [options] Override http request option.
11399
11481
  * @throws {RequiredError}
11400
11482
  */
11401
- apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
11483
+ apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
11402
11484
  /**
11403
11485
  *
11404
11486
  * @param {string} slug
@@ -11583,6 +11665,7 @@ export declare class DoctorsApi extends BaseAPI {
11583
11665
  * @param {string} [hospitalId]
11584
11666
  * @param {string} [languageCode]
11585
11667
  * @param {boolean} [returnDefaultValue]
11668
+ * @param {Array<string>} [ids]
11586
11669
  * @param {string} [id]
11587
11670
  * @param {string} [fullname]
11588
11671
  * @param {string} [email]
@@ -11597,7 +11680,7 @@ export declare class DoctorsApi extends BaseAPI {
11597
11680
  * @throws {RequiredError}
11598
11681
  * @memberof DoctorsApi
11599
11682
  */
11600
- apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
11683
+ apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
11601
11684
  /**
11602
11685
  *
11603
11686
  * @param {string} slug
@@ -14199,6 +14282,488 @@ export declare class ProfilesApi extends BaseAPI {
14199
14282
  */
14200
14283
  apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
14201
14284
  }
14285
+ /**
14286
+ * SearchApi - axios parameter creator
14287
+ * @export
14288
+ */
14289
+ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
14290
+ /**
14291
+ *
14292
+ * @param {string} keyword
14293
+ * @param {AutocompleteMode} [mode]
14294
+ * @param {boolean} [fuzzy]
14295
+ * @param {boolean} [highlights]
14296
+ * @param {number} [size]
14297
+ * @param {number} [minimumCoverage]
14298
+ * @param {*} [options] Override http request option.
14299
+ * @throws {RequiredError}
14300
+ */
14301
+ apiV2SearchAutocompleteGet: (keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14302
+ /**
14303
+ *
14304
+ * @param {string} [searchTerm]
14305
+ * @param {boolean} [countOnly]
14306
+ * @param {string} [countryId]
14307
+ * @param {string} [hospitalId]
14308
+ * @param {MarketingType} [marketingType]
14309
+ * @param {string} [languageCode]
14310
+ * @param {number} [page]
14311
+ * @param {number} [limit]
14312
+ * @param {Date} [lastRetrieved]
14313
+ * @param {*} [options] Override http request option.
14314
+ * @throws {RequiredError}
14315
+ */
14316
+ apiV2SearchDealsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14317
+ /**
14318
+ *
14319
+ * @param {string} [searchTerm]
14320
+ * @param {boolean} [countOnly]
14321
+ * @param {string} [countryId]
14322
+ * @param {string} [hospitalId]
14323
+ * @param {MarketingType} [marketingType]
14324
+ * @param {string} [languageCode]
14325
+ * @param {number} [page]
14326
+ * @param {number} [limit]
14327
+ * @param {Date} [lastRetrieved]
14328
+ * @param {*} [options] Override http request option.
14329
+ * @throws {RequiredError}
14330
+ */
14331
+ apiV2SearchDoctorsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14332
+ /**
14333
+ *
14334
+ * @param {string} [searchTerm]
14335
+ * @param {boolean} [countOnly]
14336
+ * @param {string} [countryId]
14337
+ * @param {string} [hospitalId]
14338
+ * @param {MarketingType} [marketingType]
14339
+ * @param {string} [languageCode]
14340
+ * @param {number} [page]
14341
+ * @param {number} [limit]
14342
+ * @param {Date} [lastRetrieved]
14343
+ * @param {*} [options] Override http request option.
14344
+ * @throws {RequiredError}
14345
+ */
14346
+ apiV2SearchGetcountGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14347
+ /**
14348
+ *
14349
+ * @param {string} [searchTerm]
14350
+ * @param {boolean} [countOnly]
14351
+ * @param {string} [countryId]
14352
+ * @param {string} [hospitalId]
14353
+ * @param {MarketingType} [marketingType]
14354
+ * @param {string} [languageCode]
14355
+ * @param {number} [page]
14356
+ * @param {number} [limit]
14357
+ * @param {Date} [lastRetrieved]
14358
+ * @param {*} [options] Override http request option.
14359
+ * @throws {RequiredError}
14360
+ */
14361
+ apiV2SearchHospitalsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14362
+ /**
14363
+ *
14364
+ * @param {string} [searchTerm]
14365
+ * @param {boolean} [countOnly]
14366
+ * @param {string} [countryId]
14367
+ * @param {string} [hospitalId]
14368
+ * @param {MarketingType} [marketingType]
14369
+ * @param {string} [languageCode]
14370
+ * @param {number} [page]
14371
+ * @param {number} [limit]
14372
+ * @param {Date} [lastRetrieved]
14373
+ * @param {*} [options] Override http request option.
14374
+ * @throws {RequiredError}
14375
+ */
14376
+ apiV2SearchSpecialtiesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14377
+ /**
14378
+ *
14379
+ * @param {string} [searchTerm]
14380
+ * @param {boolean} [countOnly]
14381
+ * @param {string} [countryId]
14382
+ * @param {string} [hospitalId]
14383
+ * @param {MarketingType} [marketingType]
14384
+ * @param {string} [languageCode]
14385
+ * @param {number} [page]
14386
+ * @param {number} [limit]
14387
+ * @param {Date} [lastRetrieved]
14388
+ * @param {*} [options] Override http request option.
14389
+ * @throws {RequiredError}
14390
+ */
14391
+ apiV2SearchSpecialtytypesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14392
+ /**
14393
+ *
14394
+ * @param {string} keyword
14395
+ * @param {boolean} [fuzzy]
14396
+ * @param {boolean} [highlights]
14397
+ * @param {number} [size]
14398
+ * @param {*} [options] Override http request option.
14399
+ * @throws {RequiredError}
14400
+ */
14401
+ apiV2SearchSuggestGet: (keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14402
+ };
14403
+ /**
14404
+ * SearchApi - functional programming interface
14405
+ * @export
14406
+ */
14407
+ export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
14408
+ /**
14409
+ *
14410
+ * @param {string} keyword
14411
+ * @param {AutocompleteMode} [mode]
14412
+ * @param {boolean} [fuzzy]
14413
+ * @param {boolean} [highlights]
14414
+ * @param {number} [size]
14415
+ * @param {number} [minimumCoverage]
14416
+ * @param {*} [options] Override http request option.
14417
+ * @throws {RequiredError}
14418
+ */
14419
+ apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
14420
+ /**
14421
+ *
14422
+ * @param {string} [searchTerm]
14423
+ * @param {boolean} [countOnly]
14424
+ * @param {string} [countryId]
14425
+ * @param {string} [hospitalId]
14426
+ * @param {MarketingType} [marketingType]
14427
+ * @param {string} [languageCode]
14428
+ * @param {number} [page]
14429
+ * @param {number} [limit]
14430
+ * @param {Date} [lastRetrieved]
14431
+ * @param {*} [options] Override http request option.
14432
+ * @throws {RequiredError}
14433
+ */
14434
+ apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
14435
+ /**
14436
+ *
14437
+ * @param {string} [searchTerm]
14438
+ * @param {boolean} [countOnly]
14439
+ * @param {string} [countryId]
14440
+ * @param {string} [hospitalId]
14441
+ * @param {MarketingType} [marketingType]
14442
+ * @param {string} [languageCode]
14443
+ * @param {number} [page]
14444
+ * @param {number} [limit]
14445
+ * @param {Date} [lastRetrieved]
14446
+ * @param {*} [options] Override http request option.
14447
+ * @throws {RequiredError}
14448
+ */
14449
+ apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
14450
+ /**
14451
+ *
14452
+ * @param {string} [searchTerm]
14453
+ * @param {boolean} [countOnly]
14454
+ * @param {string} [countryId]
14455
+ * @param {string} [hospitalId]
14456
+ * @param {MarketingType} [marketingType]
14457
+ * @param {string} [languageCode]
14458
+ * @param {number} [page]
14459
+ * @param {number} [limit]
14460
+ * @param {Date} [lastRetrieved]
14461
+ * @param {*} [options] Override http request option.
14462
+ * @throws {RequiredError}
14463
+ */
14464
+ apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
14465
+ /**
14466
+ *
14467
+ * @param {string} [searchTerm]
14468
+ * @param {boolean} [countOnly]
14469
+ * @param {string} [countryId]
14470
+ * @param {string} [hospitalId]
14471
+ * @param {MarketingType} [marketingType]
14472
+ * @param {string} [languageCode]
14473
+ * @param {number} [page]
14474
+ * @param {number} [limit]
14475
+ * @param {Date} [lastRetrieved]
14476
+ * @param {*} [options] Override http request option.
14477
+ * @throws {RequiredError}
14478
+ */
14479
+ apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
14480
+ /**
14481
+ *
14482
+ * @param {string} [searchTerm]
14483
+ * @param {boolean} [countOnly]
14484
+ * @param {string} [countryId]
14485
+ * @param {string} [hospitalId]
14486
+ * @param {MarketingType} [marketingType]
14487
+ * @param {string} [languageCode]
14488
+ * @param {number} [page]
14489
+ * @param {number} [limit]
14490
+ * @param {Date} [lastRetrieved]
14491
+ * @param {*} [options] Override http request option.
14492
+ * @throws {RequiredError}
14493
+ */
14494
+ apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
14495
+ /**
14496
+ *
14497
+ * @param {string} [searchTerm]
14498
+ * @param {boolean} [countOnly]
14499
+ * @param {string} [countryId]
14500
+ * @param {string} [hospitalId]
14501
+ * @param {MarketingType} [marketingType]
14502
+ * @param {string} [languageCode]
14503
+ * @param {number} [page]
14504
+ * @param {number} [limit]
14505
+ * @param {Date} [lastRetrieved]
14506
+ * @param {*} [options] Override http request option.
14507
+ * @throws {RequiredError}
14508
+ */
14509
+ apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
14510
+ /**
14511
+ *
14512
+ * @param {string} keyword
14513
+ * @param {boolean} [fuzzy]
14514
+ * @param {boolean} [highlights]
14515
+ * @param {number} [size]
14516
+ * @param {*} [options] Override http request option.
14517
+ * @throws {RequiredError}
14518
+ */
14519
+ apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
14520
+ };
14521
+ /**
14522
+ * SearchApi - factory interface
14523
+ * @export
14524
+ */
14525
+ export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14526
+ /**
14527
+ *
14528
+ * @param {string} keyword
14529
+ * @param {AutocompleteMode} [mode]
14530
+ * @param {boolean} [fuzzy]
14531
+ * @param {boolean} [highlights]
14532
+ * @param {number} [size]
14533
+ * @param {number} [minimumCoverage]
14534
+ * @param {*} [options] Override http request option.
14535
+ * @throws {RequiredError}
14536
+ */
14537
+ apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel>;
14538
+ /**
14539
+ *
14540
+ * @param {string} [searchTerm]
14541
+ * @param {boolean} [countOnly]
14542
+ * @param {string} [countryId]
14543
+ * @param {string} [hospitalId]
14544
+ * @param {MarketingType} [marketingType]
14545
+ * @param {string} [languageCode]
14546
+ * @param {number} [page]
14547
+ * @param {number} [limit]
14548
+ * @param {Date} [lastRetrieved]
14549
+ * @param {*} [options] Override http request option.
14550
+ * @throws {RequiredError}
14551
+ */
14552
+ apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
14553
+ /**
14554
+ *
14555
+ * @param {string} [searchTerm]
14556
+ * @param {boolean} [countOnly]
14557
+ * @param {string} [countryId]
14558
+ * @param {string} [hospitalId]
14559
+ * @param {MarketingType} [marketingType]
14560
+ * @param {string} [languageCode]
14561
+ * @param {number} [page]
14562
+ * @param {number} [limit]
14563
+ * @param {Date} [lastRetrieved]
14564
+ * @param {*} [options] Override http request option.
14565
+ * @throws {RequiredError}
14566
+ */
14567
+ apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
14568
+ /**
14569
+ *
14570
+ * @param {string} [searchTerm]
14571
+ * @param {boolean} [countOnly]
14572
+ * @param {string} [countryId]
14573
+ * @param {string} [hospitalId]
14574
+ * @param {MarketingType} [marketingType]
14575
+ * @param {string} [languageCode]
14576
+ * @param {number} [page]
14577
+ * @param {number} [limit]
14578
+ * @param {Date} [lastRetrieved]
14579
+ * @param {*} [options] Override http request option.
14580
+ * @throws {RequiredError}
14581
+ */
14582
+ apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AzureSearchModel>;
14583
+ /**
14584
+ *
14585
+ * @param {string} [searchTerm]
14586
+ * @param {boolean} [countOnly]
14587
+ * @param {string} [countryId]
14588
+ * @param {string} [hospitalId]
14589
+ * @param {MarketingType} [marketingType]
14590
+ * @param {string} [languageCode]
14591
+ * @param {number} [page]
14592
+ * @param {number} [limit]
14593
+ * @param {Date} [lastRetrieved]
14594
+ * @param {*} [options] Override http request option.
14595
+ * @throws {RequiredError}
14596
+ */
14597
+ apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
14598
+ /**
14599
+ *
14600
+ * @param {string} [searchTerm]
14601
+ * @param {boolean} [countOnly]
14602
+ * @param {string} [countryId]
14603
+ * @param {string} [hospitalId]
14604
+ * @param {MarketingType} [marketingType]
14605
+ * @param {string} [languageCode]
14606
+ * @param {number} [page]
14607
+ * @param {number} [limit]
14608
+ * @param {Date} [lastRetrieved]
14609
+ * @param {*} [options] Override http request option.
14610
+ * @throws {RequiredError}
14611
+ */
14612
+ apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
14613
+ /**
14614
+ *
14615
+ * @param {string} [searchTerm]
14616
+ * @param {boolean} [countOnly]
14617
+ * @param {string} [countryId]
14618
+ * @param {string} [hospitalId]
14619
+ * @param {MarketingType} [marketingType]
14620
+ * @param {string} [languageCode]
14621
+ * @param {number} [page]
14622
+ * @param {number} [limit]
14623
+ * @param {Date} [lastRetrieved]
14624
+ * @param {*} [options] Override http request option.
14625
+ * @throws {RequiredError}
14626
+ */
14627
+ apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
14628
+ /**
14629
+ *
14630
+ * @param {string} keyword
14631
+ * @param {boolean} [fuzzy]
14632
+ * @param {boolean} [highlights]
14633
+ * @param {number} [size]
14634
+ * @param {*} [options] Override http request option.
14635
+ * @throws {RequiredError}
14636
+ */
14637
+ apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceSuggestModel>;
14638
+ };
14639
+ /**
14640
+ * SearchApi - object-oriented interface
14641
+ * @export
14642
+ * @class SearchApi
14643
+ * @extends {BaseAPI}
14644
+ */
14645
+ export declare class SearchApi extends BaseAPI {
14646
+ /**
14647
+ *
14648
+ * @param {string} keyword
14649
+ * @param {AutocompleteMode} [mode]
14650
+ * @param {boolean} [fuzzy]
14651
+ * @param {boolean} [highlights]
14652
+ * @param {number} [size]
14653
+ * @param {number} [minimumCoverage]
14654
+ * @param {*} [options] Override http request option.
14655
+ * @throws {RequiredError}
14656
+ * @memberof SearchApi
14657
+ */
14658
+ apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel>>;
14659
+ /**
14660
+ *
14661
+ * @param {string} [searchTerm]
14662
+ * @param {boolean} [countOnly]
14663
+ * @param {string} [countryId]
14664
+ * @param {string} [hospitalId]
14665
+ * @param {MarketingType} [marketingType]
14666
+ * @param {string} [languageCode]
14667
+ * @param {number} [page]
14668
+ * @param {number} [limit]
14669
+ * @param {Date} [lastRetrieved]
14670
+ * @param {*} [options] Override http request option.
14671
+ * @throws {RequiredError}
14672
+ * @memberof SearchApi
14673
+ */
14674
+ apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
14675
+ /**
14676
+ *
14677
+ * @param {string} [searchTerm]
14678
+ * @param {boolean} [countOnly]
14679
+ * @param {string} [countryId]
14680
+ * @param {string} [hospitalId]
14681
+ * @param {MarketingType} [marketingType]
14682
+ * @param {string} [languageCode]
14683
+ * @param {number} [page]
14684
+ * @param {number} [limit]
14685
+ * @param {Date} [lastRetrieved]
14686
+ * @param {*} [options] Override http request option.
14687
+ * @throws {RequiredError}
14688
+ * @memberof SearchApi
14689
+ */
14690
+ apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
14691
+ /**
14692
+ *
14693
+ * @param {string} [searchTerm]
14694
+ * @param {boolean} [countOnly]
14695
+ * @param {string} [countryId]
14696
+ * @param {string} [hospitalId]
14697
+ * @param {MarketingType} [marketingType]
14698
+ * @param {string} [languageCode]
14699
+ * @param {number} [page]
14700
+ * @param {number} [limit]
14701
+ * @param {Date} [lastRetrieved]
14702
+ * @param {*} [options] Override http request option.
14703
+ * @throws {RequiredError}
14704
+ * @memberof SearchApi
14705
+ */
14706
+ apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
14707
+ /**
14708
+ *
14709
+ * @param {string} [searchTerm]
14710
+ * @param {boolean} [countOnly]
14711
+ * @param {string} [countryId]
14712
+ * @param {string} [hospitalId]
14713
+ * @param {MarketingType} [marketingType]
14714
+ * @param {string} [languageCode]
14715
+ * @param {number} [page]
14716
+ * @param {number} [limit]
14717
+ * @param {Date} [lastRetrieved]
14718
+ * @param {*} [options] Override http request option.
14719
+ * @throws {RequiredError}
14720
+ * @memberof SearchApi
14721
+ */
14722
+ apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
14723
+ /**
14724
+ *
14725
+ * @param {string} [searchTerm]
14726
+ * @param {boolean} [countOnly]
14727
+ * @param {string} [countryId]
14728
+ * @param {string} [hospitalId]
14729
+ * @param {MarketingType} [marketingType]
14730
+ * @param {string} [languageCode]
14731
+ * @param {number} [page]
14732
+ * @param {number} [limit]
14733
+ * @param {Date} [lastRetrieved]
14734
+ * @param {*} [options] Override http request option.
14735
+ * @throws {RequiredError}
14736
+ * @memberof SearchApi
14737
+ */
14738
+ apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
14739
+ /**
14740
+ *
14741
+ * @param {string} [searchTerm]
14742
+ * @param {boolean} [countOnly]
14743
+ * @param {string} [countryId]
14744
+ * @param {string} [hospitalId]
14745
+ * @param {MarketingType} [marketingType]
14746
+ * @param {string} [languageCode]
14747
+ * @param {number} [page]
14748
+ * @param {number} [limit]
14749
+ * @param {Date} [lastRetrieved]
14750
+ * @param {*} [options] Override http request option.
14751
+ * @throws {RequiredError}
14752
+ * @memberof SearchApi
14753
+ */
14754
+ apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
14755
+ /**
14756
+ *
14757
+ * @param {string} keyword
14758
+ * @param {boolean} [fuzzy]
14759
+ * @param {boolean} [highlights]
14760
+ * @param {number} [size]
14761
+ * @param {*} [options] Override http request option.
14762
+ * @throws {RequiredError}
14763
+ * @memberof SearchApi
14764
+ */
14765
+ apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel>>;
14766
+ }
14202
14767
  /**
14203
14768
  * ServicesApi - axios parameter creator
14204
14769
  * @export