ch-admin-api-client-typescript 2.2.16 → 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 CHANGED
@@ -3681,6 +3681,18 @@ export interface CreateDoctorCertificateCommand {
3681
3681
  * @interface CreateDoctorCommand
3682
3682
  */
3683
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;
3684
3696
  /**
3685
3697
  *
3686
3698
  * @type {string}
@@ -3723,36 +3735,6 @@ export interface CreateDoctorCommand {
3723
3735
  * @memberof CreateDoctorCommand
3724
3736
  */
3725
3737
  'dateOfBirth'?: Date | null;
3726
- /**
3727
- *
3728
- * @type {Array<MediaModel>}
3729
- * @memberof CreateDoctorCommand
3730
- */
3731
- 'medias'?: Array<MediaModel> | null;
3732
- /**
3733
- *
3734
- * @type {Array<UserLanguageModel>}
3735
- * @memberof CreateDoctorCommand
3736
- */
3737
- 'languages'?: Array<UserLanguageModel> | null;
3738
- /**
3739
- *
3740
- * @type {Array<UserLocationModel>}
3741
- * @memberof CreateDoctorCommand
3742
- */
3743
- 'locations'?: Array<UserLocationModel> | null;
3744
- /**
3745
- *
3746
- * @type {string}
3747
- * @memberof CreateDoctorCommand
3748
- */
3749
- 'userName'?: string | null;
3750
- /**
3751
- *
3752
- * @type {string}
3753
- * @memberof CreateDoctorCommand
3754
- */
3755
- 'email'?: string | null;
3756
3738
  /**
3757
3739
  *
3758
3740
  * @type {string}
@@ -3771,36 +3753,6 @@ export interface CreateDoctorCommand {
3771
3753
  * @memberof CreateDoctorCommand
3772
3754
  */
3773
3755
  'consultationFee'?: number | null;
3774
- /**
3775
- *
3776
- * @type {Array<DoctorEducationModel>}
3777
- * @memberof CreateDoctorCommand
3778
- */
3779
- 'educations'?: Array<DoctorEducationModel> | null;
3780
- /**
3781
- *
3782
- * @type {Array<DoctorPortfolioModel>}
3783
- * @memberof CreateDoctorCommand
3784
- */
3785
- 'portfolios'?: Array<DoctorPortfolioModel> | null;
3786
- /**
3787
- *
3788
- * @type {Array<DoctorSpecialtyModel>}
3789
- * @memberof CreateDoctorCommand
3790
- */
3791
- 'specialties'?: Array<DoctorSpecialtyModel> | null;
3792
- /**
3793
- *
3794
- * @type {Array<DoctorCertificateModel>}
3795
- * @memberof CreateDoctorCommand
3796
- */
3797
- 'certificates'?: Array<DoctorCertificateModel> | null;
3798
- /**
3799
- *
3800
- * @type {Array<AwardModel>}
3801
- * @memberof CreateDoctorCommand
3802
- */
3803
- 'awards'?: Array<AwardModel> | null;
3804
3756
  }
3805
3757
  /**
3806
3758
  *
@@ -3955,13 +3907,13 @@ export interface CreateHospitalCommand {
3955
3907
  * @type {number}
3956
3908
  * @memberof CreateHospitalCommand
3957
3909
  */
3958
- 'departmentsCount'?: number | null;
3910
+ 'medicalStaffCount'?: number | null;
3959
3911
  /**
3960
3912
  *
3961
3913
  * @type {number}
3962
3914
  * @memberof CreateHospitalCommand
3963
3915
  */
3964
- 'medicalStaffCount'?: number | null;
3916
+ 'doctorCount'?: number | null;
3965
3917
  /**
3966
3918
  *
3967
3919
  * @type {string}
@@ -4363,10 +4315,10 @@ export interface CreateServiceCategoryCommand {
4363
4315
  'description'?: string | null;
4364
4316
  /**
4365
4317
  *
4366
- * @type {Array<string>}
4318
+ * @type {number}
4367
4319
  * @memberof CreateServiceCategoryCommand
4368
4320
  */
