ch-admin-api-client-typescript 2.2.12 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -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
- 'departmentsCount'?: number | null;
3910
+ 'medicalStaffCount'?: number | null;
3896
3911
  /**
3897
3912
  *
3898
3913
  * @type {number}
3899
3914
  * @memberof CreateHospitalCommand
3900
3915
  */
3901
- 'medicalStaffCount'?: number | null;
3916
+ 'doctorCount'?: number | null;
3902
3917
  /**
3903
3918
  *
3904
3919
  * @type {string}
@@ -4300,10 +4315,10 @@ export interface CreateServiceCategoryCommand {
4300
4315
  'description'?: string | null;
4301
4316
  /**
4302
4317
  *
4303
- * @type {Array<string>}
4318
+ * @type {number}
4304
4319
  * @memberof CreateServiceCategoryCommand
4305
4320
  */
4306
- 'services'?: Array<string> | null;
4321
+ 'order'?: number;
4307
4322
  }
4308
4323
  /**
4309
4324
  *
@@ -5095,6 +5110,19 @@ export interface DealsModel {
5095
5110
  */
5096
5111
  'metaData'?: PagedListMetaData;
5097
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
+ }
5098
5126
  /**
5099
5127
  *
5100
5128
  * @export
@@ -9239,6 +9267,74 @@ export interface MediasModel {
9239
9267
  */
9240
9268
  'metaData'?: PagedListMetaData;
9241
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
+ }
9242
9338
  /**
9243
9339
  *
9244
9340
  * @export
@@ -9343,6 +9439,135 @@ export interface MembershipInvitation {
9343
9439
  */
9344
9440
  'email'?: string | null;
9345
9441
  }
9442
+ /**
9443
+ *
9444
+ * @export
9445
+ * @interface MembershipItemModel
9446
+ */
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
+ }
9346
9571
  /**
9347
9572
  *
9348
9573
  * @export
@@ -11366,6 +11591,31 @@ export interface SpecialtyTypesModel {
11366
11591
  */
11367
11592
  'metaData'?: PagedListMetaData;
11368
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
+ }
11369
11619
  /**
11370
11620
  *
11371
11621
  * @export
@@ -11823,6 +12073,12 @@ export interface UpdateDealCommand {
11823
12073
  * @memberof UpdateDealCommand
11824
12074
  */
11825
12075
  'name'?: string | null;
12076
+ /**
12077
+ *
12078
+ * @type {string}
12079
+ * @memberof UpdateDealCommand
12080
+ */
12081
+ 'slug'?: string | null;
11826
12082
  /**
11827
12083
  *
11828
12084
  * @type {string}
@@ -12137,12 +12393,6 @@ export interface UpdateDoctorSpecialtyCommand {
12137
12393
  * @interface UpdateHospitalCommand
12138
12394
  */
