ch-api-client-typescript2 2.6.7 → 2.7.0

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
@@ -2436,6 +2436,91 @@ export interface CountryModel {
2436
2436
  */
2437
2437
  'languageCode'?: string | null;
2438
2438
  }
2439
+ /**
2440
+ *
2441
+ * @export
2442
+ * @interface CreateBookingCommand
2443
+ */
2444
+ export interface CreateBookingCommand {
2445
+ /**
2446
+ *
2447
+ * @type {string}
2448
+ * @memberof CreateBookingCommand
2449
+ */
2450
+ 'hospitalId'?: string;
2451
+ /**
2452
+ *
2453
+ * @type {string}
2454
+ * @memberof CreateBookingCommand
2455
+ */
2456
+ 'dealPackageId'?: string;
2457
+ /**
2458
+ *
2459
+ * @type {number}
2460
+ * @memberof CreateBookingCommand
2461
+ */
2462
+ 'quantity'?: number;
2463
+ /**
2464
+ *
2465
+ * @type {string}
2466
+ * @memberof CreateBookingCommand
2467
+ */
2468
+ 'firstName'?: string | null;
2469
+ /**
2470
+ *
2471
+ * @type {string}
2472
+ * @memberof CreateBookingCommand
2473
+ */
2474
+ 'lastName'?: string | null;
2475
+ /**
2476
+ *
2477
+ * @type {string}
2478
+ * @memberof CreateBookingCommand
2479
+ */
2480
+ 'email'?: string | null;
2481
+ /**
2482
+ *
2483
+ * @type {string}
2484
+ * @memberof CreateBookingCommand
2485
+ */
2486
+ 'phone'?: string | null;
2487
+ /**
2488
+ *
2489
+ * @type {Date}
2490
+ * @memberof CreateBookingCommand
2491
+ */
2492
+ 'dateOfBirth'?: Date | null;
2493
+ /**
2494
+ *
2495
+ * @type {Gender}
2496
+ * @memberof CreateBookingCommand
2497
+ */
2498
+ 'gender'?: Gender;
2499
+ /**
2500
+ *
2501
+ * @type {Date}
2502
+ * @memberof CreateBookingCommand
2503
+ */
2504
+ 'approximateDateStart'?: Date;
2505
+ /**
2506
+ *
2507
+ * @type {Date}
2508
+ * @memberof CreateBookingCommand
2509
+ */
2510
+ 'approximateDateEnd'?: Date;
2511
+ /**
2512
+ *
2513
+ * @type {string}
2514
+ * @memberof CreateBookingCommand
2515
+ */
2516
+ 'comment'?: string | null;
2517
+ /**
2518
+ *
2519
+ * @type {string}
2520
+ * @memberof CreateBookingCommand
2521
+ */
2522
+ 'timeZone'?: string | null;
2523
+ }
2439
2524
  /**
2440
2525
  *
2441
2526
  * @export
@@ -2473,6 +2558,121 @@ export interface CreateChatUserCommand {
2473
2558
  */
2474
2559
  'discoveryKeys'?: Array<string> | null;
2475
2560
  }