4369
- 'services'?: Array<string> | null;
4321
+ 'order'?: number;
4370
4322
  }
4371
4323
  /**
4372
4324
  *
@@ -9315,6 +9267,74 @@ export interface MediasModel {
9315
9267
  */
9316
9268
  'metaData'?: PagedListMetaData;
9317
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
+ }
9318
9338
  /**
9319
9339
  *
9320
9340
  * @export
@@ -9419,6 +9439,135 @@ export interface MembershipInvitation {
9419
9439
  */
9420
9440
  'email'?: string | null;
9421
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
+ }
9422
9571
  /**
9423
9572
  *
9424
9573
  * @export
@@ -11442,6 +11591,31 @@ export interface SpecialtyTypesModel {
11442
11591
  */
11443
11592
  'metaData'?: PagedListMetaData;
11444
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
+ }
11445
11619
  /**
11446
11620
  *
11447
11621
  * @export
@@ -11899,6 +12073,12 @@ export interface UpdateDealCommand {
11899
12073
  * @memberof UpdateDealCommand
11900
12074
  */
11901
12075
  'name'?: string | null;
12076
+ /**
12077
+ *
12078
+ * @type {string}
12079
+ * @memberof UpdateDealCommand
12080
+ */
12081
+ 'slug'?: string | null;
11902
12082
  /**
11903
12083
  *
11904
12084
  * @type {string}
@@ -12213,12 +12393,6 @@ export interface UpdateDoctorSpecialtyCommand {
12213
12393
  * @interface UpdateHospitalCommand
12214
12394
  */
12215
12395
  export interface UpdateHospitalCommand {
12216
- /**
12217
- *
12218
- * @type {string}
12219
- * @memberof UpdateHospitalCommand
12220
- */
12221
- 'id'?: string;
12222
12396
  /**
12223
12397
  *
12224
12398
  * @type {string}
@@ -12284,7 +12458,7 @@ export interface UpdateHospitalCommand {
12284
12458
  * @type {string}
12285
12459
  * @memberof UpdateHospitalCommand
12286
12460
  */
12287
- 'countryName'?: string | null;
12461
+ 'countryId'?: string;
12288
12462
  /**
12289
12463
  *
12290
12464
  * @type {MarketingType}
@@ -12309,108 +12483,12 @@ export interface UpdateHospitalCommand {
12309
12483
  * @memberof UpdateHospitalCommand
12310
12484
  */
12311
12485
  'timeZone'?: string | null;
12312
- /**
12313
- *
12314
- * @type {number}
12315
- * @memberof UpdateHospitalCommand
12316
- */
12317
- 'articlesCount'?: number;
12318
- /**
12319
- *
12320
- * @type {number}
12321
- * @memberof UpdateHospitalCommand
12322
- */
12323
- 'packagesCount'?: number;
12324
- /**
12325
- *
12326
- * @type {number}
12327
- * @memberof UpdateHospitalCommand
12328
- */
12329
- 'equipmentsCount'?: number;
12330
- /**
12331
- *
12332
- * @type {number}
12333
- * @memberof UpdateHospitalCommand
12334
- */
12335
- 'reviewsCount'?: number;
12336
- /**
12337
- *
12338
- * @type {number}
12339
- * @memberof UpdateHospitalCommand
12340
- */
12341
- 'departmentsCount'?: number;
12342
- /**
12343
- *
12344
- * @type {number}
12345
- * @memberof UpdateHospitalCommand
12346
- */
12347
- 'specialtiesCount'?: number;
12348
- /**
12349
- *
12350
- * @type {number}
12351
- * @memberof UpdateHospitalCommand
12352
- */
12353
- 'accreditationsCount'?: number;
12354
- /**
12355
- *
12356
- * @type {number}
12357
- * @memberof UpdateHospitalCommand
12358
- */
12359
- 'doctorAffiliationsCount'?: number;
12360
- /**
12361
- *
12362
- * @type {number}
12363
- * @memberof UpdateHospitalCommand
12364
- */
12365
- 'managerAffiliationsCount'?: number;
12366
- /**
12367
- *
12368
- * @type {string}
12369
- * @memberof UpdateHospitalCommand
12370
- */
12371
- 'specialtiesSummerized'?: string | null;
12372
- /**
12373
- *
12374
- * @type {Array<AwardModel>}
12375
- * @memberof UpdateHospitalCommand
12376
- */
12377
- 'awards'?: Array<AwardModel> | null;
12378
- /**
12379
- *
12380
- * @type {Array<MediaModel>}
12381
- * @memberof UpdateHospitalCommand
12382
- */
12383
- 'medias'?: Array<MediaModel> | null;
12384
- /**
12385
- *
12386
- * @type {Array<AccreditationModel>}
12387
- * @memberof UpdateHospitalCommand
12388
- */
12389
- 'accreditations'?: Array<AccreditationModel> | null;
12390
- /**
12391
- *
12392
- * @type {Array<HospitalEvaluationModel>}
12393
- * @memberof UpdateHospitalCommand
12394
- */
12395
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
12396
12486
  /**
12397
12487
  *
12398
12488
  * @type {LocationModel}
12399
12489
  * @memberof UpdateHospitalCommand
12400
12490
  */
12401
12491
  'location'?: LocationModel;
12402
- /**
12403
- *
12404
- * @type {AuditableEntity}
12405
- * @memberof UpdateHospitalCommand
12406
- */
12407
- 'auditableEntity'?: AuditableEntity;
12408
- /**
12409
- *
12410
- * @type {boolean}
12411
- * @memberof UpdateHospitalCommand
12412
- */
12413
- 'confirmed'?: boolean;
12414
12492
  }