12139
12395
  export interface UpdateHospitalCommand {
12140
- /**
12141
- *
12142
- * @type {string}
12143
- * @memberof UpdateHospitalCommand
12144
- */
12145
- 'id'?: string;
12146
12396
  /**
12147
12397
  *
12148
12398
  * @type {string}
@@ -12160,181 +12410,85 @@ export interface UpdateHospitalCommand {
12160
12410
  * @type {string}
12161
12411
  * @memberof UpdateHospitalCommand
12162
12412
  */
12163
- 'description'?: string | null;
12164
- /**
12165
- *
12166
- * @type {string}
12167
- * @memberof UpdateHospitalCommand
12168
- */
12169
- 'logo'?: string | null;
12170
- /**
12171
- *
12172
- * @type {string}
12173
- * @memberof UpdateHospitalCommand
12174
- */
12175
- 'overview'?: string | null;
12176
- /**
12177
- *
12178
- * @type {number}
12179
- * @memberof UpdateHospitalCommand
12180
- */
12181
- 'bedsCount'?: number | null;
12182
- /**
12183
- *
12184
- * @type {number}
12185
- * @memberof UpdateHospitalCommand
12186
- */
12187
- 'operationsPerYear'?: number | null;
12188
- /**
12189
- *
12190
- * @type {number}
12191
- * @memberof UpdateHospitalCommand
12192
- */
12193
- 'foundationYear'?: number | null;
12194
- /**
12195
- *
12196
- * @type {number}
12197
- * @memberof UpdateHospitalCommand
12198
- */
12199
- 'medicalStaffCount'?: number | null;
12200
- /**
12201
- *
12202
- * @type {number}
12203
- * @memberof UpdateHospitalCommand
12204
- */
12205
- 'doctorCount'?: number | null;
12206
- /**
12207
- *
12208
- * @type {string}
12209
- * @memberof UpdateHospitalCommand
12210
- */
12211
- 'countryName'?: string | null;
12212
- /**
12213
- *
12214
- * @type {MarketingType}
12215
- * @memberof UpdateHospitalCommand
12216
- */
12217
- 'marketingType'?: MarketingType;
12218
- /**
12219
- *
12220
- * @type {boolean}
12221
- * @memberof UpdateHospitalCommand
12222
- */
12223
- 'consultationEnabled'?: boolean | null;
12224
- /**
12225
- *
12226
- * @type {number}
12227
- * @memberof UpdateHospitalCommand
12228
- */
12229
- 'consultationFee'?: number | null;
12230
- /**
12231
- *
12232
- * @type {string}
12233
- * @memberof UpdateHospitalCommand
12234
- */
12235
- 'timeZone'?: string | null;
12236
- /**
12237
- *
12238
- * @type {number}
12239
- * @memberof UpdateHospitalCommand
12240
- */
12241
- 'articlesCount'?: number;
12242
- /**
12243
- *
12244
- * @type {number}
12245
- * @memberof UpdateHospitalCommand
12246
- */
12247
- 'packagesCount'?: number;
12413
+ 'description'?: string | null;
12248
12414
  /**
12249
12415
  *
12250
- * @type {number}
12416
+ * @type {string}
12251
12417
  * @memberof UpdateHospitalCommand
12252
12418
  */
12253
- 'equipmentsCount'?: number;
12419
+ 'logo'?: string | null;
12254
12420
  /**
12255
12421
  *
12256
- * @type {number}
12422
+ * @type {string}
12257
12423
  * @memberof UpdateHospitalCommand
12258
12424
  */
12259
- 'reviewsCount'?: number;
12425
+ 'overview'?: string | null;
12260
12426
  /**
12261
12427
  *
12262
12428
  * @type {number}
12263
12429
  * @memberof UpdateHospitalCommand
12264
12430
  */
12265
- 'departmentsCount'?: number;
12431
+ 'bedsCount'?: number | null;
12266
12432
  /**
12267
12433
  *
12268
12434
  * @type {number}
12269
12435
  * @memberof UpdateHospitalCommand
12270
12436
  */
12271
- 'specialtiesCount'?: number;
12437
+ 'operationsPerYear'?: number | null;
12272
12438
  /**
12273
12439
  *
12274
12440
  * @type {number}
12275
12441
  * @memberof UpdateHospitalCommand
12276
12442
  */
12277
- 'accreditationsCount'?: number;
12443
+ 'foundationYear'?: number | null;
12278
12444
  /**
12279
12445
  *
12280
12446
  * @type {number}
12281
12447
  * @memberof UpdateHospitalCommand
12282
12448
  */
12283
- 'doctorAffiliationsCount'?: number;
12449
+ 'medicalStaffCount'?: number | null;
12284
12450
  /**
12285
12451
  *
12286
12452
  * @type {number}
12287
12453
  * @memberof UpdateHospitalCommand
12288
12454
  */
12289
- 'managerAffiliationsCount'?: number;
12455
+ 'doctorCount'?: number | null;
12290
12456
  /**
12291
12457
  *
12292
12458
  * @type {string}
12293
12459
  * @memberof UpdateHospitalCommand
12294
12460
  */
12295
- 'specialtiesSummerized'?: string | null;
12461
+ 'countryId'?: string;
12296
12462
  /**
12297
12463
  *
12298
- * @type {Array<AwardModel>}
12464
+ * @type {MarketingType}
12299
12465
  * @memberof UpdateHospitalCommand
12300
12466
  */
12301
- 'awards'?: Array<AwardModel> | null;
12467
+ 'marketingType'?: MarketingType;
12302
12468
  /**
12303
12469
  *
12304
- * @type {Array<MediaModel>}
12470
+ * @type {boolean}
12305
12471
  * @memberof UpdateHospitalCommand
12306
12472
  */
12307
- 'medias'?: Array<MediaModel> | null;
12473
+ 'consultationEnabled'?: boolean | null;
12308
12474
  /**
12309
12475
  *
12310
- * @type {Array<AccreditationModel>}
12476
+ * @type {number}
12311
12477
  * @memberof UpdateHospitalCommand
12312
12478
  */
12313
- 'accreditations'?: Array<AccreditationModel> | null;
12479
+ 'consultationFee'?: number | null;
12314
12480
  /**
12315
12481
  *
12316
- * @type {Array<HospitalEvaluationModel>}
12482
+ * @type {string}
12317
12483
  * @memberof UpdateHospitalCommand
12318
12484
  */
12319
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
12485
+ 'timeZone'?: string | null;
12320
12486
  /**
12321
12487
  *
12322
12488
  * @type {LocationModel}
12323
12489
  * @memberof UpdateHospitalCommand
12324
12490
  */
12325
12491
  'location'?: LocationModel;
12326
- /**
12327
- *
12328
- * @type {AuditableEntity}
12329
- * @memberof UpdateHospitalCommand
12330
- */
12331
- 'auditableEntity'?: AuditableEntity;
12332
- /**
12333
- *
12334
- * @type {boolean}
12335
- * @memberof UpdateHospitalCommand
12336
- */
12337
- 'confirmed'?: boolean;
12338
12492
  }