2561
+ /**
2562
+ *
2563
+ * @export
2564
+ * @interface CreateConsultationCommand
2565
+ */
2566
+ export interface CreateConsultationCommand {
2567
+ /**
2568
+ *
2569
+ * @type {ConsultationType}
2570
+ * @memberof CreateConsultationCommand
2571
+ */
2572
+ 'consultationType'?: ConsultationType;
2573
+ /**
2574
+ *
2575
+ * @type {string}
2576
+ * @memberof CreateConsultationCommand
2577
+ */
2578
+ 'hospitalId'?: string;
2579
+ /**
2580
+ *
2581
+ * @type {string}
2582
+ * @memberof CreateConsultationCommand
2583
+ */
2584
+ 'specialtyId'?: string | null;
2585
+ /**
2586
+ *
2587
+ * @type {string}
2588
+ * @memberof CreateConsultationCommand
2589
+ */
2590
+ 'doctorId'?: string | null;
2591
+ /**
2592
+ *
2593
+ * @type {string}
2594
+ * @memberof CreateConsultationCommand
2595
+ */
2596
+ 'dealId'?: string | null;
2597
+ /**
2598
+ *
2599
+ * @type {string}
2600
+ * @memberof CreateConsultationCommand
2601
+ */
2602
+ 'language'?: string | null;
2603
+ /**
2604
+ *
2605
+ * @type {boolean}
2606
+ * @memberof CreateConsultationCommand
2607
+ */
2608
+ 'isAccountHolder'?: boolean;
2609
+ /**
2610
+ *
2611
+ * @type {string}
2612
+ * @memberof CreateConsultationCommand
2613
+ */
2614
+ 'firstName'?: string | null;
2615
+ /**
2616
+ *
2617
+ * @type {string}
2618
+ * @memberof CreateConsultationCommand
2619
+ */
2620
+ 'lastName'?: string | null;
2621
+ /**
2622
+ *
2623
+ * @type {string}
2624
+ * @memberof CreateConsultationCommand
2625
+ */
2626
+ 'email'?: string | null;
2627
+ /**
2628
+ *
2629
+ * @type {string}
2630
+ * @memberof CreateConsultationCommand
2631
+ */
2632
+ 'phone'?: string | null;
2633
+ /**
2634
+ *
2635
+ * @type {Date}
2636
+ * @memberof CreateConsultationCommand
2637
+ */
2638
+ 'dateOfBirth'?: Date | null;
2639
+ /**
2640
+ *
2641
+ * @type {Gender}
2642
+ * @memberof CreateConsultationCommand
2643
+ */
2644
+ 'gender'?: Gender;
2645
+ /**
2646
+ *
2647
+ * @type {string}
2648
+ * @memberof CreateConsultationCommand
2649
+ */
2650
+ 'comment'?: string | null;
2651
+ /**
2652
+ *
2653
+ * @type {string}
2654
+ * @memberof CreateConsultationCommand
2655
+ */
2656
+ 'timeRange'?: string | null;
2657
+ /**
2658
+ *
2659
+ * @type {Date}
2660
+ * @memberof CreateConsultationCommand
2661
+ */
2662
+ 'approximateDateStart'?: Date;
2663
+ /**
2664
+ *
2665
+ * @type {Date}
2666
+ * @memberof CreateConsultationCommand
2667
+ */
2668
+ 'approximateDateEnd'?: Date;
2669
+ /**
2670
+ *
2671
+ * @type {string}
2672
+ * @memberof CreateConsultationCommand
2673
+ */
2674
+ 'timeZone'?: string | null;
2675
+ }
2476
2676
  /**
2477
2677
  *
2478
2678
  * @export
@@ -3356,6 +3556,12 @@ export interface DoctorItemModel {
3356
3556
  * @memberof DoctorItemModel
3357
3557
  */
3358
3558
  'id'?: string;
3559
+ /**
3560
+ *
3561
+ * @type {string}
3562
+ * @memberof DoctorItemModel
3563
+ */
3564
+ 'userType'?: string | null;
3359
3565
  /**
3360
3566
  *
3361
3567
  * @type {string}
@@ -3434,12 +3640,6 @@ export interface DoctorItemModel {
3434
3640
  * @memberof DoctorItemModel
3435
3641
  */
3436
3642
  'auditableEntity'?: AuditableEntity;
3437
- /**
3438
- *
3439
- * @type {string}
3440
- * @memberof DoctorItemModel
3441
- */
3442
- 'userType'?: string | null;
3443
3643
  /**
3444
3644
  *
3445
3645
  * @type {Array<UserLanguageModel>}
@@ -3494,6 +3694,30 @@ export interface DoctorItemModel {
3494
3694
  * @memberof DoctorItemModel
3495
3695
  */
3496
3696
  'consultationFee'?: number | null;
3697
+ /**
3698
+ *
3699
+ * @type {number}
3700
+ * @memberof DoctorItemModel
3701
+ */
3702
+ 'doctorSpecialtiesCount'?: number;
3703
+ /**
3704
+ *
3705
+ * @type {Array<DoctorSpecialtyItemModel>}
3706
+ * @memberof DoctorItemModel
3707
+ */
3708
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
3709
+ /**
3710
+ *
3711
+ * @type {number}
3712
+ * @memberof DoctorItemModel
3713
+ */
3714
+ 'doctorAffiliationsCount'?: number;
3715
+ /**
3716
+ *
3717
+ * @type {Array<HospitalAffiliationModel>}
3718
+ * @memberof DoctorItemModel
3719
+ */
3720
+ 'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
3497
3721
  /**
3498
3722
  *
3499
3723
  * @type {Array<LocalizedUrlModel>}
@@ -3519,6 +3743,12 @@ export interface DoctorModel {
3519
3743
  * @memberof DoctorModel
3520
3744
  */
3521
3745
  'id'?: string;
3746
+ /**
3747
+ *
3748
+ * @type {string}
3749
+ * @memberof DoctorModel
3750
+ */
3751
+ 'userType'?: string | null;
3522
3752
  /**
3523
3753
  *
3524
3754
  * @type {string}
@@ -3597,12 +3827,6 @@ export interface DoctorModel {
3597
3827
  * @memberof DoctorModel
3598
3828
  */
3599
3829
  'auditableEntity'?: AuditableEntity;
3600
- /**
3601
- *
3602
- * @type {string}
3603
- * @memberof DoctorModel
3604
- */
3605
- 'userType'?: string | null;
3606
3830
  /**
3607
3831
  *
3608
3832
  * @type {Array<UserLanguageModel>}
@@ -3657,6 +3881,30 @@ export interface DoctorModel {
3657
3881
  * @memberof DoctorModel
3658
3882
  */
3659
3883
  'consultationFee'?: number | null;
