ch-admin-api-client-typescript 2.5.2 → 2.5.7

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
@@ -771,6 +771,37 @@ export interface AwardModel {
771
771
  */
772
772
  'date'?: Date;
773
773
  }
774
+ /**
775
+ *
776
+ * @export
777
+ * @interface BookingChangeLogModel
778
+ */
779
+ export interface BookingChangeLogModel {
780
+ /**
781
+ *
782
+ * @type {BookingStatus}
783
+ * @memberof BookingChangeLogModel
784
+ */
785
+ 'status'?: BookingStatus;
786
+ /**
787
+ *
788
+ * @type {string}
789
+ * @memberof BookingChangeLogModel
790
+ */
791
+ 'actorId'?: string;
792
+ /**
793
+ *
794
+ * @type {Date}
795
+ * @memberof BookingChangeLogModel
796
+ */
797
+ 'createdDate'?: Date;
798
+ /**
799
+ *
800
+ * @type {string}
801
+ * @memberof BookingChangeLogModel
802
+ */
803
+ 'actorName'?: string | null;
804
+ }
774
805
  /**
775
806
  *
776
807
  * @export
@@ -1168,6 +1199,12 @@ export interface BookingModel {
1168
1199
  * @memberof BookingModel
1169
1200
  */
1170
1201
  'completionRate'?: number;
1202
+ /**
1203
+ *
1204
+ * @type {Array<BookingChangeLogModel>}
1205
+ * @memberof BookingModel
1206
+ */
1207
+ 'statusChangeLogs'?: Array<BookingChangeLogModel> | null;
1171
1208
  }
1172
1209
  /**
1173
1210
  *
@@ -1796,6 +1833,37 @@ export interface ConfirmEmailCommand {
1796
1833
  */
1797
1834
  'code'?: string | null;
1798
1835
  }
1836
+ /**
1837
+ *
1838
+ * @export
1839
+ * @interface ConsultationChangeLogModel
1840
+ */
1841
+ export interface ConsultationChangeLogModel {
1842
+ /**
1843
+ *
1844
+ * @type {ConsultationStatus}
1845
+ * @memberof ConsultationChangeLogModel
1846
+ */
1847
+ 'status'?: ConsultationStatus;
1848
+ /**
1849
+ *
1850
+ * @type {string}
1851
+ * @memberof ConsultationChangeLogModel
1852
+ */
1853
+ 'actorId'?: string;
1854
+ /**
1855
+ *
1856
+ * @type {Date}
1857
+ * @memberof ConsultationChangeLogModel
1858
+ */
1859
+ 'createdDate'?: Date;
1860
+ /**
1861
+ *
1862
+ * @type {string}
1863
+ * @memberof ConsultationChangeLogModel
1864
+ */
1865
+ 'actorName'?: string | null;
1866
+ }
1799
1867
  /**
1800
1868
  *
1801
1869
  * @export
@@ -2313,6 +2381,12 @@ export interface ConsultationModel {
2313
2381
  * @memberof ConsultationModel
2314
2382
  */
2315
2383
  'completionRate'?: number;
2384
+ /**
2385
+ *
2386
+ * @type {Array<ConsultationChangeLogModel>}
2387
+ * @memberof ConsultationModel
2388
+ */
2389
+ 'statusChangeLogs'?: Array<ConsultationChangeLogModel> | null;
2316
2390
  }
2317
2391
  /**
2318
2392
  *
@@ -2441,10 +2515,16 @@ export interface ContributorItemModel {
2441
2515
  'order'?: number;
2442
2516
  /**
2443
2517
  *
2444
- * @type {Array<SnsHandleModel>}
2518
+ * @type {Array<LocalizedUrlModel>}
2445
2519
  * @memberof ContributorItemModel
2446
2520
  */
2447
- 'snsHandles'?: Array<SnsHandleModel> | null;
2521
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2522
+ /**
2523
+ *
2524
+ * @type {boolean}
2525
+ * @memberof ContributorItemModel
2526
+ */
2527
+ 'confirmed'?: boolean;
2448
2528
  }
2449
2529
  /**
2450
2530
  *
@@ -2520,10 +2600,22 @@ export interface ContributorModel {
2520
2600
  'order'?: number;
2521
2601
  /**
2522
2602
  *
2523
- * @type {Array<SnsHandleModel>}
2603
+ * @type {Array<LocalizedUrlModel>}
2604
+ * @memberof ContributorModel
2605
+ */
2606
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2607
+ /**
2608
+ *
2609
+ * @type {boolean}
2610
+ * @memberof ContributorModel
2611
+ */
2612
+ 'confirmed'?: boolean;
2613
+ /**
2614
+ *
2615
+ * @type {string}
2524
2616
  * @memberof ContributorModel
2525
2617
  */
2526
- 'snsHandles'?: Array<SnsHandleModel> | null;
2618
+ 'languageCode'?: string | null;
2527
2619
  }
2528
2620
  /**
2529
2621
  *
@@ -2666,6 +2758,12 @@ export interface CountryItemModel {
2666
2758
  * @memberof CountryItemModel
2667
2759
  */
2668
2760
  'auditableEntity'?: AuditableEntity;
2761
+ /**
2762
+ *
2763
+ * @type {Array<LocalizedUrlModel>}
2764
+ * @memberof CountryItemModel
2765
+ */
2766
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2669
2767
  /**
2670
2768
  *
2671
2769
  * @type {boolean}
@@ -2757,12 +2855,24 @@ export interface CountryModel {
2757
2855
  * @memberof CountryModel
2758
2856
  */
2759
2857
  'auditableEntity'?: AuditableEntity;
2858
+ /**
2859
+ *
2860
+ * @type {Array<LocalizedUrlModel>}
2861
+ * @memberof CountryModel
2862
+ */
2863
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2760
2864
  /**
2761
2865
  *
2762
2866
  * @type {boolean}
2763
2867
  * @memberof CountryModel
2764
2868
  */