12339
12493
  /**
12340
12494
  *
@@ -12619,24 +12773,12 @@ export interface UpdatePlanHospitalCommand {
12619
12773
  * @interface UpdateServiceCategoryCommand
12620
12774
  */
12621
12775
  export interface UpdateServiceCategoryCommand {
12622
- /**
12623
- *
12624
- * @type {string}
12625
- * @memberof UpdateServiceCategoryCommand
12626
- */
12627
- 'id'?: string;
12628
12776
  /**
12629
12777
  *
12630
12778
  * @type {string}
12631
12779
  * @memberof UpdateServiceCategoryCommand
12632
12780
  */
12633
12781
  'name'?: string | null;
12634
- /**
12635
- *
12636
- * @type {string}
12637
- * @memberof UpdateServiceCategoryCommand
12638
- */
12639
- 'normalizedName'?: string | null;
12640
12782
  /**
12641
12783
  *
12642
12784
  * @type {string}
@@ -12648,25 +12790,7 @@ export interface UpdateServiceCategoryCommand {
12648
12790
  * @type {number}
12649
12791
  * @memberof UpdateServiceCategoryCommand
12650
12792
  */
12651
- 'order'?: number | null;
12652
- /**
12653
- *
12654
- * @type {number}
12655
- * @memberof UpdateServiceCategoryCommand
12656
- */
12657
- 'serviceCount'?: number;
12658
- /**
12659
- *
12660
- * @type {Array<HospitalServiceItemModel>}
12661
- * @memberof UpdateServiceCategoryCommand
12662
- */
12663
- 'services'?: Array<HospitalServiceItemModel> | null;
12664
- /**
12665
- *
12666
- * @type {Array<string>}
12667
- * @memberof UpdateServiceCategoryCommand
12668
- */
12669
- 'selectedServices'?: Array<string> | null;
12793
+ 'order'?: number;
12670
12794
  }
12671
12795
  /**
12672
12796
  *
@@ -13831,50 +13955,44 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
13831
13955
  apiV1ArticlesArticleIdSourcesSourceIdPut: (articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13832
13956
  /**
13833
13957
  *
13834
- * @summary GetAll ArticleContributors.
13958
+ * @summary GetAll ArticleTags.
13835
13959
  * @param {string} articleId
13836
- * @param {string} [articleName]
13837
- * @param {string} [contributorId]
13838
- * @param {string} [contributorName]
13839
- * @param {string} [email]
13840
- * @param {string} [description]
13841
- * @param {string} [website]
13842
- * @param {ContributionType} [contributionType]
13960
+ * @param {string} [tagId]
13843
13961
  * @param {number} [page]
13844
13962
  * @param {number} [limit]
13845
13963
  * @param {Date} [lastRetrieved]
13846
13964
  * @param {*} [options] Override http request option.
13847
13965
  * @throws {RequiredError}
13848
13966
  */