3884
+ /**
3885
+ *
3886
+ * @type {number}
3887
+ * @memberof DoctorModel
3888
+ */
3889
+ 'doctorSpecialtiesCount'?: number;
3890
+ /**
3891
+ *
3892
+ * @type {Array<DoctorSpecialtyItemModel>}
3893
+ * @memberof DoctorModel
3894
+ */
3895
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
3896
+ /**
3897
+ *
3898
+ * @type {number}
3899
+ * @memberof DoctorModel
3900
+ */
3901
+ 'doctorAffiliationsCount'?: number;
3902
+ /**
3903
+ *
3904
+ * @type {Array<HospitalAffiliationModel>}
3905
+ * @memberof DoctorModel
3906
+ */
3907
+ 'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
3660
3908
  /**
3661
3909
  *
3662
3910
  * @type {Array<LocalizedUrlModel>}
@@ -3812,6 +4060,49 @@ export interface DoctorSpecialtiesModel {
3812
4060
  */
3813
4061
  'metaData'?: PagedListMetaData;
3814
4062
  }
4063
+ /**
4064
+ *
4065
+ * @export
4066
+ * @interface DoctorSpecialtyItemModel
4067
+ */
4068
+ export interface DoctorSpecialtyItemModel {
4069
+ /**
4070
+ *
4071
+ * @type {string}
4072
+ * @memberof DoctorSpecialtyItemModel
4073
+ */
4074
+ 'specialtyId'?: string;
4075
+ /**
4076
+ *
4077
+ * @type {string}
4078
+ * @memberof DoctorSpecialtyItemModel
4079
+ */
4080
+ 'specialtyName'?: string | null;
4081
+ /**
4082
+ *
4083
+ * @type {string}
4084
+ * @memberof DoctorSpecialtyItemModel
4085
+ */
4086
+ 'specialtySlug'?: string | null;
4087
+ /**
4088
+ *
4089
+ * @type {string}
4090
+ * @memberof DoctorSpecialtyItemModel
4091
+ */
4092
+ 'specialtyTypeId'?: string;
4093
+ /**
4094
+ *
4095
+ * @type {string}
4096
+ * @memberof DoctorSpecialtyItemModel
4097
+ */
4098
+ 'specialtyTypeName'?: string | null;
4099
+ /**
4100
+ *
4101
+ * @type {number}
4102
+ * @memberof DoctorSpecialtyItemModel
4103
+ */
4104
+ 'order'?: number;
4105
+ }
3815
4106
  /**
3816
4107
  *
3817
4108
  * @export
@@ -4316,6 +4607,55 @@ export interface HospitalAccreditationsModel {
4316
4607
  */
4317
4608
  'metaData'?: PagedListMetaData;
4318
4609
  }
4610
+ /**
4611
+ *
4612
+ * @export
4613
+ * @interface HospitalAffiliationModel
4614
+ */
4615
+ export interface HospitalAffiliationModel {
4616
+ /**
4617
+ *
4618
+ * @type {string}
4619
+ * @memberof HospitalAffiliationModel
4620
+ */
4621
+ 'hospitalId'?: string;
4622
+ /**
4623
+ *
4624
+ * @type {string}
4625
+ * @memberof HospitalAffiliationModel
4626
+ */
4627
+ 'hospitalName'?: string | null;
4628
+ /**
4629
+ *
4630
+ * @type {string}
4631
+ * @memberof HospitalAffiliationModel
4632
+ */
4633
+ 'hospitalSlug'?: string | null;
4634
+ /**
4635
+ *
4636
+ * @type {string}
4637
+ * @memberof HospitalAffiliationModel
4638
+ */
4639
+ 'countryId'?: string;
4640
+ /**
4641
+ *
4642
+ * @type {string}
4643
+ * @memberof HospitalAffiliationModel
4644
+ */
4645
+ 'countryName'?: string | null;
4646
+ /**
4647
+ *
4648
+ * @type {string}
4649
+ * @memberof HospitalAffiliationModel
4650
+ */
4651
+ 'stateName'?: string | null;
4652
+ /**
4653
+ *
4654
+ * @type {string}
4655
+ * @memberof HospitalAffiliationModel
4656
+ */
4657
+ 'cityName'?: string | null;
4658
+ }
4319
4659
  /**
4320
4660
  *
4321
4661
  * @export
@@ -6144,6 +6484,12 @@ export interface PatientModel {
6144
6484
  * @memberof PatientModel
6145
6485
  */
6146
6486
  'id'?: string;
6487
+ /**
6488
+ *
6489
+ * @type {string}
6490
+ * @memberof PatientModel
6491
+ */
6492
+ 'userType'?: string | null;
6147
6493
  /**
6148
6494
  *
6149
6495
  * @type {string}
@@ -6222,12 +6568,6 @@ export interface PatientModel {
6222
6568
  * @memberof PatientModel
6223
6569
  */
6224
6570
  'auditableEntity'?: AuditableEntity;