12415
12493
  /**
12416
12494
  *
@@ -12695,24 +12773,12 @@ export interface UpdatePlanHospitalCommand {
12695
12773
  * @interface UpdateServiceCategoryCommand
12696
12774
  */
12697
12775
  export interface UpdateServiceCategoryCommand {
12698
- /**
12699
- *
12700
- * @type {string}
12701
- * @memberof UpdateServiceCategoryCommand
12702
- */
12703
- 'id'?: string;
12704
12776
  /**
12705
12777
  *
12706
12778
  * @type {string}
12707
12779
  * @memberof UpdateServiceCategoryCommand
12708
12780
  */
12709
12781
  'name'?: string | null;
12710
- /**
12711
- *
12712
- * @type {string}
12713
- * @memberof UpdateServiceCategoryCommand
12714
- */
12715
- 'normalizedName'?: string | null;
12716
12782
  /**
12717
12783
  *
12718
12784
  * @type {string}
@@ -12724,25 +12790,7 @@ export interface UpdateServiceCategoryCommand {
12724
12790
  * @type {number}
12725
12791
  * @memberof UpdateServiceCategoryCommand
12726
12792
  */
12727
- 'order'?: number | null;
12728
- /**
12729
- *
12730
- * @type {number}
12731
- * @memberof UpdateServiceCategoryCommand
12732
- */
12733
- 'serviceCount'?: number;
12734
- /**
12735
- *
12736
- * @type {Array<HospitalServiceItemModel>}
12737
- * @memberof UpdateServiceCategoryCommand
12738
- */
12739
- 'services'?: Array<HospitalServiceItemModel> | null;
12740
- /**
12741
- *
12742
- * @type {Array<string>}
12743
- * @memberof UpdateServiceCategoryCommand
12744
- */
12745
- 'selectedServices'?: Array<string> | null;
12793
+ 'order'?: number;
12746
12794
  }
12747
12795
  /**
12748
12796
  *
@@ -16853,7 +16901,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16853
16901
  * @param {*} [options] Override http request option.
16854
16902
  * @throws {RequiredError}
16855
16903
  */
16856
- 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>>;
16857
16905
  /**
16858
16906
  *
16859
16907
  * @summary Create DealPackage.
@@ -16871,7 +16919,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16871
16919
  * @param {*} [options] Override http request option.
16872
16920
  * @throws {RequiredError}
16873
16921
  */
16874
- 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>>;
16875
16923
  /**
16876
16924
  *
16877
16925
  * @summary Get all DealService.
@@ -16919,7 +16967,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
16919
16967
  * @param {*} [options] Override http request option.
16920
16968
  * @throws {RequiredError}
16921
16969
  */