13849
- apiV1ArticlesArticleIdTagsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13967
+ apiV1ArticlesArticleIdTagsGet: (articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13850
13968
  /**
13851
13969
  *
13970
+ * @summary Create ArticleTag.
13852
13971
  * @param {string} articleId
13853
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
13972
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
13854
13973
  * @param {*} [options] Override http request option.
13855
13974
  * @throws {RequiredError}
13856
13975
  */
13857
- apiV1ArticlesArticleIdTagsPost: (articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13976
+ apiV1ArticlesArticleIdTagsPost: (articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13858
13977
  /**
13859
13978
  *
13860
- * @summary Delete ArticleContributor.
13979
+ * @summary Delete ArticleTag.
13861
13980
  * @param {string} articleId
13862
- * @param {string} contributorId
13863
13981
  * @param {string} tagId
13982
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
13864
13983
  * @param {*} [options] Override http request option.
13865
13984
  * @throws {RequiredError}
13866
13985
  */
13867
- apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13986
+ apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13868
13987
  /**
13869
13988
  *
13870
- * @summary Get ArticleContributor.
13989
+ * @summary Get ArticleTag.
13871
13990
  * @param {string} articleId
13872
- * @param {string} contributorId
13873
13991
  * @param {string} tagId
13874
13992
  * @param {*} [options] Override http request option.
13875
13993
  * @throws {RequiredError}
13876
13994
  */
13877
- apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13995
+ apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13878
13996
  /**
13879
13997
  *
13880
13998
  * @summary Get all Articles.
@@ -14104,50 +14222,44 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14104
14222
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14105
14223
  /**
14106
14224
  *
14107
- * @summary GetAll ArticleContributors.
14225
+ * @summary GetAll ArticleTags.
14108
14226
  * @param {string} articleId
14109
- * @param {string} [articleName]
14110
- * @param {string} [contributorId]
14111
- * @param {string} [contributorName]
14112
- * @param {string} [email]
14113
- * @param {string} [description]
14114
- * @param {string} [website]
14115
- * @param {ContributionType} [contributionType]
14227
+ * @param {string} [tagId]
14116
14228
  * @param {number} [page]
14117
14229
  * @param {number} [limit]
14118
14230
  * @param {Date} [lastRetrieved]
14119
14231
  * @param {*} [options] Override http request option.
14120
14232
  * @throws {RequiredError}
14121
14233
  */
14122
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
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>>;
14123
14235
  /**
14124
14236
  *
14237
+ * @summary Create ArticleTag.
14125
14238
  * @param {string} articleId
14126
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14239
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
14127
14240
  * @param {*} [options] Override http request option.
14128
14241
  * @throws {RequiredError}
14129
14242
  */
14130
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
14243
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
14131
14244
  /**
14132
14245
  *
14133
- * @summary Delete ArticleContributor.
14246
+ * @summary Delete ArticleTag.
14134
14247
  * @param {string} articleId
14135
- * @param {string} contributorId
14136
14248
  * @param {string} tagId
14249
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
14137
14250
  * @param {*} [options] Override http request option.
14138
14251
  * @throws {RequiredError}
14139
14252
  */
14140
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14253
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14141
14254
  /**
14142
14255
  *
14143
- * @summary Get ArticleContributor.
14256
+ * @summary Get ArticleTag.
14144
14257
  * @param {string} articleId
14145
- * @param {string} contributorId
14146
14258
  * @param {string} tagId
14147
14259
  * @param {*} [options] Override http request option.
14148
14260
  * @throws {RequiredError}
14149
14261
  */
14150
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
14262
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
14151
14263
  /**
14152
14264
  *
14153
14265
  * @summary Get all Articles.
@@ -14377,50 +14489,44 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14377
14489
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: any): AxiosPromise<boolean>;
14378
14490
  /**
14379
14491
  *
14380
- * @summary GetAll ArticleContributors.
14492
+ * @summary GetAll ArticleTags.
14381
14493
  * @param {string} articleId
14382
- * @param {string} [articleName]
14383
- * @param {string} [contributorId]
14384
- * @param {string} [contributorName]
14385
- * @param {string} [email]
14386
- * @param {string} [description]
14387
- * @param {string} [website]
14388
- * @param {ContributionType} [contributionType]
14494
+ * @param {string} [tagId]
14389
14495
  * @param {number} [page]
14390
14496
  * @param {number} [limit]
14391
14497
  * @param {Date} [lastRetrieved]
14392
14498
  * @param {*} [options] Override http request option.
14393
14499
  * @throws {RequiredError}
14394
14500
  */
14395
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
14501
+ apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleTagsModel>;
14396
14502
  /**
14397
14503
  *
14504
+ * @summary Create ArticleTag.
14398
14505
  * @param {string} articleId
14399
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14506
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
14400
14507
  * @param {*} [options] Override http request option.
14401
14508
  * @throws {RequiredError}
14402
14509
  */
14403
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: any): AxiosPromise<ArticleContributorModel>;
14510
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: any): AxiosPromise<ArticleTagModel>;
14404
14511
  /**
14405
14512
  *
14406
- * @summary Delete ArticleContributor.
14513
+ * @summary Delete ArticleTag.
14407
14514
  * @param {string} articleId
14408
- * @param {string} contributorId
14409
14515
  * @param {string} tagId
14516
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
14410
14517
  * @param {*} [options] Override http request option.
14411
14518
  * @throws {RequiredError}
14412
14519
  */
14413
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: any): AxiosPromise<boolean>;
14520
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: any): AxiosPromise<boolean>;
14414
14521
  /**
14415
14522
  *
14416
- * @summary Get ArticleContributor.
14523
+ * @summary Get ArticleTag.
14417
14524
  * @param {string} articleId
14418
- * @param {string} contributorId
14419
14525
  * @param {string} tagId
14420
14526
  * @param {*} [options] Override http request option.
14421
14527
  * @throws {RequiredError}
14422
14528
  */