6225
- /**
6226
- *
6227
- * @type {string}
6228
- * @memberof PatientModel
6229
- */
6230
- 'userType'?: string | null;
6231
6571
  /**
6232
6572
  *
6233
6573
  * @type {Array<UserLanguageModel>}
@@ -7197,100 +7537,270 @@ export interface TagItemModel {
7197
7537
  * @type {string}
7198
7538
  * @memberof TagItemModel
7199
7539
  */
7200
- 'normalizedTagId'?: string | null;
7540
+ 'normalizedTagId'?: string | null;
7541
+ /**
7542
+ *
7543
+ * @type {number}
7544
+ * @memberof TagItemModel
7545
+ */
7546
+ 'articleTagsCount'?: number;
7547
+ /**
7548
+ *
7549
+ * @type {number}
7550
+ * @memberof TagItemModel
7551
+ */
7552
+ 'youtubeTagsCount'?: number;
7553
+ }
7554
+ /**
7555
+ *
7556
+ * @export
7557
+ * @interface TagModel
7558
+ */
7559
+ export interface TagModel {
7560
+ /**
7561
+ *
7562
+ * @type {string}
7563
+ * @memberof TagModel
7564
+ */
7565
+ 'tagId'?: string | null;
7566
+ /**
7567
+ *
7568
+ * @type {string}
7569
+ * @memberof TagModel
7570
+ */
7571
+ 'normalizedTagId'?: string | null;
7572
+ /**
7573
+ *
7574
+ * @type {number}
7575
+ * @memberof TagModel
7576
+ */
7577
+ 'articleTagsCount'?: number;
7578
+ /**
7579
+ *
7580
+ * @type {number}
7581
+ * @memberof TagModel
7582
+ */
7583
+ 'youtubeTagsCount'?: number;
7584
+ }
7585
+ /**
7586
+ *
7587
+ * @export
7588
+ * @interface TagsModel
7589
+ */
7590
+ export interface TagsModel {
7591
+ /**
7592
+ *
7593
+ * @type {Array<TagItemModel>}
7594
+ * @memberof TagsModel
7595
+ */
7596
+ 'items'?: Array<TagItemModel> | null;
7597
+ /**
7598
+ *
7599
+ * @type {PagedListMetaData}
7600
+ * @memberof TagsModel
7601
+ */
7602
+ 'metaData'?: PagedListMetaData;
7603
+ }
7604
+ /**
7605
+ *
7606
+ * @export
7607
+ * @interface UpdateBookingCommand
7608
+ */
7609
+ export interface UpdateBookingCommand {
7610
+ /**
7611
+ *
7612
+ * @type {number}
7613
+ * @memberof UpdateBookingCommand
7614
+ */
7615
+ 'quantity'?: number;
7616
+ /**
7617
+ *
7618
+ * @type {string}
7619
+ * @memberof UpdateBookingCommand
7620
+ */
7621
+ 'firstName'?: string | null;
7622
+ /**
7623
+ *
7624
+ * @type {string}
7625
+ * @memberof UpdateBookingCommand
7626
+ */
7627
+ 'lastName'?: string | null;
7628
+ /**
7629
+ *
7630
+ * @type {string}
7631
+ * @memberof UpdateBookingCommand
7632
+ */
7633
+ 'email'?: string | null;
7634
+ /**
7635
+ *
7636
+ * @type {string}
7637
+ * @memberof UpdateBookingCommand
7638
+ */
7639
+ 'phone'?: string | null;
7640
+ /**
7641
+ *
7642
+ * @type {Date}
7643
+ * @memberof UpdateBookingCommand
7644
+ */
7645
+ 'dateOfBirth'?: Date | null;
7646
+ /**
7647
+ *
7648
+ * @type {Gender}
7649
+ * @memberof UpdateBookingCommand
7650
+ */
7651
+ 'gender'?: Gender;
7652
+ /**
7653
+ *
7654
+ * @type {Date}
7655
+ * @memberof UpdateBookingCommand
7656
+ */
7657
+ 'approximateDateStart'?: Date;
7658
+ /**
7659
+ *
7660
+ * @type {Date}
7661
+ * @memberof UpdateBookingCommand
7662
+ */
7663
+ 'approximateDateEnd'?: Date;
7664
+ /**
7665
+ *
7666
+ * @type {string}
7667
+ * @memberof UpdateBookingCommand
7668
+ */
7669
+ 'comment'?: string | null;
7670
+ /**
7671
+ *
7672
+ * @type {string}
7673
+ * @memberof UpdateBookingCommand
7674
+ */
7675
+ 'timeZone'?: string | null;
7676
+ }
7677
+ /**
7678
+ *
7679
+ * @export
7680
+ * @interface UpdateChatUserCommand
7681
+ */
7682
+ export interface UpdateChatUserCommand {
7683
+ /**
7684
+ *
7685
+ * @type {string}
7686
+ * @memberof UpdateChatUserCommand
7687
+ */
7688
+ 'nickname'?: string | null;
7689
+ /**
7690
+ *
7691
+ * @type {string}
7692
+ * @memberof UpdateChatUserCommand
7693
+ */
7694
+ 'profileUrl'?: string | null;
7695
+ /**
7696
+ *
7697
+ * @type {boolean}
7698
+ * @memberof UpdateChatUserCommand
7699
+ */
7700
+ 'issueAccessToken'?: boolean;
7701
+ /**
7702
+ *
7703
+ * @type {Array<string>}
7704
+ * @memberof UpdateChatUserCommand
7705
+ */
7706
+ 'discoveryKeys'?: Array<string> | null;
7707
+ }
7708
+ /**
7709
+ *
7710
+ * @export
7711
+ * @interface UpdateConsultationCommand
7712
+ */
7713
+ export interface UpdateConsultationCommand {
7714
+ /**
7715
+ *
7716
+ * @type {string}
7717
+ * @memberof UpdateConsultationCommand
7718
+ */
7719
+ 'specialtyId'?: string | null;
7720
+ /**
7721
+ *
7722
+ * @type {string}
7723
+ * @memberof UpdateConsultationCommand
7724
+ */
7725
+ 'doctorId'?: string | null;
7726
+ /**
7727
+ *
7728
+ * @type {string}
7729
+ * @memberof UpdateConsultationCommand
7730
+ */
7731
+ 'language'?: string | null;
7201
7732
  /**
7202
7733
  *
7203
- * @type {number}
7204
- * @memberof TagItemModel
7734
+ * @type {boolean}
7735
+ * @memberof UpdateConsultationCommand
7205
7736
  */
7206
- 'articleTagsCount'?: number;
7737
+ 'isAccountHolder'?: boolean;
7207
7738
  /**
7208
7739
  *
7209
- * @type {number}
7210
- * @memberof TagItemModel
7740
+ * @type {string}
7741
+ * @memberof UpdateConsultationCommand
7211
7742
  */
7212
- 'youtubeTagsCount'?: number;
7213
- }
7214
- /**
7215
- *
7216
- * @export
7217
- * @interface TagModel
7218
- */
7219
- export interface TagModel {
7743
+ 'firstName'?: string | null;
7220
7744
  /**
7221
7745
  *
7222
7746
  * @type {string}
7223
- * @memberof TagModel
7747
+ * @memberof UpdateConsultationCommand
7224
7748
  */
7225
- 'tagId'?: string | null;
7749
+ 'lastName'?: string | null;
7226
7750
  /**
7227
7751
  *
7228
7752
  * @type {string}
7229
- * @memberof TagModel
7753
+ * @memberof UpdateConsultationCommand
7230
7754
  */
7231
- 'normalizedTagId'?: string | null;
7755
+ 'email'?: string | null;
7232
7756
  /**
7233
7757
  *
7234
- * @type {number}
7235
- * @memberof TagModel
7758
+ * @type {string}
7759
+ * @memberof UpdateConsultationCommand
7236
7760
  */
7237
- 'articleTagsCount'?: number;
7761
+ 'phone'?: string | null;
7238
7762
  /**
7239
7763
  *
7240
- * @type {number}
7241
- * @memberof TagModel
7764
+ * @type {Date}
7765
+ * @memberof UpdateConsultationCommand
7242
7766
  */
7243
- 'youtubeTagsCount'?: number;
7244
- }
7245
- /**
7246
- *
7247
- * @export
7248
- * @interface TagsModel
7249
- */
7250
- export interface TagsModel {
7767
+ 'dateOfBirth'?: Date | null;
7251
7768
  /**
7252
7769
  *
7253
- * @type {Array<TagItemModel>}
7254
- * @memberof TagsModel
7770
+ * @type {Gender}
7771
+ * @memberof UpdateConsultationCommand
7255
7772
  */
7256
- 'items'?: Array<TagItemModel> | null;
7773
+ 'gender'?: Gender;
7257
7774
  /**
7258
7775
  *
7259
- * @type {PagedListMetaData}
7260
- * @memberof TagsModel
7776
+ * @type {string}
7777
+ * @memberof UpdateConsultationCommand
7261
7778
  */
7262
- 'metaData'?: PagedListMetaData;
7263
- }
7264
- /**
7265
- *
7266
- * @export
7267
- * @interface UpdateChatUserCommand
7268
- */
7269
- export interface UpdateChatUserCommand {
7779
+ 'comment'?: string | null;
7270
7780
  /**
7271
7781
  *
7272
7782
  * @type {string}
7273
- * @memberof UpdateChatUserCommand
7783
+ * @memberof UpdateConsultationCommand
7274
7784
  */
7275
- 'nickname'?: string | null;
7785
+ 'timeRange'?: string | null;
7276
7786
  /**
7277
7787
  *
7278
- * @type {string}
7279
- * @memberof UpdateChatUserCommand
7788
+ * @type {Date}
7789
+ * @memberof UpdateConsultationCommand
7280
7790
  */
7281
- 'profileUrl'?: string | null;
7791
+ 'approximateDateStart'?: Date;
7282
7792
  /**
7283
7793
  *
7284
- * @type {boolean}
7285
- * @memberof UpdateChatUserCommand
7794
+ * @type {Date}
7795
+ * @memberof UpdateConsultationCommand
7286
7796
  */
7287
- 'issueAccessToken'?: boolean;
7797
+ 'approximateDateEnd'?: Date;
7288
7798
  /**
7289
7799
  *
7290
- * @type {Array<string>}
7291
- * @memberof UpdateChatUserCommand
7800
+ * @type {string}
7801
+ * @memberof UpdateConsultationCommand
7292
7802
  */
7293
- 'discoveryKeys'?: Array<string> | null;
7803
+ 'timeZone'?: string | null;
7294
7804
  }
