ch-admin-api-client-typescript 4.7.9 → 4.8.1
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 +407 -46
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +230 -61
- package/package.json +1 -1
package/lib/api.d.ts
CHANGED
|
@@ -1767,6 +1767,12 @@ export interface CHAdminItemModel {
|
|
|
1767
1767
|
* @memberof CHAdminItemModel
|
|
1768
1768
|
*/
|
|
1769
1769
|
'fullname'?: string | null;
|
|
1770
|
+
/**
|
|
1771
|
+
*
|
|
1772
|
+
* @type {string}
|
|
1773
|
+
* @memberof CHAdminItemModel
|
|
1774
|
+
*/
|
|
1775
|
+
'phoneCountryCode'?: string | null;
|
|
1770
1776
|
/**
|
|
1771
1777
|
*
|
|
1772
1778
|
* @type {string}
|
|
@@ -1858,6 +1864,12 @@ export interface CHAdminModel {
|
|
|
1858
1864
|
* @memberof CHAdminModel
|
|
1859
1865
|
*/
|
|
1860
1866
|
'fullname'?: string | null;
|
|
1867
|
+
/**
|
|
1868
|
+
*
|
|
1869
|
+
* @type {string}
|
|
1870
|
+
* @memberof CHAdminModel
|
|
1871
|
+
*/
|
|
1872
|
+
'phoneCountryCode'?: string | null;
|
|
1861
1873
|
/**
|
|
1862
1874
|
*
|
|
1863
1875
|
* @type {string}
|
|
@@ -1986,6 +1998,12 @@ export interface CHManagerItemModel {
|
|
|
1986
1998
|
* @memberof CHManagerItemModel
|
|
1987
1999
|
*/
|
|
1988
2000
|
'fullname'?: string | null;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {string}
|
|
2004
|
+
* @memberof CHManagerItemModel
|
|
2005
|
+
*/
|
|
2006
|
+
'phoneCountryCode'?: string | null;
|
|
1989
2007
|
/**
|
|
1990
2008
|
*
|
|
1991
2009
|
* @type {string}
|
|
@@ -2077,6 +2095,12 @@ export interface CHManagerModel {
|
|
|
2077
2095
|
* @memberof CHManagerModel
|
|
2078
2096
|
*/
|
|
2079
2097
|
'fullname'?: string | null;
|
|
2098
|
+
/**
|
|
2099
|
+
*
|
|
2100
|
+
* @type {string}
|
|
2101
|
+
* @memberof CHManagerModel
|
|
2102
|
+
*/
|
|
2103
|
+
'phoneCountryCode'?: string | null;
|
|
2080
2104
|
/**
|
|
2081
2105
|
*
|
|
2082
2106
|
* @type {string}
|
|
@@ -3646,6 +3670,12 @@ export interface CreateCHAdminCommand {
|
|
|
3646
3670
|
* @memberof CreateCHAdminCommand
|
|
3647
3671
|
*/
|
|
3648
3672
|
'lastName'?: string | null;
|
|
3673
|
+
/**
|
|
3674
|
+
*
|
|
3675
|
+
* @type {string}
|
|
3676
|
+
* @memberof CreateCHAdminCommand
|
|
3677
|
+
*/
|
|
3678
|
+
'phoneCountryCode'?: string | null;
|
|
3649
3679
|
/**
|
|
3650
3680
|
*
|
|
3651
3681
|
* @type {string}
|
|
@@ -3713,6 +3743,12 @@ export interface CreateCHManagerCommand {
|
|
|
3713
3743
|
* @memberof CreateCHManagerCommand
|
|
3714
3744
|
*/
|
|
3715
3745
|
'lastName'?: string | null;
|
|
3746
|
+
/**
|
|
3747
|
+
*
|
|
3748
|
+
* @type {string}
|
|
3749
|
+
* @memberof CreateCHManagerCommand
|
|
3750
|
+
*/
|
|
3751
|
+
'phoneCountryCode'?: string | null;
|
|
3716
3752
|
/**
|
|
3717
3753
|
*
|
|
3718
3754
|
* @type {string}
|
|
@@ -4191,6 +4227,12 @@ export interface CreateDoctorCommand {
|
|
|
4191
4227
|
* @memberof CreateDoctorCommand
|
|
4192
4228
|
*/
|
|
4193
4229
|
'lastName'?: string | null;
|
|
4230
|
+
/**
|
|
4231
|
+
*
|
|
4232
|
+
* @type {string}
|
|
4233
|
+
* @memberof CreateDoctorCommand
|
|
4234
|
+
*/
|
|
4235
|
+
'phoneCountryCode'?: string | null;
|
|
4194
4236
|
/**
|
|
4195
4237
|
*
|
|
4196
4238
|
* @type {string}
|
|
@@ -4276,7 +4318,19 @@ export interface CreateDoctorLanguageCommand {
|
|
|
4276
4318
|
* @type {string}
|
|
4277
4319
|
* @memberof CreateDoctorLanguageCommand
|
|
4278
4320
|
*/
|
|
4279
|
-
'
|
|
4321
|
+
'languageCode'?: string | null;
|
|
4322
|
+
/**
|
|
4323
|
+
*
|
|
4324
|
+
* @type {number}
|
|
4325
|
+
* @memberof CreateDoctorLanguageCommand
|
|
4326
|
+
*/
|
|
4327
|
+
'order'?: number | null;
|
|
4328
|
+
/**
|
|
4329
|
+
*
|
|
4330
|
+
* @type {boolean}
|
|
4331
|
+
* @memberof CreateDoctorLanguageCommand
|
|
4332
|
+
*/
|
|
4333
|
+
'isPrimary'?: boolean | null;
|
|
4280
4334
|
}
|
|
4281
4335
|
/**
|
|
4282
4336
|
*
|
|
@@ -5082,6 +5136,12 @@ export interface CreateManagerCommand {
|
|
|
5082
5136
|
* @memberof CreateManagerCommand
|
|
5083
5137
|
*/
|
|
5084
5138
|
'lastName'?: string | null;
|
|
5139
|
+
/**
|
|
5140
|
+
*
|
|
5141
|
+
* @type {string}
|
|
5142
|
+
* @memberof CreateManagerCommand
|
|
5143
|
+
*/
|
|
5144
|
+
'phoneCountryCode'?: string | null;
|
|
5085
5145
|
/**
|
|
5086
5146
|
*
|
|
5087
5147
|
* @type {string}
|
|
@@ -5192,6 +5252,12 @@ export interface CreatePatientCommand {
|
|
|
5192
5252
|
* @memberof CreatePatientCommand
|
|
5193
5253
|
*/
|
|
5194
5254
|
'lastName'?: string | null;
|
|
5255
|
+
/**
|
|
5256
|
+
*
|
|
5257
|
+
* @type {string}
|
|
5258
|
+
* @memberof CreatePatientCommand
|
|
5259
|
+
*/
|
|
5260
|
+
'phoneCountryCode'?: string | null;
|
|
5195
5261
|
/**
|
|
5196
5262
|
*
|
|
5197
5263
|
* @type {string}
|
|
@@ -5303,6 +5369,91 @@ export interface CreatePlanHospitalCommand {
|
|
|
5303
5369
|
*/
|
|
5304
5370
|
'order'?: number;
|
|
5305
5371
|
}
|
|
5372
|
+
/**
|
|
5373
|
+
*
|
|
5374
|
+
* @export
|
|
5375
|
+
* @interface CreateProfileCommand
|
|
5376
|
+
*/
|
|
5377
|
+
export interface CreateProfileCommand {
|
|
5378
|
+
/**
|
|
5379
|
+
*
|
|
5380
|
+
* @type {string}
|
|
5381
|
+
* @memberof CreateProfileCommand
|
|
5382
|
+
*/
|
|
5383
|
+
'email'?: string | null;
|
|
5384
|
+
/**
|
|
5385
|
+
*
|
|
5386
|
+
* @type {string}
|
|
5387
|
+
* @memberof CreateProfileCommand
|
|
5388
|
+
*/
|
|
5389
|
+
'firstName'?: string | null;
|
|
5390
|
+
/**
|
|
5391
|
+
*
|
|
5392
|
+
* @type {string}
|
|
5393
|
+
* @memberof CreateProfileCommand
|
|
5394
|
+
*/
|
|
5395
|
+
'lastName'?: string | null;
|
|
5396
|
+
/**
|
|
5397
|
+
*
|
|
5398
|
+
* @type {string}
|
|
5399
|
+
* @memberof CreateProfileCommand
|
|
5400
|
+
*/
|
|
5401
|
+
'phoneCountryCode'?: string | null;
|
|
5402
|
+
/**
|
|
5403
|
+
*
|
|
5404
|
+
* @type {string}
|
|
5405
|
+
* @memberof CreateProfileCommand
|
|
5406
|
+
*/
|
|
5407
|
+
'phone'?: string | null;
|
|
5408
|
+
/**
|
|
5409
|
+
*
|
|
5410
|
+
* @type {string}
|
|
5411
|
+
* @memberof CreateProfileCommand
|
|
5412
|
+
*/
|
|
5413
|
+
'photo'?: string | null;
|
|
5414
|
+
/**
|
|
5415
|
+
*
|
|
5416
|
+
* @type {string}
|
|
5417
|
+
* @memberof CreateProfileCommand
|
|
5418
|
+
*/
|
|
5419
|
+
'photoThumbnail'?: string | null;
|
|
5420
|
+
/**
|
|
5421
|
+
*
|
|
5422
|
+
* @type {Gender}
|
|
5423
|
+
* @memberof CreateProfileCommand
|
|
5424
|
+
*/
|
|
5425
|
+
'gender'?: Gender;
|
|
5426
|
+
/**
|
|
5427
|
+
*
|
|
5428
|
+
* @type {Date}
|
|
5429
|
+
* @memberof CreateProfileCommand
|
|
5430
|
+
*/
|
|
5431
|
+
'dateOfBirth'?: Date | null;
|
|
5432
|
+
/**
|
|
5433
|
+
*
|
|
5434
|
+
* @type {string}
|
|
5435
|
+
* @memberof CreateProfileCommand
|
|
5436
|
+
*/
|
|
5437
|
+
'timeZone'?: string | null;
|
|
5438
|
+
/**
|
|
5439
|
+
*
|
|
5440
|
+
* @type {Array<UserLanguageModel>}
|
|
5441
|
+
* @memberof CreateProfileCommand
|
|
5442
|
+
*/
|
|
5443
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
5444
|
+
/**
|
|
5445
|
+
*
|
|
5446
|
+
* @type {Array<UserLocationModel>}
|
|
5447
|
+
* @memberof CreateProfileCommand
|
|
5448
|
+
*/
|
|
5449
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
5450
|
+
/**
|
|
5451
|
+
*
|
|
5452
|
+
* @type {string}
|
|
5453
|
+
* @memberof CreateProfileCommand
|
|
5454
|
+
*/
|
|
5455
|
+
'hospitalId'?: string | null;
|
|
5456
|
+
}
|
|
5306
5457
|
/**
|
|
5307
5458
|
*
|
|
5308
5459
|
* @export
|
|
@@ -6852,6 +7003,12 @@ export interface DoctorItemModel {
|
|
|
6852
7003
|
* @memberof DoctorItemModel
|
|
6853
7004
|
*/
|
|
6854
7005
|
'fullname'?: string | null;
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @type {string}
|
|
7009
|
+
* @memberof DoctorItemModel
|
|
7010
|
+
*/
|
|
7011
|
+
'phoneCountryCode'?: string | null;
|
|
6855
7012
|
/**
|
|
6856
7013
|
*
|
|
6857
7014
|
* @type {string}
|
|
@@ -6918,19 +7075,37 @@ export interface DoctorLanguageItemModel {
|
|
|
6918
7075
|
* @type {string}
|
|
6919
7076
|
* @memberof DoctorLanguageItemModel
|
|
6920
7077
|
*/
|
|
6921
|
-
'
|
|
7078
|
+
'code'?: string | null;
|
|
6922
7079
|
/**
|
|
6923
7080
|
*
|
|
6924
7081
|
* @type {string}
|
|
6925
7082
|
* @memberof DoctorLanguageItemModel
|
|
6926
7083
|
*/
|
|
6927
|
-
'
|
|
7084
|
+
'name'?: string | null;
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @type {number}
|
|
7088
|
+
* @memberof DoctorLanguageItemModel
|
|
7089
|
+
*/
|
|
7090
|
+
'order'?: number;
|
|
7091
|
+
/**
|
|
7092
|
+
*
|
|
7093
|
+
* @type {boolean}
|
|
7094
|
+
* @memberof DoctorLanguageItemModel
|
|
7095
|
+
*/
|
|
7096
|
+
'isPrimary'?: boolean | null;
|
|
6928
7097
|
/**
|
|
6929
7098
|
*
|
|
6930
7099
|
* @type {string}
|
|
6931
7100
|
* @memberof DoctorLanguageItemModel
|
|
6932
7101
|
*/
|
|
6933
|
-
'
|
|
7102
|
+
'localizedName'?: string | null;
|
|
7103
|
+
/**
|
|
7104
|
+
*
|
|
7105
|
+
* @type {boolean}
|
|
7106
|
+
* @memberof DoctorLanguageItemModel
|
|
7107
|
+
*/
|
|
7108
|
+
'published'?: boolean;
|
|
6934
7109
|
}
|
|
6935
7110
|
/**
|
|
6936
7111
|
*
|
|
@@ -6943,19 +7118,37 @@ export interface DoctorLanguageModel {
|
|
|
6943
7118
|
* @type {string}
|
|
6944
7119
|
* @memberof DoctorLanguageModel
|
|
6945
7120
|
*/
|
|
6946
|
-
'
|
|
7121
|
+
'code'?: string | null;
|
|
6947
7122
|
/**
|
|
6948
7123
|
*
|
|
6949
7124
|
* @type {string}
|
|
6950
7125
|
* @memberof DoctorLanguageModel
|
|
6951
7126
|
*/
|
|
6952
|
-
'
|
|
7127
|
+
'name'?: string | null;
|
|
7128
|
+
/**
|
|
7129
|
+
*
|
|
7130
|
+
* @type {number}
|
|
7131
|
+
* @memberof DoctorLanguageModel
|
|
7132
|
+
*/
|
|
7133
|
+
'order'?: number;
|
|
7134
|
+
/**
|
|
7135
|
+
*
|
|
7136
|
+
* @type {boolean}
|
|
7137
|
+
* @memberof DoctorLanguageModel
|
|
7138
|
+
*/
|
|
7139
|
+
'isPrimary'?: boolean | null;
|
|
6953
7140
|
/**
|
|
6954
7141
|
*
|
|
6955
7142
|
* @type {string}
|
|
6956
7143
|
* @memberof DoctorLanguageModel
|
|
6957
7144
|
*/
|
|
6958
|
-
'
|
|
7145
|
+
'localizedName'?: string | null;
|
|
7146
|
+
/**
|
|
7147
|
+
*
|
|
7148
|
+
* @type {boolean}
|
|
7149
|
+
* @memberof DoctorLanguageModel
|
|
7150
|
+
*/
|
|
7151
|
+
'published'?: boolean;
|
|
6959
7152
|
}
|
|
6960
7153
|
/**
|
|
6961
7154
|
*
|
|
@@ -7012,6 +7205,12 @@ export interface DoctorModel {
|
|
|
7012
7205
|
* @memberof DoctorModel
|
|
7013
7206
|
*/
|
|
7014
7207
|
'fullname'?: string | null;
|
|
7208
|
+
/**
|
|
7209
|
+
*
|
|
7210
|
+
* @type {string}
|
|
7211
|
+
* @memberof DoctorModel
|
|
7212
|
+
*/
|
|
7213
|
+
'phoneCountryCode'?: string | null;
|
|
7015
7214
|
/**
|
|
7016
7215
|
*
|
|
7017
7216
|
* @type {string}
|
|
@@ -10360,6 +10559,12 @@ export interface ManagerItemModel {
|
|
|
10360
10559
|
* @memberof ManagerItemModel
|
|
10361
10560
|
*/
|
|
10362
10561
|
'fullname'?: string | null;
|
|
10562
|
+
/**
|
|
10563
|
+
*
|
|
10564
|
+
* @type {string}
|
|
10565
|
+
* @memberof ManagerItemModel
|
|
10566
|
+
*/
|
|
10567
|
+
'phoneCountryCode'?: string | null;
|
|
10363
10568
|
/**
|
|
10364
10569
|
*
|
|
10365
10570
|
* @type {string}
|
|
@@ -10457,6 +10662,12 @@ export interface ManagerModel {
|
|
|
10457
10662
|
* @memberof ManagerModel
|
|
10458
10663
|
*/
|
|
10459
10664
|
'fullname'?: string | null;
|
|
10665
|
+
/**
|
|
10666
|
+
*
|
|
10667
|
+
* @type {string}
|
|
10668
|
+
* @memberof ManagerModel
|
|
10669
|
+
*/
|
|
10670
|
+
'phoneCountryCode'?: string | null;
|
|
10460
10671
|
/**
|
|
10461
10672
|
*
|
|
10462
10673
|
* @type {string}
|
|
@@ -11165,6 +11376,12 @@ export interface PatientItemModel {
|
|
|
11165
11376
|
* @memberof PatientItemModel
|
|
11166
11377
|
*/
|
|
11167
11378
|
'fullname'?: string | null;
|
|
11379
|
+
/**
|
|
11380
|
+
*
|
|
11381
|
+
* @type {string}
|
|
11382
|
+
* @memberof PatientItemModel
|
|
11383
|
+
*/
|
|
11384
|
+
'phoneCountryCode'?: string | null;
|
|
11168
11385
|
/**
|
|
11169
11386
|
*
|
|
11170
11387
|
* @type {string}
|
|
@@ -11262,6 +11479,12 @@ export interface PatientModel {
|
|
|
11262
11479
|
* @memberof PatientModel
|
|
11263
11480
|
*/
|
|
11264
11481
|
'fullname'?: string | null;
|
|
11482
|
+
/**
|
|
11483
|
+
*
|
|
11484
|
+
* @type {string}
|
|
11485
|
+
* @memberof PatientModel
|
|
11486
|
+
*/
|
|
11487
|
+
'phoneCountryCode'?: string | null;
|
|
11265
11488
|
/**
|
|
11266
11489
|
*
|
|
11267
11490
|
* @type {string}
|
|
@@ -13949,6 +14172,12 @@ export interface UpdateCHAdminCommand {
|
|
|
13949
14172
|
* @memberof UpdateCHAdminCommand
|
|
13950
14173
|
*/
|
|
13951
14174
|
'lastName'?: string | null;
|
|
14175
|
+
/**
|
|
14176
|
+
*
|
|
14177
|
+
* @type {string}
|
|
14178
|
+
* @memberof UpdateCHAdminCommand
|
|
14179
|
+
*/
|
|
14180
|
+
'phoneCountryCode'?: string | null;
|
|
13952
14181
|
/**
|
|
13953
14182
|
*
|
|
13954
14183
|
* @type {string}
|
|
@@ -14016,6 +14245,12 @@ export interface UpdateCHManagerCommand {
|
|
|
14016
14245
|
* @memberof UpdateCHManagerCommand
|
|
14017
14246
|
*/
|
|
14018
14247
|
'lastName'?: string | null;
|
|
14248
|
+
/**
|
|
14249
|
+
*
|
|
14250
|
+
* @type {string}
|
|
14251
|
+
* @memberof UpdateCHManagerCommand
|
|
14252
|
+
*/
|
|
14253
|
+
'phoneCountryCode'?: string | null;
|
|
14019
14254
|
/**
|
|
14020
14255
|
*
|
|
14021
14256
|
* @type {string}
|
|
@@ -14506,6 +14741,12 @@ export interface UpdateDoctorCommand {
|
|
|
14506
14741
|
* @memberof UpdateDoctorCommand
|
|
14507
14742
|
*/
|
|
14508
14743
|
'lastName'?: string | null;
|
|
14744
|
+
/**
|
|
14745
|
+
*
|
|
14746
|
+
* @type {string}
|
|
14747
|
+
* @memberof UpdateDoctorCommand
|
|
14748
|
+
*/
|
|
14749
|
+
'phoneCountryCode'?: string | null;
|
|
14509
14750
|
/**
|
|
14510
14751
|
*
|
|
14511
14752
|
* @type {string}
|
|
@@ -14582,10 +14823,16 @@ export interface UpdateDoctorEducationCommand {
|
|
|
14582
14823
|
export interface UpdateDoctorLanguageCommand {
|
|
14583
14824
|
/**
|
|
14584
14825
|
*
|
|
14585
|
-
* @type {
|
|
14826
|
+
* @type {number}
|
|
14586
14827
|
* @memberof UpdateDoctorLanguageCommand
|
|
14587
14828
|
*/
|
|
14588
|
-
'
|
|
14829
|
+
'order'?: number;
|
|
14830
|
+
/**
|
|
14831
|
+
*
|
|
14832
|
+
* @type {boolean}
|
|
14833
|
+
* @memberof UpdateDoctorLanguageCommand
|
|
14834
|
+
*/
|
|
14835
|
+
'isPrimary'?: boolean | null;
|
|
14589
14836
|
}
|
|
14590
14837
|
/**
|
|
14591
14838
|
*
|
|
@@ -15375,6 +15622,12 @@ export interface UpdateManagerCommand {
|
|
|
15375
15622
|
* @memberof UpdateManagerCommand
|
|
15376
15623
|
*/
|
|
15377
15624
|
'lastName'?: string | null;
|
|
15625
|
+
/**
|
|
15626
|
+
*
|
|
15627
|
+
* @type {string}
|
|
15628
|
+
* @memberof UpdateManagerCommand
|
|
15629
|
+
*/
|
|
15630
|
+
'phoneCountryCode'?: string | null;
|
|
15378
15631
|
/**
|
|
15379
15632
|
*
|
|
15380
15633
|
* @type {string}
|
|
@@ -15485,6 +15738,12 @@ export interface UpdatePatientCommand {
|
|
|
15485
15738
|
* @memberof UpdatePatientCommand
|
|
15486
15739
|
*/
|
|
15487
15740
|
'lastName'?: string | null;
|
|
15741
|
+
/**
|
|
15742
|
+
*
|
|
15743
|
+
* @type {string}
|
|
15744
|
+
* @memberof UpdatePatientCommand
|
|
15745
|
+
*/
|
|
15746
|
+
'phoneCountryCode'?: string | null;
|
|
15488
15747
|
/**
|
|
15489
15748
|
*
|
|
15490
15749
|
* @type {string}
|
|
@@ -15596,6 +15855,12 @@ export interface UpdateProfileCommand {
|
|
|
15596
15855
|
* @memberof UpdateProfileCommand
|
|
15597
15856
|
*/
|
|
15598
15857
|
'lastName'?: string | null;
|
|
15858
|
+
/**
|
|
15859
|
+
*
|
|
15860
|
+
* @type {string}
|
|
15861
|
+
* @memberof UpdateProfileCommand
|
|
15862
|
+
*/
|
|
15863
|
+
'phoneCountryCode'?: string | null;
|
|
15599
15864
|
/**
|
|
15600
15865
|
*
|
|
15601
15866
|
* @type {string}
|
|
@@ -16039,13 +16304,37 @@ export interface UserLanguageModel {
|
|
|
16039
16304
|
* @type {string}
|
|
16040
16305
|
* @memberof UserLanguageModel
|
|
16041
16306
|
*/
|
|
16042
|
-
'
|
|
16307
|
+
'code'?: string | null;
|
|
16043
16308
|
/**
|
|
16044
16309
|
*
|
|
16045
16310
|
* @type {string}
|
|
16046
16311
|
* @memberof UserLanguageModel
|
|
16047
16312
|
*/
|
|
16048
|
-
'
|
|
16313
|
+
'name'?: string | null;
|
|
16314
|
+
/**
|
|
16315
|
+
*
|
|
16316
|
+
* @type {number}
|
|
16317
|
+
* @memberof UserLanguageModel
|
|
16318
|
+
*/
|
|
16319
|
+
'order'?: number;
|
|
16320
|
+
/**
|
|
16321
|
+
*
|
|
16322
|
+
* @type {boolean}
|
|
16323
|
+
* @memberof UserLanguageModel
|
|
16324
|
+
*/
|
|
16325
|
+
'isPrimary'?: boolean | null;
|
|
16326
|
+
/**
|
|
16327
|
+
*
|
|
16328
|
+
* @type {string}
|
|
16329
|
+
* @memberof UserLanguageModel
|
|
16330
|
+
*/
|
|
16331
|
+
'localizedName'?: string | null;
|
|
16332
|
+
/**
|
|
16333
|
+
*
|
|
16334
|
+
* @type {boolean}
|
|
16335
|
+
* @memberof UserLanguageModel
|
|
16336
|
+
*/
|
|
16337
|
+
'published'?: boolean;
|
|
16049
16338
|
}
|
|
16050
16339
|
/**
|
|
16051
16340
|
*
|
|
@@ -16154,6 +16443,12 @@ export interface UserModel {
|
|
|
16154
16443
|
* @memberof UserModel
|
|
16155
16444
|
*/
|
|
16156
16445
|
'fullname'?: string | null;
|
|
16446
|
+
/**
|
|
16447
|
+
*
|
|
16448
|
+
* @type {string}
|
|
16449
|
+
* @memberof UserModel
|
|
16450
|
+
*/
|
|
16451
|
+
'phoneCountryCode'?: string | null;
|
|
16157
16452
|
/**
|
|
16158
16453
|
*
|
|
16159
16454
|
* @type {string}
|
|
@@ -22306,42 +22601,42 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
22306
22601
|
*
|
|
22307
22602
|
* @summary Get all DoctorLanguages.
|
|
22308
22603
|
* @param {string} doctorId
|
|
22309
|
-
* @param {string} [
|
|
22604
|
+
* @param {string} [languageCode]
|
|
22310
22605
|
* @param {number} [page]
|
|
22311
22606
|
* @param {number} [limit]
|
|
22312
22607
|
* @param {Date} [lastRetrieved]
|
|
22313
22608
|
* @param {*} [options] Override http request option.
|
|
22314
22609
|
* @throws {RequiredError}
|
|
22315
22610
|
*/
|
|
22316
|
-
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string,
|
|
22611
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22317
22612
|
/**
|
|
22318
22613
|
*
|
|
22319
22614
|
* @summary Delete DoctorLanguage
|
|
22320
22615
|
* @param {string} doctorId
|
|
22321
|
-
* @param {string}
|
|
22616
|
+
* @param {string} languageCode
|
|
22322
22617
|
* @param {*} [options] Override http request option.
|
|
22323
22618
|
* @throws {RequiredError}
|
|
22324
22619
|
*/
|
|
22325
|
-
|
|
22620
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeDelete: (doctorId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22326
22621
|
/**
|
|
22327
22622
|
*
|
|
22328
22623
|
* @summary Get DoctorLanguage.
|
|
22329
22624
|
* @param {string} doctorId
|
|
22330
|
-
* @param {string}
|
|
22625
|
+
* @param {string} languageCode
|
|
22331
22626
|
* @param {*} [options] Override http request option.
|
|
22332
22627
|
* @throws {RequiredError}
|
|
22333
22628
|
*/
|
|
22334
|
-
|
|
22629
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeGet: (doctorId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22335
22630
|
/**
|
|
22336
22631
|
*
|
|
22337
22632
|
* @summary Update DoctorLanguage.
|
|
22338
22633
|
* @param {string} doctorId
|
|
22339
|
-
* @param {string}
|
|
22634
|
+
* @param {string} languageCode
|
|
22340
22635
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
22341
22636
|
* @param {*} [options] Override http request option.
|
|
22342
22637
|
* @throws {RequiredError}
|
|
22343
22638
|
*/
|
|
22344
|
-
|
|
22639
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodePut: (doctorId: string, languageCode: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22345
22640
|
/**
|
|
22346
22641
|
*
|
|
22347
22642
|
* @summary Create DoctorLanguage.
|
|
@@ -22706,42 +23001,42 @@ export declare const DoctorsApiFp: (configuration?: Configuration) => {
|
|
|
22706
23001
|
*
|
|
22707
23002
|
* @summary Get all DoctorLanguages.
|
|
22708
23003
|
* @param {string} doctorId
|
|
22709
|
-
* @param {string} [
|
|
23004
|
+
* @param {string} [languageCode]
|
|
22710
23005
|
* @param {number} [page]
|
|
22711
23006
|
* @param {number} [limit]
|
|
22712
23007
|
* @param {Date} [lastRetrieved]
|
|
22713
23008
|
* @param {*} [options] Override http request option.
|
|
22714
23009
|
* @throws {RequiredError}
|
|
22715
23010
|
*/
|
|
22716
|
-
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
23011
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguagesModel>>;
|
|
22717
23012
|
/**
|
|
22718
23013
|
*
|
|
22719
23014
|
* @summary Delete DoctorLanguage
|
|
22720
23015
|
* @param {string} doctorId
|
|
22721
|
-
* @param {string}
|
|
23016
|
+
* @param {string} languageCode
|
|
22722
23017
|
* @param {*} [options] Override http request option.
|
|
22723
23018
|
* @throws {RequiredError}
|
|
22724
23019
|
*/
|
|
22725
|
-
|
|
23020
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeDelete(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
22726
23021
|
/**
|
|
22727
23022
|
*
|
|
22728
23023
|
* @summary Get DoctorLanguage.
|
|
22729
23024
|
* @param {string} doctorId
|
|
22730
|
-
* @param {string}
|
|
23025
|
+
* @param {string} languageCode
|
|
22731
23026
|
* @param {*} [options] Override http request option.
|
|
22732
23027
|
* @throws {RequiredError}
|
|
22733
23028
|
*/
|
|
22734
|
-
|
|
23029
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguageModel>>;
|
|
22735
23030
|
/**
|
|
22736
23031
|
*
|
|
22737
23032
|
* @summary Update DoctorLanguage.
|
|
22738
23033
|
* @param {string} doctorId
|
|
22739
|
-
* @param {string}
|
|
23034
|
+
* @param {string} languageCode
|
|
22740
23035
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
22741
23036
|
* @param {*} [options] Override http request option.
|
|
22742
23037
|
* @throws {RequiredError}
|
|
22743
23038
|
*/
|
|
22744
|
-
|
|
23039
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodePut(doctorId: string, languageCode: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
22745
23040
|
/**
|
|
22746
23041
|
*
|
|
22747
23042
|
* @summary Create DoctorLanguage.
|
|
@@ -22750,7 +23045,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration) => {
|
|
|
22750
23045
|
* @param {*} [options] Override http request option.
|
|
22751
23046
|
* @throws {RequiredError}
|
|
22752
23047
|
*/
|
|
22753
|
-
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23048
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
22754
23049
|
/**
|
|
22755
23050
|
*
|
|
22756
23051
|
* @summary Get all DoctorMedias.
|
|
@@ -23106,42 +23401,42 @@ export declare const DoctorsApiFactory: (configuration?: Configuration, basePath
|
|
|
23106
23401
|
*
|
|
23107
23402
|
* @summary Get all DoctorLanguages.
|
|
23108
23403
|
* @param {string} doctorId
|
|
23109
|
-
* @param {string} [
|
|
23404
|
+
* @param {string} [languageCode]
|
|
23110
23405
|
* @param {number} [page]
|
|
23111
23406
|
* @param {number} [limit]
|
|
23112
23407
|
* @param {Date} [lastRetrieved]
|
|
23113
23408
|
* @param {*} [options] Override http request option.
|
|
23114
23409
|
* @throws {RequiredError}
|
|
23115
23410
|
*/
|
|
23116
|
-
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
23411
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
23117
23412
|
/**
|
|
23118
23413
|
*
|
|
23119
23414
|
* @summary Delete DoctorLanguage
|
|
23120
23415
|
* @param {string} doctorId
|
|
23121
|
-
* @param {string}
|
|
23416
|
+
* @param {string} languageCode
|
|
23122
23417
|
* @param {*} [options] Override http request option.
|
|
23123
23418
|
* @throws {RequiredError}
|
|
23124
23419
|
*/
|
|
23125
|
-
|
|
23420
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeDelete(doctorId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
23126
23421
|
/**
|
|
23127
23422
|
*
|
|
23128
23423
|
* @summary Get DoctorLanguage.
|
|
23129
23424
|
* @param {string} doctorId
|
|
23130
|
-
* @param {string}
|
|
23425
|
+
* @param {string} languageCode
|
|
23131
23426
|
* @param {*} [options] Override http request option.
|
|
23132
23427
|
* @throws {RequiredError}
|
|
23133
23428
|
*/
|
|
23134
|
-
|
|
23429
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
23135
23430
|
/**
|
|
23136
23431
|
*
|
|
23137
23432
|
* @summary Update DoctorLanguage.
|
|
23138
23433
|
* @param {string} doctorId
|
|
23139
|
-
* @param {string}
|
|
23434
|
+
* @param {string} languageCode
|
|
23140
23435
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
23141
23436
|
* @param {*} [options] Override http request option.
|
|
23142
23437
|
* @throws {RequiredError}
|
|
23143
23438
|
*/
|
|
23144
|
-
|
|
23439
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodePut(doctorId: string, languageCode: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: any): AxiosPromise<boolean>;
|
|
23145
23440
|
/**
|
|
23146
23441
|
*
|
|
23147
23442
|
* @summary Create DoctorLanguage.
|
|
@@ -23150,7 +23445,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration, basePath
|
|
|
23150
23445
|
* @param {*} [options] Override http request option.
|
|
23151
23446
|
* @throws {RequiredError}
|
|
23152
23447
|
*/
|
|
23153
|
-
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: any): AxiosPromise<
|
|
23448
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: any): AxiosPromise<boolean>;
|
|
23154
23449
|
/**
|
|
23155
23450
|
*
|
|
23156
23451
|
* @summary Get all DoctorMedias.
|
|
@@ -23520,7 +23815,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
23520
23815
|
*
|
|
23521
23816
|
* @summary Get all DoctorLanguages.
|
|
23522
23817
|
* @param {string} doctorId
|
|
23523
|
-
* @param {string} [
|
|
23818
|
+
* @param {string} [languageCode]
|
|
23524
23819
|
* @param {number} [page]
|
|
23525
23820
|
* @param {number} [limit]
|
|
23526
23821
|
* @param {Date} [lastRetrieved]
|
|
@@ -23528,38 +23823,38 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
23528
23823
|
* @throws {RequiredError}
|
|
23529
23824
|
* @memberof DoctorsApi
|
|
23530
23825
|
*/
|
|
23531
|
-
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
23826
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
|
|
23532
23827
|
/**
|
|
23533
23828
|
*
|
|
23534
23829
|
* @summary Delete DoctorLanguage
|
|
23535
23830
|
* @param {string} doctorId
|
|
23536
|
-
* @param {string}
|
|
23831
|
+
* @param {string} languageCode
|
|
23537
23832
|
* @param {*} [options] Override http request option.
|
|
23538
23833
|
* @throws {RequiredError}
|
|
23539
23834
|
* @memberof DoctorsApi
|
|
23540
23835
|
*/
|
|
23541
|
-
|
|
23836
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeDelete(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
23542
23837
|
/**
|
|
23543
23838
|
*
|
|
23544
23839
|
* @summary Get DoctorLanguage.
|
|
23545
23840
|
* @param {string} doctorId
|
|
23546
|
-
* @param {string}
|
|
23841
|
+
* @param {string} languageCode
|
|
23547
23842
|
* @param {*} [options] Override http request option.
|
|
23548
23843
|
* @throws {RequiredError}
|
|
23549
23844
|
* @memberof DoctorsApi
|
|
23550
23845
|
*/
|
|
23551
|
-
|
|
23846
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel, any>>;
|
|
23552
23847
|
/**
|
|
23553
23848
|
*
|
|
23554
23849
|
* @summary Update DoctorLanguage.
|
|
23555
23850
|
* @param {string} doctorId
|
|
23556
|
-
* @param {string}
|
|
23851
|
+
* @param {string} languageCode
|
|
23557
23852
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
23558
23853
|
* @param {*} [options] Override http request option.
|
|
23559
23854
|
* @throws {RequiredError}
|
|
23560
23855
|
* @memberof DoctorsApi
|
|
23561
23856
|
*/
|
|
23562
|
-
|
|
23857
|
+
apiV1DoctorsDoctorIdLanguagesLanguageCodePut(doctorId: string, languageCode: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
23563
23858
|
/**
|
|
23564
23859
|
*
|
|
23565
23860
|
* @summary Create DoctorLanguage.
|
|
@@ -23569,7 +23864,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
23569
23864
|
* @throws {RequiredError}
|
|
23570
23865
|
* @memberof DoctorsApi
|
|
23571
23866
|
*/
|
|
23572
|
-
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
23867
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
23573
23868
|
/**
|
|
23574
23869
|
*
|
|
23575
23870
|
* @summary Get all DoctorMedias.
|
|
@@ -31097,6 +31392,22 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
31097
31392
|
* @throws {RequiredError}
|
|
31098
31393
|
*/
|
|
31099
31394
|
apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31395
|
+
/**
|
|
31396
|
+
*
|
|
31397
|
+
* @summary Create a Profile.
|
|
31398
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
31399
|
+
* @param {*} [options] Override http request option.
|
|
31400
|
+
* @throws {RequiredError}
|
|
31401
|
+
*/
|
|
31402
|
+
apiV1ProfilesPost: (createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31403
|
+
/**
|
|
31404
|
+
*
|
|
31405
|
+
* @summary Delete Profile.
|
|
31406
|
+
* @param {string} profileId
|
|
31407
|
+
* @param {*} [options] Override http request option.
|
|
31408
|
+
* @throws {RequiredError}
|
|
31409
|
+
*/
|
|
31410
|
+
apiV1ProfilesProfileIdDelete: (profileId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31100
31411
|
/**
|
|
31101
31412
|
*
|
|
31102
31413
|
* @summary Update Profile.
|
|
@@ -31134,6 +31445,22 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
31134
31445
|
* @throws {RequiredError}
|
|
31135
31446
|
*/
|
|
31136
31447
|
apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
31448
|
+
/**
|
|
31449
|
+
*
|
|
31450
|
+
* @summary Create a Profile.
|
|
31451
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
31452
|
+
* @param {*} [options] Override http request option.
|
|
31453
|
+
* @throws {RequiredError}
|
|
31454
|
+
*/
|
|
31455
|
+
apiV1ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
31456
|
+
/**
|
|
31457
|
+
*
|
|
31458
|
+
* @summary Delete Profile.
|
|
31459
|
+
* @param {string} profileId
|
|
31460
|
+
* @param {*} [options] Override http request option.
|
|
31461
|
+
* @throws {RequiredError}
|
|
31462
|
+
*/
|
|
31463
|
+
apiV1ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
31137
31464
|
/**
|
|
31138
31465
|
*
|
|
31139
31466
|
* @summary Update Profile.
|
|
@@ -31171,6 +31498,22 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
31171
31498
|
* @throws {RequiredError}
|
|
31172
31499
|
*/
|
|
31173
31500
|
apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
31501
|
+
/**
|
|
31502
|
+
*
|
|
31503
|
+
* @summary Create a Profile.
|
|
31504
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
31505
|
+
* @param {*} [options] Override http request option.
|
|
31506
|
+
* @throws {RequiredError}
|
|
31507
|
+
*/
|
|
31508
|
+
apiV1ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: any): AxiosPromise<UserModel>;
|
|
31509
|
+
/**
|
|
31510
|
+
*
|
|
31511
|
+
* @summary Delete Profile.
|
|
31512
|
+
* @param {string} profileId
|
|
31513
|
+
* @param {*} [options] Override http request option.
|
|
31514
|
+
* @throws {RequiredError}
|
|
31515
|
+
*/
|
|
31516
|
+
apiV1ProfilesProfileIdDelete(profileId: string, options?: any): AxiosPromise<boolean>;
|
|
31174
31517
|
/**
|
|
31175
31518
|
*
|
|
31176
31519
|
* @summary Update Profile.
|
|
@@ -31213,6 +31556,24 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
31213
31556
|
* @memberof ProfilesApi
|
|
31214
31557
|
*/
|
|
31215
31558
|
apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
31559
|
+
/**
|
|
31560
|
+
*
|
|
31561
|
+
* @summary Create a Profile.
|
|
31562
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
31563
|
+
* @param {*} [options] Override http request option.
|
|
31564
|
+
* @throws {RequiredError}
|
|
31565
|
+
* @memberof ProfilesApi
|
|
31566
|
+
*/
|
|
31567
|
+
apiV1ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
31568
|
+
/**
|
|
31569
|
+
*
|
|
31570
|
+
* @summary Delete Profile.
|
|
31571
|
+
* @param {string} profileId
|
|
31572
|
+
* @param {*} [options] Override http request option.
|
|
31573
|
+
* @throws {RequiredError}
|
|
31574
|
+
* @memberof ProfilesApi
|
|
31575
|
+
*/
|
|
31576
|
+
apiV1ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
31216
31577
|
/**
|
|
31217
31578
|
*
|
|
31218
31579
|
* @summary Update Profile.
|