14423
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: any): AxiosPromise<ArticleContributorModel>;
14529
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: any): AxiosPromise<ArticleTagModel>;
14424
14530
  /**
14425
14531
  *
14426
14532
  * @summary Get all Articles.
@@ -14670,15 +14776,9 @@ export declare class ArticlesApi extends BaseAPI {
14670
14776
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
14671
14777
  /**
14672
14778
  *
14673
- * @summary GetAll ArticleContributors.
14779
+ * @summary GetAll ArticleTags.
14674
14780
  * @param {string} articleId
14675
- * @param {string} [articleName]
14676
- * @param {string} [contributorId]
14677
- * @param {string} [contributorName]
14678
- * @param {string} [email]
14679
- * @param {string} [description]
14680
- * @param {string} [website]
14681
- * @param {ContributionType} [contributionType]
14781
+ * @param {string} [tagId]
14682
14782
  * @param {number} [page]
14683
14783
  * @param {number} [limit]
14684
14784
  * @param {Date} [lastRetrieved]
@@ -14686,38 +14786,38 @@ export declare class ArticlesApi extends BaseAPI {
14686
14786
  * @throws {RequiredError}
14687
14787
  * @memberof ArticlesApi
14688
14788
  */
14689
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
14789
+ apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagsModel>>;
14690
14790
  /**
14691
14791
  *
14792
+ * @summary Create ArticleTag.
14692
14793
  * @param {string} articleId
14693
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14794
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
14694
14795
  * @param {*} [options] Override http request option.
14695
14796
  * @throws {RequiredError}
14696
14797
  * @memberof ArticlesApi
14697
14798
  */
14698
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel>>;
14799
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
14699
14800
  /**
14700
14801
  *
14701
- * @summary Delete ArticleContributor.
14802
+ * @summary Delete ArticleTag.
14702
14803
  * @param {string} articleId
14703
- * @param {string} contributorId
14704
14804
  * @param {string} tagId
14805
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
14705
14806
  * @param {*} [options] Override http request option.
14706
14807
  * @throws {RequiredError}
14707
14808
  * @memberof ArticlesApi
14708
14809
  */
14709
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
14810
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
14710
14811
  /**
14711
14812
  *
14712
- * @summary Get ArticleContributor.
14813
+ * @summary Get ArticleTag.
14713
14814
  * @param {string} articleId
14714
- * @param {string} contributorId
14715
14815
  * @param {string} tagId
14716
14816
  * @param {*} [options] Override http request option.
14717
14817
  * @throws {RequiredError}
14718
14818
  * @memberof ArticlesApi
14719
14819
  */
14720
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel>>;
14820
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
14721
14821
  /**
14722
14822
  *
14723
14823
  * @summary Get all Articles.
@@ -16801,7 +16901,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16801
16901
  * @param {*} [options] Override http request option.
16802
16902
  * @throws {RequiredError}
16803
16903
  */
16804
- apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16904
+ apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
16805
16905
  /**
16806
16906
  *
16807
16907
  * @summary Create DealPackage.
@@ -16819,7 +16919,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16819
16919
  * @param {*} [options] Override http request option.
16820
16920
  * @throws {RequiredError}
16821
16921
  */
16822
- apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16922
+ apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
16823
16923
  /**
16824
16924
  *
16825
16925
  * @summary Get all DealService.
@@ -16867,7 +16967,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16867
16967
  * @param {*} [options] Override http request option.
16868
16968
  * @throws {RequiredError}
16869
16969
  */