7295
7805
  /**
7296
7806
  *
@@ -7521,6 +8031,12 @@ export interface UserModel {
7521
8031
  * @memberof UserModel
7522
8032
  */
7523
8033
  'id'?: string;
8034
+ /**
8035
+ *
8036
+ * @type {string}
8037
+ * @memberof UserModel
8038
+ */
8039
+ 'userType'?: string | null;
7524
8040
  /**
7525
8041
  *
7526
8042
  * @type {string}
@@ -7599,12 +8115,6 @@ export interface UserModel {
7599
8115
  * @memberof UserModel
7600
8116
  */
7601
8117
  'auditableEntity'?: AuditableEntity;
7602
- /**
7603
- *
7604
- * @type {string}
7605
- * @memberof UserModel
7606
- */
7607
- 'userType'?: string | null;
7608
8118
  /**
7609
8119
  *
7610
8120
  * @type {Array<UserLanguageModel>}
@@ -8345,6 +8855,31 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
8345
8855
  * @throws {RequiredError}
8346
8856
  */
8347
8857
  apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8858
+ /**
8859
+ *
8860
+ * @summary Mark as Paid booking.
8861
+ * @param {string} bookingId
8862
+ * @param {*} [options] Override http request option.
8863
+ * @throws {RequiredError}
8864
+ */
8865
+ apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8866
+ /**
8867
+ *
8868
+ * @summary Pay booking.
8869
+ * @param {string} bookingId
8870
+ * @param {*} [options] Override http request option.
8871
+ * @throws {RequiredError}
8872
+ */
8873
+ apiV2BookingsBookingIdPayPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8874
+ /**
8875
+ *
8876
+ * @summary Update booking.
8877
+ * @param {string} bookingId
8878
+ * @param {UpdateBookingCommand} [updateBookingCommand]
8879
+ * @param {*} [options] Override http request option.
8880
+ * @throws {RequiredError}
8881
+ */
8882
+ apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8348
8883
  /**
8349
8884
  *
8350
8885
  * @summary Reject booking.
@@ -8369,6 +8904,15 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
8369
8904
  * @throws {RequiredError}
8370
8905
  */
