ch-admin-api-client-typescript 2.2.4 → 2.2.12
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 +1854 -177
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1938 -143
- package/package.json +1 -1
- package/src/api.ts +2750 -267
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
|
|
@@ -4101,6 +4212,74 @@ export interface CreateMediaCommand {
|
|
|
4101
4212
|
*/
|
|
4102
4213
|
'order'?: number;
|
|
4103
4214
|
}
|
|
4215
|
+
/**
|
|
4216
|
+
*
|
|
4217
|
+
* @export
|
|
4218
|
+
* @interface CreatePlanCommand
|
|
4219
|
+
*/
|
|
4220
|
+
export interface CreatePlanCommand {
|
|
4221
|
+
/**
|
|
4222
|
+
*
|
|
4223
|
+
* @type {string}
|
|
4224
|
+
* @memberof CreatePlanCommand
|
|
4225
|
+
*/
|
|
4226
|
+
'name'?: string | null;
|
|
4227
|
+
/**
|
|
4228
|
+
*
|
|
4229
|
+
* @type {number}
|
|
4230
|
+
* @memberof CreatePlanCommand
|
|
4231
|
+
*/
|
|
4232
|
+
'memberLimit'?: number;
|
|
4233
|
+
/**
|
|
4234
|
+
*
|
|
4235
|
+
* @type {number}
|
|
4236
|
+
* @memberof CreatePlanCommand
|
|
4237
|
+
*/
|
|
4238
|
+
'unitPrice'?: number;
|
|
4239
|
+
/**
|
|
4240
|
+
*
|
|
4241
|
+
* @type {string}
|
|
4242
|
+
* @memberof CreatePlanCommand
|
|
4243
|
+
*/
|
|
4244
|
+
'stripePriceId'?: string | null;
|
|
4245
|
+
/**
|
|
4246
|
+
*
|
|
4247
|
+
* @type {RecurringInterval}
|
|
4248
|
+
* @memberof CreatePlanCommand
|
|
4249
|
+
*/
|
|
4250
|
+
'interval'?: RecurringInterval;
|
|
4251
|
+
/**
|
|
4252
|
+
*
|
|
4253
|
+
* @type {boolean}
|
|
4254
|
+
* @memberof CreatePlanCommand
|
|
4255
|
+
*/
|
|
4256
|
+
'isActive'?: boolean;
|
|
4257
|
+
/**
|
|
4258
|
+
*
|
|
4259
|
+
* @type {number}
|
|
4260
|
+
* @memberof CreatePlanCommand
|
|
4261
|
+
*/
|
|
4262
|
+
'order'?: number;
|
|
4263
|
+
}
|
|
4264
|
+
/**
|
|
4265
|
+
*
|
|
4266
|
+
* @export
|
|
4267
|
+
* @interface CreatePlanHospitalCommand
|
|
4268
|
+
*/
|
|
4269
|
+
export interface CreatePlanHospitalCommand {
|
|
4270
|
+
/**
|
|
4271
|
+
*
|
|
4272
|
+
* @type {string}
|
|
4273
|
+
* @memberof CreatePlanHospitalCommand
|
|
4274
|
+
*/
|
|
4275
|
+
'hospitalId'?: string;
|
|
4276
|
+
/**
|
|
4277
|
+
*
|
|
4278
|
+
* @type {number}
|
|
4279
|
+
* @memberof CreatePlanHospitalCommand
|
|
4280
|
+
*/
|
|
4281
|
+
'order'?: number;
|
|
4282
|
+
}
|
|
4104
4283
|
/**
|
|
4105
4284
|
*
|
|
4106
4285
|
* @export
|
|
@@ -8724,157 +8903,358 @@ export interface ManagerAffiliation {
|
|
|
8724
8903
|
/**
|
|
8725
8904
|
*
|
|
8726
8905
|
* @export
|
|
8727
|
-
* @
|
|
8728
|
-
*/
|
|
8729
|
-
export declare enum MarketingType {
|
|
8730
|
-
Both = "Both",
|
|
8731
|
-
GeneralHealth = "GeneralHealth",
|
|
8732
|
-
Beauty = "Beauty"
|
|
8733
|
-
}
|
|
8734
|
-
/**
|
|
8735
|
-
*
|
|
8736
|
-
* @export
|
|
8737
|
-
* @interface Media
|
|
8906
|
+
* @interface ManagerAffiliationModel
|
|
8738
8907
|
*/
|
|
8739
|
-
export interface
|
|
8908
|
+
export interface ManagerAffiliationModel {
|
|
8740
8909
|
/**
|
|
8741
8910
|
*
|
|
8742
8911
|
* @type {string}
|
|
8743
|
-
* @memberof
|
|
8912
|
+
* @memberof ManagerAffiliationModel
|
|
8744
8913
|
*/
|
|
8745
|
-
'
|
|
8914
|
+
'hospitalId'?: string;
|
|
8746
8915
|
/**
|
|
8747
8916
|
*
|
|
8748
|
-
* @type {
|
|
8749
|
-
* @memberof
|
|
8917
|
+
* @type {string}
|
|
8918
|
+
* @memberof ManagerAffiliationModel
|
|
8750
8919
|
*/
|
|
8751
|
-
'
|
|
8920
|
+
'hospitalName'?: string | null;
|
|
8752
8921
|
/**
|
|
8753
8922
|
*
|
|
8754
8923
|
* @type {string}
|
|
8755
|
-
* @memberof
|
|
8924
|
+
* @memberof ManagerAffiliationModel
|
|
8756
8925
|
*/
|
|
8757
|
-
'
|
|
8926
|
+
'hospitalSlug'?: string | null;
|
|
8758
8927
|
/**
|
|
8759
8928
|
*
|
|
8760
8929
|
* @type {string}
|
|
8761
|
-
* @memberof
|
|
8930
|
+
* @memberof ManagerAffiliationModel
|
|
8762
8931
|
*/
|
|
8763
|
-
'
|
|
8932
|
+
'countryId'?: string;
|
|
8764
8933
|
/**
|
|
8765
8934
|
*
|
|
8766
8935
|
* @type {string}
|
|
8767
|
-
* @memberof
|
|
8936
|
+
* @memberof ManagerAffiliationModel
|
|
8768
8937
|
*/
|
|
8769
|
-
'
|
|
8938
|
+
'countryName'?: string | null;
|
|
8770
8939
|
/**
|
|
8771
8940
|
*
|
|
8772
|
-
* @type {
|
|
8773
|
-
* @memberof
|
|
8941
|
+
* @type {string}
|
|
8942
|
+
* @memberof ManagerAffiliationModel
|
|
8774
8943
|
*/
|
|
8775
|
-
'
|
|
8944
|
+
'stateName'?: string | null;
|
|
8776
8945
|
/**
|
|
8777
8946
|
*
|
|
8778
|
-
* @type {
|
|
8779
|
-
* @memberof
|
|
8947
|
+
* @type {string}
|
|
8948
|
+
* @memberof ManagerAffiliationModel
|
|
8780
8949
|
*/
|
|
8781
|
-
'
|
|
8950
|
+
'cityName'?: string | null;
|
|
8782
8951
|
/**
|
|
8783
8952
|
*
|
|
8784
|
-
* @type {
|
|
8785
|
-
* @memberof
|
|
8953
|
+
* @type {string}
|
|
8954
|
+
* @memberof ManagerAffiliationModel
|
|
8786
8955
|
*/
|
|
8787
|
-
'
|
|
8956
|
+
'managerId'?: string;
|
|
8957
|
+
/**
|
|
8958
|
+
*
|
|
8959
|
+
* @type {string}
|
|
8960
|
+
* @memberof ManagerAffiliationModel
|
|
8961
|
+
*/
|
|
8962
|
+
'managerName'?: string | null;
|
|
8788
8963
|
}
|
|
8789
8964
|
/**
|
|
8790
8965
|
*
|
|
8791
8966
|
* @export
|
|
8792
|
-
* @interface
|
|
8967
|
+
* @interface ManagerModel
|
|
8793
8968
|
*/
|
|
8794
|
-
export interface
|
|
8969
|
+
export interface ManagerModel {
|
|
8795
8970
|
/**
|
|
8796
8971
|
*
|
|
8797
8972
|
* @type {string}
|
|
8798
|
-
* @memberof
|
|
8973
|
+
* @memberof ManagerModel
|
|
8799
8974
|
*/
|
|
8800
8975
|
'id'?: string;
|
|
8801
8976
|
/**
|
|
8802
8977
|
*
|
|
8803
|
-
* @type {
|
|
8804
|
-
* @memberof
|
|
8978
|
+
* @type {string}
|
|
8979
|
+
* @memberof ManagerModel
|
|
8805
8980
|
*/
|
|
8806
|
-
'
|
|
8981
|
+
'userName'?: string | null;
|
|
8807
8982
|
/**
|
|
8808
8983
|
*
|
|
8809
8984
|
* @type {string}
|
|
8810
|
-
* @memberof
|
|
8985
|
+
* @memberof ManagerModel
|
|
8811
8986
|
*/
|
|
8812
|
-
'
|
|
8987
|
+
'firstName'?: string | null;
|
|
8813
8988
|
/**
|
|
8814
8989
|
*
|
|
8815
8990
|
* @type {string}
|
|
8816
|
-
* @memberof
|
|
8991
|
+
* @memberof ManagerModel
|
|
8817
8992
|
*/
|
|
8818
|
-
'
|
|
8993
|
+
'lastName'?: string | null;
|
|
8819
8994
|
/**
|
|
8820
8995
|
*
|
|
8821
8996
|
* @type {string}
|
|
8822
|
-
* @memberof
|
|
8997
|
+
* @memberof ManagerModel
|
|
8823
8998
|
*/
|
|
8824
|
-
'
|
|
8999
|
+
'fullname'?: string | null;
|
|
8825
9000
|
/**
|
|
8826
9001
|
*
|
|
8827
|
-
* @type {
|
|
8828
|
-
* @memberof
|
|
9002
|
+
* @type {string}
|
|
9003
|
+
* @memberof ManagerModel
|
|
8829
9004
|
*/
|
|
8830
|
-
'
|
|
8831
|
-
}
|
|
8832
|
-
/**
|
|
8833
|
-
*
|
|
8834
|
-
* @export
|
|
8835
|
-
* @enum {string}
|
|
8836
|
-
*/
|
|
8837
|
-
export declare enum MediaType {
|
|
8838
|
-
Photo = "Photo",
|
|
8839
|
-
Video = "Video",
|
|
8840
|
-
Youtube = "Youtube",
|
|
8841
|
-
Document = "Document"
|
|
8842
|
-
}
|
|
8843
|
-
/**
|
|
8844
|
-
*
|
|
8845
|
-
* @export
|
|
8846
|
-
* @interface MediasModel
|
|
8847
|
-
*/
|
|
8848
|
-
export interface MediasModel {
|
|
9005
|
+
'phone'?: string | null;
|
|
8849
9006
|
/**
|
|
8850
9007
|
*
|
|
8851
|
-
* @type {
|
|
8852
|
-
* @memberof
|
|
9008
|
+
* @type {string}
|
|
9009
|
+
* @memberof ManagerModel
|
|
8853
9010
|
*/
|
|
8854
|
-
'
|
|
9011
|
+
'email'?: string | null;
|
|
8855
9012
|
/**
|
|
8856
9013
|
*
|
|
8857
|
-
* @type {
|
|
8858
|
-
* @memberof
|
|
9014
|
+
* @type {string}
|
|
9015
|
+
* @memberof ManagerModel
|
|
8859
9016
|
*/
|
|
8860
|
-
'
|
|
8861
|
-
}
|
|
8862
|
-
/**
|
|
8863
|
-
*
|
|
8864
|
-
* @export
|
|
8865
|
-
* @interface Membership
|
|
8866
|
-
*/
|
|
8867
|
-
export interface Membership {
|
|
9017
|
+
'photo'?: string | null;
|
|
8868
9018
|
/**
|
|
8869
9019
|
*
|
|
8870
9020
|
* @type {string}
|
|
8871
|
-
* @memberof
|
|
9021
|
+
* @memberof ManagerModel
|
|
8872
9022
|
*/
|
|
8873
|
-
'
|
|
9023
|
+
'photoThumbnail'?: string | null;
|
|
8874
9024
|
/**
|
|
8875
9025
|
*
|
|
8876
|
-
* @type {
|
|
8877
|
-
* @memberof
|
|
9026
|
+
* @type {Gender}
|
|
9027
|
+
* @memberof ManagerModel
|
|
9028
|
+
*/
|
|
9029
|
+
'gender'?: Gender;
|
|
9030
|
+
/**
|
|
9031
|
+
*
|
|
9032
|
+
* @type {Date}
|
|
9033
|
+
* @memberof ManagerModel
|
|
9034
|
+
*/
|
|
9035
|
+
'dateOfBirth'?: Date | null;
|
|
9036
|
+
/**
|
|
9037
|
+
*
|
|
9038
|
+
* @type {string}
|
|
9039
|
+
* @memberof ManagerModel
|
|
9040
|
+
*/
|
|
9041
|
+
'timeZone'?: string | null;
|
|
9042
|
+
/**
|
|
9043
|
+
*
|
|
9044
|
+
* @type {string}
|
|
9045
|
+
* @memberof ManagerModel
|
|
9046
|
+
*/
|
|
9047
|
+
'communicationUserId'?: string | null;
|
|
9048
|
+
/**
|
|
9049
|
+
*
|
|
9050
|
+
* @type {AuditableEntity}
|
|
9051
|
+
* @memberof ManagerModel
|
|
9052
|
+
*/
|
|
9053
|
+
'auditableEntity'?: AuditableEntity;
|
|
9054
|
+
/**
|
|
9055
|
+
*
|
|
9056
|
+
* @type {string}
|
|
9057
|
+
* @memberof ManagerModel
|
|
9058
|
+
*/
|
|
9059
|
+
'userType'?: string | null;
|
|
9060
|
+
/**
|
|
9061
|
+
*
|
|
9062
|
+
* @type {Array<UserLanguageModel>}
|
|
9063
|
+
* @memberof ManagerModel
|
|
9064
|
+
*/
|
|
9065
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
9066
|
+
/**
|
|
9067
|
+
*
|
|
9068
|
+
* @type {Array<UserLocationModel>}
|
|
9069
|
+
* @memberof ManagerModel
|
|
9070
|
+
*/
|
|
9071
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
9072
|
+
/**
|
|
9073
|
+
*
|
|
9074
|
+
* @type {string}
|
|
9075
|
+
* @memberof ManagerModel
|
|
9076
|
+
*/
|
|
9077
|
+
'hospitalId'?: string;
|
|
9078
|
+
/**
|
|
9079
|
+
*
|
|
9080
|
+
* @type {Array<ManagerAffiliationModel>}
|
|
9081
|
+
* @memberof ManagerModel
|
|
9082
|
+
*/
|
|
9083
|
+
'affiliations'?: Array<ManagerAffiliationModel> | null;
|
|
9084
|
+
}
|
|
9085
|
+
/**
|
|
9086
|
+
*
|
|
9087
|
+
* @export
|
|
9088
|
+
* @interface ManagersModel
|
|
9089
|
+
*/
|
|
9090
|
+
export interface ManagersModel {
|
|
9091
|
+
/**
|
|
9092
|
+
*
|
|
9093
|
+
* @type {Array<UserItemModel>}
|
|
9094
|
+
* @memberof ManagersModel
|
|
9095
|
+
*/
|
|
9096
|
+
'items'?: Array<UserItemModel> | null;
|
|
9097
|
+
/**
|
|
9098
|
+
*
|
|
9099
|
+
* @type {PagedListMetaData}
|
|
9100
|
+
* @memberof ManagersModel
|
|
9101
|
+
*/
|
|
9102
|
+
'metaData'?: PagedListMetaData;
|
|
9103
|
+
}
|
|
9104
|
+
/**
|
|
9105
|
+
*
|
|
9106
|
+
* @export
|
|
9107
|
+
* @enum {string}
|
|
9108
|
+
*/
|
|
9109
|
+
export declare enum MarketingType {
|
|
9110
|
+
Both = "Both",
|
|
9111
|
+
GeneralHealth = "GeneralHealth",
|
|
9112
|
+
Beauty = "Beauty"
|
|
9113
|
+
}
|
|
9114
|
+
/**
|
|
9115
|
+
*
|
|
9116
|
+
* @export
|
|
9117
|
+
* @interface Media
|
|
9118
|
+
*/
|
|
9119
|
+
export interface Media {
|
|
9120
|
+
/**
|
|
9121
|
+
*
|
|
9122
|
+
* @type {string}
|
|
9123
|
+
* @memberof Media
|
|
9124
|
+
*/
|
|
9125
|
+
'id'?: string;
|
|
9126
|
+
/**
|
|
9127
|
+
*
|
|
9128
|
+
* @type {MediaType}
|
|
9129
|
+
* @memberof Media
|
|
9130
|
+
*/
|
|
9131
|
+
'mediaType'?: MediaType;
|
|
9132
|
+
/**
|
|
9133
|
+
*
|
|
9134
|
+
* @type {string}
|
|
9135
|
+
* @memberof Media
|
|
9136
|
+
*/
|
|
9137
|
+
'url'?: string | null;
|
|
9138
|
+
/**
|
|
9139
|
+
*
|
|
9140
|
+
* @type {string}
|
|
9141
|
+
* @memberof Media
|
|
9142
|
+
*/
|
|
9143
|
+
'thumbnailUrl'?: string | null;
|
|
9144
|
+
/**
|
|
9145
|
+
*
|
|
9146
|
+
* @type {string}
|
|
9147
|
+
* @memberof Media
|
|
9148
|
+
*/
|
|
9149
|
+
'description'?: string | null;
|
|
9150
|
+
/**
|
|
9151
|
+
*
|
|
9152
|
+
* @type {number}
|
|
9153
|
+
* @memberof Media
|
|
9154
|
+
*/
|
|
9155
|
+
'height'?: number;
|
|
9156
|
+
/**
|
|
9157
|
+
*
|
|
9158
|
+
* @type {number}
|
|
9159
|
+
* @memberof Media
|
|
9160
|
+
*/
|
|
9161
|
+
'width'?: number;
|
|
9162
|
+
/**
|
|
9163
|
+
*
|
|
9164
|
+
* @type {number}
|
|
9165
|
+
* @memberof Media
|
|
9166
|
+
*/
|
|
9167
|
+
'order'?: number;
|
|
9168
|
+
}
|
|
9169
|
+
/**
|
|
9170
|
+
*
|
|
9171
|
+
* @export
|
|
9172
|
+
* @interface MediaModel
|
|
9173
|
+
*/
|
|
9174
|
+
export interface MediaModel {
|
|
9175
|
+
/**
|
|
9176
|
+
*
|
|
9177
|
+
* @type {string}
|
|
9178
|
+
* @memberof MediaModel
|
|
9179
|
+
*/
|
|
9180
|
+
'id'?: string;
|
|
9181
|
+
/**
|
|
9182
|
+
*
|
|
9183
|
+
* @type {MediaType}
|
|
9184
|
+
* @memberof MediaModel
|
|
9185
|
+
*/
|
|
9186
|
+
'mediaType'?: MediaType;
|
|
9187
|
+
/**
|
|
9188
|
+
*
|
|
9189
|
+
* @type {string}
|
|
9190
|
+
* @memberof MediaModel
|
|
9191
|
+
*/
|
|
9192
|
+
'url'?: string | null;
|
|
9193
|
+
/**
|
|
9194
|
+
*
|
|
9195
|
+
* @type {string}
|
|
9196
|
+
* @memberof MediaModel
|
|
9197
|
+
*/
|
|
9198
|
+
'thumbnailUrl'?: string | null;
|
|
9199
|
+
/**
|
|
9200
|
+
*
|
|
9201
|
+
* @type {string}
|
|
9202
|
+
* @memberof MediaModel
|
|
9203
|
+
*/
|
|
9204
|
+
'description'?: string | null;
|
|
9205
|
+
/**
|
|
9206
|
+
*
|
|
9207
|
+
* @type {number}
|
|
9208
|
+
* @memberof MediaModel
|
|
9209
|
+
*/
|
|
9210
|
+
'order'?: number;
|
|
9211
|
+
}
|
|
9212
|
+
/**
|
|
9213
|
+
*
|
|
9214
|
+
* @export
|
|
9215
|
+
* @enum {string}
|
|
9216
|
+
*/
|
|
9217
|
+
export declare enum MediaType {
|
|
9218
|
+
Photo = "Photo",
|
|
9219
|
+
Video = "Video",
|
|
9220
|
+
Youtube = "Youtube",
|
|
9221
|
+
Document = "Document"
|
|
9222
|
+
}
|
|
9223
|
+
/**
|
|
9224
|
+
*
|
|
9225
|
+
* @export
|
|
9226
|
+
* @interface MediasModel
|
|
9227
|
+
*/
|
|
9228
|
+
export interface MediasModel {
|
|
9229
|
+
/**
|
|
9230
|
+
*
|
|
9231
|
+
* @type {Array<MediaModel>}
|
|
9232
|
+
* @memberof MediasModel
|
|
9233
|
+
*/
|
|
9234
|
+
'items'?: Array<MediaModel> | null;
|
|
9235
|
+
/**
|
|
9236
|
+
*
|
|
9237
|
+
* @type {PagedListMetaData}
|
|
9238
|
+
* @memberof MediasModel
|
|
9239
|
+
*/
|
|
9240
|
+
'metaData'?: PagedListMetaData;
|
|
9241
|
+
}
|
|
9242
|
+
/**
|
|
9243
|
+
*
|
|
9244
|
+
* @export
|
|
9245
|
+
* @interface Membership
|
|
9246
|
+
*/
|
|
9247
|
+
export interface Membership {
|
|
9248
|
+
/**
|
|
9249
|
+
*
|
|
9250
|
+
* @type {string}
|
|
9251
|
+
* @memberof Membership
|
|
9252
|
+
*/
|
|
9253
|
+
'id'?: string;
|
|
9254
|
+
/**
|
|
9255
|
+
*
|
|
9256
|
+
* @type {string}
|
|
9257
|
+
* @memberof Membership
|
|
8878
9258
|
*/
|
|
8879
9259
|
'planId'?: string;
|
|
8880
9260
|
/**
|
|
@@ -9559,70 +9939,292 @@ export interface Plan {
|
|
|
9559
9939
|
/**
|
|
9560
9940
|
*
|
|
9561
9941
|
* @export
|
|
9562
|
-
* @
|
|
9563
|
-
*/
|
|
9564
|
-
export declare enum Platform {
|
|
9565
|
-
Web = "Web",
|
|
9566
|
-
IOs = "iOS",
|
|
9567
|
-
Android = "Android"
|
|
9568
|
-
}
|
|
9569
|
-
/**
|
|
9570
|
-
*
|
|
9571
|
-
* @export
|
|
9572
|
-
* @interface ProblemDetails
|
|
9942
|
+
* @interface PlanHospitalItemModel
|
|
9573
9943
|
*/
|
|
9574
|
-
export interface
|
|
9575
|
-
[key: string]: any | any;
|
|
9944
|
+
export interface PlanHospitalItemModel {
|
|
9576
9945
|
/**
|
|
9577
9946
|
*
|
|
9578
9947
|
* @type {string}
|
|
9579
|
-
* @memberof
|
|
9948
|
+
* @memberof PlanHospitalItemModel
|
|
9580
9949
|
*/
|
|
9581
|
-
'
|
|
9950
|
+
'planId'?: string;
|
|
9582
9951
|
/**
|
|
9583
9952
|
*
|
|
9584
9953
|
* @type {string}
|
|
9585
|
-
* @memberof
|
|
9954
|
+
* @memberof PlanHospitalItemModel
|
|
9586
9955
|
*/
|
|
9587
|
-
'
|
|
9956
|
+
'planName'?: string | null;
|
|
9588
9957
|
/**
|
|
9589
9958
|
*
|
|
9590
|
-
* @type {
|
|
9591
|
-
* @memberof
|
|
9959
|
+
* @type {string}
|
|
9960
|
+
* @memberof PlanHospitalItemModel
|
|
9592
9961
|
*/
|
|
9593
|
-
'
|
|
9962
|
+
'hospitalId'?: string;
|
|
9594
9963
|
/**
|
|
9595
9964
|
*
|
|
9596
9965
|
* @type {string}
|
|
9597
|
-
* @memberof
|
|
9966
|
+
* @memberof PlanHospitalItemModel
|
|
9598
9967
|
*/
|
|
9599
|
-
'
|
|
9968
|
+
'hospitalName'?: string | null;
|
|
9600
9969
|
/**
|
|
9601
9970
|
*
|
|
9602
|
-
* @type {
|
|
9603
|
-
* @memberof
|
|
9971
|
+
* @type {number}
|
|
9972
|
+
* @memberof PlanHospitalItemModel
|
|
9604
9973
|
*/
|
|
9605
|
-
'
|
|
9606
|
-
}
|
|
9607
|
-
/**
|
|
9608
|
-
*
|
|
9609
|
-
* @export
|
|
9610
|
-
* @enum {string}
|
|
9611
|
-
*/
|
|
9612
|
-
export declare enum Procedure {
|
|
9613
|
-
Treatment = "Treatment",
|
|
9614
|
-
Diagnostic = "Diagnostic"
|
|
9974
|
+
'order'?: number;
|
|
9615
9975
|
}
|
|
9616
9976
|
/**
|
|
9617
9977
|
*
|
|
9618
9978
|
* @export
|
|
9619
|
-
* @interface
|
|
9979
|
+
* @interface PlanHospitalModel
|
|
9620
9980
|
*/
|
|
9621
|
-
export interface
|
|
9981
|
+
export interface PlanHospitalModel {
|
|
9622
9982
|
/**
|
|
9623
9983
|
*
|
|
9624
9984
|
* @type {string}
|
|
9625
|
-
* @memberof
|
|
9985
|
+
* @memberof PlanHospitalModel
|
|
9986
|
+
*/
|
|
9987
|
+
'planId'?: string;
|
|
9988
|
+
/**
|
|
9989
|
+
*
|
|
9990
|
+
* @type {string}
|
|
9991
|
+
* @memberof PlanHospitalModel
|
|
9992
|
+
*/
|
|
9993
|
+
'planName'?: string | null;
|
|
9994
|
+
/**
|
|
9995
|
+
*
|
|
9996
|
+
* @type {string}
|
|
9997
|
+
* @memberof PlanHospitalModel
|
|
9998
|
+
*/
|
|
9999
|
+
'hospitalId'?: string;
|
|
10000
|
+
/**
|
|
10001
|
+
*
|
|
10002
|
+
* @type {string}
|
|
10003
|
+
* @memberof PlanHospitalModel
|
|
10004
|
+
*/
|
|
10005
|
+
'hospitalName'?: string | null;
|
|
10006
|
+
/**
|
|
10007
|
+
*
|
|
10008
|
+
* @type {number}
|
|
10009
|
+
* @memberof PlanHospitalModel
|
|
10010
|
+
*/
|
|
10011
|
+
'order'?: number;
|
|
10012
|
+
}
|
|
10013
|
+
/**
|
|
10014
|
+
*
|
|
10015
|
+
* @export
|
|
10016
|
+
* @interface PlanHospitalsModel
|
|
10017
|
+
*/
|
|
10018
|
+
export interface PlanHospitalsModel {
|
|
10019
|
+
/**
|
|
10020
|
+
*
|
|
10021
|
+
* @type {Array<PlanHospitalItemModel>}
|
|
10022
|
+
* @memberof PlanHospitalsModel
|
|
10023
|
+
*/
|
|
10024
|
+
'items'?: Array<PlanHospitalItemModel> | null;
|
|
10025
|
+
/**
|
|
10026
|
+
*
|
|
10027
|
+
* @type {PagedListMetaData}
|
|
10028
|
+
* @memberof PlanHospitalsModel
|
|
10029
|
+
*/
|
|
10030
|
+
'metaData'?: PagedListMetaData;
|
|
10031
|
+
}
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @export
|
|
10035
|
+
* @interface PlanItemModel
|
|
10036
|
+
*/
|
|
10037
|
+
export interface PlanItemModel {
|
|
10038
|
+
/**
|
|
10039
|
+
*
|
|
10040
|
+
* @type {string}
|
|
10041
|
+
* @memberof PlanItemModel
|
|
10042
|
+
*/
|
|
10043
|
+
'id'?: string;
|
|
10044
|
+
/**
|
|
10045
|
+
*
|
|
10046
|
+
* @type {string}
|
|
10047
|
+
* @memberof PlanItemModel
|
|
10048
|
+
*/
|
|
10049
|
+
'name'?: string | null;
|
|
10050
|
+
/**
|
|
10051
|
+
*
|
|
10052
|
+
* @type {number}
|
|
10053
|
+
* @memberof PlanItemModel
|
|
10054
|
+
*/
|
|
10055
|
+
'memberLimit'?: number;
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @type {number}
|
|
10059
|
+
* @memberof PlanItemModel
|
|
10060
|
+
*/
|
|
10061
|
+
'unitPrice'?: number;
|
|
10062
|
+
/**
|
|
10063
|
+
*
|
|
10064
|
+
* @type {string}
|
|
10065
|
+
* @memberof PlanItemModel
|
|
10066
|
+
*/
|
|
10067
|
+
'stripePriceId'?: string | null;
|
|
10068
|
+
/**
|
|
10069
|
+
*
|
|
10070
|
+
* @type {RecurringInterval}
|
|
10071
|
+
* @memberof PlanItemModel
|
|
10072
|
+
*/
|
|
10073
|
+
'interval'?: RecurringInterval;
|
|
10074
|
+
/**
|
|
10075
|
+
*
|
|
10076
|
+
* @type {boolean}
|
|
10077
|
+
* @memberof PlanItemModel
|
|
10078
|
+
*/
|
|
10079
|
+
'isActive'?: boolean;
|
|
10080
|
+
/**
|
|
10081
|
+
*
|
|
10082
|
+
* @type {number}
|
|
10083
|
+
* @memberof PlanItemModel
|
|
10084
|
+
*/
|
|
10085
|
+
'order'?: number;
|
|
10086
|
+
}
|
|
10087
|
+
/**
|
|
10088
|
+
*
|
|
10089
|
+
* @export
|
|
10090
|
+
* @interface PlanModel
|
|
10091
|
+
*/
|
|
10092
|
+
export interface PlanModel {
|
|
10093
|
+
/**
|
|
10094
|
+
*
|
|
10095
|
+
* @type {string}
|
|
10096
|
+
* @memberof PlanModel
|
|
10097
|
+
*/
|
|
10098
|
+
'id'?: string;
|
|
10099
|
+
/**
|
|
10100
|
+
*
|
|
10101
|
+
* @type {string}
|
|
10102
|
+
* @memberof PlanModel
|
|
10103
|
+
*/
|
|
10104
|
+
'name'?: string | null;
|
|
10105
|
+
/**
|
|
10106
|
+
*
|
|
10107
|
+
* @type {number}
|
|
10108
|
+
* @memberof PlanModel
|
|
10109
|
+
*/
|
|
10110
|
+
'memberLimit'?: number;
|
|
10111
|
+
/**
|
|
10112
|
+
*
|
|
10113
|
+
* @type {number}
|
|
10114
|
+
* @memberof PlanModel
|
|
10115
|
+
*/
|
|
10116
|
+
'unitPrice'?: number;
|
|
10117
|
+
/**
|
|
10118
|
+
*
|
|
10119
|
+
* @type {string}
|
|
10120
|
+
* @memberof PlanModel
|
|
10121
|
+
*/
|
|
10122
|
+
'stripePriceId'?: string | null;
|
|
10123
|
+
/**
|
|
10124
|
+
*
|
|
10125
|
+
* @type {RecurringInterval}
|
|
10126
|
+
* @memberof PlanModel
|
|
10127
|
+
*/
|
|
10128
|
+
'interval'?: RecurringInterval;
|
|
10129
|
+
/**
|
|
10130
|
+
*
|
|
10131
|
+
* @type {boolean}
|
|
10132
|
+
* @memberof PlanModel
|
|
10133
|
+
*/
|
|
10134
|
+
'isActive'?: boolean;
|
|
10135
|
+
/**
|
|
10136
|
+
*
|
|
10137
|
+
* @type {number}
|
|
10138
|
+
* @memberof PlanModel
|
|
10139
|
+
*/
|
|
10140
|
+
'order'?: number;
|
|
10141
|
+
}
|
|
10142
|
+
/**
|
|
10143
|
+
*
|
|
10144
|
+
* @export
|
|
10145
|
+
* @interface PlansModel
|
|
10146
|
+
*/
|
|
10147
|
+
export interface PlansModel {
|
|
10148
|
+
/**
|
|
10149
|
+
*
|
|
10150
|
+
* @type {Array<PlanItemModel>}
|
|
10151
|
+
* @memberof PlansModel
|
|
10152
|
+
*/
|
|
10153
|
+
'items'?: Array<PlanItemModel> | null;
|
|
10154
|
+
/**
|
|
10155
|
+
*
|
|
10156
|
+
* @type {PagedListMetaData}
|
|
10157
|
+
* @memberof PlansModel
|
|
10158
|
+
*/
|
|
10159
|
+
'metaData'?: PagedListMetaData;
|
|
10160
|
+
}
|
|
10161
|
+
/**
|
|
10162
|
+
*
|
|
10163
|
+
* @export
|
|
10164
|
+
* @enum {string}
|
|
10165
|
+
*/
|
|
10166
|
+
export declare enum Platform {
|
|
10167
|
+
Web = "Web",
|
|
10168
|
+
IOs = "iOS",
|
|
10169
|
+
Android = "Android"
|
|
10170
|
+
}
|
|
10171
|
+
/**
|
|
10172
|
+
*
|
|
10173
|
+
* @export
|
|
10174
|
+
* @interface ProblemDetails
|
|
10175
|
+
*/
|
|
10176
|
+
export interface ProblemDetails {
|
|
10177
|
+
[key: string]: any | any;
|
|
10178
|
+
/**
|
|
10179
|
+
*
|
|
10180
|
+
* @type {string}
|
|
10181
|
+
* @memberof ProblemDetails
|
|
10182
|
+
*/
|
|
10183
|
+
'type'?: string | null;
|
|
10184
|
+
/**
|
|
10185
|
+
*
|
|
10186
|
+
* @type {string}
|
|
10187
|
+
* @memberof ProblemDetails
|
|
10188
|
+
*/
|
|
10189
|
+
'title'?: string | null;
|
|
10190
|
+
/**
|
|
10191
|
+
*
|
|
10192
|
+
* @type {number}
|
|
10193
|
+
* @memberof ProblemDetails
|
|
10194
|
+
*/
|
|
10195
|
+
'status'?: number | null;
|
|
10196
|
+
/**
|
|
10197
|
+
*
|
|
10198
|
+
* @type {string}
|
|
10199
|
+
* @memberof ProblemDetails
|
|
10200
|
+
*/
|
|
10201
|
+
'detail'?: string | null;
|
|
10202
|
+
/**
|
|
10203
|
+
*
|
|
10204
|
+
* @type {string}
|
|
10205
|
+
* @memberof ProblemDetails
|
|
10206
|
+
*/
|
|
10207
|
+
'instance'?: string | null;
|
|
10208
|
+
}
|
|
10209
|
+
/**
|
|
10210
|
+
*
|
|
10211
|
+
* @export
|
|
10212
|
+
* @enum {string}
|
|
10213
|
+
*/
|
|
10214
|
+
export declare enum Procedure {
|
|
10215
|
+
Treatment = "Treatment",
|
|
10216
|
+
Diagnostic = "Diagnostic"
|
|
10217
|
+
}
|
|
10218
|
+
/**
|
|
10219
|
+
*
|
|
10220
|
+
* @export
|
|
10221
|
+
* @interface Question
|
|
10222
|
+
*/
|
|
10223
|
+
export interface Question {
|
|
10224
|
+
/**
|
|
10225
|
+
*
|
|
10226
|
+
* @type {string}
|
|
10227
|
+
* @memberof Question
|
|
9626
10228
|
*/
|
|
9627
10229
|
'id'?: string;
|
|
9628
10230
|
/**
|
|
@@ -11851,6 +12453,67 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
11851
12453
|
*/
|
|
11852
12454
|
'order'?: number;
|
|
11853
12455
|
}
|
|
12456
|
+
/**
|
|
12457
|
+
*
|
|
12458
|
+
* @export
|
|
12459
|
+
* @interface UpdateManagerCommand
|
|
12460
|
+
*/
|
|
12461
|
+
export interface UpdateManagerCommand {
|
|
12462
|
+
/**
|
|
12463
|
+
*
|
|
12464
|
+
* @type {string}
|
|
12465
|
+
* @memberof UpdateManagerCommand
|
|
12466
|
+
*/
|
|
12467
|
+
'firstName'?: string | null;
|
|
12468
|
+
/**
|
|
12469
|
+
*
|
|
12470
|
+
* @type {string}
|
|
12471
|
+
* @memberof UpdateManagerCommand
|
|
12472
|
+
*/
|
|
12473
|
+
'lastName'?: string | null;
|
|
12474
|
+
/**
|
|
12475
|
+
*
|
|
12476
|
+
* @type {string}
|
|
12477
|
+
* @memberof UpdateManagerCommand
|
|
12478
|
+
*/
|
|
12479
|
+
'phone'?: string | null;
|
|
12480
|
+
/**
|
|
12481
|
+
*
|
|
12482
|
+
* @type {string}
|
|
12483
|
+
* @memberof UpdateManagerCommand
|
|
12484
|
+
*/
|
|
12485
|
+
'photo'?: string | null;
|
|
12486
|
+
/**
|
|
12487
|
+
*
|
|
12488
|
+
* @type {string}
|
|
12489
|
+
* @memberof UpdateManagerCommand
|
|
12490
|
+
*/
|
|
12491
|
+
'photoThumbnail'?: string | null;
|
|
12492
|
+
/**
|
|
12493
|
+
*
|
|
12494
|
+
* @type {Gender}
|
|
12495
|
+
* @memberof UpdateManagerCommand
|
|
12496
|
+
*/
|
|
12497
|
+
'gender'?: Gender;
|
|
12498
|
+
/**
|
|
12499
|
+
*
|
|
12500
|
+
* @type {Date}
|
|
12501
|
+
* @memberof UpdateManagerCommand
|
|
12502
|
+
*/
|
|
12503
|
+
'dateOfBirth'?: Date | null;
|
|
12504
|
+
/**
|
|
12505
|
+
*
|
|
12506
|
+
* @type {Array<UserLanguageModel>}
|
|
12507
|
+
* @memberof UpdateManagerCommand
|
|
12508
|
+
*/
|
|
12509
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
12510
|
+
/**
|
|
12511
|
+
*
|
|
12512
|
+
* @type {Array<UserLocationModel>}
|
|
12513
|
+
* @memberof UpdateManagerCommand
|
|
12514
|
+
*/
|
|
12515
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
12516
|
+
}
|
|
11854
12517
|
/**
|
|
11855
12518
|
*
|
|
11856
12519
|
* @export
|
|
@@ -11891,7 +12554,69 @@ export interface UpdateMediaCommand {
|
|
|
11891
12554
|
/**
|
|
11892
12555
|
*
|
|
11893
12556
|
* @export
|
|
11894
|
-
* @interface
|
|
12557
|
+
* @interface UpdatePlanCommand
|
|
12558
|
+
*/
|
|
12559
|
+
export interface UpdatePlanCommand {
|
|
12560
|
+
/**
|
|
12561
|
+
*
|
|
12562
|
+
* @type {string}
|
|
12563
|
+
* @memberof UpdatePlanCommand
|
|
12564
|
+
*/
|
|
12565
|
+
'name'?: string | null;
|
|
12566
|
+
/**
|
|
12567
|
+
*
|
|
12568
|
+
* @type {number}
|
|
12569
|
+
* @memberof UpdatePlanCommand
|
|
12570
|
+
*/
|
|
12571
|
+
'memberLimit'?: number;
|
|
12572
|
+
/**
|
|
12573
|
+
*
|
|
12574
|
+
* @type {number}
|
|
12575
|
+
* @memberof UpdatePlanCommand
|
|
12576
|
+
*/
|
|
12577
|
+
'unitPrice'?: number;
|
|
12578
|
+
/**
|
|
12579
|
+
*
|
|
12580
|
+
* @type {string}
|
|
12581
|
+
* @memberof UpdatePlanCommand
|
|
12582
|
+
*/
|
|
12583
|
+
'stripePriceId'?: string | null;
|
|
12584
|
+
/**
|
|
12585
|
+
*
|
|
12586
|
+
* @type {RecurringInterval}
|
|
12587
|
+
* @memberof UpdatePlanCommand
|
|
12588
|
+
*/
|
|
12589
|
+
'interval'?: RecurringInterval;
|
|
12590
|
+
/**
|
|
12591
|
+
*
|
|
12592
|
+
* @type {boolean}
|
|
12593
|
+
* @memberof UpdatePlanCommand
|
|
12594
|
+
*/
|
|
12595
|
+
'isActive'?: boolean;
|
|
12596
|
+
/**
|
|
12597
|
+
*
|
|
12598
|
+
* @type {number}
|
|
12599
|
+
* @memberof UpdatePlanCommand
|
|
12600
|
+
*/
|
|
12601
|
+
'order'?: number;
|
|
12602
|
+
}
|
|
12603
|
+
/**
|
|
12604
|
+
*
|
|
12605
|
+
* @export
|
|
12606
|
+
* @interface UpdatePlanHospitalCommand
|
|
12607
|
+
*/
|
|
12608
|
+
export interface UpdatePlanHospitalCommand {
|
|
12609
|
+
/**
|
|
12610
|
+
*
|
|
12611
|
+
* @type {number}
|
|
12612
|
+
* @memberof UpdatePlanHospitalCommand
|
|
12613
|
+
*/
|
|
12614
|
+
'order'?: number;
|
|
12615
|
+
}
|
|
12616
|
+
/**
|
|
12617
|
+
*
|
|
12618
|
+
* @export
|
|
12619
|
+
* @interface UpdateServiceCategoryCommand
|
|
11895
12620
|
*/
|
|
11896
12621
|
export interface UpdateServiceCategoryCommand {
|
|
11897
12622
|
/**
|
|
@@ -12204,6 +12929,97 @@ export interface User {
|
|
|
12204
12929
|
*/
|
|
12205
12930
|
'auditableEntity'?: AuditableEntity;
|
|
12206
12931
|
}
|
|
12932
|
+
/**
|
|
12933
|
+
*
|
|
12934
|
+
* @export
|
|
12935
|
+
* @interface UserItemModel
|
|
12936
|
+
*/
|
|
12937
|
+
export interface UserItemModel {
|
|
12938
|
+
/**
|
|
12939
|
+
*
|
|
12940
|
+
* @type {string}
|
|
12941
|
+
* @memberof UserItemModel
|
|
12942
|
+
*/
|
|
12943
|
+
'id'?: string;
|
|
12944
|
+
/**
|
|
12945
|
+
*
|
|
12946
|
+
* @type {string}
|
|
12947
|
+
* @memberof UserItemModel
|
|
12948
|
+
*/
|
|
12949
|
+
'userName'?: string | null;
|
|
12950
|
+
/**
|
|
12951
|
+
*
|
|
12952
|
+
* @type {string}
|
|
12953
|
+
* @memberof UserItemModel
|
|
12954
|
+
*/
|
|
12955
|
+
'firstName'?: string | null;
|
|
12956
|
+
/**
|
|
12957
|
+
*
|
|
12958
|
+
* @type {string}
|
|
12959
|
+
* @memberof UserItemModel
|
|
12960
|
+
*/
|
|
12961
|
+
'lastName'?: string | null;
|
|
12962
|
+
/**
|
|
12963
|
+
*
|
|
12964
|
+
* @type {string}
|
|
12965
|
+
* @memberof UserItemModel
|
|
12966
|
+
*/
|
|
12967
|
+
'fullname'?: string | null;
|
|
12968
|
+
/**
|
|
12969
|
+
*
|
|
12970
|
+
* @type {string}
|
|
12971
|
+
* @memberof UserItemModel
|
|
12972
|
+
*/
|
|
12973
|
+
'phone'?: string | null;
|
|
12974
|
+
/**
|
|
12975
|
+
*
|
|
12976
|
+
* @type {string}
|
|
12977
|
+
* @memberof UserItemModel
|
|
12978
|
+
*/
|
|
12979
|
+
'email'?: string | null;
|
|
12980
|
+
/**
|
|
12981
|
+
*
|
|
12982
|
+
* @type {string}
|
|
12983
|
+
* @memberof UserItemModel
|
|
12984
|
+
*/
|
|
12985
|
+
'photo'?: string | null;
|
|
12986
|
+
/**
|
|
12987
|
+
*
|
|
12988
|
+
* @type {string}
|
|
12989
|
+
* @memberof UserItemModel
|
|
12990
|
+
*/
|
|
12991
|
+
'photoThumbnail'?: string | null;
|
|
12992
|
+
/**
|
|
12993
|
+
*
|
|
12994
|
+
* @type {Gender}
|
|
12995
|
+
* @memberof UserItemModel
|
|
12996
|
+
*/
|
|
12997
|
+
'gender'?: Gender;
|
|
12998
|
+
/**
|
|
12999
|
+
*
|
|
13000
|
+
* @type {Date}
|
|
13001
|
+
* @memberof UserItemModel
|
|
13002
|
+
*/
|
|
13003
|
+
'dateOfBirth'?: Date | null;
|
|
13004
|
+
/**
|
|
13005
|
+
*
|
|
13006
|
+
* @type {string}
|
|
13007
|
+
* @memberof UserItemModel
|
|
13008
|
+
*/
|
|
13009
|
+
'timeZone'?: string | null;
|
|
13010
|
+
/**
|
|
13011
|
+
*
|
|
13012
|
+
* @type {string}
|
|
13013
|
+
* @memberof UserItemModel
|
|
13014
|
+
*/
|
|
13015
|
+
'communicationUserId'?: string | null;
|
|
13016
|
+
/**
|
|
13017
|
+
*
|
|
13018
|
+
* @type {AuditableEntity}
|
|
13019
|
+
* @memberof UserItemModel
|
|
13020
|
+
*/
|
|
13021
|
+
'auditableEntity'?: AuditableEntity;
|
|
13022
|
+
}
|
|
12207
13023
|
/**
|
|
12208
13024
|
*
|
|
12209
13025
|
* @export
|
|
@@ -12373,6 +13189,115 @@ export declare enum UserLocationType {
|
|
|
12373
13189
|
LivesIn = "LivesIn",
|
|
12374
13190
|
BirthPlace = "BirthPlace"
|
|
12375
13191
|
}
|
|
13192
|
+
/**
|
|
13193
|
+
*
|
|
13194
|
+
* @export
|
|
13195
|
+
* @interface UserModel
|
|
13196
|
+
*/
|
|
13197
|
+
export interface UserModel {
|
|
13198
|
+
/**
|
|
13199
|
+
*
|
|
13200
|
+
* @type {string}
|
|
13201
|
+
* @memberof UserModel
|
|
13202
|
+
*/
|
|
13203
|
+
'id'?: string;
|
|
13204
|
+
/**
|
|
13205
|
+
*
|
|
13206
|
+
* @type {string}
|
|
13207
|
+
* @memberof UserModel
|
|
13208
|
+
*/
|
|
13209
|
+
'userName'?: string | null;
|
|
13210
|
+
/**
|
|
13211
|
+
*
|
|
13212
|
+
* @type {string}
|
|
13213
|
+
* @memberof UserModel
|
|
13214
|
+
*/
|
|
13215
|
+
'firstName'?: string | null;
|
|
13216
|
+
/**
|
|
13217
|
+
*
|
|
13218
|
+
* @type {string}
|
|
13219
|
+
* @memberof UserModel
|
|
13220
|
+
*/
|
|
13221
|
+
'lastName'?: string | null;
|
|
13222
|
+
/**
|
|
13223
|
+
*
|
|
13224
|
+
* @type {string}
|
|
13225
|
+
* @memberof UserModel
|
|
13226
|
+
*/
|
|
13227
|
+
'fullname'?: string | null;
|
|
13228
|
+
/**
|
|
13229
|
+
*
|
|
13230
|
+
* @type {string}
|
|
13231
|
+
* @memberof UserModel
|
|
13232
|
+
*/
|
|
13233
|
+
'phone'?: string | null;
|
|
13234
|
+
/**
|
|
13235
|
+
*
|
|
13236
|
+
* @type {string}
|
|
13237
|
+
* @memberof UserModel
|
|
13238
|
+
*/
|
|
13239
|
+
'email'?: string | null;
|
|
13240
|
+
/**
|
|
13241
|
+
*
|
|
13242
|
+
* @type {string}
|
|
13243
|
+
* @memberof UserModel
|
|
13244
|
+
*/
|
|
13245
|
+
'photo'?: string | null;
|
|
13246
|
+
/**
|
|
13247
|
+
*
|
|
13248
|
+
* @type {string}
|
|
13249
|
+
* @memberof UserModel
|
|
13250
|
+
*/
|
|
13251
|
+
'photoThumbnail'?: string | null;
|
|
13252
|
+
/**
|
|
13253
|
+
*
|
|
13254
|
+
* @type {Gender}
|
|
13255
|
+
* @memberof UserModel
|
|
13256
|
+
*/
|
|
13257
|
+
'gender'?: Gender;
|
|
13258
|
+
/**
|
|
13259
|
+
*
|
|
13260
|
+
* @type {Date}
|
|
13261
|
+
* @memberof UserModel
|
|
13262
|
+
*/
|
|
13263
|
+
'dateOfBirth'?: Date | null;
|
|
13264
|
+
/**
|
|
13265
|
+
*
|
|
13266
|
+
* @type {string}
|
|
13267
|
+
* @memberof UserModel
|
|
13268
|
+
*/
|
|
13269
|
+
'timeZone'?: string | null;
|
|
13270
|
+
/**
|
|
13271
|
+
*
|
|
13272
|
+
* @type {string}
|
|
13273
|
+
* @memberof UserModel
|
|
13274
|
+
*/
|
|
13275
|
+
'communicationUserId'?: string | null;
|
|
13276
|
+
/**
|
|
13277
|
+
*
|
|
13278
|
+
* @type {AuditableEntity}
|
|
13279
|
+
* @memberof UserModel
|
|
13280
|
+
*/
|
|
13281
|
+
'auditableEntity'?: AuditableEntity;
|
|
13282
|
+
/**
|
|
13283
|
+
*
|
|
13284
|
+
* @type {string}
|
|
13285
|
+
* @memberof UserModel
|
|
13286
|
+
*/
|
|
13287
|
+
'userType'?: string | null;
|
|
13288
|
+
/**
|
|
13289
|
+
*
|
|
13290
|
+
* @type {Array<UserLanguageModel>}
|
|
13291
|
+
* @memberof UserModel
|
|
13292
|
+
*/
|
|
13293
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
13294
|
+
/**
|
|
13295
|
+
*
|
|
13296
|
+
* @type {Array<UserLocationModel>}
|
|
13297
|
+
* @memberof UserModel
|
|
13298
|
+
*/
|
|
13299
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
13300
|
+
}
|
|
12376
13301
|
/**
|
|
12377
13302
|
*
|
|
12378
13303
|
* @export
|
|
@@ -16394,9 +17319,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16394
17319
|
*
|
|
16395
17320
|
* @summary Delete DoctorCertificate.
|
|
16396
17321
|
* @param {string} doctorId
|
|
16397
|
-
* @param {string} [doctorId2]
|
|
16398
|
-
* @param {string} [id]
|
|
16399
17322
|
* @param {string} [doctorName]
|
|
17323
|
+
* @param {string} [certificateId]
|
|
16400
17324
|
* @param {string} [certificate]
|
|
16401
17325
|
* @param {Date} [activeFrom]
|
|
16402
17326
|
* @param {Date} [activeTo]
|
|
@@ -16406,7 +17330,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16406
17330
|
* @param {*} [options] Override http request option.
|
|
16407
17331
|
* @throws {RequiredError}
|
|
16408
17332
|
*/
|
|
16409
|
-
apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string,
|
|
17333
|
+
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
17334
|
/**
|
|
16411
17335
|
*
|
|
16412
17336
|
* @summary Create DoctorCertificate.
|
|
@@ -16456,8 +17380,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16456
17380
|
*
|
|
16457
17381
|
* @summary Get all DoctorEducations.
|
|
16458
17382
|
* @param {string} doctorId
|
|
16459
|
-
* @param {string} [doctorId2]
|
|
16460
17383
|
* @param {string} [doctorName]
|
|
17384
|
+
* @param {string} [educationId]
|
|
16461
17385
|
* @param {string} [institution]
|
|
16462
17386
|
* @param {string} [qualification]
|
|
16463
17387
|
* @param {Date} [graduationDate]
|
|
@@ -16467,7 +17391,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16467
17391
|
* @param {*} [options] Override http request option.
|
|
16468
17392
|
* @throws {RequiredError}
|
|
16469
17393
|
*/
|
|
16470
|
-
apiV1DoctorsDoctorIdEducationsGet: (doctorId: string,
|
|
17394
|
+
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
17395
|
/**
|
|
16472
17396
|
*
|
|
16473
17397
|
* @summary Create DoctorEducation.
|
|
@@ -16540,9 +17464,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16540
17464
|
*
|
|
16541
17465
|
* @summary Get All DoctorPortfolios
|
|
16542
17466
|
* @param {string} doctorId
|
|
16543
|
-
* @param {string} [id]
|
|
16544
|
-
* @param {string} [doctorId2]
|
|
16545
17467
|
* @param {string} [doctorName]
|
|
17468
|
+
* @param {string} [portfolioId]
|
|
16546
17469
|
* @param {string} [name]
|
|
16547
17470
|
* @param {number} [page]
|
|
16548
17471
|
* @param {number} [limit]
|
|
@@ -16550,7 +17473,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16550
17473
|
* @param {*} [options] Override http request option.
|
|
16551
17474
|
* @throws {RequiredError}
|
|
16552
17475
|
*/
|
|
16553
|
-
apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string,
|
|
17476
|
+
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
17477
|
/**
|
|
16555
17478
|
*
|
|
16556
17479
|
* @summary Delete DoctorPortfolio.
|
|
@@ -16747,9 +17670,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16747
17670
|
*
|
|
16748
17671
|
* @summary Delete DoctorCertificate.
|
|
16749
17672
|
* @param {string} doctorId
|
|
16750
|
-
* @param {string} [doctorId2]
|
|
16751
|
-
* @param {string} [id]
|
|
16752
17673
|
* @param {string} [doctorName]
|
|
17674
|
+
* @param {string} [certificateId]
|
|
16753
17675
|
* @param {string} [certificate]
|
|
16754
17676
|
* @param {Date} [activeFrom]
|
|
16755
17677
|
* @param {Date} [activeTo]
|
|
@@ -16759,7 +17681,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16759
17681
|
* @param {*} [options] Override http request option.
|
|
16760
17682
|
* @throws {RequiredError}
|
|
16761
17683
|
*/
|
|
16762
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
17684
|
+
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
17685
|
/**
|
|
16764
17686
|
*
|
|
16765
17687
|
* @summary Create DoctorCertificate.
|
|
@@ -16809,8 +17731,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16809
17731
|
*
|
|
16810
17732
|
* @summary Get all DoctorEducations.
|
|
16811
17733
|
* @param {string} doctorId
|
|
16812
|
-
* @param {string} [doctorId2]
|
|
16813
17734
|
* @param {string} [doctorName]
|
|
17735
|
+
* @param {string} [educationId]
|
|
16814
17736
|
* @param {string} [institution]
|
|
16815
17737
|
* @param {string} [qualification]
|
|
16816
17738
|
* @param {Date} [graduationDate]
|
|
@@ -16820,7 +17742,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16820
17742
|
* @param {*} [options] Override http request option.
|
|
16821
17743
|
* @throws {RequiredError}
|
|
16822
17744
|
*/
|
|
16823
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
17745
|
+
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
17746
|
/**
|
|
16825
17747
|
*
|
|
16826
17748
|
* @summary Create DoctorEducation.
|
|
@@ -16893,9 +17815,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16893
17815
|
*
|
|
16894
17816
|
* @summary Get All DoctorPortfolios
|
|
16895
17817
|
* @param {string} doctorId
|
|
16896
|
-
* @param {string} [id]
|
|
16897
|
-
* @param {string} [doctorId2]
|
|
16898
17818
|
* @param {string} [doctorName]
|
|
17819
|
+
* @param {string} [portfolioId]
|
|
16899
17820
|
* @param {string} [name]
|
|
16900
17821
|
* @param {number} [page]
|
|
16901
17822
|
* @param {number} [limit]
|
|
@@ -16903,7 +17824,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16903
17824
|
* @param {*} [options] Override http request option.
|
|
16904
17825
|
* @throws {RequiredError}
|
|
16905
17826
|
*/
|
|
16906
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
17827
|
+
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
17828
|
/**
|
|
16908
17829
|
*
|
|
16909
17830
|
* @summary Delete DoctorPortfolio.
|
|
@@ -17034,7 +17955,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17034
17955
|
* @param {*} [options] Override http request option.
|
|
17035
17956
|
* @throws {RequiredError}
|
|
17036
17957
|
*/
|
|
17037
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
17958
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
17038
17959
|
/**
|
|
17039
17960
|
*
|
|
17040
17961
|
* @summary Get Doctor by slug.
|
|
@@ -17100,9 +18021,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17100
18021
|
*
|
|
17101
18022
|
* @summary Delete DoctorCertificate.
|
|
17102
18023
|
* @param {string} doctorId
|
|
17103
|
-
* @param {string} [doctorId2]
|
|
17104
|
-
* @param {string} [id]
|
|
17105
18024
|
* @param {string} [doctorName]
|
|
18025
|
+
* @param {string} [certificateId]
|
|
17106
18026
|
* @param {string} [certificate]
|
|
17107
18027
|
* @param {Date} [activeFrom]
|
|
17108
18028
|
* @param {Date} [activeTo]
|
|
@@ -17112,7 +18032,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17112
18032
|
* @param {*} [options] Override http request option.
|
|
17113
18033
|
* @throws {RequiredError}
|
|
17114
18034
|
*/
|
|
17115
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
18035
|
+
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
18036
|
/**
|
|
17117
18037
|
*
|
|
17118
18038
|
* @summary Create DoctorCertificate.
|
|
@@ -17162,8 +18082,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17162
18082
|
*
|
|
17163
18083
|
* @summary Get all DoctorEducations.
|
|
17164
18084
|
* @param {string} doctorId
|
|
17165
|
-
* @param {string} [doctorId2]
|
|
17166
18085
|
* @param {string} [doctorName]
|
|
18086
|
+
* @param {string} [educationId]
|
|
17167
18087
|
* @param {string} [institution]
|
|
17168
18088
|
* @param {string} [qualification]
|
|
17169
18089
|
* @param {Date} [graduationDate]
|
|
@@ -17173,7 +18093,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17173
18093
|
* @param {*} [options] Override http request option.
|
|
17174
18094
|
* @throws {RequiredError}
|
|
17175
18095
|
*/
|
|
17176
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
18096
|
+
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
18097
|
/**
|
|
17178
18098
|
*
|
|
17179
18099
|
* @summary Create DoctorEducation.
|
|
@@ -17246,9 +18166,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17246
18166
|
*
|
|
17247
18167
|
* @summary Get All DoctorPortfolios
|
|
17248
18168
|
* @param {string} doctorId
|
|
17249
|
-
* @param {string} [id]
|
|
17250
|
-
* @param {string} [doctorId2]
|
|
17251
18169
|
* @param {string} [doctorName]
|
|
18170
|
+
* @param {string} [portfolioId]
|
|
17252
18171
|
* @param {string} [name]
|
|
17253
18172
|
* @param {number} [page]
|
|
17254
18173
|
* @param {number} [limit]
|
|
@@ -17256,7 +18175,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17256
18175
|
* @param {*} [options] Override http request option.
|
|
17257
18176
|
* @throws {RequiredError}
|
|
17258
18177
|
*/
|
|
17259
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
18178
|
+
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
18179
|
/**
|
|
17261
18180
|
*
|
|
17262
18181
|
* @summary Delete DoctorPortfolio.
|
|
@@ -17387,7 +18306,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17387
18306
|
* @param {*} [options] Override http request option.
|
|
17388
18307
|
* @throws {RequiredError}
|
|
17389
18308
|
*/
|
|
17390
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
18309
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17391
18310
|
/**
|
|
17392
18311
|
*
|
|
17393
18312
|
* @summary Get Doctor by slug.
|
|
@@ -17460,9 +18379,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17460
18379
|
*
|
|
17461
18380
|
* @summary Delete DoctorCertificate.
|
|
17462
18381
|
* @param {string} doctorId
|
|
17463
|
-
* @param {string} [doctorId2]
|
|
17464
|
-
* @param {string} [id]
|
|
17465
18382
|
* @param {string} [doctorName]
|
|
18383
|
+
* @param {string} [certificateId]
|
|
17466
18384
|
* @param {string} [certificate]
|
|
17467
18385
|
* @param {Date} [activeFrom]
|
|
17468
18386
|
* @param {Date} [activeTo]
|
|
@@ -17473,7 +18391,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17473
18391
|
* @throws {RequiredError}
|
|
17474
18392
|
* @memberof DoctorsApi
|
|
17475
18393
|
*/
|
|
17476
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
18394
|
+
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
18395
|
/**
|
|
17478
18396
|
*
|
|
17479
18397
|
* @summary Create DoctorCertificate.
|
|
@@ -17528,8 +18446,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17528
18446
|
*
|
|
17529
18447
|
* @summary Get all DoctorEducations.
|
|
17530
18448
|
* @param {string} doctorId
|
|
17531
|
-
* @param {string} [doctorId2]
|
|
17532
18449
|
* @param {string} [doctorName]
|
|
18450
|
+
* @param {string} [educationId]
|
|
17533
18451
|
* @param {string} [institution]
|
|
17534
18452
|
* @param {string} [qualification]
|
|
17535
18453
|
* @param {Date} [graduationDate]
|
|
@@ -17540,7 +18458,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17540
18458
|
* @throws {RequiredError}
|
|
17541
18459
|
* @memberof DoctorsApi
|
|
17542
18460
|
*/
|
|
17543
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
18461
|
+
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
18462
|
/**
|
|
17545
18463
|
*
|
|
17546
18464
|
* @summary Create DoctorEducation.
|
|
@@ -17620,9 +18538,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17620
18538
|
*
|
|
17621
18539
|
* @summary Get All DoctorPortfolios
|
|
17622
18540
|
* @param {string} doctorId
|
|
17623
|
-
* @param {string} [id]
|
|
17624
|
-
* @param {string} [doctorId2]
|
|
17625
18541
|
* @param {string} [doctorName]
|
|
18542
|
+
* @param {string} [portfolioId]
|
|
17626
18543
|
* @param {string} [name]
|
|
17627
18544
|
* @param {number} [page]
|
|
17628
18545
|
* @param {number} [limit]
|
|
@@ -17631,7 +18548,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17631
18548
|
* @throws {RequiredError}
|
|
17632
18549
|
* @memberof DoctorsApi
|
|
17633
18550
|
*/
|
|
17634
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
18551
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
|
|
17635
18552
|
/**
|
|
17636
18553
|
*
|
|
17637
18554
|
* @summary Delete DoctorPortfolio.
|
|
@@ -17774,7 +18691,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17774
18691
|
* @throws {RequiredError}
|
|
17775
18692
|
* @memberof DoctorsApi
|
|
17776
18693
|
*/
|
|
17777
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18694
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17778
18695
|
/**
|
|
17779
18696
|
*
|
|
17780
18697
|
* @summary Get Doctor by slug.
|
|
@@ -20013,47 +20930,278 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
20013
20930
|
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
20014
20931
|
}
|
|
20015
20932
|
/**
|
|
20016
|
-
*
|
|
20933
|
+
* ManagersApi - axios parameter creator
|
|
20017
20934
|
* @export
|
|
20018
20935
|
*/
|
|
20019
|
-
export declare const
|
|
20936
|
+
export declare const ManagersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
20020
20937
|
/**
|
|
20021
20938
|
*
|
|
20022
|
-
* @summary
|
|
20023
|
-
* @param {
|
|
20939
|
+
* @summary Get all Managers.
|
|
20940
|
+
* @param {string} [hospitalId]
|
|
20941
|
+
* @param {string} [id]
|
|
20942
|
+
* @param {string} [fullname]
|
|
20943
|
+
* @param {string} [email]
|
|
20944
|
+
* @param {Gender} [gender]
|
|
20945
|
+
* @param {Date} [dateOfBirth]
|
|
20946
|
+
* @param {Date} [created]
|
|
20947
|
+
* @param {number} [page]
|
|
20948
|
+
* @param {number} [limit]
|
|
20949
|
+
* @param {Date} [lastRetrieved]
|
|
20024
20950
|
* @param {*} [options] Override http request option.
|
|
20025
20951
|
* @throws {RequiredError}
|
|
20026
20952
|
*/
|
|
20027
|
-
|
|
20953
|
+
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>;
|
|
20028
20954
|
/**
|
|
20029
20955
|
*
|
|
20030
|
-
* @summary
|
|
20031
|
-
* @param {
|
|
20032
|
-
* @param {boolean} [unreadCountOnly]
|
|
20033
|
-
* @param {number} [page]
|
|
20034
|
-
* @param {number} [limit]
|
|
20035
|
-
* @param {Date} [lastRetrieved]
|
|
20956
|
+
* @summary Delete Manager.
|
|
20957
|
+
* @param {string} managerId
|
|
20036
20958
|
* @param {*} [options] Override http request option.
|
|
20037
20959
|
* @throws {RequiredError}
|
|
20038
20960
|
*/
|
|
20039
|
-
|
|
20040
|
-
};
|
|
20041
|
-
/**
|
|
20042
|
-
* NotificationsApi - functional programming interface
|
|
20043
|
-
* @export
|
|
20044
|
-
*/
|
|
20045
|
-
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
20961
|
+
apiV1ManagersManagerIdDelete: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20046
20962
|
/**
|
|
20047
20963
|
*
|
|
20048
|
-
* @summary
|
|
20049
|
-
* @param {
|
|
20964
|
+
* @summary Get Manager.
|
|
20965
|
+
* @param {string} managerId
|
|
20050
20966
|
* @param {*} [options] Override http request option.
|
|
20051
20967
|
* @throws {RequiredError}
|
|
20052
20968
|
*/
|
|
20053
|
-
|
|
20969
|
+
apiV1ManagersManagerIdGet: (managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20054
20970
|
/**
|
|
20055
20971
|
*
|
|
20056
|
-
* @summary
|
|
20972
|
+
* @summary Update Manager.
|
|
20973
|
+
* @param {string} managerId
|
|
20974
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
20975
|
+
* @param {*} [options] Override http request option.
|
|
20976
|
+
* @throws {RequiredError}
|
|
20977
|
+
*/
|
|
20978
|
+
apiV1ManagersManagerIdPut: (managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20979
|
+
/**
|
|
20980
|
+
*
|
|
20981
|
+
* @summary Create a Manager.
|
|
20982
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
20983
|
+
* @param {*} [options] Override http request option.
|
|
20984
|
+
* @throws {RequiredError}
|
|
20985
|
+
*/
|
|
20986
|
+
apiV1ManagersPost: (createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20987
|
+
};
|
|
20988
|
+
/**
|
|
20989
|
+
* ManagersApi - functional programming interface
|
|
20990
|
+
* @export
|
|
20991
|
+
*/
|
|
20992
|
+
export declare const ManagersApiFp: (configuration?: Configuration | undefined) => {
|
|
20993
|
+
/**
|
|
20994
|
+
*
|
|
20995
|
+
* @summary Get all Managers.
|
|
20996
|
+
* @param {string} [hospitalId]
|
|
20997
|
+
* @param {string} [id]
|
|
20998
|
+
* @param {string} [fullname]
|
|
20999
|
+
* @param {string} [email]
|
|
21000
|
+
* @param {Gender} [gender]
|
|
21001
|
+
* @param {Date} [dateOfBirth]
|
|
21002
|
+
* @param {Date} [created]
|
|
21003
|
+
* @param {number} [page]
|
|
21004
|
+
* @param {number} [limit]
|
|
21005
|
+
* @param {Date} [lastRetrieved]
|
|
21006
|
+
* @param {*} [options] Override http request option.
|
|
21007
|
+
* @throws {RequiredError}
|
|
21008
|
+
*/
|
|
21009
|
+
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>>;
|
|
21010
|
+
/**
|
|
21011
|
+
*
|
|
21012
|
+
* @summary Delete Manager.
|
|
21013
|
+
* @param {string} managerId
|
|
21014
|
+
* @param {*} [options] Override http request option.
|
|
21015
|
+
* @throws {RequiredError}
|
|
21016
|
+
*/
|
|
21017
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21018
|
+
/**
|
|
21019
|
+
*
|
|
21020
|
+
* @summary Get Manager.
|
|
21021
|
+
* @param {string} managerId
|
|
21022
|
+
* @param {*} [options] Override http request option.
|
|
21023
|
+
* @throws {RequiredError}
|
|
21024
|
+
*/
|
|
21025
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
21026
|
+
/**
|
|
21027
|
+
*
|
|
21028
|
+
* @summary Update Manager.
|
|
21029
|
+
* @param {string} managerId
|
|
21030
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21031
|
+
* @param {*} [options] Override http request option.
|
|
21032
|
+
* @throws {RequiredError}
|
|
21033
|
+
*/
|
|
21034
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21035
|
+
/**
|
|
21036
|
+
*
|
|
21037
|
+
* @summary Create a Manager.
|
|
21038
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21039
|
+
* @param {*} [options] Override http request option.
|
|
21040
|
+
* @throws {RequiredError}
|
|
21041
|
+
*/
|
|
21042
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerModel>>;
|
|
21043
|
+
};
|
|
21044
|
+
/**
|
|
21045
|
+
* ManagersApi - factory interface
|
|
21046
|
+
* @export
|
|
21047
|
+
*/
|
|
21048
|
+
export declare const ManagersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21049
|
+
/**
|
|
21050
|
+
*
|
|
21051
|
+
* @summary Get all Managers.
|
|
21052
|
+
* @param {string} [hospitalId]
|
|
21053
|
+
* @param {string} [id]
|
|
21054
|
+
* @param {string} [fullname]
|
|
21055
|
+
* @param {string} [email]
|
|
21056
|
+
* @param {Gender} [gender]
|
|
21057
|
+
* @param {Date} [dateOfBirth]
|
|
21058
|
+
* @param {Date} [created]
|
|
21059
|
+
* @param {number} [page]
|
|
21060
|
+
* @param {number} [limit]
|
|
21061
|
+
* @param {Date} [lastRetrieved]
|
|
21062
|
+
* @param {*} [options] Override http request option.
|
|
21063
|
+
* @throws {RequiredError}
|
|
21064
|
+
*/
|
|
21065
|
+
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>;
|
|
21066
|
+
/**
|
|
21067
|
+
*
|
|
21068
|
+
* @summary Delete Manager.
|
|
21069
|
+
* @param {string} managerId
|
|
21070
|
+
* @param {*} [options] Override http request option.
|
|
21071
|
+
* @throws {RequiredError}
|
|
21072
|
+
*/
|
|
21073
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: any): AxiosPromise<boolean>;
|
|
21074
|
+
/**
|
|
21075
|
+
*
|
|
21076
|
+
* @summary Get Manager.
|
|
21077
|
+
* @param {string} managerId
|
|
21078
|
+
* @param {*} [options] Override http request option.
|
|
21079
|
+
* @throws {RequiredError}
|
|
21080
|
+
*/
|
|
21081
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: any): AxiosPromise<ManagerModel>;
|
|
21082
|
+
/**
|
|
21083
|
+
*
|
|
21084
|
+
* @summary Update Manager.
|
|
21085
|
+
* @param {string} managerId
|
|
21086
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21087
|
+
* @param {*} [options] Override http request option.
|
|
21088
|
+
* @throws {RequiredError}
|
|
21089
|
+
*/
|
|
21090
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21091
|
+
/**
|
|
21092
|
+
*
|
|
21093
|
+
* @summary Create a Manager.
|
|
21094
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21095
|
+
* @param {*} [options] Override http request option.
|
|
21096
|
+
* @throws {RequiredError}
|
|
21097
|
+
*/
|
|
21098
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand | undefined, options?: any): AxiosPromise<ManagerModel>;
|
|
21099
|
+
};
|
|
21100
|
+
/**
|
|
21101
|
+
* ManagersApi - object-oriented interface
|
|
21102
|
+
* @export
|
|
21103
|
+
* @class ManagersApi
|
|
21104
|
+
* @extends {BaseAPI}
|
|
21105
|
+
*/
|
|
21106
|
+
export declare class ManagersApi extends BaseAPI {
|
|
21107
|
+
/**
|
|
21108
|
+
*
|
|
21109
|
+
* @summary Get all Managers.
|
|
21110
|
+
* @param {string} [hospitalId]
|
|
21111
|
+
* @param {string} [id]
|
|
21112
|
+
* @param {string} [fullname]
|
|
21113
|
+
* @param {string} [email]
|
|
21114
|
+
* @param {Gender} [gender]
|
|
21115
|
+
* @param {Date} [dateOfBirth]
|
|
21116
|
+
* @param {Date} [created]
|
|
21117
|
+
* @param {number} [page]
|
|
21118
|
+
* @param {number} [limit]
|
|
21119
|
+
* @param {Date} [lastRetrieved]
|
|
21120
|
+
* @param {*} [options] Override http request option.
|
|
21121
|
+
* @throws {RequiredError}
|
|
21122
|
+
* @memberof ManagersApi
|
|
21123
|
+
*/
|
|
21124
|
+
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>>;
|
|
21125
|
+
/**
|
|
21126
|
+
*
|
|
21127
|
+
* @summary Delete Manager.
|
|
21128
|
+
* @param {string} managerId
|
|
21129
|
+
* @param {*} [options] Override http request option.
|
|
21130
|
+
* @throws {RequiredError}
|
|
21131
|
+
* @memberof ManagersApi
|
|
21132
|
+
*/
|
|
21133
|
+
apiV1ManagersManagerIdDelete(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21134
|
+
/**
|
|
21135
|
+
*
|
|
21136
|
+
* @summary Get Manager.
|
|
21137
|
+
* @param {string} managerId
|
|
21138
|
+
* @param {*} [options] Override http request option.
|
|
21139
|
+
* @throws {RequiredError}
|
|
21140
|
+
* @memberof ManagersApi
|
|
21141
|
+
*/
|
|
21142
|
+
apiV1ManagersManagerIdGet(managerId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
21143
|
+
/**
|
|
21144
|
+
*
|
|
21145
|
+
* @summary Update Manager.
|
|
21146
|
+
* @param {string} managerId
|
|
21147
|
+
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
21148
|
+
* @param {*} [options] Override http request option.
|
|
21149
|
+
* @throws {RequiredError}
|
|
21150
|
+
* @memberof ManagersApi
|
|
21151
|
+
*/
|
|
21152
|
+
apiV1ManagersManagerIdPut(managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21153
|
+
/**
|
|
21154
|
+
*
|
|
21155
|
+
* @summary Create a Manager.
|
|
21156
|
+
* @param {CreateManagerCommand} [createManagerCommand]
|
|
21157
|
+
* @param {*} [options] Override http request option.
|
|
21158
|
+
* @throws {RequiredError}
|
|
21159
|
+
* @memberof ManagersApi
|
|
21160
|
+
*/
|
|
21161
|
+
apiV1ManagersPost(createManagerCommand?: CreateManagerCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel>>;
|
|
21162
|
+
}
|
|
21163
|
+
/**
|
|
21164
|
+
* NotificationsApi - axios parameter creator
|
|
21165
|
+
* @export
|
|
21166
|
+
*/
|
|
21167
|
+
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21168
|
+
/**
|
|
21169
|
+
*
|
|
21170
|
+
* @summary Check notification.
|
|
21171
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21172
|
+
* @param {*} [options] Override http request option.
|
|
21173
|
+
* @throws {RequiredError}
|
|
21174
|
+
*/
|
|
21175
|
+
apiV1NotificationsCheckPost: (checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21176
|
+
/**
|
|
21177
|
+
*
|
|
21178
|
+
* @summary Get all notifications.
|
|
21179
|
+
* @param {NotificationCode} [notificationCode]
|
|
21180
|
+
* @param {boolean} [unreadCountOnly]
|
|
21181
|
+
* @param {number} [page]
|
|
21182
|
+
* @param {number} [limit]
|
|
21183
|
+
* @param {Date} [lastRetrieved]
|
|
21184
|
+
* @param {*} [options] Override http request option.
|
|
21185
|
+
* @throws {RequiredError}
|
|
21186
|
+
*/
|
|
21187
|
+
apiV1NotificationsGet: (notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21188
|
+
};
|
|
21189
|
+
/**
|
|
21190
|
+
* NotificationsApi - functional programming interface
|
|
21191
|
+
* @export
|
|
21192
|
+
*/
|
|
21193
|
+
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
21194
|
+
/**
|
|
21195
|
+
*
|
|
21196
|
+
* @summary Check notification.
|
|
21197
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
21198
|
+
* @param {*} [options] Override http request option.
|
|
21199
|
+
* @throws {RequiredError}
|
|
21200
|
+
*/
|
|
21201
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21202
|
+
/**
|
|
21203
|
+
*
|
|
21204
|
+
* @summary Get all notifications.
|
|
20057
21205
|
* @param {NotificationCode} [notificationCode]
|
|
20058
21206
|
* @param {boolean} [unreadCountOnly]
|
|
20059
21207
|
* @param {number} [page]
|
|
@@ -20120,6 +21268,535 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
20120
21268
|
*/
|
|
20121
21269
|
apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
20122
21270
|
}
|
|
21271
|
+
/**
|
|
21272
|
+
* PlansApi - axios parameter creator
|
|
21273
|
+
* @export
|
|
21274
|
+
*/
|
|
21275
|
+
export declare const PlansApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21276
|
+
/**
|
|
21277
|
+
*
|
|
21278
|
+
* @summary Get all plans.
|
|
21279
|
+
* @param {string} [id]
|
|
21280
|
+
* @param {string} [name]
|
|
21281
|
+
* @param {number} [page]
|
|
21282
|
+
* @param {number} [limit]
|
|
21283
|
+
* @param {Date} [lastRetrieved]
|
|
21284
|
+
* @param {*} [options] Override http request option.
|
|
21285
|
+
* @throws {RequiredError}
|
|
21286
|
+
*/
|
|
21287
|
+
apiV1PlansGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21288
|
+
/**
|
|
21289
|
+
*
|
|
21290
|
+
* @summary Delete plan.
|
|
21291
|
+
* @param {string} planId
|
|
21292
|
+
* @param {*} [options] Override http request option.
|
|
21293
|
+
* @throws {RequiredError}
|
|
21294
|
+
*/
|
|
21295
|
+
apiV1PlansPlanIdDelete: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21296
|
+
/**
|
|
21297
|
+
*
|
|
21298
|
+
* @summary Get plan.
|
|
21299
|
+
* @param {string} planId
|
|
21300
|
+
* @param {*} [options] Override http request option.
|
|
21301
|
+
* @throws {RequiredError}
|
|
21302
|
+
*/
|
|
21303
|
+
apiV1PlansPlanIdGet: (planId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21304
|
+
/**
|
|
21305
|
+
*
|
|
21306
|
+
* @summary Get all plan hospital.
|
|
21307
|
+
* @param {string} planId
|
|
21308
|
+
* @param {number} [page]
|
|
21309
|
+
* @param {number} [limit]
|
|
21310
|
+
* @param {Date} [lastRetrieved]
|
|
21311
|
+
* @param {*} [options] Override http request option.
|
|
21312
|
+
* @throws {RequiredError}
|
|
21313
|
+
*/
|
|
21314
|
+
apiV1PlansPlanIdHospitalsGet: (planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21315
|
+
/**
|
|
21316
|
+
*
|
|
21317
|
+
* @summary Delete plan hospital.
|
|
21318
|
+
* @param {string} planId
|
|
21319
|
+
* @param {string} hospitalId
|
|
21320
|
+
* @param {*} [options] Override http request option.
|
|
21321
|
+
* @throws {RequiredError}
|
|
21322
|
+
*/
|
|
21323
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21324
|
+
/**
|
|
21325
|
+
*
|
|
21326
|
+
* @summary Get plan hospital.
|
|
21327
|
+
* @param {string} planId
|
|
21328
|
+
* @param {string} hospitalId
|
|
21329
|
+
* @param {*} [options] Override http request option.
|
|
21330
|
+
* @throws {RequiredError}
|
|
21331
|
+
*/
|
|
21332
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet: (planId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21333
|
+
/**
|
|
21334
|
+
*
|
|
21335
|
+
* @summary Update plan hospital.
|
|
21336
|
+
* @param {string} planId
|
|
21337
|
+
* @param {string} hospitalId
|
|
21338
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
21339
|
+
* @param {*} [options] Override http request option.
|
|
21340
|
+
* @throws {RequiredError}
|
|
21341
|
+
*/
|
|
21342
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut: (planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21343
|
+
/**
|
|
21344
|
+
*
|
|
21345
|
+
* @summary Create plan hospital.
|
|
21346
|
+
* @param {string} planId
|
|
21347
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
21348
|
+
* @param {*} [options] Override http request option.
|
|
21349
|
+
* @throws {RequiredError}
|
|
21350
|
+
*/
|
|
21351
|
+
apiV1PlansPlanIdHospitalsPost: (planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21352
|
+
/**
|
|
21353
|
+
*
|
|
21354
|
+
* @summary Update plan.
|
|
21355
|
+
* @param {string} planId
|
|
21356
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
21357
|
+
* @param {*} [options] Override http request option.
|
|
21358
|
+
* @throws {RequiredError}
|
|
21359
|
+
*/
|
|
21360
|
+
apiV1PlansPlanIdPut: (planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21361
|
+
/**
|
|
21362
|
+
*
|
|
21363
|
+
* @summary Create a plan.
|
|
21364
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
21365
|
+
* @param {*} [options] Override http request option.
|
|
21366
|
+
* @throws {RequiredError}
|
|
21367
|
+
*/
|
|
21368
|
+
apiV1PlansPost: (createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21369
|
+
};
|
|
21370
|
+
/**
|
|
21371
|
+
* PlansApi - functional programming interface
|
|
21372
|
+
* @export
|
|
21373
|
+
*/
|
|
21374
|
+
export declare const PlansApiFp: (configuration?: Configuration | undefined) => {
|
|
21375
|
+
/**
|
|
21376
|
+
*
|
|
21377
|
+
* @summary Get all plans.
|
|
21378
|
+
* @param {string} [id]
|
|
21379
|
+
* @param {string} [name]
|
|
21380
|
+
* @param {number} [page]
|
|
21381
|
+
* @param {number} [limit]
|
|
21382
|
+
* @param {Date} [lastRetrieved]
|
|
21383
|
+
* @param {*} [options] Override http request option.
|
|
21384
|
+
* @throws {RequiredError}
|
|
21385
|
+
*/
|
|
21386
|
+
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>>;
|
|
21387
|
+
/**
|
|
21388
|
+
*
|
|
21389
|
+
* @summary Delete plan.
|
|
21390
|
+
* @param {string} planId
|
|
21391
|
+
* @param {*} [options] Override http request option.
|
|
21392
|
+
* @throws {RequiredError}
|
|
21393
|
+
*/
|
|
21394
|
+
apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21395
|
+
/**
|
|
21396
|
+
*
|
|
21397
|
+
* @summary Get plan.
|
|
21398
|
+
* @param {string} planId
|
|
21399
|
+
* @param {*} [options] Override http request option.
|
|
21400
|
+
* @throws {RequiredError}
|
|
21401
|
+
*/
|
|
21402
|
+
apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
21403
|
+
/**
|
|
21404
|
+
*
|
|
21405
|
+
* @summary Get all plan hospital.
|
|
21406
|
+
* @param {string} planId
|
|
21407
|
+
* @param {number} [page]
|
|
21408
|
+
* @param {number} [limit]
|
|
21409
|
+
* @param {Date} [lastRetrieved]
|
|
21410
|
+
* @param {*} [options] Override http request option.
|
|
21411
|
+
* @throws {RequiredError}
|
|
21412
|
+
*/
|
|
21413
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalsModel>>;
|
|
21414
|
+
/**
|
|
21415
|
+
*
|
|
21416
|
+
* @summary Delete plan hospital.
|
|
21417
|
+
* @param {string} planId
|
|
21418
|
+
* @param {string} hospitalId
|
|
21419
|
+
* @param {*} [options] Override http request option.
|
|
21420
|
+
* @throws {RequiredError}
|
|
21421
|
+
*/
|
|
21422
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21423
|
+
/**
|
|
21424
|
+
*
|
|
21425
|
+
* @summary Get plan hospital.
|
|
21426
|
+
* @param {string} planId
|
|
21427
|
+
* @param {string} hospitalId
|
|
21428
|
+
* @param {*} [options] Override http request option.
|
|
21429
|
+
* @throws {RequiredError}
|
|
21430
|
+
*/
|
|
21431
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
21432
|
+
/**
|
|
21433
|
+
*
|
|
21434
|
+
* @summary Update plan hospital.
|
|
21435
|
+
* @param {string} planId
|
|
21436
|
+
* @param {string} hospitalId
|
|
21437
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
21438
|
+
* @param {*} [options] Override http request option.
|
|
21439
|
+
* @throws {RequiredError}
|
|
21440
|
+
*/
|
|
21441
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21442
|
+
/**
|
|
21443
|
+
*
|
|
21444
|
+
* @summary Create plan hospital.
|
|
21445
|
+
* @param {string} planId
|
|
21446
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
21447
|
+
* @param {*} [options] Override http request option.
|
|
21448
|
+
* @throws {RequiredError}
|
|
21449
|
+
*/
|
|
21450
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
21451
|
+
/**
|
|
21452
|
+
*
|
|
21453
|
+
* @summary Update plan.
|
|
21454
|
+
* @param {string} planId
|
|
21455
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
21456
|
+
* @param {*} [options] Override http request option.
|
|
21457
|
+
* @throws {RequiredError}
|
|
21458
|
+
*/
|
|
21459
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21460
|
+
/**
|
|
21461
|
+
*
|
|
21462
|
+
* @summary Create a plan.
|
|
21463
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
21464
|
+
* @param {*} [options] Override http request option.
|
|
21465
|
+
* @throws {RequiredError}
|
|
21466
|
+
*/
|
|
21467
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
21468
|
+
};
|
|
21469
|
+
/**
|
|
21470
|
+
* PlansApi - factory interface
|
|
21471
|
+
* @export
|
|
21472
|
+
*/
|
|
21473
|
+
export declare const PlansApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21474
|
+
/**
|
|
21475
|
+
*
|
|
21476
|
+
* @summary Get all plans.
|
|
21477
|
+
* @param {string} [id]
|
|
21478
|
+
* @param {string} [name]
|
|
21479
|
+
* @param {number} [page]
|
|
21480
|
+
* @param {number} [limit]
|
|
21481
|
+
* @param {Date} [lastRetrieved]
|
|
21482
|
+
* @param {*} [options] Override http request option.
|
|
21483
|
+
* @throws {RequiredError}
|
|
21484
|
+
*/
|
|
21485
|
+
apiV1PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlansModel>;
|
|
21486
|
+
/**
|
|
21487
|
+
*
|
|
21488
|
+
* @summary Delete plan.
|
|
21489
|
+
* @param {string} planId
|
|
21490
|
+
* @param {*} [options] Override http request option.
|
|
21491
|
+
* @throws {RequiredError}
|
|
21492
|
+
*/
|
|
21493
|
+
apiV1PlansPlanIdDelete(planId: string, options?: any): AxiosPromise<boolean>;
|
|
21494
|
+
/**
|
|
21495
|
+
*
|
|
21496
|
+
* @summary Get plan.
|
|
21497
|
+
* @param {string} planId
|
|
21498
|
+
* @param {*} [options] Override http request option.
|
|
21499
|
+
* @throws {RequiredError}
|
|
21500
|
+
*/
|
|
21501
|
+
apiV1PlansPlanIdGet(planId: string, options?: any): AxiosPromise<PlanModel>;
|
|
21502
|
+
/**
|
|
21503
|
+
*
|
|
21504
|
+
* @summary Get all plan hospital.
|
|
21505
|
+
* @param {string} planId
|
|
21506
|
+
* @param {number} [page]
|
|
21507
|
+
* @param {number} [limit]
|
|
21508
|
+
* @param {Date} [lastRetrieved]
|
|
21509
|
+
* @param {*} [options] Override http request option.
|
|
21510
|
+
* @throws {RequiredError}
|
|
21511
|
+
*/
|
|
21512
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<PlanHospitalsModel>;
|
|
21513
|
+
/**
|
|
21514
|
+
*
|
|
21515
|
+
* @summary Delete plan hospital.
|
|
21516
|
+
* @param {string} planId
|
|
21517
|
+
* @param {string} hospitalId
|
|
21518
|
+
* @param {*} [options] Override http request option.
|
|
21519
|
+
* @throws {RequiredError}
|
|
21520
|
+
*/
|
|
21521
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
21522
|
+
/**
|
|
21523
|
+
*
|
|
21524
|
+
* @summary Get plan hospital.
|
|
21525
|
+
* @param {string} planId
|
|
21526
|
+
* @param {string} hospitalId
|
|
21527
|
+
* @param {*} [options] Override http request option.
|
|
21528
|
+
* @throws {RequiredError}
|
|
21529
|
+
*/
|
|
21530
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: any): AxiosPromise<PlanHospitalModel>;
|
|
21531
|
+
/**
|
|
21532
|
+
*
|
|
21533
|
+
* @summary Update plan hospital.
|
|
21534
|
+
* @param {string} planId
|
|
21535
|
+
* @param {string} hospitalId
|
|
21536
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
21537
|
+
* @param {*} [options] Override http request option.
|
|
21538
|
+
* @throws {RequiredError}
|
|
21539
|
+
*/
|
|
21540
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21541
|
+
/**
|
|
21542
|
+
*
|
|
21543
|
+
* @summary Create plan hospital.
|
|
21544
|
+
* @param {string} planId
|
|
21545
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
21546
|
+
* @param {*} [options] Override http request option.
|
|
21547
|
+
* @throws {RequiredError}
|
|
21548
|
+
*/
|
|
21549
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand | undefined, options?: any): AxiosPromise<PlanHospitalModel>;
|
|
21550
|
+
/**
|
|
21551
|
+
*
|
|
21552
|
+
* @summary Update plan.
|
|
21553
|
+
* @param {string} planId
|
|
21554
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
21555
|
+
* @param {*} [options] Override http request option.
|
|
21556
|
+
* @throws {RequiredError}
|
|
21557
|
+
*/
|
|
21558
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21559
|
+
/**
|
|
21560
|
+
*
|
|
21561
|
+
* @summary Create a plan.
|
|
21562
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
21563
|
+
* @param {*} [options] Override http request option.
|
|
21564
|
+
* @throws {RequiredError}
|
|
21565
|
+
*/
|
|
21566
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand | undefined, options?: any): AxiosPromise<PlanModel>;
|
|
21567
|
+
};
|
|
21568
|
+
/**
|
|
21569
|
+
* PlansApi - object-oriented interface
|
|
21570
|
+
* @export
|
|
21571
|
+
* @class PlansApi
|
|
21572
|
+
* @extends {BaseAPI}
|
|
21573
|
+
*/
|
|
21574
|
+
export declare class PlansApi extends BaseAPI {
|
|
21575
|
+
/**
|
|
21576
|
+
*
|
|
21577
|
+
* @summary Get all plans.
|
|
21578
|
+
* @param {string} [id]
|
|
21579
|
+
* @param {string} [name]
|
|
21580
|
+
* @param {number} [page]
|
|
21581
|
+
* @param {number} [limit]
|
|
21582
|
+
* @param {Date} [lastRetrieved]
|
|
21583
|
+
* @param {*} [options] Override http request option.
|
|
21584
|
+
* @throws {RequiredError}
|
|
21585
|
+
* @memberof PlansApi
|
|
21586
|
+
*/
|
|
21587
|
+
apiV1PlansGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlansModel>>;
|
|
21588
|
+
/**
|
|
21589
|
+
*
|
|
21590
|
+
* @summary Delete plan.
|
|
21591
|
+
* @param {string} planId
|
|
21592
|
+
* @param {*} [options] Override http request option.
|
|
21593
|
+
* @throws {RequiredError}
|
|
21594
|
+
* @memberof PlansApi
|
|
21595
|
+
*/
|
|
21596
|
+
apiV1PlansPlanIdDelete(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21597
|
+
/**
|
|
21598
|
+
*
|
|
21599
|
+
* @summary Get plan.
|
|
21600
|
+
* @param {string} planId
|
|
21601
|
+
* @param {*} [options] Override http request option.
|
|
21602
|
+
* @throws {RequiredError}
|
|
21603
|
+
* @memberof PlansApi
|
|
21604
|
+
*/
|
|
21605
|
+
apiV1PlansPlanIdGet(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
21606
|
+
/**
|
|
21607
|
+
*
|
|
21608
|
+
* @summary Get all plan hospital.
|
|
21609
|
+
* @param {string} planId
|
|
21610
|
+
* @param {number} [page]
|
|
21611
|
+
* @param {number} [limit]
|
|
21612
|
+
* @param {Date} [lastRetrieved]
|
|
21613
|
+
* @param {*} [options] Override http request option.
|
|
21614
|
+
* @throws {RequiredError}
|
|
21615
|
+
* @memberof PlansApi
|
|
21616
|
+
*/
|
|
21617
|
+
apiV1PlansPlanIdHospitalsGet(planId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalsModel>>;
|
|
21618
|
+
/**
|
|
21619
|
+
*
|
|
21620
|
+
* @summary Delete plan hospital.
|
|
21621
|
+
* @param {string} planId
|
|
21622
|
+
* @param {string} hospitalId
|
|
21623
|
+
* @param {*} [options] Override http request option.
|
|
21624
|
+
* @throws {RequiredError}
|
|
21625
|
+
* @memberof PlansApi
|
|
21626
|
+
*/
|
|
21627
|
+
apiV1PlansPlanIdHospitalsHospitalIdDelete(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21628
|
+
/**
|
|
21629
|
+
*
|
|
21630
|
+
* @summary Get plan hospital.
|
|
21631
|
+
* @param {string} planId
|
|
21632
|
+
* @param {string} hospitalId
|
|
21633
|
+
* @param {*} [options] Override http request option.
|
|
21634
|
+
* @throws {RequiredError}
|
|
21635
|
+
* @memberof PlansApi
|
|
21636
|
+
*/
|
|
21637
|
+
apiV1PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
21638
|
+
/**
|
|
21639
|
+
*
|
|
21640
|
+
* @summary Update plan hospital.
|
|
21641
|
+
* @param {string} planId
|
|
21642
|
+
* @param {string} hospitalId
|
|
21643
|
+
* @param {UpdatePlanHospitalCommand} [updatePlanHospitalCommand]
|
|
21644
|
+
* @param {*} [options] Override http request option.
|
|
21645
|
+
* @throws {RequiredError}
|
|
21646
|
+
* @memberof PlansApi
|
|
21647
|
+
*/
|
|
21648
|
+
apiV1PlansPlanIdHospitalsHospitalIdPut(planId: string, hospitalId: string, updatePlanHospitalCommand?: UpdatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21649
|
+
/**
|
|
21650
|
+
*
|
|
21651
|
+
* @summary Create plan hospital.
|
|
21652
|
+
* @param {string} planId
|
|
21653
|
+
* @param {CreatePlanHospitalCommand} [createPlanHospitalCommand]
|
|
21654
|
+
* @param {*} [options] Override http request option.
|
|
21655
|
+
* @throws {RequiredError}
|
|
21656
|
+
* @memberof PlansApi
|
|
21657
|
+
*/
|
|
21658
|
+
apiV1PlansPlanIdHospitalsPost(planId: string, createPlanHospitalCommand?: CreatePlanHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
21659
|
+
/**
|
|
21660
|
+
*
|
|
21661
|
+
* @summary Update plan.
|
|
21662
|
+
* @param {string} planId
|
|
21663
|
+
* @param {UpdatePlanCommand} [updatePlanCommand]
|
|
21664
|
+
* @param {*} [options] Override http request option.
|
|
21665
|
+
* @throws {RequiredError}
|
|
21666
|
+
* @memberof PlansApi
|
|
21667
|
+
*/
|
|
21668
|
+
apiV1PlansPlanIdPut(planId: string, updatePlanCommand?: UpdatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21669
|
+
/**
|
|
21670
|
+
*
|
|
21671
|
+
* @summary Create a plan.
|
|
21672
|
+
* @param {CreatePlanCommand} [createPlanCommand]
|
|
21673
|
+
* @param {*} [options] Override http request option.
|
|
21674
|
+
* @throws {RequiredError}
|
|
21675
|
+
* @memberof PlansApi
|
|
21676
|
+
*/
|
|
21677
|
+
apiV1PlansPost(createPlanCommand?: CreatePlanCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
21678
|
+
}
|
|
21679
|
+
/**
|
|
21680
|
+
* ProfilesApi - axios parameter creator
|
|
21681
|
+
* @export
|
|
21682
|
+
*/
|
|
21683
|
+
export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
21684
|
+
/**
|
|
21685
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
21686
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
21687
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
21688
|
+
* @param {*} [options] Override http request option.
|
|
21689
|
+
* @throws {RequiredError}
|
|
21690
|
+
*/
|
|
21691
|
+
apiV1ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21692
|
+
/**
|
|
21693
|
+
*
|
|
21694
|
+
* @summary Configm email.
|
|
21695
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
21696
|
+
* @param {*} [options] Override http request option.
|
|
21697
|
+
* @throws {RequiredError}
|
|
21698
|
+
*/
|
|
21699
|
+
apiV1ProfilesConfirmemailPost: (confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21700
|
+
/**
|
|
21701
|
+
*
|
|
21702
|
+
* @summary Get Profile.
|
|
21703
|
+
* @param {*} [options] Override http request option.
|
|
21704
|
+
* @throws {RequiredError}
|
|
21705
|
+
*/
|
|
21706
|
+
apiV1ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21707
|
+
};
|
|
21708
|
+
/**
|
|
21709
|
+
* ProfilesApi - functional programming interface
|
|
21710
|
+
* @export
|
|
21711
|
+
*/
|
|
21712
|
+
export declare const ProfilesApiFp: (configuration?: Configuration | undefined) => {
|
|
21713
|
+
/**
|
|
21714
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
21715
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
21716
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
21717
|
+
* @param {*} [options] Override http request option.
|
|
21718
|
+
* @throws {RequiredError}
|
|
21719
|
+
*/
|
|
21720
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21721
|
+
/**
|
|
21722
|
+
*
|
|
21723
|
+
* @summary Configm email.
|
|
21724
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
21725
|
+
* @param {*} [options] Override http request option.
|
|
21726
|
+
* @throws {RequiredError}
|
|
21727
|
+
*/
|
|
21728
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21729
|
+
/**
|
|
21730
|
+
*
|
|
21731
|
+
* @summary Get Profile.
|
|
21732
|
+
* @param {*} [options] Override http request option.
|
|
21733
|
+
* @throws {RequiredError}
|
|
21734
|
+
*/
|
|
21735
|
+
apiV1ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
21736
|
+
};
|
|
21737
|
+
/**
|
|
21738
|
+
* ProfilesApi - factory interface
|
|
21739
|
+
* @export
|
|
21740
|
+
*/
|
|
21741
|
+
export declare const ProfilesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
21742
|
+
/**
|
|
21743
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
21744
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
21745
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
21746
|
+
* @param {*} [options] Override http request option.
|
|
21747
|
+
* @throws {RequiredError}
|
|
21748
|
+
*/
|
|
21749
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21750
|
+
/**
|
|
21751
|
+
*
|
|
21752
|
+
* @summary Configm email.
|
|
21753
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
21754
|
+
* @param {*} [options] Override http request option.
|
|
21755
|
+
* @throws {RequiredError}
|
|
21756
|
+
*/
|
|
21757
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21758
|
+
/**
|
|
21759
|
+
*
|
|
21760
|
+
* @summary Get Profile.
|
|
21761
|
+
* @param {*} [options] Override http request option.
|
|
21762
|
+
* @throws {RequiredError}
|
|
21763
|
+
*/
|
|
21764
|
+
apiV1ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
21765
|
+
};
|
|
21766
|
+
/**
|
|
21767
|
+
* ProfilesApi - object-oriented interface
|
|
21768
|
+
* @export
|
|
21769
|
+
* @class ProfilesApi
|
|
21770
|
+
* @extends {BaseAPI}
|
|
21771
|
+
*/
|
|
21772
|
+
export declare class ProfilesApi extends BaseAPI {
|
|
21773
|
+
/**
|
|
21774
|
+
* Sample request: POST /api/v1/profiles/changeEmail { \"email\": \"user@example.com\" }
|
|
21775
|
+
* @summary Change user\'s email on both Identity and Api.
|
|
21776
|
+
* @param {ChangeEmailCommand} [changeEmailCommand]
|
|
21777
|
+
* @param {*} [options] Override http request option.
|
|
21778
|
+
* @throws {RequiredError}
|
|
21779
|
+
* @memberof ProfilesApi
|
|
21780
|
+
*/
|
|
21781
|
+
apiV1ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21782
|
+
/**
|
|
21783
|
+
*
|
|
21784
|
+
* @summary Configm email.
|
|
21785
|
+
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
21786
|
+
* @param {*} [options] Override http request option.
|
|
21787
|
+
* @throws {RequiredError}
|
|
21788
|
+
* @memberof ProfilesApi
|
|
21789
|
+
*/
|
|
21790
|
+
apiV1ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21791
|
+
/**
|
|
21792
|
+
*
|
|
21793
|
+
* @summary Get Profile.
|
|
21794
|
+
* @param {*} [options] Override http request option.
|
|
21795
|
+
* @throws {RequiredError}
|
|
21796
|
+
* @memberof ProfilesApi
|
|
21797
|
+
*/
|
|
21798
|
+
apiV1ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
21799
|
+
}
|
|
20123
21800
|
/**
|
|
20124
21801
|
* ServicesApi - axios parameter creator
|
|
20125
21802
|
* @export
|