16922
- 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>>;
16923
16971
  /**
16924
16972
  *
16925
16973
  * @summary Get all deals.
@@ -17023,7 +17071,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17023
17071
  * @param {*} [options] Override http request option.
17024
17072
  * @throws {RequiredError}
17025
17073
  */
17026
- 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>;
17027
17075
  /**
17028
17076
  *
17029
17077
  * @summary Create DealPackage.
@@ -17041,7 +17089,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17041
17089
  * @param {*} [options] Override http request option.
17042
17090
  * @throws {RequiredError}
17043
17091
  */
17044
- apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<boolean>;
17092
+ apiV1DealsDealIdPut(dealId: string, updateDealCommand?: UpdateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
17045
17093
  /**
17046
17094
  *
17047
17095
  * @summary Get all DealService.
@@ -17089,7 +17137,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17089
17137
  * @param {*} [options] Override http request option.
17090
17138
  * @throws {RequiredError}
17091
17139
  */
17092
- 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>;
17093
17141
  /**
17094
17142
  *
17095
17143
  * @summary Get all deals.
@@ -17201,7 +17249,7 @@ export declare class DealsApi extends BaseAPI {
17201
17249
  * @throws {RequiredError}
17202
17250
  * @memberof DealsApi
17203
17251
  */
17204
- 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>>;
17205
17253
  /**
17206
17254
  *
17207
17255
  * @summary Create DealPackage.
@@ -17221,7 +17269,7 @@ export declare class DealsApi extends BaseAPI {
17221
17269
  * @throws {RequiredError}
17222
17270
  * @memberof DealsApi
17223
17271
  */
17224
- 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>>;
17225
17273
  /**
17226
17274
  *
17227
17275
  * @summary Get all DealService.
@@ -17274,7 +17322,7 @@ export declare class DealsApi extends BaseAPI {
17274
17322
  * @throws {RequiredError}
17275
17323
  * @memberof DealsApi
17276
17324
  */
17277
- 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>>;
17278
17326
  /**
17279
17327
  *
17280
17328
  * @summary Get all deals.
@@ -17922,7 +17970,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
17922
17970
  * @param {*} [options] Override http request option.
17923
17971
  * @throws {RequiredError}
17924
17972
  */
17925
- 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>>;
17926
17974
  /**
17927
17975
  *
17928
17976
  * @summary Get All DoctorSpecialties.
@@ -18273,7 +18321,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
18273
18321
  * @param {*} [options] Override http request option.
18274
18322
  * @throws {RequiredError}
18275
18323
  */
18276
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
18324
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
18277
18325
  /**
18278
18326
  *
18279
18327
  * @summary Get All DoctorSpecialties.
@@ -18651,7 +18699,7 @@ export declare class DoctorsApi extends BaseAPI {
18651
18699
  * @throws {RequiredError}
18652
18700
  * @memberof DoctorsApi
18653
18701
  */
18654
- 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>>;
18655
18703
  /**
18656
18704
  *
18657
18705
  * @summary Get All DoctorSpecialties.
@@ -21212,6 +21260,175 @@ export declare class ManagersApi extends BaseAPI {
21212
21260
  */
21213
21261
  apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
21214
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
+ }
21215
21432
  /**
21216
21433
  * NotificationsApi - axios parameter creator
21217
21434
  * @export
@@ -21490,7 +21707,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
21490
21707
  * @param {*} [options] Override http request option.
21491
21708
  * @throws {RequiredError}
21492
21709
  */
21493
- 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>>;
21494
21711
  /**
21495
21712
  *
21496
21713
  * @summary Create plan hospital.
@@ -21508,7 +21725,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
21508
21725
  * @param {*} [options] Override http request option.
21509
21726
  * @throws {RequiredError}
21510
21727
  */
21511
- 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>>;
21512
21729
  /**
21513
21730
  *
21514
21731
  * @summary Create a plan.
@@ -21589,7 +21806,7 @@ export declare const PlansApiFactory: (configuration?: Configuration | undefined
21589
21806
  * @param {*} [options] Override http request option.
21590
21807
  * @throws {RequiredError}
21591
21808
  */