8371
8906
  apiV2BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8907
+ /**
8908
+ *
8909
+ * @summary Create booking.
8910
+ * @param {string} requestId
8911
+ * @param {CreateBookingCommand} [createBookingCommand]
8912
+ * @param {*} [options] Override http request option.
8913
+ * @throws {RequiredError}
8914
+ */
8915
+ apiV2BookingsRequestIdPost: (requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8372
8916
  };
8373
8917
  /**
8374
8918
  * BookingsApi - functional programming interface
@@ -8408,6 +8952,31 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
8408
8952
  * @throws {RequiredError}
8409
8953
  */
8410
8954
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
8955
+ /**
8956
+ *
8957
+ * @summary Mark as Paid booking.
8958
+ * @param {string} bookingId
8959
+ * @param {*} [options] Override http request option.
8960
+ * @throws {RequiredError}
8961
+ */
8962
+ apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
8963
+ /**
8964
+ *
8965
+ * @summary Pay booking.
8966
+ * @param {string} bookingId
8967
+ * @param {*} [options] Override http request option.
8968
+ * @throws {RequiredError}
8969
+ */
8970
+ apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
8971
+ /**
8972
+ *
8973
+ * @summary Update booking.
8974
+ * @param {string} bookingId
8975
+ * @param {UpdateBookingCommand} [updateBookingCommand]
8976
+ * @param {*} [options] Override http request option.
8977
+ * @throws {RequiredError}
8978
+ */
8979
+ apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
8411
8980
  /**
8412
8981
  *
8413
8982
  * @summary Reject booking.
@@ -8432,6 +9001,15 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
8432
9001
  * @throws {RequiredError}
8433
9002
  */
8434
9003
  apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
9004
+ /**
9005
+ *
9006
+ * @summary Create booking.
9007
+ * @param {string} requestId
9008
+ * @param {CreateBookingCommand} [createBookingCommand]
9009
+ * @param {*} [options] Override http request option.
9010
+ * @throws {RequiredError}
9011
+ */
9012
+ apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
8435
9013
  };