16870
- apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16970
+ apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServiceModel>>;
16871
16971
  /**
16872
16972
  *
16873
16973
  * @summary Get all deals.
@@ -16971,7 +17071,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
16971
17071
  * @param {*} [options] Override http request option.
16972
17072
  * @throws {RequiredError}
16973
17073
  */
16974
- apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: any): AxiosPromise<boolean>;
17074
+ apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand | undefined, options?: any): AxiosPromise<DealPackageModel>;
16975
17075
  /**
16976
17076
  *
16977
17077
  * @summary Create DealPackage.
@@ -16989,7 +17089,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
16989
17089
  * @param {*} [options] Override http request option.
16990
17090
  * @throws {RequiredError}
16991
17091
  */
16992
- apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<boolean>;
17092
+ apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
16993
17093
  /**
16994
17094
  *
16995
17095
  * @summary Get all DealService.
@@ -17037,7 +17137,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17037
17137
  * @param {*} [options] Override http request option.
17038
17138
  * @throws {RequiredError}
17039
17139
  */
17040
- apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
17140
+ apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand | undefined, options?: any): AxiosPromise<DealServiceModel>;
17041
17141
  /**
17042
17142
  *
17043
17143
  * @summary Get all deals.
@@ -17149,7 +17249,7 @@ export declare class DealsApi extends BaseAPI {
17149
17249
  * @throws {RequiredError}
17150
17250
  * @memberof DealsApi
17151
17251
  */
17152
- apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17252
+ apiV1DealsDealIdPackagesPackageIdPut(dealId: string, packageId: string, updateDealPackageCommand?: UpdateDealPackageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
17153
17253
  /**
17154
17254
  *
17155
17255
  * @summary Create DealPackage.
@@ -17169,7 +17269,7 @@ export declare class DealsApi extends BaseAPI {
17169
17269
  * @throws {RequiredError}
17170
17270
  * @memberof DealsApi
17171
17271
  */
17172
- apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17272
+ apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
17173
17273
  /**
17174
17274
  *
17175
17275
  * @summary Get all DealService.
@@ -17222,7 +17322,7 @@ export declare class DealsApi extends BaseAPI {
17222
17322
  * @throws {RequiredError}
17223
17323
  * @memberof DealsApi
17224
17324
  */
17225
- apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17325
+ apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
17226
17326
  /**
17227
17327
  *
17228
17328
  * @summary Get all deals.
@@ -17870,7 +17970,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
17870
17970
  * @param {*} [options] Override http request option.
17871
17971
  * @throws {RequiredError}
17872
17972
  */
17873
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17973
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
17874
17974
  /**
17875
17975
  *
17876
17976
  * @summary Get All DoctorSpecialties.
@@ -18221,7 +18321,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
18221
18321
  * @param {*} [options] Override http request option.
18222
18322
  * @throws {RequiredError}
18223
18323
  */
18224
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
18324
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
18225
18325
  /**
18226
18326
  *
18227
18327
  * @summary Get All DoctorSpecialties.
@@ -18599,7 +18699,7 @@ export declare class DoctorsApi extends BaseAPI {
18599
18699
  * @throws {RequiredError}
18600
18700
  * @memberof DoctorsApi
18601
18701
  */
18602
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18702
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
18603
18703
  /**
18604
18704
  *
18605
18705
  * @summary Get All DoctorSpecialties.
@@ -21160,6 +21260,175 @@ export declare class ManagersApi extends BaseAPI {
21160
21260
  */
21161
21261
  apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
21162
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
+ }
21163
21432
  /**
21164
21433
  * NotificationsApi - axios parameter creator
21165
21434
  * @export
@@ -21438,7 +21707,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
21438
21707
  * @param {*} [options] Override http request option.
21439
21708
  * @throws {RequiredError}
21440
21709
  */
21441
- apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21710
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
21442
21711
  /**
21443
21712
  *
21444
21713
  * @summary Create plan hospital.
@@ -21456,7 +21725,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
21456
21725
  * @param {*} [options] Override http request option.
21457
21726
  * @throws {RequiredError}
21458
21727
  */
21459
- apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21728
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
21460
21729
  /**
21461
21730
  *
21462
21731
  * @summary Create a plan.
@@ -21537,7 +21806,7 @@ export declare const PlansApiFactory: (configuration?: Configuration | undefined
21537
21806
  * @param {*} [options] Override http request option.
21538
21807
  * @throws {RequiredError}
21539
21808
  */
