ch-admin-api-client-typescript 2.5.1 → 2.5.5
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 +605 -36
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +687 -28
- package/package.json +1 -1
- package/src/api.ts +908 -43
package/lib/api.d.ts
CHANGED
|
@@ -2666,6 +2666,12 @@ export interface CountryItemModel {
|
|
|
2666
2666
|
* @memberof CountryItemModel
|
|
2667
2667
|
*/
|
|
2668
2668
|
'auditableEntity'?: AuditableEntity;
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2672
|
+
* @memberof CountryItemModel
|
|
2673
|
+
*/
|
|
2674
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2669
2675
|
/**
|
|
2670
2676
|
*
|
|
2671
2677
|
* @type {boolean}
|
|
@@ -2757,12 +2763,24 @@ export interface CountryModel {
|
|
|
2757
2763
|
* @memberof CountryModel
|
|
2758
2764
|
*/
|
|
2759
2765
|
'auditableEntity'?: AuditableEntity;
|
|
2766
|
+
/**
|
|
2767
|
+
*
|
|
2768
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2769
|
+
* @memberof CountryModel
|
|
2770
|
+
*/
|
|
2771
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2760
2772
|
/**
|
|
2761
2773
|
*
|
|
2762
2774
|
* @type {boolean}
|
|
2763
2775
|
* @memberof CountryModel
|
|
2764
2776
|
*/
|
|
2765
2777
|
'confirmed'?: boolean;
|
|
2778
|
+
/**
|
|
2779
|
+
*
|
|
2780
|
+
* @type {string}
|
|
2781
|
+
* @memberof CountryModel
|
|
2782
|
+
*/
|
|
2783
|
+
'languageCode'?: string | null;
|
|
2766
2784
|
}
|
|
2767
2785
|
/**
|
|
2768
2786
|
*
|
|
@@ -4212,6 +4230,31 @@ export interface CreateTagCommand {
|
|
|
4212
4230
|
*/
|
|
4213
4231
|
'tagId'?: string | null;
|
|
4214
4232
|
}
|
|
4233
|
+
/**
|
|
4234
|
+
*
|
|
4235
|
+
* @export
|
|
4236
|
+
* @interface CreateTemplateVersionCommand
|
|
4237
|
+
*/
|
|
4238
|
+
export interface CreateTemplateVersionCommand {
|
|
4239
|
+
/**
|
|
4240
|
+
*
|
|
4241
|
+
* @type {string}
|
|
4242
|
+
* @memberof CreateTemplateVersionCommand
|
|
4243
|
+
*/
|
|
4244
|
+
'name'?: string | null;
|
|
4245
|
+
/**
|
|
4246
|
+
*
|
|
4247
|
+
* @type {string}
|
|
4248
|
+
* @memberof CreateTemplateVersionCommand
|
|
4249
|
+
*/
|
|
4250
|
+
'subject'?: string | null;
|
|
4251
|
+
/**
|
|
4252
|
+
*
|
|
4253
|
+
* @type {string}
|
|
4254
|
+
* @memberof CreateTemplateVersionCommand
|
|
4255
|
+
*/
|
|
4256
|
+
'htmlContent'?: string | null;
|
|
4257
|
+
}
|
|
4215
4258
|
/**
|
|
4216
4259
|
*
|
|
4217
4260
|
* @export
|
|
@@ -5149,6 +5192,12 @@ export interface DoctorItemModel {
|
|
|
5149
5192
|
* @memberof DoctorItemModel
|
|
5150
5193
|
*/
|
|
5151
5194
|
'consultationFee'?: number | null;
|
|
5195
|
+
/**
|
|
5196
|
+
*
|
|
5197
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5198
|
+
* @memberof DoctorItemModel
|
|
5199
|
+
*/
|
|
5200
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5152
5201
|
/**
|
|
5153
5202
|
*
|
|
5154
5203
|
* @type {boolean}
|
|
@@ -5306,12 +5355,24 @@ export interface DoctorModel {
|
|
|
5306
5355
|
* @memberof DoctorModel
|
|
5307
5356
|
*/
|
|
5308
5357
|
'consultationFee'?: number | null;
|
|
5358
|
+
/**
|
|
5359
|
+
*
|
|
5360
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5361
|
+
* @memberof DoctorModel
|
|
5362
|
+
*/
|
|
5363
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5309
5364
|
/**
|
|
5310
5365
|
*
|
|
5311
5366
|
* @type {boolean}
|
|
5312
5367
|
* @memberof DoctorModel
|
|
5313
5368
|
*/
|
|
5314
5369
|
'confirmed'?: boolean;
|
|
5370
|
+
/**
|
|
5371
|
+
*
|
|
5372
|
+
* @type {string}
|
|
5373
|
+
* @memberof DoctorModel
|
|
5374
|
+
*/
|
|
5375
|
+
'languageCode'?: string | null;
|
|
5315
5376
|
}
|
|
5316
5377
|
/**
|
|
5317
5378
|
*
|
|
@@ -6924,6 +6985,12 @@ export interface HospitalSimpleItemModel {
|
|
|
6924
6985
|
* @memberof HospitalSimpleItemModel
|
|
6925
6986
|
*/
|
|
6926
6987
|
'name'?: string | null;
|
|
6988
|
+
/**
|
|
6989
|
+
*
|
|
6990
|
+
* @type {boolean}
|
|
6991
|
+
* @memberof HospitalSimpleItemModel
|
|
6992
|
+
*/
|
|
6993
|
+
'confirmed'?: boolean;
|
|
6927
6994
|
}
|
|
6928
6995
|
/**
|
|
6929
6996
|
*
|
|
@@ -8660,6 +8727,19 @@ export declare enum RejectReason {
|
|
|
8660
8727
|
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
8661
8728
|
OtherReason = "OtherReason"
|
|
8662
8729
|
}
|
|
8730
|
+
/**
|
|
8731
|
+
*
|
|
8732
|
+
* @export
|
|
8733
|
+
* @interface SendTemplateVersionCommand
|
|
8734
|
+
*/
|
|
8735
|
+
export interface SendTemplateVersionCommand {
|
|
8736
|
+
/**
|
|
8737
|
+
*
|
|
8738
|
+
* @type {string}
|
|
8739
|
+
* @memberof SendTemplateVersionCommand
|
|
8740
|
+
*/
|
|
8741
|
+
'testEmail'?: string | null;
|
|
8742
|
+
}
|
|
8663
8743
|
/**
|
|
8664
8744
|
*
|
|
8665
8745
|
* @export
|
|
@@ -9279,6 +9359,135 @@ export interface TagsModel {
|
|
|
9279
9359
|
*/
|
|
9280
9360
|
'metaData'?: PagedListMetaData;
|
|
9281
9361
|
}
|
|
9362
|
+
/**
|
|
9363
|
+
*
|
|
9364
|
+
* @export
|
|
9365
|
+
* @interface TemplateVersionItemModel
|
|
9366
|
+
*/
|
|
9367
|
+
export interface TemplateVersionItemModel {
|
|
9368
|
+
/**
|
|
9369
|
+
*
|
|
9370
|
+
* @type {string}
|
|
9371
|
+
* @memberof TemplateVersionItemModel
|
|
9372
|
+
*/
|
|
9373
|
+
'id'?: string | null;
|
|
9374
|
+
/**
|
|
9375
|
+
*
|
|
9376
|
+
* @type {string}
|
|
9377
|
+
* @memberof TemplateVersionItemModel
|
|
9378
|
+
*/
|
|
9379
|
+
'templateId'?: string | null;
|
|
9380
|
+
/**
|
|
9381
|
+
*
|
|
9382
|
+
* @type {boolean}
|
|
9383
|
+
* @memberof TemplateVersionItemModel
|
|
9384
|
+
*/
|
|
9385
|
+
'isActive'?: boolean;
|
|
9386
|
+
/**
|
|
9387
|
+
*
|
|
9388
|
+
* @type {string}
|
|
9389
|
+
* @memberof TemplateVersionItemModel
|
|
9390
|
+
*/
|
|
9391
|
+
'name'?: string | null;
|
|
9392
|
+
/**
|
|
9393
|
+
*
|
|
9394
|
+
* @type {string}
|
|
9395
|
+
* @memberof TemplateVersionItemModel
|
|
9396
|
+
*/
|
|
9397
|
+
'htmlContent'?: string | null;
|
|
9398
|
+
/**
|
|
9399
|
+
*
|
|
9400
|
+
* @type {string}
|
|
9401
|
+
* @memberof TemplateVersionItemModel
|
|
9402
|
+
*/
|
|
9403
|
+
'textContent'?: string | null;
|
|
9404
|
+
/**
|
|
9405
|
+
*
|
|
9406
|
+
* @type {string}
|
|
9407
|
+
* @memberof TemplateVersionItemModel
|
|
9408
|
+
*/
|
|
9409
|
+
'subject'?: string | null;
|
|
9410
|
+
/**
|
|
9411
|
+
*
|
|
9412
|
+
* @type {Date}
|
|
9413
|
+
* @memberof TemplateVersionItemModel
|
|
9414
|
+
*/
|
|
9415
|
+
'updatedOn'?: Date;
|
|
9416
|
+
}
|
|
9417
|
+
/**
|
|
9418
|
+
*
|
|
9419
|
+
* @export
|
|
9420
|
+
* @interface TemplateVersionModel
|
|
9421
|
+
*/
|
|
9422
|
+
export interface TemplateVersionModel {
|
|
9423
|
+
/**
|
|
9424
|
+
*
|
|
9425
|
+
* @type {string}
|
|
9426
|
+
* @memberof TemplateVersionModel
|
|
9427
|
+
*/
|
|
9428
|
+
'id'?: string | null;
|
|
9429
|
+
/**
|
|
9430
|
+
*
|
|
9431
|
+
* @type {string}
|
|
9432
|
+
* @memberof TemplateVersionModel
|
|
9433
|
+
*/
|
|
9434
|
+
'templateId'?: string | null;
|
|
9435
|
+
/**
|
|
9436
|
+
*
|
|
9437
|
+
* @type {boolean}
|
|
9438
|
+
* @memberof TemplateVersionModel
|
|
9439
|
+
*/
|
|
9440
|
+
'isActive'?: boolean;
|
|
9441
|
+
/**
|
|
9442
|
+
*
|
|
9443
|
+
* @type {string}
|
|
9444
|
+
* @memberof TemplateVersionModel
|
|
9445
|
+
*/
|
|
9446
|
+
'name'?: string | null;
|
|
9447
|
+
/**
|
|
9448
|
+
*
|
|
9449
|
+
* @type {string}
|
|
9450
|
+
* @memberof TemplateVersionModel
|
|
9451
|
+
*/
|
|
9452
|
+
'htmlContent'?: string | null;
|
|
9453
|
+
/**
|
|
9454
|
+
*
|
|
9455
|
+
* @type {string}
|
|
9456
|
+
* @memberof TemplateVersionModel
|
|
9457
|
+
*/
|
|
9458
|
+
'textContent'?: string | null;
|
|
9459
|
+
/**
|
|
9460
|
+
*
|
|
9461
|
+
* @type {string}
|
|
9462
|
+
* @memberof TemplateVersionModel
|
|
9463
|
+
*/
|
|
9464
|
+
'subject'?: string | null;
|
|
9465
|
+
/**
|
|
9466
|
+
*
|
|
9467
|
+
* @type {Date}
|
|
9468
|
+
* @memberof TemplateVersionModel
|
|
9469
|
+
*/
|
|
9470
|
+
'updatedOn'?: Date;
|
|
9471
|
+
}
|
|
9472
|
+
/**
|
|
9473
|
+
*
|
|
9474
|
+
* @export
|
|
9475
|
+
* @interface TemplateVersionsModel
|
|
9476
|
+
*/
|
|
9477
|
+
export interface TemplateVersionsModel {
|
|
9478
|
+
/**
|
|
9479
|
+
*
|
|
9480
|
+
* @type {Array<TemplateVersionItemModel>}
|
|
9481
|
+
* @memberof TemplateVersionsModel
|
|
9482
|
+
*/
|
|
9483
|
+
'items'?: Array<TemplateVersionItemModel> | null;
|
|
9484
|
+
/**
|
|
9485
|
+
*
|
|
9486
|
+
* @type {PagedListMetaData}
|
|
9487
|
+
* @memberof TemplateVersionsModel
|
|
9488
|
+
*/
|
|
9489
|
+
'metaData'?: PagedListMetaData;
|
|
9490
|
+
}
|
|
9282
9491
|
/**
|
|
9283
9492
|
*
|
|
9284
9493
|
* @export
|
|
@@ -9341,12 +9550,6 @@ export interface UpdateAccreditationCommand {
|
|
|
9341
9550
|
* @interface UpdateArticleCommand
|
|
9342
9551
|
*/
|
|
9343
9552
|
export interface UpdateArticleCommand {
|
|
9344
|
-
/**
|
|
9345
|
-
*
|
|
9346
|
-
* @type {string}
|
|
9347
|
-
* @memberof UpdateArticleCommand
|
|
9348
|
-
*/
|
|
9349
|
-
'languageCode'?: string | null;
|
|
9350
9553
|
/**
|
|
9351
9554
|
*
|
|
9352
9555
|
* @type {string}
|
|
@@ -9401,6 +9604,12 @@ export interface UpdateArticleCommand {
|
|
|
9401
9604
|
* @memberof UpdateArticleCommand
|
|
9402
9605
|
*/
|
|
9403
9606
|
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
9607
|
+
/**
|
|
9608
|
+
*
|
|
9609
|
+
* @type {string}
|
|
9610
|
+
* @memberof UpdateArticleCommand
|
|
9611
|
+
*/
|
|
9612
|
+
'languageCode'?: string | null;
|
|
9404
9613
|
/**
|
|
9405
9614
|
*
|
|
9406
9615
|
* @type {boolean}
|
|
@@ -9683,6 +9892,18 @@ export interface UpdateContributorCommand {
|
|
|
9683
9892
|
* @memberof UpdateContributorCommand
|
|
9684
9893
|
*/
|
|
9685
9894
|
'hospitalId'?: string;
|
|
9895
|
+
/**
|
|
9896
|
+
*
|
|
9897
|
+
* @type {string}
|
|
9898
|
+
* @memberof UpdateContributorCommand
|
|
9899
|
+
*/
|
|
9900
|
+
'languageCode'?: string | null;
|
|
9901
|
+
/**
|
|
9902
|
+
*
|
|
9903
|
+
* @type {boolean}
|
|
9904
|
+
* @memberof UpdateContributorCommand
|
|
9905
|
+
*/
|
|
9906
|
+
'confirmed'?: boolean;
|
|
9686
9907
|
}
|
|
9687
9908
|
/**
|
|
9688
9909
|
*
|
|
@@ -9715,6 +9936,12 @@ export interface UpdateCountryCommand {
|
|
|
9715
9936
|
* @memberof UpdateCountryCommand
|
|
9716
9937
|
*/
|
|
9717
9938
|
'name'?: string | null;
|
|
9939
|
+
/**
|
|
9940
|
+
*
|
|
9941
|
+
* @type {string}
|
|
9942
|
+
* @memberof UpdateCountryCommand
|
|
9943
|
+
*/
|
|
9944
|
+
'slug'?: string | null;
|
|
9718
9945
|
/**
|
|
9719
9946
|
*
|
|
9720
9947
|
* @type {string}
|
|
@@ -9727,6 +9954,18 @@ export interface UpdateCountryCommand {
|
|
|
9727
9954
|
* @memberof UpdateCountryCommand
|
|
9728
9955
|
*/
|
|
9729
9956
|
'content'?: string | null;
|
|
9957
|
+
/**
|
|
9958
|
+
*
|
|
9959
|
+
* @type {string}
|
|
9960
|
+
* @memberof UpdateCountryCommand
|
|
9961
|
+
*/
|
|
9962
|
+
'languageCode'?: string | null;
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {boolean}
|
|
9966
|
+
* @memberof UpdateCountryCommand
|
|
9967
|
+
*/
|
|
9968
|
+
'confirmed'?: boolean;
|
|
9730
9969
|
/**
|
|
9731
9970
|
*
|
|
9732
9971
|
* @type {Array<MediaModel>}
|
|
@@ -9870,12 +10109,6 @@ export interface UpdateDoctorCertificateCommand {
|
|
|
9870
10109
|
* @interface UpdateDoctorCommand
|
|
9871
10110
|
*/
|
|
9872
10111
|
export interface UpdateDoctorCommand {
|
|
9873
|
-
/**
|
|
9874
|
-
*
|
|
9875
|
-
* @type {string}
|
|
9876
|
-
* @memberof UpdateDoctorCommand
|
|
9877
|
-
*/
|
|
9878
|
-
'userName'?: string | null;
|
|
9879
10112
|
/**
|
|
9880
10113
|
*
|
|
9881
10114
|
* @type {string}
|
|
@@ -9966,6 +10199,18 @@ export interface UpdateDoctorCommand {
|
|
|
9966
10199
|
* @memberof UpdateDoctorCommand
|
|
9967
10200
|
*/
|
|
9968
10201
|
'hospitalId'?: string | null;
|
|
10202
|
+
/**
|
|
10203
|
+
*
|
|
10204
|
+
* @type {string}
|
|
10205
|
+
* @memberof UpdateDoctorCommand
|
|
10206
|
+
*/
|
|
10207
|
+
'languageCode'?: string | null;
|
|
10208
|
+
/**
|
|
10209
|
+
*
|
|
10210
|
+
* @type {boolean}
|
|
10211
|
+
* @memberof UpdateDoctorCommand
|
|
10212
|
+
*/
|
|
10213
|
+
'confirmed'?: boolean;
|
|
9969
10214
|
}
|
|
9970
10215
|
/**
|
|
9971
10216
|
*
|
|
@@ -10364,6 +10609,18 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10364
10609
|
* @memberof UpdateHospitalServiceCommand
|
|
10365
10610
|
*/
|
|
10366
10611
|
'order'?: number;
|
|
10612
|
+
/**
|
|
10613
|
+
*
|
|
10614
|
+
* @type {string}
|
|
10615
|
+
* @memberof UpdateHospitalServiceCommand
|
|
10616
|
+
*/
|
|
10617
|
+
'languageCode'?: string | null;
|
|
10618
|
+
/**
|
|
10619
|
+
*
|
|
10620
|
+
* @type {boolean}
|
|
10621
|
+
* @memberof UpdateHospitalServiceCommand
|
|
10622
|
+
*/
|
|
10623
|
+
'confirmed'?: boolean;
|
|
10367
10624
|
}
|
|
10368
10625
|
/**
|
|
10369
10626
|
*
|
|
@@ -10733,12 +10990,24 @@ export interface UpdateSpecialtyCommand {
|
|
|
10733
10990
|
* @memberof UpdateSpecialtyCommand
|
|
10734
10991
|
*/
|
|
10735
10992
|
'content'?: string | null;
|
|
10993
|
+
/**
|
|
10994
|
+
*
|
|
10995
|
+
* @type {string}
|
|
10996
|
+
* @memberof UpdateSpecialtyCommand
|
|
10997
|
+
*/
|
|
10998
|
+
'languageCode'?: string | null;
|
|
10736
10999
|
/**
|
|
10737
11000
|
*
|
|
10738
11001
|
* @type {string}
|
|
10739
11002
|
* @memberof UpdateSpecialtyCommand
|
|
10740
11003
|
*/
|
|
10741
11004
|
'specialtyTypeId'?: string;
|
|
11005
|
+
/**
|
|
11006
|
+
*
|
|
11007
|
+
* @type {boolean}
|
|
11008
|
+
* @memberof UpdateSpecialtyCommand
|
|
11009
|
+
*/
|
|
11010
|
+
'confirmed'?: boolean;
|
|
10742
11011
|
}
|
|
10743
11012
|
/**
|
|
10744
11013
|
*
|
|
@@ -10806,6 +11075,37 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
10806
11075
|
* @memberof UpdateSpecialtyTypeCommand
|
|
10807
11076
|
*/
|
|
10808
11077
|
'confirmed'?: boolean;
|
|
11078
|
+
/**
|
|
11079
|
+
*
|
|
11080
|
+
* @type {string}
|
|
11081
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
11082
|
+
*/
|
|
11083
|
+
'languageCode'?: string | null;
|
|
11084
|
+
}
|
|
11085
|
+
/**
|
|
11086
|
+
*
|
|
11087
|
+
* @export
|
|
11088
|
+
* @interface UpdateTemplateVersionCommand
|
|
11089
|
+
*/
|
|
11090
|
+
export interface UpdateTemplateVersionCommand {
|
|
11091
|
+
/**
|
|
11092
|
+
*
|
|
11093
|
+
* @type {string}
|
|
11094
|
+
* @memberof UpdateTemplateVersionCommand
|
|
11095
|
+
*/
|
|
11096
|
+
'name'?: string | null;
|
|
11097
|
+
/**
|
|
11098
|
+
*
|
|
11099
|
+
* @type {string}
|
|
11100
|
+
* @memberof UpdateTemplateVersionCommand
|
|
11101
|
+
*/
|
|
11102
|
+
'subject'?: string | null;
|
|
11103
|
+
/**
|
|
11104
|
+
*
|
|
11105
|
+
* @type {string}
|
|
11106
|
+
* @memberof UpdateTemplateVersionCommand
|
|
11107
|
+
*/
|
|
11108
|
+
'htmlContent'?: string | null;
|
|
10809
11109
|
}
|
|
10810
11110
|
/**
|
|
10811
11111
|
*
|
|
@@ -13073,6 +13373,12 @@ export declare class CHManagersApi extends BaseAPI {
|
|
|
13073
13373
|
* @export
|
|
13074
13374
|
*/
|
|
13075
13375
|
export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13376
|
+
/**
|
|
13377
|
+
*
|
|
13378
|
+
* @param {*} [options] Override http request option.
|
|
13379
|
+
* @throws {RequiredError}
|
|
13380
|
+
*/
|
|
13381
|
+
apiV1ChatusersCurrentGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13076
13382
|
/**
|
|
13077
13383
|
*
|
|
13078
13384
|
* @summary Get all chatUsers.
|
|
@@ -13124,6 +13430,12 @@ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13124
13430
|
* @export
|
|
13125
13431
|
*/
|
|
13126
13432
|
export declare const ChatUsersApiFp: (configuration?: Configuration | undefined) => {
|
|
13433
|
+
/**
|
|
13434
|
+
*
|
|
13435
|
+
* @param {*} [options] Override http request option.
|
|
13436
|
+
* @throws {RequiredError}
|
|
13437
|
+
*/
|
|
13438
|
+
apiV1ChatusersCurrentGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
13127
13439
|
/**
|
|
13128
13440
|
*
|
|
13129
13441
|
* @summary Get all chatUsers.
|
|
@@ -13175,6 +13487,12 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
13175
13487
|
* @export
|
|
13176
13488
|
*/
|
|
13177
13489
|
export declare const ChatUsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13490
|
+
/**
|
|
13491
|
+
*
|
|
13492
|
+
* @param {*} [options] Override http request option.
|
|
13493
|
+
* @throws {RequiredError}
|
|
13494
|
+
*/
|
|
13495
|
+
apiV1ChatusersCurrentGet(options?: any): AxiosPromise<ChatUserModel>;
|
|
13178
13496
|
/**
|
|
13179
13497
|
*
|
|
13180
13498
|
* @summary Get all chatUsers.
|
|
@@ -13228,6 +13546,13 @@ export declare const ChatUsersApiFactory: (configuration?: Configuration | undef
|
|
|
13228
13546
|
* @extends {BaseAPI}
|
|
13229
13547
|
*/
|
|
13230
13548
|
export declare class ChatUsersApi extends BaseAPI {
|
|
13549
|
+
/**
|
|
13550
|
+
*
|
|
13551
|
+
* @param {*} [options] Override http request option.
|
|
13552
|
+
* @throws {RequiredError}
|
|
13553
|
+
* @memberof ChatUsersApi
|
|
13554
|
+
*/
|
|
13555
|
+
apiV1ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
13231
13556
|
/**
|
|
13232
13557
|
*
|
|
13233
13558
|
* @summary Get all chatUsers.
|
|
@@ -15506,10 +15831,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15506
15831
|
*
|
|
15507
15832
|
* @summary Get Doctor.
|
|
15508
15833
|
* @param {string} doctorId
|
|
15834
|
+
* @param {string} [languageCode]
|
|
15509
15835
|
* @param {*} [options] Override http request option.
|
|
15510
15836
|
* @throws {RequiredError}
|
|
15511
15837
|
*/
|
|
15512
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15838
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15513
15839
|
/**
|
|
15514
15840
|
*
|
|
15515
15841
|
* @summary Get all DoctorMedias.
|
|
@@ -15869,10 +16195,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15869
16195
|
*
|
|
15870
16196
|
* @summary Get Doctor.
|
|
15871
16197
|
* @param {string} doctorId
|
|
16198
|
+
* @param {string} [languageCode]
|
|
15872
16199
|
* @param {*} [options] Override http request option.
|
|
15873
16200
|
* @throws {RequiredError}
|
|
15874
16201
|
*/
|
|
15875
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16202
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15876
16203
|
/**
|
|
15877
16204
|
*
|
|
15878
16205
|
* @summary Get all DoctorMedias.
|
|
@@ -16232,10 +16559,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16232
16559
|
*
|
|
16233
16560
|
* @summary Get Doctor.
|
|
16234
16561
|
* @param {string} doctorId
|
|
16562
|
+
* @param {string} [languageCode]
|
|
16235
16563
|
* @param {*} [options] Override http request option.
|
|
16236
16564
|
* @throws {RequiredError}
|
|
16237
16565
|
*/
|
|
16238
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
16566
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16239
16567
|
/**
|
|
16240
16568
|
*
|
|
16241
16569
|
* @summary Get all DoctorMedias.
|
|
@@ -16612,11 +16940,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16612
16940
|
*
|
|
16613
16941
|
* @summary Get Doctor.
|
|
16614
16942
|
* @param {string} doctorId
|
|
16943
|
+
* @param {string} [languageCode]
|
|
16615
16944
|
* @param {*} [options] Override http request option.
|
|
16616
16945
|
* @throws {RequiredError}
|
|
16617
16946
|
* @memberof DoctorsApi
|
|
16618
16947
|
*/
|
|
16619
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16948
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16620
16949
|
/**
|
|
16621
16950
|
*
|
|
16622
16951
|
* @summary Get all DoctorMedias.
|
|
@@ -16834,6 +17163,246 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16834
17163
|
*/
|
|
16835
17164
|
apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16836
17165
|
}
|
|
17166
|
+
/**
|
|
17167
|
+
* EmailMarketingsApi - axios parameter creator
|
|
17168
|
+
* @export
|
|
17169
|
+
*/
|
|
17170
|
+
export declare const EmailMarketingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17171
|
+
/**
|
|
17172
|
+
*
|
|
17173
|
+
* @summary Get all templateVersions.
|
|
17174
|
+
* @param {number} [page]
|
|
17175
|
+
* @param {number} [limit]
|
|
17176
|
+
* @param {Date} [lastRetrieved]
|
|
17177
|
+
* @param {*} [options] Override http request option.
|
|
17178
|
+
* @throws {RequiredError}
|
|
17179
|
+
*/
|
|
17180
|
+
apiV1EmailmarketingsVersionsGet: (page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17181
|
+
/**
|
|
17182
|
+
*
|
|
17183
|
+
* @summary Create a templateVersion.
|
|
17184
|
+
* @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
|
|
17185
|
+
* @param {*} [options] Override http request option.
|
|
17186
|
+
* @throws {RequiredError}
|
|
17187
|
+
*/
|
|
17188
|
+
apiV1EmailmarketingsVersionsPost: (createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17189
|
+
/**
|
|
17190
|
+
*
|
|
17191
|
+
* @summary Delete templateVersion.
|
|
17192
|
+
* @param {string} versionId
|
|
17193
|
+
* @param {*} [options] Override http request option.
|
|
17194
|
+
* @throws {RequiredError}
|
|
17195
|
+
*/
|
|
17196
|
+
apiV1EmailmarketingsVersionsVersionIdDelete: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17197
|
+
/**
|
|
17198
|
+
*
|
|
17199
|
+
* @summary Get templateVersion.
|
|
17200
|
+
* @param {string} versionId
|
|
17201
|
+
* @param {*} [options] Override http request option.
|
|
17202
|
+
* @throws {RequiredError}
|
|
17203
|
+
*/
|
|
17204
|
+
apiV1EmailmarketingsVersionsVersionIdGet: (versionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17205
|
+
/**
|
|
17206
|
+
*
|
|
17207
|
+
* @summary Update templateVersion.
|
|
17208
|
+
* @param {string} versionId
|
|
17209
|
+
* @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
|
|
17210
|
+
* @param {*} [options] Override http request option.
|
|
17211
|
+
* @throws {RequiredError}
|
|
17212
|
+
*/
|
|
17213
|
+
apiV1EmailmarketingsVersionsVersionIdPut: (versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17214
|
+
/**
|
|
17215
|
+
*
|
|
17216
|
+
* @summary Send templateVersion email.
|
|
17217
|
+
* @param {string} versionId
|
|
17218
|
+
* @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
|
|
17219
|
+
* @param {*} [options] Override http request option.
|
|
17220
|
+
* @throws {RequiredError}
|
|
17221
|
+
*/
|
|
17222
|
+
apiV1EmailmarketingsVersionsVersionIdSendPost: (versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17223
|
+
};
|
|
17224
|
+
/**
|
|
17225
|
+
* EmailMarketingsApi - functional programming interface
|
|
17226
|
+
* @export
|
|
17227
|
+
*/
|
|
17228
|
+
export declare const EmailMarketingsApiFp: (configuration?: Configuration | undefined) => {
|
|
17229
|
+
/**
|
|
17230
|
+
*
|
|
17231
|
+
* @summary Get all templateVersions.
|
|
17232
|
+
* @param {number} [page]
|
|
17233
|
+
* @param {number} [limit]
|
|
17234
|
+
* @param {Date} [lastRetrieved]
|
|
17235
|
+
* @param {*} [options] Override http request option.
|
|
17236
|
+
* @throws {RequiredError}
|
|
17237
|
+
*/
|
|
17238
|
+
apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionsModel>>;
|
|
17239
|
+
/**
|
|
17240
|
+
*
|
|
17241
|
+
* @summary Create a templateVersion.
|
|
17242
|
+
* @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
|
|
17243
|
+
* @param {*} [options] Override http request option.
|
|
17244
|
+
* @throws {RequiredError}
|
|
17245
|
+
*/
|
|
17246
|
+
apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
|
|
17247
|
+
/**
|
|
17248
|
+
*
|
|
17249
|
+
* @summary Delete templateVersion.
|
|
17250
|
+
* @param {string} versionId
|
|
17251
|
+
* @param {*} [options] Override http request option.
|
|
17252
|
+
* @throws {RequiredError}
|
|
17253
|
+
*/
|
|
17254
|
+
apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
17255
|
+
/**
|
|
17256
|
+
*
|
|
17257
|
+
* @summary Get templateVersion.
|
|
17258
|
+
* @param {string} versionId
|
|
17259
|
+
* @param {*} [options] Override http request option.
|
|
17260
|
+
* @throws {RequiredError}
|
|
17261
|
+
*/
|
|
17262
|
+
apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
|
|
17263
|
+
/**
|
|
17264
|
+
*
|
|
17265
|
+
* @summary Update templateVersion.
|
|
17266
|
+
* @param {string} versionId
|
|
17267
|
+
* @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
|
|
17268
|
+
* @param {*} [options] Override http request option.
|
|
17269
|
+
* @throws {RequiredError}
|
|
17270
|
+
*/
|
|
17271
|
+
apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionModel>>;
|
|
17272
|
+
/**
|
|
17273
|
+
*
|
|
17274
|
+
* @summary Send templateVersion email.
|
|
17275
|
+
* @param {string} versionId
|
|
17276
|
+
* @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
|
|
17277
|
+
* @param {*} [options] Override http request option.
|
|
17278
|
+
* @throws {RequiredError}
|
|
17279
|
+
*/
|
|
17280
|
+
apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
17281
|
+
};
|
|
17282
|
+
/**
|
|
17283
|
+
* EmailMarketingsApi - factory interface
|
|
17284
|
+
* @export
|
|
17285
|
+
*/
|
|
17286
|
+
export declare const EmailMarketingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17287
|
+
/**
|
|
17288
|
+
*
|
|
17289
|
+
* @summary Get all templateVersions.
|
|
17290
|
+
* @param {number} [page]
|
|
17291
|
+
* @param {number} [limit]
|
|
17292
|
+
* @param {Date} [lastRetrieved]
|
|
17293
|
+
* @param {*} [options] Override http request option.
|
|
17294
|
+
* @throws {RequiredError}
|
|
17295
|
+
*/
|
|
17296
|
+
apiV1EmailmarketingsVersionsGet(page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<TemplateVersionsModel>;
|
|
17297
|
+
/**
|
|
17298
|
+
*
|
|
17299
|
+
* @summary Create a templateVersion.
|
|
17300
|
+
* @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
|
|
17301
|
+
* @param {*} [options] Override http request option.
|
|
17302
|
+
* @throws {RequiredError}
|
|
17303
|
+
*/
|
|
17304
|
+
apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
|
|
17305
|
+
/**
|
|
17306
|
+
*
|
|
17307
|
+
* @summary Delete templateVersion.
|
|
17308
|
+
* @param {string} versionId
|
|
17309
|
+
* @param {*} [options] Override http request option.
|
|
17310
|
+
* @throws {RequiredError}
|
|
17311
|
+
*/
|
|
17312
|
+
apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: any): AxiosPromise<boolean>;
|
|
17313
|
+
/**
|
|
17314
|
+
*
|
|
17315
|
+
* @summary Get templateVersion.
|
|
17316
|
+
* @param {string} versionId
|
|
17317
|
+
* @param {*} [options] Override http request option.
|
|
17318
|
+
* @throws {RequiredError}
|
|
17319
|
+
*/
|
|
17320
|
+
apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: any): AxiosPromise<TemplateVersionModel>;
|
|
17321
|
+
/**
|
|
17322
|
+
*
|
|
17323
|
+
* @summary Update templateVersion.
|
|
17324
|
+
* @param {string} versionId
|
|
17325
|
+
* @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
|
|
17326
|
+
* @param {*} [options] Override http request option.
|
|
17327
|
+
* @throws {RequiredError}
|
|
17328
|
+
*/
|
|
17329
|
+
apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand | undefined, options?: any): AxiosPromise<TemplateVersionModel>;
|
|
17330
|
+
/**
|
|
17331
|
+
*
|
|
17332
|
+
* @summary Send templateVersion email.
|
|
17333
|
+
* @param {string} versionId
|
|
17334
|
+
* @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
|
|
17335
|
+
* @param {*} [options] Override http request option.
|
|
17336
|
+
* @throws {RequiredError}
|
|
17337
|
+
*/
|
|
17338
|
+
apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
17339
|
+
};
|
|
17340
|
+
/**
|
|
17341
|
+
* EmailMarketingsApi - object-oriented interface
|
|
17342
|
+
* @export
|
|
17343
|
+
* @class EmailMarketingsApi
|
|
17344
|
+
* @extends {BaseAPI}
|
|
17345
|
+
*/
|
|
17346
|
+
export declare class EmailMarketingsApi extends BaseAPI {
|
|
17347
|
+
/**
|
|
17348
|
+
*
|
|
17349
|
+
* @summary Get all templateVersions.
|
|
17350
|
+
* @param {number} [page]
|
|
17351
|
+
* @param {number} [limit]
|
|
17352
|
+
* @param {Date} [lastRetrieved]
|
|
17353
|
+
* @param {*} [options] Override http request option.
|
|
17354
|
+
* @throws {RequiredError}
|
|
17355
|
+
* @memberof EmailMarketingsApi
|
|
17356
|
+
*/
|
|
17357
|
+
apiV1EmailmarketingsVersionsGet(page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionsModel>>;
|
|
17358
|
+
/**
|
|
17359
|
+
*
|
|
17360
|
+
* @summary Create a templateVersion.
|
|
17361
|
+
* @param {CreateTemplateVersionCommand} [createTemplateVersionCommand]
|
|
17362
|
+
* @param {*} [options] Override http request option.
|
|
17363
|
+
* @throws {RequiredError}
|
|
17364
|
+
* @memberof EmailMarketingsApi
|
|
17365
|
+
*/
|
|
17366
|
+
apiV1EmailmarketingsVersionsPost(createTemplateVersionCommand?: CreateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
|
|
17367
|
+
/**
|
|
17368
|
+
*
|
|
17369
|
+
* @summary Delete templateVersion.
|
|
17370
|
+
* @param {string} versionId
|
|
17371
|
+
* @param {*} [options] Override http request option.
|
|
17372
|
+
* @throws {RequiredError}
|
|
17373
|
+
* @memberof EmailMarketingsApi
|
|
17374
|
+
*/
|
|
17375
|
+
apiV1EmailmarketingsVersionsVersionIdDelete(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17376
|
+
/**
|
|
17377
|
+
*
|
|
17378
|
+
* @summary Get templateVersion.
|
|
17379
|
+
* @param {string} versionId
|
|
17380
|
+
* @param {*} [options] Override http request option.
|
|
17381
|
+
* @throws {RequiredError}
|
|
17382
|
+
* @memberof EmailMarketingsApi
|
|
17383
|
+
*/
|
|
17384
|
+
apiV1EmailmarketingsVersionsVersionIdGet(versionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
|
|
17385
|
+
/**
|
|
17386
|
+
*
|
|
17387
|
+
* @summary Update templateVersion.
|
|
17388
|
+
* @param {string} versionId
|
|
17389
|
+
* @param {UpdateTemplateVersionCommand} [updateTemplateVersionCommand]
|
|
17390
|
+
* @param {*} [options] Override http request option.
|
|
17391
|
+
* @throws {RequiredError}
|
|
17392
|
+
* @memberof EmailMarketingsApi
|
|
17393
|
+
*/
|
|
17394
|
+
apiV1EmailmarketingsVersionsVersionIdPut(versionId: string, updateTemplateVersionCommand?: UpdateTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplateVersionModel>>;
|
|
17395
|
+
/**
|
|
17396
|
+
*
|
|
17397
|
+
* @summary Send templateVersion email.
|
|
17398
|
+
* @param {string} versionId
|
|
17399
|
+
* @param {SendTemplateVersionCommand} [sendTemplateVersionCommand]
|
|
17400
|
+
* @param {*} [options] Override http request option.
|
|
17401
|
+
* @throws {RequiredError}
|
|
17402
|
+
* @memberof EmailMarketingsApi
|
|
17403
|
+
*/
|
|
17404
|
+
apiV1EmailmarketingsVersionsVersionIdSendPost(versionId: string, sendTemplateVersionCommand?: SendTemplateVersionCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17405
|
+
}
|
|
16837
17406
|
/**
|
|
16838
17407
|
* FaqCategoriesApi - axios parameter creator
|
|
16839
17408
|
* @export
|
|
@@ -16850,7 +17419,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16850
17419
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16851
17420
|
/**
|
|
16852
17421
|
*
|
|
16853
|
-
* @summary Delete
|
|
17422
|
+
* @summary Delete FaqCategory.
|
|
16854
17423
|
* @param {string} faqCategoryId
|
|
16855
17424
|
* @param {boolean} [forceDelete]
|
|
16856
17425
|
* @param {*} [options] Override http request option.
|
|
@@ -16859,7 +17428,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16859
17428
|
apiV1FaqcategoriesFaqCategoryIdDelete: (faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16860
17429
|
/**
|
|
16861
17430
|
*
|
|
16862
|
-
* @summary Get
|
|
17431
|
+
* @summary Get FaqCategory.
|
|
16863
17432
|
* @param {string} faqCategoryId
|
|
16864
17433
|
* @param {string} [languageCode]
|
|
16865
17434
|
* @param {*} [options] Override http request option.
|
|
@@ -16868,7 +17437,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16868
17437
|
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16869
17438
|
/**
|
|
16870
17439
|
*
|
|
16871
|
-
* @summary Update
|
|
17440
|
+
* @summary Update FaqCategory.
|
|
16872
17441
|
* @param {string} faqCategoryId
|
|
16873
17442
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
16874
17443
|
* @param {*} [options] Override http request option.
|
|
@@ -16892,7 +17461,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16892
17461
|
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16893
17462
|
/**
|
|
16894
17463
|
*
|
|
16895
|
-
* @summary Create a
|
|
17464
|
+
* @summary Create a FaqCategory.
|
|
16896
17465
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
16897
17466
|
* @param {*} [options] Override http request option.
|
|
16898
17467
|
* @throws {RequiredError}
|
|
@@ -16900,7 +17469,7 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
16900
17469
|
apiV1FaqcategoriesPost: (createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16901
17470
|
/**
|
|
16902
17471
|
*
|
|
16903
|
-
* @summary Get
|
|
17472
|
+
* @summary Get FaqCategory by slug.
|
|
16904
17473
|
* @param {string} slug
|
|
16905
17474
|
* @param {string} [languageCode]
|
|
16906
17475
|
* @param {*} [options] Override http request option.
|
|
@@ -16924,7 +17493,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16924
17493
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
16925
17494
|
/**
|
|
16926
17495
|
*
|
|
16927
|
-
* @summary Delete
|
|
17496
|
+
* @summary Delete FaqCategory.
|
|
16928
17497
|
* @param {string} faqCategoryId
|
|
16929
17498
|
* @param {boolean} [forceDelete]
|
|
16930
17499
|
* @param {*} [options] Override http request option.
|
|
@@ -16933,7 +17502,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16933
17502
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16934
17503
|
/**
|
|
16935
17504
|
*
|
|
16936
|
-
* @summary Get
|
|
17505
|
+
* @summary Get FaqCategory.
|
|
16937
17506
|
* @param {string} faqCategoryId
|
|
16938
17507
|
* @param {string} [languageCode]
|
|
16939
17508
|
* @param {*} [options] Override http request option.
|
|
@@ -16942,7 +17511,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16942
17511
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16943
17512
|
/**
|
|
16944
17513
|
*
|
|
16945
|
-
* @summary Update
|
|
17514
|
+
* @summary Update FaqCategory.
|
|
16946
17515
|
* @param {string} faqCategoryId
|
|
16947
17516
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
16948
17517
|
* @param {*} [options] Override http request option.
|
|
@@ -16966,7 +17535,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16966
17535
|
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: 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<FaqCategoriesModel>>;
|
|
16967
17536
|
/**
|
|
16968
17537
|
*
|
|
16969
|
-
* @summary Create a
|
|
17538
|
+
* @summary Create a FaqCategory.
|
|
16970
17539
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
16971
17540
|
* @param {*} [options] Override http request option.
|
|
16972
17541
|
* @throws {RequiredError}
|
|
@@ -16974,7 +17543,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16974
17543
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16975
17544
|
/**
|
|
16976
17545
|
*
|
|
16977
|
-
* @summary Get
|
|
17546
|
+
* @summary Get FaqCategory by slug.
|
|
16978
17547
|
* @param {string} slug
|
|
16979
17548
|
* @param {string} [languageCode]
|
|
16980
17549
|
* @param {*} [options] Override http request option.
|
|
@@ -16998,7 +17567,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
16998
17567
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<Array<FaqCategoryBreadCrumbModel>>;
|
|
16999
17568
|
/**
|
|
17000
17569
|
*
|
|
17001
|
-
* @summary Delete
|
|
17570
|
+
* @summary Delete FaqCategory.
|
|
17002
17571
|
* @param {string} faqCategoryId
|
|
17003
17572
|
* @param {boolean} [forceDelete]
|
|
17004
17573
|
* @param {*} [options] Override http request option.
|
|
@@ -17007,7 +17576,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17007
17576
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
|
|
17008
17577
|
/**
|
|
17009
17578
|
*
|
|
17010
|
-
* @summary Get
|
|
17579
|
+
* @summary Get FaqCategory.
|
|
17011
17580
|
* @param {string} faqCategoryId
|
|
17012
17581
|
* @param {string} [languageCode]
|
|
17013
17582
|
* @param {*} [options] Override http request option.
|
|
@@ -17016,7 +17585,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17016
17585
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
17017
17586
|
/**
|
|
17018
17587
|
*
|
|
17019
|
-
* @summary Update
|
|
17588
|
+
* @summary Update FaqCategory.
|
|
17020
17589
|
* @param {string} faqCategoryId
|
|
17021
17590
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
17022
17591
|
* @param {*} [options] Override http request option.
|
|
@@ -17040,7 +17609,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17040
17609
|
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
17041
17610
|
/**
|
|
17042
17611
|
*
|
|
17043
|
-
* @summary Create a
|
|
17612
|
+
* @summary Create a FaqCategory.
|
|
17044
17613
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
17045
17614
|
* @param {*} [options] Override http request option.
|
|
17046
17615
|
* @throws {RequiredError}
|
|
@@ -17048,7 +17617,7 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
17048
17617
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
17049
17618
|
/**
|
|
17050
17619
|
*
|
|
17051
|
-
* @summary Get
|
|
17620
|
+
* @summary Get FaqCategory by slug.
|
|
17052
17621
|
* @param {string} slug
|
|
17053
17622
|
* @param {string} [languageCode]
|
|
17054
17623
|
* @param {*} [options] Override http request option.
|
|
@@ -17075,7 +17644,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17075
17644
|
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[]>>;
|
|
17076
17645
|
/**
|
|
17077
17646
|
*
|
|
17078
|
-
* @summary Delete
|
|
17647
|
+
* @summary Delete FaqCategory.
|
|
17079
17648
|
* @param {string} faqCategoryId
|
|
17080
17649
|
* @param {boolean} [forceDelete]
|
|
17081
17650
|
* @param {*} [options] Override http request option.
|
|
@@ -17085,7 +17654,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17085
17654
|
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17086
17655
|
/**
|
|
17087
17656
|
*
|
|
17088
|
-
* @summary Get
|
|
17657
|
+
* @summary Get FaqCategory.
|
|
17089
17658
|
* @param {string} faqCategoryId
|
|
17090
17659
|
* @param {string} [languageCode]
|
|
17091
17660
|
* @param {*} [options] Override http request option.
|
|
@@ -17095,7 +17664,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17095
17664
|
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17096
17665
|
/**
|
|
17097
17666
|
*
|
|
17098
|
-
* @summary Update
|
|
17667
|
+
* @summary Update FaqCategory.
|
|
17099
17668
|
* @param {string} faqCategoryId
|
|
17100
17669
|
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
17101
17670
|
* @param {*} [options] Override http request option.
|
|
@@ -17121,7 +17690,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17121
17690
|
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
17122
17691
|
/**
|
|
17123
17692
|
*
|
|
17124
|
-
* @summary Create a
|
|
17693
|
+
* @summary Create a FaqCategory.
|
|
17125
17694
|
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
17126
17695
|
* @param {*} [options] Override http request option.
|
|
17127
17696
|
* @throws {RequiredError}
|
|
@@ -17130,7 +17699,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
17130
17699
|
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17131
17700
|
/**
|
|
17132
17701
|
*
|
|
17133
|
-
* @summary Get
|
|
17702
|
+
* @summary Get FaqCategory by slug.
|
|
17134
17703
|
* @param {string} slug
|
|
17135
17704
|
* @param {string} [languageCode]
|
|
17136
17705
|
* @param {*} [options] Override http request option.
|