2765
2869
  'confirmed'?: boolean;
2870
+ /**
2871
+ *
2872
+ * @type {string}
2873
+ * @memberof CountryModel
2874
+ */
2875
+ 'languageCode'?: string | null;
2766
2876
  }
2767
2877
  /**
2768
2878
  *
@@ -3589,6 +3699,12 @@ export interface CreateFaqCommand {
3589
3699
  * @memberof CreateFaqCommand
3590
3700
  */
3591
3701
  'faqCategoryId'?: string | null;
3702
+ /**
3703
+ *
3704
+ * @type {string}
3705
+ * @memberof CreateFaqCommand
3706
+ */
3707
+ 'hospitalId'?: string;
3592
3708
  }
3593
3709
  /**
3594
3710
  *
@@ -4212,6 +4328,31 @@ export interface CreateTagCommand {
4212
4328
  */
4213
4329
  'tagId'?: string | null;
4214
4330
  }
4331
+ /**
4332
+ *
4333
+ * @export
4334
+ * @interface CreateTemplateVersionCommand
4335
+ */
4336
+ export interface CreateTemplateVersionCommand {
4337
+ /**
4338
+ *
4339
+ * @type {string}
4340
+ * @memberof CreateTemplateVersionCommand
4341
+ */
4342
+ 'name'?: string | null;
4343
+ /**
4344
+ *
4345
+ * @type {string}
4346
+ * @memberof CreateTemplateVersionCommand
4347
+ */
4348
+ 'subject'?: string | null;
4349
+ /**
4350
+ *
4351
+ * @type {string}
4352
+ * @memberof CreateTemplateVersionCommand
4353
+ */
4354
+ 'htmlContent'?: string | null;
4355
+ }
4215
4356
  /**
4216
4357
  *
4217
4358
  * @export
@@ -5149,6 +5290,12 @@ export interface DoctorItemModel {
5149
5290
  * @memberof DoctorItemModel
5150
5291
  */
5151
5292
  'consultationFee'?: number | null;
5293
+ /**
5294
+ *
5295
+ * @type {Array<LocalizedUrlModel>}
5296
+ * @memberof DoctorItemModel
5297
+ */
5298
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5152
5299
  /**
5153
5300
  *
5154
5301
  * @type {boolean}
@@ -5306,6 +5453,12 @@ export interface DoctorModel {
5306
5453
  * @memberof DoctorModel
5307
5454
  */
5308
5455
  'consultationFee'?: number | null;
5456
+ /**
5457
+ *
5458
+ * @type {Array<LocalizedUrlModel>}
5459
+ * @memberof DoctorModel
5460
+ */
5461
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5309
5462
  /**
5310
5463
  *
5311
5464
  * @type {boolean}
@@ -5834,6 +5987,12 @@ export interface FaqModel {
5834
5987
  * @memberof FaqModel
5835
5988
  */
5836
5989
  'confirmed'?: boolean;
5990
+ /**
5991
+ *
5992
+ * @type {string}
5993
+ * @memberof FaqModel
5994
+ */
5995
+ 'languageCode'?: string | null;
5837
5996
  /**
5838
5997
  *
5839
5998
  * @type {Array<FaqCategoryBreadCrumbModel>}
@@ -6892,6 +7051,12 @@ export interface HospitalServiceModel {
6892
7051
  * @memberof HospitalServiceModel
6893
7052
  */
6894
7053
  'auditableEntity'?: AuditableEntity;
7054
+ /**
7055
+ *
7056
+ * @type {string}
7057
+ * @memberof HospitalServiceModel
7058
+ */
7059
+ 'languageCode'?: string | null;
6895
7060
  }
6896
7061
  /**
6897
7062
  *
@@ -6930,6 +7095,12 @@ export interface HospitalSimpleItemModel {
6930
7095
  * @memberof HospitalSimpleItemModel
6931
7096
  */
6932
7097
  'name'?: string | null;
7098
+ /**
7099
+ *
7100
+ * @type {boolean}
7101
+ * @memberof HospitalSimpleItemModel
7102
+ */
7103
+ 'confirmed'?: boolean;
6933
7104
  }
6934
7105
  /**
6935
7106
  *
@@ -8666,6 +8837,19 @@ export declare enum RejectReason {
8666
8837
  ScheduleNotAvailable = "ScheduleNotAvailable",
8667
8838
  OtherReason = "OtherReason"
8668
8839
  }
8840
+ /**
8841
+ *
8842
+ * @export
8843
+ * @interface SendTemplateVersionCommand
8844
+ */
8845
+ export interface SendTemplateVersionCommand {
8846
+ /**
8847
+ *
8848
+ * @type {string}
8849
+ * @memberof SendTemplateVersionCommand
8850
+ */
8851
+ 'testEmail'?: string | null;
8852
+ }
8669
8853
  /**
8670
8854
  *
8671
8855
  * @export
@@ -9013,6 +9197,12 @@ export interface SpecialtyModel {
9013
9197
  * @memberof SpecialtyModel
9014
9198
  */
9015
9199
  'auditableEntity'?: AuditableEntity;
9200
+ /**
9201
+ *
9202
+ * @type {string}
9203
+ * @memberof SpecialtyModel
9204
+ */
9205
+ 'languageCode'?: string | null;
9016
9206
  }
9017
9207
  /**
9018
9208
  *
@@ -9159,6 +9349,12 @@ export interface SpecialtyTypeModel {
9159
9349
  * @memberof SpecialtyTypeModel
9160
9350
  */
9161
9351
  'confirmed'?: boolean;
9352
+ /**
9353
+ *
9354
+ * @type {string}
9355
+ * @memberof SpecialtyTypeModel
9356
+ */
9357
+ 'languageCode'?: string | null;
9162
9358
  }
9163
9359
  /**
9164
9360
  *
@@ -9288,142 +9484,271 @@ export interface TagsModel {
9288
9484
  /**
9289
9485
  *
9290
9486
  * @export
9291
- * @interface TranslateCommand
9487
+ * @interface TemplateVersionItemModel
9292
9488
  */
