ch-admin-api-client-typescript 2.2.1 → 2.2.10
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 +955 -38
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +931 -118
- package/package.json +1 -1
- package/src/api.ts +1356 -76
package/lib/api.d.ts
CHANGED
|
@@ -1639,6 +1639,19 @@ export interface BookingsModel {
|
|
|
1639
1639
|
*/
|
|
1640
1640
|
'metaData'?: PagedListMetaData;
|
|
1641
1641
|
}
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @export
|
|
1645
|
+
* @interface ChangeEmailCommand
|
|
1646
|
+
*/
|
|
1647
|
+
export interface ChangeEmailCommand {
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {string}
|
|
1651
|
+
* @memberof ChangeEmailCommand
|
|
1652
|
+
*/
|
|
1653
|
+
'email'?: string | null;
|
|
1654
|
+
}
|
|
1642
1655
|
/**
|
|
1643
1656
|
*
|
|
1644
1657
|
* @export
|
|
@@ -1810,6 +1823,19 @@ export interface CommunicationUserTokenModel {
|
|
|
1810
1823
|
*/
|
|
1811
1824
|
'gateway'?: string | null;
|
|
1812
1825
|
}
|
|
1826
|
+
/**
|
|
1827
|
+
*
|
|
1828
|
+
* @export
|
|
1829
|
+
* @interface ConfirmEmailCommand
|
|
1830
|
+
*/
|
|
1831
|
+
export interface ConfirmEmailCommand {
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @type {string}
|
|
1835
|
+
* @memberof ConfirmEmailCommand
|
|
1836
|
+
*/
|
|
1837
|
+
'code'?: string | null;
|
|
1838
|
+
}
|
|
1813
1839
|
/**
|
|
1814
1840
|
*
|
|
1815
1841
|
* @export
|
|
@@ -4064,6 +4090,91 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
4064
4090
|
*/
|
|
4065
4091
|
'order'?: number;
|
|
4066
4092
|
}
|
|
4093
|
+
/**
|
|
4094
|
+
*
|
|
4095
|
+
* @export
|
|
4096
|
+
* @interface CreateManagerCommand
|
|
4097
|
+
*/
|
|
4098
|
+
export interface CreateManagerCommand {
|
|
4099
|
+
/**
|
|
4100
|
+
*
|
|
4101
|
+
* @type {string}
|
|
4102
|
+
* @memberof CreateManagerCommand
|
|
4103
|
+
*/
|
|
4104
|
+
'firstName'?: string | null;
|
|
4105
|
+
/**
|
|
4106
|
+
*
|
|
4107
|
+
* @type {string}
|
|
4108
|
+
* @memberof CreateManagerCommand
|
|
4109
|
+
*/
|
|
4110
|
+
'lastName'?: string | null;
|
|
4111
|
+
/**
|
|
4112
|
+
*
|
|
4113
|
+
* @type {string}
|
|
4114
|
+
* @memberof CreateManagerCommand
|
|
4115
|
+
*/
|
|
4116
|
+
'phone'?: string | null;
|
|
4117
|
+
/**
|
|
4118
|
+
*
|
|
4119
|
+
* @type {string}
|
|
4120
|
+
* @memberof CreateManagerCommand
|
|
4121
|
+
*/
|
|
4122
|
+
'photo'?: string | null;
|
|
4123
|
+
/**
|
|
4124
|
+
*
|
|
4125
|
+
* @type {string}
|
|
4126
|
+
* @memberof CreateManagerCommand
|
|
4127
|
+
*/
|
|
4128
|
+
'photoThumbnail'?: string | null;
|
|
4129
|
+
/**
|
|
4130
|
+
*
|
|
4131
|
+
* @type {Gender}
|
|
4132
|
+
* @memberof CreateManagerCommand
|
|
4133
|
+
*/
|
|
4134
|
+
'gender'?: Gender;
|
|
4135
|
+
/**
|
|
4136
|
+
*
|
|
4137
|
+
* @type {Date}
|
|
4138
|
+
* @memberof CreateManagerCommand
|
|
4139
|
+
*/
|
|
4140
|
+
'dateOfBirth'?: Date | null;
|
|
4141
|
+
/**
|
|
4142
|
+
*
|
|
4143
|
+
* @type {Array<MediaModel>}
|
|
4144
|
+
* @memberof CreateManagerCommand
|
|
4145
|
+
*/
|
|
4146
|
+
'medias'?: Array<MediaModel> | null;
|
|
4147
|
+
/**
|
|
4148
|
+
*
|
|
4149
|
+
* @type {Array<UserLanguageModel>}
|
|
4150
|
+
* @memberof CreateManagerCommand
|
|
4151
|
+
*/
|
|
4152
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
4153
|
+
/**
|
|
4154
|
+
*
|
|
4155
|
+
* @type {Array<UserLocationModel>}
|
|
4156
|
+
* @memberof CreateManagerCommand
|
|
4157
|
+
*/
|
|
4158
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
4159
|
+
/**
|
|
4160
|
+
*
|
|
4161
|
+
* @type {string}
|
|
4162
|
+
* @memberof CreateManagerCommand
|
|
4163
|
+
*/
|
|
4164
|
+
'userName'?: string | null;
|
|
4165
|
+
/**
|
|
4166
|
+
*
|
|
4167
|
+
* @type {string}
|
|
4168
|
+
* @memberof CreateManagerCommand
|
|
4169
|
+
*/
|
|
4170
|
+
'email'?: string | null;
|
|
4171
|
+
/**
|
|
4172
|
+
*
|
|
4173
|
+
* @type {string}
|
|
4174
|
+
* @memberof CreateManagerCommand
|
|
4175
|
+
*/
|
|
4176
|
+
'hospitalId'?: string;
|
|
4177
|
+
}
|
|
4067
4178
|
/**
|
|
4068
4179
|
*
|
|
4069
4180
|
* @export
|
|
@@ -7906,7 +8017,7 @@ export interface HospitalServiceItemModel {
|
|
|
7906
8017
|
* @type {string}
|
|
7907
8018
|
* @memberof HospitalServiceItemModel
|
|
7908
8019
|
*/
|
|
7909
|
-
'serviceCategoryId'?: string;
|
|
8020
|
+
'serviceCategoryId'?: string | null;
|
|
7910
8021
|
/**
|
|
7911
8022
|
*
|
|
7912
8023
|
* @type {string}
|
|
@@ -8039,7 +8150,7 @@ export interface HospitalServiceModel {
|
|
|
8039
8150
|
* @type {string}
|
|
8040
8151
|
* @memberof HospitalServiceModel
|
|
8041
8152
|
*/
|
|
8042
|
-
'serviceCategoryId'?: string;
|
|
8153
|
+
'serviceCategoryId'?: string | null;
|
|
8043
8154
|
/**
|
|
8044
8155
|
*
|
|
8045
8156
|
* @type {string}
|
|
@@ -8721,6 +8832,207 @@ export interface ManagerAffiliation {
|
|
|
8721
8832
|
*/
|
|
8722
8833
|
'hospital'?: Hospital;
|
|
8723
8834
|
}
|
|
8835
|
+
/**
|
|
8836
|
+
*
|
|
8837
|
+
* @export
|
|
8838
|
+
* @interface ManagerAffiliationModel
|
|
8839
|
+
*/
|
|
8840
|
+
export interface ManagerAffiliationModel {
|
|
8841
|
+
/**
|
|
8842
|
+
*
|
|
8843
|
+
* @type {string}
|
|
8844
|
+
* @memberof ManagerAffiliationModel
|
|
8845
|
+
*/
|
|
8846
|
+
'hospitalId'?: string;
|
|
8847
|
+
/**
|
|
8848
|
+
*
|
|
8849
|
+
* @type {string}
|
|
8850
|
+
* @memberof ManagerAffiliationModel
|
|
8851
|
+
*/
|
|
8852
|
+
'hospitalName'?: string | null;
|
|
8853
|
+
/**
|
|
8854
|
+
*
|
|
8855
|
+
* @type {string}
|
|
8856
|
+
* @memberof ManagerAffiliationModel
|
|
8857
|
+
*/
|
|
8858
|
+
'hospitalSlug'?: string | null;
|
|
8859
|
+
/**
|
|
8860
|
+
*
|
|
8861
|
+
* @type {string}
|
|
8862
|
+
* @memberof ManagerAffiliationModel
|
|
8863
|
+
*/
|
|
8864
|
+
'countryId'?: string;
|
|
8865
|
+
/**
|
|
8866
|
+
*
|
|
8867
|
+
* @type {string}
|
|
8868
|
+
* @memberof ManagerAffiliationModel
|
|
8869
|
+
*/
|
|
8870
|
+
'countryName'?: string | null;
|
|
8871
|
+
/**
|
|
8872
|
+
*
|
|
8873
|
+
* @type {string}
|
|
8874
|
+
* @memberof ManagerAffiliationModel
|
|
8875
|
+
*/
|
|
8876
|
+
'stateName'?: string | null;
|
|
8877
|
+
/**
|
|
8878
|
+
*
|
|
8879
|
+
* @type {string}
|
|
8880
|
+
* @memberof ManagerAffiliationModel
|
|
8881
|
+
*/
|
|
8882
|
+
'cityName'?: string | null;
|
|
8883
|
+
/**
|
|
8884
|
+
*
|
|
8885
|
+
* @type {string}
|
|
8886
|
+
* @memberof ManagerAffiliationModel
|
|
8887
|
+
*/
|
|
8888
|
+
'managerId'?: string;
|
|
8889
|
+
/**
|
|
8890
|
+
*
|
|
8891
|
+
* @type {string}
|
|
8892
|
+
* @memberof ManagerAffiliationModel
|
|
8893
|
+
*/
|
|
8894
|
+
'managerName'?: string | null;
|
|
8895
|
+
}
|
|
8896
|
+
/**
|
|
8897
|
+
*
|
|
8898
|
+
* @export
|
|
8899
|
+
* @interface ManagerModel
|
|
8900
|
+
*/
|
|
8901
|
+
export interface ManagerModel {
|
|
8902
|
+
/**
|
|
8903
|
+
*
|
|
8904
|
+
* @type {string}
|
|
8905
|
+
* @memberof ManagerModel
|
|
8906
|
+
*/
|
|
8907
|
+
'id'?: string;
|
|
8908
|
+
/**
|
|
8909
|
+
*
|
|
8910
|
+
* @type {string}
|
|
8911
|
+
* @memberof ManagerModel
|
|
8912
|
+
*/
|
|
8913
|
+
'userName'?: string | null;
|
|
8914
|
+
/**
|
|
8915
|
+
*
|
|
8916
|
+
* @type {string}
|
|
8917
|
+
* @memberof ManagerModel
|
|
8918
|
+
*/
|
|
8919
|
+
'firstName'?: string | null;
|
|
8920
|
+
/**
|
|
8921
|
+
*
|
|
8922
|
+
* @type {string}
|
|
8923
|
+
* @memberof ManagerModel
|
|
8924
|
+
*/
|
|
8925
|
+
'lastName'?: string | null;
|
|
8926
|
+
/**
|
|
8927
|
+
*
|
|
8928
|
+
* @type {string}
|
|
8929
|
+
* @memberof ManagerModel
|
|
8930
|
+
*/
|
|
8931
|
+
'fullname'?: string | null;
|
|
8932
|
+
/**
|
|
8933
|
+
*
|
|
8934
|
+
* @type {string}
|
|
8935
|
+
* @memberof ManagerModel
|
|
8936
|
+
*/
|
|
8937
|
+
'phone'?: string | null;
|
|
8938
|
+
/**
|
|
8939
|
+
*
|
|
8940
|
+
* @type {string}
|
|
8941
|
+
* @memberof ManagerModel
|
|
8942
|
+
*/
|
|
8943
|
+
'email'?: string | null;
|
|
8944
|
+
/**
|
|
8945
|
+
*
|
|
8946
|
+
* @type {string}
|
|
8947
|
+
* @memberof ManagerModel
|
|
8948
|
+
*/
|
|
8949
|
+
'photo'?: string | null;
|
|
8950
|
+
/**
|
|
8951
|
+
*
|
|
8952
|
+
* @type {string}
|
|
8953
|
+
* @memberof ManagerModel
|
|
8954
|
+
*/
|
|
8955
|
+
'photoThumbnail'?: string | null;
|
|
8956
|
+
/**
|
|
8957
|
+
*
|
|
8958
|
+
* @type {Gender}
|
|
8959
|
+
* @memberof ManagerModel
|
|
8960
|
+
*/
|
|
8961
|
+
'gender'?: Gender;
|
|
8962
|
+
/**
|
|
8963
|
+
*
|
|
8964
|
+
* @type {Date}
|
|
8965
|
+
* @memberof ManagerModel
|
|
8966
|
+
*/
|
|
8967
|
+
'dateOfBirth'?: Date | null;
|
|
8968
|
+
/**
|
|
8969
|
+
*
|
|
8970
|
+
* @type {string}
|
|
8971
|
+
* @memberof ManagerModel
|
|
8972
|
+
*/
|
|
8973
|
+
'timeZone'?: string | null;
|
|
8974
|
+
/**
|
|
8975
|
+
*
|
|
8976
|
+
* @type {string}
|
|
8977
|
+
* @memberof ManagerModel
|
|
8978
|
+
*/
|
|
8979
|
+
'communicationUserId'?: string | null;
|
|
8980
|
+
/**
|
|
8981
|
+
*
|
|
8982
|
+
* @type {AuditableEntity}
|
|
8983
|
+
* @memberof ManagerModel
|
|
8984
|
+
*/
|
|
8985
|
+
'auditableEntity'?: AuditableEntity;
|
|
8986
|
+
/**
|
|
8987
|
+
*
|
|
8988
|
+
* @type {string}
|
|
8989
|
+
* @memberof ManagerModel
|
|
8990
|
+
*/
|
|
8991
|
+
'userType'?: string | null;
|
|
8992
|
+
/**
|
|
8993
|
+
*
|
|
8994
|
+
* @type {Array<UserLanguageModel>}
|
|
8995
|
+
* @memberof ManagerModel
|
|
8996
|
+
*/
|
|
8997
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
8998
|
+
/**
|
|
8999
|
+
*
|
|
9000
|
+
* @type {Array<UserLocationModel>}
|
|
9001
|
+
* @memberof ManagerModel
|
|
9002
|
+
*/
|
|
9003
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
9004
|
+
/**
|
|
9005
|
+
*
|
|
9006
|
+
* @type {string}
|
|
9007
|
+
* @memberof ManagerModel
|
|
9008
|
+
*/
|
|
9009
|
+
'hospitalId'?: string;
|
|
9010
|
+
/**
|
|
9011
|
+
*
|
|
9012
|
+
* @type {Array<ManagerAffiliationModel>}
|
|
9013
|
+
* @memberof ManagerModel
|
|
9014
|
+
*/
|
|
9015
|
+
'affiliations'?: Array<ManagerAffiliationModel> | null;
|
|
9016
|
+
}
|
|
9017
|
+
/**
|
|
9018
|
+
*
|
|
9019
|
+
* @export
|
|
9020
|
+
* @interface ManagersModel
|
|
9021
|
+
*/
|
|
9022
|
+
export interface ManagersModel {
|
|
9023
|
+
/**
|
|
9024
|
+
*
|
|
9025
|
+
* @type {Array<UserItemModel>}
|
|
9026
|
+
* @memberof ManagersModel
|
|
9027
|
+
*/
|
|
9028
|
+
'items'?: Array<UserItemModel> | null;
|
|
9029
|
+
/**
|
|
9030
|
+
*
|
|
9031
|
+
* @type {PagedListMetaData}
|
|
9032
|
+
* @memberof ManagersModel
|
|
9033
|
+
*/
|
|
9034
|
+
'metaData'?: PagedListMetaData;
|
|
9035
|
+
}
|
|
8724
9036
|
/**
|
|
8725
9037
|
*
|
|
8726
9038
|
* @export
|
|
@@ -11854,13 +12166,74 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
11854
12166
|
/**
|
|
11855
12167
|
*
|
|
11856
12168
|
* @export
|
|
11857
|
-
* @interface
|
|
12169
|
+
* @interface UpdateManagerCommand
|
|
11858
12170
|
*/
|
|
11859
|
-
export interface
|
|
12171
|
+
export interface UpdateManagerCommand {
|
|
11860
12172
|
/**
|
|
11861
12173
|
*
|
|
11862
|
-
* @type {
|
|
11863
|
-
* @memberof
|
|
12174
|
+
* @type {string}
|
|
12175
|
+
* @memberof UpdateManagerCommand
|
|
12176
|
+
*/
|
|
12177
|
+
'firstName'?: string | null;
|
|
12178
|
+
/**
|
|
12179
|
+
*
|
|
12180
|
+
* @type {string}
|
|
12181
|
+
* @memberof UpdateManagerCommand
|
|
12182
|
+
*/
|
|
12183
|
+
'lastName'?: string | null;
|
|
12184
|
+
/**
|
|
12185
|
+
*
|
|
12186
|
+
* @type {string}
|
|
12187
|
+
* @memberof UpdateManagerCommand
|
|
12188
|
+
*/
|
|
12189
|
+
'phone'?: string | null;
|
|
12190
|
+
/**
|
|
12191
|
+
*
|
|
12192
|
+
* @type {string}
|
|
12193
|
+
* @memberof UpdateManagerCommand
|
|
12194
|
+
*/
|
|
12195
|
+
'photo'?: string | null;
|
|
12196
|
+
/**
|
|
12197
|
+
*
|
|
12198
|
+
* @type {string}
|
|
12199
|
+
* @memberof UpdateManagerCommand
|
|
12200
|
+
*/
|
|
12201
|
+
'photoThumbnail'?: string | null;
|
|
12202
|
+
/**
|
|
12203
|
+
*
|
|
12204
|
+
* @type {Gender}
|
|
12205
|
+
* @memberof UpdateManagerCommand
|
|
12206
|
+
*/
|
|
12207
|
+
'gender'?: Gender;
|
|
12208
|
+
/**
|
|
12209
|
+
*
|
|
12210
|
+
* @type {Date}
|
|
12211
|
+
* @memberof UpdateManagerCommand
|
|
12212
|
+
*/
|
|
12213
|
+
'dateOfBirth'?: Date | null;
|
|
12214
|
+
/**
|
|
12215
|
+
*
|
|
12216
|
+
* @type {Array<UserLanguageModel>}
|
|
12217
|
+
* @memberof UpdateManagerCommand
|
|
12218
|
+
*/
|
|
12219
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
12220
|
+
/**
|
|
12221
|
+
*
|
|
12222
|
+
* @type {Array<UserLocationModel>}
|
|
12223
|
+
* @memberof UpdateManagerCommand
|
|
12224
|
+
*/
|
|
12225
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
12226
|
+
}
|
|
12227
|
+
/**
|
|
12228
|
+
*
|
|
12229
|
+
* @export
|
|
12230
|
+
* @interface UpdateMediaCommand
|
|
12231
|
+
*/
|
|
12232
|
+
export interface UpdateMediaCommand {
|
|
12233
|
+
/**
|
|
12234
|
+
*
|
|
12235
|
+
* @type {MediaType}
|
|
12236
|
+
* @memberof UpdateMediaCommand
|
|
11864
12237
|
*/
|
|
11865
12238
|
'mediaType'?: MediaType;
|
|
11866
12239
|
/**
|
|
@@ -12204,6 +12577,97 @@ export interface User {
|
|
|
12204
12577
|
*/
|
|
12205
12578
|
'auditableEntity'?: AuditableEntity;
|
|
12206
12579
|
}
|
|
12580
|
+
/**
|
|
12581
|
+
*
|
|
12582
|
+
* @export
|
|
12583
|
+
* @interface UserItemModel
|
|
12584
|
+
*/
|
|
12585
|
+
export interface UserItemModel {
|
|
12586
|
+
/**
|
|
12587
|
+
*
|
|
12588
|
+
* @type {string}
|
|
12589
|
+
* @memberof UserItemModel
|
|
12590
|
+
*/
|
|
12591
|
+
'id'?: string;
|
|
12592
|
+
/**
|
|
12593
|
+
*
|
|
12594
|
+
* @type {string}
|
|
12595
|
+
* @memberof UserItemModel
|
|
12596
|
+
*/
|
|
12597
|
+
'userName'?: string | null;
|
|
12598
|
+
/**
|
|
12599
|
+
*
|
|
12600
|
+
* @type {string}
|
|
12601
|
+
* @memberof UserItemModel
|
|
12602
|
+
*/
|
|
12603
|
+
'firstName'?: string | null;
|
|
12604
|
+
/**
|
|
12605
|
+
*
|
|
12606
|
+
* @type {string}
|
|
12607
|
+
* @memberof UserItemModel
|
|
12608
|
+
*/
|
|
12609
|
+
'lastName'?: string | null;
|
|
12610
|
+
/**
|
|
12611
|
+
*
|
|
12612
|
+
* @type {string}
|
|
12613
|
+
* @memberof UserItemModel
|
|
12614
|
+
*/
|
|
12615
|
+
'fullname'?: string | null;
|
|
12616
|
+
/**
|
|
12617
|
+
*
|
|
12618
|
+
* @type {string}
|
|
12619
|
+
* @memberof UserItemModel
|
|
12620
|
+
*/
|
|
12621
|
+
'phone'?: string | null;
|
|
12622
|
+
/**
|
|
12623
|
+
*
|
|
12624
|
+
* @type {string}
|
|
12625
|
+
* @memberof UserItemModel
|
|
12626
|
+
*/
|
|
12627
|
+
'email'?: string | null;
|
|
12628
|
+
/**
|
|
12629
|
+
*
|
|
12630
|
+
* @type {string}
|
|
12631
|
+
* @memberof UserItemModel
|
|
12632
|
+
*/
|
|
12633
|
+
'photo'?: string | null;
|
|
12634
|
+
/**
|
|
12635
|
+
*
|
|
12636
|
+
* @type {string}
|
|
12637
|
+
* @memberof UserItemModel
|
|
12638
|
+
*/
|
|
12639
|
+
'photoThumbnail'?: string | null;
|
|
12640
|
+
/**
|
|
12641
|
+
*
|
|
12642
|
+
* @type {Gender}
|
|
12643
|
+
* @memberof UserItemModel
|
|
12644
|
+
*/
|
|
12645
|
+
'gender'?: Gender;
|
|
12646
|
+
/**
|
|
12647
|
+
*
|
|
12648
|
+
* @type {Date}
|
|
12649
|
+
* @memberof UserItemModel
|
|
12650
|
+
*/
|
|
12651
|
+
'dateOfBirth'?: Date | null;
|
|
12652
|
+
/**
|
|
12653
|
+
*
|
|
12654
|
+
* @type {string}
|
|
12655
|
+
* @memberof UserItemModel
|
|
12656
|
+
*/
|
|
12657
|
+
'timeZone'?: string | null;
|
|
12658
|
+
/**
|
|
12659
|
+
*
|
|
12660
|
+
* @type {string}
|
|
12661
|
+
* @memberof UserItemModel
|
|
12662
|
+
*/
|
|
12663
|
+
'communicationUserId'?: string | null;
|
|
12664
|
+
/**
|
|
12665
|
+
*
|
|
12666
|
+
* @type {AuditableEntity}
|
|
12667
|
+
* @memberof UserItemModel
|
|
12668
|
+
*/
|
|
12669
|
+
'auditableEntity'?: AuditableEntity;
|
|
12670
|
+
}
|
|
12207
12671
|
/**
|
|
12208
12672
|
*
|
|
12209
12673
|
* @export
|
|
@@ -12373,6 +12837,115 @@ export declare enum UserLocationType {
|
|
|
12373
12837
|
LivesIn = "LivesIn",
|
|
12374
12838
|
BirthPlace = "BirthPlace"
|
|
12375
12839
|
}
|
|
12840
|
+
/**
|
|
12841
|
+
*
|
|
12842
|
+
* @export
|
|
12843
|
+
* @interface UserModel
|
|
12844
|
+
*/
|
|
12845
|
+
export interface UserModel {
|
|
12846
|
+
/**
|
|
12847
|
+
*
|
|
12848
|
+
* @type {string}
|
|
12849
|
+
* @memberof UserModel
|
|
12850
|
+
*/
|
|
12851
|
+
'id'?: string;
|
|
12852
|
+
/**
|
|
12853
|
+
*
|
|
12854
|
+
* @type {string}
|
|
12855
|
+
* @memberof UserModel
|
|
12856
|
+
*/
|
|
12857
|
+
'userName'?: string | null;
|
|
12858
|
+
/**
|
|
12859
|
+
*
|
|
12860
|
+
* @type {string}
|
|
12861
|
+
* @memberof UserModel
|
|
12862
|
+
*/
|
|
12863
|
+
'firstName'?: string | null;
|
|
12864
|
+
/**
|
|
12865
|
+
*
|
|
12866
|
+
* @type {string}
|
|
12867
|
+
* @memberof UserModel
|
|
12868
|
+
*/
|
|
12869
|
+
'lastName'?: string | null;
|
|
12870
|
+
/**
|
|
12871
|
+
*
|
|
12872
|
+
* @type {string}
|
|
12873
|
+
* @memberof UserModel
|
|
12874
|
+
*/
|
|
12875
|
+
'fullname'?: string | null;
|
|
12876
|
+
/**
|
|
12877
|
+
*
|
|
12878
|
+
* @type {string}
|
|
12879
|
+
* @memberof UserModel
|
|
12880
|
+
*/
|
|
12881
|
+
'phone'?: string | null;
|
|
12882
|
+
/**
|
|
12883
|
+
*
|
|
12884
|
+
* @type {string}
|
|
12885
|
+
* @memberof UserModel
|
|
12886
|
+
*/
|
|
12887
|
+
'email'?: string | null;
|
|
12888
|
+
/**
|
|
12889
|
+
*
|
|
12890
|
+
* @type {string}
|
|
12891
|
+
* @memberof UserModel
|
|
12892
|
+
*/
|
|
12893
|
+
'photo'?: string | null;
|
|
12894
|
+
/**
|
|
12895
|
+
*
|
|
12896
|
+
* @type {string}
|
|
12897
|
+
* @memberof UserModel
|
|
12898
|
+
*/
|
|
12899
|
+
'photoThumbnail'?: string | null;
|
|
12900
|
+
/**
|
|
12901
|
+
*
|
|
12902
|
+
* @type {Gender}
|
|
12903
|
+
* @memberof UserModel
|
|
12904
|
+
*/
|
|
12905
|
+
'gender'?: Gender;
|
|
12906
|
+
/**
|
|
12907
|
+
*
|
|
12908
|
+
* @type {Date}
|
|
12909
|
+
* @memberof UserModel
|
|
12910
|
+
*/
|
|
12911
|
+
'dateOfBirth'?: Date | null;
|
|
12912
|
+
/**
|
|
12913
|
+
*
|
|
12914
|
+
* @type {string}
|
|
12915
|
+
* @memberof UserModel
|
|
12916
|
+
*/
|
|
12917
|
+
'timeZone'?: string | null;
|
|
12918
|
+
/**
|
|
12919
|
+
*
|
|
12920
|
+
* @type {string}
|
|
12921
|
+
* @memberof UserModel
|
|
12922
|
+
*/
|
|
12923
|
+
'communicationUserId'?: string | null;
|
|
12924
|
+
/**
|
|
12925
|
+
*
|
|
12926
|
+
* @type {AuditableEntity}
|
|
12927
|
+
* @memberof UserModel
|
|
12928
|
+
*/
|
|
12929
|
+
'auditableEntity'?: AuditableEntity;
|
|
12930
|
+
/**
|
|
12931
|
+
*
|
|
12932
|
+
* @type {string}
|
|
12933
|
+
* @memberof UserModel
|
|
12934
|
+
*/
|
|
12935
|
+
'userType'?: string | null;
|
|
12936
|
+
/**
|
|
12937
|
+
*
|
|
12938
|
+
* @type {Array<UserLanguageModel>}
|
|
12939
|
+
* @memberof UserModel
|
|
12940
|
+
*/
|
|
12941
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
12942
|
+
/**
|
|
12943
|
+
*
|
|
12944
|
+
* @type {Array<UserLocationModel>}
|
|
12945
|
+
* @memberof UserModel
|
|
12946
|
+
*/
|
|
12947
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
12948
|
+
}
|
|
12376
12949
|
/**
|
|
12377
12950
|
*
|
|
12378
12951
|
* @export
|
|
@@ -16394,9 +16967,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16394
16967
|
*
|
|
16395
16968
|
* @summary Delete DoctorCertificate.
|
|
16396
16969
|
* @param {string} doctorId
|
|
16397
|
-
* @param {string} [doctorId2]
|
|
16398
|
-
* @param {string} [id]
|
|
16399
16970
|
* @param {string} [doctorName]
|
|
16971
|
+
* @param {string} [certificateId]
|
|
16400
16972
|
* @param {string} [certificate]
|
|
16401
16973
|
* @param {Date} [activeFrom]
|
|
16402
16974
|
* @param {Date} [activeTo]
|
|
@@ -16406,7 +16978,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16406
16978
|
* @param {*} [options] Override http request option.
|
|
16407
16979
|
* @throws {RequiredError}
|
|
16408
16980
|
*/
|
|
16409
|
-
apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string,
|
|
16981
|
+
apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16410
16982
|
/**
|
|
16411
16983
|
*
|
|
16412
16984
|
* @summary Create DoctorCertificate.
|
|
@@ -16456,8 +17028,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16456
17028
|
*
|
|
16457
17029
|
* @summary Get all DoctorEducations.
|
|
16458
17030
|
* @param {string} doctorId
|
|
16459
|
-
* @param {string} [doctorId2]
|
|
16460
17031
|
* @param {string} [doctorName]
|
|
17032
|
+
* @param {string} [educationId]
|
|
16461
17033
|
* @param {string} [institution]
|
|
16462
17034
|
* @param {string} [qualification]
|
|
16463
17035
|
* @param {Date} [graduationDate]
|
|
@@ -16467,7 +17039,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16467
17039
|
* @param {*} [options] Override http request option.
|
|
16468
17040
|
* @throws {RequiredError}
|
|
16469
17041
|
*/
|
|
16470
|
-
apiV1DoctorsDoctorIdEducationsGet: (doctorId: string,
|
|
17042
|
+
apiV1DoctorsDoctorIdEducationsGet: (doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16471
17043
|
/**
|
|
16472
17044
|
*
|
|
16473
17045
|
* @summary Create DoctorEducation.
|
|
@@ -16540,9 +17112,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16540
17112
|
*
|
|
16541
17113
|
* @summary Get All DoctorPortfolios
|
|
16542
17114
|
* @param {string} doctorId
|
|
16543
|
-
* @param {string} [id]
|
|
16544
|
-
* @param {string} [doctorId2]
|
|
16545
17115
|
* @param {string} [doctorName]
|
|
17116
|
+
* @param {string} [portfolioId]
|
|
16546
17117
|
* @param {string} [name]
|
|
16547
17118
|
* @param {number} [page]
|
|
16548
17119
|
* @param {number} [limit]
|
|
@@ -16550,7 +17121,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16550
17121
|
* @param {*} [options] Override http request option.
|
|
16551
17122
|
* @throws {RequiredError}
|
|
16552
17123
|
*/
|
|
16553
|
-
apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string,
|
|
17124
|
+
apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16554
17125
|
/**
|
|
16555
17126
|
*
|
|
16556
17127
|
* @summary Delete DoctorPortfolio.
|
|
@@ -16747,9 +17318,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16747
17318
|
*
|
|
16748
17319
|
* @summary Delete DoctorCertificate.
|
|
16749
17320
|
* @param {string} doctorId
|
|
16750
|
-
* @param {string} [doctorId2]
|
|
16751
|
-
* @param {string} [id]
|
|
16752
17321
|
* @param {string} [doctorName]
|
|
17322
|
+
* @param {string} [certificateId]
|
|
16753
17323
|
* @param {string} [certificate]
|
|
16754
17324
|
* @param {Date} [activeFrom]
|
|
16755
17325
|
* @param {Date} [activeTo]
|
|
@@ -16759,7 +17329,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16759
17329
|
* @param {*} [options] Override http request option.
|
|
16760
17330
|
* @throws {RequiredError}
|
|
16761
17331
|
*/
|
|
16762
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
17332
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
|
|
16763
17333
|
/**
|
|
16764
17334
|
*
|
|
16765
17335
|
* @summary Create DoctorCertificate.
|
|
@@ -16809,8 +17379,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16809
17379
|
*
|
|
16810
17380
|
* @summary Get all DoctorEducations.
|
|
16811
17381
|
* @param {string} doctorId
|
|
16812
|
-
* @param {string} [doctorId2]
|
|
16813
17382
|
* @param {string} [doctorName]
|
|
17383
|
+
* @param {string} [educationId]
|
|
16814
17384
|
* @param {string} [institution]
|
|
16815
17385
|
* @param {string} [qualification]
|
|
16816
17386
|
* @param {Date} [graduationDate]
|
|
@@ -16820,7 +17390,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16820
17390
|
* @param {*} [options] Override http request option.
|
|
16821
17391
|
* @throws {RequiredError}
|
|
16822
17392
|
*/
|
|
16823
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
17393
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
|
|
16824
17394
|
/**
|
|
16825
17395
|
*
|
|
16826
17396
|
* @summary Create DoctorEducation.
|
|
@@ -16893,9 +17463,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16893
17463
|
*
|
|
16894
17464
|
* @summary Get All DoctorPortfolios
|
|
16895
17465
|
* @param {string} doctorId
|
|
16896
|
-
* @param {string} [id]
|
|
16897
|
-
* @param {string} [doctorId2]
|
|
16898
17466
|
* @param {string} [doctorName]
|
|
17467
|
+
* @param {string} [portfolioId]
|
|
16899
17468
|
* @param {string} [name]
|
|
16900
17469
|
* @param {number} [page]
|
|
16901
17470
|
* @param {number} [limit]
|
|
@@ -16903,7 +17472,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16903
17472
|
* @param {*} [options] Override http request option.
|
|
16904
17473
|
* @throws {RequiredError}
|
|
16905
17474
|
*/
|
|
16906
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
17475
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: 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<DoctorPortfoliosModel>>;
|
|
16907
17476
|
/**
|
|
16908
17477
|
*
|
|
16909
17478
|
* @summary Delete DoctorPortfolio.
|
|
@@ -17100,9 +17669,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17100
17669
|
*
|
|
17101
17670
|
* @summary Delete DoctorCertificate.
|
|
17102
17671
|
* @param {string} doctorId
|
|
17103
|
-
* @param {string} [doctorId2]
|
|
17104
|
-
* @param {string} [id]
|
|
17105
17672
|
* @param {string} [doctorName]
|
|
17673
|
+
* @param {string} [certificateId]
|
|
17106
17674
|
* @param {string} [certificate]
|
|
17107
17675
|
* @param {Date} [activeFrom]
|
|
17108
17676
|
* @param {Date} [activeTo]
|
|
@@ -17112,7 +17680,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17112
17680
|
* @param {*} [options] Override http request option.
|
|
17113
17681
|
* @throws {RequiredError}
|
|
17114
17682
|
*/
|
|
17115
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
17683
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorCertificatesModel>;
|
|
17116
17684
|
/**
|
|
17117
17685
|
*
|
|
17118
17686
|
* @summary Create DoctorCertificate.
|
|
@@ -17162,8 +17730,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17162
17730
|
*
|
|
17163
17731
|
* @summary Get all DoctorEducations.
|
|
17164
17732
|
* @param {string} doctorId
|
|
17165
|
-
* @param {string} [doctorId2]
|
|
17166
17733
|
* @param {string} [doctorName]
|
|
17734
|
+
* @param {string} [educationId]
|
|
17167
17735
|
* @param {string} [institution]
|
|
17168
17736
|
* @param {string} [qualification]
|
|
17169
17737
|
* @param {Date} [graduationDate]
|
|
@@ -17173,7 +17741,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17173
17741
|
* @param {*} [options] Override http request option.
|
|
17174
17742
|
* @throws {RequiredError}
|
|
17175
17743
|
*/
|
|
17176
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
17744
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorEducationsModel>;
|
|
17177
17745
|
/**
|
|
17178
17746
|
*
|
|
17179
17747
|
* @summary Create DoctorEducation.
|
|
@@ -17246,9 +17814,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17246
17814
|
*
|
|
17247
17815
|
* @summary Get All DoctorPortfolios
|
|
17248
17816
|
* @param {string} doctorId
|
|
17249
|
-
* @param {string} [id]
|
|
17250
|
-
* @param {string} [doctorId2]
|
|
17251
17817
|
* @param {string} [doctorName]
|
|
17818
|
+
* @param {string} [portfolioId]
|
|
17252
17819
|
* @param {string} [name]
|
|
17253
17820
|
* @param {number} [page]
|
|
17254
17821
|
* @param {number} [limit]
|
|
@@ -17256,7 +17823,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17256
17823
|
* @param {*} [options] Override http request option.
|
|
17257
17824
|
* @throws {RequiredError}
|
|
17258
17825
|
*/
|
|
17259
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
17826
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorPortfoliosModel>;
|
|
17260
17827
|
/**
|
|
17261
17828
|
*
|
|
17262
17829
|
* @summary Delete DoctorPortfolio.
|
|
@@ -17460,9 +18027,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17460
18027
|
*
|
|
17461
18028
|
* @summary Delete DoctorCertificate.
|
|
17462
18029
|
* @param {string} doctorId
|
|
17463
|
-
* @param {string} [doctorId2]
|
|
17464
|
-
* @param {string} [id]
|
|
17465
18030
|
* @param {string} [doctorName]
|
|
18031
|
+
* @param {string} [certificateId]
|
|
17466
18032
|
* @param {string} [certificate]
|
|
17467
18033
|
* @param {Date} [activeFrom]
|
|
17468
18034
|
* @param {Date} [activeTo]
|
|
@@ -17473,7 +18039,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17473
18039
|
* @throws {RequiredError}
|
|
17474
18040
|
* @memberof DoctorsApi
|
|
17475
18041
|
*/
|
|
17476
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
18042
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel>>;
|
|
17477
18043
|
/**
|
|
17478
18044
|
*
|
|
17479
18045
|
* @summary Create DoctorCertificate.
|
|
@@ -17528,8 +18094,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17528
18094
|
*
|
|
17529
18095
|
* @summary Get all DoctorEducations.
|
|
17530
18096
|
* @param {string} doctorId
|
|
17531
|
-
* @param {string} [doctorId2]
|
|
17532
18097
|
* @param {string} [doctorName]
|
|
18098
|
+
* @param {string} [educationId]
|
|
17533
18099
|
* @param {string} [institution]
|
|
17534
18100
|
* @param {string} [qualification]
|
|
17535
18101
|
* @param {Date} [graduationDate]
|
|
@@ -17540,7 +18106,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17540
18106
|
* @throws {RequiredError}
|
|
17541
18107
|
* @memberof DoctorsApi
|
|
17542
18108
|
*/
|
|
17543
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
18109
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
|
|
17544
18110
|
/**
|
|
17545
18111
|
*
|
|
17546
18112
|
* @summary Create DoctorEducation.
|
|
@@ -17620,9 +18186,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17620
18186
|
*
|
|
17621
18187
|
* @summary Get All DoctorPortfolios
|
|
17622
18188
|
* @param {string} doctorId
|
|
17623
|
-
* @param {string} [id]
|
|
17624
|
-
* @param {string} [doctorId2]
|
|
17625
18189
|
* @param {string} [doctorName]
|
|
18190
|
+
* @param {string} [portfolioId]
|
|
17626
18191
|
* @param {string} [name]
|
|
17627
18192
|
* @param {number} [page]
|
|
17628
18193
|
* @param {number} [limit]
|
|
@@ -17631,7 +18196,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17631
18196
|
* @throws {RequiredError}
|
|
17632
18197
|
* @memberof DoctorsApi
|
|
17633
18198
|
*/
|
|
17634
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
18199
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
|
|
17635
18200
|
/**
|
|
17636
18201
|
*
|
|
17637
18202
|
* @summary Delete DoctorPortfolio.
|
|
@@ -20012,6 +20577,237 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
20012
20577
|
*/
|
|
20013
20578
|
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
20014
20579
|
}
|
|
20580
|
+
/**
|
|
20581
|
+
* ManagersApi - axios parameter creator
|
|
20582
|
+
* @export
|
|
20583
|
+
*/
|
|
20584
|
+
export declare const ManagersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
20585
|
+
/**
|
|
20586
|
+
*
|
|
20587
|
+
* @summary Get all Managers.
|
|
20588
|
+
* @param {string} [hospitalId]
|
|
20589
|
+
* @param {string} [id]
|
|
20590
|
+
* @param {string} [fullname]
|
|
20591
|
+
* @param {string} [email]
|
|
20592
|
+
* @param {Gender} [gender]
|
|
20593
|
+
* @param {Date} [dateOfBirth]
|
|
20594
|
+
* @param {Date} [created]
|
|
20595
|
+
* @param {number} [page]
|
|
20596
|
+
* @param {number} [limit]
|
|
20597
|
+
* @param {Date} [lastRetrieved]
|
|
20598
|
+
* @param {*} [options] Override http request option.
|
|
20599
|
+
* @throws {RequiredError}
|
|
20600
|
+
*/
|
|
20601
|
+
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>;
|
|
20602
|
+
/**
|
|
20603
|
+
*
|
|
20604
|
+
* @summary Delete Manager.
|
|
20605
|
+
* @param {string} managerId
|
|
20606
|
+
* @param {*} [options] Override http request option.
|
|
20607
|
+
* @throws {RequiredError}
|
|
20608
|
+
*/
|
|
20609
|
+
apiV1ManagersManagerIdDelete: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20610
|
+
/**
|
|
20611
|
+
*
|
|
20612
|
+
* @summary Get Manager.
|
|
20613
|
+
* @param {string} managerId
|
|
20614
|
+
* @param {*} [options] Override http request option.
|
|
20615
|
+
* @throws {RequiredError}
|
|
20616
|
+
*/
|
|
20617
|
+
apiV1ManagersManagerIdGet: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20618
|
+
/**
|
|
20619
|
+
*
|
|
20620
|
+
* @summary Update Manager.
|
|
20621
|
+
* @param {string} managerId
|
|
20622
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
20623
|
+
* @param {*} [options] Override http request option.
|
|
20624
|
+
* @throws {RequiredError}
|
|
20625
|
+
*/
|
|
20626
|
+
apiV1ManagersManagerIdPut: (managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20627
|
+
/**
|
|
20628
|
+
*
|
|
20629
|
+
* @summary Create a Manager.
|
|
20630
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
20631
|
+
* @param {*} [options] Override http request option.
|
|
20632
|
+
* @throws {RequiredError}
|
|
20633
|
+
*/
|
|
20634
|
+
apiV1ManagersPost: (createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20635
|
+
};
|
|
20636
|
+
/**
|
|
20637
|
+
* ManagersApi - functional programming interface
|
|
20638
|
+
* @export
|
|
20639
|
+
*/
|
|
20640
|
+
export declare const ManagersApiFp: (configuration?: Configuration | undefined) => {
|
|
20641
|
+
/**
|
|
20642
|
+
*
|
|
20643
|
+
* @summary Get all Managers.
|
|
20644
|
+
* @param {string} [hospitalId]
|
|
20645
|
+
* @param {string} [id]
|
|
20646
|
+
* @param {string} [fullname]
|
|
20647
|
+
* @param {string} [email]
|
|
20648
|
+
* @param {Gender} [gender]
|
|
20649
|
+
* @param {Date} [dateOfBirth]
|
|
20650
|
+
* @param {Date} [created]
|
|
20651
|
+
* @param {number} [page]
|
|
20652
|
+
* @param {number} [limit]
|
|
20653
|
+
* @param {Date} [lastRetrieved]
|
|
20654
|
+
* @param {*} [options] Override http request option.
|
|
20655
|
+
* @throws {RequiredError}
|
|
20656
|
+
*/
|
|
20657
|
+
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>>;
|
|
20658
|
+
/**
|
|
20659
|
+
*
|
|
20660
|
+
* @summary Delete Manager.
|
|
20661
|
+
* @param {string} managerId
|
|
20662
|
+
* @param {*} [options] Override http request option.
|
|
20663
|
+
* @throws {RequiredError}
|
|
20664
|
+
*/
|
|
20665
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20666
|
+
/**
|
|
20667
|
+
*
|
|
20668
|
+
* @summary Get Manager.
|
|
20669
|
+
* @param {string} managerId
|
|
20670
|
+
* @param {*} [options] Override http request option.
|
|
20671
|
+
* @throws {RequiredError}
|
|
20672
|
+
*/
|
|
20673
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
20674
|
+
/**
|
|
20675
|
+
*
|
|
20676
|
+
* @summary Update Manager.
|
|
20677
|
+
* @param {string} managerId
|
|
20678
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
20679
|
+
* @param {*} [options] Override http request option.
|
|
20680
|
+
* @throws {RequiredError}
|
|
20681
|
+
*/
|
|
20682
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20683
|
+
/**
|
|
20684
|
+
*
|
|
20685
|
+
* @summary Create a Manager.
|
|
20686
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
20687
|
+
* @param {*} [options] Override http request option.
|
|
20688
|
+
* @throws {RequiredError}
|
|
20689
|
+
*/
|
|
20690
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
20691
|
+
};
|
|
20692
|
+
/**
|
|
20693
|
+
* ManagersApi - factory interface
|
|
20694
|
+
* @export
|
|
20695
|
+
*/
|
|
20696
|
+
export declare const ManagersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
20697
|
+
/**
|
|
20698
|
+
*
|
|
20699
|
+
* @summary Get all Managers.
|
|
20700
|
+
* @param {string} [hospitalId]
|
|
20701
|
+
* @param {string} [id]
|
|
20702
|
+
* @param {string} [fullname]
|
|
20703
|
+
* @param {string} [email]
|
|
20704
|
+
* @param {Gender} [gender]
|
|
20705
|
+
* @param {Date} [dateOfBirth]
|
|
20706
|
+
* @param {Date} [created]
|
|
20707
|
+
* @param {number} [page]
|
|
20708
|
+
* @param {number} [limit]
|
|
20709
|
+
* @param {Date} [lastRetrieved]
|
|
20710
|
+
* @param {*} [options] Override http request option.
|
|
20711
|
+
* @throws {RequiredError}
|
|
20712
|
+
*/
|
|
20713
|
+
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>;
|
|
20714
|
+
/**
|
|
20715
|
+
*
|
|
20716
|
+
* @summary Delete Manager.
|
|
20717
|
+
* @param {string} managerId
|
|
20718
|
+
* @param {*} [options] Override http request option.
|
|
20719
|
+
* @throws {RequiredError}
|
|
20720
|
+
*/
|
|
20721
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: any): AxiosPromise<boolean>;
|
|
20722
|
+
/**
|
|
20723
|
+
*
|
|
20724
|
+
* @summary Get Manager.
|
|
20725
|
+
* @param {string} managerId
|
|
20726
|
+
* @param {*} [options] Override http request option.
|
|
20727
|
+
* @throws {RequiredError}
|
|
20728
|
+
*/
|
|
20729
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: any): AxiosPromise<ManagerModel>;
|
|
20730
|
+
/**
|
|
20731
|
+
*
|
|
20732
|
+
* @summary Update Manager.
|
|
20733
|
+
* @param {string} managerId
|
|
20734
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
20735
|
+
* @param {*} [options] Override http request option.
|
|
20736
|
+
* @throws {RequiredError}
|
|
20737
|
+
*/
|
|
20738
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
20739
|
+
/**
|
|
20740
|
+
*
|
|
20741
|
+
* @summary Create a Manager.
|
|
20742
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
20743
|
+
* @param {*} [options] Override http request option.
|
|
20744
|
+
* @throws {RequiredError}
|
|
20745
|
+
*/
|
|
20746
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: any): AxiosPromise<ManagerModel>;
|
|
20747
|
+
};
|
|
20748
|
+
/**
|
|
20749
|
+
* ManagersApi - object-oriented interface
|
|
20750
|
+
* @export
|
|
20751
|
+
* @class ManagersApi
|
|
20752
|
+
* @extends {BaseAPI}
|
|
20753
|
+
*/
|
|
20754
|
+
export declare class ManagersApi extends BaseAPI {
|
|
20755
|
+
/**
|
|
20756
|
+
*
|
|
20757
|
+
* @summary Get all Managers.
|
|
20758
|
+
* @param {string} [hospitalId]
|
|
20759
|
+
* @param {string} [id]
|
|
20760
|
+
* @param {string} [fullname]
|
|
20761
|
+
* @param {string} [email]
|
|
20762
|
+
* @param {Gender} [gender]
|
|
20763
|
+
* @param {Date} [dateOfBirth]
|
|
20764
|
+
* @param {Date} [created]
|
|
20765
|
+
* @param {number} [page]
|
|
20766
|
+
* @param {number} [limit]
|
|
20767
|
+
* @param {Date} [lastRetrieved]
|
|
20768
|
+
* @param {*} [options] Override http request option.
|
|
20769
|
+
* @throws {RequiredError}
|
|
20770
|
+
* @memberof ManagersApi
|
|
20771
|
+
*/
|
|
20772
|
+
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>>;
|
|
20773
|
+
/**
|
|
20774
|
+
*
|
|
20775
|
+
* @summary Delete Manager.
|
|
20776
|
+
* @param {string} managerId
|
|
20777
|
+
* @param {*} [options] Override http request option.
|
|
20778
|
+
* @throws {RequiredError}
|
|
20779
|
+
* @memberof ManagersApi
|
|
20780
|
+
*/
|
|
20781
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20782
|
+
/**
|
|
20783
|
+
*
|
|
20784
|
+
* @summary Get Manager.
|
|
20785
|
+
* @param {string} managerId
|
|
20786
|
+
* @param {*} [options] Override http request option.
|
|
20787
|
+
* @throws {RequiredError}
|
|
20788
|
+
* @memberof ManagersApi
|
|
20789
|
+
*/
|
|
20790
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
20791
|
+
/**
|
|
20792
|
+
*
|
|
20793
|
+
* @summary Update Manager.
|
|
20794
|
+
* @param {string} managerId
|
|
20795
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
20796
|
+
* @param {*} [options] Override http request option.
|
|
20797
|
+
* @throws {RequiredError}
|
|
20798
|
+
* @memberof ManagersApi
|
|
20799
|
+
*/
|
|
20800
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20801
|
+
/**
|
|
20802
|
+
*
|
|
20803
|
+
* @summary Create a Manager.
|
|
20804
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
20805
|
+
* @param {*} [options] Override http request option.
|
|
20806
|
+
* @throws {RequiredError}
|
|
20807
|
+
* @memberof ManagersApi
|
|
20808
|
+
*/
|
|
20809
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
20810
|
+
}
|
|
20015
20811
|
/**
|
|
20016
20812
|
* NotificationsApi - axios parameter creator
|
|
20017
20813
|
* @export
|
|
@@ -20120,6 +20916,127 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
20120
20916
|
*/
|
|
20121
20917
|
apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
20122
20918
|
}
|
|
20919
|
+
/**
|
|
20920
|
+
* ProfilesApi - axios parameter creator
|
|
20921
|
+
* @export
|
|
20922
|
+
*/
|
|
20923
|
+
export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
20924
|
+
/**
|
|
20925
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
20926
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
20927
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
20928
|
+
* @param {*} [options] Override http request option.
|
|
20929
|
+
* @throws {RequiredError}
|
|
20930
|
+
*/
|
|
20931
|
+
apiV1ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20932
|
+
/**
|
|
20933
|
+
*
|
|
20934
|
+
* @summary Configm email.
|
|
20935
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
20936
|
+
* @param {*} [options] Override http request option.
|
|
20937
|
+
* @throws {RequiredError}
|
|
20938
|
+
*/
|
|
20939
|
+
apiV1ProfilesConfirmemailPost: (confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20940
|
+
/**
|
|
20941
|
+
*
|
|
20942
|
+
* @summary Get Profile.
|
|
20943
|
+
* @param {*} [options] Override http request option.
|
|
20944
|
+
* @throws {RequiredError}
|
|
20945
|
+
*/
|
|
20946
|
+
apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20947
|
+
};
|
|
20948
|
+
/**
|
|
20949
|
+
* ProfilesApi - functional programming interface
|
|
20950
|
+
* @export
|
|
20951
|
+
*/
|
|
20952
|
+
export declare const ProfilesApiFp: (configuration?: Configuration | undefined) => {
|
|
20953
|
+
/**
|
|
20954
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
20955
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
20956
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
20957
|
+
* @param {*} [options] Override http request option.
|
|
20958
|
+
* @throws {RequiredError}
|
|
20959
|
+
*/
|
|
20960
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20961
|
+
/**
|
|
20962
|
+
*
|
|
20963
|
+
* @summary Configm email.
|
|
20964
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
20965
|
+
* @param {*} [options] Override http request option.
|
|
20966
|
+
* @throws {RequiredError}
|
|
20967
|
+
*/
|
|
20968
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20969
|
+
/**
|
|
20970
|
+
*
|
|
20971
|
+
* @summary Get Profile.
|
|
20972
|
+
* @param {*} [options] Override http request option.
|
|
20973
|
+
* @throws {RequiredError}
|
|
20974
|
+
*/
|
|
20975
|
+
apiV1ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
20976
|
+
};
|
|
20977
|
+
/**
|
|
20978
|
+
* ProfilesApi - factory interface
|
|
20979
|
+
* @export
|
|
20980
|
+
*/
|
|
20981
|
+
export declare const ProfilesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
20982
|
+
/**
|
|
20983
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
20984
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
20985
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
20986
|
+
* @param {*} [options] Override http request option.
|
|
20987
|
+
* @throws {RequiredError}
|
|
20988
|
+
*/
|
|
20989
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
20990
|
+
/**
|
|
20991
|
+
*
|
|
20992
|
+
* @summary Configm email.
|
|
20993
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
20994
|
+
* @param {*} [options] Override http request option.
|
|
20995
|
+
* @throws {RequiredError}
|
|
20996
|
+
*/
|
|
20997
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
20998
|
+
/**
|
|
20999
|
+
*
|
|
21000
|
+
* @summary Get Profile.
|
|
21001
|
+
* @param {*} [options] Override http request option.
|
|
21002
|
+
* @throws {RequiredError}
|
|
21003
|
+
*/
|
|
21004
|
+
apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
21005
|
+
};
|
|
21006
|
+
/**
|
|
21007
|
+
* ProfilesApi - object-oriented interface
|
|
21008
|
+
* @export
|
|
21009
|
+
* @class ProfilesApi
|
|
21010
|
+
* @extends {BaseAPI}
|
|
21011
|
+
*/
|
|
21012
|
+
export declare class ProfilesApi extends BaseAPI {
|
|
21013
|
+
/**
|
|
21014
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
21015
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
21016
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
21017
|
+
* @param {*} [options] Override http request option.
|
|
21018
|
+
* @throws {RequiredError}
|
|
21019
|
+
* @memberof ProfilesApi
|
|
21020
|
+
*/
|
|
21021
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21022
|
+
/**
|
|
21023
|
+
*
|
|
21024
|
+
* @summary Configm email.
|
|
21025
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
21026
|
+
* @param {*} [options] Override http request option.
|
|
21027
|
+
* @throws {RequiredError}
|
|
21028
|
+
* @memberof ProfilesApi
|
|
21029
|
+
*/
|
|
21030
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21031
|
+
/**
|
|
21032
|
+
*
|
|
21033
|
+
* @summary Get Profile.
|
|
21034
|
+
* @param {*} [options] Override http request option.
|
|
21035
|
+
* @throws {RequiredError}
|
|
21036
|
+
* @memberof ProfilesApi
|
|
21037
|
+
*/
|
|
21038
|
+
apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
21039
|
+
}
|
|
20123
21040
|
/**
|
|
20124
21041
|
* ServicesApi - axios parameter creator
|
|
20125
21042
|
* @export
|