ch-admin-api-client-typescript 2.2.8 → 2.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -879,6 +879,50 @@ export interface ArticleTagItemModel {
879
879
  */
880
880
  'order'?: number;
881
881
  }
882
+ /**
883
+ *
884
+ * @export
885
+ * @interface ArticleTagModel
886
+ */
887
+ export interface ArticleTagModel {
888
+ /**
889
+ *
890
+ * @type {string}
891
+ * @memberof ArticleTagModel
892
+ */
893
+ 'articleId'?: string;
894
+ /**
895
+ *
896
+ * @type {string}
897
+ * @memberof ArticleTagModel
898
+ */
899
+ 'tagId'?: string | null;
900
+ /**
901
+ *
902
+ * @type {number}
903
+ * @memberof ArticleTagModel
904
+ */
905
+ 'order'?: number;
906
+ }
907
+ /**
908
+ *
909
+ * @export
910
+ * @interface ArticleTagsModel
911
+ */
912
+ export interface ArticleTagsModel {
913
+ /**
914
+ *
915
+ * @type {Array<ArticleTagItemModel>}
916
+ * @memberof ArticleTagsModel
917
+ */
918
+ 'items'?: Array<ArticleTagItemModel> | null;
919
+ /**
920
+ *
921
+ * @type {PagedListMetaData}
922
+ * @memberof ArticleTagsModel
923
+ */
924
+ 'metaData'?: PagedListMetaData;
925
+ }
882
926
  /**
883
927
  *
884
928
  * @export
@@ -1639,6 +1683,19 @@ export interface BookingsModel {
1639
1683
  */
1640
1684
  'metaData'?: PagedListMetaData;
1641
1685
  }
1686
+ /**
1687
+ *
1688
+ * @export
1689
+ * @interface ChangeEmailCommand
1690
+ */
1691
+ export interface ChangeEmailCommand {
1692
+ /**
1693
+ *
1694
+ * @type {string}
1695
+ * @memberof ChangeEmailCommand
1696
+ */
1697
+ 'email'?: string | null;
1698
+ }
1642
1699
  /**
1643
1700
  *
1644
1701
  * @export
@@ -1810,6 +1867,19 @@ export interface CommunicationUserTokenModel {
1810
1867
  */
1811
1868
  'gateway'?: string | null;
1812
1869
  }
1870
+ /**
1871
+ *
1872
+ * @export
1873
+ * @interface ConfirmEmailCommand
1874
+ */
1875
+ export interface ConfirmEmailCommand {
1876
+ /**
1877
+ *
1878
+ * @type {string}
1879
+ * @memberof ConfirmEmailCommand
1880
+ */
1881
+ 'code'?: string | null;
1882
+ }
1813
1883
  /**
1814
1884
  *
1815
1885
  * @export
@@ -3301,6 +3371,25 @@ export interface CreateArticleSourceCommand {
3301
3371
  */
3302
3372
  'order'?: number;
3303
3373
  }
3374
+ /**
3375
+ *
3376
+ * @export
3377
+ * @interface CreateArticleTagCommand
3378
+ */
3379
+ export interface CreateArticleTagCommand {
3380
+ /**
3381
+ *
3382
+ * @type {string}
3383
+ * @memberof CreateArticleTagCommand
3384
+ */
3385
+ 'articleId'?: string;
3386
+ /**
3387
+ *
3388
+ * @type {string}
3389
+ * @memberof CreateArticleTagCommand
3390
+ */
3391
+ 'tagId'?: string | null;
3392
+ }
3304
3393
  /**
3305
3394
  *
3306
3395
  * @export
@@ -4064,6 +4153,91 @@ export interface CreateHospitalSpecialtyCommand {
4064
4153
  */
4065
4154
  'order'?: number;
4066
4155
  }
4156
+ /**
4157
+ *
4158
+ * @export
4159
+ * @interface CreateManagerCommand
4160
+ */
4161
+ export interface CreateManagerCommand {
4162
+ /**
4163
+ *
4164
+ * @type {string}
4165
+ * @memberof CreateManagerCommand
4166
+ */
4167
+ 'firstName'?: string | null;
4168
+ /**
4169
+ *
4170
+ * @type {string}
4171
+ * @memberof CreateManagerCommand
4172
+ */
4173
+ 'lastName'?: string | null;
4174
+ /**
4175
+ *
4176
+ * @type {string}
4177
+ * @memberof CreateManagerCommand
4178
+ */
4179
+ 'phone'?: string | null;
4180
+ /**
4181
+ *
4182
+ * @type {string}
4183
+ * @memberof CreateManagerCommand
4184
+ */
4185
+ 'photo'?: string | null;
4186
+ /**
4187
+ *
4188
+ * @type {string}
4189
+ * @memberof CreateManagerCommand
4190
+ */
4191
+ 'photoThumbnail'?: string | null;
4192
+ /**
4193
+ *
4194
+ * @type {Gender}
4195
+ * @memberof CreateManagerCommand
4196
+ */
4197
+ 'gender'?: Gender;
4198
+ /**
4199
+ *
4200
+ * @type {Date}
4201
+ * @memberof CreateManagerCommand
4202
+ */
4203
+ 'dateOfBirth'?: Date | null;
4204
+ /**
4205
+ *
4206
+ * @type {Array<MediaModel>}
4207
+ * @memberof CreateManagerCommand
4208
+ */
4209
+ 'medias'?: Array<MediaModel> | null;
4210
+ /**
4211
+ *
4212
+ * @type {Array<UserLanguageModel>}
4213
+ * @memberof CreateManagerCommand
4214
+ */
4215
+ 'languages'?: Array<UserLanguageModel> | null;
4216
+ /**
4217
+ *
4218
+ * @type {Array<UserLocationModel>}
4219
+ * @memberof CreateManagerCommand
4220
+ */
4221
+ 'locations'?: Array<UserLocationModel> | null;
4222
+ /**
4223
+ *
4224
+ * @type {string}
4225
+ * @memberof CreateManagerCommand
4226
+ */
4227
+ 'userName'?: string | null;
4228
+ /**
4229
+ *
4230
+ * @type {string}
4231
+ * @memberof CreateManagerCommand
4232
+ */
4233
+ 'email'?: string | null;
4234
+ /**
4235
+ *
4236
+ * @type {string}
4237
+ * @memberof CreateManagerCommand
4238
+ */
4239
+ 'hospitalId'?: string;
4240
+ }
4067
4241
  /**
4068
4242
  *
4069
4243
  * @export
@@ -4101,6 +4275,74 @@ export interface CreateMediaCommand {
4101
4275
  */
4102
4276
  'order'?: number;
4103
4277
  }
4278
+ /**
4279
+ *
4280
+ * @export
4281
+ * @interface CreatePlanCommand
4282
+ */
4283
+ export interface CreatePlanCommand {
4284
+ /**
4285
+ *
4286
+ * @type {string}
4287
+ * @memberof CreatePlanCommand
4288
+ */
4289
+ 'name'?: string | null;
4290
+ /**
4291
+ *
4292
+ * @type {number}
4293
+ * @memberof CreatePlanCommand
4294
+ */
4295
+ 'memberLimit'?: number;
4296
+ /**
4297
+ *
4298
+ * @type {number}
4299
+ * @memberof CreatePlanCommand
4300
+ */
4301
+ 'unitPrice'?: number;
4302
+ /**
4303
+ *
4304
+ * @type {string}
4305
+ * @memberof CreatePlanCommand
4306
+ */
4307
+ 'stripePriceId'?: string | null;
4308
+ /**
4309
+ *
4310
+ * @type {RecurringInterval}
4311
+ * @memberof CreatePlanCommand
4312
+ */
4313
+ 'interval'?: RecurringInterval;
4314
+ /**
4315
+ *
4316
+ * @type {boolean}
4317
+ * @memberof CreatePlanCommand
4318
+ */
4319
+ 'isActive'?: boolean;
4320
+ /**
4321
+ *
4322
+ * @type {number}
4323
+ * @memberof CreatePlanCommand
4324
+ */
4325
+ 'order'?: number;
4326
+ }
4327
+ /**
4328
+ *
4329
+ * @export
4330
+ * @interface CreatePlanHospitalCommand
4331
+ */
4332
+ export interface CreatePlanHospitalCommand {
4333
+ /**
4334
+ *
4335
+ * @type {string}
4336
+ * @memberof CreatePlanHospitalCommand
4337
+ */
4338
+ 'hospitalId'?: string;
4339
+ /**
4340
+ *
4341
+ * @type {number}
4342
+ * @memberof CreatePlanHospitalCommand
4343
+ */
4344
+ 'order'?: number;
4345
+ }
4104
4346
  /**
4105
4347
  *
4106
4348
  * @export
@@ -4916,6 +5158,19 @@ export interface DealsModel {
4916
5158
  */
4917
5159
  'metaData'?: PagedListMetaData;
4918
5160
  }
5161
+ /**
5162
+ *
5163
+ * @export
5164
+ * @interface DeleteArticleTagCommand
5165
+ */
5166
+ export interface DeleteArticleTagCommand {
5167
+ /**
5168
+ *
5169
+ * @type {string}
5170
+ * @memberof DeleteArticleTagCommand
5171
+ */
5172
+ 'tagId'?: string | null;
5173
+ }
4919
5174
  /**
4920
5175
  *
4921
5176
  * @export
@@ -8724,83 +8979,284 @@ export interface ManagerAffiliation {
8724
8979
  /**
8725
8980
  *
8726
8981
  * @export
8727
- * @enum {string}
8728
- */
8729
- export declare enum MarketingType {
8730
- Both = "Both",
8731
- GeneralHealth = "GeneralHealth",
8732
- Beauty = "Beauty"
8733
- }
8734
- /**
8735
- *
8736
- * @export
8737
- * @interface Media
8982
+ * @interface ManagerAffiliationModel
8738
8983
  */