21592
- 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>;
21593
21810
  /**
21594
21811
  *
21595
21812
  * @summary Create plan hospital.
@@ -21607,7 +21824,7 @@ export declare const PlansApiFactory: (configuration?: Configuration | undefined
21607
21824
  * @param {*} [options] Override http request option.
21608
21825
  * @throws {RequiredError}
21609
21826
  */
21610
- apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<boolean>;
21827
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
21611
21828
  /**
21612
21829
  *
21613
21830
  * @summary Create a plan.
@@ -21697,7 +21914,7 @@ export declare class PlansApi extends BaseAPI {
21697
21914
  * @throws {RequiredError}
21698
21915
  * @memberof PlansApi
21699
21916
  */
21700
- 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>>;
21701
21918
  /**
21702
21919
  *
21703
21920
  * @summary Create plan hospital.
@@ -21717,7 +21934,7 @@ export declare class PlansApi extends BaseAPI {
21717
21934
  * @throws {RequiredError}
21718
21935
  * @memberof PlansApi
21719
21936
  */
21720
- 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>>;
21721
21938
  /**
21722
21939
  *
21723
21940
  * @summary Create a plan.
@@ -22056,7 +22273,7 @@ export declare class ServicesApi extends BaseAPI {
22056
22273
  */
22057
22274
  export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
22058
22275
  /**
22059
- * Sample request: GET /api/v1/ServiceCategories
22276
+ *
22060
22277
  * @summary Get all ServiceCategories.
22061
22278
  * @param {string} [id]
22062
22279
  * @param {string} [name]
@@ -22077,7 +22294,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22077
22294
  */
22078
22295
  apiV1ServicescategoriesPost: (createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22079
22296
  /**
22080
- * Sample request: DELETE /api/v1/ServiceCategories/1
22297
+ *
22081
22298
  * @summary Delete ServiceCategory.
22082
22299
  * @param {string} serviceCategoryId
22083
22300
  * @param {*} [options] Override http request option.
@@ -22085,7 +22302,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22085
22302
  */
22086
22303
  apiV1ServicescategoriesServiceCategoryIdDelete: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22087
22304
  /**
22088
- * Sample request: GET /api/v1/ServiceCategories/1
22305
+ *
22089
22306
  * @summary Get ServiceCategory.
22090
22307
  * @param {string} serviceCategoryId
22091
22308
  * @param {string} [languageCode]
@@ -22094,7 +22311,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22094
22311
  */
22095
22312
  apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22096
22313
  /**
22097
- * 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
+ *
22098
22315
  * @summary Update ServiceCategory
22099
22316
  * @param {string} serviceCategoryId
22100
22317
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
@@ -22109,7 +22326,7 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22109
22326
  */
22110
22327
  export declare const ServicesCategoriesApiFp: (configuration?: Configuration | undefined) => {
22111
22328
  /**
22112
- * Sample request: GET /api/v1/ServiceCategories
22329
+ *
22113
22330
  * @summary Get all ServiceCategories.
22114
22331
  * @param {string} [id]
22115
22332
  * @param {string} [name]
@@ -22130,7 +22347,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22130
22347
  */
22131
22348
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22132
22349
  /**
22133
- * Sample request: DELETE /api/v1/ServiceCategories/1
22350
+ *
22134
22351
  * @summary Delete ServiceCategory.
22135
22352
  * @param {string} serviceCategoryId
22136
22353
  * @param {*} [options] Override http request option.
@@ -22138,7 +22355,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22138
22355
  */
22139
22356
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
22140
22357
  /**
22141
- * Sample request: GET /api/v1/ServiceCategories/1
22358
+ *
22142
22359
  * @summary Get ServiceCategory.
22143
22360
  * @param {string} serviceCategoryId
22144
22361
  * @param {string} [languageCode]
@@ -22147,14 +22364,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22147
22364
  */
22148
22365
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22149
22366
  /**
22150
- * 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
+ *
22151
22368
  * @summary Update ServiceCategory
22152
22369
  * @param {string} serviceCategoryId
22153
22370
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
22154
22371
  * @param {*} [options] Override http request option.
22155
22372
  * @throws {RequiredError}
22156
22373
  */
22157
- 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>>;
22158
22375
  };
22159
22376
  /**
22160
22377
  * ServicesCategoriesApi - factory interface
@@ -22162,7 +22379,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22162
22379
  */
22163
22380
  export declare const ServicesCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
22164
22381
  /**
22165
- * Sample request: GET /api/v1/ServiceCategories
22382
+ *
22166
22383
  * @summary Get all ServiceCategories.
22167
22384
  * @param {string} [id]
22168
22385
  * @param {string} [name]
@@ -22183,7 +22400,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22183
22400
  */
22184
22401
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22185
22402
  /**
22186
- * Sample request: DELETE /api/v1/ServiceCategories/1
22403
+ *
22187
22404
  * @summary Delete ServiceCategory.
22188
22405
  * @param {string} serviceCategoryId
22189
22406
  * @param {*} [options] Override http request option.
@@ -22191,7 +22408,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22191
22408
  */
22192
22409
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: any): AxiosPromise<boolean>;
22193
22410
  /**
22194
- * Sample request: GET /api/v1/ServiceCategories/1
22411
+ *
22195
22412
  * @summary Get ServiceCategory.
22196
22413
  * @param {string} serviceCategoryId
22197
22414
  * @param {string} [languageCode]
@@ -22200,14 +22417,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22200
22417
  */