21540
- apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
21809
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: any): AxiosPromise<PlanHospitalModel>;
21541
21810
  /**
21542
21811
  *
21543
21812
  * @summary Create plan hospital.
@@ -21555,7 +21824,7 @@ export declare const PlansApiFactory: (configuration?: Configuration | undefined
21555
21824
  * @param {*} [options] Override http request option.
21556
21825
  * @throws {RequiredError}
21557
21826
  */
21558
- apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<boolean>;
21827
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
21559
21828
  /**
21560
21829
  *
21561
21830
  * @summary Create a plan.
@@ -21645,7 +21914,7 @@ export declare class PlansApi extends BaseAPI {
21645
21914
  * @throws {RequiredError}
21646
21915
  * @memberof PlansApi
21647
21916
  */
21648
- apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21917
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
21649
21918
  /**
21650
21919
  *
21651
21920
  * @summary Create plan hospital.
@@ -21665,7 +21934,7 @@ export declare class PlansApi extends BaseAPI {
21665
21934
  * @throws {RequiredError}
21666
21935
  * @memberof PlansApi
21667
21936
  */
21668
- apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21937
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
21669
21938
  /**
21670
21939
  *
21671
21940
  * @summary Create a plan.
@@ -22004,7 +22273,7 @@ export declare class ServicesApi extends BaseAPI {
22004
22273
  */
22005
22274
  export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
22006
22275
  /**
22007
- * Sample request: GET /api/v1/ServiceCategories
22276
+ *
22008
22277
  * @summary Get all ServiceCategories.
22009
22278
  * @param {string} [id]
22010
22279
  * @param {string} [name]
@@ -22025,7 +22294,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22025
22294
  */
22026
22295
  apiV1ServicescategoriesPost: (createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22027
22296
  /**
22028
- * Sample request: DELETE /api/v1/ServiceCategories/1
22297
+ *
22029
22298
  * @summary Delete ServiceCategory.
22030
22299
  * @param {string} serviceCategoryId
22031
22300
  * @param {*} [options] Override http request option.
@@ -22033,7 +22302,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22033
22302
  */
22034
22303
  apiV1ServicescategoriesServiceCategoryIdDelete: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22035
22304
  /**
22036
- * Sample request: GET /api/v1/ServiceCategories/1
22305
+ *
22037
22306
  * @summary Get ServiceCategory.
22038
22307
  * @param {string} serviceCategoryId
22039
22308
  * @param {string} [languageCode]
@@ -22042,7 +22311,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22042
22311
  */
22043
22312
  apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22044
22313
  /**
22045
- * Sample request: PUT /api/v1/ServiceCategories/1 { \"name\": \"Adults\", \"description\": \"There are so many “-ologists“ that they can be hard to keep straight. However, this list could be a handy reference. This is not meant to be an exhaustive and all-inclusive list of what a specialist does, but it should provide you with a basic overview.\" }
22314
+ *
22046
22315
  * @summary Update ServiceCategory
22047
22316
  * @param {string} serviceCategoryId
22048
22317
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
@@ -22057,7 +22326,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22057
22326
  */
22058
22327
  export declare const ServicesCategoriesApiFp: (configuration?: Configuration | undefined) => {
22059
22328
  /**
22060
- * Sample request: GET /api/v1/ServiceCategories
22329
+ *
22061
22330
  * @summary Get all ServiceCategories.
22062
22331
  * @param {string} [id]
22063
22332
  * @param {string} [name]
@@ -22078,7 +22347,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22078
22347
  */
22079
22348
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22080
22349
  /**
22081
- * Sample request: DELETE /api/v1/ServiceCategories/1
22350
+ *
22082
22351
  * @summary Delete ServiceCategory.
22083
22352
  * @param {string} serviceCategoryId
22084
22353
  * @param {*} [options] Override http request option.
@@ -22086,7 +22355,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22086
22355
  */
22087
22356
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22088
22357
  /**
22089
- * Sample request: GET /api/v1/ServiceCategories/1
22358
+ *
22090
22359
  * @summary Get ServiceCategory.
22091
22360
  * @param {string} serviceCategoryId
22092
22361
  * @param {string} [languageCode]
@@ -22095,14 +22364,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22095
22364
  */
22096
22365
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22097
22366
  /**
22098
- * Sample request: PUT /api/v1/ServiceCategories/1 { \"name\": \"Adults\", \"description\": \"There are so many “-ologists“ that they can be hard to keep straight. However, this list could be a handy reference. This is not meant to be an exhaustive and all-inclusive list of what a specialist does, but it should provide you with a basic overview.\" }
22367
+ *
22099
22368
  * @summary Update ServiceCategory
22100
22369
  * @param {string} serviceCategoryId
22101
22370
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
22102
22371
  * @param {*} [options] Override http request option.
22103
22372
  * @throws {RequiredError}
22104
22373
  */
22105
- apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
22374
+ apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22106
22375
  };
22107
22376
  /**
22108
22377
  * ServicesCategoriesApi - factory interface
@@ -22110,7 +22379,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22110
22379
  */
22111
22380
  export declare const ServicesCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
22112
22381
  /**
22113
- * Sample request: GET /api/v1/ServiceCategories
22382
+ *
22114
22383
  * @summary Get all ServiceCategories.
22115
22384
  * @param {string} [id]
22116
22385
  * @param {string} [name]
@@ -22131,7 +22400,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22131
22400
  */
22132
22401
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22133
22402
  /**
22134
- * Sample request: DELETE /api/v1/ServiceCategories/1
22403
+ *
22135
22404
  * @summary Delete ServiceCategory.
22136
22405
  * @param {string} serviceCategoryId
22137
22406
  * @param {*} [options] Override http request option.
@@ -22139,7 +22408,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22139
22408
  */
22140
22409
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: any): AxiosPromise<boolean>;
22141
22410
  /**
22142
- * Sample request: GET /api/v1/ServiceCategories/1
22411
+ *
22143
22412
  * @summary Get ServiceCategory.
22144
22413
  * @param {string} serviceCategoryId
22145
22414
  * @param {string} [languageCode]
@@ -22148,14 +22417,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22148
22417
  */