8739
- export interface Media {
8984
+ export interface ManagerAffiliationModel {
8740
8985
  /**
8741
8986
  *
8742
8987
  * @type {string}
8743
- * @memberof Media
8988
+ * @memberof ManagerAffiliationModel
8744
8989
  */
8745
- 'id'?: string;
8990
+ 'hospitalId'?: string;
8746
8991
  /**
8747
8992
  *
8748
- * @type {MediaType}
8749
- * @memberof Media
8993
+ * @type {string}
8994
+ * @memberof ManagerAffiliationModel
8750
8995
  */
8751
- 'mediaType'?: MediaType;
8996
+ 'hospitalName'?: string | null;
8752
8997
  /**
8753
8998
  *
8754
8999
  * @type {string}
8755
- * @memberof Media
9000
+ * @memberof ManagerAffiliationModel
8756
9001
  */
8757
- 'url'?: string | null;
9002
+ 'hospitalSlug'?: string | null;
8758
9003
  /**
8759
9004
  *
8760
9005
  * @type {string}
8761
- * @memberof Media
9006
+ * @memberof ManagerAffiliationModel
8762
9007
  */
8763
- 'thumbnailUrl'?: string | null;
9008
+ 'countryId'?: string;
8764
9009
  /**
8765
9010
  *
8766
9011
  * @type {string}
8767
- * @memberof Media
9012
+ * @memberof ManagerAffiliationModel
8768
9013
  */
8769
- 'description'?: string | null;
9014
+ 'countryName'?: string | null;
8770
9015
  /**
8771
9016
  *
8772
- * @type {number}
8773
- * @memberof Media
9017
+ * @type {string}
9018
+ * @memberof ManagerAffiliationModel
8774
9019
  */
8775
- 'height'?: number;
9020
+ 'stateName'?: string | null;
8776
9021
  /**
8777
9022
  *
8778
- * @type {number}
8779
- * @memberof Media
9023
+ * @type {string}
9024
+ * @memberof ManagerAffiliationModel
8780
9025
  */
8781
- 'width'?: number;
9026
+ 'cityName'?: string | null;
8782
9027
  /**
8783
9028
  *
8784
- * @type {number}
8785
- * @memberof Media
9029
+ * @type {string}
9030
+ * @memberof ManagerAffiliationModel
8786
9031
  */
8787
- 'order'?: number;
9032
+ 'managerId'?: string;
9033
+ /**
9034
+ *
9035
+ * @type {string}
9036
+ * @memberof ManagerAffiliationModel
9037
+ */
9038
+ 'managerName'?: string | null;
8788
9039
  }
8789
9040
  /**
8790
9041
  *
8791
9042
  * @export
8792
- * @interface MediaModel
9043
+ * @interface ManagerModel
8793
9044
  */
8794
- export interface MediaModel {
9045
+ export interface ManagerModel {
8795
9046
  /**
8796
9047
  *
8797
9048
  * @type {string}
8798
- * @memberof MediaModel
9049
+ * @memberof ManagerModel
8799
9050
  */
8800
9051
  'id'?: string;
8801
9052
  /**
8802
9053
  *
8803
- * @type {MediaType}
9054
+ * @type {string}
9055
+ * @memberof ManagerModel
9056
+ */
9057
+ 'userName'?: string | null;
9058
+ /**
9059
+ *
9060
+ * @type {string}
9061
+ * @memberof ManagerModel
9062
+ */
9063
+ 'firstName'?: string | null;
9064
+ /**
9065
+ *
9066
+ * @type {string}
9067
+ * @memberof ManagerModel
9068
+ */
9069
+ 'lastName'?: string | null;
9070
+ /**
9071
+ *
9072
+ * @type {string}
9073
+ * @memberof ManagerModel
9074
+ */
9075
+ 'fullname'?: string | null;
9076
+ /**
9077
+ *
9078
+ * @type {string}
9079
+ * @memberof ManagerModel
9080
+ */
9081
+ 'phone'?: string | null;
9082
+ /**
9083
+ *
9084
+ * @type {string}
9085
+ * @memberof ManagerModel
9086
+ */
9087
+ 'email'?: string | null;
9088
+ /**
9089
+ *
9090
+ * @type {string}
9091
+ * @memberof ManagerModel
9092
+ */
9093
+ 'photo'?: string | null;
9094
+ /**
9095
+ *
9096
+ * @type {string}
9097
+ * @memberof ManagerModel
9098
+ */
9099
+ 'photoThumbnail'?: string | null;
9100
+ /**
9101
+ *
9102
+ * @type {Gender}
9103
+ * @memberof ManagerModel
9104
+ */
9105
+ 'gender'?: Gender;
9106
+ /**
9107
+ *
9108
+ * @type {Date}
9109
+ * @memberof ManagerModel
9110
+ */
9111
+ 'dateOfBirth'?: Date | null;
9112
+ /**
9113
+ *
9114
+ * @type {string}
9115
+ * @memberof ManagerModel
9116
+ */
9117
+ 'timeZone'?: string | null;
9118
+ /**
9119
+ *
9120
+ * @type {string}
9121
+ * @memberof ManagerModel
9122
+ */
9123
+ 'communicationUserId'?: string | null;
9124
+ /**
9125
+ *
9126
+ * @type {AuditableEntity}
9127
+ * @memberof ManagerModel
9128
+ */
9129
+ 'auditableEntity'?: AuditableEntity;
9130
+ /**
9131
+ *
9132
+ * @type {string}
9133
+ * @memberof ManagerModel
9134
+ */
9135
+ 'userType'?: string | null;
9136
+ /**
9137
+ *
9138
+ * @type {Array<UserLanguageModel>}
9139
+ * @memberof ManagerModel
9140
+ */
9141
+ 'languages'?: Array<UserLanguageModel> | null;
9142
+ /**
9143
+ *
9144
+ * @type {Array<UserLocationModel>}
9145
+ * @memberof ManagerModel
9146
+ */
9147
+ 'locations'?: Array<UserLocationModel> | null;
9148
+ /**
9149
+ *
9150
+ * @type {string}
9151
+ * @memberof ManagerModel
9152
+ */
9153
+ 'hospitalId'?: string;
9154
+ /**
9155
+ *
9156
+ * @type {Array<ManagerAffiliationModel>}
9157
+ * @memberof ManagerModel
9158
+ */
9159
+ 'affiliations'?: Array<ManagerAffiliationModel> | null;
9160
+ }
9161
+ /**
9162
+ *
9163
+ * @export
9164
+ * @interface ManagersModel
9165
+ */
9166
+ export interface ManagersModel {
9167
+ /**
9168
+ *
9169
+ * @type {Array<UserItemModel>}
9170
+ * @memberof ManagersModel
9171
+ */
9172
+ 'items'?: Array<UserItemModel> | null;
9173
+ /**
9174
+ *
9175
+ * @type {PagedListMetaData}
9176
+ * @memberof ManagersModel
9177
+ */
9178
+ 'metaData'?: PagedListMetaData;
9179
+ }
9180
+ /**
9181
+ *
9182
+ * @export
9183
+ * @enum {string}
9184
+ */
9185
+ export declare enum MarketingType {
9186
+ Both = "Both",
9187
+ GeneralHealth = "GeneralHealth",
9188
+ Beauty = "Beauty"
9189
+ }
9190
+ /**
9191
+ *
9192
+ * @export
9193
+ * @interface Media
9194
+ */
9195
+ export interface Media {
9196
+ /**
9197
+ *
9198
+ * @type {string}
9199
+ * @memberof Media
9200
+ */
9201
+ 'id'?: string;
9202
+ /**
9203
+ *
9204
+ * @type {MediaType}
9205
+ * @memberof Media
9206
+ */
9207
+ 'mediaType'?: MediaType;
9208
+ /**
9209
+ *
9210
+ * @type {string}
9211
+ * @memberof Media
9212
+ */
9213
+ 'url'?: string | null;
9214
+ /**
9215
+ *
9216
+ * @type {string}
9217
+ * @memberof Media
9218
+ */
9219
+ 'thumbnailUrl'?: string | null;
9220
+ /**
9221
+ *
9222
+ * @type {string}
9223
+ * @memberof Media
9224
+ */
9225
+ 'description'?: string | null;
9226
+ /**
9227
+ *
9228
+ * @type {number}
9229
+ * @memberof Media
9230
+ */
9231
+ 'height'?: number;
9232
+ /**
9233
+ *
9234
+ * @type {number}
9235
+ * @memberof Media
9236
+ */
9237
+ 'width'?: number;
9238
+ /**
9239
+ *
9240
+ * @type {number}
9241
+ * @memberof Media
9242
+ */
9243
+ 'order'?: number;
9244
+ }
9245
+ /**
9246
+ *
9247
+ * @export
9248
+ * @interface MediaModel
9249
+ */
9250
+ export interface MediaModel {
9251
+ /**
9252
+ *
9253
+ * @type {string}
9254
+ * @memberof MediaModel
9255
+ */
9256
+ 'id'?: string;
9257
+ /**
9258
+ *
9259
+ * @type {MediaType}
8804
9260
  * @memberof MediaModel
8805
9261
  */
8806
9262
  'mediaType'?: MediaType;
@@ -9559,108 +10015,330 @@ export interface Plan {
9559
10015
  /**
9560
10016
  *
9561
10017
  * @export
9562
- * @enum {string}
9563
- */
9564
- export declare enum Platform {
9565
- Web = "Web",
9566
- IOs = "iOS",
9567
- Android = "Android"
9568
- }
9569
- /**
9570
- *
9571
- * @export
9572
- * @interface ProblemDetails
10018
+ * @interface PlanHospitalItemModel
9573
10019
  */
9574
- export interface ProblemDetails {
9575
- [key: string]: any | any;
10020
+ export interface PlanHospitalItemModel {
9576
10021
  /**
9577
10022
  *
9578
10023
  * @type {string}
9579
- * @memberof ProblemDetails
10024
+ * @memberof PlanHospitalItemModel
9580
10025
  */
9581
- 'type'?: string | null;
10026
+ 'planId'?: string;
9582
10027
  /**
9583
10028
  *
9584
10029
  * @type {string}
9585
- * @memberof ProblemDetails
10030
+ * @memberof PlanHospitalItemModel
9586
10031
  */
9587
- 'title'?: string | null;
10032
+ 'planName'?: string | null;
9588
10033
  /**
9589
10034
  *
9590
- * @type {number}
9591
- * @memberof ProblemDetails
10035
+ * @type {string}
10036
+ * @memberof PlanHospitalItemModel
9592
10037
  */
9593
- 'status'?: number | null;
10038
+ 'hospitalId'?: string;
9594
10039
  /**
9595
10040
  *
9596
10041
  * @type {string}
9597
- * @memberof ProblemDetails
10042
+ * @memberof PlanHospitalItemModel
9598
10043
  */
9599
- 'detail'?: string | null;
10044
+ 'hospitalName'?: string | null;
9600
10045
  /**
9601
10046
  *
9602
- * @type {string}
9603
- * @memberof ProblemDetails
10047
+ * @type {number}
10048
+ * @memberof PlanHospitalItemModel
9604
10049
  */
9605
- 'instance'?: string | null;
9606
- }
9607
- /**
9608
- *
9609
- * @export
9610
- * @enum {string}
9611
- */
9612
- export declare enum Procedure {
9613
- Treatment = "Treatment",
9614
- Diagnostic = "Diagnostic"
10050
+ 'order'?: number;
9615
10051
  }
9616
10052
  /**
9617
10053
  *
9618
10054
  * @export
9619
- * @interface Question
10055
+ * @interface PlanHospitalModel
9620
10056
  */
9621
- export interface Question {
10057
+ export interface PlanHospitalModel {
9622
10058
  /**
9623
10059
  *
9624
10060
  * @type {string}
9625
- * @memberof Question
10061
+ * @memberof PlanHospitalModel
9626
10062
  */
9627
- 'id'?: string;
10063
+ 'planId'?: string;
9628
10064
  /**
9629
10065
  *
9630
10066
  * @type {string}
9631
- * @memberof Question
10067
+ * @memberof PlanHospitalModel
9632
10068
  */
9633
- 'title'?: string | null;
10069
+ 'planName'?: string | null;
9634
10070
  /**
9635
10071
  *
9636
10072
  * @type {string}
9637
- * @memberof Question
10073
+ * @memberof PlanHospitalModel
9638
10074
  */
9639
- 'normalizedTitle'?: string | null;
10075
+ 'hospitalId'?: string;
9640
10076
  /**
9641
10077
  *
9642
10078
  * @type {string}
9643
- * @memberof Question
10079
+ * @memberof PlanHospitalModel
9644
10080
  */
9645
- 'body'?: string | null;
10081
+ 'hospitalName'?: string | null;
9646
10082
  /**
9647
10083
  *
9648
- * @type {QuestionType}
9649
- * @memberof Question
10084
+ * @type {number}
10085
+ * @memberof PlanHospitalModel
9650
10086
  */
9651
- 'questionType'?: QuestionType;
10087
+ 'order'?: number;
10088
+ }
10089
+ /**
10090
+ *
10091
+ * @export
10092
+ * @interface PlanHospitalsModel
10093
+ */
10094
+ export interface PlanHospitalsModel {
9652
10095
  /**
9653
10096
  *
9654
- * @type {QuestionStatus}
9655
- * @memberof Question
10097
+ * @type {Array<PlanHospitalItemModel>}
10098
+ * @memberof PlanHospitalsModel
9656
10099
  */
9657
- 'questionStatus'?: QuestionStatus;
10100
+ 'items'?: Array<PlanHospitalItemModel> | null;
9658
10101
  /**
9659
10102
  *
9660
- * @type {string}
9661
- * @memberof Question
10103
+ * @type {PagedListMetaData}
10104
+ * @memberof PlanHospitalsModel
9662
10105
  */
9663
- 'patientId'?: string;
10106
+ 'metaData'?: PagedListMetaData;
10107
+ }
10108
+ /**
10109
+ *
10110
+ * @export
10111
+ * @interface PlanItemModel
10112
+ */
10113
+ export interface PlanItemModel {
10114
+ /**
10115
+ *
10116
+ * @type {string}
10117
+ * @memberof PlanItemModel
10118
+ */
10119
+ 'id'?: string;
10120
+ /**
10121
+ *
10122
+ * @type {string}
10123
+ * @memberof PlanItemModel
10124
+ */
10125
+ 'name'?: string | null;
10126
+ /**
10127
+ *
10128
+ * @type {number}
10129
+ * @memberof PlanItemModel
10130
+ */
10131
+ 'memberLimit'?: number;
10132
+ /**
10133
+ *
10134
+ * @type {number}
10135
+ * @memberof PlanItemModel
10136
+ */
10137
+ 'unitPrice'?: number;
10138
+ /**
10139
+ *
10140
+ * @type {string}
10141
+ * @memberof PlanItemModel
10142
+ */
10143
+ 'stripePriceId'?: string | null;
10144
+ /**
10145
+ *
10146
+ * @type {RecurringInterval}
10147
+ * @memberof PlanItemModel
10148
+ */
10149
+ 'interval'?: RecurringInterval;
10150
+ /**
10151
+ *
10152
+ * @type {boolean}
10153
+ * @memberof PlanItemModel
10154
+ */
10155
+ 'isActive'?: boolean;
10156
+ /**
10157
+ *
10158
+ * @type {number}
10159
+ * @memberof PlanItemModel
10160
+ */
10161
+ 'order'?: number;
10162
+ }
10163
+ /**
10164
+ *
10165
+ * @export
10166
+ * @interface PlanModel
10167
+ */
10168
+ export interface PlanModel {
10169
+ /**
10170
+ *
10171
+ * @type {string}
10172
+ * @memberof PlanModel
10173
+ */
10174
+ 'id'?: string;
10175
+ /**
10176
+ *
10177
+ * @type {string}
10178
+ * @memberof PlanModel
10179
+ */
10180
+ 'name'?: string | null;
10181
+ /**
10182
+ *
10183
+ * @type {number}
10184
+ * @memberof PlanModel
10185
+ */
10186
+ 'memberLimit'?: number;
10187
+ /**
10188
+ *
10189
+ * @type {number}
10190
+ * @memberof PlanModel
10191
+ */
10192
+ 'unitPrice'?: number;
10193
+ /**
10194
+ *
10195
+ * @type {string}
10196
+ * @memberof PlanModel
10197
+ */
10198
+ 'stripePriceId'?: string | null;
10199
+ /**
10200
+ *
10201
+ * @type {RecurringInterval}
10202
+ * @memberof PlanModel
10203
+ */
10204
+ 'interval'?: RecurringInterval;
10205
+ /**
10206
+ *
10207
+ * @type {boolean}
10208
+ * @memberof PlanModel
10209
+ */
10210
+ 'isActive'?: boolean;
10211
+ /**
10212
+ *
10213
+ * @type {number}
10214
+ * @memberof PlanModel
10215
+ */
10216
+ 'order'?: number;
10217
+ }
10218
+ /**
10219
+ *
10220
+ * @export
10221
+ * @interface PlansModel
10222
+ */
10223
+ export interface PlansModel {
10224
+ /**
10225
+ *
10226
+ * @type {Array<PlanItemModel>}
10227
+ * @memberof PlansModel
10228
+ */
10229
+ 'items'?: Array<PlanItemModel> | null;
10230
+ /**
10231
+ *
10232
+ * @type {PagedListMetaData}
10233
+ * @memberof PlansModel
10234
+ */
10235
+ 'metaData'?: PagedListMetaData;
10236
+ }
10237
+ /**
10238
+ *
10239
+ * @export
10240
+ * @enum {string}
10241
+ */
10242
+ export declare enum Platform {
10243
+ Web = "Web",
10244
+ IOs = "iOS",
10245
+ Android = "Android"
10246
+ }
10247
+ /**
10248
+ *
10249
+ * @export
10250
+ * @interface ProblemDetails
10251
+ */
10252
+ export interface ProblemDetails {
10253
+ [key: string]: any | any;
10254
+ /**
10255
+ *
10256
+ * @type {string}
10257
+ * @memberof ProblemDetails
10258
+ */
10259
+ 'type'?: string | null;
10260
+ /**
10261
+ *
10262
+ * @type {string}
10263
+ * @memberof ProblemDetails
10264
+ */
10265
+ 'title'?: string | null;
10266
+ /**
10267
+ *
10268
+ * @type {number}
10269
+ * @memberof ProblemDetails
10270
+ */
10271
+ 'status'?: number | null;
10272
+ /**
10273
+ *
10274
+ * @type {string}
10275
+ * @memberof ProblemDetails
10276
+ */
10277
+ 'detail'?: string | null;
10278
+ /**
10279
+ *
10280
+ * @type {string}
10281
+ * @memberof ProblemDetails
10282
+ */
10283
+ 'instance'?: string | null;
10284
+ }
10285
+ /**
10286
+ *
10287
+ * @export
10288
+ * @enum {string}
10289
+ */
10290
+ export declare enum Procedure {
10291
+ Treatment = "Treatment",
10292
+ Diagnostic = "Diagnostic"
10293
+ }
10294
+ /**
10295
+ *
10296
+ * @export
10297
+ * @interface Question
10298
+ */
10299
+ export interface Question {
10300
+ /**
10301
+ *
10302
+ * @type {string}
10303
+ * @memberof Question
10304
+ */
10305
+ 'id'?: string;
10306
+ /**
10307
+ *
10308
+ * @type {string}
10309
+ * @memberof Question
10310
+ */
10311
+ 'title'?: string | null;
10312
+ /**
10313
+ *
10314
+ * @type {string}
10315
+ * @memberof Question
10316
+ */
10317
+ 'normalizedTitle'?: string | null;
10318
+ /**
10319
+ *
10320
+ * @type {string}
10321
+ * @memberof Question
10322
+ */
10323
+ 'body'?: string | null;
10324
+ /**
10325
+ *
10326
+ * @type {QuestionType}
10327
+ * @memberof Question
10328
+ */
10329
+ 'questionType'?: QuestionType;
10330
+ /**
10331
+ *
10332
+ * @type {QuestionStatus}
10333
+ * @memberof Question
10334
+ */
10335
+ 'questionStatus'?: QuestionStatus;
10336
+ /**
10337
+ *
10338
+ * @type {string}
10339
+ * @memberof Question
10340
+ */
10341
+ 'patientId'?: string;
9664
10342
  /**
9665
10343
  *
9666
10344
  * @type {Patient}
@@ -11851,6 +12529,67 @@ export interface UpdateHospitalSpecialtyCommand {
11851
12529
  */
11852
12530
  'order'?: number;
11853
12531
  }
12532
+ /**
12533
+ *
12534
+ * @export
12535
+ * @interface UpdateManagerCommand
12536
+ */
12537
+ export interface UpdateManagerCommand {
12538
+ /**
12539
+ *
12540
+ * @type {string}
12541
+ * @memberof UpdateManagerCommand
12542
+ */
12543
+ 'firstName'?: string | null;
12544
+ /**
12545
+ *
12546
+ * @type {string}
12547
+ * @memberof UpdateManagerCommand
12548
+ */
12549
+ 'lastName'?: string | null;
12550
+ /**
12551
+ *
12552
+ * @type {string}
12553
+ * @memberof UpdateManagerCommand
12554
+ */
12555
+ 'phone'?: string | null;
12556
+ /**
12557
+ *
12558
+ * @type {string}
12559
+ * @memberof UpdateManagerCommand
12560
+ */
12561
+ 'photo'?: string | null;
12562
+ /**
12563
+ *
12564
+ * @type {string}
12565
+ * @memberof UpdateManagerCommand
12566
+ */
12567
+ 'photoThumbnail'?: string | null;
12568
+ /**
12569
+ *
12570
+ * @type {Gender}
12571
+ * @memberof UpdateManagerCommand
12572
+ */
12573
+ 'gender'?: Gender;
12574
+ /**
12575
+ *
12576
+ * @type {Date}
12577
+ * @memberof UpdateManagerCommand
12578
+ */
12579
+ 'dateOfBirth'?: Date | null;
12580
+ /**
12581
+ *
12582
+ * @type {Array<UserLanguageModel>}
12583
+ * @memberof UpdateManagerCommand
12584
+ */
12585
+ 'languages'?: Array<UserLanguageModel> | null;
12586
+ /**
12587
+ *
12588
+ * @type {Array<UserLocationModel>}
12589
+ * @memberof UpdateManagerCommand
12590
+ */
12591
+ 'locations'?: Array<UserLocationModel> | null;
12592
+ }
11854
12593
  /**
11855
12594
  *
11856
12595
  * @export
@@ -11891,9 +12630,71 @@ export interface UpdateMediaCommand {
11891
12630
  /**
11892
12631
  *
11893
12632
  * @export
11894
- * @interface UpdateServiceCategoryCommand
12633
+ * @interface UpdatePlanCommand
11895
12634
  */
11896
- export interface UpdateServiceCategoryCommand {
12635
+ export interface UpdatePlanCommand {
12636
+ /**
12637
+ *
12638
+ * @type {string}
12639
+ * @memberof UpdatePlanCommand
12640
+ */
12641
+ 'name'?: string | null;
12642
+ /**
12643
+ *
12644
+ * @type {number}
12645
+ * @memberof UpdatePlanCommand
12646
+ */
12647
+ 'memberLimit'?: number;
12648
+ /**
12649
+ *
12650
+ * @type {number}
12651
+ * @memberof UpdatePlanCommand
12652
+ */
12653
+ 'unitPrice'?: number;
12654
+ /**
12655
+ *
12656
+ * @type {string}
12657
+ * @memberof UpdatePlanCommand
12658
+ */
12659
+ 'stripePriceId'?: string | null;
12660
+ /**
12661
+ *
12662
+ * @type {RecurringInterval}
12663
+ * @memberof UpdatePlanCommand
12664
+ */
12665
+ 'interval'?: RecurringInterval;
12666
+ /**
12667
+ *
12668
+ * @type {boolean}
12669
+ * @memberof UpdatePlanCommand
12670
+ */
12671
+ 'isActive'?: boolean;
12672
+ /**
12673
+ *
12674
+ * @type {number}
12675
+ * @memberof UpdatePlanCommand
12676
+ */
12677
+ 'order'?: number;
12678
+ }
12679
+ /**
12680
+ *
12681
+ * @export
12682
+ * @interface UpdatePlanHospitalCommand
12683
+ */
12684
+ export interface UpdatePlanHospitalCommand {
12685
+ /**
12686
+ *
12687
+ * @type {number}
12688
+ * @memberof UpdatePlanHospitalCommand
12689
+ */
12690
+ 'order'?: number;
12691
+ }
12692
+ /**
12693
+ *
12694
+ * @export
12695
+ * @interface UpdateServiceCategoryCommand
12696
+ */
12697
+ export interface UpdateServiceCategoryCommand {
11897
12698
  /**
11898
12699
  *
11899
12700
  * @type {string}
@@ -12204,6 +13005,97 @@ export interface User {
12204
13005
  */
12205
13006
  'auditableEntity'?: AuditableEntity;
12206
13007
  }
13008
+ /**
13009
+ *
13010
+ * @export
13011
+ * @interface UserItemModel
13012
+ */
13013
+ export interface UserItemModel {
13014
+ /**
13015
+ *
13016
+ * @type {string}
13017
+ * @memberof UserItemModel
13018
+ */
13019
+ 'id'?: string;
13020
+ /**
13021
+ *
13022
+ * @type {string}
13023
+ * @memberof UserItemModel
13024
+ */
13025
+ 'userName'?: string | null;
13026
+ /**
13027
+ *
13028
+ * @type {string}
13029
+ * @memberof UserItemModel
13030
+ */
13031
+ 'firstName'?: string | null;
13032
+ /**
13033
+ *
13034
+ * @type {string}
13035
+ * @memberof UserItemModel
13036
+ */
13037
+ 'lastName'?: string | null;
13038
+ /**
13039
+ *
13040
+ * @type {string}
13041
+ * @memberof UserItemModel
13042
+ */
13043
+ 'fullname'?: string | null;
13044
+ /**
13045
+ *
13046
+ * @type {string}
13047
+ * @memberof UserItemModel
13048
+ */
13049
+ 'phone'?: string | null;
13050
+ /**
13051
+ *
13052
+ * @type {string}
13053
+ * @memberof UserItemModel
13054
+ */
13055
+ 'email'?: string | null;
13056
+ /**
13057
+ *
13058
+ * @type {string}
13059
+ * @memberof UserItemModel
13060
+ */
13061
+ 'photo'?: string | null;
13062
+ /**
13063
+ *
13064
+ * @type {string}
13065
+ * @memberof UserItemModel
13066
+ */
13067
+ 'photoThumbnail'?: string | null;
13068
+ /**
13069
+ *
13070
+ * @type {Gender}
13071
+ * @memberof UserItemModel
13072
+ */
13073
+ 'gender'?: Gender;
13074
+ /**
13075
+ *
13076
+ * @type {Date}
13077
+ * @memberof UserItemModel
13078
+ */
13079
+ 'dateOfBirth'?: Date | null;
13080
+ /**
13081
+ *
13082
+ * @type {string}
13083
+ * @memberof UserItemModel
13084
+ */
13085
+ 'timeZone'?: string | null;
13086
+ /**
13087
+ *
13088
+ * @type {string}
13089
+ * @memberof UserItemModel
13090
+ */
13091
+ 'communicationUserId'?: string | null;
13092
+ /**
13093
+ *
13094
+ * @type {AuditableEntity}
13095
+ * @memberof UserItemModel
13096
+ */
13097
+ 'auditableEntity'?: AuditableEntity;
13098
+ }
12207
13099
  /**
12208
13100
  *
12209
13101
  * @export
@@ -12373,6 +13265,115 @@ export declare enum UserLocationType {
12373
13265
  LivesIn = "LivesIn",
12374
13266
  BirthPlace = "BirthPlace"
12375
13267
  }
13268
+ /**
13269
+ *
13270
+ * @export
13271
+ * @interface UserModel
13272
+ */
13273
+ export interface UserModel {
13274
+ /**
13275
+ *
13276
+ * @type {string}
13277
+ * @memberof UserModel
13278
+ */
13279
+ 'id'?: string;
13280
+ /**
13281
+ *
13282
+ * @type {string}
13283
+ * @memberof UserModel
13284
+ */
13285
+ 'userName'?: string | null;
13286
+ /**
13287
+ *
13288
+ * @type {string}
13289
+ * @memberof UserModel
13290
+ */
13291
+ 'firstName'?: string | null;
13292
+ /**
13293
+ *
13294
+ * @type {string}
13295
+ * @memberof UserModel
13296
+ */
13297
+ 'lastName'?: string | null;
13298
+ /**
13299
+ *
13300
+ * @type {string}
13301
+ * @memberof UserModel
13302
+ */
13303
+ 'fullname'?: string | null;
13304
+ /**
13305
+ *
13306
+ * @type {string}
13307
+ * @memberof UserModel
13308
+ */
13309
+ 'phone'?: string | null;
13310
+ /**
13311
+ *
13312
+ * @type {string}
13313
+ * @memberof UserModel
13314
+ */
13315
+ 'email'?: string | null;
13316
+ /**
13317
+ *
13318
+ * @type {string}
13319
+ * @memberof UserModel
13320
+ */
13321
+ 'photo'?: string | null;
13322
+ /**
13323
+ *
13324
+ * @type {string}
13325
+ * @memberof UserModel
13326
+ */
13327
+ 'photoThumbnail'?: string | null;
13328
+ /**
13329
+ *
13330
+ * @type {Gender}
13331
+ * @memberof UserModel
13332
+ */
13333
+ 'gender'?: Gender;
13334
+ /**
13335
+ *
13336
+ * @type {Date}
13337
+ * @memberof UserModel
13338
+ */
13339
+ 'dateOfBirth'?: Date | null;
13340
+ /**
13341
+ *
13342
+ * @type {string}
13343
+ * @memberof UserModel
13344
+ */
13345
+ 'timeZone'?: string | null;
13346
+ /**
13347
+ *
13348
+ * @type {string}
13349
+ * @memberof UserModel
13350
+ */
13351
+ 'communicationUserId'?: string | null;
13352
+ /**
13353
+ *
13354
+ * @type {AuditableEntity}
13355
+ * @memberof UserModel
13356
+ */
13357
+ 'auditableEntity'?: AuditableEntity;
13358
+ /**
13359
+ *
13360
+ * @type {string}
13361
+ * @memberof UserModel
13362
+ */
13363
+ 'userType'?: string | null;
13364
+ /**
13365
+ *
13366
+ * @type {Array<UserLanguageModel>}
13367
+ * @memberof UserModel
13368
+ */
13369
+ 'languages'?: Array<UserLanguageModel> | null;
13370
+ /**
13371
+ *
13372
+ * @type {Array<UserLocationModel>}
13373
+ * @memberof UserModel
13374
+ */
13375
+ 'locations'?: Array<UserLocationModel> | null;
13376
+ }
12376
13377
  /**
12377
13378
  *
12378
13379
  * @export
@@ -12906,50 +13907,44 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
12906
13907
  apiV1ArticlesArticleIdSourcesSourceIdPut: (articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12907
13908
  /**
12908
13909
  *
12909
- * @summary GetAll ArticleContributors.
13910
+ * @summary GetAll ArticleTags.
12910
13911
  * @param {string} articleId
12911
- * @param {string} [articleName]
12912
- * @param {string} [contributorId]
12913
- * @param {string} [contributorName]
12914
- * @param {string} [email]
12915
- * @param {string} [description]
12916
- * @param {string} [website]
12917
- * @param {ContributionType} [contributionType]
13912
+ * @param {string} [tagId]
12918
13913
  * @param {number} [page]
12919
13914
  * @param {number} [limit]
12920
13915
  * @param {Date} [lastRetrieved]
12921
13916
  * @param {*} [options] Override http request option.
12922
13917
  * @throws {RequiredError}
12923
13918
  */
12924
- apiV1ArticlesArticleIdTagsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13919
+ apiV1ArticlesArticleIdTagsGet: (articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12925
13920
  /**
12926
13921
  *
13922
+ * @summary Create ArticleTag.
12927
13923
  * @param {string} articleId
12928
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
13924
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
12929
13925
  * @param {*} [options] Override http request option.
12930
13926
  * @throws {RequiredError}
12931
13927
  */
12932
- apiV1ArticlesArticleIdTagsPost: (articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13928
+ apiV1ArticlesArticleIdTagsPost: (articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12933
13929
  /**
12934
13930
  *
12935
- * @summary Delete ArticleContributor.
13931
+ * @summary Delete ArticleTag.
12936
13932
  * @param {string} articleId
12937
- * @param {string} contributorId
12938
13933
  * @param {string} tagId
13934
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
12939
13935
  * @param {*} [options] Override http request option.
12940
13936
  * @throws {RequiredError}
12941
13937
  */
12942
- apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13938
+ apiV1ArticlesArticleIdTagsTagIdDelete: (articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12943
13939
  /**
12944
13940
  *
12945
- * @summary Get ArticleContributor.
13941
+ * @summary Get ArticleTag.
12946
13942
  * @param {string} articleId
12947
- * @param {string} contributorId
12948
13943
  * @param {string} tagId
12949
13944
  * @param {*} [options] Override http request option.
12950
13945
  * @throws {RequiredError}
12951
13946
  */
12952
- apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13947
+ apiV1ArticlesArticleIdTagsTagIdGet: (articleId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12953
13948
  /**
12954
13949
  *
12955
13950
  * @summary Get all Articles.
@@ -13179,50 +14174,44 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
13179
14174
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13180
14175
  /**
13181
14176
  *
13182
- * @summary GetAll ArticleContributors.
14177
+ * @summary GetAll ArticleTags.
13183
14178
  * @param {string} articleId
13184
- * @param {string} [articleName]
13185
- * @param {string} [contributorId]
13186
- * @param {string} [contributorName]
13187
- * @param {string} [email]
13188
- * @param {string} [description]
13189
- * @param {string} [website]
13190
- * @param {ContributionType} [contributionType]
14179
+ * @param {string} [tagId]
13191
14180
  * @param {number} [page]
13192
14181
  * @param {number} [limit]
13193
14182
  * @param {Date} [lastRetrieved]
13194
14183
  * @param {*} [options] Override http request option.
13195
14184
  * @throws {RequiredError}
13196
14185
  */
13197
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
14186
+ apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagsModel>>;
13198
14187
  /**
13199
14188
  *
14189
+ * @summary Create ArticleTag.
13200
14190
  * @param {string} articleId
13201
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14191
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
13202
14192
  * @param {*} [options] Override http request option.
13203
14193
  * @throws {RequiredError}
13204
14194
  */
13205
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
14195
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
13206
14196
  /**
13207
14197
  *
13208
- * @summary Delete ArticleContributor.
14198
+ * @summary Delete ArticleTag.
13209
14199
  * @param {string} articleId
13210
- * @param {string} contributorId
13211
14200
  * @param {string} tagId
14201
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
13212
14202
  * @param {*} [options] Override http request option.
13213
14203
  * @throws {RequiredError}
13214
14204
  */
13215
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14205
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13216
14206
  /**
13217
14207
  *
13218
- * @summary Get ArticleContributor.
14208
+ * @summary Get ArticleTag.
13219
14209
  * @param {string} articleId
13220
- * @param {string} contributorId
13221
14210
  * @param {string} tagId
13222
14211
  * @param {*} [options] Override http request option.
13223
14212
  * @throws {RequiredError}
13224
14213
  */
13225
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
14214
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
13226
14215
  /**
13227
14216
  *
13228
14217
  * @summary Get all Articles.
@@ -13452,50 +14441,44 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
13452
14441
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand | undefined, options?: any): AxiosPromise<boolean>;
13453
14442
  /**
13454
14443
  *
13455
- * @summary GetAll ArticleContributors.
14444
+ * @summary GetAll ArticleTags.
13456
14445
  * @param {string} articleId
13457
- * @param {string} [articleName]
13458
- * @param {string} [contributorId]
13459
- * @param {string} [contributorName]
13460
- * @param {string} [email]
13461
- * @param {string} [description]
13462
- * @param {string} [website]
13463
- * @param {ContributionType} [contributionType]
14446
+ * @param {string} [tagId]
13464
14447
  * @param {number} [page]
13465
14448
  * @param {number} [limit]
13466
14449
  * @param {Date} [lastRetrieved]
13467
14450
  * @param {*} [options] Override http request option.
13468
14451
  * @throws {RequiredError}
13469
14452
  */
13470
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
14453
+ apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleTagsModel>;
13471
14454
  /**
13472
14455
  *
14456
+ * @summary Create ArticleTag.
13473
14457
  * @param {string} articleId
13474
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14458
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
13475
14459
  * @param {*} [options] Override http request option.
13476
14460
  * @throws {RequiredError}
13477
14461
  */
13478
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand | undefined, options?: any): AxiosPromise<ArticleContributorModel>;
14462
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand | undefined, options?: any): AxiosPromise<ArticleTagModel>;
13479
14463
  /**
13480
14464
  *
13481
- * @summary Delete ArticleContributor.
14465
+ * @summary Delete ArticleTag.
13482
14466
  * @param {string} articleId
13483
- * @param {string} contributorId
13484
14467
  * @param {string} tagId
14468
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
13485
14469
  * @param {*} [options] Override http request option.
13486
14470
  * @throws {RequiredError}
13487
14471
  */
13488
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: any): AxiosPromise<boolean>;
14472
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand | undefined, options?: any): AxiosPromise<boolean>;
13489
14473
  /**
13490
14474
  *
13491
- * @summary Get ArticleContributor.
14475
+ * @summary Get ArticleTag.
13492
14476
  * @param {string} articleId
13493
- * @param {string} contributorId
13494
14477
  * @param {string} tagId
13495
14478
  * @param {*} [options] Override http request option.
13496
14479
  * @throws {RequiredError}
13497
14480
  */
13498
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: any): AxiosPromise<ArticleContributorModel>;
14481
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: any): AxiosPromise<ArticleTagModel>;
13499
14482
  /**
13500
14483
  *
13501
14484
  * @summary Get all Articles.
@@ -13745,15 +14728,9 @@ export declare class ArticlesApi extends BaseAPI {
13745
14728
  apiV1ArticlesArticleIdSourcesSourceIdPut(articleId: string, sourceId: string, updateArticleSourceCommand?: UpdateArticleSourceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13746
14729
  /**
13747
14730
  *
13748
- * @summary GetAll ArticleContributors.
14731
+ * @summary GetAll ArticleTags.
13749
14732
  * @param {string} articleId
13750
- * @param {string} [articleName]
13751
- * @param {string} [contributorId]
13752
- * @param {string} [contributorName]
13753
- * @param {string} [email]
13754
- * @param {string} [description]
13755
- * @param {string} [website]
13756
- * @param {ContributionType} [contributionType]
14733
+ * @param {string} [tagId]
13757
14734
  * @param {number} [page]
13758
14735
  * @param {number} [limit]
13759
14736
  * @param {Date} [lastRetrieved]
@@ -13761,38 +14738,38 @@ export declare class ArticlesApi extends BaseAPI {
13761
14738
  * @throws {RequiredError}
13762
14739
  * @memberof ArticlesApi
13763
14740
  */
13764
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
14741
+ apiV1ArticlesArticleIdTagsGet(articleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagsModel>>;
13765
14742
  /**
13766
14743
  *
14744
+ * @summary Create ArticleTag.
13767
14745
  * @param {string} articleId
13768
- * @param {CreateArticleContributorCommand} [createArticleContributorCommand]
14746
+ * @param {CreateArticleTagCommand} [createArticleTagCommand]
13769
14747
  * @param {*} [options] Override http request option.
13770
14748
  * @throws {RequiredError}
13771
14749
  * @memberof ArticlesApi
13772
14750
  */
13773
- apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleContributorCommand?: CreateArticleContributorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel>>;
14751
+ apiV1ArticlesArticleIdTagsPost(articleId: string, createArticleTagCommand?: CreateArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
13774
14752
  /**
13775
14753
  *
13776
- * @summary Delete ArticleContributor.
14754
+ * @summary Delete ArticleTag.
13777
14755
  * @param {string} articleId
13778
- * @param {string} contributorId
13779
14756
  * @param {string} tagId
14757
+ * @param {DeleteArticleTagCommand} [deleteArticleTagCommand]
13780
14758
  * @param {*} [options] Override http request option.
13781
14759
  * @throws {RequiredError}
13782
14760
  * @memberof ArticlesApi
13783
14761
  */
13784
- apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
14762
+ apiV1ArticlesArticleIdTagsTagIdDelete(articleId: string, tagId: string, deleteArticleTagCommand?: DeleteArticleTagCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13785
14763
  /**
13786
14764
  *
13787
- * @summary Get ArticleContributor.
14765
+ * @summary Get ArticleTag.
13788
14766
  * @param {string} articleId
13789
- * @param {string} contributorId
13790
14767
  * @param {string} tagId
13791
14768
  * @param {*} [options] Override http request option.
13792
14769
  * @throws {RequiredError}
13793
14770
  * @memberof ArticlesApi
13794
14771
  */
13795
- apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, contributorId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel>>;
14772
+ apiV1ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
13796
14773
  /**
13797
14774
  *
13798
14775
  * @summary Get all Articles.
@@ -17030,7 +18007,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
17030
18007
  * @param {*} [options] Override http request option.
17031
18008
  * @throws {RequiredError}
17032
18009
  */
17033
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
18010
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
17034
18011
  /**
17035
18012
  *
17036
18013
  * @summary Get Doctor by slug.
@@ -17381,7 +18358,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
17381
18358
  * @param {*} [options] Override http request option.
17382
18359
  * @throws {RequiredError}
17383
18360
  */
17384
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<string>;
18361
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
17385
18362
  /**
17386
18363
  *
17387
18364
  * @summary Get Doctor by slug.
@@ -17766,7 +18743,7 @@ export declare class DoctorsApi extends BaseAPI {
17766
18743
  * @throws {RequiredError}
17767
18744
  * @memberof DoctorsApi
17768
18745
  */
17769
- apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
18746
+ apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17770
18747
  /**
17771
18748
  *
17772
18749
  * @summary Get Doctor by slug.
@@ -20004,6 +20981,237 @@ export declare class LanguagesApi extends BaseAPI {
20004
20981
  */
20005
20982
  apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
20006
20983
  }
20984
+ /**
20985
+ * ManagersApi - axios parameter creator
20986
+ * @export
20987
+ */
20988
+ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
20989
+ /**
20990
+ *
20991
+ * @summary Get all Managers.
20992
+ * @param {string} [hospitalId]
20993
+ * @param {string} [id]
20994
+ * @param {string} [fullname]
20995
+ * @param {string} [email]
20996
+ * @param {Gender} [gender]
20997
+ * @param {Date} [dateOfBirth]
20998
+ * @param {Date} [created]
20999
+ * @param {number} [page]
21000
+ * @param {number} [limit]
21001
+ * @param {Date} [lastRetrieved]
21002
+ * @param {*} [options] Override http request option.
21003
+ * @throws {RequiredError}
21004
+ */
21005
+ apiV1ManagersGet: (hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21006
+ /**
21007
+ *
21008
+ * @summary Delete Manager.
21009
+ * @param {string} managerId
21010
+ * @param {*} [options] Override http request option.
21011
+ * @throws {RequiredError}
21012
+ */
21013
+ apiV1ManagersManagerIdDelete: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21014
+ /**
21015
+ *
21016
+ * @summary Get Manager.
21017
+ * @param {string} managerId
21018
+ * @param {*} [options] Override http request option.
21019
+ * @throws {RequiredError}
21020
+ */
21021
+ apiV1ManagersManagerIdGet: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21022
+ /**
21023
+ *
21024
+ * @summary Update Manager.
21025
+ * @param {string} managerId
21026
+ * @param {UpdateManagerCommand} [updateManagerCommand]
21027
+ * @param {*} [options] Override http request option.
21028
+ * @throws {RequiredError}
21029
+ */
21030
+ apiV1ManagersManagerIdPut: (managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21031
+ /**
21032
+ *
21033
+ * @summary Create a Manager.
21034
+ * @param {CreateManagerCommand} [createManagerCommand]
21035
+ * @param {*} [options] Override http request option.
21036
+ * @throws {RequiredError}
21037
+ */
21038
+ apiV1ManagersPost: (createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21039
+ };
21040
+ /**
21041
+ * ManagersApi - functional programming interface
21042
+ * @export
21043
+ */
21044
+ export declare const ManagersApiFp: (configuration?: Configuration | undefined) => {
21045
+ /**
21046
+ *
21047
+ * @summary Get all Managers.
21048
+ * @param {string} [hospitalId]
21049
+ * @param {string} [id]
21050
+ * @param {string} [fullname]
21051
+ * @param {string} [email]
21052
+ * @param {Gender} [gender]
21053
+ * @param {Date} [dateOfBirth]
21054
+ * @param {Date} [created]
21055
+ * @param {number} [page]
21056
+ * @param {number} [limit]
21057
+ * @param {Date} [lastRetrieved]
21058
+ * @param {*} [options] Override http request option.
21059
+ * @throws {RequiredError}
21060
+ */
21061
+ apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagersModel>>;
21062
+ /**
21063
+ *
21064
+ * @summary Delete Manager.
21065
+ * @param {string} managerId
21066
+ * @param {*} [options] Override http request option.
21067
+ * @throws {RequiredError}
21068
+ */
21069
+ apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21070
+ /**
21071
+ *
21072
+ * @summary Get Manager.
21073
+ * @param {string} managerId
21074
+ * @param {*} [options] Override http request option.
21075
+ * @throws {RequiredError}
21076
+ */
21077
+ apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
21078
+ /**
21079
+ *
21080
+ * @summary Update Manager.
21081
+ * @param {string} managerId
21082
+ * @param {UpdateManagerCommand} [updateManagerCommand]
21083
+ * @param {*} [options] Override http request option.
21084
+ * @throws {RequiredError}
21085
+ */
21086
+ apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21087
+ /**
21088
+ *
21089
+ * @summary Create a Manager.
21090
+ * @param {CreateManagerCommand} [createManagerCommand]
21091
+ * @param {*} [options] Override http request option.
21092
+ * @throws {RequiredError}
21093
+ */
21094
+ apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
21095
+ };
21096
+ /**
21097
+ * ManagersApi - factory interface
21098
+ * @export
21099
+ */
21100
+ export declare const ManagersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
21101
+ /**
21102
+ *
21103
+ * @summary Get all Managers.
21104
+ * @param {string} [hospitalId]
21105
+ * @param {string} [id]
21106
+ * @param {string} [fullname]
21107
+ * @param {string} [email]
21108
+ * @param {Gender} [gender]
21109
+ * @param {Date} [dateOfBirth]
21110
+ * @param {Date} [created]
21111
+ * @param {number} [page]
21112
+ * @param {number} [limit]
21113
+ * @param {Date} [lastRetrieved]
21114
+ * @param {*} [options] Override http request option.
21115
+ * @throws {RequiredError}
21116
+ */
21117
+ apiV1ManagersGet(hospitalId?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagersModel>;
21118
+ /**
21119
+ *
21120
+ * @summary Delete Manager.
21121
+ * @param {string} managerId
21122
+ * @param {*} [options] Override http request option.
21123
+ * @throws {RequiredError}
21124
+ */
21125
+ apiV1ManagersManagerIdDelete(managerId: string, options?: any): AxiosPromise<boolean>;
21126
+ /**
21127
+ *
21128
+ * @summary Get Manager.
21129
+ * @param {string} managerId
21130
+ * @param {*} [options] Override http request option.
21131
+ * @throws {RequiredError}
21132
+ */
21133
+ apiV1ManagersManagerIdGet(managerId: string, options?: any): AxiosPromise<ManagerModel>;
21134
+ /**
21135
+ *
21136
+ * @summary Update Manager.
21137
+ * @param {string} managerId
21138
+ * @param {UpdateManagerCommand} [updateManagerCommand]
21139
+ * @param {*} [options] Override http request option.
21140
+ * @throws {RequiredError}
21141
+ */
21142
+ apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<boolean>;
21143
+ /**
21144
+ *
21145
+ * @summary Create a Manager.
21146
+ * @param {CreateManagerCommand} [createManagerCommand]
21147
+ * @param {*} [options] Override http request option.
21148
+ * @throws {RequiredError}
21149
+ */
21150
+ apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: any): AxiosPromise<ManagerModel>;
21151
+ };
21152
+ /**
21153
+ * ManagersApi - object-oriented interface
21154
+ * @export
21155
+ * @class ManagersApi
21156
+ * @extends {BaseAPI}
21157
+ */
21158
+ export declare class ManagersApi extends BaseAPI {
21159
+ /**
21160
+ *
21161
+ * @summary Get all Managers.
21162
+ * @param {string} [hospitalId]
21163
+ * @param {string} [id]
21164
+ * @param {string} [fullname]
21165
+ * @param {string} [email]
21166
+ * @param {Gender} [gender]
21167
+ * @param {Date} [dateOfBirth]
21168
+ * @param {Date} [created]
21169
+ * @param {number} [page]
21170
+ * @param {number} [limit]
21171
+ * @param {Date} [lastRetrieved]
21172
+ * @param {*} [options] Override http request option.
21173
+ * @throws {RequiredError}
21174
+ * @memberof ManagersApi
21175
+ */
21176
+ apiV1ManagersGet(hospitalId?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagersModel>>;
21177
+ /**
21178
+ *
21179
+ * @summary Delete Manager.
21180
+ * @param {string} managerId
21181
+ * @param {*} [options] Override http request option.
21182
+ * @throws {RequiredError}
21183
+ * @memberof ManagersApi
21184
+ */
21185
+ apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21186
+ /**
21187
+ *
21188
+ * @summary Get Manager.
21189
+ * @param {string} managerId
21190
+ * @param {*} [options] Override http request option.
21191
+ * @throws {RequiredError}
21192
+ * @memberof ManagersApi
21193
+ */
21194
+ apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
21195
+ /**
21196
+ *
21197
+ * @summary Update Manager.
21198
+ * @param {string} managerId
21199
+ * @param {UpdateManagerCommand} [updateManagerCommand]
21200
+ * @param {*} [options] Override http request option.
21201
+ * @throws {RequiredError}
21202
+ * @memberof ManagersApi
21203
+ */
21204
+ apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21205
+ /**
21206
+ *
21207
+ * @summary Create a Manager.
21208
+ * @param {CreateManagerCommand} [createManagerCommand]
21209
+ * @param {*} [options] Override http request option.
21210
+ * @throws {RequiredError}
21211
+ * @memberof ManagersApi
21212
+ */
21213
+ apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
21214
+ }
20007
21215
  /**
20008
21216
  * NotificationsApi - axios parameter creator
20009
21217
  * @export
@@ -20112,6 +21320,535 @@ export declare class NotificationsApi extends BaseAPI {
20112
21320
  */
20113
21321
  apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
20114
21322
  }
21323
+ /**
21324
+ * PlansApi - axios parameter creator
21325
+ * @export
21326
+ */
21327
+ export declare const PlansApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
21328
+ /**
21329
+ *
21330
+ * @summary Get all plans.
21331
+ * @param {string} [id]
21332
+ * @param {string} [name]
21333
+ * @param {number} [page]
21334
+ * @param {number} [limit]
21335
+ * @param {Date} [lastRetrieved]
21336
+ * @param {*} [options] Override http request option.
21337
+ * @throws {RequiredError}
21338
+ */
21339
+ apiV1PlansGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21340
+ /**
21341
+ *
21342
+ * @summary Delete plan.
21343
+ * @param {string} planId
21344
+ * @param {*} [options] Override http request option.
21345
+ * @throws {RequiredError}
21346
+ */
21347
+ apiV1PlansPlanIdDelete: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21348
+ /**
21349
+ *
21350
+ * @summary Get plan.
21351
+ * @param {string} planId
21352
+ * @param {*} [options] Override http request option.
21353
+ * @throws {RequiredError}
21354
+ */
21355
+ apiV1PlansPlanIdGet: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21356
+ /**
21357
+ *
21358
+ * @summary Get all plan hospital.
21359
+ * @param {string} planId
21360
+ * @param {number} [page]
21361
+ * @param {number} [limit]
21362
+ * @param {Date} [lastRetrieved]
21363
+ * @param {*} [options] Override http request option.
21364
+ * @throws {RequiredError}
21365
+ */
21366
+ apiV1PlansPlanIdHospitalsGet: (planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21367
+ /**
21368
+ *
21369
+ * @summary Delete plan hospital.
21370
+ * @param {string} planId
21371
+ * @param {string} hospitalId
21372
+ * @param {*} [options] Override http request option.
21373
+ * @throws {RequiredError}
21374
+ */
21375
+ apiV1PlansPlanIdHospitalsHospitalIdDelete: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21376
+ /**
21377
+ *
21378
+ * @summary Get plan hospital.
21379
+ * @param {string} planId
21380
+ * @param {string} hospitalId
21381
+ * @param {*} [options] Override http request option.
21382
+ * @throws {RequiredError}
21383
+ */
21384
+ apiV1PlansPlanIdHospitalsHospitalIdGet: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21385
+ /**
21386
+ *
21387
+ * @summary Update plan hospital.
21388
+ * @param {string} planId
21389
+ * @param {string} hospitalId
21390
+ * @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
21391
+ * @param {*} [options] Override http request option.
21392
+ * @throws {RequiredError}
21393
+ */
21394
+ apiV1PlansPlanIdHospitalsHospitalIdPut: (planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21395
+ /**
21396
+ *
21397
+ * @summary Create plan hospital.
21398
+ * @param {string} planId
21399
+ * @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
21400
+ * @param {*} [options] Override http request option.
21401
+ * @throws {RequiredError}
21402
+ */
21403
+ apiV1PlansPlanIdHospitalsPost: (planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21404
+ /**
21405
+ *
21406
+ * @summary Update plan.
21407
+ * @param {string} planId
21408
+ * @param {UpdatePlanCommand} [updatePlanCommand]
21409
+ * @param {*} [options] Override http request option.
21410
+ * @throws {RequiredError}
21411
+ */
21412
+ apiV1PlansPlanIdPut: (planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21413
+ /**
21414
+ *
21415
+ * @summary Create a plan.
21416
+ * @param {CreatePlanCommand} [createPlanCommand]
21417
+ * @param {*} [options] Override http request option.
21418
+ * @throws {RequiredError}
21419
+ */
21420
+ apiV1PlansPost: (createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21421
+ };
21422
+ /**
21423
+ * PlansApi - functional programming interface
21424
+ * @export
21425
+ */
21426
+ export declare const PlansApiFp: (configuration?: Configuration | undefined) => {
21427
+ /**
21428
+ *
21429
+ * @summary Get all plans.
21430
+ * @param {string} [id]
21431
+ * @param {string} [name]
21432
+ * @param {number} [page]
21433
+ * @param {number} [limit]
21434
+ * @param {Date} [lastRetrieved]
21435
+ * @param {*} [options] Override http request option.
21436
+ * @throws {RequiredError}
21437
+ */
21438
+ apiV1PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlansModel>>;
21439
+ /**
21440
+ *
21441
+ * @summary Delete plan.
21442
+ * @param {string} planId
21443
+ * @param {*} [options] Override http request option.
21444
+ * @throws {RequiredError}
21445
+ */
21446
+ apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21447
+ /**
21448
+ *
21449
+ * @summary Get plan.
21450
+ * @param {string} planId
21451
+ * @param {*} [options] Override http request option.
21452
+ * @throws {RequiredError}
21453
+ */
21454
+ apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
21455
+ /**
21456
+ *
21457
+ * @summary Get all plan hospital.
21458
+ * @param {string} planId
21459
+ * @param {number} [page]
21460
+ * @param {number} [limit]
21461
+ * @param {Date} [lastRetrieved]
21462
+ * @param {*} [options] Override http request option.
21463
+ * @throws {RequiredError}
21464
+ */
21465
+ apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalsModel>>;
21466
+ /**
21467
+ *
21468
+ * @summary Delete plan hospital.
21469
+ * @param {string} planId
21470
+ * @param {string} hospitalId
21471
+ * @param {*} [options] Override http request option.
21472
+ * @throws {RequiredError}
21473
+ */
21474
+ apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21475
+ /**
21476
+ *
21477
+ * @summary Get plan hospital.
21478
+ * @param {string} planId
21479
+ * @param {string} hospitalId
21480
+ * @param {*} [options] Override http request option.
21481
+ * @throws {RequiredError}
21482
+ */
21483
+ apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
21484
+ /**
21485
+ *
21486
+ * @summary Update plan hospital.
21487
+ * @param {string} planId
21488
+ * @param {string} hospitalId
21489
+ * @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
21490
+ * @param {*} [options] Override http request option.
21491
+ * @throws {RequiredError}
21492
+ */
21493
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21494
+ /**
21495
+ *
21496
+ * @summary Create plan hospital.
21497
+ * @param {string} planId
21498
+ * @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
21499
+ * @param {*} [options] Override http request option.
21500
+ * @throws {RequiredError}
21501
+ */
21502
+ apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
21503
+ /**
21504
+ *
21505
+ * @summary Update plan.
21506
+ * @param {string} planId
21507
+ * @param {UpdatePlanCommand} [updatePlanCommand]
21508
+ * @param {*} [options] Override http request option.
21509
+ * @throws {RequiredError}
21510
+ */
21511
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21512
+ /**
21513
+ *
21514
+ * @summary Create a plan.
21515
+ * @param {CreatePlanCommand} [createPlanCommand]
21516
+ * @param {*} [options] Override http request option.
21517
+ * @throws {RequiredError}
21518
+ */
21519
+ apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
21520
+ };
21521
+ /**
21522
+ * PlansApi - factory interface
21523
+ * @export
21524
+ */
21525
+ export declare const PlansApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
21526
+ /**
21527
+ *
21528
+ * @summary Get all plans.
21529
+ * @param {string} [id]
21530
+ * @param {string} [name]
21531
+ * @param {number} [page]
21532
+ * @param {number} [limit]
21533
+ * @param {Date} [lastRetrieved]
21534
+ * @param {*} [options] Override http request option.
21535
+ * @throws {RequiredError}
21536
+ */
21537
+ apiV1PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlansModel>;
21538
+ /**
21539
+ *
21540
+ * @summary Delete plan.
21541
+ * @param {string} planId
21542
+ * @param {*} [options] Override http request option.
21543
+ * @throws {RequiredError}
21544
+ */
21545
+ apiV1PlansPlanIdDelete(planId: string, options?: any): AxiosPromise<boolean>;
21546
+ /**
21547
+ *
21548
+ * @summary Get plan.
21549
+ * @param {string} planId
21550
+ * @param {*} [options] Override http request option.
21551
+ * @throws {RequiredError}
21552
+ */
21553
+ apiV1PlansPlanIdGet(planId: string, options?: any): AxiosPromise<PlanModel>;
21554
+ /**
21555
+ *
21556
+ * @summary Get all plan hospital.
21557
+ * @param {string} planId
21558
+ * @param {number} [page]
21559
+ * @param {number} [limit]
21560
+ * @param {Date} [lastRetrieved]
21561
+ * @param {*} [options] Override http request option.
21562
+ * @throws {RequiredError}
21563
+ */
21564
+ apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlanHospitalsModel>;
21565
+ /**
21566
+ *
21567
+ * @summary Delete plan hospital.
21568
+ * @param {string} planId
21569
+ * @param {string} hospitalId
21570
+ * @param {*} [options] Override http request option.
21571
+ * @throws {RequiredError}
21572
+ */
21573
+ apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
21574
+ /**
21575
+ *
21576
+ * @summary Get plan hospital.
21577
+ * @param {string} planId
21578
+ * @param {string} hospitalId
21579
+ * @param {*} [options] Override http request option.
21580
+ * @throws {RequiredError}
21581
+ */
21582
+ apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: any): AxiosPromise<PlanHospitalModel>;
21583
+ /**
21584
+ *
21585
+ * @summary Update plan hospital.
21586
+ * @param {string} planId
21587
+ * @param {string} hospitalId
21588
+ * @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
21589
+ * @param {*} [options] Override http request option.
21590
+ * @throws {RequiredError}
21591
+ */
21592
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
21593
+ /**
21594
+ *
21595
+ * @summary Create plan hospital.
21596
+ * @param {string} planId
21597
+ * @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
21598
+ * @param {*} [options] Override http request option.
21599
+ * @throws {RequiredError}
21600
+ */
21601
+ apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: any): AxiosPromise<PlanHospitalModel>;
21602
+ /**
21603
+ *
21604
+ * @summary Update plan.
21605
+ * @param {string} planId
21606
+ * @param {UpdatePlanCommand} [updatePlanCommand]
21607
+ * @param {*} [options] Override http request option.
21608
+ * @throws {RequiredError}
21609
+ */
21610
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<boolean>;
21611
+ /**
21612
+ *
21613
+ * @summary Create a plan.
21614
+ * @param {CreatePlanCommand} [createPlanCommand]
21615
+ * @param {*} [options] Override http request option.
21616
+ * @throws {RequiredError}
21617
+ */
21618
+ apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
21619
+ };
21620
+ /**
21621
+ * PlansApi - object-oriented interface
21622
+ * @export
21623
+ * @class PlansApi
21624
+ * @extends {BaseAPI}
21625
+ */
21626
+ export declare class PlansApi extends BaseAPI {
21627
+ /**
21628
+ *
21629
+ * @summary Get all plans.
21630
+ * @param {string} [id]
21631
+ * @param {string} [name]
21632
+ * @param {number} [page]
21633
+ * @param {number} [limit]
21634
+ * @param {Date} [lastRetrieved]
21635
+ * @param {*} [options] Override http request option.
21636
+ * @throws {RequiredError}
21637
+ * @memberof PlansApi
21638
+ */
21639
+ apiV1PlansGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlansModel>>;
21640
+ /**
21641
+ *
21642
+ * @summary Delete plan.
21643
+ * @param {string} planId
21644
+ * @param {*} [options] Override http request option.
21645
+ * @throws {RequiredError}
21646
+ * @memberof PlansApi
21647
+ */
21648
+ apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21649
+ /**
21650
+ *
21651
+ * @summary Get plan.
21652
+ * @param {string} planId
21653
+ * @param {*} [options] Override http request option.
21654
+ * @throws {RequiredError}
21655
+ * @memberof PlansApi
21656
+ */
21657
+ apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
21658
+ /**
21659
+ *
21660
+ * @summary Get all plan hospital.
21661
+ * @param {string} planId
21662
+ * @param {number} [page]
21663
+ * @param {number} [limit]
21664
+ * @param {Date} [lastRetrieved]
21665
+ * @param {*} [options] Override http request option.
21666
+ * @throws {RequiredError}
21667
+ * @memberof PlansApi
21668
+ */
21669
+ apiV1PlansPlanIdHospitalsGet(planId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalsModel>>;
21670
+ /**
21671
+ *
21672
+ * @summary Delete plan hospital.
21673
+ * @param {string} planId
21674
+ * @param {string} hospitalId
21675
+ * @param {*} [options] Override http request option.
21676
+ * @throws {RequiredError}
21677
+ * @memberof PlansApi
21678
+ */
21679
+ apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21680
+ /**
21681
+ *
21682
+ * @summary Get plan hospital.
21683
+ * @param {string} planId
21684
+ * @param {string} hospitalId
21685
+ * @param {*} [options] Override http request option.
21686
+ * @throws {RequiredError}
21687
+ * @memberof PlansApi
21688
+ */
21689
+ apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
21690
+ /**
21691
+ *
21692
+ * @summary Update plan hospital.
21693
+ * @param {string} planId
21694
+ * @param {string} hospitalId
21695
+ * @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
21696
+ * @param {*} [options] Override http request option.
21697
+ * @throws {RequiredError}
21698
+ * @memberof PlansApi
21699
+ */
21700
+ apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21701
+ /**
21702
+ *
21703
+ * @summary Create plan hospital.
21704
+ * @param {string} planId
21705
+ * @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
21706
+ * @param {*} [options] Override http request option.
21707
+ * @throws {RequiredError}
21708
+ * @memberof PlansApi
21709
+ */
21710
+ apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
21711
+ /**
21712
+ *
21713
+ * @summary Update plan.
21714
+ * @param {string} planId
21715
+ * @param {UpdatePlanCommand} [updatePlanCommand]
21716
+ * @param {*} [options] Override http request option.
21717
+ * @throws {RequiredError}
21718
+ * @memberof PlansApi
21719
+ */
21720
+ apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21721
+ /**
21722
+ *
21723
+ * @summary Create a plan.
21724
+ * @param {CreatePlanCommand} [createPlanCommand]
21725
+ * @param {*} [options] Override http request option.
21726
+ * @throws {RequiredError}
21727
+ * @memberof PlansApi
21728
+ */
21729
+ apiV1PlansPost(createPlanCommand?: CreatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
21730
+ }
21731
+ /**
21732
+ * ProfilesApi - axios parameter creator
21733
+ * @export
21734
+ */
21735
+ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
21736
+ /**
21737
+ * Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
21738
+ * @summary Change user\'s email on both Identity and Api.
21739
+ * @param {ChangeEmailCommand} [changeEmailCommand]
21740
+ * @param {*} [options] Override http request option.
21741
+ * @throws {RequiredError}
21742
+ */
21743
+ apiV1ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21744
+ /**
21745
+ *
21746
+ * @summary Configm email.
21747
+ * @param {ConfirmEmailCommand} [confirmEmailCommand]
21748
+ * @param {*} [options] Override http request option.
21749
+ * @throws {RequiredError}
21750
+ */
21751
+ apiV1ProfilesConfirmemailPost: (confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21752
+ /**
21753
+ *
21754
+ * @summary Get Profile.
21755
+ * @param {*} [options] Override http request option.
21756
+ * @throws {RequiredError}
21757
+ */
21758
+ apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
21759
+ };
21760
+ /**
21761
+ * ProfilesApi - functional programming interface
21762
+ * @export
21763
+ */
21764
+ export declare const ProfilesApiFp: (configuration?: Configuration | undefined) => {
21765
+ /**
21766
+ * Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
21767
+ * @summary Change user\'s email on both Identity and Api.
21768
+ * @param {ChangeEmailCommand} [changeEmailCommand]
21769
+ * @param {*} [options] Override http request option.
21770
+ * @throws {RequiredError}
21771
+ */
21772
+ apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21773
+ /**
21774
+ *
21775
+ * @summary Configm email.
21776
+ * @param {ConfirmEmailCommand} [confirmEmailCommand]
21777
+ * @param {*} [options] Override http request option.
21778
+ * @throws {RequiredError}
21779
+ */
21780
+ apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
21781
+ /**
21782
+ *
21783
+ * @summary Get Profile.
21784
+ * @param {*} [options] Override http request option.
21785
+ * @throws {RequiredError}
21786
+ */
21787
+ apiV1ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
21788
+ };
21789
+ /**
21790
+ * ProfilesApi - factory interface
21791
+ * @export
21792
+ */
21793
+ export declare const ProfilesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
21794
+ /**
21795
+ * Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
21796
+ * @summary Change user\'s email on both Identity and Api.
21797
+ * @param {ChangeEmailCommand} [changeEmailCommand]
21798
+ * @param {*} [options] Override http request option.
21799
+ * @throws {RequiredError}
21800
+ */
21801
+ apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
21802
+ /**
21803
+ *
21804
+ * @summary Configm email.
21805
+ * @param {ConfirmEmailCommand} [confirmEmailCommand]
21806
+ * @param {*} [options] Override http request option.
21807
+ * @throws {RequiredError}
21808
+ */
21809
+ apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
21810
+ /**
21811
+ *
21812
+ * @summary Get Profile.
21813
+ * @param {*} [options] Override http request option.
21814
+ * @throws {RequiredError}
21815
+ */
21816
+ apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
21817
+ };
21818
+ /**
21819
+ * ProfilesApi - object-oriented interface
21820
+ * @export
21821
+ * @class ProfilesApi
21822
+ * @extends {BaseAPI}
21823
+ */
21824
+ export declare class ProfilesApi extends BaseAPI {
21825
+ /**
21826
+ * Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
21827
+ * @summary Change user\'s email on both Identity and Api.
21828
+ * @param {ChangeEmailCommand} [changeEmailCommand]
21829
+ * @param {*} [options] Override http request option.
21830
+ * @throws {RequiredError}
21831
+ * @memberof ProfilesApi
21832
+ */
21833
+ apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21834
+ /**
21835
+ *
21836
+ * @summary Configm email.
21837
+ * @param {ConfirmEmailCommand} [confirmEmailCommand]
21838
+ * @param {*} [options] Override http request option.
21839
+ * @throws {RequiredError}
21840
+ * @memberof ProfilesApi
21841
+ */
21842
+ apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
21843
+ /**
21844
+ *
21845
+ * @summary Get Profile.
21846
+ * @param {*} [options] Override http request option.
21847
+ * @throws {RequiredError}
21848
+ * @memberof ProfilesApi
21849
+ */
21850
+ apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
21851
+ }
20115
21852
  /**
20116
21853
  * ServicesApi - axios parameter creator
20117
21854
  * @export