8436
9014
  /**
8437
9015
  * BookingsApi - factory interface
@@ -8471,6 +9049,31 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
8471
9049
  * @throws {RequiredError}
8472
9050
  */
8473
9051
  apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
9052
+ /**
9053
+ *
9054
+ * @summary Mark as Paid booking.
9055
+ * @param {string} bookingId
9056
+ * @param {*} [options] Override http request option.
9057
+ * @throws {RequiredError}
9058
+ */
9059
+ apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
9060
+ /**
9061
+ *
9062
+ * @summary Pay booking.
9063
+ * @param {string} bookingId
9064
+ * @param {*} [options] Override http request option.
9065
+ * @throws {RequiredError}
9066
+ */
9067
+ apiV2BookingsBookingIdPayPost(bookingId: string, options?: any): AxiosPromise<string>;
9068
+ /**
9069
+ *
9070
+ * @summary Update booking.
9071
+ * @param {string} bookingId
9072
+ * @param {UpdateBookingCommand} [updateBookingCommand]
9073
+ * @param {*} [options] Override http request option.
9074
+ * @throws {RequiredError}
9075
+ */
9076
+ apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
8474
9077
  /**
8475
9078
  *
8476
9079
  * @summary Reject booking.
@@ -8495,6 +9098,15 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
8495
9098
  * @throws {RequiredError}
8496
9099
  */
8497
9100
  apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
9101
+ /**
9102
+ *
9103
+ * @summary Create booking.
9104
+ * @param {string} requestId
9105
+ * @param {CreateBookingCommand} [createBookingCommand]
9106
+ * @param {*} [options] Override http request option.
9107
+ * @throws {RequiredError}
9108
+ */
9109
+ apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
8498
9110
  };
8499
9111
  /**
8500
9112
  * BookingsApi - object-oriented interface
@@ -8540,6 +9152,34 @@ export declare class BookingsApi extends BaseAPI {
8540
9152
  * @memberof BookingsApi
8541
9153
  */
8542
9154
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
9155
+ /**
9156
+ *
9157
+ * @summary Mark as Paid booking.
9158
+ * @param {string} bookingId
9159
+ * @param {*} [options] Override http request option.
9160
+ * @throws {RequiredError}
9161
+ * @memberof BookingsApi
9162
+ */
9163
+ apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
9164
+ /**
9165
+ *
9166
+ * @summary Pay booking.
9167
+ * @param {string} bookingId
9168
+ * @param {*} [options] Override http request option.
9169
+ * @throws {RequiredError}
9170
+ * @memberof BookingsApi
9171
+ */
9172
+ apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
9173
+ /**
9174
+ *
9175
+ * @summary Update booking.
9176
+ * @param {string} bookingId
9177
+ * @param {UpdateBookingCommand} [updateBookingCommand]
9178
+ * @param {*} [options] Override http request option.
9179
+ * @throws {RequiredError}
9180
+ * @memberof BookingsApi
9181
+ */
9182
+ apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
8543
9183
  /**
8544
9184
  *
8545
9185
  * @summary Reject booking.
@@ -8566,6 +9206,16 @@ export declare class BookingsApi extends BaseAPI {
8566
9206
  * @memberof BookingsApi
8567
9207
  */
8568
9208
  apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
9209
+ /**
9210
+ *
9211
+ * @summary Create booking.
9212
+ * @param {string} requestId
9213
+ * @param {CreateBookingCommand} [createBookingCommand]
9214
+ * @param {*} [options] Override http request option.
9215
+ * @throws {RequiredError}
9216
+ * @memberof BookingsApi
9217
+ */
9218
+ apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
8569
9219
  }
8570
9220
  /**
8571
9221
  * ChatUsersApi - axios parameter creator
@@ -8954,6 +9604,23 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
8954
9604
  * @throws {RequiredError}
8955
9605
  */
8956
9606
  apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9607
+ /**
9608
+ *
9609
+ * @summary Pay consultation.
9610
+ * @param {string} consultationId
9611
+ * @param {*} [options] Override http request option.
9612
+ * @throws {RequiredError}
9613
+ */
9614
+ apiV2ConsultationsConsultationIdPayPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9615
+ /**
9616
+ *
9617
+ * @summary Update consultation.
9618
+ * @param {string} consultationId
9619
+ * @param {UpdateConsultationCommand} [updateConsultationCommand]
9620
+ * @param {*} [options] Override http request option.
9621
+ * @throws {RequiredError}
9622
+ */
9623
+ apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8957
9624
  /**
8958
9625
  *
8959
9626
  * @summary Reject consultation.
@@ -8978,6 +9645,15 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
8978
9645
  * @throws {RequiredError}
8979
9646
  */
8980
9647
  apiV2ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9648