22149
22418
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22150
22419
  /**
22151
- * Sample request: PUT /api/v1/ServiceCategories/1 { \"name\": \"Adults\", \"description\": \"There are so many “-ologists“ that they can be hard to keep straight. However, this list could be a handy reference. This is not meant to be an exhaustive and all-inclusive list of what a specialist does, but it should provide you with a basic overview.\" }
22420
+ *
22152
22421
  * @summary Update ServiceCategory
22153
22422
  * @param {string} serviceCategoryId
22154
22423
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
22155
22424
  * @param {*} [options] Override http request option.
22156
22425
  * @throws {RequiredError}
22157
22426
  */
22158
- apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<void>;
22427
+ apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22159
22428
  };
22160
22429
  /**
22161
22430
  * ServicesCategoriesApi - object-oriented interface
@@ -22165,7 +22434,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22165
22434
  */
22166
22435
  export declare class ServicesCategoriesApi extends BaseAPI {
22167
22436
  /**
22168
- * Sample request: GET /api/v1/ServiceCategories
22437
+ *
22169
22438
  * @summary Get all ServiceCategories.
22170
22439
  * @param {string} [id]
22171
22440
  * @param {string} [name]
@@ -22188,7 +22457,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22188
22457
  */
22189
22458
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22190
22459
  /**
22191
- * Sample request: DELETE /api/v1/ServiceCategories/1
22460
+ *
22192
22461
  * @summary Delete ServiceCategory.
22193
22462
  * @param {string} serviceCategoryId
22194
22463
  * @param {*} [options] Override http request option.
@@ -22197,7 +22466,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22197
22466
  */
22198
22467
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
22199
22468
  /**
22200
- * Sample request: GET /api/v1/ServiceCategories/1
22469
+ *
22201
22470
  * @summary Get ServiceCategory.
22202
22471
  * @param {string} serviceCategoryId
22203
22472
  * @param {string} [languageCode]
@@ -22207,7 +22476,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22207
22476
  */
22208
22477
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22209
22478
  /**
22210
- * Sample request: PUT /api/v1/ServiceCategories/1 { \"name\": \"Adults\", \"description\": \"There are so many “-ologists“ that they can be hard to keep straight. However, this list could be a handy reference. This is not meant to be an exhaustive and all-inclusive list of what a specialist does, but it should provide you with a basic overview.\" }
22479
+ *
22211
22480
  * @summary Update ServiceCategory
22212
22481
  * @param {string} serviceCategoryId
22213
22482
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
@@ -22215,7 +22484,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22215
22484
  * @throws {RequiredError}
22216
22485
  * @memberof ServicesCategoriesApi
22217
22486
  */
22218
- apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
22487
+ apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22219
22488
  }
22220
22489
  /**
22221
22490
  * SpecialtiesApi - axios parameter creator