22201
22418
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22202
22419
  /**
22203
- * 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
+ *
22204
22421
  * @summary Update ServiceCategory
22205
22422
  * @param {string} serviceCategoryId
22206
22423
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
22207
22424
  * @param {*} [options] Override http request option.
22208
22425
  * @throws {RequiredError}
22209
22426
  */
22210
- apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<void>;
22427
+ apiV1ServicescategoriesServiceCategoryIdPut(serviceCategoryId: string, updateServiceCategoryCommand?: UpdateServiceCategoryCommand | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22211
22428
  };
22212
22429
  /**
22213
22430
  * ServicesCategoriesApi - object-oriented interface
@@ -22217,7 +22434,7 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22217
22434
  */
22218
22435
  export declare class ServicesCategoriesApi extends BaseAPI {
22219
22436
  /**
22220
- * Sample request: GET /api/v1/ServiceCategories
22437
+ *
22221
22438
  * @summary Get all ServiceCategories.
22222
22439
  * @param {string} [id]
22223
22440
  * @param {string} [name]
@@ -22240,7 +22457,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22240
22457
  */
22241
22458
  apiV1ServicescategoriesPost(createServiceCategoryCommand?: CreateServiceCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22242
22459
  /**
22243
- * Sample request: DELETE /api/v1/ServiceCategories/1
22460
+ *
22244
22461
  * @summary Delete ServiceCategory.
22245
22462
  * @param {string} serviceCategoryId
22246
22463
  * @param {*} [options] Override http request option.
@@ -22249,7 +22466,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22249
22466
  */
22250
22467
  apiV1ServicescategoriesServiceCategoryIdDelete(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
22251
22468
  /**
22252
- * Sample request: GET /api/v1/ServiceCategories/1
22469
+ *
22253
22470
  * @summary Get ServiceCategory.
22254
22471
  * @param {string} serviceCategoryId
22255
22472
  * @param {string} [languageCode]
@@ -22259,7 +22476,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22259
22476
  */
22260
22477
  apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22261
22478
  /**
22262
- * 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
+ *
22263
22480
  * @summary Update ServiceCategory
22264
22481
  * @param {string} serviceCategoryId
22265
22482
  * @param {UpdateServiceCategoryCommand} [updateServiceCategoryCommand]
@@ -22267,7 +22484,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22267
22484
  * @throws {RequiredError}
22268
22485
  * @memberof ServicesCategoriesApi
22269
22486
  */
22270
- 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>>;
22271
22488
  }
22272
22489
  /**
22273
22490
  * SpecialtiesApi - axios parameter creator