ch-admin-api-client-typescript 2.7.3 → 2.7.8
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 +1044 -157
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1498 -160
- package/package.json +1 -1
- package/src/api.ts +1691 -154
package/lib/api.d.ts
CHANGED
|
@@ -406,34 +406,34 @@ export interface ArticleItemModel {
|
|
|
406
406
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
409
|
-
* @type {Array<
|
|
409
|
+
* @type {Array<LocalizedUrlModel>}
|
|
410
410
|
* @memberof ArticleItemModel
|
|
411
411
|
*/
|
|
412
|
-
'
|
|
412
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
413
413
|
/**
|
|
414
414
|
*
|
|
415
|
-
* @type {
|
|
415
|
+
* @type {boolean}
|
|
416
416
|
* @memberof ArticleItemModel
|
|
417
417
|
*/
|
|
418
|
-
'
|
|
418
|
+
'confirmed'?: boolean;
|
|
419
419
|
/**
|
|
420
420
|
*
|
|
421
|
-
* @type {
|
|
421
|
+
* @type {Array<MediaModel>}
|
|
422
422
|
* @memberof ArticleItemModel
|
|
423
423
|
*/
|
|
424
|
-
'
|
|
424
|
+
'medias'?: Array<MediaModel> | null;
|
|
425
425
|
/**
|
|
426
426
|
*
|
|
427
|
-
* @type {Array<
|
|
427
|
+
* @type {Array<SourceModel>}
|
|
428
428
|
* @memberof ArticleItemModel
|
|
429
429
|
*/
|
|
430
|
-
'
|
|
430
|
+
'sources'?: Array<SourceModel> | null;
|
|
431
431
|
/**
|
|
432
432
|
*
|
|
433
|
-
* @type {
|
|
433
|
+
* @type {AuditableEntity}
|
|
434
434
|
* @memberof ArticleItemModel
|
|
435
435
|
*/
|
|
436
|
-
'
|
|
436
|
+
'auditableEntity'?: AuditableEntity;
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
@@ -533,34 +533,34 @@ export interface ArticleModel {
|
|
|
533
533
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
|
-
* @type {Array<
|
|
536
|
+
* @type {Array<LocalizedUrlModel>}
|
|
537
537
|
* @memberof ArticleModel
|
|
538
538
|
*/
|
|
539
|
-
'
|
|
539
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
|
-
* @type {
|
|
542
|
+
* @type {boolean}
|
|
543
543
|
* @memberof ArticleModel
|
|
544
544
|
*/
|
|
545
|
-
'
|
|
545
|
+
'confirmed'?: boolean;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {
|
|
548
|
+
* @type {Array<MediaModel>}
|
|
549
549
|
* @memberof ArticleModel
|
|
550
550
|
*/
|
|
551
|
-
'
|
|
551
|
+
'medias'?: Array<MediaModel> | null;
|
|
552
552
|
/**
|
|
553
553
|
*
|
|
554
|
-
* @type {Array<
|
|
554
|
+
* @type {Array<SourceModel>}
|
|
555
555
|
* @memberof ArticleModel
|
|
556
556
|
*/
|
|
557
|
-
'
|
|
557
|
+
'sources'?: Array<SourceModel> | null;
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
|
-
* @type {
|
|
560
|
+
* @type {AuditableEntity}
|
|
561
561
|
* @memberof ArticleModel
|
|
562
562
|
*/
|
|
563
|
-
'
|
|
563
|
+
'auditableEntity'?: AuditableEntity;
|
|
564
564
|
/**
|
|
565
565
|
*
|
|
566
566
|
* @type {string}
|
|
@@ -771,6 +771,43 @@ export interface AwardModel {
|
|
|
771
771
|
*/
|
|
772
772
|
'date'?: Date;
|
|
773
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface AzureSearchModel
|
|
778
|
+
*/
|
|
779
|
+
export interface AzureSearchModel {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {number}
|
|
783
|
+
* @memberof AzureSearchModel
|
|
784
|
+
*/
|
|
785
|
+
'hospitals'?: number;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {number}
|
|
789
|
+
* @memberof AzureSearchModel
|
|
790
|
+
*/
|
|
791
|
+
'doctors'?: number;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {number}
|
|
795
|
+
* @memberof AzureSearchModel
|
|
796
|
+
*/
|
|
797
|
+
'deals'?: number;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {number}
|
|
801
|
+
* @memberof AzureSearchModel
|
|
802
|
+
*/
|
|
803
|
+
'specialties'?: number;
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {number}
|
|
807
|
+
* @memberof AzureSearchModel
|
|
808
|
+
*/
|
|
809
|
+
'specialtyTypes'?: number;
|
|
810
|
+
}
|
|
774
811
|
/**
|
|
775
812
|
*
|
|
776
813
|
* @export
|
|
@@ -3951,12 +3988,36 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
3951
3988
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3952
3989
|
*/
|
|
3953
3990
|
'specialtyId'?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
*
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
|
+
*/
|
|
3996
|
+
'title'?: string | null;
|
|
3997
|
+
/**
|
|
3998
|
+
*
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4001
|
+
*/
|
|
4002
|
+
'description'?: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
*
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4007
|
+
*/
|
|
4008
|
+
'content'?: string | null;
|
|
3954
4009
|
/**
|
|
3955
4010
|
*
|
|
3956
4011
|
* @type {number}
|
|
3957
4012
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3958
4013
|
*/
|
|
3959
4014
|
'order'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
3960
4021
|
}
|
|
3961
4022
|
/**
|
|
3962
4023
|
*
|
|
@@ -7225,6 +7286,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
7225
7286
|
* @interface HospitalSpecialtyItemModel
|
|
7226
7287
|
*/
|
|
7227
7288
|
export interface HospitalSpecialtyItemModel {
|
|
7289
|
+
/**
|
|
7290
|
+
*
|
|
7291
|
+
* @type {string}
|
|
7292
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7293
|
+
*/
|
|
7294
|
+
'id'?: string;
|
|
7228
7295
|
/**
|
|
7229
7296
|
*
|
|
7230
7297
|
* @type {string}
|
|
@@ -7273,12 +7340,54 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7273
7340
|
* @memberof HospitalSpecialtyItemModel
|
|
7274
7341
|
*/
|
|
7275
7342
|
'marketingType'?: MarketingType;
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {string}
|
|
7346
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7347
|
+
*/
|
|
7348
|
+
'title'?: string | null;
|
|
7349
|
+
/**
|
|
7350
|
+
*
|
|
7351
|
+
* @type {string}
|
|
7352
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7353
|
+
*/
|
|
7354
|
+
'normalizedTitle'?: string | null;
|
|
7355
|
+
/**
|
|
7356
|
+
*
|
|
7357
|
+
* @type {string}
|
|
7358
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7359
|
+
*/
|
|
7360
|
+
'description'?: string | null;
|
|
7361
|
+
/**
|
|
7362
|
+
*
|
|
7363
|
+
* @type {string}
|
|
7364
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7365
|
+
*/
|
|
7366
|
+
'content'?: string | null;
|
|
7276
7367
|
/**
|
|
7277
7368
|
*
|
|
7278
7369
|
* @type {number}
|
|
7279
7370
|
* @memberof HospitalSpecialtyItemModel
|
|
7280
7371
|
*/
|
|
7281
7372
|
'order'?: number;
|
|
7373
|
+
/**
|
|
7374
|
+
*
|
|
7375
|
+
* @type {boolean}
|
|
7376
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7377
|
+
*/
|
|
7378
|
+
'confirmed'?: boolean;
|
|
7379
|
+
/**
|
|
7380
|
+
*
|
|
7381
|
+
* @type {Array<MediaModel>}
|
|
7382
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7383
|
+
*/
|
|
7384
|
+
'medias'?: Array<MediaModel> | null;
|
|
7385
|
+
/**
|
|
7386
|
+
*
|
|
7387
|
+
* @type {AuditableEntity}
|
|
7388
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7389
|
+
*/
|
|
7390
|
+
'auditableEntity'?: AuditableEntity;
|
|
7282
7391
|
}
|
|
7283
7392
|
/**
|
|
7284
7393
|
*
|
|
@@ -7286,6 +7395,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7286
7395
|
* @interface HospitalSpecialtyModel
|
|
7287
7396
|
*/
|
|
7288
7397
|
export interface HospitalSpecialtyModel {
|
|
7398
|
+
/**
|
|
7399
|
+
*
|
|
7400
|
+
* @type {string}
|
|
7401
|
+
* @memberof HospitalSpecialtyModel
|
|
7402
|
+
*/
|
|
7403
|
+
'id'?: string;
|
|
7289
7404
|
/**
|
|
7290
7405
|
*
|
|
7291
7406
|
* @type {string}
|
|
@@ -7334,12 +7449,60 @@ export interface HospitalSpecialtyModel {
|
|
|
7334
7449
|
* @memberof HospitalSpecialtyModel
|
|
7335
7450
|
*/
|
|
7336
7451
|
'marketingType'?: MarketingType;
|
|
7452
|
+
/**
|
|
7453
|
+
*
|
|
7454
|
+
* @type {string}
|
|
7455
|
+
* @memberof HospitalSpecialtyModel
|
|
7456
|
+
*/
|
|
7457
|
+
'title'?: string | null;
|
|
7458
|
+
/**
|
|
7459
|
+
*
|
|
7460
|
+
* @type {string}
|
|
7461
|
+
* @memberof HospitalSpecialtyModel
|
|
7462
|
+
*/
|
|
7463
|
+
'normalizedTitle'?: string | null;
|
|
7464
|
+
/**
|
|
7465
|
+
*
|
|
7466
|
+
* @type {string}
|
|
7467
|
+
* @memberof HospitalSpecialtyModel
|
|
7468
|
+
*/
|
|
7469
|
+
'description'?: string | null;
|
|
7470
|
+
/**
|
|
7471
|
+
*
|
|
7472
|
+
* @type {string}
|
|
7473
|
+
* @memberof HospitalSpecialtyModel
|
|
7474
|
+
*/
|
|
7475
|
+
'content'?: string | null;
|
|
7337
7476
|
/**
|
|
7338
7477
|
*
|
|
7339
7478
|
* @type {number}
|
|
7340
7479
|
* @memberof HospitalSpecialtyModel
|
|
7341
7480
|
*/
|
|
7342
7481
|
'order'?: number;
|
|
7482
|
+
/**
|
|
7483
|
+
*
|
|
7484
|
+
* @type {boolean}
|
|
7485
|
+
* @memberof HospitalSpecialtyModel
|
|
7486
|
+
*/
|
|
7487
|
+
'confirmed'?: boolean;
|
|
7488
|
+
/**
|
|
7489
|
+
*
|
|
7490
|
+
* @type {Array<MediaModel>}
|
|
7491
|
+
* @memberof HospitalSpecialtyModel
|
|
7492
|
+
*/
|
|
7493
|
+
'medias'?: Array<MediaModel> | null;
|
|
7494
|
+
/**
|
|
7495
|
+
*
|
|
7496
|
+
* @type {AuditableEntity}
|
|
7497
|
+
* @memberof HospitalSpecialtyModel
|
|
7498
|
+
*/
|
|
7499
|
+
'auditableEntity'?: AuditableEntity;
|
|
7500
|
+
/**
|
|
7501
|
+
*
|
|
7502
|
+
* @type {string}
|
|
7503
|
+
* @memberof HospitalSpecialtyModel
|
|
7504
|
+
*/
|
|
7505
|
+
'languageCode'?: string | null;
|
|
7343
7506
|
}
|
|
7344
7507
|
/**
|
|
7345
7508
|
*
|
|
@@ -10514,6 +10677,25 @@ export interface UpdateDealServiceCommand {
|
|
|
10514
10677
|
*/
|
|
10515
10678
|
'order'?: number;
|
|
10516
10679
|
}
|
|
10680
|
+
/**
|
|
10681
|
+
*
|
|
10682
|
+
* @export
|
|
10683
|
+
* @interface UpdateDealsSearchIndexCommand
|
|
10684
|
+
*/
|
|
10685
|
+
export interface UpdateDealsSearchIndexCommand {
|
|
10686
|
+
/**
|
|
10687
|
+
*
|
|
10688
|
+
* @type {number}
|
|
10689
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10690
|
+
*/
|
|
10691
|
+
'batchSize'?: number | null;
|
|
10692
|
+
/**
|
|
10693
|
+
*
|
|
10694
|
+
* @type {boolean}
|
|
10695
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10696
|
+
*/
|
|
10697
|
+
'reCreate'?: boolean | null;
|
|
10698
|
+
}
|
|
10517
10699
|
/**
|
|
10518
10700
|
*
|
|
10519
10701
|
* @export
|
|
@@ -10729,6 +10911,25 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
10729
10911
|
*/
|
|
10730
10912
|
'order'?: number;
|
|
10731
10913
|
}
|
|
10914
|
+
/**
|
|
10915
|
+
*
|
|
10916
|
+
* @export
|
|
10917
|
+
* @interface UpdateDoctorsSearchIndexCommand
|
|
10918
|
+
*/
|
|
10919
|
+
export interface UpdateDoctorsSearchIndexCommand {
|
|
10920
|
+
/**
|
|
10921
|
+
*
|
|
10922
|
+
* @type {number}
|
|
10923
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
10924
|
+
*/
|
|
10925
|
+
'batchSize'?: number | null;
|
|
10926
|
+
/**
|
|
10927
|
+
*
|
|
10928
|
+
* @type {boolean}
|
|
10929
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
10930
|
+
*/
|
|
10931
|
+
'reCreate'?: boolean | null;
|
|
10932
|
+
}
|
|
10732
10933
|
/**
|
|
10733
10934
|
*
|
|
10734
10935
|
* @export
|
|
@@ -11060,54 +11261,109 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11060
11261
|
export interface UpdateHospitalSpecialtyCommand {
|
|
11061
11262
|
/**
|
|
11062
11263
|
*
|
|
11063
|
-
* @type {
|
|
11264
|
+
* @type {string}
|
|
11064
11265
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11065
11266
|
*/
|
|
11066
|
-
'
|
|
11067
|
-
}
|
|
11068
|
-
/**
|
|
11069
|
-
*
|
|
11070
|
-
* @export
|
|
11071
|
-
* @interface UpdateLanguageCommand
|
|
11072
|
-
*/
|
|
11073
|
-
export interface UpdateLanguageCommand {
|
|
11267
|
+
'title'?: string | null;
|
|
11074
11268
|
/**
|
|
11075
11269
|
*
|
|
11076
11270
|
* @type {string}
|
|
11077
|
-
* @memberof
|
|
11271
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11078
11272
|
*/
|
|
11079
|
-
'
|
|
11273
|
+
'description'?: string | null;
|
|
11080
11274
|
/**
|
|
11081
11275
|
*
|
|
11082
11276
|
* @type {string}
|
|
11083
|
-
* @memberof
|
|
11277
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11084
11278
|
*/
|
|
11085
|
-
'
|
|
11279
|
+
'content'?: string | null;
|
|
11280
|
+
/**
|
|
11281
|
+
*
|
|
11282
|
+
* @type {number}
|
|
11283
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11284
|
+
*/
|
|
11285
|
+
'order'?: number;
|
|
11086
11286
|
/**
|
|
11087
11287
|
*
|
|
11088
11288
|
* @type {string}
|
|
11089
|
-
* @memberof
|
|
11289
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11090
11290
|
*/
|
|
11091
|
-
'
|
|
11291
|
+
'languageCode'?: string | null;
|
|
11092
11292
|
/**
|
|
11093
11293
|
*
|
|
11094
11294
|
* @type {boolean}
|
|
11095
|
-
* @memberof
|
|
11295
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11096
11296
|
*/
|
|
11097
|
-
'
|
|
11297
|
+
'confirmed'?: boolean;
|
|
11098
11298
|
/**
|
|
11099
11299
|
*
|
|
11100
|
-
* @type {
|
|
11101
|
-
* @memberof
|
|
11300
|
+
* @type {Array<MediaModel>}
|
|
11301
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11102
11302
|
*/
|
|
11103
|
-
'
|
|
11303
|
+
'medias'?: Array<MediaModel> | null;
|
|
11104
11304
|
}
|
|
11105
11305
|
/**
|
|
11106
11306
|
*
|
|
11107
11307
|
* @export
|
|
11108
|
-
* @interface
|
|
11308
|
+
* @interface UpdateHospitalsSearchIndexCommand
|
|
11109
11309
|
*/
|
|
11110
|
-
export interface
|
|
11310
|
+
export interface UpdateHospitalsSearchIndexCommand {
|
|
11311
|
+
/**
|
|
11312
|
+
*
|
|
11313
|
+
* @type {number}
|
|
11314
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11315
|
+
*/
|
|
11316
|
+
'batchSize'?: number | null;
|
|
11317
|
+
/**
|
|
11318
|
+
*
|
|
11319
|
+
* @type {boolean}
|
|
11320
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11321
|
+
*/
|
|
11322
|
+
'reCreate'?: boolean | null;
|
|
11323
|
+
}
|
|
11324
|
+
/**
|
|
11325
|
+
*
|
|
11326
|
+
* @export
|
|
11327
|
+
* @interface UpdateLanguageCommand
|
|
11328
|
+
*/
|
|
11329
|
+
export interface UpdateLanguageCommand {
|
|
11330
|
+
/**
|
|
11331
|
+
*
|
|
11332
|
+
* @type {string}
|
|
11333
|
+
* @memberof UpdateLanguageCommand
|
|
11334
|
+
*/
|
|
11335
|
+
'code'?: string | null;
|
|
11336
|
+
/**
|
|
11337
|
+
*
|
|
11338
|
+
* @type {string}
|
|
11339
|
+
* @memberof UpdateLanguageCommand
|
|
11340
|
+
*/
|
|
11341
|
+
'name'?: string | null;
|
|
11342
|
+
/**
|
|
11343
|
+
*
|
|
11344
|
+
* @type {string}
|
|
11345
|
+
* @memberof UpdateLanguageCommand
|
|
11346
|
+
*/
|
|
11347
|
+
'description'?: string | null;
|
|
11348
|
+
/**
|
|
11349
|
+
*
|
|
11350
|
+
* @type {boolean}
|
|
11351
|
+
* @memberof UpdateLanguageCommand
|
|
11352
|
+
*/
|
|
11353
|
+
'published'?: boolean | null;
|
|
11354
|
+
/**
|
|
11355
|
+
*
|
|
11356
|
+
* @type {number}
|
|
11357
|
+
* @memberof UpdateLanguageCommand
|
|
11358
|
+
*/
|
|
11359
|
+
'order'?: number | null;
|
|
11360
|
+
}
|
|
11361
|
+
/**
|
|
11362
|
+
*
|
|
11363
|
+
* @export
|
|
11364
|
+
* @interface UpdateManagerCommand
|
|
11365
|
+
*/
|
|
11366
|
+
export interface UpdateManagerCommand {
|
|
11111
11367
|
/**
|
|
11112
11368
|
*
|
|
11113
11369
|
* @type {string}
|
|
@@ -11446,6 +11702,25 @@ export interface UpdateServiceReviewCommand {
|
|
|
11446
11702
|
*/
|
|
11447
11703
|
'rate'?: number | null;
|
|
11448
11704
|
}
|
|
11705
|
+
/**
|
|
11706
|
+
*
|
|
11707
|
+
* @export
|
|
11708
|
+
* @interface UpdateSpecialtiesSearchIndexCommand
|
|
11709
|
+
*/
|
|
11710
|
+
export interface UpdateSpecialtiesSearchIndexCommand {
|
|
11711
|
+
/**
|
|
11712
|
+
*
|
|
11713
|
+
* @type {number}
|
|
11714
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11715
|
+
*/
|
|
11716
|
+
'batchSize'?: number | null;
|
|
11717
|
+
/**
|
|
11718
|
+
*
|
|
11719
|
+
* @type {boolean}
|
|
11720
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11721
|
+
*/
|
|
11722
|
+
'reCreate'?: boolean | null;
|
|
11723
|
+
}
|
|
11449
11724
|
/**
|
|
11450
11725
|
*
|
|
11451
11726
|
* @export
|
|
@@ -11568,6 +11843,25 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
11568
11843
|
*/
|
|
11569
11844
|
'languageCode'?: string | null;
|
|
11570
11845
|
}
|
|
11846
|
+
/**
|
|
11847
|
+
*
|
|
11848
|
+
* @export
|
|
11849
|
+
* @interface UpdateSpecialtyTypesSearchIndexCommand
|
|
11850
|
+
*/
|
|
11851
|
+
export interface UpdateSpecialtyTypesSearchIndexCommand {
|
|
11852
|
+
/**
|
|
11853
|
+
*
|
|
11854
|
+
* @type {number}
|
|
11855
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11856
|
+
*/
|
|
11857
|
+
'batchSize'?: number | null;
|
|
11858
|
+
/**
|
|
11859
|
+
*
|
|
11860
|
+
* @type {boolean}
|
|
11861
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11862
|
+
*/
|
|
11863
|
+
'reCreate'?: boolean | null;
|
|
11864
|
+
}
|
|
11571
11865
|
/**
|
|
11572
11866
|
*
|
|
11573
11867
|
* @export
|
|
@@ -16541,6 +16835,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16541
16835
|
* @param {string} [hospitalId]
|
|
16542
16836
|
* @param {string} [languageCode]
|
|
16543
16837
|
* @param {boolean} [returnDefaultValue]
|
|
16838
|
+
* @param {Array<string>} [ids]
|
|
16544
16839
|
* @param {string} [id]
|
|
16545
16840
|
* @param {string} [fullname]
|
|
16546
16841
|
* @param {string} [email]
|
|
@@ -16554,7 +16849,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16554
16849
|
* @param {*} [options] Override http request option.
|
|
16555
16850
|
* @throws {RequiredError}
|
|
16556
16851
|
*/
|
|
16557
|
-
apiV1DoctorsGet: (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>;
|
|
16852
|
+
apiV1DoctorsGet: (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>;
|
|
16558
16853
|
/**
|
|
16559
16854
|
*
|
|
16560
16855
|
* @summary Create a Doctor.
|
|
@@ -16906,6 +17201,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16906
17201
|
* @param {string} [hospitalId]
|
|
16907
17202
|
* @param {string} [languageCode]
|
|
16908
17203
|
* @param {boolean} [returnDefaultValue]
|
|
17204
|
+
* @param {Array<string>} [ids]
|
|
16909
17205
|
* @param {string} [id]
|
|
16910
17206
|
* @param {string} [fullname]
|
|
16911
17207
|
* @param {string} [email]
|
|
@@ -16919,7 +17215,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16919
17215
|
* @param {*} [options] Override http request option.
|
|
16920
17216
|
* @throws {RequiredError}
|
|
16921
17217
|
*/
|
|
16922
|
-
apiV1DoctorsGet(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>>;
|
|
17218
|
+
apiV1DoctorsGet(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>>;
|
|
16923
17219
|
/**
|
|
16924
17220
|
*
|
|
16925
17221
|
* @summary Create a Doctor.
|
|
@@ -17271,6 +17567,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17271
17567
|
* @param {string} [hospitalId]
|
|
17272
17568
|
* @param {string} [languageCode]
|
|
17273
17569
|
* @param {boolean} [returnDefaultValue]
|
|
17570
|
+
* @param {Array<string>} [ids]
|
|
17274
17571
|
* @param {string} [id]
|
|
17275
17572
|
* @param {string} [fullname]
|
|
17276
17573
|
* @param {string} [email]
|
|
@@ -17284,7 +17581,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17284
17581
|
* @param {*} [options] Override http request option.
|
|
17285
17582
|
* @throws {RequiredError}
|
|
17286
17583
|
*/
|
|
17287
|
-
apiV1DoctorsGet(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>;
|
|
17584
|
+
apiV1DoctorsGet(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>;
|
|
17288
17585
|
/**
|
|
17289
17586
|
*
|
|
17290
17587
|
* @summary Create a Doctor.
|
|
@@ -17670,6 +17967,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17670
17967
|
* @param {string} [hospitalId]
|
|
17671
17968
|
* @param {string} [languageCode]
|
|
17672
17969
|
* @param {boolean} [returnDefaultValue]
|
|
17970
|
+
* @param {Array<string>} [ids]
|
|
17673
17971
|
* @param {string} [id]
|
|
17674
17972
|
* @param {string} [fullname]
|
|
17675
17973
|
* @param {string} [email]
|
|
@@ -17684,7 +17982,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17684
17982
|
* @throws {RequiredError}
|
|
17685
17983
|
* @memberof DoctorsApi
|
|
17686
17984
|
*/
|
|
17687
|
-
apiV1DoctorsGet(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>>;
|
|
17985
|
+
apiV1DoctorsGet(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>>;
|
|
17688
17986
|
/**
|
|
17689
17987
|
*
|
|
17690
17988
|
* @summary Create a Doctor.
|
|
@@ -18741,7 +19039,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18741
19039
|
* @summary Get all Hospitals.
|
|
18742
19040
|
* @param {string} [hospitalId]
|
|
18743
19041
|
* @param {string} [name]
|
|
18744
|
-
* @param {string} [description]
|
|
18745
19042
|
* @param {string} [countryId]
|
|
18746
19043
|
* @param {Date} [created]
|
|
18747
19044
|
* @param {MarketingType} [marketingType]
|
|
@@ -18759,7 +19056,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18759
19056
|
* @param {*} [options] Override http request option.
|
|
18760
19057
|
* @throws {RequiredError}
|
|
18761
19058
|
*/
|
|
18762
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19059
|
+
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18763
19060
|
/**
|
|
18764
19061
|
*
|
|
18765
19062
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19047,15 +19344,18 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19047
19344
|
* @param {string} [specialtyId]
|
|
19048
19345
|
* @param {string} [specialtyName]
|
|
19049
19346
|
* @param {string} [specialtyTypeId]
|
|
19347
|
+
* @param {string} [title]
|
|
19050
19348
|
* @param {MarketingType} [marketingType]
|
|
19051
|
-
* @param {
|
|
19349
|
+
* @param {string} [languageCode]
|
|
19350
|
+
* @param {boolean} [showHidden]
|
|
19351
|
+
* @param {boolean} [returnDefaultValue]
|
|
19052
19352
|
* @param {number} [page]
|
|
19053
19353
|
* @param {number} [limit]
|
|
19054
19354
|
* @param {Date} [lastRetrieved]
|
|
19055
19355
|
* @param {*} [options] Override http request option.
|
|
19056
19356
|
* @throws {RequiredError}
|
|
19057
19357
|
*/
|
|
19058
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19358
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19059
19359
|
/**
|
|
19060
19360
|
*
|
|
19061
19361
|
* @summary Create HospitalSpecialty.
|
|
@@ -19079,10 +19379,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19079
19379
|
* @summary Get HospitalSpecialty.
|
|
19080
19380
|
* @param {string} hospitalId
|
|
19081
19381
|
* @param {string} specialtyId
|
|
19382
|
+
* @param {string} [languageCode]
|
|
19383
|
+
* @param {boolean} [returnDefaultValue]
|
|
19082
19384
|
* @param {*} [options] Override http request option.
|
|
19083
19385
|
* @throws {RequiredError}
|
|
19084
19386
|
*/
|
|
19085
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19387
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19086
19388
|
/**
|
|
19087
19389
|
*
|
|
19088
19390
|
* @summary Update HospitalSpecialty.
|
|
@@ -19233,7 +19535,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19233
19535
|
* @summary Get all Hospitals.
|
|
19234
19536
|
* @param {string} [hospitalId]
|
|
19235
19537
|
* @param {string} [name]
|
|
19236
|
-
* @param {string} [description]
|
|
19237
19538
|
* @param {string} [countryId]
|
|
19238
19539
|
* @param {Date} [created]
|
|
19239
19540
|
* @param {MarketingType} [marketingType]
|
|
@@ -19251,7 +19552,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19251
19552
|
* @param {*} [options] Override http request option.
|
|
19252
19553
|
* @throws {RequiredError}
|
|
19253
19554
|
*/
|
|
19254
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19555
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19255
19556
|
/**
|
|
19256
19557
|
*
|
|
19257
19558
|
* @param {string} slug
|
|
@@ -19272,7 +19573,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19272
19573
|
* @summary Get all Hospitals.
|
|
19273
19574
|
* @param {string} [hospitalId]
|
|
19274
19575
|
* @param {string} [name]
|
|
19275
|
-
* @param {string} [description]
|
|
19276
19576
|
* @param {string} [countryId]
|
|
19277
19577
|
* @param {Date} [created]
|
|
19278
19578
|
* @param {MarketingType} [marketingType]
|
|
@@ -19290,7 +19590,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19290
19590
|
* @param {*} [options] Override http request option.
|
|
19291
19591
|
* @throws {RequiredError}
|
|
19292
19592
|
*/
|
|
19293
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
19593
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
19294
19594
|
/**
|
|
19295
19595
|
*
|
|
19296
19596
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19578,15 +19878,18 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19578
19878
|
* @param {string} [specialtyId]
|
|
19579
19879
|
* @param {string} [specialtyName]
|
|
19580
19880
|
* @param {string} [specialtyTypeId]
|
|
19881
|
+
* @param {string} [title]
|
|
19581
19882
|
* @param {MarketingType} [marketingType]
|
|
19582
|
-
* @param {
|
|
19883
|
+
* @param {string} [languageCode]
|
|
19884
|
+
* @param {boolean} [showHidden]
|
|
19885
|
+
* @param {boolean} [returnDefaultValue]
|
|
19583
19886
|
* @param {number} [page]
|
|
19584
19887
|
* @param {number} [limit]
|
|
19585
19888
|
* @param {Date} [lastRetrieved]
|
|
19586
19889
|
* @param {*} [options] Override http request option.
|
|
19587
19890
|
* @throws {RequiredError}
|
|
19588
19891
|
*/
|
|
19589
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19892
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
19590
19893
|
/**
|
|
19591
19894
|
*
|
|
19592
19895
|
* @summary Create HospitalSpecialty.
|
|
@@ -19610,10 +19913,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19610
19913
|
* @summary Get HospitalSpecialty.
|
|
19611
19914
|
* @param {string} hospitalId
|
|
19612
19915
|
* @param {string} specialtyId
|
|
19916
|
+
* @param {string} [languageCode]
|
|
19917
|
+
* @param {boolean} [returnDefaultValue]
|
|
19613
19918
|
* @param {*} [options] Override http request option.
|
|
19614
19919
|
* @throws {RequiredError}
|
|
19615
19920
|
*/
|
|
19616
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19921
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19617
19922
|
/**
|
|
19618
19923
|
*
|
|
19619
19924
|
* @summary Update HospitalSpecialty.
|
|
@@ -19764,7 +20069,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19764
20069
|
* @summary Get all Hospitals.
|
|
19765
20070
|
* @param {string} [hospitalId]
|
|
19766
20071
|
* @param {string} [name]
|
|
19767
|
-
* @param {string} [description]
|
|
19768
20072
|
* @param {string} [countryId]
|
|
19769
20073
|
* @param {Date} [created]
|
|
19770
20074
|
* @param {MarketingType} [marketingType]
|
|
@@ -19782,7 +20086,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19782
20086
|
* @param {*} [options] Override http request option.
|
|
19783
20087
|
* @throws {RequiredError}
|
|
19784
20088
|
*/
|
|
19785
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20089
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
19786
20090
|
/**
|
|
19787
20091
|
*
|
|
19788
20092
|
* @param {string} slug
|
|
@@ -19803,7 +20107,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19803
20107
|
* @summary Get all Hospitals.
|
|
19804
20108
|
* @param {string} [hospitalId]
|
|
19805
20109
|
* @param {string} [name]
|
|
19806
|
-
* @param {string} [description]
|
|
19807
20110
|
* @param {string} [countryId]
|
|
19808
20111
|
* @param {Date} [created]
|
|
19809
20112
|
* @param {MarketingType} [marketingType]
|
|
@@ -19821,7 +20124,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19821
20124
|
* @param {*} [options] Override http request option.
|
|
19822
20125
|
* @throws {RequiredError}
|
|
19823
20126
|
*/
|
|
19824
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20127
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
19825
20128
|
/**
|
|
19826
20129
|
*
|
|
19827
20130
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20109,15 +20412,18 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20109
20412
|
* @param {string} [specialtyId]
|
|
20110
20413
|
* @param {string} [specialtyName]
|
|
20111
20414
|
* @param {string} [specialtyTypeId]
|
|
20415
|
+
* @param {string} [title]
|
|
20112
20416
|
* @param {MarketingType} [marketingType]
|
|
20113
|
-
* @param {
|
|
20417
|
+
* @param {string} [languageCode]
|
|
20418
|
+
* @param {boolean} [showHidden]
|
|
20419
|
+
* @param {boolean} [returnDefaultValue]
|
|
20114
20420
|
* @param {number} [page]
|
|
20115
20421
|
* @param {number} [limit]
|
|
20116
20422
|
* @param {Date} [lastRetrieved]
|
|
20117
20423
|
* @param {*} [options] Override http request option.
|
|
20118
20424
|
* @throws {RequiredError}
|
|
20119
20425
|
*/
|
|
20120
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20426
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
20121
20427
|
/**
|
|
20122
20428
|
*
|
|
20123
20429
|
* @summary Create HospitalSpecialty.
|
|
@@ -20141,10 +20447,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20141
20447
|
* @summary Get HospitalSpecialty.
|
|
20142
20448
|
* @param {string} hospitalId
|
|
20143
20449
|
* @param {string} specialtyId
|
|
20450
|
+
* @param {string} [languageCode]
|
|
20451
|
+
* @param {boolean} [returnDefaultValue]
|
|
20144
20452
|
* @param {*} [options] Override http request option.
|
|
20145
20453
|
* @throws {RequiredError}
|
|
20146
20454
|
*/
|
|
20147
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20455
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20148
20456
|
/**
|
|
20149
20457
|
*
|
|
20150
20458
|
* @summary Update HospitalSpecialty.
|
|
@@ -20295,7 +20603,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20295
20603
|
* @summary Get all Hospitals.
|
|
20296
20604
|
* @param {string} [hospitalId]
|
|
20297
20605
|
* @param {string} [name]
|
|
20298
|
-
* @param {string} [description]
|
|
20299
20606
|
* @param {string} [countryId]
|
|
20300
20607
|
* @param {Date} [created]
|
|
20301
20608
|
* @param {MarketingType} [marketingType]
|
|
@@ -20313,7 +20620,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20313
20620
|
* @param {*} [options] Override http request option.
|
|
20314
20621
|
* @throws {RequiredError}
|
|
20315
20622
|
*/
|
|
20316
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20623
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
20317
20624
|
/**
|
|
20318
20625
|
*
|
|
20319
20626
|
* @param {string} slug
|
|
@@ -20336,7 +20643,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20336
20643
|
* @summary Get all Hospitals.
|
|
20337
20644
|
* @param {string} [hospitalId]
|
|
20338
20645
|
* @param {string} [name]
|
|
20339
|
-
* @param {string} [description]
|
|
20340
20646
|
* @param {string} [countryId]
|
|
20341
20647
|
* @param {Date} [created]
|
|
20342
20648
|
* @param {MarketingType} [marketingType]
|
|
@@ -20355,7 +20661,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20355
20661
|
* @throws {RequiredError}
|
|
20356
20662
|
* @memberof HospitalsApi
|
|
20357
20663
|
*/
|
|
20358
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string,
|
|
20664
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
20359
20665
|
/**
|
|
20360
20666
|
*
|
|
20361
20667
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20670,8 +20976,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20670
20976
|
* @param {string} [specialtyId]
|
|
20671
20977
|
* @param {string} [specialtyName]
|
|
20672
20978
|
* @param {string} [specialtyTypeId]
|
|
20979
|
+
* @param {string} [title]
|
|
20673
20980
|
* @param {MarketingType} [marketingType]
|
|
20674
|
-
* @param {
|
|
20981
|
+
* @param {string} [languageCode]
|
|
20982
|
+
* @param {boolean} [showHidden]
|
|
20983
|
+
* @param {boolean} [returnDefaultValue]
|
|
20675
20984
|
* @param {number} [page]
|
|
20676
20985
|
* @param {number} [limit]
|
|
20677
20986
|
* @param {Date} [lastRetrieved]
|
|
@@ -20679,7 +20988,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20679
20988
|
* @throws {RequiredError}
|
|
20680
20989
|
* @memberof HospitalsApi
|
|
20681
20990
|
*/
|
|
20682
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType,
|
|
20991
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
20683
20992
|
/**
|
|
20684
20993
|
*
|
|
20685
20994
|
* @summary Create HospitalSpecialty.
|
|
@@ -20705,11 +21014,13 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20705
21014
|
* @summary Get HospitalSpecialty.
|
|
20706
21015
|
* @param {string} hospitalId
|
|
20707
21016
|
* @param {string} specialtyId
|
|
21017
|
+
* @param {string} [languageCode]
|
|
21018
|
+
* @param {boolean} [returnDefaultValue]
|
|
20708
21019
|
* @param {*} [options] Override http request option.
|
|
20709
21020
|
* @throws {RequiredError}
|
|
20710
21021
|
* @memberof HospitalsApi
|
|
20711
21022
|
*/
|
|
20712
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21023
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
20713
21024
|
/**
|
|
20714
21025
|
*
|
|
20715
21026
|
* @summary Update HospitalSpecialty.
|
|
@@ -20872,7 +21183,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20872
21183
|
* @summary Get all Hospitals.
|
|
20873
21184
|
* @param {string} [hospitalId]
|
|
20874
21185
|
* @param {string} [name]
|
|
20875
|
-
* @param {string} [description]
|
|
20876
21186
|
* @param {string} [countryId]
|
|
20877
21187
|
* @param {Date} [created]
|
|
20878
21188
|
* @param {MarketingType} [marketingType]
|
|
@@ -20891,7 +21201,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20891
21201
|
* @throws {RequiredError}
|
|
20892
21202
|
* @memberof HospitalsApi
|
|
20893
21203
|
*/
|
|
20894
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string,
|
|
21204
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
20895
21205
|
/**
|
|
20896
21206
|
*
|
|
20897
21207
|
* @param {string} slug
|
|
@@ -22707,181 +23017,762 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22707
23017
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22708
23018
|
}
|
|
22709
23019
|
/**
|
|
22710
|
-
*
|
|
23020
|
+
* SearchApi - axios parameter creator
|
|
22711
23021
|
* @export
|
|
22712
23022
|
*/
|
|
22713
|
-
export declare const
|
|
23023
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
22714
23024
|
/**
|
|
22715
23025
|
*
|
|
22716
|
-
* @summary
|
|
22717
|
-
* @param {string} [
|
|
22718
|
-
* @param {
|
|
22719
|
-
* @param {string} [
|
|
22720
|
-
* @param {string} [
|
|
22721
|
-
* @param {
|
|
22722
|
-
* @param {
|
|
22723
|
-
* @param {ReviewType} [reviewType]
|
|
23026
|
+
* @summary Search deals using Azure Search Service
|
|
23027
|
+
* @param {string} [searchTerm]
|
|
23028
|
+
* @param {boolean} [countOnly]
|
|
23029
|
+
* @param {string} [countryId]
|
|
23030
|
+
* @param {string} [hospitalId]
|
|
23031
|
+
* @param {MarketingType} [marketingType]
|
|
23032
|
+
* @param {string} [languageCode]
|
|
22724
23033
|
* @param {number} [page]
|
|
22725
23034
|
* @param {number} [limit]
|
|
22726
23035
|
* @param {Date} [lastRetrieved]
|
|
22727
23036
|
* @param {*} [options] Override http request option.
|
|
22728
23037
|
* @throws {RequiredError}
|
|
22729
23038
|
*/
|
|
22730
|
-
|
|
23039
|
+
apiV1SearchDealsGet: (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>;
|
|
22731
23040
|
/**
|
|
22732
23041
|
*
|
|
22733
|
-
* @summary
|
|
22734
|
-
* @param {
|
|
23042
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23043
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
22735
23044
|
* @param {*} [options] Override http request option.
|
|
22736
23045
|
* @throws {RequiredError}
|
|
22737
23046
|
*/
|
|
22738
|
-
|
|
23047
|
+
apiV1SearchDealsPost: (updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22739
23048
|
/**
|
|
22740
23049
|
*
|
|
22741
|
-
* @summary
|
|
22742
|
-
* @param {string}
|
|
23050
|
+
* @summary Search doctors using Azure Search Services
|
|
23051
|
+
* @param {string} [searchTerm]
|
|
23052
|
+
* @param {boolean} [countOnly]
|
|
23053
|
+
* @param {string} [countryId]
|
|
23054
|
+
* @param {string} [hospitalId]
|
|
23055
|
+
* @param {MarketingType} [marketingType]
|
|
23056
|
+
* @param {string} [languageCode]
|
|
23057
|
+
* @param {number} [page]
|
|
23058
|
+
* @param {number} [limit]
|
|
23059
|
+
* @param {Date} [lastRetrieved]
|
|
22743
23060
|
* @param {*} [options] Override http request option.
|
|
22744
23061
|
* @throws {RequiredError}
|
|
22745
23062
|
*/
|
|
22746
|
-
|
|
23063
|
+
apiV1SearchDoctorsGet: (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>;
|
|
22747
23064
|
/**
|
|
22748
23065
|
*
|
|
22749
|
-
* @
|
|
23066
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23067
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
22750
23068
|
* @param {*} [options] Override http request option.
|
|
22751
23069
|
* @throws {RequiredError}
|
|
22752
23070
|
*/
|
|
22753
|
-
|
|
23071
|
+
apiV1SearchDoctorsPost: (updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22754
23072
|
/**
|
|
22755
23073
|
*
|
|
22756
|
-
* @summary Get
|
|
22757
|
-
* @param {string}
|
|
22758
|
-
* @param {
|
|
22759
|
-
* @param {
|
|
23074
|
+
* @summary Get the number of items in each search index
|
|
23075
|
+
* @param {string} [searchTerm]
|
|
23076
|
+
* @param {boolean} [countOnly]
|
|
23077
|
+
* @param {string} [countryId]
|
|
23078
|
+
* @param {string} [hospitalId]
|
|
23079
|
+
* @param {MarketingType} [marketingType]
|
|
23080
|
+
* @param {string} [languageCode]
|
|
22760
23081
|
* @param {number} [page]
|
|
22761
23082
|
* @param {number} [limit]
|
|
22762
23083
|
* @param {Date} [lastRetrieved]
|
|
22763
23084
|
* @param {*} [options] Override http request option.
|
|
22764
23085
|
* @throws {RequiredError}
|
|
22765
23086
|
*/
|
|
22766
|
-
|
|
23087
|
+
apiV1SearchGetcountGet: (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>;
|
|
22767
23088
|
/**
|
|
22768
23089
|
*
|
|
22769
|
-
* @summary
|
|
22770
|
-
* @param {string}
|
|
22771
|
-
* @param {
|
|
23090
|
+
* @summary Search hospitals using Azure Search Services
|
|
23091
|
+
* @param {string} [searchTerm]
|
|
23092
|
+
* @param {boolean} [countOnly]
|
|
23093
|
+
* @param {string} [countryId]
|
|
23094
|
+
* @param {string} [hospitalId]
|
|
23095
|
+
* @param {MarketingType} [marketingType]
|
|
23096
|
+
* @param {string} [languageCode]
|
|
23097
|
+
* @param {number} [page]
|
|
23098
|
+
* @param {number} [limit]
|
|
23099
|
+
* @param {Date} [lastRetrieved]
|
|
22772
23100
|
* @param {*} [options] Override http request option.
|
|
22773
23101
|
* @throws {RequiredError}
|
|
22774
23102
|
*/
|
|
22775
|
-
|
|
23103
|
+
apiV1SearchHospitalsGet: (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>;
|
|
22776
23104
|
/**
|
|
22777
23105
|
*
|
|
22778
|
-
* @summary
|
|
22779
|
-
* @param {
|
|
22780
|
-
* @param {string} mediaId
|
|
23106
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23107
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
22781
23108
|
* @param {*} [options] Override http request option.
|
|
22782
23109
|
* @throws {RequiredError}
|
|
22783
23110
|
*/
|
|
22784
|
-
|
|
23111
|
+
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22785
23112
|
/**
|
|
22786
23113
|
*
|
|
22787
|
-
* @summary
|
|
22788
|
-
* @param {string}
|
|
22789
|
-
* @param {
|
|
22790
|
-
* @param {
|
|
23114
|
+
* @summary Search specialties using Azure Search Service
|
|
23115
|
+
* @param {string} [searchTerm]
|
|
23116
|
+
* @param {boolean} [countOnly]
|
|
23117
|
+
* @param {string} [countryId]
|
|
23118
|
+
* @param {string} [hospitalId]
|
|
23119
|
+
* @param {MarketingType} [marketingType]
|
|
23120
|
+
* @param {string} [languageCode]
|
|
23121
|
+
* @param {number} [page]
|
|
23122
|
+
* @param {number} [limit]
|
|
23123
|
+
* @param {Date} [lastRetrieved]
|
|
22791
23124
|
* @param {*} [options] Override http request option.
|
|
22792
23125
|
* @throws {RequiredError}
|
|
22793
23126
|
*/
|
|
22794
|
-
|
|
23127
|
+
apiV1SearchSpecialtiesGet: (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>;
|
|
22795
23128
|
/**
|
|
22796
23129
|
*
|
|
22797
|
-
* @summary
|
|
22798
|
-
* @param {
|
|
22799
|
-
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23130
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23131
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
22800
23132
|
* @param {*} [options] Override http request option.
|
|
22801
23133
|
* @throws {RequiredError}
|
|
22802
23134
|
*/
|
|
22803
|
-
|
|
23135
|
+
apiV1SearchSpecialtiesPost: (updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22804
23136
|
/**
|
|
22805
23137
|
*
|
|
22806
|
-
* @summary
|
|
22807
|
-
* @param {string}
|
|
22808
|
-
* @param {
|
|
23138
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23139
|
+
* @param {string} [searchTerm]
|
|
23140
|
+
* @param {boolean} [countOnly]
|
|
23141
|
+
* @param {string} [countryId]
|
|
23142
|
+
* @param {string} [hospitalId]
|
|
23143
|
+
* @param {MarketingType} [marketingType]
|
|
23144
|
+
* @param {string} [languageCode]
|
|
23145
|
+
* @param {number} [page]
|
|
23146
|
+
* @param {number} [limit]
|
|
23147
|
+
* @param {Date} [lastRetrieved]
|
|
22809
23148
|
* @param {*} [options] Override http request option.
|
|
22810
23149
|
* @throws {RequiredError}
|
|
22811
23150
|
*/
|
|
22812
|
-
|
|
23151
|
+
apiV1SearchSpecialtytypesGet: (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>;
|
|
23152
|
+
/**
|
|
23153
|
+
*
|
|
23154
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23155
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23156
|
+
* @param {*} [options] Override http request option.
|
|
23157
|
+
* @throws {RequiredError}
|
|
23158
|
+
*/
|
|
23159
|
+
apiV1SearchSpecialtytypesPost: (updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22813
23160
|
};
|
|
22814
23161
|
/**
|
|
22815
|
-
*
|
|
23162
|
+
* SearchApi - functional programming interface
|
|
22816
23163
|
* @export
|
|
22817
23164
|
*/
|
|
22818
|
-
export declare const
|
|
23165
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
22819
23166
|
/**
|
|
22820
23167
|
*
|
|
22821
|
-
* @summary
|
|
22822
|
-
* @param {string} [
|
|
22823
|
-
* @param {
|
|
22824
|
-
* @param {string} [
|
|
22825
|
-
* @param {string} [
|
|
22826
|
-
* @param {
|
|
22827
|
-
* @param {
|
|
22828
|
-
* @param {ReviewType} [reviewType]
|
|
23168
|
+
* @summary Search deals using Azure Search Service
|
|
23169
|
+
* @param {string} [searchTerm]
|
|
23170
|
+
* @param {boolean} [countOnly]
|
|
23171
|
+
* @param {string} [countryId]
|
|
23172
|
+
* @param {string} [hospitalId]
|
|
23173
|
+
* @param {MarketingType} [marketingType]
|
|
23174
|
+
* @param {string} [languageCode]
|
|
22829
23175
|
* @param {number} [page]
|
|
22830
23176
|
* @param {number} [limit]
|
|
22831
23177
|
* @param {Date} [lastRetrieved]
|
|
22832
23178
|
* @param {*} [options] Override http request option.
|
|
22833
23179
|
* @throws {RequiredError}
|
|
22834
23180
|
*/
|
|
22835
|
-
|
|
23181
|
+
apiV1SearchDealsGet(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>>;
|
|
22836
23182
|
/**
|
|
22837
23183
|
*
|
|
22838
|
-
* @summary
|
|
22839
|
-
* @param {
|
|
23184
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23185
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
22840
23186
|
* @param {*} [options] Override http request option.
|
|
22841
23187
|
* @throws {RequiredError}
|
|
22842
23188
|
*/
|
|
22843
|
-
|
|
23189
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
22844
23190
|
/**
|
|
22845
23191
|
*
|
|
22846
|
-
* @summary
|
|
22847
|
-
* @param {string}
|
|
23192
|
+
* @summary Search doctors using Azure Search Services
|
|
23193
|
+
* @param {string} [searchTerm]
|
|
23194
|
+
* @param {boolean} [countOnly]
|
|
23195
|
+
* @param {string} [countryId]
|
|
23196
|
+
* @param {string} [hospitalId]
|
|
23197
|
+
* @param {MarketingType} [marketingType]
|
|
23198
|
+
* @param {string} [languageCode]
|
|
23199
|
+
* @param {number} [page]
|
|
23200
|
+
* @param {number} [limit]
|
|
23201
|
+
* @param {Date} [lastRetrieved]
|
|
22848
23202
|
* @param {*} [options] Override http request option.
|
|
22849
23203
|
* @throws {RequiredError}
|
|
22850
23204
|
*/
|
|
22851
|
-
|
|
23205
|
+
apiV1SearchDoctorsGet(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>>;
|
|
22852
23206
|
/**
|
|
22853
23207
|
*
|
|
22854
|
-
* @
|
|
23208
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23209
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
22855
23210
|
* @param {*} [options] Override http request option.
|
|
22856
23211
|
* @throws {RequiredError}
|
|
22857
23212
|
*/
|
|
22858
|
-
|
|
23213
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
22859
23214
|
/**
|
|
22860
23215
|
*
|
|
22861
|
-
* @summary Get
|
|
22862
|
-
* @param {string}
|
|
22863
|
-
* @param {
|
|
22864
|
-
* @param {
|
|
23216
|
+
* @summary Get the number of items in each search index
|
|
23217
|
+
* @param {string} [searchTerm]
|
|
23218
|
+
* @param {boolean} [countOnly]
|
|
23219
|
+
* @param {string} [countryId]
|
|
23220
|
+
* @param {string} [hospitalId]
|
|
23221
|
+
* @param {MarketingType} [marketingType]
|
|
23222
|
+
* @param {string} [languageCode]
|
|
22865
23223
|
* @param {number} [page]
|
|
22866
23224
|
* @param {number} [limit]
|
|
22867
23225
|
* @param {Date} [lastRetrieved]
|
|
22868
23226
|
* @param {*} [options] Override http request option.
|
|
22869
23227
|
* @throws {RequiredError}
|
|
22870
23228
|
*/
|
|
22871
|
-
|
|
23229
|
+
apiV1SearchGetcountGet(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>>;
|
|
22872
23230
|
/**
|
|
22873
23231
|
*
|
|
22874
|
-
* @summary
|
|
22875
|
-
* @param {string}
|
|
22876
|
-
* @param {
|
|
23232
|
+
* @summary Search hospitals using Azure Search Services
|
|
23233
|
+
* @param {string} [searchTerm]
|
|
23234
|
+
* @param {boolean} [countOnly]
|
|
23235
|
+
* @param {string} [countryId]
|
|
23236
|
+
* @param {string} [hospitalId]
|
|
23237
|
+
* @param {MarketingType} [marketingType]
|
|
23238
|
+
* @param {string} [languageCode]
|
|
23239
|
+
* @param {number} [page]
|
|
23240
|
+
* @param {number} [limit]
|
|
23241
|
+
* @param {Date} [lastRetrieved]
|
|
22877
23242
|
* @param {*} [options] Override http request option.
|
|
22878
23243
|
* @throws {RequiredError}
|
|
22879
23244
|
*/
|
|
22880
|
-
|
|
23245
|
+
apiV1SearchHospitalsGet(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>>;
|
|
22881
23246
|
/**
|
|
22882
23247
|
*
|
|
22883
|
-
* @summary
|
|
22884
|
-
* @param {
|
|
23248
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23249
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23250
|
+
* @param {*} [options] Override http request option.
|
|
23251
|
+
* @throws {RequiredError}
|
|
23252
|
+
*/
|
|
23253
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23254
|
+
/**
|
|
23255
|
+
*
|
|
23256
|
+
* @summary Search specialties using Azure Search Service
|
|
23257
|
+
* @param {string} [searchTerm]
|
|
23258
|
+
* @param {boolean} [countOnly]
|
|
23259
|
+
* @param {string} [countryId]
|
|
23260
|
+
* @param {string} [hospitalId]
|
|
23261
|
+
* @param {MarketingType} [marketingType]
|
|
23262
|
+
* @param {string} [languageCode]
|
|
23263
|
+
* @param {number} [page]
|
|
23264
|
+
* @param {number} [limit]
|
|
23265
|
+
* @param {Date} [lastRetrieved]
|
|
23266
|
+
* @param {*} [options] Override http request option.
|
|
23267
|
+
* @throws {RequiredError}
|
|
23268
|
+
*/
|
|
23269
|
+
apiV1SearchSpecialtiesGet(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>>;
|
|
23270
|
+
/**
|
|
23271
|
+
*
|
|
23272
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23273
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23274
|
+
* @param {*} [options] Override http request option.
|
|
23275
|
+
* @throws {RequiredError}
|
|
23276
|
+
*/
|
|
23277
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23278
|
+
/**
|
|
23279
|
+
*
|
|
23280
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23281
|
+
* @param {string} [searchTerm]
|
|
23282
|
+
* @param {boolean} [countOnly]
|
|
23283
|
+
* @param {string} [countryId]
|
|
23284
|
+
* @param {string} [hospitalId]
|
|
23285
|
+
* @param {MarketingType} [marketingType]
|
|
23286
|
+
* @param {string} [languageCode]
|
|
23287
|
+
* @param {number} [page]
|
|
23288
|
+
* @param {number} [limit]
|
|
23289
|
+
* @param {Date} [lastRetrieved]
|
|
23290
|
+
* @param {*} [options] Override http request option.
|
|
23291
|
+
* @throws {RequiredError}
|
|
23292
|
+
*/
|
|
23293
|
+
apiV1SearchSpecialtytypesGet(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>>;
|
|
23294
|
+
/**
|
|
23295
|
+
*
|
|
23296
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23297
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23298
|
+
* @param {*} [options] Override http request option.
|
|
23299
|
+
* @throws {RequiredError}
|
|
23300
|
+
*/
|
|
23301
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23302
|
+
};
|
|
23303
|
+
/**
|
|
23304
|
+
* SearchApi - factory interface
|
|
23305
|
+
* @export
|
|
23306
|
+
*/
|
|
23307
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23308
|
+
/**
|
|
23309
|
+
*
|
|
23310
|
+
* @summary Search deals using Azure Search Service
|
|
23311
|
+
* @param {string} [searchTerm]
|
|
23312
|
+
* @param {boolean} [countOnly]
|
|
23313
|
+
* @param {string} [countryId]
|
|
23314
|
+
* @param {string} [hospitalId]
|
|
23315
|
+
* @param {MarketingType} [marketingType]
|
|
23316
|
+
* @param {string} [languageCode]
|
|
23317
|
+
* @param {number} [page]
|
|
23318
|
+
* @param {number} [limit]
|
|
23319
|
+
* @param {Date} [lastRetrieved]
|
|
23320
|
+
* @param {*} [options] Override http request option.
|
|
23321
|
+
* @throws {RequiredError}
|
|
23322
|
+
*/
|
|
23323
|
+
apiV1SearchDealsGet(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>;
|
|
23324
|
+
/**
|
|
23325
|
+
*
|
|
23326
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23327
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23328
|
+
* @param {*} [options] Override http request option.
|
|
23329
|
+
* @throws {RequiredError}
|
|
23330
|
+
*/
|
|
23331
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23332
|
+
/**
|
|
23333
|
+
*
|
|
23334
|
+
* @summary Search doctors using Azure Search Services
|
|
23335
|
+
* @param {string} [searchTerm]
|
|
23336
|
+
* @param {boolean} [countOnly]
|
|
23337
|
+
* @param {string} [countryId]
|
|
23338
|
+
* @param {string} [hospitalId]
|
|
23339
|
+
* @param {MarketingType} [marketingType]
|
|
23340
|
+
* @param {string} [languageCode]
|
|
23341
|
+
* @param {number} [page]
|
|
23342
|
+
* @param {number} [limit]
|
|
23343
|
+
* @param {Date} [lastRetrieved]
|
|
23344
|
+
* @param {*} [options] Override http request option.
|
|
23345
|
+
* @throws {RequiredError}
|
|
23346
|
+
*/
|
|
23347
|
+
apiV1SearchDoctorsGet(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>;
|
|
23348
|
+
/**
|
|
23349
|
+
*
|
|
23350
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23351
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23352
|
+
* @param {*} [options] Override http request option.
|
|
23353
|
+
* @throws {RequiredError}
|
|
23354
|
+
*/
|
|
23355
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23356
|
+
/**
|
|
23357
|
+
*
|
|
23358
|
+
* @summary Get the number of items in each search index
|
|
23359
|
+
* @param {string} [searchTerm]
|
|
23360
|
+
* @param {boolean} [countOnly]
|
|
23361
|
+
* @param {string} [countryId]
|
|
23362
|
+
* @param {string} [hospitalId]
|
|
23363
|
+
* @param {MarketingType} [marketingType]
|
|
23364
|
+
* @param {string} [languageCode]
|
|
23365
|
+
* @param {number} [page]
|
|
23366
|
+
* @param {number} [limit]
|
|
23367
|
+
* @param {Date} [lastRetrieved]
|
|
23368
|
+
* @param {*} [options] Override http request option.
|
|
23369
|
+
* @throws {RequiredError}
|
|
23370
|
+
*/
|
|
23371
|
+
apiV1SearchGetcountGet(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>;
|
|
23372
|
+
/**
|
|
23373
|
+
*
|
|
23374
|
+
* @summary Search hospitals using Azure Search Services
|
|
23375
|
+
* @param {string} [searchTerm]
|
|
23376
|
+
* @param {boolean} [countOnly]
|
|
23377
|
+
* @param {string} [countryId]
|
|
23378
|
+
* @param {string} [hospitalId]
|
|
23379
|
+
* @param {MarketingType} [marketingType]
|
|
23380
|
+
* @param {string} [languageCode]
|
|
23381
|
+
* @param {number} [page]
|
|
23382
|
+
* @param {number} [limit]
|
|
23383
|
+
* @param {Date} [lastRetrieved]
|
|
23384
|
+
* @param {*} [options] Override http request option.
|
|
23385
|
+
* @throws {RequiredError}
|
|
23386
|
+
*/
|
|
23387
|
+
apiV1SearchHospitalsGet(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>;
|
|
23388
|
+
/**
|
|
23389
|
+
*
|
|
23390
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23391
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23392
|
+
* @param {*} [options] Override http request option.
|
|
23393
|
+
* @throws {RequiredError}
|
|
23394
|
+
*/
|
|
23395
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23396
|
+
/**
|
|
23397
|
+
*
|
|
23398
|
+
* @summary Search specialties using Azure Search Service
|
|
23399
|
+
* @param {string} [searchTerm]
|
|
23400
|
+
* @param {boolean} [countOnly]
|
|
23401
|
+
* @param {string} [countryId]
|
|
23402
|
+
* @param {string} [hospitalId]
|
|
23403
|
+
* @param {MarketingType} [marketingType]
|
|
23404
|
+
* @param {string} [languageCode]
|
|
23405
|
+
* @param {number} [page]
|
|
23406
|
+
* @param {number} [limit]
|
|
23407
|
+
* @param {Date} [lastRetrieved]
|
|
23408
|
+
* @param {*} [options] Override http request option.
|
|
23409
|
+
* @throws {RequiredError}
|
|
23410
|
+
*/
|
|
23411
|
+
apiV1SearchSpecialtiesGet(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>;
|
|
23412
|
+
/**
|
|
23413
|
+
*
|
|
23414
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23415
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23416
|
+
* @param {*} [options] Override http request option.
|
|
23417
|
+
* @throws {RequiredError}
|
|
23418
|
+
*/
|
|
23419
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23420
|
+
/**
|
|
23421
|
+
*
|
|
23422
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23423
|
+
* @param {string} [searchTerm]
|
|
23424
|
+
* @param {boolean} [countOnly]
|
|
23425
|
+
* @param {string} [countryId]
|
|
23426
|
+
* @param {string} [hospitalId]
|
|
23427
|
+
* @param {MarketingType} [marketingType]
|
|
23428
|
+
* @param {string} [languageCode]
|
|
23429
|
+
* @param {number} [page]
|
|
23430
|
+
* @param {number} [limit]
|
|
23431
|
+
* @param {Date} [lastRetrieved]
|
|
23432
|
+
* @param {*} [options] Override http request option.
|
|
23433
|
+
* @throws {RequiredError}
|
|
23434
|
+
*/
|
|
23435
|
+
apiV1SearchSpecialtytypesGet(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>;
|
|
23436
|
+
/**
|
|
23437
|
+
*
|
|
23438
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23439
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23440
|
+
* @param {*} [options] Override http request option.
|
|
23441
|
+
* @throws {RequiredError}
|
|
23442
|
+
*/
|
|
23443
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23444
|
+
};
|
|
23445
|
+
/**
|
|
23446
|
+
* SearchApi - object-oriented interface
|
|
23447
|
+
* @export
|
|
23448
|
+
* @class SearchApi
|
|
23449
|
+
* @extends {BaseAPI}
|
|
23450
|
+
*/
|
|
23451
|
+
export declare class SearchApi extends BaseAPI {
|
|
23452
|
+
/**
|
|
23453
|
+
*
|
|
23454
|
+
* @summary Search deals using Azure Search Service
|
|
23455
|
+
* @param {string} [searchTerm]
|
|
23456
|
+
* @param {boolean} [countOnly]
|
|
23457
|
+
* @param {string} [countryId]
|
|
23458
|
+
* @param {string} [hospitalId]
|
|
23459
|
+
* @param {MarketingType} [marketingType]
|
|
23460
|
+
* @param {string} [languageCode]
|
|
23461
|
+
* @param {number} [page]
|
|
23462
|
+
* @param {number} [limit]
|
|
23463
|
+
* @param {Date} [lastRetrieved]
|
|
23464
|
+
* @param {*} [options] Override http request option.
|
|
23465
|
+
* @throws {RequiredError}
|
|
23466
|
+
* @memberof SearchApi
|
|
23467
|
+
*/
|
|
23468
|
+
apiV1SearchDealsGet(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>>;
|
|
23469
|
+
/**
|
|
23470
|
+
*
|
|
23471
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23472
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23473
|
+
* @param {*} [options] Override http request option.
|
|
23474
|
+
* @throws {RequiredError}
|
|
23475
|
+
* @memberof SearchApi
|
|
23476
|
+
*/
|
|
23477
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23478
|
+
/**
|
|
23479
|
+
*
|
|
23480
|
+
* @summary Search doctors using Azure Search Services
|
|
23481
|
+
* @param {string} [searchTerm]
|
|
23482
|
+
* @param {boolean} [countOnly]
|
|
23483
|
+
* @param {string} [countryId]
|
|
23484
|
+
* @param {string} [hospitalId]
|
|
23485
|
+
* @param {MarketingType} [marketingType]
|
|
23486
|
+
* @param {string} [languageCode]
|
|
23487
|
+
* @param {number} [page]
|
|
23488
|
+
* @param {number} [limit]
|
|
23489
|
+
* @param {Date} [lastRetrieved]
|
|
23490
|
+
* @param {*} [options] Override http request option.
|
|
23491
|
+
* @throws {RequiredError}
|
|
23492
|
+
* @memberof SearchApi
|
|
23493
|
+
*/
|
|
23494
|
+
apiV1SearchDoctorsGet(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>>;
|
|
23495
|
+
/**
|
|
23496
|
+
*
|
|
23497
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23498
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23499
|
+
* @param {*} [options] Override http request option.
|
|
23500
|
+
* @throws {RequiredError}
|
|
23501
|
+
* @memberof SearchApi
|
|
23502
|
+
*/
|
|
23503
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23504
|
+
/**
|
|
23505
|
+
*
|
|
23506
|
+
* @summary Get the number of items in each search index
|
|
23507
|
+
* @param {string} [searchTerm]
|
|
23508
|
+
* @param {boolean} [countOnly]
|
|
23509
|
+
* @param {string} [countryId]
|
|
23510
|
+
* @param {string} [hospitalId]
|
|
23511
|
+
* @param {MarketingType} [marketingType]
|
|
23512
|
+
* @param {string} [languageCode]
|
|
23513
|
+
* @param {number} [page]
|
|
23514
|
+
* @param {number} [limit]
|
|
23515
|
+
* @param {Date} [lastRetrieved]
|
|
23516
|
+
* @param {*} [options] Override http request option.
|
|
23517
|
+
* @throws {RequiredError}
|
|
23518
|
+
* @memberof SearchApi
|
|
23519
|
+
*/
|
|
23520
|
+
apiV1SearchGetcountGet(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>>;
|
|
23521
|
+
/**
|
|
23522
|
+
*
|
|
23523
|
+
* @summary Search hospitals using Azure Search Services
|
|
23524
|
+
* @param {string} [searchTerm]
|
|
23525
|
+
* @param {boolean} [countOnly]
|
|
23526
|
+
* @param {string} [countryId]
|
|
23527
|
+
* @param {string} [hospitalId]
|
|
23528
|
+
* @param {MarketingType} [marketingType]
|
|
23529
|
+
* @param {string} [languageCode]
|
|
23530
|
+
* @param {number} [page]
|
|
23531
|
+
* @param {number} [limit]
|
|
23532
|
+
* @param {Date} [lastRetrieved]
|
|
23533
|
+
* @param {*} [options] Override http request option.
|
|
23534
|
+
* @throws {RequiredError}
|
|
23535
|
+
* @memberof SearchApi
|
|
23536
|
+
*/
|
|
23537
|
+
apiV1SearchHospitalsGet(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>>;
|
|
23538
|
+
/**
|
|
23539
|
+
*
|
|
23540
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23541
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23542
|
+
* @param {*} [options] Override http request option.
|
|
23543
|
+
* @throws {RequiredError}
|
|
23544
|
+
* @memberof SearchApi
|
|
23545
|
+
*/
|
|
23546
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23547
|
+
/**
|
|
23548
|
+
*
|
|
23549
|
+
* @summary Search specialties using Azure Search Service
|
|
23550
|
+
* @param {string} [searchTerm]
|
|
23551
|
+
* @param {boolean} [countOnly]
|
|
23552
|
+
* @param {string} [countryId]
|
|
23553
|
+
* @param {string} [hospitalId]
|
|
23554
|
+
* @param {MarketingType} [marketingType]
|
|
23555
|
+
* @param {string} [languageCode]
|
|
23556
|
+
* @param {number} [page]
|
|
23557
|
+
* @param {number} [limit]
|
|
23558
|
+
* @param {Date} [lastRetrieved]
|
|
23559
|
+
* @param {*} [options] Override http request option.
|
|
23560
|
+
* @throws {RequiredError}
|
|
23561
|
+
* @memberof SearchApi
|
|
23562
|
+
*/
|
|
23563
|
+
apiV1SearchSpecialtiesGet(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>>;
|
|
23564
|
+
/**
|
|
23565
|
+
*
|
|
23566
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23567
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23568
|
+
* @param {*} [options] Override http request option.
|
|
23569
|
+
* @throws {RequiredError}
|
|
23570
|
+
* @memberof SearchApi
|
|
23571
|
+
*/
|
|
23572
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23573
|
+
/**
|
|
23574
|
+
*
|
|
23575
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23576
|
+
* @param {string} [searchTerm]
|
|
23577
|
+
* @param {boolean} [countOnly]
|
|
23578
|
+
* @param {string} [countryId]
|
|
23579
|
+
* @param {string} [hospitalId]
|
|
23580
|
+
* @param {MarketingType} [marketingType]
|
|
23581
|
+
* @param {string} [languageCode]
|
|
23582
|
+
* @param {number} [page]
|
|
23583
|
+
* @param {number} [limit]
|
|
23584
|
+
* @param {Date} [lastRetrieved]
|
|
23585
|
+
* @param {*} [options] Override http request option.
|
|
23586
|
+
* @throws {RequiredError}
|
|
23587
|
+
* @memberof SearchApi
|
|
23588
|
+
*/
|
|
23589
|
+
apiV1SearchSpecialtytypesGet(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>>;
|
|
23590
|
+
/**
|
|
23591
|
+
*
|
|
23592
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23593
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23594
|
+
* @param {*} [options] Override http request option.
|
|
23595
|
+
* @throws {RequiredError}
|
|
23596
|
+
* @memberof SearchApi
|
|
23597
|
+
*/
|
|
23598
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23599
|
+
}
|
|
23600
|
+
/**
|
|
23601
|
+
* ServiceReviewsApi - axios parameter creator
|
|
23602
|
+
* @export
|
|
23603
|
+
*/
|
|
23604
|
+
export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23605
|
+
/**
|
|
23606
|
+
*
|
|
23607
|
+
* @summary Get all ServiceReviews.
|
|
23608
|
+
* @param {string} [serviceId]
|
|
23609
|
+
* @param {string} [serviceName]
|
|
23610
|
+
* @param {string} [patientId]
|
|
23611
|
+
* @param {string} [patientName]
|
|
23612
|
+
* @param {boolean} [recommended]
|
|
23613
|
+
* @param {number} [rate]
|
|
23614
|
+
* @param {ReviewType} [reviewType]
|
|
23615
|
+
* @param {number} [page]
|
|
23616
|
+
* @param {number} [limit]
|
|
23617
|
+
* @param {Date} [lastRetrieved]
|
|
23618
|
+
* @param {*} [options] Override http request option.
|
|
23619
|
+
* @throws {RequiredError}
|
|
23620
|
+
*/
|
|
23621
|
+
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23622
|
+
/**
|
|
23623
|
+
*
|
|
23624
|
+
* @summary Create a ServiceReview.
|
|
23625
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
23626
|
+
* @param {*} [options] Override http request option.
|
|
23627
|
+
* @throws {RequiredError}
|
|
23628
|
+
*/
|
|
23629
|
+
apiV1ServicereviewsPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23630
|
+
/**
|
|
23631
|
+
*
|
|
23632
|
+
* @summary Delete ServiceReview.
|
|
23633
|
+
* @param {string} serviceReviewId
|
|
23634
|
+
* @param {*} [options] Override http request option.
|
|
23635
|
+
* @throws {RequiredError}
|
|
23636
|
+
*/
|
|
23637
|
+
apiV1ServicereviewsServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23638
|
+
/**
|
|
23639
|
+
*
|
|
23640
|
+
* @param {string} serviceReviewId
|
|
23641
|
+
* @param {*} [options] Override http request option.
|
|
23642
|
+
* @throws {RequiredError}
|
|
23643
|
+
*/
|
|
23644
|
+
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23645
|
+
/**
|
|
23646
|
+
*
|
|
23647
|
+
* @summary Get all ServiceReviewMedias.
|
|
23648
|
+
* @param {string} serviceReviewId
|
|
23649
|
+
* @param {string} [id]
|
|
23650
|
+
* @param {MediaType} [mediaType]
|
|
23651
|
+
* @param {number} [page]
|
|
23652
|
+
* @param {number} [limit]
|
|
23653
|
+
* @param {Date} [lastRetrieved]
|
|
23654
|
+
* @param {*} [options] Override http request option.
|
|
23655
|
+
* @throws {RequiredError}
|
|
23656
|
+
*/
|
|
23657
|
+
apiV1ServicereviewsServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23658
|
+
/**
|
|
23659
|
+
*
|
|
23660
|
+
* @summary Delete ServiceReviewMedia
|
|
23661
|
+
* @param {string} serviceReviewId
|
|
23662
|
+
* @param {string} mediaId
|
|
23663
|
+
* @param {*} [options] Override http request option.
|
|
23664
|
+
* @throws {RequiredError}
|
|
23665
|
+
*/
|
|
23666
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23667
|
+
/**
|
|
23668
|
+
*
|
|
23669
|
+
* @summary Get ServiceReviewMedia.
|
|
23670
|
+
* @param {string} serviceReviewId
|
|
23671
|
+
* @param {string} mediaId
|
|
23672
|
+
* @param {*} [options] Override http request option.
|
|
23673
|
+
* @throws {RequiredError}
|
|
23674
|
+
*/
|
|
23675
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23676
|
+
/**
|
|
23677
|
+
*
|
|
23678
|
+
* @summary Update ServiceReviewMedia.
|
|
23679
|
+
* @param {string} serviceReviewId
|
|
23680
|
+
* @param {string} mediaId
|
|
23681
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
23682
|
+
* @param {*} [options] Override http request option.
|
|
23683
|
+
* @throws {RequiredError}
|
|
23684
|
+
*/
|
|
23685
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23686
|
+
/**
|
|
23687
|
+
*
|
|
23688
|
+
* @summary Create ServiceReviewMedia.
|
|
23689
|
+
* @param {string} serviceReviewId
|
|
23690
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23691
|
+
* @param {*} [options] Override http request option.
|
|
23692
|
+
* @throws {RequiredError}
|
|
23693
|
+
*/
|
|
23694
|
+
apiV1ServicereviewsServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23695
|
+
/**
|
|
23696
|
+
*
|
|
23697
|
+
* @summary Update ServiceReview.
|
|
23698
|
+
* @param {string} serviceReviewId
|
|
23699
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
23700
|
+
* @param {*} [options] Override http request option.
|
|
23701
|
+
* @throws {RequiredError}
|
|
23702
|
+
*/
|
|
23703
|
+
apiV1ServicereviewsServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23704
|
+
};
|
|
23705
|
+
/**
|
|
23706
|
+
* ServiceReviewsApi - functional programming interface
|
|
23707
|
+
* @export
|
|
23708
|
+
*/
|
|
23709
|
+
export declare const ServiceReviewsApiFp: (configuration?: Configuration | undefined) => {
|
|
23710
|
+
/**
|
|
23711
|
+
*
|
|
23712
|
+
* @summary Get all ServiceReviews.
|
|
23713
|
+
* @param {string} [serviceId]
|
|
23714
|
+
* @param {string} [serviceName]
|
|
23715
|
+
* @param {string} [patientId]
|
|
23716
|
+
* @param {string} [patientName]
|
|
23717
|
+
* @param {boolean} [recommended]
|
|
23718
|
+
* @param {number} [rate]
|
|
23719
|
+
* @param {ReviewType} [reviewType]
|
|
23720
|
+
* @param {number} [page]
|
|
23721
|
+
* @param {number} [limit]
|
|
23722
|
+
* @param {Date} [lastRetrieved]
|
|
23723
|
+
* @param {*} [options] Override http request option.
|
|
23724
|
+
* @throws {RequiredError}
|
|
23725
|
+
*/
|
|
23726
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
23727
|
+
/**
|
|
23728
|
+
*
|
|
23729
|
+
* @summary Create a ServiceReview.
|
|
23730
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
23731
|
+
* @param {*} [options] Override http request option.
|
|
23732
|
+
* @throws {RequiredError}
|
|
23733
|
+
*/
|
|
23734
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
23735
|
+
/**
|
|
23736
|
+
*
|
|
23737
|
+
* @summary Delete ServiceReview.
|
|
23738
|
+
* @param {string} serviceReviewId
|
|
23739
|
+
* @param {*} [options] Override http request option.
|
|
23740
|
+
* @throws {RequiredError}
|
|
23741
|
+
*/
|
|
23742
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23743
|
+
/**
|
|
23744
|
+
*
|
|
23745
|
+
* @param {string} serviceReviewId
|
|
23746
|
+
* @param {*} [options] Override http request option.
|
|
23747
|
+
* @throws {RequiredError}
|
|
23748
|
+
*/
|
|
23749
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
23750
|
+
/**
|
|
23751
|
+
*
|
|
23752
|
+
* @summary Get all ServiceReviewMedias.
|
|
23753
|
+
* @param {string} serviceReviewId
|
|
23754
|
+
* @param {string} [id]
|
|
23755
|
+
* @param {MediaType} [mediaType]
|
|
23756
|
+
* @param {number} [page]
|
|
23757
|
+
* @param {number} [limit]
|
|
23758
|
+
* @param {Date} [lastRetrieved]
|
|
23759
|
+
* @param {*} [options] Override http request option.
|
|
23760
|
+
* @throws {RequiredError}
|
|
23761
|
+
*/
|
|
23762
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
23763
|
+
/**
|
|
23764
|
+
*
|
|
23765
|
+
* @summary Delete ServiceReviewMedia
|
|
23766
|
+
* @param {string} serviceReviewId
|
|
23767
|
+
* @param {string} mediaId
|
|
23768
|
+
* @param {*} [options] Override http request option.
|
|
23769
|
+
* @throws {RequiredError}
|
|
23770
|
+
*/
|
|
23771
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23772
|
+
/**
|
|
23773
|
+
*
|
|
23774
|
+
* @summary Get ServiceReviewMedia.
|
|
23775
|
+
* @param {string} serviceReviewId
|
|
22885
23776
|
* @param {string} mediaId
|
|
22886
23777
|
* @param {*} [options] Override http request option.
|
|
22887
23778
|
* @throws {RequiredError}
|
|
@@ -23353,14 +24244,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
23353
24244
|
* @summary Get all ServiceCategories.
|
|
23354
24245
|
* @param {string} [id]
|
|
23355
24246
|
* @param {string} [name]
|
|
23356
|
-
* @param {string} [description]
|
|
23357
24247
|
* @param {number} [page]
|
|
23358
24248
|
* @param {number} [limit]
|
|
23359
24249
|
* @param {Date} [lastRetrieved]
|
|
23360
24250
|
* @param {*} [options] Override http request option.
|
|
23361
24251
|
* @throws {RequiredError}
|
|
23362
24252
|
*/
|
|
23363
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined,
|
|
24253
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23364
24254
|
/**
|
|
23365
24255
|
*
|
|
23366
24256
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23404,14 +24294,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
23404
24294
|
* @summary Get all ServiceCategories.
|
|
23405
24295
|
* @param {string} [id]
|
|
23406
24296
|
* @param {string} [name]
|
|
23407
|
-
* @param {string} [description]
|
|
23408
24297
|
* @param {number} [page]
|
|
23409
24298
|
* @param {number} [limit]
|
|
23410
24299
|
* @param {Date} [lastRetrieved]
|
|
23411
24300
|
* @param {*} [options] Override http request option.
|
|
23412
24301
|
* @throws {RequiredError}
|
|
23413
24302
|
*/
|
|
23414
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24303
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
23415
24304
|
/**
|
|
23416
24305
|
*
|
|
23417
24306
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23455,14 +24344,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
23455
24344
|
* @summary Get all ServiceCategories.
|
|
23456
24345
|
* @param {string} [id]
|
|
23457
24346
|
* @param {string} [name]
|
|
23458
|
-
* @param {string} [description]
|
|
23459
24347
|
* @param {number} [page]
|
|
23460
24348
|
* @param {number} [limit]
|
|
23461
24349
|
* @param {Date} [lastRetrieved]
|
|
23462
24350
|
* @param {*} [options] Override http request option.
|
|
23463
24351
|
* @throws {RequiredError}
|
|
23464
24352
|
*/
|
|
23465
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24353
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
23466
24354
|
/**
|
|
23467
24355
|
*
|
|
23468
24356
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23508,7 +24396,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
23508
24396
|
* @summary Get all ServiceCategories.
|
|
23509
24397
|
* @param {string} [id]
|
|
23510
24398
|
* @param {string} [name]
|
|
23511
|
-
* @param {string} [description]
|
|
23512
24399
|
* @param {number} [page]
|
|
23513
24400
|
* @param {number} [limit]
|
|
23514
24401
|
* @param {Date} [lastRetrieved]
|
|
@@ -23516,7 +24403,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
23516
24403
|
* @throws {RequiredError}
|
|
23517
24404
|
* @memberof ServicesCategoriesApi
|
|
23518
24405
|
*/
|
|
23519
|
-
apiV1ServicescategoriesGet(id?: string, name?: string,
|
|
24406
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
23520
24407
|
/**
|
|
23521
24408
|
*
|
|
23522
24409
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|