+ /**
9649
+ *
9650
+ * @summary Create consultation.
9651
+ * @param {string} requestId
9652
+ * @param {CreateConsultationCommand} [createConsultationCommand]
9653
+ * @param {*} [options] Override http request option.
9654
+ * @throws {RequiredError}
9655
+ */
9656
+ apiV2ConsultationsRequestIdPost: (requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8981
9657
  };
8982
9658
  /**
8983
9659
  * ConsultationsApi - functional programming interface
@@ -9017,6 +9693,23 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
9017
9693
  * @throws {RequiredError}
9018
9694
  */
9019
9695
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
9696
+ /**
9697
+ *
9698
+ * @summary Pay consultation.
9699
+ * @param {string} consultationId
9700
+ * @param {*} [options] Override http request option.
9701
+ * @throws {RequiredError}
9702
+ */
9703
+ apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
9704
+ /**
9705
+ *
9706
+ * @summary Update consultation.
9707
+ * @param {string} consultationId
9708
+ * @param {UpdateConsultationCommand} [updateConsultationCommand]
9709
+ * @param {*} [options] Override http request option.
9710
+ * @throws {RequiredError}
9711
+ */
9712
+ apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
9020
9713
  /**
9021
9714
  *
9022
9715
  * @summary Reject consultation.
@@ -9041,6 +9734,15 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
9041
9734
  * @throws {RequiredError}
9042
9735
  */
9043
9736
  apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
9737
+ /**
9738
+ *
9739
+ * @summary Create consultation.
9740
+ * @param {string} requestId
9741
+ * @param {CreateConsultationCommand} [createConsultationCommand]
9742
+ * @param {*} [options] Override http request option.
9743
+ * @throws {RequiredError}
9744
+ */
9745
+ apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
9044
9746
  };
9045
9747
  /**
9046
9748
  * ConsultationsApi - factory interface
@@ -9080,6 +9782,23 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
9080
9782
  * @throws {RequiredError}
9081
9783
  */
9082
9784
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
9785
+ /**
9786
+ *
9787
+ * @summary Pay consultation.
9788
+ * @param {string} consultationId
9789
+ * @param {*} [options] Override http request option.
9790
+ * @throws {RequiredError}
9791
+ */
9792
+ apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: any): AxiosPromise<string>;
9793
+ /**
9794
+ *
9795
+ * @summary Update consultation.
9796
+ * @param {string} consultationId
9797
+ * @param {UpdateConsultationCommand} [updateConsultationCommand]
9798
+ * @param {*} [options] Override http request option.
9799
+ * @throws {RequiredError}
9800
+ */
9801
+ apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
9083
9802
  /**
9084
9803
  *
9085
9804
  * @summary Reject consultation.
@@ -9104,6 +9823,15 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
9104
9823
  * @throws {RequiredError}
9105
9824
  */
9106
9825
  apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
9826
+ /**
9827
+ *
9828
+ * @summary Create consultation.
9829
+ * @param {string} requestId
9830
+ * @param {CreateConsultationCommand} [createConsultationCommand]
9831
+ * @param {*} [options] Override http request option.
9832
+ * @throws {RequiredError}
9833
+ */
9834
+ apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
9107
9835
  };
9108
9836
  /**
9109
9837
  * ConsultationsApi - object-oriented interface
@@ -9149,6 +9877,25 @@ export declare class ConsultationsApi extends BaseAPI {
9149
9877
  * @memberof ConsultationsApi
9150
9878
  */
9151
9879
  apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
9880
+ /**
9881
+ *
9882
+ * @summary Pay consultation.
9883
+ * @param {string} consultationId
9884
+ * @param {*} [options] Override http request option.
9885
+ * @throws {RequiredError}
9886
+ * @memberof ConsultationsApi
9887
+ */
9888
+ apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
9889
+ /**
9890
+ *
9891
+ * @summary Update consultation.
9892
+ * @param {string} consultationId
9893
+ * @param {UpdateConsultationCommand} [updateConsultationCommand]
9894
+ * @param {*} [options] Override http request option.
9895
+ * @throws {RequiredError}
9896
+ * @memberof ConsultationsApi
9897
+ */
9898
+ apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
9152
9899
  /**
9153
9900
  *
9154
9901
  * @summary Reject consultation.
@@ -9175,6 +9922,16 @@ export declare class ConsultationsApi extends BaseAPI {
9175
9922
  * @memberof ConsultationsApi
9176
9923
  */
9177
9924
  apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
9925
+ /**
9926
+ *
9927
+ * @summary Create consultation.
9928
+ * @param {string} requestId
9929
+ * @param {CreateConsultationCommand} [createConsultationCommand]
9930
+ * @param {*} [options] Override http request option.
9931
+ * @throws {RequiredError}
9932
+ * @memberof ConsultationsApi
9933
+ */
9934
+ apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
9178
9935
  }
9179
9936
  /**
9180
9937
  * ContributorsApi - axios parameter creator