9293
- export interface TranslateCommand {
9489
+ export interface TemplateVersionItemModel {
9294
9490
  /**
9295
9491
  *
9296
9492
  * @type {string}
9297
- * @memberof TranslateCommand
9493
+ * @memberof TemplateVersionItemModel
9298
9494
  */
9299
- 'languageCodeFrom'?: string | null;
9495
+ 'id'?: string | null;
9300
9496
  /**
9301
9497
  *
9302
9498
  * @type {string}
9303
- * @memberof TranslateCommand
9499
+ * @memberof TemplateVersionItemModel
9304
9500
  */
9305
- 'languageCodeTo'?: string | null;
9501
+ 'templateId'?: string | null;
9306
9502
  /**
9307
9503
  *
9308
- * @type {string}
9309
- * @memberof TranslateCommand
9504
+ * @type {boolean}
9505
+ * @memberof TemplateVersionItemModel
9310
9506
  */
9311
- 'content'?: string | null;
9507
+ 'isActive'?: boolean;
9312
9508
  /**
9313
9509
  *
9314
- * @type {boolean}
9315
- * @memberof TranslateCommand
9510
+ * @type {string}
9511
+ * @memberof TemplateVersionItemModel
9316
9512
  */
9317
- 'isHtml'?: boolean;
9318
- }
9319
- /**
9320
- *
9321
- * @export
9322
- * @interface UpdateAccreditationCommand
9323
- */
9324
- export interface UpdateAccreditationCommand {
9513
+ 'name'?: string | null;
9325
9514
  /**
9326
9515
  *
9327
9516
  * @type {string}
9328
- * @memberof UpdateAccreditationCommand
9517
+ * @memberof TemplateVersionItemModel
9329
9518
  */
9330
- 'name'?: string | null;
9519
+ 'htmlContent'?: string | null;
9331
9520
  /**
9332
9521
  *
9333
9522
  * @type {string}
9334
- * @memberof UpdateAccreditationCommand
9523
+ * @memberof TemplateVersionItemModel
9335
9524
  */
9336
- 'logo'?: string | null;
9525
+ 'textContent'?: string | null;
9337
9526
  /**
9338
9527
  *
9339
9528
  * @type {string}
9340
- * @memberof UpdateAccreditationCommand
9529
+ * @memberof TemplateVersionItemModel
9341
9530
  */
9342
- 'country'?: string | null;
9531
+ 'subject'?: string | null;
9532
+ /**
9533
+ *
9534
+ * @type {Date}
9535
+ * @memberof TemplateVersionItemModel
9536
+ */
9537
+ 'updatedOn'?: Date;
9343
9538
  }
9344
9539
  /**
9345
9540
  *
9346
9541
  * @export
9347
- * @interface UpdateArticleCommand
9542
+ * @interface TemplateVersionModel
9348
9543
  */
9349
- export interface UpdateArticleCommand {
9544
+ export interface TemplateVersionModel {
9350
9545
  /**
9351
9546
  *
9352
9547
  * @type {string}
9353
- * @memberof UpdateArticleCommand
9548
+ * @memberof TemplateVersionModel
9354
9549
  */
9355
- 'languageCode'?: string | null;
9550
+ 'id'?: string | null;
9356
9551
  /**
9357
9552
  *
9358
9553
  * @type {string}
9359
- * @memberof UpdateArticleCommand
9554
+ * @memberof TemplateVersionModel
9360
9555
  */
9361
- 'title'?: string | null;
9556
+ 'templateId'?: string | null;
9362
9557
  /**
9363
9558
  *
9364
- * @type {string}
9365
- * @memberof UpdateArticleCommand
9559
+ * @type {boolean}
9560
+ * @memberof TemplateVersionModel
9366
9561
  */
9367
- 'slug'?: string | null;
9562
+ 'isActive'?: boolean;
9368
9563
  /**
9369
9564
  *
9370
9565
  * @type {string}
9371
- * @memberof UpdateArticleCommand
9566
+ * @memberof TemplateVersionModel
9372
9567
  */
9373
- 'description'?: string | null;
9568
+ 'name'?: string | null;
9374
9569
  /**
9375
9570
  *
9376
9571
  * @type {string}
9377
- * @memberof UpdateArticleCommand
9378
- */
9379
- 'body'?: string | null;
9380
- /**
9381
- *
9382
- * @type {ArticleStatus}
9383
- * @memberof UpdateArticleCommand
9384
- */
9385
- 'status'?: ArticleStatus;
9386
- /**
9387
- *
9388
- * @type {MarketingType}
9389
- * @memberof UpdateArticleCommand
9572
+ * @memberof TemplateVersionModel
9390
9573
  */
9391
- 'marketingType'?: MarketingType;
9574
+ 'htmlContent'?: string | null;
9392
9575
  /**
9393
9576
  *
9394
9577
  * @type {string}
9395
- * @memberof UpdateArticleCommand
9578
+ * @memberof TemplateVersionModel
9396
9579
  */
9397
- 'hospitalSlug'?: string | null;
9580
+ 'textContent'?: string | null;
9398
9581
  /**
9399
9582
  *
9400
9583
  * @type {string}
9401
- * @memberof UpdateArticleCommand
9584
+ * @memberof TemplateVersionModel
9402
9585
  */
9403
- 'youtubeUrl'?: string | null;
9586
+ 'subject'?: string | null;
9404
9587
  /**
9405
9588
  *
9406
- * @type {Array<ArticleTagItemModel>}
9407
- * @memberof UpdateArticleCommand
9589
+ * @type {Date}
9590
+ * @memberof TemplateVersionModel
9408
9591
  */
9409
- 'articleTags'?: Array<ArticleTagItemModel> | null;
9592
+ 'updatedOn'?: Date;
9593
+ }
9594
+ /**
9595
+ *
9596
+ * @export
9597
+ * @interface TemplateVersionsModel
9598
+ */
9599
+ export interface TemplateVersionsModel {
9410
9600
  /**
9411
9601
  *
9412
- * @type {boolean}
9413
- * @memberof UpdateArticleCommand
9602
+ * @type {Array<TemplateVersionItemModel>}
9603
+ * @memberof TemplateVersionsModel
9414
9604
  */
9415
- 'confirmed'?: boolean;
9605
+ 'items'?: Array<TemplateVersionItemModel> | null;
9416
9606
  /**
9417
9607
  *
9418
- * @type {Array<MediaModel>}
9419
- * @memberof UpdateArticleCommand
9608
+ * @type {PagedListMetaData}
9609
+ * @memberof TemplateVersionsModel
9420
9610
  */
9421
- 'medias'?: Array<MediaModel> | null;
9611
+ 'metaData'?: PagedListMetaData;
9422
9612
  }
9423
9613
  /**
9424
9614
  *
9425
9615
  * @export
9426
- * @interface UpdateArticleContributorCommand
9616
+ * @interface TranslateCommand
9617
+ */
9618
+ export interface TranslateCommand {
9619
+ /**
9620
+ *
9621
+ * @type {string}
9622
+ * @memberof TranslateCommand
9623
+ */
9624
+ 'languageCodeFrom'?: string | null;
9625
+ /**
9626
+ *
9627
+ * @type {string}
9628
+ * @memberof TranslateCommand
9629
+ */
9630
+ 'languageCodeTo'?: string | null;
9631
+ /**
9632
+ *
9633
+ * @type {string}
9634
+ * @memberof TranslateCommand
9635
+ */
9636
+ 'content'?: string | null;
9637
+ /**
9638
+ *
9639
+ * @type {boolean}
9640
+ * @memberof TranslateCommand
9641
+ */
9642
+ 'isHtml'?: boolean;
9643
+ }
9644
+ /**
9645
+ *
9646
+ * @export
9647
+ * @interface UpdateAccreditationCommand
9648
+ */
9649
+ export interface UpdateAccreditationCommand {
9650
+ /**
9651
+ *
9652
+ * @type {string}
9653
+ * @memberof UpdateAccreditationCommand
9654
+ */
9655
+ 'name'?: string | null;
9656
+ /**
9657
+ *
9658
+ * @type {string}
9659
+ * @memberof UpdateAccreditationCommand
9660
+ */
9661
+ 'logo'?: string | null;
9662
+ /**
9663
+ *
9664
+ * @type {string}
9665
+ * @memberof UpdateAccreditationCommand
9666
+ */
9667
+ 'country'?: string | null;
9668
+ }
9669
+ /**
9670
+ *
9671
+ * @export
9672
+ * @interface UpdateArticleCommand
9673
+ */
9674
+ export interface UpdateArticleCommand {
9675
+ /**
9676
+ *
9677
+ * @type {string}
9678
+ * @memberof UpdateArticleCommand
9679
+ */
9680
+ 'title'?: string | null;
9681
+ /**
9682
+ *
9683
+ * @type {string}
9684
+ * @memberof UpdateArticleCommand
9685
+ */
9686
+ 'slug'?: string | null;
9687
+ /**
9688
+ *
9689
+ * @type {string}
9690
+ * @memberof UpdateArticleCommand
9691
+ */
9692
+ 'description'?: string | null;
9693
+ /**
9694
+ *
9695
+ * @type {string}
9696
+ * @memberof UpdateArticleCommand
9697
+ */
9698
+ 'body'?: string | null;
9699
+ /**
9700
+ *
9701
+ * @type {ArticleStatus}
9702
+ * @memberof UpdateArticleCommand
9703
+ */
9704
+ 'status'?: ArticleStatus;
9705
+ /**
9706
+ *
9707
+ * @type {MarketingType}
9708
+ * @memberof UpdateArticleCommand
9709
+ */
9710
+ 'marketingType'?: MarketingType;
9711
+ /**
9712
+ *
9713
+ * @type {string}
9714
+ * @memberof UpdateArticleCommand
9715
+ */
9716
+ 'hospitalSlug'?: string | null;
9717
+ /**
9718
+ *
9719
+ * @type {string}
9720
+ * @memberof UpdateArticleCommand
9721
+ */
9722
+ 'youtubeUrl'?: string | null;
9723
+ /**
9724
+ *
9725
+ * @type {Array<ArticleTagItemModel>}
9726
+ * @memberof UpdateArticleCommand
9727
+ */
9728
+ 'articleTags'?: Array<ArticleTagItemModel> | null;
9729
+ /**
9730
+ *
9731
+ * @type {string}
9732
+ * @memberof UpdateArticleCommand
9733
+ */
9734
+ 'languageCode'?: string | null;
9735
+ /**
9736
+ *
9737
+ * @type {boolean}
9738
+ * @memberof UpdateArticleCommand
9739
+ */
9740
+ 'confirmed'?: boolean;
9741
+ /**
9742
+ *
9743
+ * @type {Array<MediaModel>}
9744
+ * @memberof UpdateArticleCommand
9745
+ */
9746
+ 'medias'?: Array<MediaModel> | null;
9747
+ }
9748
+ /**
9749
+ *
9750
+ * @export
9751
+ * @interface UpdateArticleContributorCommand
9427
9752
  */
9428
9753
  export interface UpdateArticleContributorCommand {
9429
9754
  /**
@@ -9689,6 +10014,18 @@ export interface UpdateContributorCommand {
9689
10014
  * @memberof UpdateContributorCommand
9690
10015
  */
9691
10016
  'hospitalId'?: string;
10017
+ /**
10018
+ *
10019
+ * @type {string}
10020
+ * @memberof UpdateContributorCommand
10021
+ */
10022
+ 'languageCode'?: string | null;
10023
+ /**
10024
+ *
10025
+ * @type {boolean}
10026
+ * @memberof UpdateContributorCommand
10027
+ */
10028
+ 'confirmed'?: boolean;
9692
10029
  }
9693
10030
  /**
9694
10031
  *
@@ -9721,6 +10058,12 @@ export interface UpdateCountryCommand {
9721
10058
  * @memberof UpdateCountryCommand
9722
10059
  */
9723
10060
  'name'?: string | null;
10061
+ /**
10062
+ *
10063
+ * @type {string}
10064
+ * @memberof UpdateCountryCommand
10065
+ */
10066
+ 'slug'?: string | null;
9724
10067
  /**
9725
10068
  *
9726
10069
  * @type {string}
@@ -9745,12 +10088,6 @@ export interface UpdateCountryCommand {
9745
10088
  * @memberof UpdateCountryCommand
9746
10089
  */
9747
10090
  'confirmed'?: boolean;
9748
- /**
9749
- *
9750
- * @type {Array<MediaModel>}
9751
- * @memberof UpdateCountryCommand
9752
- */
9753
- 'medias'?: Array<MediaModel> | null;
9754
10091
  }
9755
10092
  /**
9756
10093
  *
@@ -9888,12 +10225,6 @@ export interface UpdateDoctorCertificateCommand {
9888
10225
  * @interface UpdateDoctorCommand
9889
10226
  */
9890
10227
  export interface UpdateDoctorCommand {
9891
- /**
9892
- *
9893
- * @type {string}
9894
- * @memberof UpdateDoctorCommand
9895
- */
9896
- 'userName'?: string | null;
9897
10228
  /**
9898
10229
  *
9899
10230
  * @type {string}
@@ -10084,12 +10415,6 @@ export interface UpdateDoctorSpecialtyCommand {
10084
10415
  * @interface UpdateFaqCategoryCommand
10085
10416
  */
10086
10417
  export interface UpdateFaqCategoryCommand {
10087
- /**
10088
- *
10089
- * @type {string}
10090
- * @memberof UpdateFaqCategoryCommand
10091
- */
10092
- 'id'?: string | null;
10093
10418
  /**
10094
10419
  *
10095
10420
  * @type {string}
@@ -10621,12 +10946,6 @@ export interface UpdatePlanCommand {
10621
10946
  * @memberof UpdatePlanCommand
10622
10947
  */
10623
10948
  'unitPrice'?: number;
10624
- /**
10625
- *
10626
- * @type {string}
10627
- * @memberof UpdatePlanCommand
10628
- */
10629
- 'stripePriceId'?: string | null;
10630
10949
  /**
10631
10950
  *
10632
10951
  * @type {RecurringInterval}
@@ -10867,6 +11186,31 @@ export interface UpdateSpecialtyTypeCommand {
10867
11186
  */
10868
11187
  'languageCode'?: string | null;
10869
11188
  }
11189
+ /**
11190
+ *
11191
+ * @export
11192
+ * @interface UpdateTemplateVersionCommand
11193
+ */
11194
+ export interface UpdateTemplateVersionCommand {
11195
+ /**
11196
+ *
11197
+ * @type {string}
11198
+ * @memberof UpdateTemplateVersionCommand
11199
+ */
11200
+ 'name'?: string | null;
11201
+ /**
11202
+ *
11203
+ * @type {string}
11204
+ * @memberof UpdateTemplateVersionCommand
11205
+ */
11206
+ 'subject'?: string | null;
11207
+ /**
11208
+ *
11209
+ * @type {string}
11210
+ * @memberof UpdateTemplateVersionCommand
11211
+ */
11212
+ 'htmlContent'?: string | null;
11213
+ }
10870
11214
  /**
10871
11215
  *
10872
11216
  * @export
@@ -13133,6 +13477,12 @@ export declare class CHManagersApi extends BaseAPI {
13133
13477
  * @export
13134
13478
  */
13135
13479
  export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13480
+ /**
13481
+ *
13482
+ * @param {*} [options] Override http request option.
13483
+ * @throws {RequiredError}
13484
+ */
13485
+ apiV1ChatusersCurrentGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
13136
13486
  /**
13137
13487
  *
13138
13488
  * @summary Get all chatUsers.
@@ -13184,6 +13534,12 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
13184
13534
  * @export
13185
13535
  */
13186
13536
  export declare const ChatUsersApiFp: (configuration?: Configuration | undefined) => {
13537
+ /**
13538
+ *
13539
+ * @param {*} [options] Override http request option.
13540
+ * @throws {RequiredError}
13541
+ */
13542
+ apiV1ChatusersCurrentGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
13187
13543
  /**
13188
13544
  *
13189
13545
  * @summary Get all chatUsers.
@@ -13235,6 +13591,12 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
13235
13591
  * @export
13236
13592
  */
13237
13593
  export declare const ChatUsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13594
+ /**
13595
+ *
13596
+ * @param {*} [options] Override http request option.
13597
+ * @throws {RequiredError}
13598
+ */
13599
+ apiV1ChatusersCurrentGet(options?: any): AxiosPromise<ChatUserModel>;
13238
13600
  /**
13239
13601
  *
13240
13602
  * @summary Get all chatUsers.
@@ -13288,6 +13650,13 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
13288
13650
  * @extends {BaseAPI}
13289
13651
  */
13290
13652
  export declare class ChatUsersApi extends BaseAPI {
13653
+ /**
13654
+ *
13655
+ * @param {*} [options] Override http request option.
13656
+ * @throws {RequiredError}
13657
+ * @memberof ChatUsersApi
13658
+ */
13659
+ apiV1ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
13291
13660
  /**
13292
13661
  *
13293
13662
  * @summary Get all chatUsers.
@@ -13506,13 +13875,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
13506
13875
  * @param {boolean} [isOpen]
13507
13876
  * @param {boolean} [isCompleted]
13508
13877
  * @param {ConsultationStatus} [status]
13878
+ * @param {ConsultationType} [consultationType]
13509
13879
  * @param {number} [page]
13510
13880
  * @param {number} [limit]
13511
13881
  * @param {Date} [lastRetrieved]
13512
13882
  * @param {*} [options] Override http request option.
13513
13883
  * @throws {RequiredError}
13514
13884
  */
13515
- apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13885
+ apiV1ConsultationsGet: (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>;
13516
13886
  };
13517
13887
  /**
13518
13888
  * ConsultationsApi - functional programming interface
@@ -13568,13 +13938,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
13568
13938
  * @param {boolean} [isOpen]
13569
13939
  * @param {boolean} [isCompleted]
13570
13940
  * @param {ConsultationStatus} [status]
13941
+ * @param {ConsultationType} [consultationType]
13571
13942
  * @param {number} [page]
13572
13943
  * @param {number} [limit]
13573
13944
  * @param {Date} [lastRetrieved]
13574
13945
  * @param {*} [options] Override http request option.
13575
13946
  * @throws {RequiredError}
13576
13947
  */
13577
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
13948
+ apiV1ConsultationsGet(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>>;
13578
13949
  };
13579
13950
  /**
13580
13951
  * ConsultationsApi - factory interface
@@ -13630,13 +14001,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
13630
14001
  * @param {boolean} [isOpen]
13631
14002
  * @param {boolean} [isCompleted]
13632
14003
  * @param {ConsultationStatus} [status]
14004
+ * @param {ConsultationType} [consultationType]
13633
14005
  * @param {number} [page]
13634
14006
  * @param {number} [limit]
13635
14007
  * @param {Date} [lastRetrieved]
13636
14008
  * @param {*} [options] Override http request option.
13637
14009
  * @throws {RequiredError}
13638
14010
  */
13639
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
14011
+ apiV1ConsultationsGet(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>;
13640
14012
  };
13641
14013
  /**
13642
14014
  * ConsultationsApi - object-oriented interface
@@ -13699,6 +14071,7 @@ export declare class ConsultationsApi extends BaseAPI {
13699
14071
  * @param {boolean} [isOpen]
13700
14072
  * @param {boolean} [isCompleted]
13701
14073
  * @param {ConsultationStatus} [status]
14074
+ * @param {ConsultationType} [consultationType]
13702
14075
  * @param {number} [page]
13703
14076
  * @param {number} [limit]
13704
14077
  * @param {Date} [lastRetrieved]
@@ -13706,7 +14079,7 @@ export declare class ConsultationsApi extends BaseAPI {
13706
14079
  * @throws {RequiredError}
13707
14080
  * @memberof ConsultationsApi
13708
14081
  */
13709
- apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
14082
+ apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
13710
14083
  }
13711
14084
  /**
13712
14085
  * ContributorsApi - axios parameter creator
@@ -13799,9 +14172,9 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
13799
14172
  * @param {string} [email]
13800
14173
  * @param {string} [description]
13801
14174
  * @param {string} [website]
13802
- * @param {string} [languageCode]
13803
14175
  * @param {string} [hospitalId]
13804
14176
  * @param {boolean} [interviewerOnly]
14177
+ * @param {string} [languageCode]
13805
14178
  * @param {boolean} [showHidden]
13806
14179
  * @param {number} [page]
13807
14180
  * @param {number} [limit]
@@ -13809,7 +14182,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
13809
14182
  * @param {*} [options] Override http request option.
13810
14183
  * @throws {RequiredError}
13811
14184
  */
13812
- apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14185
+ apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13813
14186
  /**
13814
14187
  *
13815
14188
  * @summary Create a Contributor.
@@ -13919,9 +14292,9 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
13919
14292
  * @param {string} [email]
13920
14293
  * @param {string} [description]
13921
14294
  * @param {string} [website]
13922
- * @param {string} [languageCode]
13923
14295
  * @param {string} [hospitalId]
13924
14296
  * @param {boolean} [interviewerOnly]
14297
+ * @param {string} [languageCode]
13925
14298
  * @param {boolean} [showHidden]
13926
14299
  * @param {number} [page]
13927
14300
  * @param {number} [limit]
@@ -13929,7 +14302,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
13929
14302
  * @param {*} [options] Override http request option.
13930
14303
  * @throws {RequiredError}
13931
14304
  */
13932
- apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
14305
+ apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
13933
14306
  /**
13934
14307
  *
13935
14308
  * @summary Create a Contributor.
@@ -14039,9 +14412,9 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
14039
14412
  * @param {string} [email]
14040
14413
  * @param {string} [description]
14041
14414
  * @param {string} [website]
14042
- * @param {string} [languageCode]
14043
14415
  * @param {string} [hospitalId]
14044
14416
  * @param {boolean} [interviewerOnly]
14417
+ * @param {string} [languageCode]
14045
14418
  * @param {boolean} [showHidden]
14046
14419
  * @param {number} [page]
14047
14420
  * @param {number} [limit]
@@ -14049,7 +14422,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
14049
14422
  * @param {*} [options] Override http request option.
14050
14423
  * @throws {RequiredError}
14051
14424
  */
14052
- apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
14425
+ apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
14053
14426
  /**
14054
14427
  *
14055
14428
  * @summary Create a Contributor.
@@ -14169,9 +14542,9 @@ export declare class ContributorsApi extends BaseAPI {
14169
14542
  * @param {string} [email]
14170
14543
  * @param {string} [description]
14171
14544
  * @param {string} [website]
14172
- * @param {string} [languageCode]
14173
14545
  * @param {string} [hospitalId]
14174
14546
  * @param {boolean} [interviewerOnly]
14547
+ * @param {string} [languageCode]
14175
14548
  * @param {boolean} [showHidden]
14176
14549
  * @param {number} [page]
14177
14550
  * @param {number} [limit]
@@ -14180,7 +14553,7 @@ export declare class ContributorsApi extends BaseAPI {
14180
14553
  * @throws {RequiredError}
14181
14554
  * @memberof ContributorsApi
14182
14555
  */
14183
- apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, languageCode?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
14556
+ apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
14184
14557
  /**
14185
14558
  *
14186
14559
  * @summary Create a Contributor.
@@ -16898,6 +17271,246 @@ export declare class DoctorsApi extends BaseAPI {
16898
17271
  */
16899
17272
  apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
16900
17273
  }
17274
+ /**
17275
+ * EmailMarketingsApi - axios parameter creator
17276
+ * @export
17277
+ */
17278
+ export declare const EmailMarketingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
17279
+ /**
17280
+ *
17281
+ * @summary Get all templateVersions.
17282
+ * @param {number} [page]
17283
+ * @param {number} [limit]
17284
+ * @param {Date} [lastRetrieved]
17285
+ * @param {*} [options] Override http request option.
17286
+ * @throws {RequiredError}
17287
+ */
17288
+ apiV1EmailmarketingsVersionsGet: (page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17289
+ /**
17290
+ *
17291
+ * @summary Create a templateVersion.
17292
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17293
+ * @param {*} [options] Override http request option.
17294
+ * @throws {RequiredError}
17295
+ */
17296
+ apiV1EmailmarketingsVersionsPost: (createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17297
+ /**
17298
+ *
17299
+ * @summary Delete templateVersion.
17300
+ * @param {string} versionId
17301
+ * @param {*} [options] Override http request option.
17302
+ * @throws {RequiredError}
17303
+ */
17304
+ apiV1EmailmarketingsVersionsVersionIdDelete: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17305
+ /**
17306
+ *
17307
+ * @summary Get templateVersion.
17308
+ * @param {string} versionId
17309
+ * @param {*} [options] Override http request option.
17310
+ * @throws {RequiredError}
17311
+ */
17312
+ apiV1EmailmarketingsVersionsVersionIdGet: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17313
+ /**
17314
+ *
17315
+ * @summary Update templateVersion.
17316
+ * @param {string} versionId
17317
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17318
+ * @param {*} [options] Override http request option.
17319
+ * @throws {RequiredError}
17320
+ */
17321
+ apiV1EmailmarketingsVersionsVersionIdPut: (versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17322
+ /**
17323
+ *
17324
+ * @summary Send templateVersion email.
17325
+ * @param {string} versionId
17326
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17327
+ * @param {*} [options] Override http request option.
17328
+ * @throws {RequiredError}
17329
+ */
17330
+ apiV1EmailmarketingsVersionsVersionIdSendPost: (versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17331
+ };
17332
+ /**
17333
+ * EmailMarketingsApi - functional programming interface
17334
+ * @export
17335
+ */
17336
+ export declare const EmailMarketingsApiFp: (configuration?: Configuration | undefined) => {
17337
+ /**
17338
+ *
17339
+ * @summary Get all templateVersions.
17340
+ * @param {number} [page]
17341
+ * @param {number} [limit]
17342
+ * @param {Date} [lastRetrieved]
17343
+ * @param {*} [options] Override http request option.
17344
+ * @throws {RequiredError}
17345
+ */
17346
+ apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionsModel>>;
17347
+ /**
17348
+ *
17349
+ * @summary Create a templateVersion.
17350
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17351
+ * @param {*} [options] Override http request option.
17352
+ * @throws {RequiredError}
17353
+ */
17354
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17355
+ /**
17356
+ *
17357
+ * @summary Delete templateVersion.
17358
+ * @param {string} versionId
17359
+ * @param {*} [options] Override http request option.
17360
+ * @throws {RequiredError}
17361
+ */
17362
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17363
+ /**
17364
+ *
17365
+ * @summary Get templateVersion.
17366
+ * @param {string} versionId
17367
+ * @param {*} [options] Override http request option.
17368
+ * @throws {RequiredError}
17369
+ */
17370
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17371
+ /**
17372
+ *
17373
+ * @summary Update templateVersion.
17374
+ * @param {string} versionId
17375
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17376
+ * @param {*} [options] Override http request option.
17377
+ * @throws {RequiredError}
17378
+ */
17379
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
17380
+ /**
17381
+ *
17382
+ * @summary Send templateVersion email.
17383
+ * @param {string} versionId
17384
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17385
+ * @param {*} [options] Override http request option.
17386
+ * @throws {RequiredError}
17387
+ */
17388
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17389
+ };
17390
+ /**
17391
+ * EmailMarketingsApi - factory interface
17392
+ * @export
17393
+ */
17394
+ export declare const EmailMarketingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
17395
+ /**
17396
+ *
17397
+ * @summary Get all templateVersions.
17398
+ * @param {number} [page]
17399
+ * @param {number} [limit]
17400
+ * @param {Date} [lastRetrieved]
17401
+ * @param {*} [options] Override http request option.
17402
+ * @throws {RequiredError}
17403
+ */
17404
+ apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<TemplateVersionsModel>;
17405
+ /**
17406
+ *
17407
+ * @summary Create a templateVersion.
17408
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17409
+ * @param {*} [options] Override http request option.
17410
+ * @throws {RequiredError}
17411
+ */
17412
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
17413
+ /**
17414
+ *
17415
+ * @summary Delete templateVersion.
17416
+ * @param {string} versionId
17417
+ * @param {*} [options] Override http request option.
17418
+ * @throws {RequiredError}
17419
+ */
17420
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: any): AxiosPromise<boolean>;
17421
+ /**
17422
+ *
17423
+ * @summary Get templateVersion.
17424
+ * @param {string} versionId
17425
+ * @param {*} [options] Override http request option.
17426
+ * @throws {RequiredError}
17427
+ */
17428
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: any): AxiosPromise<TemplateVersionModel>;
17429
+ /**
17430
+ *
17431
+ * @summary Update templateVersion.
17432
+ * @param {string} versionId
17433
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17434
+ * @param {*} [options] Override http request option.
17435
+ * @throws {RequiredError}
17436
+ */
17437
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
17438
+ /**
17439
+ *
17440
+ * @summary Send templateVersion email.
17441
+ * @param {string} versionId
17442
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17443
+ * @param {*} [options] Override http request option.
17444
+ * @throws {RequiredError}
17445
+ */
17446
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: any): AxiosPromise<boolean>;
17447
+ };
17448
+ /**
17449
+ * EmailMarketingsApi - object-oriented interface
17450
+ * @export
17451
+ * @class EmailMarketingsApi
17452
+ * @extends {BaseAPI}
17453
+ */
17454
+ export declare class EmailMarketingsApi extends BaseAPI {
17455
+ /**
17456
+ *
17457
+ * @summary Get all templateVersions.
17458
+ * @param {number} [page]
17459
+ * @param {number} [limit]
17460
+ * @param {Date} [lastRetrieved]
17461
+ * @param {*} [options] Override http request option.
17462
+ * @throws {RequiredError}
17463
+ * @memberof EmailMarketingsApi
17464
+ */
17465
+ apiV1EmailmarketingsVersionsGet(page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionsModel>>;
17466
+ /**
17467
+ *
17468
+ * @summary Create a templateVersion.
17469
+ * @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
17470
+ * @param {*} [options] Override http request option.
17471
+ * @throws {RequiredError}
17472
+ * @memberof EmailMarketingsApi
17473
+ */
17474
+ apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
17475
+ /**
17476
+ *
17477
+ * @summary Delete templateVersion.
17478
+ * @param {string} versionId
17479
+ * @param {*} [options] Override http request option.
17480
+ * @throws {RequiredError}
17481
+ * @memberof EmailMarketingsApi
17482
+ */
17483
+ apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17484
+ /**
17485
+ *
17486
+ * @summary Get templateVersion.
17487
+ * @param {string} versionId
17488
+ * @param {*} [options] Override http request option.
17489
+ * @throws {RequiredError}
17490
+ * @memberof EmailMarketingsApi
17491
+ */
17492
+ apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
17493
+ /**
17494
+ *
17495
+ * @summary Update templateVersion.
17496
+ * @param {string} versionId
17497
+ * @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
17498
+ * @param {*} [options] Override http request option.
17499
+ * @throws {RequiredError}
17500
+ * @memberof EmailMarketingsApi
17501
+ */
17502
+ apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
17503
+ /**
17504
+ *
17505
+ * @summary Send templateVersion email.
17506
+ * @param {string} versionId
17507
+ * @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
17508
+ * @param {*} [options] Override http request option.
17509
+ * @throws {RequiredError}
17510
+ * @memberof EmailMarketingsApi
17511
+ */
17512
+ apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
17513
+ }
16901
17514
  /**
16902
17515
  * FaqCategoriesApi - axios parameter creator
16903
17516
  * @export
@@ -17291,14 +17904,17 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
17291
17904
  * @param {string} [title]
17292
17905
  * @param {string} [content]
17293
17906
  * @param {string} [categoryId]
17907
+ * @param {string} [hospitalId]
17908
+ * @param {string} [hospitalName]
17294
17909
  * @param {string} [languageCode]
17910
+ * @param {boolean} [showHidden]
17295
17911
  * @param {number} [page]
17296
17912
  * @param {number} [limit]
17297
17913
  * @param {Date} [lastRetrieved]
17298
17914
  * @param {*} [options] Override http request option.
17299
17915
  * @throws {RequiredError}
17300
17916
  */
17301
- apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17917
+ apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17302
17918
  /**
17303
17919
  *
17304
17920
  * @summary Create a faq.
@@ -17405,14 +18021,17 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
17405
18021
  * @param {string} [title]
17406
18022
  * @param {string} [content]
17407
18023
  * @param {string} [categoryId]
18024
+ * @param {string} [hospitalId]
18025
+ * @param {string} [hospitalName]
17408
18026
  * @param {string} [languageCode]
18027
+ * @param {boolean} [showHidden]
17409
18028
  * @param {number} [page]
17410
18029
  * @param {number} [limit]
17411
18030
  * @param {Date} [lastRetrieved]
17412
18031
  * @param {*} [options] Override http request option.
17413
18032
  * @throws {RequiredError}
17414
18033
  */
17415
- apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
18034
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
17416
18035
  /**
17417
18036
  *
17418
18037
  * @summary Create a faq.
@@ -17519,14 +18138,17 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
17519
18138
  * @param {string} [title]
17520
18139
  * @param {string} [content]
17521
18140
  * @param {string} [categoryId]
18141
+ * @param {string} [hospitalId]
18142
+ * @param {string} [hospitalName]
17522
18143
  * @param {string} [languageCode]
18144
+ * @param {boolean} [showHidden]
17523
18145
  * @param {number} [page]
17524
18146
  * @param {number} [limit]
17525
18147
  * @param {Date} [lastRetrieved]
17526
18148
  * @param {*} [options] Override http request option.
17527
18149
  * @throws {RequiredError}
17528
18150
  */
17529
- apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
18151
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
17530
18152
  /**
17531
18153
  *
17532
18154
  * @summary Create a faq.
@@ -17643,7 +18265,10 @@ export declare class FaqsApi extends BaseAPI {
17643
18265
  * @param {string} [title]
17644
18266
  * @param {string} [content]
17645
18267
  * @param {string} [categoryId]
18268
+ * @param {string} [hospitalId]
18269
+ * @param {string} [hospitalName]
17646
18270
  * @param {string} [languageCode]
18271
+ * @param {boolean} [showHidden]
17647
18272
  * @param {number} [page]
17648
18273
  * @param {number} [limit]
17649
18274
  * @param {Date} [lastRetrieved]
@@ -17651,7 +18276,7 @@ export declare class FaqsApi extends BaseAPI {
17651
18276
  * @throws {RequiredError}
17652
18277
  * @memberof FaqsApi
17653
18278
  */
17654
- apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
18279
+ apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
17655
18280
  /**
17656
18281
  *
17657
18282
  * @summary Create a faq.