ch-admin-api-client-typescript 2.2.10 → 2.2.18
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 +1638 -609
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1506 -193
- package/package.json +1 -1
- package/src/api.ts +2117 -497
package/lib/api.d.ts
CHANGED
|
@@ -879,6 +879,50 @@ export interface ArticleTagItemModel {
|
|
|
879
879
|
*/
|
|
880
880
|
'order'?: number;
|
|
881
881
|
}
|
|
882
|
+
/**
|
|
883
|
+
*
|
|
884
|
+
* @export
|
|
885
|
+
* @interface ArticleTagModel
|
|
886
|
+
*/
|
|
887
|
+
export interface ArticleTagModel {
|
|
888
|
+
/**
|
|
889
|
+
*
|
|
890
|
+
* @type {string}
|
|
891
|
+
* @memberof ArticleTagModel
|
|
892
|
+
*/
|
|
893
|
+
'articleId'?: string;
|
|
894
|
+
/**
|
|
895
|
+
*
|
|
896
|
+
* @type {string}
|
|
897
|
+
* @memberof ArticleTagModel
|
|
898
|
+
*/
|
|
899
|
+
'tagId'?: string | null;
|
|
900
|
+
/**
|
|
901
|
+
*
|
|
902
|
+
* @type {number}
|
|
903
|
+
* @memberof ArticleTagModel
|
|
904
|
+
*/
|
|
905
|
+
'order'?: number;
|
|
906
|
+
}
|
|
907
|
+
/**
|
|
908
|
+
*
|
|
909
|
+
* @export
|
|
910
|
+
* @interface ArticleTagsModel
|
|
911
|
+
*/
|
|
912
|
+
export interface ArticleTagsModel {
|
|
913
|
+
/**
|
|
914
|
+
*
|
|
915
|
+
* @type {Array<ArticleTagItemModel>}
|
|
916
|
+
* @memberof ArticleTagsModel
|
|
917
|
+
*/
|
|
918
|
+
'items'?: Array<ArticleTagItemModel> | null;
|
|
919
|
+
/**
|
|
920
|
+
*
|
|
921
|
+
* @type {PagedListMetaData}
|
|
922
|
+
* @memberof ArticleTagsModel
|
|
923
|
+
*/
|
|
924
|
+
'metaData'?: PagedListMetaData;
|
|
925
|
+
}
|
|
882
926
|
/**
|
|
883
927
|
*
|
|
884
928
|
* @export
|
|
@@ -3327,6 +3371,25 @@ export interface CreateArticleSourceCommand {
|
|
|
3327
3371
|
*/
|
|
3328
3372
|
'order'?: number;
|
|
3329
3373
|
}
|
|
3374
|
+
/**
|
|
3375
|
+
*
|
|
3376
|
+
* @export
|
|
3377
|
+
* @interface CreateArticleTagCommand
|
|
3378
|
+
*/
|
|
3379
|
+
export interface CreateArticleTagCommand {
|
|
3380
|
+
/**
|
|
3381
|
+
*
|
|
3382
|
+
* @type {string}
|
|
3383
|
+
* @memberof CreateArticleTagCommand
|
|
3384
|
+
*/
|
|
3385
|
+
'articleId'?: string;
|
|
3386
|
+
/**
|
|
3387
|
+
*
|
|
3388
|
+
* @type {string}
|
|
3389
|
+
* @memberof CreateArticleTagCommand
|
|
3390
|
+
*/
|
|
3391
|
+
'tagId'?: string | null;
|
|
3392
|
+
}
|
|
3330
3393
|
/**
|
|
3331
3394
|
*
|
|
3332
3395
|
* @export
|
|
@@ -3618,6 +3681,18 @@ export interface CreateDoctorCertificateCommand {
|
|
|
3618
3681
|
* @interface CreateDoctorCommand
|
|
3619
3682
|
*/
|
|
3620
3683
|
export interface CreateDoctorCommand {
|
|
3684
|
+
/**
|
|
3685
|
+
*
|
|
3686
|
+
* @type {string}
|
|
3687
|
+
* @memberof CreateDoctorCommand
|
|
3688
|
+
*/
|
|
3689
|
+
'userName'?: string | null;
|
|
3690
|
+
/**
|
|
3691
|
+
*
|
|
3692
|
+
* @type {string}
|
|
3693
|
+
* @memberof CreateDoctorCommand
|
|
3694
|
+
*/
|
|
3695
|
+
'email'?: string | null;
|
|
3621
3696
|
/**
|
|
3622
3697
|
*
|
|
3623
3698
|
* @type {string}
|
|
@@ -3660,36 +3735,6 @@ export interface CreateDoctorCommand {
|
|
|
3660
3735
|
* @memberof CreateDoctorCommand
|
|
3661
3736
|
*/
|
|
3662
3737
|
'dateOfBirth'?: Date | null;
|
|
3663
|
-
/**
|
|
3664
|
-
*
|
|
3665
|
-
* @type {Array<MediaModel>}
|
|
3666
|
-
* @memberof CreateDoctorCommand
|
|
3667
|
-
*/
|
|
3668
|
-
'medias'?: Array<MediaModel> | null;
|
|
3669
|
-
/**
|
|
3670
|
-
*
|
|
3671
|
-
* @type {Array<UserLanguageModel>}
|
|
3672
|
-
* @memberof CreateDoctorCommand
|
|
3673
|
-
*/
|
|
3674
|
-
'languages'?: Array<UserLanguageModel> | null;
|
|
3675
|
-
/**
|
|
3676
|
-
*
|
|
3677
|
-
* @type {Array<UserLocationModel>}
|
|
3678
|
-
* @memberof CreateDoctorCommand
|
|
3679
|
-
*/
|
|
3680
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
3681
|
-
/**
|
|
3682
|
-
*
|
|
3683
|
-
* @type {string}
|
|
3684
|
-
* @memberof CreateDoctorCommand
|
|
3685
|
-
*/
|
|
3686
|
-
'userName'?: string | null;
|
|
3687
|
-
/**
|
|
3688
|
-
*
|
|
3689
|
-
* @type {string}
|
|
3690
|
-
* @memberof CreateDoctorCommand
|
|
3691
|
-
*/
|
|
3692
|
-
'email'?: string | null;
|
|
3693
3738
|
/**
|
|
3694
3739
|
*
|
|
3695
3740
|
* @type {string}
|
|
@@ -3708,36 +3753,6 @@ export interface CreateDoctorCommand {
|
|
|
3708
3753
|
* @memberof CreateDoctorCommand
|
|
3709
3754
|
*/
|
|
3710
3755
|
'consultationFee'?: number | null;
|
|
3711
|
-
/**
|
|
3712
|
-
*
|
|
3713
|
-
* @type {Array<DoctorEducationModel>}
|
|
3714
|
-
* @memberof CreateDoctorCommand
|
|
3715
|
-
*/
|
|
3716
|
-
'educations'?: Array<DoctorEducationModel> | null;
|
|
3717
|
-
/**
|
|
3718
|
-
*
|
|
3719
|
-
* @type {Array<DoctorPortfolioModel>}
|
|
3720
|
-
* @memberof CreateDoctorCommand
|
|
3721
|
-
*/
|
|
3722
|
-
'portfolios'?: Array<DoctorPortfolioModel> | null;
|
|
3723
|
-
/**
|
|
3724
|
-
*
|
|
3725
|
-
* @type {Array<DoctorSpecialtyModel>}
|
|
3726
|
-
* @memberof CreateDoctorCommand
|
|
3727
|
-
*/
|
|
3728
|
-
'specialties'?: Array<DoctorSpecialtyModel> | null;
|
|
3729
|
-
/**
|
|
3730
|
-
*
|
|
3731
|
-
* @type {Array<DoctorCertificateModel>}
|
|
3732
|
-
* @memberof CreateDoctorCommand
|
|
3733
|
-
*/
|
|
3734
|
-
'certificates'?: Array<DoctorCertificateModel> | null;
|
|
3735
|
-
/**
|
|
3736
|
-
*
|
|
3737
|
-
* @type {Array<AwardModel>}
|
|
3738
|
-
* @memberof CreateDoctorCommand
|
|
3739
|
-
*/
|
|
3740
|
-
'awards'?: Array<AwardModel> | null;
|
|
3741
3756
|
}
|
|
3742
3757
|
/**
|
|
3743
3758
|
*
|
|
@@ -3892,13 +3907,13 @@ export interface CreateHospitalCommand {
|
|
|
3892
3907
|
* @type {number}
|
|
3893
3908
|
* @memberof CreateHospitalCommand
|
|
3894
3909
|
*/
|
|
3895
|
-
'
|
|
3910
|
+
'medicalStaffCount'?: number | null;
|
|
3896
3911
|
/**
|
|
3897
3912
|
*
|
|
3898
3913
|
* @type {number}
|
|
3899
3914
|
* @memberof CreateHospitalCommand
|
|
3900
3915
|
*/
|
|
3901
|
-
'
|
|
3916
|
+
'doctorCount'?: number | null;
|
|
3902
3917
|
/**
|
|
3903
3918
|
*
|
|
3904
3919
|
* @type {string}
|
|
@@ -4212,6 +4227,74 @@ export interface CreateMediaCommand {
|
|
|
4212
4227
|
*/
|
|
4213
4228
|
'order'?: number;
|
|
4214
4229
|
}
|
|
4230
|
+
/**
|
|
4231
|
+
*
|
|
4232
|
+
* @export
|
|
4233
|
+
* @interface CreatePlanCommand
|
|
4234
|
+
*/
|
|
4235
|
+
export interface CreatePlanCommand {
|
|
4236
|
+
/**
|
|
4237
|
+
*
|
|
4238
|
+
* @type {string}
|
|
4239
|
+
* @memberof CreatePlanCommand
|
|
4240
|
+
*/
|
|
4241
|
+
'name'?: string | null;
|
|
4242
|
+
/**
|
|
4243
|
+
*
|
|
4244
|
+
* @type {number}
|
|
4245
|
+
* @memberof CreatePlanCommand
|
|
4246
|
+
*/
|
|
4247
|
+
'memberLimit'?: number;
|
|
4248
|
+
/**
|
|
4249
|
+
*
|
|
4250
|
+
* @type {number}
|
|
4251
|
+
* @memberof CreatePlanCommand
|
|
4252
|
+
*/
|
|
4253
|
+
'unitPrice'?: number;
|
|
4254
|
+
/**
|
|
4255
|
+
*
|
|
4256
|
+
* @type {string}
|
|
4257
|
+
* @memberof CreatePlanCommand
|
|
4258
|
+
*/
|
|
4259
|
+
'stripePriceId'?: string | null;
|
|
4260
|
+
/**
|
|
4261
|
+
*
|
|
4262
|
+
* @type {RecurringInterval}
|
|
4263
|
+
* @memberof CreatePlanCommand
|
|
4264
|
+
*/
|
|
4265
|
+
'interval'?: RecurringInterval;
|
|
4266
|
+
/**
|
|
4267
|
+
*
|
|
4268
|
+
* @type {boolean}
|
|
4269
|
+
* @memberof CreatePlanCommand
|
|
4270
|
+
*/
|
|
4271
|
+
'isActive'?: boolean;
|
|
4272
|
+
/**
|
|
4273
|
+
*
|
|
4274
|
+
* @type {number}
|
|
4275
|
+
* @memberof CreatePlanCommand
|
|
4276
|
+
*/
|
|
4277
|
+
'order'?: number;
|
|
4278
|
+
}
|
|
4279
|
+
/**
|
|
4280
|
+
*
|
|
4281
|
+
* @export
|
|
4282
|
+
* @interface CreatePlanHospitalCommand
|
|
4283
|
+
*/
|
|
4284
|
+
export interface CreatePlanHospitalCommand {
|
|
4285
|
+
/**
|
|
4286
|
+
*
|
|
4287
|
+
* @type {string}
|
|
4288
|
+
* @memberof CreatePlanHospitalCommand
|
|
4289
|
+
*/
|
|
4290
|
+
'hospitalId'?: string;
|
|
4291
|
+
/**
|
|
4292
|
+
*
|
|
4293
|
+
* @type {number}
|
|
4294
|
+
* @memberof CreatePlanHospitalCommand
|
|
4295
|
+
*/
|
|
4296
|
+
'order'?: number;
|
|
4297
|
+
}
|
|
4215
4298
|
/**
|
|
4216
4299
|
*
|
|
4217
4300
|
* @export
|
|
@@ -4232,10 +4315,10 @@ export interface CreateServiceCategoryCommand {
|
|
|
4232
4315
|
'description'?: string | null;
|
|
4233
4316
|
/**
|
|
4234
4317
|
*
|
|
4235
|
-
* @type {
|
|
4318
|
+
* @type {number}
|
|
4236
4319
|
* @memberof CreateServiceCategoryCommand
|
|
4237
4320
|
*/
|
|
4238
|
-
'
|
|
4321
|
+
'order'?: number;
|
|
4239
4322
|
}
|
|
4240
4323
|
/**
|
|
4241
4324
|
*
|
|
@@ -5027,6 +5110,19 @@ export interface DealsModel {
|
|
|
5027
5110
|
*/
|
|
5028
5111
|
'metaData'?: PagedListMetaData;
|
|
5029
5112
|
}
|
|
5113
|
+
/**
|
|
5114
|
+
*
|
|
5115
|
+
* @export
|
|
5116
|
+
* @interface DeleteArticleTagCommand
|
|
5117
|
+
*/
|
|
5118
|
+
export interface DeleteArticleTagCommand {
|
|
5119
|
+
/**
|
|
5120
|
+
*
|
|
5121
|
+
* @type {string}
|
|
5122
|
+
* @memberof DeleteArticleTagCommand
|
|
5123
|
+
*/
|
|
5124
|
+
'tagId'?: string | null;
|
|
5125
|
+
}
|
|
5030
5126
|
/**
|
|
5031
5127
|
*
|
|
5032
5128
|
* @export
|
|
@@ -9171,6 +9267,74 @@ export interface MediasModel {
|
|
|
9171
9267
|
*/
|
|
9172
9268
|
'metaData'?: PagedListMetaData;
|
|
9173
9269
|
}
|
|
9270
|
+
/**
|
|
9271
|
+
*
|
|
9272
|
+
* @export
|
|
9273
|
+
* @interface MemberModel
|
|
9274
|
+
*/
|
|
9275
|
+
export interface MemberModel {
|
|
9276
|
+
/**
|
|
9277
|
+
*
|
|
9278
|
+
* @type {string}
|
|
9279
|
+
* @memberof MemberModel
|
|
9280
|
+
*/
|
|
9281
|
+
'id'?: string;
|
|
9282
|
+
/**
|
|
9283
|
+
*
|
|
9284
|
+
* @type {string}
|
|
9285
|
+
* @memberof MemberModel
|
|
9286
|
+
*/
|
|
9287
|
+
'email'?: string | null;
|
|
9288
|
+
/**
|
|
9289
|
+
*
|
|
9290
|
+
* @type {string}
|
|
9291
|
+
* @memberof MemberModel
|
|
9292
|
+
*/
|
|
9293
|
+
'firstName'?: string | null;
|
|
9294
|
+
/**
|
|
9295
|
+
*
|
|
9296
|
+
* @type {string}
|
|
9297
|
+
* @memberof MemberModel
|
|
9298
|
+
*/
|
|
9299
|
+
'lastName'?: string | null;
|
|
9300
|
+
/**
|
|
9301
|
+
*
|
|
9302
|
+
* @type {string}
|
|
9303
|
+
* @memberof MemberModel
|
|
9304
|
+
*/
|
|
9305
|
+
'fullName'?: string | null;
|
|
9306
|
+
/**
|
|
9307
|
+
*
|
|
9308
|
+
* @type {Gender}
|
|
9309
|
+
* @memberof MemberModel
|
|
9310
|
+
*/
|
|
9311
|
+
'gender'?: Gender;
|
|
9312
|
+
/**
|
|
9313
|
+
*
|
|
9314
|
+
* @type {Date}
|
|
9315
|
+
* @memberof MemberModel
|
|
9316
|
+
*/
|
|
9317
|
+
'dateOfBirth'?: Date | null;
|
|
9318
|
+
}
|
|
9319
|
+
/**
|
|
9320
|
+
*
|
|
9321
|
+
* @export
|
|
9322
|
+
* @interface MembersModel
|
|
9323
|
+
*/
|
|
9324
|
+
export interface MembersModel {
|
|
9325
|
+
/**
|
|
9326
|
+
*
|
|
9327
|
+
* @type {Array<MemberModel>}
|
|
9328
|
+
* @memberof MembersModel
|
|
9329
|
+
*/
|
|
9330
|
+
'items'?: Array<MemberModel> | null;
|
|
9331
|
+
/**
|
|
9332
|
+
*
|
|
9333
|
+
* @type {PagedListMetaData}
|
|
9334
|
+
* @memberof MembersModel
|
|
9335
|
+
*/
|
|
9336
|
+
'metaData'?: PagedListMetaData;
|
|
9337
|
+
}
|
|
9174
9338
|
/**
|
|
9175
9339
|
*
|
|
9176
9340
|
* @export
|
|
@@ -9278,25 +9442,154 @@ export interface MembershipInvitation {
|
|
|
9278
9442
|
/**
|
|
9279
9443
|
*
|
|
9280
9444
|
* @export
|
|
9281
|
-
* @
|
|
9445
|
+
* @interface MembershipItemModel
|
|
9282
9446
|
*/
|
|
9283
|
-
export
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
|
|
9287
|
-
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
9294
|
-
|
|
9295
|
-
|
|
9296
|
-
|
|
9297
|
-
|
|
9298
|
-
|
|
9299
|
-
|
|
9447
|
+
export interface MembershipItemModel {
|
|
9448
|
+
/**
|
|
9449
|
+
*
|
|
9450
|
+
* @type {string}
|
|
9451
|
+
* @memberof MembershipItemModel
|
|
9452
|
+
*/
|
|
9453
|
+
'id'?: string;
|
|
9454
|
+
/**
|
|
9455
|
+
*
|
|
9456
|
+
* @type {string}
|
|
9457
|
+
* @memberof MembershipItemModel
|
|
9458
|
+
*/
|
|
9459
|
+
'planId'?: string;
|
|
9460
|
+
/**
|
|
9461
|
+
*
|
|
9462
|
+
* @type {string}
|
|
9463
|
+
* @memberof MembershipItemModel
|
|
9464
|
+
*/
|
|
9465
|
+
'planName'?: string | null;
|
|
9466
|
+
/**
|
|
9467
|
+
*
|
|
9468
|
+
* @type {string}
|
|
9469
|
+
* @memberof MembershipItemModel
|
|
9470
|
+
*/
|
|
9471
|
+
'patientId'?: string;
|
|
9472
|
+
/**
|
|
9473
|
+
*
|
|
9474
|
+
* @type {string}
|
|
9475
|
+
* @memberof MembershipItemModel
|
|
9476
|
+
*/
|
|
9477
|
+
'patientName'?: string | null;
|
|
9478
|
+
/**
|
|
9479
|
+
*
|
|
9480
|
+
* @type {number}
|
|
9481
|
+
* @memberof MembershipItemModel
|
|
9482
|
+
*/
|
|
9483
|
+
'memberCount'?: number;
|
|
9484
|
+
/**
|
|
9485
|
+
*
|
|
9486
|
+
* @type {boolean}
|
|
9487
|
+
* @memberof MembershipItemModel
|
|
9488
|
+
*/
|
|
9489
|
+
'isActive'?: boolean;
|
|
9490
|
+
/**
|
|
9491
|
+
*
|
|
9492
|
+
* @type {SubscriptionModel}
|
|
9493
|
+
* @memberof MembershipItemModel
|
|
9494
|
+
*/
|
|
9495
|
+
'subscription'?: SubscriptionModel;
|
|
9496
|
+
}
|
|
9497
|
+
/**
|
|
9498
|
+
*
|
|
9499
|
+
* @export
|
|
9500
|
+
* @interface MembershipModel
|
|
9501
|
+
*/
|
|
9502
|
+
export interface MembershipModel {
|
|
9503
|
+
/**
|
|
9504
|
+
*
|
|
9505
|
+
* @type {string}
|
|
9506
|
+
* @memberof MembershipModel
|
|
9507
|
+
*/
|
|
9508
|
+
'id'?: string;
|
|
9509
|
+
/**
|
|
9510
|
+
*
|
|
9511
|
+
* @type {string}
|
|
9512
|
+
* @memberof MembershipModel
|
|
9513
|
+
*/
|
|
9514
|
+
'planId'?: string;
|
|
9515
|
+
/**
|
|
9516
|
+
*
|
|
9517
|
+
* @type {string}
|
|
9518
|
+
* @memberof MembershipModel
|
|
9519
|
+
*/
|
|
9520
|
+
'planName'?: string | null;
|
|
9521
|
+
/**
|
|
9522
|
+
*
|
|
9523
|
+
* @type {string}
|
|
9524
|
+
* @memberof MembershipModel
|
|
9525
|
+
*/
|
|
9526
|
+
'patientId'?: string;
|
|
9527
|
+
/**
|
|
9528
|
+
*
|
|
9529
|
+
* @type {string}
|
|
9530
|
+
* @memberof MembershipModel
|
|
9531
|
+
*/
|
|
9532
|
+
'patientName'?: string | null;
|
|
9533
|
+
/**
|
|
9534
|
+
*
|
|
9535
|
+
* @type {number}
|
|
9536
|
+
* @memberof MembershipModel
|
|
9537
|
+
*/
|
|
9538
|
+
'memberCount'?: number;
|
|
9539
|
+
/**
|
|
9540
|
+
*
|
|
9541
|
+
* @type {boolean}
|
|
9542
|
+
* @memberof MembershipModel
|
|
9543
|
+
*/
|
|
9544
|
+
'isActive'?: boolean;
|
|
9545
|
+
/**
|
|
9546
|
+
*
|
|
9547
|
+
* @type {SubscriptionModel}
|
|
9548
|
+
* @memberof MembershipModel
|
|
9549
|
+
*/
|
|
9550
|
+
'subscription'?: SubscriptionModel;
|
|
9551
|
+
}
|
|
9552
|
+
/**
|
|
9553
|
+
*
|
|
9554
|
+
* @export
|
|
9555
|
+
* @interface MembershipsModel
|
|
9556
|
+
*/
|
|
9557
|
+
export interface MembershipsModel {
|
|
9558
|
+
/**
|
|
9559
|
+
*
|
|
9560
|
+
* @type {Array<MembershipItemModel>}
|
|
9561
|
+
* @memberof MembershipsModel
|
|
9562
|
+
*/
|
|
9563
|
+
'items'?: Array<MembershipItemModel> | null;
|
|
9564
|
+
/**
|
|
9565
|
+
*
|
|
9566
|
+
* @type {PagedListMetaData}
|
|
9567
|
+
* @memberof MembershipsModel
|
|
9568
|
+
*/
|
|
9569
|
+
'metaData'?: PagedListMetaData;
|
|
9570
|
+
}
|
|
9571
|
+
/**
|
|
9572
|
+
*
|
|
9573
|
+
* @export
|
|
9574
|
+
* @enum {string}
|
|
9575
|
+
*/
|
|
9576
|
+
export declare enum NotificationCode {
|
|
9577
|
+
WelcomeEmail = "WelcomeEmail",
|
|
9578
|
+
DirectMessageSent = "DirectMessageSent",
|
|
9579
|
+
BookingNew = "BookingNew",
|
|
9580
|
+
BookingUpdated = "BookingUpdated",
|
|
9581
|
+
BookingRejected = "BookingRejected",
|
|
9582
|
+
BookingApproved = "BookingApproved",
|
|
9583
|
+
BookingPaid = "BookingPaid",
|
|
9584
|
+
BookingCanceled = "BookingCanceled",
|
|
9585
|
+
BookingRefundRequested = "BookingRefundRequested",
|
|
9586
|
+
BookingRefunded = "BookingRefunded",
|
|
9587
|
+
ConsultationNew = "ConsultationNew",
|
|
9588
|
+
ConsultationUpdated = "ConsultationUpdated",
|
|
9589
|
+
ConsultationRejected = "ConsultationRejected",
|
|
9590
|
+
ConsultationApproved = "ConsultationApproved",
|
|
9591
|
+
ConsultationPaid = "ConsultationPaid",
|
|
9592
|
+
ConsultationCanceled = "ConsultationCanceled",
|
|
9300
9593
|
ConsultationRefundRequested = "ConsultationRefundRequested",
|
|
9301
9594
|
ConsultationRefunded = "ConsultationRefunded",
|
|
9302
9595
|
ConsultationReady = "ConsultationReady"
|
|
@@ -9871,203 +10164,425 @@ export interface Plan {
|
|
|
9871
10164
|
/**
|
|
9872
10165
|
*
|
|
9873
10166
|
* @export
|
|
9874
|
-
* @
|
|
9875
|
-
*/
|
|
9876
|
-
export declare enum Platform {
|
|
9877
|
-
Web = "Web",
|
|
9878
|
-
IOs = "iOS",
|
|
9879
|
-
Android = "Android"
|
|
9880
|
-
}
|
|
9881
|
-
/**
|
|
9882
|
-
*
|
|
9883
|
-
* @export
|
|
9884
|
-
* @interface ProblemDetails
|
|
10167
|
+
* @interface PlanHospitalItemModel
|
|
9885
10168
|
*/
|
|
9886
|
-
export interface
|
|
9887
|
-
[key: string]: any | any;
|
|
10169
|
+
export interface PlanHospitalItemModel {
|
|
9888
10170
|
/**
|
|
9889
10171
|
*
|
|
9890
10172
|
* @type {string}
|
|
9891
|
-
* @memberof
|
|
10173
|
+
* @memberof PlanHospitalItemModel
|
|
9892
10174
|
*/
|
|
9893
|
-
'
|
|
10175
|
+
'planId'?: string;
|
|
9894
10176
|
/**
|
|
9895
10177
|
*
|
|
9896
10178
|
* @type {string}
|
|
9897
|
-
* @memberof
|
|
10179
|
+
* @memberof PlanHospitalItemModel
|
|
9898
10180
|
*/
|
|
9899
|
-
'
|
|
10181
|
+
'planName'?: string | null;
|
|
9900
10182
|
/**
|
|
9901
10183
|
*
|
|
9902
|
-
* @type {
|
|
9903
|
-
* @memberof
|
|
10184
|
+
* @type {string}
|
|
10185
|
+
* @memberof PlanHospitalItemModel
|
|
9904
10186
|
*/
|
|
9905
|
-
'
|
|
10187
|
+
'hospitalId'?: string;
|
|
9906
10188
|
/**
|
|
9907
10189
|
*
|
|
9908
10190
|
* @type {string}
|
|
9909
|
-
* @memberof
|
|
10191
|
+
* @memberof PlanHospitalItemModel
|
|
9910
10192
|
*/
|
|
9911
|
-
'
|
|
10193
|
+
'hospitalName'?: string | null;
|
|
9912
10194
|
/**
|
|
9913
10195
|
*
|
|
9914
|
-
* @type {
|
|
9915
|
-
* @memberof
|
|
10196
|
+
* @type {number}
|
|
10197
|
+
* @memberof PlanHospitalItemModel
|
|
9916
10198
|
*/
|
|
9917
|
-
'
|
|
9918
|
-
}
|
|
9919
|
-
/**
|
|
9920
|
-
*
|
|
9921
|
-
* @export
|
|
9922
|
-
* @enum {string}
|
|
9923
|
-
*/
|
|
9924
|
-
export declare enum Procedure {
|
|
9925
|
-
Treatment = "Treatment",
|
|
9926
|
-
Diagnostic = "Diagnostic"
|
|
10199
|
+
'order'?: number;
|
|
9927
10200
|
}
|
|
9928
10201
|
/**
|
|
9929
10202
|
*
|
|
9930
10203
|
* @export
|
|
9931
|
-
* @interface
|
|
10204
|
+
* @interface PlanHospitalModel
|
|
9932
10205
|
*/
|
|
9933
|
-
export interface
|
|
10206
|
+
export interface PlanHospitalModel {
|
|
9934
10207
|
/**
|
|
9935
10208
|
*
|
|
9936
10209
|
* @type {string}
|
|
9937
|
-
* @memberof
|
|
10210
|
+
* @memberof PlanHospitalModel
|
|
9938
10211
|
*/
|
|
9939
|
-
'
|
|
10212
|
+
'planId'?: string;
|
|
9940
10213
|
/**
|
|
9941
10214
|
*
|
|
9942
10215
|
* @type {string}
|
|
9943
|
-
* @memberof
|
|
10216
|
+
* @memberof PlanHospitalModel
|
|
9944
10217
|
*/
|
|
9945
|
-
'
|
|
10218
|
+
'planName'?: string | null;
|
|
9946
10219
|
/**
|
|
9947
10220
|
*
|
|
9948
10221
|
* @type {string}
|
|
9949
|
-
* @memberof
|
|
10222
|
+
* @memberof PlanHospitalModel
|
|
9950
10223
|
*/
|
|
9951
|
-
'
|
|
10224
|
+
'hospitalId'?: string;
|
|
9952
10225
|
/**
|
|
9953
10226
|
*
|
|
9954
10227
|
* @type {string}
|
|
9955
|
-
* @memberof
|
|
9956
|
-
*/
|
|
9957
|
-
'body'?: string | null;
|
|
9958
|
-
/**
|
|
9959
|
-
*
|
|
9960
|
-
* @type {QuestionType}
|
|
9961
|
-
* @memberof Question
|
|
10228
|
+
* @memberof PlanHospitalModel
|
|
9962
10229
|
*/
|
|
9963
|
-
'
|
|
10230
|
+
'hospitalName'?: string | null;
|
|
9964
10231
|
/**
|
|
9965
10232
|
*
|
|
9966
|
-
* @type {
|
|
9967
|
-
* @memberof
|
|
10233
|
+
* @type {number}
|
|
10234
|
+
* @memberof PlanHospitalModel
|
|
9968
10235
|
*/
|
|
9969
|
-
'
|
|
10236
|
+
'order'?: number;
|
|
10237
|
+
}
|
|
10238
|
+
/**
|
|
10239
|
+
*
|
|
10240
|
+
* @export
|
|
10241
|
+
* @interface PlanHospitalsModel
|
|
10242
|
+
*/
|
|
10243
|
+
export interface PlanHospitalsModel {
|
|
9970
10244
|
/**
|
|
9971
10245
|
*
|
|
9972
|
-
* @type {
|
|
9973
|
-
* @memberof
|
|
10246
|
+
* @type {Array<PlanHospitalItemModel>}
|
|
10247
|
+
* @memberof PlanHospitalsModel
|
|
9974
10248
|
*/
|
|
9975
|
-
'
|
|
10249
|
+
'items'?: Array<PlanHospitalItemModel> | null;
|
|
9976
10250
|
/**
|
|
9977
10251
|
*
|
|
9978
|
-
* @type {
|
|
9979
|
-
* @memberof
|
|
10252
|
+
* @type {PagedListMetaData}
|
|
10253
|
+
* @memberof PlanHospitalsModel
|
|
9980
10254
|
*/
|
|
9981
|
-
'
|
|
10255
|
+
'metaData'?: PagedListMetaData;
|
|
10256
|
+
}
|
|
10257
|
+
/**
|
|
10258
|
+
*
|
|
10259
|
+
* @export
|
|
10260
|
+
* @interface PlanItemModel
|
|
10261
|
+
*/
|
|
10262
|
+
export interface PlanItemModel {
|
|
9982
10263
|
/**
|
|
9983
10264
|
*
|
|
9984
10265
|
* @type {string}
|
|
9985
|
-
* @memberof
|
|
10266
|
+
* @memberof PlanItemModel
|
|
9986
10267
|
*/
|
|
9987
|
-
'
|
|
10268
|
+
'id'?: string;
|
|
9988
10269
|
/**
|
|
9989
10270
|
*
|
|
9990
|
-
* @type {
|
|
9991
|
-
* @memberof
|
|
10271
|
+
* @type {string}
|
|
10272
|
+
* @memberof PlanItemModel
|
|
9992
10273
|
*/
|
|
9993
|
-
'
|
|
10274
|
+
'name'?: string | null;
|
|
9994
10275
|
/**
|
|
9995
10276
|
*
|
|
9996
|
-
* @type {
|
|
9997
|
-
* @memberof
|
|
10277
|
+
* @type {number}
|
|
10278
|
+
* @memberof PlanItemModel
|
|
9998
10279
|
*/
|
|
9999
|
-
'
|
|
10280
|
+
'memberLimit'?: number;
|
|
10000
10281
|
/**
|
|
10001
10282
|
*
|
|
10002
|
-
* @type {
|
|
10003
|
-
* @memberof
|
|
10283
|
+
* @type {number}
|
|
10284
|
+
* @memberof PlanItemModel
|
|
10004
10285
|
*/
|
|
10005
|
-
'
|
|
10286
|
+
'unitPrice'?: number;
|
|
10006
10287
|
/**
|
|
10007
10288
|
*
|
|
10008
|
-
* @type {
|
|
10009
|
-
* @memberof
|
|
10289
|
+
* @type {string}
|
|
10290
|
+
* @memberof PlanItemModel
|
|
10010
10291
|
*/
|
|
10011
|
-
'
|
|
10292
|
+
'stripePriceId'?: string | null;
|
|
10012
10293
|
/**
|
|
10013
10294
|
*
|
|
10014
|
-
* @type {
|
|
10015
|
-
* @memberof
|
|
10295
|
+
* @type {RecurringInterval}
|
|
10296
|
+
* @memberof PlanItemModel
|
|
10016
10297
|
*/
|
|
10017
|
-
'
|
|
10298
|
+
'interval'?: RecurringInterval;
|
|
10018
10299
|
/**
|
|
10019
10300
|
*
|
|
10020
|
-
* @type {
|
|
10021
|
-
* @memberof
|
|
10301
|
+
* @type {boolean}
|
|
10302
|
+
* @memberof PlanItemModel
|
|
10022
10303
|
*/
|
|
10023
|
-
'
|
|
10304
|
+
'isActive'?: boolean;
|
|
10024
10305
|
/**
|
|
10025
10306
|
*
|
|
10026
|
-
* @type {
|
|
10027
|
-
* @memberof
|
|
10307
|
+
* @type {number}
|
|
10308
|
+
* @memberof PlanItemModel
|
|
10028
10309
|
*/
|
|
10029
|
-
'
|
|
10310
|
+
'order'?: number;
|
|
10030
10311
|
}
|
|
10031
10312
|
/**
|
|
10032
10313
|
*
|
|
10033
10314
|
* @export
|
|
10034
|
-
* @interface
|
|
10315
|
+
* @interface PlanModel
|
|
10035
10316
|
*/
|
|
10036
|
-
export interface
|
|
10317
|
+
export interface PlanModel {
|
|
10037
10318
|
/**
|
|
10038
10319
|
*
|
|
10039
10320
|
* @type {string}
|
|
10040
|
-
* @memberof
|
|
10321
|
+
* @memberof PlanModel
|
|
10041
10322
|
*/
|
|
10042
10323
|
'id'?: string;
|
|
10043
10324
|
/**
|
|
10044
10325
|
*
|
|
10045
10326
|
* @type {string}
|
|
10046
|
-
* @memberof
|
|
10327
|
+
* @memberof PlanModel
|
|
10047
10328
|
*/
|
|
10048
|
-
'
|
|
10329
|
+
'name'?: string | null;
|
|
10049
10330
|
/**
|
|
10050
10331
|
*
|
|
10051
|
-
* @type {
|
|
10052
|
-
* @memberof
|
|
10332
|
+
* @type {number}
|
|
10333
|
+
* @memberof PlanModel
|
|
10053
10334
|
*/
|
|
10054
|
-
'
|
|
10335
|
+
'memberLimit'?: number;
|
|
10055
10336
|
/**
|
|
10056
10337
|
*
|
|
10057
|
-
* @type {
|
|
10058
|
-
* @memberof
|
|
10338
|
+
* @type {number}
|
|
10339
|
+
* @memberof PlanModel
|
|
10059
10340
|
*/
|
|
10060
|
-
'
|
|
10341
|
+
'unitPrice'?: number;
|
|
10061
10342
|
/**
|
|
10062
10343
|
*
|
|
10063
|
-
* @type {
|
|
10064
|
-
* @memberof
|
|
10344
|
+
* @type {string}
|
|
10345
|
+
* @memberof PlanModel
|
|
10065
10346
|
*/
|
|
10066
|
-
'
|
|
10347
|
+
'stripePriceId'?: string | null;
|
|
10067
10348
|
/**
|
|
10068
10349
|
*
|
|
10069
|
-
* @type {
|
|
10070
|
-
* @memberof
|
|
10350
|
+
* @type {RecurringInterval}
|
|
10351
|
+
* @memberof PlanModel
|
|
10352
|
+
*/
|
|
10353
|
+
'interval'?: RecurringInterval;
|
|
10354
|
+
/**
|
|
10355
|
+
*
|
|
10356
|
+
* @type {boolean}
|
|
10357
|
+
* @memberof PlanModel
|
|
10358
|
+
*/
|
|
10359
|
+
'isActive'?: boolean;
|
|
10360
|
+
/**
|
|
10361
|
+
*
|
|
10362
|
+
* @type {number}
|
|
10363
|
+
* @memberof PlanModel
|
|
10364
|
+
*/
|
|
10365
|
+
'order'?: number;
|
|
10366
|
+
}
|
|
10367
|
+
/**
|
|
10368
|
+
*
|
|
10369
|
+
* @export
|
|
10370
|
+
* @interface PlansModel
|
|
10371
|
+
*/
|
|
10372
|
+
export interface PlansModel {
|
|
10373
|
+
/**
|
|
10374
|
+
*
|
|
10375
|
+
* @type {Array<PlanItemModel>}
|
|
10376
|
+
* @memberof PlansModel
|
|
10377
|
+
*/
|
|
10378
|
+
'items'?: Array<PlanItemModel> | null;
|
|
10379
|
+
/**
|
|
10380
|
+
*
|
|
10381
|
+
* @type {PagedListMetaData}
|
|
10382
|
+
* @memberof PlansModel
|
|
10383
|
+
*/
|
|
10384
|
+
'metaData'?: PagedListMetaData;
|
|
10385
|
+
}
|
|
10386
|
+
/**
|
|
10387
|
+
*
|
|
10388
|
+
* @export
|
|
10389
|
+
* @enum {string}
|
|
10390
|
+
*/
|
|
10391
|
+
export declare enum Platform {
|
|
10392
|
+
Web = "Web",
|
|
10393
|
+
IOs = "iOS",
|
|
10394
|
+
Android = "Android"
|
|
10395
|
+
}
|
|
10396
|
+
/**
|
|
10397
|
+
*
|
|
10398
|
+
* @export
|
|
10399
|
+
* @interface ProblemDetails
|
|
10400
|
+
*/
|
|
10401
|
+
export interface ProblemDetails {
|
|
10402
|
+
[key: string]: any | any;
|
|
10403
|
+
/**
|
|
10404
|
+
*
|
|
10405
|
+
* @type {string}
|
|
10406
|
+
* @memberof ProblemDetails
|
|
10407
|
+
*/
|
|
10408
|
+
'type'?: string | null;
|
|
10409
|
+
/**
|
|
10410
|
+
*
|
|
10411
|
+
* @type {string}
|
|
10412
|
+
* @memberof ProblemDetails
|
|
10413
|
+
*/
|
|
10414
|
+
'title'?: string | null;
|
|
10415
|
+
/**
|
|
10416
|
+
*
|
|
10417
|
+
* @type {number}
|
|
10418
|
+
* @memberof ProblemDetails
|
|
10419
|
+
*/
|
|
10420
|
+
'status'?: number | null;
|
|
10421
|
+
/**
|
|
10422
|
+
*
|
|
10423
|
+
* @type {string}
|
|
10424
|
+
* @memberof ProblemDetails
|
|
10425
|
+
*/
|
|
10426
|
+
'detail'?: string | null;
|
|
10427
|
+
/**
|
|
10428
|
+
*
|
|
10429
|
+
* @type {string}
|
|
10430
|
+
* @memberof ProblemDetails
|
|
10431
|
+
*/
|
|
10432
|
+
'instance'?: string | null;
|
|
10433
|
+
}
|
|
10434
|
+
/**
|
|
10435
|
+
*
|
|
10436
|
+
* @export
|
|
10437
|
+
* @enum {string}
|
|
10438
|
+
*/
|
|
10439
|
+
export declare enum Procedure {
|
|
10440
|
+
Treatment = "Treatment",
|
|
10441
|
+
Diagnostic = "Diagnostic"
|
|
10442
|
+
}
|
|
10443
|
+
/**
|
|
10444
|
+
*
|
|
10445
|
+
* @export
|
|
10446
|
+
* @interface Question
|
|
10447
|
+
*/
|
|
10448
|
+
export interface Question {
|
|
10449
|
+
/**
|
|
10450
|
+
*
|
|
10451
|
+
* @type {string}
|
|
10452
|
+
* @memberof Question
|
|
10453
|
+
*/
|
|
10454
|
+
'id'?: string;
|
|
10455
|
+
/**
|
|
10456
|
+
*
|
|
10457
|
+
* @type {string}
|
|
10458
|
+
* @memberof Question
|
|
10459
|
+
*/
|
|
10460
|
+
'title'?: string | null;
|
|
10461
|
+
/**
|
|
10462
|
+
*
|
|
10463
|
+
* @type {string}
|
|
10464
|
+
* @memberof Question
|
|
10465
|
+
*/
|
|
10466
|
+
'normalizedTitle'?: string | null;
|
|
10467
|
+
/**
|
|
10468
|
+
*
|
|
10469
|
+
* @type {string}
|
|
10470
|
+
* @memberof Question
|
|
10471
|
+
*/
|
|
10472
|
+
'body'?: string | null;
|
|
10473
|
+
/**
|
|
10474
|
+
*
|
|
10475
|
+
* @type {QuestionType}
|
|
10476
|
+
* @memberof Question
|
|
10477
|
+
*/
|
|
10478
|
+
'questionType'?: QuestionType;
|
|
10479
|
+
/**
|
|
10480
|
+
*
|
|
10481
|
+
* @type {QuestionStatus}
|
|
10482
|
+
* @memberof Question
|
|
10483
|
+
*/
|
|
10484
|
+
'questionStatus'?: QuestionStatus;
|
|
10485
|
+
/**
|
|
10486
|
+
*
|
|
10487
|
+
* @type {string}
|
|
10488
|
+
* @memberof Question
|
|
10489
|
+
*/
|
|
10490
|
+
'patientId'?: string;
|
|
10491
|
+
/**
|
|
10492
|
+
*
|
|
10493
|
+
* @type {Patient}
|
|
10494
|
+
* @memberof Question
|
|
10495
|
+
*/
|
|
10496
|
+
'patient'?: Patient;
|
|
10497
|
+
/**
|
|
10498
|
+
*
|
|
10499
|
+
* @type {string}
|
|
10500
|
+
* @memberof Question
|
|
10501
|
+
*/
|
|
10502
|
+
'hospitalId'?: string;
|
|
10503
|
+
/**
|
|
10504
|
+
*
|
|
10505
|
+
* @type {Hospital}
|
|
10506
|
+
* @memberof Question
|
|
10507
|
+
*/
|
|
10508
|
+
'hospital'?: Hospital;
|
|
10509
|
+
/**
|
|
10510
|
+
*
|
|
10511
|
+
* @type {string}
|
|
10512
|
+
* @memberof Question
|
|
10513
|
+
*/
|
|
10514
|
+
'dealPackageId'?: string | null;
|
|
10515
|
+
/**
|
|
10516
|
+
*
|
|
10517
|
+
* @type {DealPackage}
|
|
10518
|
+
* @memberof Question
|
|
10519
|
+
*/
|
|
10520
|
+
'dealPackage'?: DealPackage;
|
|
10521
|
+
/**
|
|
10522
|
+
*
|
|
10523
|
+
* @type {number}
|
|
10524
|
+
* @memberof Question
|
|
10525
|
+
*/
|
|
10526
|
+
'quantity'?: number | null;
|
|
10527
|
+
/**
|
|
10528
|
+
*
|
|
10529
|
+
* @type {Array<QuestionComment>}
|
|
10530
|
+
* @memberof Question
|
|
10531
|
+
*/
|
|
10532
|
+
'questionComments'?: Array<QuestionComment> | null;
|
|
10533
|
+
/**
|
|
10534
|
+
*
|
|
10535
|
+
* @type {Array<Media>}
|
|
10536
|
+
* @memberof Question
|
|
10537
|
+
*/
|
|
10538
|
+
'medias'?: Array<Media> | null;
|
|
10539
|
+
/**
|
|
10540
|
+
*
|
|
10541
|
+
* @type {AuditableEntity}
|
|
10542
|
+
* @memberof Question
|
|
10543
|
+
*/
|
|
10544
|
+
'auditableEntity'?: AuditableEntity;
|
|
10545
|
+
}
|
|
10546
|
+
/**
|
|
10547
|
+
*
|
|
10548
|
+
* @export
|
|
10549
|
+
* @interface QuestionComment
|
|
10550
|
+
*/
|
|
10551
|
+
export interface QuestionComment {
|
|
10552
|
+
/**
|
|
10553
|
+
*
|
|
10554
|
+
* @type {string}
|
|
10555
|
+
* @memberof QuestionComment
|
|
10556
|
+
*/
|
|
10557
|
+
'id'?: string;
|
|
10558
|
+
/**
|
|
10559
|
+
*
|
|
10560
|
+
* @type {string}
|
|
10561
|
+
* @memberof QuestionComment
|
|
10562
|
+
*/
|
|
10563
|
+
'userId'?: string;
|
|
10564
|
+
/**
|
|
10565
|
+
*
|
|
10566
|
+
* @type {User}
|
|
10567
|
+
* @memberof QuestionComment
|
|
10568
|
+
*/
|
|
10569
|
+
'user'?: User;
|
|
10570
|
+
/**
|
|
10571
|
+
*
|
|
10572
|
+
* @type {string}
|
|
10573
|
+
* @memberof QuestionComment
|
|
10574
|
+
*/
|
|
10575
|
+
'questionId'?: string;
|
|
10576
|
+
/**
|
|
10577
|
+
*
|
|
10578
|
+
* @type {Question}
|
|
10579
|
+
* @memberof QuestionComment
|
|
10580
|
+
*/
|
|
10581
|
+
'question'?: Question;
|
|
10582
|
+
/**
|
|
10583
|
+
*
|
|
10584
|
+
* @type {string}
|
|
10585
|
+
* @memberof QuestionComment
|
|
10071
10586
|
*/
|
|
10072
10587
|
'body'?: string | null;
|
|
10073
10588
|
/**
|
|
@@ -11076,6 +11591,31 @@ export interface SpecialtyTypesModel {
|
|
|
11076
11591
|
*/
|
|
11077
11592
|
'metaData'?: PagedListMetaData;
|
|
11078
11593
|
}
|
|
11594
|
+
/**
|
|
11595
|
+
*
|
|
11596
|
+
* @export
|
|
11597
|
+
* @interface SubscriptionModel
|
|
11598
|
+
*/
|
|
11599
|
+
export interface SubscriptionModel {
|
|
11600
|
+
/**
|
|
11601
|
+
*
|
|
11602
|
+
* @type {Date}
|
|
11603
|
+
* @memberof SubscriptionModel
|
|
11604
|
+
*/
|
|
11605
|
+
'startDate'?: Date | null;
|
|
11606
|
+
/**
|
|
11607
|
+
*
|
|
11608
|
+
* @type {Date}
|
|
11609
|
+
* @memberof SubscriptionModel
|
|
11610
|
+
*/
|
|
11611
|
+
'endDate'?: Date | null;
|
|
11612
|
+
/**
|
|
11613
|
+
*
|
|
11614
|
+
* @type {string}
|
|
11615
|
+
* @memberof SubscriptionModel
|
|
11616
|
+
*/
|
|
11617
|
+
'status'?: string | null;
|
|
11618
|
+
}
|
|
11079
11619
|
/**
|
|
11080
11620
|
*
|
|
11081
11621
|
* @export
|
|
@@ -11533,6 +12073,12 @@ export interface UpdateDealCommand {
|
|
|
11533
12073
|
* @memberof UpdateDealCommand
|
|
11534
12074
|
*/
|
|
11535
12075
|
'name'?: string | null;
|
|
12076
|
+
/**
|
|
12077
|
+
*
|
|
12078
|
+
* @type {string}
|
|
12079
|
+
* @memberof UpdateDealCommand
|
|
12080
|
+
*/
|
|
12081
|
+
'slug'?: string | null;
|
|
11536
12082
|
/**
|
|
11537
12083
|
*
|
|
11538
12084
|
* @type {string}
|
|
@@ -11847,12 +12393,6 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
11847
12393
|
* @interface UpdateHospitalCommand
|
|
11848
12394
|
*/
|
|
11849
12395
|
export interface UpdateHospitalCommand {
|
|
11850
|
-
/**
|
|
11851
|
-
*
|
|
11852
|
-
* @type {string}
|
|
11853
|
-
* @memberof UpdateHospitalCommand
|
|
11854
|
-
*/
|
|
11855
|
-
'id'?: string;
|
|
11856
12396
|
/**
|
|
11857
12397
|
*
|
|
11858
12398
|
* @type {string}
|
|
@@ -11918,7 +12458,7 @@ export interface UpdateHospitalCommand {
|
|
|
11918
12458
|
* @type {string}
|
|
11919
12459
|
* @memberof UpdateHospitalCommand
|
|
11920
12460
|
*/
|
|
11921
|
-
'
|
|
12461
|
+
'countryId'?: string;
|
|
11922
12462
|
/**
|
|
11923
12463
|
*
|
|
11924
12464
|
* @type {MarketingType}
|
|
@@ -11943,108 +12483,12 @@ export interface UpdateHospitalCommand {
|
|
|
11943
12483
|
* @memberof UpdateHospitalCommand
|
|
11944
12484
|
*/
|
|
11945
12485
|
'timeZone'?: string | null;
|
|
11946
|
-
/**
|
|
11947
|
-
*
|
|
11948
|
-
* @type {number}
|
|
11949
|
-
* @memberof UpdateHospitalCommand
|
|
11950
|
-
*/
|
|
11951
|
-
'articlesCount'?: number;
|
|
11952
|
-
/**
|
|
11953
|
-
*
|
|
11954
|
-
* @type {number}
|
|
11955
|
-
* @memberof UpdateHospitalCommand
|
|
11956
|
-
*/
|
|
11957
|
-
'packagesCount'?: number;
|
|
11958
|
-
/**
|
|
11959
|
-
*
|
|
11960
|
-
* @type {number}
|
|
11961
|
-
* @memberof UpdateHospitalCommand
|
|
11962
|
-
*/
|
|
11963
|
-
'equipmentsCount'?: number;
|
|
11964
|
-
/**
|
|
11965
|
-
*
|
|
11966
|
-
* @type {number}
|
|
11967
|
-
* @memberof UpdateHospitalCommand
|
|
11968
|
-
*/
|
|
11969
|
-
'reviewsCount'?: number;
|
|
11970
|
-
/**
|
|
11971
|
-
*
|
|
11972
|
-
* @type {number}
|
|
11973
|
-
* @memberof UpdateHospitalCommand
|
|
11974
|
-
*/
|
|
11975
|
-
'departmentsCount'?: number;
|
|
11976
|
-
/**
|
|
11977
|
-
*
|
|
11978
|
-
* @type {number}
|
|
11979
|
-
* @memberof UpdateHospitalCommand
|
|
11980
|
-
*/
|
|
11981
|
-
'specialtiesCount'?: number;
|
|
11982
|
-
/**
|
|
11983
|
-
*
|
|
11984
|
-
* @type {number}
|
|
11985
|
-
* @memberof UpdateHospitalCommand
|
|
11986
|
-
*/
|
|
11987
|
-
'accreditationsCount'?: number;
|
|
11988
|
-
/**
|
|
11989
|
-
*
|
|
11990
|
-
* @type {number}
|
|
11991
|
-
* @memberof UpdateHospitalCommand
|
|
11992
|
-
*/
|
|
11993
|
-
'doctorAffiliationsCount'?: number;
|
|
11994
|
-
/**
|
|
11995
|
-
*
|
|
11996
|
-
* @type {number}
|
|
11997
|
-
* @memberof UpdateHospitalCommand
|
|
11998
|
-
*/
|
|
11999
|
-
'managerAffiliationsCount'?: number;
|
|
12000
|
-
/**
|
|
12001
|
-
*
|
|
12002
|
-
* @type {string}
|
|
12003
|
-
* @memberof UpdateHospitalCommand
|
|
12004
|
-
*/
|
|
12005
|
-
'specialtiesSummerized'?: string | null;
|
|
12006
|
-
/**
|
|
12007
|
-
*
|
|
12008
|
-
* @type {Array<AwardModel>}
|
|
12009
|
-
* @memberof UpdateHospitalCommand
|
|
12010
|
-
*/
|
|
12011
|
-
'awards'?: Array<AwardModel> | null;
|
|
12012
|
-
/**
|
|
12013
|
-
*
|
|
12014
|
-
* @type {Array<MediaModel>}
|
|
12015
|
-
* @memberof UpdateHospitalCommand
|
|
12016
|
-
*/
|
|
12017
|
-
'medias'?: Array<MediaModel> | null;
|
|
12018
|
-
/**
|
|
12019
|
-
*
|
|
12020
|
-
* @type {Array<AccreditationModel>}
|
|
12021
|
-
* @memberof UpdateHospitalCommand
|
|
12022
|
-
*/
|
|
12023
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
12024
|
-
/**
|
|
12025
|
-
*
|
|
12026
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
12027
|
-
* @memberof UpdateHospitalCommand
|
|
12028
|
-
*/
|
|
12029
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
12030
12486
|
/**
|
|
12031
12487
|
*
|
|
12032
12488
|
* @type {LocationModel}
|
|
12033
12489
|
* @memberof UpdateHospitalCommand
|
|
12034
12490
|
*/
|
|
12035
12491
|
'location'?: LocationModel;
|
|
12036
|
-
/**
|
|
12037
|
-
*
|
|
12038
|
-
* @type {AuditableEntity}
|
|
12039
|
-
* @memberof UpdateHospitalCommand
|
|
12040
|
-
*/
|
|
12041
|
-
'auditableEntity'?: AuditableEntity;
|
|
12042
|
-
/**
|
|
12043
|
-
*
|
|
12044
|
-
* @type {boolean}
|
|
12045
|
-
* @memberof UpdateHospitalCommand
|
|
12046
|
-
*/
|
|
12047
|
-
'confirmed'?: boolean;
|
|
12048
12492
|
}
|
|
12049
12493
|
/**
|
|
12050
12494
|
*
|
|
@@ -12264,57 +12708,89 @@ export interface UpdateMediaCommand {
|
|
|
12264
12708
|
/**
|
|
12265
12709
|
*
|
|
12266
12710
|
* @export
|
|
12267
|
-
* @interface
|
|
12711
|
+
* @interface UpdatePlanCommand
|
|
12268
12712
|
*/
|
|
12269
|
-
export interface
|
|
12713
|
+
export interface UpdatePlanCommand {
|
|
12270
12714
|
/**
|
|
12271
12715
|
*
|
|
12272
12716
|
* @type {string}
|
|
12273
|
-
* @memberof
|
|
12717
|
+
* @memberof UpdatePlanCommand
|
|
12274
12718
|
*/
|
|
12275
|
-
'
|
|
12719
|
+
'name'?: string | null;
|
|
12276
12720
|
/**
|
|
12277
12721
|
*
|
|
12278
|
-
* @type {
|
|
12279
|
-
* @memberof
|
|
12722
|
+
* @type {number}
|
|
12723
|
+
* @memberof UpdatePlanCommand
|
|
12280
12724
|
*/
|
|
12281
|
-
'
|
|
12725
|
+
'memberLimit'?: number;
|
|
12282
12726
|
/**
|
|
12283
12727
|
*
|
|
12284
|
-
* @type {
|
|
12285
|
-
* @memberof
|
|
12728
|
+
* @type {number}
|
|
12729
|
+
* @memberof UpdatePlanCommand
|
|
12286
12730
|
*/
|
|
12287
|
-
'
|
|
12731
|
+
'unitPrice'?: number;
|
|
12288
12732
|
/**
|
|
12289
12733
|
*
|
|
12290
12734
|
* @type {string}
|
|
12291
|
-
* @memberof
|
|
12735
|
+
* @memberof UpdatePlanCommand
|
|
12292
12736
|
*/
|
|
12293
|
-
'
|
|
12737
|
+
'stripePriceId'?: string | null;
|
|
12738
|
+
/**
|
|
12739
|
+
*
|
|
12740
|
+
* @type {RecurringInterval}
|
|
12741
|
+
* @memberof UpdatePlanCommand
|
|
12742
|
+
*/
|
|
12743
|
+
'interval'?: RecurringInterval;
|
|
12744
|
+
/**
|
|
12745
|
+
*
|
|
12746
|
+
* @type {boolean}
|
|
12747
|
+
* @memberof UpdatePlanCommand
|
|
12748
|
+
*/
|
|
12749
|
+
'isActive'?: boolean;
|
|
12294
12750
|
/**
|
|
12295
12751
|
*
|
|
12296
12752
|
* @type {number}
|
|
12297
|
-
* @memberof
|
|
12753
|
+
* @memberof UpdatePlanCommand
|
|
12298
12754
|
*/
|
|
12299
|
-
'order'?: number
|
|
12755
|
+
'order'?: number;
|
|
12756
|
+
}
|
|
12757
|
+
/**
|
|
12758
|
+
*
|
|
12759
|
+
* @export
|
|
12760
|
+
* @interface UpdatePlanHospitalCommand
|
|
12761
|
+
*/
|
|
12762
|
+
export interface UpdatePlanHospitalCommand {
|
|
12300
12763
|
/**
|
|
12301
12764
|
*
|
|
12302
12765
|
* @type {number}
|
|
12766
|
+
* @memberof UpdatePlanHospitalCommand
|
|
12767
|
+
*/
|
|
12768
|
+
'order'?: number;
|
|
12769
|
+
}
|
|
12770
|
+
/**
|
|
12771
|
+
*
|
|
12772
|
+
* @export
|
|
12773
|
+
* @interface UpdateServiceCategoryCommand
|
|
12774
|
+
*/
|
|
12775
|
+
export interface UpdateServiceCategoryCommand {
|
|
12776
|
+
/**
|
|
12777
|
+
*
|
|
12778
|
+
* @type {string}
|
|
12303
12779
|
* @memberof UpdateServiceCategoryCommand
|
|
12304
12780
|
*/
|
|
12305
|
-
'
|
|
12781
|
+
'name'?: string | null;
|
|
12306
12782
|
/**
|
|
12307
12783
|
*
|
|
12308
|
-
* @type {
|
|
12784
|
+
* @type {string}
|
|
12309
12785
|
* @memberof UpdateServiceCategoryCommand
|
|
12310
12786
|
*/
|
|
12311
|
-
'
|
|
12787
|
+
'description'?: string | null;
|
|
12312
12788
|
/**
|
|
12313
12789
|
*
|
|
12314
|
-
* @type {
|
|
12790
|
+
* @type {number}
|
|
12315
12791
|
* @memberof UpdateServiceCategoryCommand
|
|
12316
12792
|
*/
|
|
12317
|
-
'
|
|
12793
|
+
'order'?: number;
|
|
12318
12794
|
}
|
|
12319
12795
|
/**
|
|
12320
12796
|
*
|
|
@@ -13479,50 +13955,44 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13479
13955
|
apiV1ArticlesArticleIdSourcesSourceIdPut: (articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13480
13956
|
/**
|
|
13481
13957
|
*
|
|
13482
|
-
* @summary GetAll
|
|
13958
|
+
* @summary GetAll ArticleTags.
|
|
13483
13959
|
* @param {string} articleId
|
|
13484
|
-
* @param {string} [
|
|
13485
|
-
* @param {string} [contributorId]
|
|
13486
|
-
* @param {string} [contributorName]
|
|
13487
|
-
* @param {string} [email]
|
|
13488
|
-
* @param {string} [description]
|
|
13489
|
-
* @param {string} [website]
|
|
13490
|
-
* @param {ContributionType} [contributionType]
|
|
13960
|
+
* @param {string} [tagId]
|
|
13491
13961
|
* @param {number} [page]
|
|
13492
13962
|
* @param {number} [limit]
|
|
13493
13963
|
* @param {Date} [lastRetrieved]
|
|
13494
13964
|
* @param {*} [options] Override http request option.
|
|
13495
13965
|
* @throws {RequiredError}
|
|
13496
13966
|
*/
|
|
13497
|
-
apiV1ArticlesArticleIdTagsGet: (articleId: string,
|
|
13967
|
+
apiV1ArticlesArticleIdTagsGet: (articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13498
13968
|
/**
|
|
13499
13969
|
*
|
|
13970
|
+
* @summary Create ArticleTag.
|
|
13500
13971
|
* @param {string} articleId
|
|
13501
|
-
* @param {
|
|
13972
|
+
* @param {CreateArticleTagCommand} [createArticleTagCommand]
|
|
13502
13973
|
* @param {*} [options] Override http request option.
|
|
13503
13974
|
* @throws {RequiredError}
|
|
13504
13975
|
*/
|
|
13505
|
-
apiV1ArticlesArticleIdTagsPost: (articleId: string,
|
|
13976
|
+
apiV1ArticlesArticleIdTagsPost: (articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13506
13977
|
/**
|
|
13507
13978
|
*
|
|
13508
|
-
* @summary Delete
|
|
13979
|
+
* @summary Delete ArticleTag.
|
|
13509
13980
|
* @param {string} articleId
|
|
13510
|
-
* @param {string} contributorId
|
|
13511
13981
|
* @param {string} tagId
|
|
13982
|
+
* @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
|
|
13512
13983
|
* @param {*} [options] Override http request option.
|
|
13513
13984
|
* @throws {RequiredError}
|
|
13514
13985
|
*/
|
|
13515
|
-
apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string,
|
|
13986
|
+
apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13516
13987
|
/**
|
|
13517
13988
|
*
|
|
13518
|
-
* @summary Get
|
|
13989
|
+
* @summary Get ArticleTag.
|
|
13519
13990
|
* @param {string} articleId
|
|
13520
|
-
* @param {string} contributorId
|
|
13521
13991
|
* @param {string} tagId
|
|
13522
13992
|
* @param {*} [options] Override http request option.
|
|
13523
13993
|
* @throws {RequiredError}
|
|
13524
13994
|
*/
|
|
13525
|
-
apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string,
|
|
13995
|
+
apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13526
13996
|
/**
|
|
13527
13997
|
*
|
|
13528
13998
|
* @summary Get all Articles.
|
|
@@ -13752,50 +14222,44 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13752
14222
|
apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13753
14223
|
/**
|
|
13754
14224
|
*
|
|
13755
|
-
* @summary GetAll
|
|
14225
|
+
* @summary GetAll ArticleTags.
|
|
13756
14226
|
* @param {string} articleId
|
|
13757
|
-
* @param {string} [
|
|
13758
|
-
* @param {string} [contributorId]
|
|
13759
|
-
* @param {string} [contributorName]
|
|
13760
|
-
* @param {string} [email]
|
|
13761
|
-
* @param {string} [description]
|
|
13762
|
-
* @param {string} [website]
|
|
13763
|
-
* @param {ContributionType} [contributionType]
|
|
14227
|
+
* @param {string} [tagId]
|
|
13764
14228
|
* @param {number} [page]
|
|
13765
14229
|
* @param {number} [limit]
|
|
13766
14230
|
* @param {Date} [lastRetrieved]
|
|
13767
14231
|
* @param {*} [options] Override http request option.
|
|
13768
14232
|
* @throws {RequiredError}
|
|
13769
14233
|
*/
|
|
13770
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
14234
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagsModel>>;
|
|
13771
14235
|
/**
|
|
13772
14236
|
*
|
|
14237
|
+
* @summary Create ArticleTag.
|
|
13773
14238
|
* @param {string} articleId
|
|
13774
|
-
* @param {
|
|
14239
|
+
* @param {CreateArticleTagCommand} [createArticleTagCommand]
|
|
13775
14240
|
* @param {*} [options] Override http request option.
|
|
13776
14241
|
* @throws {RequiredError}
|
|
13777
14242
|
*/
|
|
13778
|
-
apiV1ArticlesArticleIdTagsPost(articleId: string,
|
|
14243
|
+
apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
|
|
13779
14244
|
/**
|
|
13780
14245
|
*
|
|
13781
|
-
* @summary Delete
|
|
14246
|
+
* @summary Delete ArticleTag.
|
|
13782
14247
|
* @param {string} articleId
|
|
13783
|
-
* @param {string} contributorId
|
|
13784
14248
|
* @param {string} tagId
|
|
14249
|
+
* @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
|
|
13785
14250
|
* @param {*} [options] Override http request option.
|
|
13786
14251
|
* @throws {RequiredError}
|
|
13787
14252
|
*/
|
|
13788
|
-
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string,
|
|
14253
|
+
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13789
14254
|
/**
|
|
13790
14255
|
*
|
|
13791
|
-
* @summary Get
|
|
14256
|
+
* @summary Get ArticleTag.
|
|
13792
14257
|
* @param {string} articleId
|
|
13793
|
-
* @param {string} contributorId
|
|
13794
14258
|
* @param {string} tagId
|
|
13795
14259
|
* @param {*} [options] Override http request option.
|
|
13796
14260
|
* @throws {RequiredError}
|
|
13797
14261
|
*/
|
|
13798
|
-
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string,
|
|
14262
|
+
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
|
|
13799
14263
|
/**
|
|
13800
14264
|
*
|
|
13801
14265
|
* @summary Get all Articles.
|
|
@@ -14025,50 +14489,44 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
14025
14489
|
apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
14026
14490
|
/**
|
|
14027
14491
|
*
|
|
14028
|
-
* @summary GetAll
|
|
14492
|
+
* @summary GetAll ArticleTags.
|
|
14029
14493
|
* @param {string} articleId
|
|
14030
|
-
* @param {string} [
|
|
14031
|
-
* @param {string} [contributorId]
|
|
14032
|
-
* @param {string} [contributorName]
|
|
14033
|
-
* @param {string} [email]
|
|
14034
|
-
* @param {string} [description]
|
|
14035
|
-
* @param {string} [website]
|
|
14036
|
-
* @param {ContributionType} [contributionType]
|
|
14494
|
+
* @param {string} [tagId]
|
|
14037
14495
|
* @param {number} [page]
|
|
14038
14496
|
* @param {number} [limit]
|
|
14039
14497
|
* @param {Date} [lastRetrieved]
|
|
14040
14498
|
* @param {*} [options] Override http request option.
|
|
14041
14499
|
* @throws {RequiredError}
|
|
14042
14500
|
*/
|
|
14043
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
14501
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleTagsModel>;
|
|
14044
14502
|
/**
|
|
14045
14503
|
*
|
|
14504
|
+
* @summary Create ArticleTag.
|
|
14046
14505
|
* @param {string} articleId
|
|
14047
|
-
* @param {
|
|
14506
|
+
* @param {CreateArticleTagCommand} [createArticleTagCommand]
|
|
14048
14507
|
* @param {*} [options] Override http request option.
|
|
14049
14508
|
* @throws {RequiredError}
|
|
14050
14509
|
*/
|
|
14051
|
-
apiV1ArticlesArticleIdTagsPost(articleId: string,
|
|
14510
|
+
apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: any): AxiosPromise<ArticleTagModel>;
|
|
14052
14511
|
/**
|
|
14053
14512
|
*
|
|
14054
|
-
* @summary Delete
|
|
14513
|
+
* @summary Delete ArticleTag.
|
|
14055
14514
|
* @param {string} articleId
|
|
14056
|
-
* @param {string} contributorId
|
|
14057
14515
|
* @param {string} tagId
|
|
14516
|
+
* @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
|
|
14058
14517
|
* @param {*} [options] Override http request option.
|
|
14059
14518
|
* @throws {RequiredError}
|
|
14060
14519
|
*/
|
|
14061
|
-
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string,
|
|
14520
|
+
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
14062
14521
|
/**
|
|
14063
14522
|
*
|
|
14064
|
-
* @summary Get
|
|
14523
|
+
* @summary Get ArticleTag.
|
|
14065
14524
|
* @param {string} articleId
|
|
14066
|
-
* @param {string} contributorId
|
|
14067
14525
|
* @param {string} tagId
|
|
14068
14526
|
* @param {*} [options] Override http request option.
|
|
14069
14527
|
* @throws {RequiredError}
|
|
14070
14528
|
*/
|
|
14071
|
-
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string,
|
|
14529
|
+
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: any): AxiosPromise<ArticleTagModel>;
|
|
14072
14530
|
/**
|
|
14073
14531
|
*
|
|
14074
14532
|
* @summary Get all Articles.
|
|
@@ -14318,15 +14776,9 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14318
14776
|
apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14319
14777
|
/**
|
|
14320
14778
|
*
|
|
14321
|
-
* @summary GetAll
|
|
14779
|
+
* @summary GetAll ArticleTags.
|
|
14322
14780
|
* @param {string} articleId
|
|
14323
|
-
* @param {string} [
|
|
14324
|
-
* @param {string} [contributorId]
|
|
14325
|
-
* @param {string} [contributorName]
|
|
14326
|
-
* @param {string} [email]
|
|
14327
|
-
* @param {string} [description]
|
|
14328
|
-
* @param {string} [website]
|
|
14329
|
-
* @param {ContributionType} [contributionType]
|
|
14781
|
+
* @param {string} [tagId]
|
|
14330
14782
|
* @param {number} [page]
|
|
14331
14783
|
* @param {number} [limit]
|
|
14332
14784
|
* @param {Date} [lastRetrieved]
|
|
@@ -14334,38 +14786,38 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14334
14786
|
* @throws {RequiredError}
|
|
14335
14787
|
* @memberof ArticlesApi
|
|
14336
14788
|
*/
|
|
14337
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
14789
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagsModel>>;
|
|
14338
14790
|
/**
|
|
14339
14791
|
*
|
|
14792
|
+
* @summary Create ArticleTag.
|
|
14340
14793
|
* @param {string} articleId
|
|
14341
|
-
* @param {
|
|
14794
|
+
* @param {CreateArticleTagCommand} [createArticleTagCommand]
|
|
14342
14795
|
* @param {*} [options] Override http request option.
|
|
14343
14796
|
* @throws {RequiredError}
|
|
14344
14797
|
* @memberof ArticlesApi
|
|
14345
14798
|
*/
|
|
14346
|
-
apiV1ArticlesArticleIdTagsPost(articleId: string,
|
|
14799
|
+
apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
|
|
14347
14800
|
/**
|
|
14348
14801
|
*
|
|
14349
|
-
* @summary Delete
|
|
14802
|
+
* @summary Delete ArticleTag.
|
|
14350
14803
|
* @param {string} articleId
|
|
14351
|
-
* @param {string} contributorId
|
|
14352
14804
|
* @param {string} tagId
|
|
14805
|
+
* @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
|
|
14353
14806
|
* @param {*} [options] Override http request option.
|
|
14354
14807
|
* @throws {RequiredError}
|
|
14355
14808
|
* @memberof ArticlesApi
|
|
14356
14809
|
*/
|
|
14357
|
-
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string,
|
|
14810
|
+
apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14358
14811
|
/**
|
|
14359
14812
|
*
|
|
14360
|
-
* @summary Get
|
|
14813
|
+
* @summary Get ArticleTag.
|
|
14361
14814
|
* @param {string} articleId
|
|
14362
|
-
* @param {string} contributorId
|
|
14363
14815
|
* @param {string} tagId
|
|
14364
14816
|
* @param {*} [options] Override http request option.
|
|
14365
14817
|
* @throws {RequiredError}
|
|
14366
14818
|
* @memberof ArticlesApi
|
|
14367
14819
|
*/
|
|
14368
|
-
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string,
|
|
14820
|
+
apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
|
|
14369
14821
|
/**
|
|
14370
14822
|
*
|
|
14371
14823
|
* @summary Get all Articles.
|
|
@@ -16449,7 +16901,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
16449
16901
|
* @param {*} [options] Override http request option.
|
|
16450
16902
|
* @throws {RequiredError}
|
|
16451
16903
|
*/
|
|
16452
|
-
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16904
|
+
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
|
|
16453
16905
|
/**
|
|
16454
16906
|
*
|
|
16455
16907
|
* @summary Create DealPackage.
|
|
@@ -16467,7 +16919,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
16467
16919
|
* @param {*} [options] Override http request option.
|
|
16468
16920
|
* @throws {RequiredError}
|
|
16469
16921
|
*/
|
|
16470
|
-
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16922
|
+
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
16471
16923
|
/**
|
|
16472
16924
|
*
|
|
16473
16925
|
* @summary Get all DealService.
|
|
@@ -16515,7 +16967,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
16515
16967
|
* @param {*} [options] Override http request option.
|
|
16516
16968
|
* @throws {RequiredError}
|
|
16517
16969
|
*/
|
|
16518
|
-
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16970
|
+
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServiceModel>>;
|
|
16519
16971
|
/**
|
|
16520
16972
|
*
|
|
16521
16973
|
* @summary Get all deals.
|
|
@@ -16619,7 +17071,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16619
17071
|
* @param {*} [options] Override http request option.
|
|
16620
17072
|
* @throws {RequiredError}
|
|
16621
17073
|
*/
|
|
16622
|
-
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: any): AxiosPromise<
|
|
17074
|
+
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: any): AxiosPromise<DealPackageModel>;
|
|
16623
17075
|
/**
|
|
16624
17076
|
*
|
|
16625
17077
|
* @summary Create DealPackage.
|
|
@@ -16637,7 +17089,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16637
17089
|
* @param {*} [options] Override http request option.
|
|
16638
17090
|
* @throws {RequiredError}
|
|
16639
17091
|
*/
|
|
16640
|
-
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<
|
|
17092
|
+
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
|
|
16641
17093
|
/**
|
|
16642
17094
|
*
|
|
16643
17095
|
* @summary Get all DealService.
|
|
@@ -16685,7 +17137,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16685
17137
|
* @param {*} [options] Override http request option.
|
|
16686
17138
|
* @throws {RequiredError}
|
|
16687
17139
|
*/
|
|
16688
|
-
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<
|
|
17140
|
+
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<DealServiceModel>;
|
|
16689
17141
|
/**
|
|
16690
17142
|
*
|
|
16691
17143
|
* @summary Get all deals.
|
|
@@ -16797,7 +17249,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16797
17249
|
* @throws {RequiredError}
|
|
16798
17250
|
* @memberof DealsApi
|
|
16799
17251
|
*/
|
|
16800
|
-
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17252
|
+
apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
|
|
16801
17253
|
/**
|
|
16802
17254
|
*
|
|
16803
17255
|
* @summary Create DealPackage.
|
|
@@ -16817,7 +17269,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16817
17269
|
* @throws {RequiredError}
|
|
16818
17270
|
* @memberof DealsApi
|
|
16819
17271
|
*/
|
|
16820
|
-
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17272
|
+
apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
16821
17273
|
/**
|
|
16822
17274
|
*
|
|
16823
17275
|
* @summary Get all DealService.
|
|
@@ -16870,7 +17322,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16870
17322
|
* @throws {RequiredError}
|
|
16871
17323
|
* @memberof DealsApi
|
|
16872
17324
|
*/
|
|
16873
|
-
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17325
|
+
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
|
|
16874
17326
|
/**
|
|
16875
17327
|
*
|
|
16876
17328
|
* @summary Get all deals.
|
|
@@ -17518,7 +17970,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17518
17970
|
* @param {*} [options] Override http request option.
|
|
17519
17971
|
* @throws {RequiredError}
|
|
17520
17972
|
*/
|
|
17521
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
17973
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
17522
17974
|
/**
|
|
17523
17975
|
*
|
|
17524
17976
|
* @summary Get All DoctorSpecialties.
|
|
@@ -17603,7 +18055,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17603
18055
|
* @param {*} [options] Override http request option.
|
|
17604
18056
|
* @throws {RequiredError}
|
|
17605
18057
|
*/
|
|
17606
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
18058
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
17607
18059
|
/**
|
|
17608
18060
|
*
|
|
17609
18061
|
* @summary Get Doctor by slug.
|
|
@@ -17869,7 +18321,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17869
18321
|
* @param {*} [options] Override http request option.
|
|
17870
18322
|
* @throws {RequiredError}
|
|
17871
18323
|
*/
|
|
17872
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
18324
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17873
18325
|
/**
|
|
17874
18326
|
*
|
|
17875
18327
|
* @summary Get All DoctorSpecialties.
|
|
@@ -17954,7 +18406,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17954
18406
|
* @param {*} [options] Override http request option.
|
|
17955
18407
|
* @throws {RequiredError}
|
|
17956
18408
|
*/
|
|
17957
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
18409
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17958
18410
|
/**
|
|
17959
18411
|
*
|
|
17960
18412
|
* @summary Get Doctor by slug.
|
|
@@ -18247,7 +18699,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
18247
18699
|
* @throws {RequiredError}
|
|
18248
18700
|
* @memberof DoctorsApi
|
|
18249
18701
|
*/
|
|
18250
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18702
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
18251
18703
|
/**
|
|
18252
18704
|
*
|
|
18253
18705
|
* @summary Get All DoctorSpecialties.
|
|
@@ -18339,7 +18791,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
18339
18791
|
* @throws {RequiredError}
|
|
18340
18792
|
* @memberof DoctorsApi
|
|
18341
18793
|
*/
|
|
18342
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18794
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
18343
18795
|
/**
|
|
18344
18796
|
*
|
|
18345
18797
|
* @summary Get Doctor by slug.
|
|
@@ -20534,387 +20986,964 @@ export declare const LanguagesApiFactory: (configuration?: Configuration | undef
|
|
|
20534
20986
|
* @param {*} [options] Override http request option.
|
|
20535
20987
|
* @throws {RequiredError}
|
|
20536
20988
|
*/
|
|
20537
|
-
apiV1LanguagesIdGet(id: string, options?: any): AxiosPromise<LanguageModel>;
|
|
20538
|
-
};
|
|
20539
|
-
/**
|
|
20540
|
-
* LanguagesApi - object-oriented interface
|
|
20541
|
-
* @export
|
|
20542
|
-
* @class LanguagesApi
|
|
20543
|
-
* @extends {BaseAPI}
|
|
20544
|
-
*/
|
|
20545
|
-
export declare class LanguagesApi extends BaseAPI {
|
|
20989
|
+
apiV1LanguagesIdGet(id: string, options?: any): AxiosPromise<LanguageModel>;
|
|
20990
|
+
};
|
|
20991
|
+
/**
|
|
20992
|
+
* LanguagesApi - object-oriented interface
|
|
20993
|
+
* @export
|
|
20994
|
+
* @class LanguagesApi
|
|
20995
|
+
* @extends {BaseAPI}
|
|
20996
|
+
*/
|
|
20997
|
+
export declare class LanguagesApi extends BaseAPI {
|
|
20998
|
+
/**
|
|
20999
|
+
*
|
|
21000
|
+
* @summary Get Language by code.
|
|
21001
|
+
* @param {string} code
|
|
21002
|
+
* @param {*} [options] Override http request option.
|
|
21003
|
+
* @throws {RequiredError}
|
|
21004
|
+
* @memberof LanguagesApi
|
|
21005
|
+
*/
|
|
21006
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
21007
|
+
/**
|
|
21008
|
+
*
|
|
21009
|
+
* @summary Get all Languages.
|
|
21010
|
+
* @param {string} [id]
|
|
21011
|
+
* @param {string} [name]
|
|
21012
|
+
* @param {string} [code]
|
|
21013
|
+
* @param {string} [description]
|
|
21014
|
+
* @param {number} [page]
|
|
21015
|
+
* @param {number} [limit]
|
|
21016
|
+
* @param {Date} [lastRetrieved]
|
|
21017
|
+
* @param {*} [options] Override http request option.
|
|
21018
|
+
* @throws {RequiredError}
|
|
21019
|
+
* @memberof LanguagesApi
|
|
21020
|
+
*/
|
|
21021
|
+
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
21022
|
+
/**
|
|
21023
|
+
*
|
|
21024
|
+
* @summary Get Language.
|
|
21025
|
+
* @param {string} id
|
|
21026
|
+
* @param {*} [options] Override http request option.
|
|
21027
|
+
* @throws {RequiredError}
|
|
21028
|
+
* @memberof LanguagesApi
|
|
21029
|
+
*/
|
|
21030
|
+
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
21031
|
+
}
|
|
21032
|
+
/**
|
|
21033
|
+
* ManagersApi - axios parameter creator
|
|
21034
|
+
* @export
|
|
21035
|
+
*/
|
|
21036
|
+
export declare const ManagersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21037
|
+
/**
|
|
21038
|
+
*
|
|
21039
|
+
* @summary Get all Managers.
|
|
21040
|
+
* @param {string} [hospitalId]
|
|
21041
|
+
* @param {string} [id]
|
|
21042
|
+
* @param {string} [fullname]
|
|
21043
|
+
* @param {string} [email]
|
|
21044
|
+
* @param {Gender} [gender]
|
|
21045
|
+
* @param {Date} [dateOfBirth]
|
|
21046
|
+
* @param {Date} [created]
|
|
21047
|
+
* @param {number} [page]
|
|
21048
|
+
* @param {number} [limit]
|
|
21049
|
+
* @param {Date} [lastRetrieved]
|
|
21050
|
+
* @param {*} [options] Override http request option.
|
|
21051
|
+
* @throws {RequiredError}
|
|
21052
|
+
*/
|
|
21053
|
+
apiV1ManagersGet: (hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21054
|
+
/**
|
|
21055
|
+
*
|
|
21056
|
+
* @summary Delete Manager.
|
|
21057
|
+
* @param {string} managerId
|
|
21058
|
+
* @param {*} [options] Override http request option.
|
|
21059
|
+
* @throws {RequiredError}
|
|
21060
|
+
*/
|
|
21061
|
+
apiV1ManagersManagerIdDelete: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21062
|
+
/**
|
|
21063
|
+
*
|
|
21064
|
+
* @summary Get Manager.
|
|
21065
|
+
* @param {string} managerId
|
|
21066
|
+
* @param {*} [options] Override http request option.
|
|
21067
|
+
* @throws {RequiredError}
|
|
21068
|
+
*/
|
|
21069
|
+
apiV1ManagersManagerIdGet: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21070
|
+
/**
|
|
21071
|
+
*
|
|
21072
|
+
* @summary Update Manager.
|
|
21073
|
+
* @param {string} managerId
|
|
21074
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21075
|
+
* @param {*} [options] Override http request option.
|
|
21076
|
+
* @throws {RequiredError}
|
|
21077
|
+
*/
|
|
21078
|
+
apiV1ManagersManagerIdPut: (managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21079
|
+
/**
|
|
21080
|
+
*
|
|
21081
|
+
* @summary Create a Manager.
|
|
21082
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21083
|
+
* @param {*} [options] Override http request option.
|
|
21084
|
+
* @throws {RequiredError}
|
|
21085
|
+
*/
|
|
21086
|
+
apiV1ManagersPost: (createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21087
|
+
};
|
|
21088
|
+
/**
|
|
21089
|
+
* ManagersApi - functional programming interface
|
|
21090
|
+
* @export
|
|
21091
|
+
*/
|
|
21092
|
+
export declare const ManagersApiFp: (configuration?: Configuration | undefined) => {
|
|
21093
|
+
/**
|
|
21094
|
+
*
|
|
21095
|
+
* @summary Get all Managers.
|
|
21096
|
+
* @param {string} [hospitalId]
|
|
21097
|
+
* @param {string} [id]
|
|
21098
|
+
* @param {string} [fullname]
|
|
21099
|
+
* @param {string} [email]
|
|
21100
|
+
* @param {Gender} [gender]
|
|
21101
|
+
* @param {Date} [dateOfBirth]
|
|
21102
|
+
* @param {Date} [created]
|
|
21103
|
+
* @param {number} [page]
|
|
21104
|
+
* @param {number} [limit]
|
|
21105
|
+
* @param {Date} [lastRetrieved]
|
|
21106
|
+
* @param {*} [options] Override http request option.
|
|
21107
|
+
* @throws {RequiredError}
|
|
21108
|
+
*/
|
|
21109
|
+
apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagersModel>>;
|
|
21110
|
+
/**
|
|
21111
|
+
*
|
|
21112
|
+
* @summary Delete Manager.
|
|
21113
|
+
* @param {string} managerId
|
|
21114
|
+
* @param {*} [options] Override http request option.
|
|
21115
|
+
* @throws {RequiredError}
|
|
21116
|
+
*/
|
|
21117
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21118
|
+
/**
|
|
21119
|
+
*
|
|
21120
|
+
* @summary Get Manager.
|
|
21121
|
+
* @param {string} managerId
|
|
21122
|
+
* @param {*} [options] Override http request option.
|
|
21123
|
+
* @throws {RequiredError}
|
|
21124
|
+
*/
|
|
21125
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
21126
|
+
/**
|
|
21127
|
+
*
|
|
21128
|
+
* @summary Update Manager.
|
|
21129
|
+
* @param {string} managerId
|
|
21130
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21131
|
+
* @param {*} [options] Override http request option.
|
|
21132
|
+
* @throws {RequiredError}
|
|
21133
|
+
*/
|
|
21134
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21135
|
+
/**
|
|
21136
|
+
*
|
|
21137
|
+
* @summary Create a Manager.
|
|
21138
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21139
|
+
* @param {*} [options] Override http request option.
|
|
21140
|
+
* @throws {RequiredError}
|
|
21141
|
+
*/
|
|
21142
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
21143
|
+
};
|
|
21144
|
+
/**
|
|
21145
|
+
* ManagersApi - factory interface
|
|
21146
|
+
* @export
|
|
21147
|
+
*/
|
|
21148
|
+
export declare const ManagersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21149
|
+
/**
|
|
21150
|
+
*
|
|
21151
|
+
* @summary Get all Managers.
|
|
21152
|
+
* @param {string} [hospitalId]
|
|
21153
|
+
* @param {string} [id]
|
|
21154
|
+
* @param {string} [fullname]
|
|
21155
|
+
* @param {string} [email]
|
|
21156
|
+
* @param {Gender} [gender]
|
|
21157
|
+
* @param {Date} [dateOfBirth]
|
|
21158
|
+
* @param {Date} [created]
|
|
21159
|
+
* @param {number} [page]
|
|
21160
|
+
* @param {number} [limit]
|
|
21161
|
+
* @param {Date} [lastRetrieved]
|
|
21162
|
+
* @param {*} [options] Override http request option.
|
|
21163
|
+
* @throws {RequiredError}
|
|
21164
|
+
*/
|
|
21165
|
+
apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagersModel>;
|
|
21166
|
+
/**
|
|
21167
|
+
*
|
|
21168
|
+
* @summary Delete Manager.
|
|
21169
|
+
* @param {string} managerId
|
|
21170
|
+
* @param {*} [options] Override http request option.
|
|
21171
|
+
* @throws {RequiredError}
|
|
21172
|
+
*/
|
|
21173
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: any): AxiosPromise<boolean>;
|
|
21174
|
+
/**
|
|
21175
|
+
*
|
|
21176
|
+
* @summary Get Manager.
|
|
21177
|
+
* @param {string} managerId
|
|
21178
|
+
* @param {*} [options] Override http request option.
|
|
21179
|
+
* @throws {RequiredError}
|
|
21180
|
+
*/
|
|
21181
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: any): AxiosPromise<ManagerModel>;
|
|
21182
|
+
/**
|
|
21183
|
+
*
|
|
21184
|
+
* @summary Update Manager.
|
|
21185
|
+
* @param {string} managerId
|
|
21186
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21187
|
+
* @param {*} [options] Override http request option.
|
|
21188
|
+
* @throws {RequiredError}
|
|
21189
|
+
*/
|
|
21190
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21191
|
+
/**
|
|
21192
|
+
*
|
|
21193
|
+
* @summary Create a Manager.
|
|
21194
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21195
|
+
* @param {*} [options] Override http request option.
|
|
21196
|
+
* @throws {RequiredError}
|
|
21197
|
+
*/
|
|
21198
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: any): AxiosPromise<ManagerModel>;
|
|
21199
|
+
};
|
|
21200
|
+
/**
|
|
21201
|
+
* ManagersApi - object-oriented interface
|
|
21202
|
+
* @export
|
|
21203
|
+
* @class ManagersApi
|
|
21204
|
+
* @extends {BaseAPI}
|
|
21205
|
+
*/
|
|
21206
|
+
export declare class ManagersApi extends BaseAPI {
|
|
21207
|
+
/**
|
|
21208
|
+
*
|
|
21209
|
+
* @summary Get all Managers.
|
|
21210
|
+
* @param {string} [hospitalId]
|
|
21211
|
+
* @param {string} [id]
|
|
21212
|
+
* @param {string} [fullname]
|
|
21213
|
+
* @param {string} [email]
|
|
21214
|
+
* @param {Gender} [gender]
|
|
21215
|
+
* @param {Date} [dateOfBirth]
|
|
21216
|
+
* @param {Date} [created]
|
|
21217
|
+
* @param {number} [page]
|
|
21218
|
+
* @param {number} [limit]
|
|
21219
|
+
* @param {Date} [lastRetrieved]
|
|
21220
|
+
* @param {*} [options] Override http request option.
|
|
21221
|
+
* @throws {RequiredError}
|
|
21222
|
+
* @memberof ManagersApi
|
|
21223
|
+
*/
|
|
21224
|
+
apiV1ManagersGet(hospitalId?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagersModel>>;
|
|
21225
|
+
/**
|
|
21226
|
+
*
|
|
21227
|
+
* @summary Delete Manager.
|
|
21228
|
+
* @param {string} managerId
|
|
21229
|
+
* @param {*} [options] Override http request option.
|
|
21230
|
+
* @throws {RequiredError}
|
|
21231
|
+
* @memberof ManagersApi
|
|
21232
|
+
*/
|
|
21233
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21234
|
+
/**
|
|
21235
|
+
*
|
|
21236
|
+
* @summary Get Manager.
|
|
21237
|
+
* @param {string} managerId
|
|
21238
|
+
* @param {*} [options] Override http request option.
|
|
21239
|
+
* @throws {RequiredError}
|
|
21240
|
+
* @memberof ManagersApi
|
|
21241
|
+
*/
|
|
21242
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
21243
|
+
/**
|
|
21244
|
+
*
|
|
21245
|
+
* @summary Update Manager.
|
|
21246
|
+
* @param {string} managerId
|
|
21247
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21248
|
+
* @param {*} [options] Override http request option.
|
|
21249
|
+
* @throws {RequiredError}
|
|
21250
|
+
* @memberof ManagersApi
|
|
21251
|
+
*/
|
|
21252
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21253
|
+
/**
|
|
21254
|
+
*
|
|
21255
|
+
* @summary Create a Manager.
|
|
21256
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21257
|
+
* @param {*} [options] Override http request option.
|
|
21258
|
+
* @throws {RequiredError}
|
|
21259
|
+
* @memberof ManagersApi
|
|
21260
|
+
*/
|
|
21261
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
21262
|
+
}
|
|
21263
|
+
/**
|
|
21264
|
+
* MembershipsApi - axios parameter creator
|
|
21265
|
+
* @export
|
|
21266
|
+
*/
|
|
21267
|
+
export declare const MembershipsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21268
|
+
/**
|
|
21269
|
+
*
|
|
21270
|
+
* @summary Get all memberships.
|
|
21271
|
+
* @param {string} [id]
|
|
21272
|
+
* @param {string} [planId]
|
|
21273
|
+
* @param {string} [planName]
|
|
21274
|
+
* @param {string} [ownerId]
|
|
21275
|
+
* @param {string} [ownerName]
|
|
21276
|
+
* @param {boolean} [isActive]
|
|
21277
|
+
* @param {number} [page]
|
|
21278
|
+
* @param {number} [limit]
|
|
21279
|
+
* @param {Date} [lastRetrieved]
|
|
21280
|
+
* @param {*} [options] Override http request option.
|
|
21281
|
+
* @throws {RequiredError}
|
|
21282
|
+
*/
|
|
21283
|
+
apiV1MembershipsGet: (id?: string | undefined, planId?: string | undefined, planName?: string | undefined, ownerId?: string | undefined, ownerName?: string | undefined, isActive?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21284
|
+
/**
|
|
21285
|
+
*
|
|
21286
|
+
* @summary Get membership.
|
|
21287
|
+
* @param {string} membershipId
|
|
21288
|
+
* @param {*} [options] Override http request option.
|
|
21289
|
+
* @throws {RequiredError}
|
|
21290
|
+
*/
|
|
21291
|
+
apiV1MembershipsMembershipIdGet: (membershipId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21292
|
+
/**
|
|
21293
|
+
*
|
|
21294
|
+
* @summary Get all members.
|
|
21295
|
+
* @param {string} membershipId
|
|
21296
|
+
* @param {number} [page]
|
|
21297
|
+
* @param {number} [limit]
|
|
21298
|
+
* @param {Date} [lastRetrieved]
|
|
21299
|
+
* @param {*} [options] Override http request option.
|
|
21300
|
+
* @throws {RequiredError}
|
|
21301
|
+
*/
|
|
21302
|
+
apiV1MembershipsMembershipIdMembersGet: (membershipId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21303
|
+
};
|
|
21304
|
+
/**
|
|
21305
|
+
* MembershipsApi - functional programming interface
|
|
21306
|
+
* @export
|
|
21307
|
+
*/
|
|
21308
|
+
export declare const MembershipsApiFp: (configuration?: Configuration | undefined) => {
|
|
21309
|
+
/**
|
|
21310
|
+
*
|
|
21311
|
+
* @summary Get all memberships.
|
|
21312
|
+
* @param {string} [id]
|
|
21313
|
+
* @param {string} [planId]
|
|
21314
|
+
* @param {string} [planName]
|
|
21315
|
+
* @param {string} [ownerId]
|
|
21316
|
+
* @param {string} [ownerName]
|
|
21317
|
+
* @param {boolean} [isActive]
|
|
21318
|
+
* @param {number} [page]
|
|
21319
|
+
* @param {number} [limit]
|
|
21320
|
+
* @param {Date} [lastRetrieved]
|
|
21321
|
+
* @param {*} [options] Override http request option.
|
|
21322
|
+
* @throws {RequiredError}
|
|
21323
|
+
*/
|
|
21324
|
+
apiV1MembershipsGet(id?: string | undefined, planId?: string | undefined, planName?: string | undefined, ownerId?: string | undefined, ownerName?: string | undefined, isActive?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipsModel>>;
|
|
21325
|
+
/**
|
|
21326
|
+
*
|
|
21327
|
+
* @summary Get membership.
|
|
21328
|
+
* @param {string} membershipId
|
|
21329
|
+
* @param {*} [options] Override http request option.
|
|
21330
|
+
* @throws {RequiredError}
|
|
21331
|
+
*/
|
|
21332
|
+
apiV1MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipModel>>;
|
|
21333
|
+
/**
|
|
21334
|
+
*
|
|
21335
|
+
* @summary Get all members.
|
|
21336
|
+
* @param {string} membershipId
|
|
21337
|
+
* @param {number} [page]
|
|
21338
|
+
* @param {number} [limit]
|
|
21339
|
+
* @param {Date} [lastRetrieved]
|
|
21340
|
+
* @param {*} [options] Override http request option.
|
|
21341
|
+
* @throws {RequiredError}
|
|
21342
|
+
*/
|
|
21343
|
+
apiV1MembershipsMembershipIdMembersGet(membershipId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembersModel>>;
|
|
21344
|
+
};
|
|
21345
|
+
/**
|
|
21346
|
+
* MembershipsApi - factory interface
|
|
21347
|
+
* @export
|
|
21348
|
+
*/
|
|
21349
|
+
export declare const MembershipsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21350
|
+
/**
|
|
21351
|
+
*
|
|
21352
|
+
* @summary Get all memberships.
|
|
21353
|
+
* @param {string} [id]
|
|
21354
|
+
* @param {string} [planId]
|
|
21355
|
+
* @param {string} [planName]
|
|
21356
|
+
* @param {string} [ownerId]
|
|
21357
|
+
* @param {string} [ownerName]
|
|
21358
|
+
* @param {boolean} [isActive]
|
|
21359
|
+
* @param {number} [page]
|
|
21360
|
+
* @param {number} [limit]
|
|
21361
|
+
* @param {Date} [lastRetrieved]
|
|
21362
|
+
* @param {*} [options] Override http request option.
|
|
21363
|
+
* @throws {RequiredError}
|
|
21364
|
+
*/
|
|
21365
|
+
apiV1MembershipsGet(id?: string | undefined, planId?: string | undefined, planName?: string | undefined, ownerId?: string | undefined, ownerName?: string | undefined, isActive?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MembershipsModel>;
|
|
21366
|
+
/**
|
|
21367
|
+
*
|
|
21368
|
+
* @summary Get membership.
|
|
21369
|
+
* @param {string} membershipId
|
|
21370
|
+
* @param {*} [options] Override http request option.
|
|
21371
|
+
* @throws {RequiredError}
|
|
21372
|
+
*/
|
|
21373
|
+
apiV1MembershipsMembershipIdGet(membershipId: string, options?: any): AxiosPromise<MembershipModel>;
|
|
21374
|
+
/**
|
|
21375
|
+
*
|
|
21376
|
+
* @summary Get all members.
|
|
21377
|
+
* @param {string} membershipId
|
|
21378
|
+
* @param {number} [page]
|
|
21379
|
+
* @param {number} [limit]
|
|
21380
|
+
* @param {Date} [lastRetrieved]
|
|
21381
|
+
* @param {*} [options] Override http request option.
|
|
21382
|
+
* @throws {RequiredError}
|
|
21383
|
+
*/
|
|
21384
|
+
apiV1MembershipsMembershipIdMembersGet(membershipId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MembersModel>;
|
|
21385
|
+
};
|
|
21386
|
+
/**
|
|
21387
|
+
* MembershipsApi - object-oriented interface
|
|
21388
|
+
* @export
|
|
21389
|
+
* @class MembershipsApi
|
|
21390
|
+
* @extends {BaseAPI}
|
|
21391
|
+
*/
|
|
21392
|
+
export declare class MembershipsApi extends BaseAPI {
|
|
21393
|
+
/**
|
|
21394
|
+
*
|
|
21395
|
+
* @summary Get all memberships.
|
|
21396
|
+
* @param {string} [id]
|
|
21397
|
+
* @param {string} [planId]
|
|
21398
|
+
* @param {string} [planName]
|
|
21399
|
+
* @param {string} [ownerId]
|
|
21400
|
+
* @param {string} [ownerName]
|
|
21401
|
+
* @param {boolean} [isActive]
|
|
21402
|
+
* @param {number} [page]
|
|
21403
|
+
* @param {number} [limit]
|
|
21404
|
+
* @param {Date} [lastRetrieved]
|
|
21405
|
+
* @param {*} [options] Override http request option.
|
|
21406
|
+
* @throws {RequiredError}
|
|
21407
|
+
* @memberof MembershipsApi
|
|
21408
|
+
*/
|
|
21409
|
+
apiV1MembershipsGet(id?: string, planId?: string, planName?: string, ownerId?: string, ownerName?: string, isActive?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipsModel>>;
|
|
21410
|
+
/**
|
|
21411
|
+
*
|
|
21412
|
+
* @summary Get membership.
|
|
21413
|
+
* @param {string} membershipId
|
|
21414
|
+
* @param {*} [options] Override http request option.
|
|
21415
|
+
* @throws {RequiredError}
|
|
21416
|
+
* @memberof MembershipsApi
|
|
21417
|
+
*/
|
|
21418
|
+
apiV1MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipModel>>;
|
|
21419
|
+
/**
|
|
21420
|
+
*
|
|
21421
|
+
* @summary Get all members.
|
|
21422
|
+
* @param {string} membershipId
|
|
21423
|
+
* @param {number} [page]
|
|
21424
|
+
* @param {number} [limit]
|
|
21425
|
+
* @param {Date} [lastRetrieved]
|
|
21426
|
+
* @param {*} [options] Override http request option.
|
|
21427
|
+
* @throws {RequiredError}
|
|
21428
|
+
* @memberof MembershipsApi
|
|
21429
|
+
*/
|
|
21430
|
+
apiV1MembershipsMembershipIdMembersGet(membershipId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembersModel>>;
|
|
21431
|
+
}
|
|
21432
|
+
/**
|
|
21433
|
+
* NotificationsApi - axios parameter creator
|
|
21434
|
+
* @export
|
|
21435
|
+
*/
|
|
21436
|
+
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21437
|
+
/**
|
|
21438
|
+
*
|
|
21439
|
+
* @summary Check notification.
|
|
21440
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21441
|
+
* @param {*} [options] Override http request option.
|
|
21442
|
+
* @throws {RequiredError}
|
|
21443
|
+
*/
|
|
21444
|
+
apiV1NotificationsCheckPost: (checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21445
|
+
/**
|
|
21446
|
+
*
|
|
21447
|
+
* @summary Get all notifications.
|
|
21448
|
+
* @param {NotificationCode} [notificationCode]
|
|
21449
|
+
* @param {boolean} [unreadCountOnly]
|
|
21450
|
+
* @param {number} [page]
|
|
21451
|
+
* @param {number} [limit]
|
|
21452
|
+
* @param {Date} [lastRetrieved]
|
|
21453
|
+
* @param {*} [options] Override http request option.
|
|
21454
|
+
* @throws {RequiredError}
|
|
21455
|
+
*/
|
|
21456
|
+
apiV1NotificationsGet: (notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21457
|
+
};
|
|
21458
|
+
/**
|
|
21459
|
+
* NotificationsApi - functional programming interface
|
|
21460
|
+
* @export
|
|
21461
|
+
*/
|
|
21462
|
+
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
21463
|
+
/**
|
|
21464
|
+
*
|
|
21465
|
+
* @summary Check notification.
|
|
21466
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21467
|
+
* @param {*} [options] Override http request option.
|
|
21468
|
+
* @throws {RequiredError}
|
|
21469
|
+
*/
|
|
21470
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21471
|
+
/**
|
|
21472
|
+
*
|
|
21473
|
+
* @summary Get all notifications.
|
|
21474
|
+
* @param {NotificationCode} [notificationCode]
|
|
21475
|
+
* @param {boolean} [unreadCountOnly]
|
|
21476
|
+
* @param {number} [page]
|
|
21477
|
+
* @param {number} [limit]
|
|
21478
|
+
* @param {Date} [lastRetrieved]
|
|
21479
|
+
* @param {*} [options] Override http request option.
|
|
21480
|
+
* @throws {RequiredError}
|
|
21481
|
+
*/
|
|
21482
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NotificationsModel>>;
|
|
21483
|
+
};
|
|
21484
|
+
/**
|
|
21485
|
+
* NotificationsApi - factory interface
|
|
21486
|
+
* @export
|
|
21487
|
+
*/
|
|
21488
|
+
export declare const NotificationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21489
|
+
/**
|
|
21490
|
+
*
|
|
21491
|
+
* @summary Check notification.
|
|
21492
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21493
|
+
* @param {*} [options] Override http request option.
|
|
21494
|
+
* @throws {RequiredError}
|
|
21495
|
+
*/
|
|
21496
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21497
|
+
/**
|
|
21498
|
+
*
|
|
21499
|
+
* @summary Get all notifications.
|
|
21500
|
+
* @param {NotificationCode} [notificationCode]
|
|
21501
|
+
* @param {boolean} [unreadCountOnly]
|
|
21502
|
+
* @param {number} [page]
|
|
21503
|
+
* @param {number} [limit]
|
|
21504
|
+
* @param {Date} [lastRetrieved]
|
|
21505
|
+
* @param {*} [options] Override http request option.
|
|
21506
|
+
* @throws {RequiredError}
|
|
21507
|
+
*/
|
|
21508
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<NotificationsModel>;
|
|
21509
|
+
};
|
|
21510
|
+
/**
|
|
21511
|
+
* NotificationsApi - object-oriented interface
|
|
21512
|
+
* @export
|
|
21513
|
+
* @class NotificationsApi
|
|
21514
|
+
* @extends {BaseAPI}
|
|
21515
|
+
*/
|
|
21516
|
+
export declare class NotificationsApi extends BaseAPI {
|
|
21517
|
+
/**
|
|
21518
|
+
*
|
|
21519
|
+
* @summary Check notification.
|
|
21520
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21521
|
+
* @param {*} [options] Override http request option.
|
|
21522
|
+
* @throws {RequiredError}
|
|
21523
|
+
* @memberof NotificationsApi
|
|
21524
|
+
*/
|
|
21525
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21526
|
+
/**
|
|
21527
|
+
*
|
|
21528
|
+
* @summary Get all notifications.
|
|
21529
|
+
* @param {NotificationCode} [notificationCode]
|
|
21530
|
+
* @param {boolean} [unreadCountOnly]
|
|
21531
|
+
* @param {number} [page]
|
|
21532
|
+
* @param {number} [limit]
|
|
21533
|
+
* @param {Date} [lastRetrieved]
|
|
21534
|
+
* @param {*} [options] Override http request option.
|
|
21535
|
+
* @throws {RequiredError}
|
|
21536
|
+
* @memberof NotificationsApi
|
|
21537
|
+
*/
|
|
21538
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
21539
|
+
}
|
|
21540
|
+
/**
|
|
21541
|
+
* PlansApi - axios parameter creator
|
|
21542
|
+
* @export
|
|
21543
|
+
*/
|
|
21544
|
+
export declare const PlansApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21545
|
+
/**
|
|
21546
|
+
*
|
|
21547
|
+
* @summary Get all plans.
|
|
21548
|
+
* @param {string} [id]
|
|
21549
|
+
* @param {string} [name]
|
|
21550
|
+
* @param {number} [page]
|
|
21551
|
+
* @param {number} [limit]
|
|
21552
|
+
* @param {Date} [lastRetrieved]
|
|
21553
|
+
* @param {*} [options] Override http request option.
|
|
21554
|
+
* @throws {RequiredError}
|
|
21555
|
+
*/
|
|
21556
|
+
apiV1PlansGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21557
|
+
/**
|
|
21558
|
+
*
|
|
21559
|
+
* @summary Delete plan.
|
|
21560
|
+
* @param {string} planId
|
|
21561
|
+
* @param {*} [options] Override http request option.
|
|
21562
|
+
* @throws {RequiredError}
|
|
21563
|
+
*/
|
|
21564
|
+
apiV1PlansPlanIdDelete: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21565
|
+
/**
|
|
21566
|
+
*
|
|
21567
|
+
* @summary Get plan.
|
|
21568
|
+
* @param {string} planId
|
|
21569
|
+
* @param {*} [options] Override http request option.
|
|
21570
|
+
* @throws {RequiredError}
|
|
21571
|
+
*/
|
|
21572
|
+
apiV1PlansPlanIdGet: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21573
|
+
/**
|
|
21574
|
+
*
|
|
21575
|
+
* @summary Get all plan hospital.
|
|
21576
|
+
* @param {string} planId
|
|
21577
|
+
* @param {number} [page]
|
|
21578
|
+
* @param {number} [limit]
|
|
21579
|
+
* @param {Date} [lastRetrieved]
|
|
21580
|
+
* @param {*} [options] Override http request option.
|
|
21581
|
+
* @throws {RequiredError}
|
|
21582
|
+
*/
|
|
21583
|
+
apiV1PlansPlanIdHospitalsGet: (planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21584
|
+
/**
|
|
21585
|
+
*
|
|
21586
|
+
* @summary Delete plan hospital.
|
|
21587
|
+
* @param {string} planId
|
|
21588
|
+
* @param {string} hospitalId
|
|
21589
|
+
* @param {*} [options] Override http request option.
|
|
21590
|
+
* @throws {RequiredError}
|
|
21591
|
+
*/
|
|
21592
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21593
|
+
/**
|
|
21594
|
+
*
|
|
21595
|
+
* @summary Get plan hospital.
|
|
21596
|
+
* @param {string} planId
|
|
21597
|
+
* @param {string} hospitalId
|
|
21598
|
+
* @param {*} [options] Override http request option.
|
|
21599
|
+
* @throws {RequiredError}
|
|
21600
|
+
*/
|
|
21601
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21602
|
+
/**
|
|
21603
|
+
*
|
|
21604
|
+
* @summary Update plan hospital.
|
|
21605
|
+
* @param {string} planId
|
|
21606
|
+
* @param {string} hospitalId
|
|
21607
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
21608
|
+
* @param {*} [options] Override http request option.
|
|
21609
|
+
* @throws {RequiredError}
|
|
21610
|
+
*/
|
|
21611
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut: (planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20546
21612
|
/**
|
|
20547
21613
|
*
|
|
20548
|
-
* @summary
|
|
20549
|
-
* @param {string}
|
|
21614
|
+
* @summary Create plan hospital.
|
|
21615
|
+
* @param {string} planId
|
|
21616
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
20550
21617
|
* @param {*} [options] Override http request option.
|
|
20551
21618
|
* @throws {RequiredError}
|
|
20552
|
-
* @memberof LanguagesApi
|
|
20553
21619
|
*/
|
|
20554
|
-
|
|
21620
|
+
apiV1PlansPlanIdHospitalsPost: (planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20555
21621
|
/**
|
|
20556
21622
|
*
|
|
20557
|
-
* @summary
|
|
20558
|
-
* @param {string}
|
|
20559
|
-
* @param {
|
|
20560
|
-
* @param {string} [code]
|
|
20561
|
-
* @param {string} [description]
|
|
20562
|
-
* @param {number} [page]
|
|
20563
|
-
* @param {number} [limit]
|
|
20564
|
-
* @param {Date} [lastRetrieved]
|
|
21623
|
+
* @summary Update plan.
|
|
21624
|
+
* @param {string} planId
|
|
21625
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
20565
21626
|
* @param {*} [options] Override http request option.
|
|
20566
21627
|
* @throws {RequiredError}
|
|
20567
|
-
* @memberof LanguagesApi
|
|
20568
21628
|
*/
|
|
20569
|
-
|
|
21629
|
+
apiV1PlansPlanIdPut: (planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20570
21630
|
/**
|
|
20571
21631
|
*
|
|
20572
|
-
* @summary
|
|
20573
|
-
* @param {
|
|
21632
|
+
* @summary Create a plan.
|
|
21633
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
20574
21634
|
* @param {*} [options] Override http request option.
|
|
20575
21635
|
* @throws {RequiredError}
|
|
20576
|
-
* @memberof LanguagesApi
|
|
20577
21636
|
*/
|
|
20578
|
-
|
|
20579
|
-
}
|
|
21637
|
+
apiV1PlansPost: (createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21638
|
+
};
|
|
20580
21639
|
/**
|
|
20581
|
-
*
|
|
21640
|
+
* PlansApi - functional programming interface
|
|
20582
21641
|
* @export
|
|
20583
21642
|
*/
|
|
20584
|
-
export declare const
|
|
21643
|
+
export declare const PlansApiFp: (configuration?: Configuration | undefined) => {
|
|
20585
21644
|
/**
|
|
20586
21645
|
*
|
|
20587
|
-
* @summary Get all
|
|
20588
|
-
* @param {string} [hospitalId]
|
|
21646
|
+
* @summary Get all plans.
|
|
20589
21647
|
* @param {string} [id]
|
|
20590
|
-
* @param {string} [
|
|
20591
|
-
* @param {string} [email]
|
|
20592
|
-
* @param {Gender} [gender]
|
|
20593
|
-
* @param {Date} [dateOfBirth]
|
|
20594
|
-
* @param {Date} [created]
|
|
21648
|
+
* @param {string} [name]
|
|
20595
21649
|
* @param {number} [page]
|
|
20596
21650
|
* @param {number} [limit]
|
|
20597
21651
|
* @param {Date} [lastRetrieved]
|
|
20598
21652
|
* @param {*} [options] Override http request option.
|
|
20599
21653
|
* @throws {RequiredError}
|
|
20600
21654
|
*/
|
|
20601
|
-
|
|
21655
|
+
apiV1PlansGet(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<PlansModel>>;
|
|
20602
21656
|
/**
|
|
20603
21657
|
*
|
|
20604
|
-
* @summary Delete
|
|
20605
|
-
* @param {string}
|
|
21658
|
+
* @summary Delete plan.
|
|
21659
|
+
* @param {string} planId
|
|
20606
21660
|
* @param {*} [options] Override http request option.
|
|
20607
21661
|
* @throws {RequiredError}
|
|
20608
21662
|
*/
|
|
20609
|
-
|
|
21663
|
+
apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20610
21664
|
/**
|
|
20611
21665
|
*
|
|
20612
|
-
* @summary Get
|
|
20613
|
-
* @param {string}
|
|
21666
|
+
* @summary Get plan.
|
|
21667
|
+
* @param {string} planId
|
|
20614
21668
|
* @param {*} [options] Override http request option.
|
|
20615
21669
|
* @throws {RequiredError}
|
|
20616
21670
|
*/
|
|
20617
|
-
|
|
21671
|
+
apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
20618
21672
|
/**
|
|
20619
21673
|
*
|
|
20620
|
-
* @summary
|
|
20621
|
-
* @param {string}
|
|
20622
|
-
* @param {
|
|
21674
|
+
* @summary Get all plan hospital.
|
|
21675
|
+
* @param {string} planId
|
|
21676
|
+
* @param {number} [page]
|
|
21677
|
+
* @param {number} [limit]
|
|
21678
|
+
* @param {Date} [lastRetrieved]
|
|
20623
21679
|
* @param {*} [options] Override http request option.
|
|
20624
21680
|
* @throws {RequiredError}
|
|
20625
21681
|
*/
|
|
20626
|
-
|
|
21682
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalsModel>>;
|
|
20627
21683
|
/**
|
|
20628
21684
|
*
|
|
20629
|
-
* @summary
|
|
20630
|
-
* @param {
|
|
21685
|
+
* @summary Delete plan hospital.
|
|
21686
|
+
* @param {string} planId
|
|
21687
|
+
* @param {string} hospitalId
|
|
20631
21688
|
* @param {*} [options] Override http request option.
|
|
20632
21689
|
* @throws {RequiredError}
|
|
20633
21690
|
*/
|
|
20634
|
-
|
|
20635
|
-
};
|
|
20636
|
-
/**
|
|
20637
|
-
* ManagersApi - functional programming interface
|
|
20638
|
-
* @export
|
|
20639
|
-
*/
|
|
20640
|
-
export declare const ManagersApiFp: (configuration?: Configuration | undefined) => {
|
|
21691
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20641
21692
|
/**
|
|
20642
21693
|
*
|
|
20643
|
-
* @summary Get
|
|
20644
|
-
* @param {string}
|
|
20645
|
-
* @param {string}
|
|
20646
|
-
* @param {string} [fullname]
|
|
20647
|
-
* @param {string} [email]
|
|
20648
|
-
* @param {Gender} [gender]
|
|
20649
|
-
* @param {Date} [dateOfBirth]
|
|
20650
|
-
* @param {Date} [created]
|
|
20651
|
-
* @param {number} [page]
|
|
20652
|
-
* @param {number} [limit]
|
|
20653
|
-
* @param {Date} [lastRetrieved]
|
|
21694
|
+
* @summary Get plan hospital.
|
|
21695
|
+
* @param {string} planId
|
|
21696
|
+
* @param {string} hospitalId
|
|
20654
21697
|
* @param {*} [options] Override http request option.
|
|
20655
21698
|
* @throws {RequiredError}
|
|
20656
21699
|
*/
|
|
20657
|
-
|
|
21700
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
20658
21701
|
/**
|
|
20659
21702
|
*
|
|
20660
|
-
* @summary
|
|
20661
|
-
* @param {string}
|
|
21703
|
+
* @summary Update plan hospital.
|
|
21704
|
+
* @param {string} planId
|
|
21705
|
+
* @param {string} hospitalId
|
|
21706
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
20662
21707
|
* @param {*} [options] Override http request option.
|
|
20663
21708
|
* @throws {RequiredError}
|
|
20664
21709
|
*/
|
|
20665
|
-
|
|
21710
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
20666
21711
|
/**
|
|
20667
21712
|
*
|
|
20668
|
-
* @summary
|
|
20669
|
-
* @param {string}
|
|
21713
|
+
* @summary Create plan hospital.
|
|
21714
|
+
* @param {string} planId
|
|
21715
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
20670
21716
|
* @param {*} [options] Override http request option.
|
|
20671
21717
|
* @throws {RequiredError}
|
|
20672
21718
|
*/
|
|
20673
|
-
|
|
21719
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
20674
21720
|
/**
|
|
20675
21721
|
*
|
|
20676
|
-
* @summary Update
|
|
20677
|
-
* @param {string}
|
|
20678
|
-
* @param {
|
|
21722
|
+
* @summary Update plan.
|
|
21723
|
+
* @param {string} planId
|
|
21724
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
20679
21725
|
* @param {*} [options] Override http request option.
|
|
20680
21726
|
* @throws {RequiredError}
|
|
20681
21727
|
*/
|
|
20682
|
-
|
|
21728
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
20683
21729
|
/**
|
|
20684
21730
|
*
|
|
20685
|
-
* @summary Create a
|
|
20686
|
-
* @param {
|
|
21731
|
+
* @summary Create a plan.
|
|
21732
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
20687
21733
|
* @param {*} [options] Override http request option.
|
|
20688
21734
|
* @throws {RequiredError}
|
|
20689
21735
|
*/
|
|
20690
|
-
|
|
21736
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
20691
21737
|
};
|
|
20692
21738
|
/**
|
|
20693
|
-
*
|
|
21739
|
+
* PlansApi - factory interface
|
|
20694
21740
|
* @export
|
|
20695
21741
|
*/
|
|
20696
|
-
export declare const
|
|
21742
|
+
export declare const PlansApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
20697
21743
|
/**
|
|
20698
21744
|
*
|
|
20699
|
-
* @summary Get all
|
|
20700
|
-
* @param {string} [hospitalId]
|
|
21745
|
+
* @summary Get all plans.
|
|
20701
21746
|
* @param {string} [id]
|
|
20702
|
-
* @param {string} [
|
|
20703
|
-
* @param {string} [email]
|
|
20704
|
-
* @param {Gender} [gender]
|
|
20705
|
-
* @param {Date} [dateOfBirth]
|
|
20706
|
-
* @param {Date} [created]
|
|
21747
|
+
* @param {string} [name]
|
|
20707
21748
|
* @param {number} [page]
|
|
20708
21749
|
* @param {number} [limit]
|
|
20709
21750
|
* @param {Date} [lastRetrieved]
|
|
20710
21751
|
* @param {*} [options] Override http request option.
|
|
20711
21752
|
* @throws {RequiredError}
|
|
20712
21753
|
*/
|
|
20713
|
-
|
|
21754
|
+
apiV1PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlansModel>;
|
|
20714
21755
|
/**
|
|
20715
21756
|
*
|
|
20716
|
-
* @summary Delete
|
|
20717
|
-
* @param {string}
|
|
21757
|
+
* @summary Delete plan.
|
|
21758
|
+
* @param {string} planId
|
|
20718
21759
|
* @param {*} [options] Override http request option.
|
|
20719
21760
|
* @throws {RequiredError}
|
|
20720
21761
|
*/
|
|
20721
|
-
|
|
21762
|
+
apiV1PlansPlanIdDelete(planId: string, options?: any): AxiosPromise<boolean>;
|
|
20722
21763
|
/**
|
|
20723
21764
|
*
|
|
20724
|
-
* @summary Get
|
|
20725
|
-
* @param {string}
|
|
21765
|
+
* @summary Get plan.
|
|
21766
|
+
* @param {string} planId
|
|
20726
21767
|
* @param {*} [options] Override http request option.
|
|
20727
21768
|
* @throws {RequiredError}
|
|
20728
21769
|
*/
|
|
20729
|
-
|
|
21770
|
+
apiV1PlansPlanIdGet(planId: string, options?: any): AxiosPromise<PlanModel>;
|
|
20730
21771
|
/**
|
|
20731
21772
|
*
|
|
20732
|
-
* @summary
|
|
20733
|
-
* @param {string}
|
|
20734
|
-
* @param {
|
|
21773
|
+
* @summary Get all plan hospital.
|
|
21774
|
+
* @param {string} planId
|
|
21775
|
+
* @param {number} [page]
|
|
21776
|
+
* @param {number} [limit]
|
|
21777
|
+
* @param {Date} [lastRetrieved]
|
|
20735
21778
|
* @param {*} [options] Override http request option.
|
|
20736
21779
|
* @throws {RequiredError}
|
|
20737
21780
|
*/
|
|
20738
|
-
|
|
21781
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlanHospitalsModel>;
|
|
20739
21782
|
/**
|
|
20740
21783
|
*
|
|
20741
|
-
* @summary
|
|
20742
|
-
* @param {
|
|
21784
|
+
* @summary Delete plan hospital.
|
|
21785
|
+
* @param {string} planId
|
|
21786
|
+
* @param {string} hospitalId
|
|
20743
21787
|
* @param {*} [options] Override http request option.
|
|
20744
21788
|
* @throws {RequiredError}
|
|
20745
21789
|
*/
|
|
20746
|
-
|
|
20747
|
-
};
|
|
20748
|
-
/**
|
|
20749
|
-
* ManagersApi - object-oriented interface
|
|
20750
|
-
* @export
|
|
20751
|
-
* @class ManagersApi
|
|
20752
|
-
* @extends {BaseAPI}
|
|
20753
|
-
*/
|
|
20754
|
-
export declare class ManagersApi extends BaseAPI {
|
|
21790
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
20755
21791
|
/**
|
|
20756
21792
|
*
|
|
20757
|
-
* @summary Get
|
|
20758
|
-
* @param {string}
|
|
20759
|
-
* @param {string}
|
|
20760
|
-
* @param {string} [fullname]
|
|
20761
|
-
* @param {string} [email]
|
|
20762
|
-
* @param {Gender} [gender]
|
|
20763
|
-
* @param {Date} [dateOfBirth]
|
|
20764
|
-
* @param {Date} [created]
|
|
20765
|
-
* @param {number} [page]
|
|
20766
|
-
* @param {number} [limit]
|
|
20767
|
-
* @param {Date} [lastRetrieved]
|
|
21793
|
+
* @summary Get plan hospital.
|
|
21794
|
+
* @param {string} planId
|
|
21795
|
+
* @param {string} hospitalId
|
|
20768
21796
|
* @param {*} [options] Override http request option.
|
|
20769
21797
|
* @throws {RequiredError}
|
|
20770
|
-
* @memberof ManagersApi
|
|
20771
21798
|
*/
|
|
20772
|
-
|
|
21799
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: any): AxiosPromise<PlanHospitalModel>;
|
|
20773
21800
|
/**
|
|
20774
21801
|
*
|
|
20775
|
-
* @summary
|
|
20776
|
-
* @param {string}
|
|
21802
|
+
* @summary Update plan hospital.
|
|
21803
|
+
* @param {string} planId
|
|
21804
|
+
* @param {string} hospitalId
|
|
21805
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
20777
21806
|
* @param {*} [options] Override http request option.
|
|
20778
21807
|
* @throws {RequiredError}
|
|
20779
|
-
* @memberof ManagersApi
|
|
20780
21808
|
*/
|
|
20781
|
-
|
|
21809
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: any): AxiosPromise<PlanHospitalModel>;
|
|
20782
21810
|
/**
|
|
20783
21811
|
*
|
|
20784
|
-
* @summary
|
|
20785
|
-
* @param {string}
|
|
21812
|
+
* @summary Create plan hospital.
|
|
21813
|
+
* @param {string} planId
|
|
21814
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
20786
21815
|
* @param {*} [options] Override http request option.
|
|
20787
21816
|
* @throws {RequiredError}
|
|
20788
|
-
* @memberof ManagersApi
|
|
20789
21817
|
*/
|
|
20790
|
-
|
|
21818
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: any): AxiosPromise<PlanHospitalModel>;
|
|
20791
21819
|
/**
|
|
20792
21820
|
*
|
|
20793
|
-
* @summary Update
|
|
20794
|
-
* @param {string}
|
|
20795
|
-
* @param {
|
|
21821
|
+
* @summary Update plan.
|
|
21822
|
+
* @param {string} planId
|
|
21823
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
20796
21824
|
* @param {*} [options] Override http request option.
|
|
20797
21825
|
* @throws {RequiredError}
|
|
20798
|
-
* @memberof ManagersApi
|
|
20799
21826
|
*/
|
|
20800
|
-
|
|
21827
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
|
|
20801
21828
|
/**
|
|
20802
21829
|
*
|
|
20803
|
-
* @summary Create a
|
|
20804
|
-
* @param {
|
|
21830
|
+
* @summary Create a plan.
|
|
21831
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
20805
21832
|
* @param {*} [options] Override http request option.
|
|
20806
21833
|
* @throws {RequiredError}
|
|
20807
|
-
* @memberof ManagersApi
|
|
20808
21834
|
*/
|
|
20809
|
-
|
|
20810
|
-
}
|
|
21835
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
|
|
21836
|
+
};
|
|
20811
21837
|
/**
|
|
20812
|
-
*
|
|
21838
|
+
* PlansApi - object-oriented interface
|
|
20813
21839
|
* @export
|
|
21840
|
+
* @class PlansApi
|
|
21841
|
+
* @extends {BaseAPI}
|
|
20814
21842
|
*/
|
|
20815
|
-
export declare
|
|
21843
|
+
export declare class PlansApi extends BaseAPI {
|
|
20816
21844
|
/**
|
|
20817
21845
|
*
|
|
20818
|
-
* @summary
|
|
20819
|
-
* @param {
|
|
21846
|
+
* @summary Get all plans.
|
|
21847
|
+
* @param {string} [id]
|
|
21848
|
+
* @param {string} [name]
|
|
21849
|
+
* @param {number} [page]
|
|
21850
|
+
* @param {number} [limit]
|
|
21851
|
+
* @param {Date} [lastRetrieved]
|
|
20820
21852
|
* @param {*} [options] Override http request option.
|
|
20821
21853
|
* @throws {RequiredError}
|
|
21854
|
+
* @memberof PlansApi
|
|
20822
21855
|
*/
|
|
20823
|
-
|
|
21856
|
+
apiV1PlansGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlansModel>>;
|
|
20824
21857
|
/**
|
|
20825
21858
|
*
|
|
20826
|
-
* @summary
|
|
20827
|
-
* @param {
|
|
20828
|
-
* @param {boolean} [unreadCountOnly]
|
|
20829
|
-
* @param {number} [page]
|
|
20830
|
-
* @param {number} [limit]
|
|
20831
|
-
* @param {Date} [lastRetrieved]
|
|
21859
|
+
* @summary Delete plan.
|
|
21860
|
+
* @param {string} planId
|
|
20832
21861
|
* @param {*} [options] Override http request option.
|
|
20833
21862
|
* @throws {RequiredError}
|
|
21863
|
+
* @memberof PlansApi
|
|
20834
21864
|
*/
|
|
20835
|
-
|
|
20836
|
-
};
|
|
20837
|
-
/**
|
|
20838
|
-
* NotificationsApi - functional programming interface
|
|
20839
|
-
* @export
|
|
20840
|
-
*/
|
|
20841
|
-
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
21865
|
+
apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20842
21866
|
/**
|
|
20843
21867
|
*
|
|
20844
|
-
* @summary
|
|
20845
|
-
* @param {
|
|
21868
|
+
* @summary Get plan.
|
|
21869
|
+
* @param {string} planId
|
|
20846
21870
|
* @param {*} [options] Override http request option.
|
|
20847
21871
|
* @throws {RequiredError}
|
|
21872
|
+
* @memberof PlansApi
|
|
20848
21873
|
*/
|
|
20849
|
-
|
|
21874
|
+
apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
20850
21875
|
/**
|
|
20851
21876
|
*
|
|
20852
|
-
* @summary Get all
|
|
20853
|
-
* @param {
|
|
20854
|
-
* @param {boolean} [unreadCountOnly]
|
|
21877
|
+
* @summary Get all plan hospital.
|
|
21878
|
+
* @param {string} planId
|
|
20855
21879
|
* @param {number} [page]
|
|
20856
21880
|
* @param {number} [limit]
|
|
20857
21881
|
* @param {Date} [lastRetrieved]
|
|
20858
21882
|
* @param {*} [options] Override http request option.
|
|
20859
21883
|
* @throws {RequiredError}
|
|
21884
|
+
* @memberof PlansApi
|
|
20860
21885
|
*/
|
|
20861
|
-
|
|
20862
|
-
};
|
|
20863
|
-
/**
|
|
20864
|
-
* NotificationsApi - factory interface
|
|
20865
|
-
* @export
|
|
20866
|
-
*/
|
|
20867
|
-
export declare const NotificationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21886
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalsModel>>;
|
|
20868
21887
|
/**
|
|
20869
21888
|
*
|
|
20870
|
-
* @summary
|
|
20871
|
-
* @param {
|
|
21889
|
+
* @summary Delete plan hospital.
|
|
21890
|
+
* @param {string} planId
|
|
21891
|
+
* @param {string} hospitalId
|
|
20872
21892
|
* @param {*} [options] Override http request option.
|
|
20873
21893
|
* @throws {RequiredError}
|
|
21894
|
+
* @memberof PlansApi
|
|
20874
21895
|
*/
|
|
20875
|
-
|
|
21896
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20876
21897
|
/**
|
|
20877
21898
|
*
|
|
20878
|
-
* @summary Get
|
|
20879
|
-
* @param {
|
|
20880
|
-
* @param {
|
|
20881
|
-
* @param {number} [page]
|
|
20882
|
-
* @param {number} [limit]
|
|
20883
|
-
* @param {Date} [lastRetrieved]
|
|
21899
|
+
* @summary Get plan hospital.
|
|
21900
|
+
* @param {string} planId
|
|
21901
|
+
* @param {string} hospitalId
|
|
20884
21902
|
* @param {*} [options] Override http request option.
|
|
20885
21903
|
* @throws {RequiredError}
|
|
21904
|
+
* @memberof PlansApi
|
|
20886
21905
|
*/
|
|
20887
|
-
|
|
20888
|
-
};
|
|
20889
|
-
/**
|
|
20890
|
-
* NotificationsApi - object-oriented interface
|
|
20891
|
-
* @export
|
|
20892
|
-
* @class NotificationsApi
|
|
20893
|
-
* @extends {BaseAPI}
|
|
20894
|
-
*/
|
|
20895
|
-
export declare class NotificationsApi extends BaseAPI {
|
|
21906
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
20896
21907
|
/**
|
|
20897
21908
|
*
|
|
20898
|
-
* @summary
|
|
20899
|
-
* @param {
|
|
21909
|
+
* @summary Update plan hospital.
|
|
21910
|
+
* @param {string} planId
|
|
21911
|
+
* @param {string} hospitalId
|
|
21912
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
20900
21913
|
* @param {*} [options] Override http request option.
|
|
20901
21914
|
* @throws {RequiredError}
|
|
20902
|
-
* @memberof
|
|
21915
|
+
* @memberof PlansApi
|
|
20903
21916
|
*/
|
|
20904
|
-
|
|
21917
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
20905
21918
|
/**
|
|
20906
21919
|
*
|
|
20907
|
-
* @summary
|
|
20908
|
-
* @param {
|
|
20909
|
-
* @param {
|
|
20910
|
-
* @param {number} [page]
|
|
20911
|
-
* @param {number} [limit]
|
|
20912
|
-
* @param {Date} [lastRetrieved]
|
|
21920
|
+
* @summary Create plan hospital.
|
|
21921
|
+
* @param {string} planId
|
|
21922
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
20913
21923
|
* @param {*} [options] Override http request option.
|
|
20914
21924
|
* @throws {RequiredError}
|
|
20915
|
-
* @memberof
|
|
21925
|
+
* @memberof PlansApi
|
|
20916
21926
|
*/
|
|
20917
|
-
|
|
21927
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
21928
|
+
/**
|
|
21929
|
+
*
|
|
21930
|
+
* @summary Update plan.
|
|
21931
|
+
* @param {string} planId
|
|
21932
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
21933
|
+
* @param {*} [options] Override http request option.
|
|
21934
|
+
* @throws {RequiredError}
|
|
21935
|
+
* @memberof PlansApi
|
|
21936
|
+
*/
|
|
21937
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
21938
|
+
/**
|
|
21939
|
+
*
|
|
21940
|
+
* @summary Create a plan.
|
|
21941
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
21942
|
+
* @param {*} [options] Override http request option.
|
|
21943
|
+
* @throws {RequiredError}
|
|
21944
|
+
* @memberof PlansApi
|
|
21945
|
+
*/
|
|
21946
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
20918
21947
|
}
|
|
20919
21948
|
/**
|
|
20920
21949
|
* ProfilesApi - axios parameter creator
|
|
@@ -21244,7 +22273,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
21244
22273
|
*/
|
|
21245
22274
|
export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21246
22275
|
/**
|
|
21247
|
-
*
|
|
22276
|
+
*
|
|
21248
22277
|
* @summary Get all ServiceCategories.
|
|
21249
22278
|
* @param {string} [id]
|
|
21250
22279
|
* @param {string} [name]
|
|
@@ -21265,7 +22294,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
21265
22294
|
*/
|
|
21266
22295
|
apiV1ServicescategoriesPost: (createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21267
22296
|
/**
|
|
21268
|
-
*
|
|
22297
|
+
*
|
|
21269
22298
|
* @summary Delete ServiceCategory.
|
|
21270
22299
|
* @param {string} serviceCategoryId
|
|
21271
22300
|
* @param {*} [options] Override http request option.
|
|
@@ -21273,7 +22302,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
21273
22302
|
*/
|
|
21274
22303
|
apiV1ServicescategoriesServiceCategoryIdDelete: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21275
22304
|
/**
|
|
21276
|
-
*
|
|
22305
|
+
*
|
|
21277
22306
|
* @summary Get ServiceCategory.
|
|
21278
22307
|
* @param {string} serviceCategoryId
|
|
21279
22308
|
* @param {string} [languageCode]
|
|
@@ -21282,7 +22311,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
21282
22311
|
*/
|
|
21283
22312
|
apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21284
22313
|
/**
|
|
21285
|
-
*
|
|
22314
|
+
*
|
|
21286
22315
|
* @summary Update ServiceCategory
|
|
21287
22316
|
* @param {string} serviceCategoryId
|
|
21288
22317
|
* @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
|
|
@@ -21297,7 +22326,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
21297
22326
|
*/
|
|
21298
22327
|
export declare const ServicesCategoriesApiFp: (configuration?: Configuration | undefined) => {
|
|
21299
22328
|
/**
|
|
21300
|
-
*
|
|
22329
|
+
*
|
|
21301
22330
|
* @summary Get all ServiceCategories.
|
|
21302
22331
|
* @param {string} [id]
|
|
21303
22332
|
* @param {string} [name]
|
|
@@ -21318,7 +22347,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
21318
22347
|
*/
|
|
21319
22348
|
apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
21320
22349
|
/**
|
|
21321
|
-
*
|
|
22350
|
+
*
|
|
21322
22351
|
* @summary Delete ServiceCategory.
|
|
21323
22352
|
* @param {string} serviceCategoryId
|
|
21324
22353
|
* @param {*} [options] Override http request option.
|
|
@@ -21326,7 +22355,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
21326
22355
|
*/
|
|
21327
22356
|
apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21328
22357
|
/**
|
|
21329
|
-
*
|
|
22358
|
+
*
|
|
21330
22359
|
* @summary Get ServiceCategory.
|
|
21331
22360
|
* @param {string} serviceCategoryId
|
|
21332
22361
|
* @param {string} [languageCode]
|
|
@@ -21335,14 +22364,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
21335
22364
|
*/
|
|
21336
22365
|
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
21337
22366
|
/**
|
|
21338
|
-
*
|
|
22367
|
+
*
|
|
21339
22368
|
* @summary Update ServiceCategory
|
|
21340
22369
|
* @param {string} serviceCategoryId
|
|
21341
22370
|
* @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
|
|
21342
22371
|
* @param {*} [options] Override http request option.
|
|
21343
22372
|
* @throws {RequiredError}
|
|
21344
22373
|
*/
|
|
21345
|
-
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
22374
|
+
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
21346
22375
|
};
|
|
21347
22376
|
/**
|
|
21348
22377
|
* ServicesCategoriesApi - factory interface
|
|
@@ -21350,7 +22379,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
21350
22379
|
*/
|
|
21351
22380
|
export declare const ServicesCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21352
22381
|
/**
|
|
21353
|
-
*
|
|
22382
|
+
*
|
|
21354
22383
|
* @summary Get all ServiceCategories.
|
|
21355
22384
|
* @param {string} [id]
|
|
21356
22385
|
* @param {string} [name]
|
|
@@ -21371,7 +22400,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
21371
22400
|
*/
|
|
21372
22401
|
apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
21373
22402
|
/**
|
|
21374
|
-
*
|
|
22403
|
+
*
|
|
21375
22404
|
* @summary Delete ServiceCategory.
|
|
21376
22405
|
* @param {string} serviceCategoryId
|
|
21377
22406
|
* @param {*} [options] Override http request option.
|
|
@@ -21379,7 +22408,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
21379
22408
|
*/
|
|
21380
22409
|
apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: any): AxiosPromise<boolean>;
|
|
21381
22410
|
/**
|
|
21382
|
-
*
|
|
22411
|
+
*
|
|
21383
22412
|
* @summary Get ServiceCategory.
|
|
21384
22413
|
* @param {string} serviceCategoryId
|
|
21385
22414
|
* @param {string} [languageCode]
|
|
@@ -21388,14 +22417,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
21388
22417
|
*/
|
|
21389
22418
|
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
21390
22419
|
/**
|
|
21391
|
-
*
|
|
22420
|
+
*
|
|
21392
22421
|
* @summary Update ServiceCategory
|
|
21393
22422
|
* @param {string} serviceCategoryId
|
|
21394
22423
|
* @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
|
|
21395
22424
|
* @param {*} [options] Override http request option.
|
|
21396
22425
|
* @throws {RequiredError}
|
|
21397
22426
|
*/
|
|
21398
|
-
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<
|
|
22427
|
+
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
21399
22428
|
};
|
|
21400
22429
|
/**
|
|
21401
22430
|
* ServicesCategoriesApi - object-oriented interface
|
|
@@ -21405,7 +22434,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
21405
22434
|
*/
|
|
21406
22435
|
export declare class ServicesCategoriesApi extends BaseAPI {
|
|
21407
22436
|
/**
|
|
21408
|
-
*
|
|
22437
|
+
*
|
|
21409
22438
|
* @summary Get all ServiceCategories.
|
|
21410
22439
|
* @param {string} [id]
|
|
21411
22440
|
* @param {string} [name]
|
|
@@ -21428,7 +22457,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
21428
22457
|
*/
|
|
21429
22458
|
apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
21430
22459
|
/**
|
|
21431
|
-
*
|
|
22460
|
+
*
|
|
21432
22461
|
* @summary Delete ServiceCategory.
|
|
21433
22462
|
* @param {string} serviceCategoryId
|
|
21434
22463
|
* @param {*} [options] Override http request option.
|
|
@@ -21437,7 +22466,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
21437
22466
|
*/
|
|
21438
22467
|
apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21439
22468
|
/**
|
|
21440
|
-
*
|
|
22469
|
+
*
|
|
21441
22470
|
* @summary Get ServiceCategory.
|
|
21442
22471
|
* @param {string} serviceCategoryId
|
|
21443
22472
|
* @param {string} [languageCode]
|
|
@@ -21447,7 +22476,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
21447
22476
|
*/
|
|
21448
22477
|
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
21449
22478
|
/**
|
|
21450
|
-
*
|
|
22479
|
+
*
|
|
21451
22480
|
* @summary Update ServiceCategory
|
|
21452
22481
|
* @param {string} serviceCategoryId
|
|
21453
22482
|
* @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
|
|
@@ -21455,7 +22484,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
21455
22484
|
* @throws {RequiredError}
|
|
21456
22485
|
* @memberof ServicesCategoriesApi
|
|
21457
22486
|
*/
|
|
21458
|
-
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22487
|
+
apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
21459
22488
|
}
|
|
21460
22489
|
/**
|
|
21461
22490
|
* SpecialtiesApi - axios parameter creator
|