pet-backend-sdk 0.27.0 → 0.31.0
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/axios/api.d.ts +1252 -101
- package/axios/api.js +548 -0
- package/axios/api.js.map +1 -1
- package/package.json +1 -1
package/axios/api.d.ts
CHANGED
|
@@ -12,6 +12,326 @@
|
|
|
12
12
|
import { Configuration } from './configuration';
|
|
13
13
|
import { AxiosPromise, AxiosInstance } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from './base';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface CreateExaminationRequest
|
|
19
|
+
*/
|
|
20
|
+
export interface CreateExaminationRequest {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof CreateExaminationRequest
|
|
25
|
+
*/
|
|
26
|
+
patientId: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof CreateExaminationRequest
|
|
31
|
+
*/
|
|
32
|
+
examinationType: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof CreateExaminationRequest
|
|
37
|
+
*/
|
|
38
|
+
date?: number;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {number}
|
|
42
|
+
* @memberof CreateExaminationRequest
|
|
43
|
+
*/
|
|
44
|
+
height?: number;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {number}
|
|
48
|
+
* @memberof CreateExaminationRequest
|
|
49
|
+
*/
|
|
50
|
+
weight?: number;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof CreateExaminationRequest
|
|
55
|
+
*/
|
|
56
|
+
glycemia?: string;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof CreateExaminationRequest
|
|
61
|
+
*/
|
|
62
|
+
dose?: string;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof CreateExaminationRequest
|
|
67
|
+
*/
|
|
68
|
+
diagnose?: string;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof CreateExaminationRequest
|
|
73
|
+
*/
|
|
74
|
+
protocol?: string;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {boolean}
|
|
78
|
+
* @memberof CreateExaminationRequest
|
|
79
|
+
*/
|
|
80
|
+
infectiousDisease?: boolean;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {string}
|
|
84
|
+
* @memberof CreateExaminationRequest
|
|
85
|
+
*/
|
|
86
|
+
infectiousDiseaseComment?: string;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof CreateExaminationRequest
|
|
91
|
+
*/
|
|
92
|
+
generalCondition?: string;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @type {boolean}
|
|
96
|
+
* @memberof CreateExaminationRequest
|
|
97
|
+
*/
|
|
98
|
+
companion?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof CreateExaminationRequest
|
|
103
|
+
*/
|
|
104
|
+
companionComment?: string;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof CreateExaminationRequest
|
|
109
|
+
*/
|
|
110
|
+
doctorRefers?: string;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {string}
|
|
114
|
+
* @memberof CreateExaminationRequest
|
|
115
|
+
*/
|
|
116
|
+
clinicRefers?: string;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {boolean}
|
|
120
|
+
* @memberof CreateExaminationRequest
|
|
121
|
+
*/
|
|
122
|
+
asthma?: boolean;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof CreateExaminationRequest
|
|
127
|
+
*/
|
|
128
|
+
hyperthyroidism?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {boolean}
|
|
132
|
+
* @memberof CreateExaminationRequest
|
|
133
|
+
*/
|
|
134
|
+
diabetes?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {boolean}
|
|
138
|
+
* @memberof CreateExaminationRequest
|
|
139
|
+
*/
|
|
140
|
+
insulinTherapy?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof CreateExaminationRequest
|
|
145
|
+
*/
|
|
146
|
+
lastMenstruation?: number;
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @type {boolean}
|
|
150
|
+
* @memberof CreateExaminationRequest
|
|
151
|
+
*/
|
|
152
|
+
claustrophobia?: boolean;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @type {boolean}
|
|
156
|
+
* @memberof CreateExaminationRequest
|
|
157
|
+
*/
|
|
158
|
+
allergy?: boolean;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @type {boolean}
|
|
162
|
+
* @memberof CreateExaminationRequest
|
|
163
|
+
*/
|
|
164
|
+
pregnancy?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @type {boolean}
|
|
168
|
+
* @memberof CreateExaminationRequest
|
|
169
|
+
*/
|
|
170
|
+
surgery?: boolean;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @type {string}
|
|
174
|
+
* @memberof CreateExaminationRequest
|
|
175
|
+
*/
|
|
176
|
+
surgeryNote?: string;
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @type {boolean}
|
|
180
|
+
* @memberof CreateExaminationRequest
|
|
181
|
+
*/
|
|
182
|
+
radiotherapy?: boolean;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @type {string}
|
|
186
|
+
* @memberof CreateExaminationRequest
|
|
187
|
+
*/
|
|
188
|
+
radiotherapyNote?: string;
|
|
189
|
+
/**
|
|
190
|
+
*
|
|
191
|
+
* @type {boolean}
|
|
192
|
+
* @memberof CreateExaminationRequest
|
|
193
|
+
*/
|
|
194
|
+
chemotherapyImmunotherapy?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
*
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof CreateExaminationRequest
|
|
199
|
+
*/
|
|
200
|
+
chemotherapyImmunotherapyNote?: string;
|
|
201
|
+
/**
|
|
202
|
+
*
|
|
203
|
+
* @type {boolean}
|
|
204
|
+
* @memberof CreateExaminationRequest
|
|
205
|
+
*/
|
|
206
|
+
petKT?: boolean;
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @type {string}
|
|
210
|
+
* @memberof CreateExaminationRequest
|
|
211
|
+
*/
|
|
212
|
+
petKTNote?: string;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @type {boolean}
|
|
216
|
+
* @memberof CreateExaminationRequest
|
|
217
|
+
*/
|
|
218
|
+
boneScan?: boolean;
|
|
219
|
+
/**
|
|
220
|
+
*
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof CreateExaminationRequest
|
|
223
|
+
*/
|
|
224
|
+
boneScanNote?: string;
|
|
225
|
+
/**
|
|
226
|
+
*
|
|
227
|
+
* @type {boolean}
|
|
228
|
+
* @memberof CreateExaminationRequest
|
|
229
|
+
*/
|
|
230
|
+
gynecologicalDiseasesInterventions?: boolean;
|
|
231
|
+
/**
|
|
232
|
+
*
|
|
233
|
+
* @type {string}
|
|
234
|
+
* @memberof CreateExaminationRequest
|
|
235
|
+
*/
|
|
236
|
+
gynecologicalDiseasesInterventionsNote?: string;
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @type {boolean}
|
|
240
|
+
* @memberof CreateExaminationRequest
|
|
241
|
+
*/
|
|
242
|
+
transplantation?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @type {string}
|
|
246
|
+
* @memberof CreateExaminationRequest
|
|
247
|
+
*/
|
|
248
|
+
transplantationNote?: string;
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* @type {boolean}
|
|
252
|
+
* @memberof CreateExaminationRequest
|
|
253
|
+
*/
|
|
254
|
+
recentInjury?: boolean;
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @type {string}
|
|
258
|
+
* @memberof CreateExaminationRequest
|
|
259
|
+
*/
|
|
260
|
+
recentInjuryNote?: string;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {boolean}
|
|
264
|
+
* @memberof CreateExaminationRequest
|
|
265
|
+
*/
|
|
266
|
+
kt?: boolean;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {string}
|
|
270
|
+
* @memberof CreateExaminationRequest
|
|
271
|
+
*/
|
|
272
|
+
ktNote?: string;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {boolean}
|
|
276
|
+
* @memberof CreateExaminationRequest
|
|
277
|
+
*/
|
|
278
|
+
mr?: boolean;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof CreateExaminationRequest
|
|
283
|
+
*/
|
|
284
|
+
mrNote?: string;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof CreateExaminationRequest
|
|
289
|
+
*/
|
|
290
|
+
nurseAnamnesis?: string;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {string}
|
|
294
|
+
* @memberof CreateExaminationRequest
|
|
295
|
+
*/
|
|
296
|
+
doctorAnamnesis?: string;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {string}
|
|
300
|
+
* @memberof CreateExaminationRequest
|
|
301
|
+
*/
|
|
302
|
+
changedBy?: string;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* @type {number}
|
|
306
|
+
* @memberof CreateExaminationRequest
|
|
307
|
+
*/
|
|
308
|
+
createdAt?: number;
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @type {number}
|
|
312
|
+
* @memberof CreateExaminationRequest
|
|
313
|
+
*/
|
|
314
|
+
updatedAt?: number;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @export
|
|
319
|
+
* @interface CreateExaminationResponse
|
|
320
|
+
*/
|
|
321
|
+
export interface CreateExaminationResponse {
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {boolean}
|
|
325
|
+
* @memberof CreateExaminationResponse
|
|
326
|
+
*/
|
|
327
|
+
done: boolean;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* @type {string}
|
|
331
|
+
* @memberof CreateExaminationResponse
|
|
332
|
+
*/
|
|
333
|
+
id: string;
|
|
334
|
+
}
|
|
15
335
|
/**
|
|
16
336
|
*
|
|
17
337
|
* @export
|
|
@@ -385,176 +705,784 @@ export interface GetDocumentsResponse {
|
|
|
385
705
|
* @type {number}
|
|
386
706
|
* @memberof GetDocumentsResponse
|
|
387
707
|
*/
|
|
388
|
-
size?: number;
|
|
708
|
+
size?: number;
|
|
709
|
+
/**
|
|
710
|
+
*
|
|
711
|
+
* @type {string}
|
|
712
|
+
* @memberof GetDocumentsResponse
|
|
713
|
+
*/
|
|
714
|
+
storageClass?: string;
|
|
715
|
+
/**
|
|
716
|
+
*
|
|
717
|
+
* @type {GetDocumentsResponseOwner}
|
|
718
|
+
* @memberof GetDocumentsResponse
|
|
719
|
+
*/
|
|
720
|
+
owner?: GetDocumentsResponseOwner;
|
|
721
|
+
}
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @export
|
|
725
|
+
* @interface GetDocumentsResponseOwner
|
|
726
|
+
*/
|
|
727
|
+
export interface GetDocumentsResponseOwner {
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* @type {string}
|
|
731
|
+
* @memberof GetDocumentsResponseOwner
|
|
732
|
+
*/
|
|
733
|
+
displayName?: string;
|
|
734
|
+
/**
|
|
735
|
+
*
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof GetDocumentsResponseOwner
|
|
738
|
+
*/
|
|
739
|
+
ID?: string;
|
|
740
|
+
}
|
|
741
|
+
/**
|
|
742
|
+
*
|
|
743
|
+
* @export
|
|
744
|
+
* @interface GetExaminationResponse
|
|
745
|
+
*/
|
|
746
|
+
export interface GetExaminationResponse {
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @type {string}
|
|
750
|
+
* @memberof GetExaminationResponse
|
|
751
|
+
*/
|
|
752
|
+
id?: string;
|
|
753
|
+
/**
|
|
754
|
+
*
|
|
755
|
+
* @type {string}
|
|
756
|
+
* @memberof GetExaminationResponse
|
|
757
|
+
*/
|
|
758
|
+
patientId: string;
|
|
759
|
+
/**
|
|
760
|
+
*
|
|
761
|
+
* @type {string}
|
|
762
|
+
* @memberof GetExaminationResponse
|
|
763
|
+
*/
|
|
764
|
+
examinationType: string;
|
|
765
|
+
/**
|
|
766
|
+
*
|
|
767
|
+
* @type {number}
|
|
768
|
+
* @memberof GetExaminationResponse
|
|
769
|
+
*/
|
|
770
|
+
date?: number;
|
|
771
|
+
/**
|
|
772
|
+
*
|
|
773
|
+
* @type {number}
|
|
774
|
+
* @memberof GetExaminationResponse
|
|
775
|
+
*/
|
|
776
|
+
height?: number;
|
|
777
|
+
/**
|
|
778
|
+
*
|
|
779
|
+
* @type {number}
|
|
780
|
+
* @memberof GetExaminationResponse
|
|
781
|
+
*/
|
|
782
|
+
weight?: number;
|
|
783
|
+
/**
|
|
784
|
+
*
|
|
785
|
+
* @type {string}
|
|
786
|
+
* @memberof GetExaminationResponse
|
|
787
|
+
*/
|
|
788
|
+
glycemia?: string;
|
|
789
|
+
/**
|
|
790
|
+
*
|
|
791
|
+
* @type {string}
|
|
792
|
+
* @memberof GetExaminationResponse
|
|
793
|
+
*/
|
|
794
|
+
dose?: string;
|
|
795
|
+
/**
|
|
796
|
+
*
|
|
797
|
+
* @type {string}
|
|
798
|
+
* @memberof GetExaminationResponse
|
|
799
|
+
*/
|
|
800
|
+
diagnose?: string;
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
* @type {string}
|
|
804
|
+
* @memberof GetExaminationResponse
|
|
805
|
+
*/
|
|
806
|
+
protocol?: string;
|
|
807
|
+
/**
|
|
808
|
+
*
|
|
809
|
+
* @type {boolean}
|
|
810
|
+
* @memberof GetExaminationResponse
|
|
811
|
+
*/
|
|
812
|
+
infectiousDisease?: boolean;
|
|
813
|
+
/**
|
|
814
|
+
*
|
|
815
|
+
* @type {string}
|
|
816
|
+
* @memberof GetExaminationResponse
|
|
817
|
+
*/
|
|
818
|
+
infectiousDiseaseComment?: string;
|
|
819
|
+
/**
|
|
820
|
+
*
|
|
821
|
+
* @type {string}
|
|
822
|
+
* @memberof GetExaminationResponse
|
|
823
|
+
*/
|
|
824
|
+
generalCondition?: string;
|
|
825
|
+
/**
|
|
826
|
+
*
|
|
827
|
+
* @type {boolean}
|
|
828
|
+
* @memberof GetExaminationResponse
|
|
829
|
+
*/
|
|
830
|
+
companion?: boolean;
|
|
831
|
+
/**
|
|
832
|
+
*
|
|
833
|
+
* @type {string}
|
|
834
|
+
* @memberof GetExaminationResponse
|
|
835
|
+
*/
|
|
836
|
+
companionComment?: string;
|
|
837
|
+
/**
|
|
838
|
+
*
|
|
839
|
+
* @type {string}
|
|
840
|
+
* @memberof GetExaminationResponse
|
|
841
|
+
*/
|
|
842
|
+
doctorRefers?: string;
|
|
843
|
+
/**
|
|
844
|
+
*
|
|
845
|
+
* @type {string}
|
|
846
|
+
* @memberof GetExaminationResponse
|
|
847
|
+
*/
|
|
848
|
+
clinicRefers?: string;
|
|
849
|
+
/**
|
|
850
|
+
*
|
|
851
|
+
* @type {boolean}
|
|
852
|
+
* @memberof GetExaminationResponse
|
|
853
|
+
*/
|
|
854
|
+
asthma?: boolean;
|
|
855
|
+
/**
|
|
856
|
+
*
|
|
857
|
+
* @type {boolean}
|
|
858
|
+
* @memberof GetExaminationResponse
|
|
859
|
+
*/
|
|
860
|
+
hyperthyroidism?: boolean;
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @type {boolean}
|
|
864
|
+
* @memberof GetExaminationResponse
|
|
865
|
+
*/
|
|
866
|
+
diabetes?: boolean;
|
|
867
|
+
/**
|
|
868
|
+
*
|
|
869
|
+
* @type {boolean}
|
|
870
|
+
* @memberof GetExaminationResponse
|
|
871
|
+
*/
|
|
872
|
+
insulinTherapy?: boolean;
|
|
873
|
+
/**
|
|
874
|
+
*
|
|
875
|
+
* @type {number}
|
|
876
|
+
* @memberof GetExaminationResponse
|
|
877
|
+
*/
|
|
878
|
+
lastMenstruation?: number;
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @type {boolean}
|
|
882
|
+
* @memberof GetExaminationResponse
|
|
883
|
+
*/
|
|
884
|
+
claustrophobia?: boolean;
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @type {boolean}
|
|
888
|
+
* @memberof GetExaminationResponse
|
|
889
|
+
*/
|
|
890
|
+
allergy?: boolean;
|
|
891
|
+
/**
|
|
892
|
+
*
|
|
893
|
+
* @type {boolean}
|
|
894
|
+
* @memberof GetExaminationResponse
|
|
895
|
+
*/
|
|
896
|
+
pregnancy?: boolean;
|
|
897
|
+
/**
|
|
898
|
+
*
|
|
899
|
+
* @type {boolean}
|
|
900
|
+
* @memberof GetExaminationResponse
|
|
901
|
+
*/
|
|
902
|
+
surgery?: boolean;
|
|
903
|
+
/**
|
|
904
|
+
*
|
|
905
|
+
* @type {string}
|
|
906
|
+
* @memberof GetExaminationResponse
|
|
907
|
+
*/
|
|
908
|
+
surgeryNote?: string;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {boolean}
|
|
912
|
+
* @memberof GetExaminationResponse
|
|
913
|
+
*/
|
|
914
|
+
radiotherapy?: boolean;
|
|
915
|
+
/**
|
|
916
|
+
*
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof GetExaminationResponse
|
|
919
|
+
*/
|
|
920
|
+
radiotherapyNote?: string;
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @type {boolean}
|
|
924
|
+
* @memberof GetExaminationResponse
|
|
925
|
+
*/
|
|
926
|
+
chemotherapyImmunotherapy?: boolean;
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @type {string}
|
|
930
|
+
* @memberof GetExaminationResponse
|
|
931
|
+
*/
|
|
932
|
+
chemotherapyImmunotherapyNote?: string;
|
|
933
|
+
/**
|
|
934
|
+
*
|
|
935
|
+
* @type {boolean}
|
|
936
|
+
* @memberof GetExaminationResponse
|
|
937
|
+
*/
|
|
938
|
+
petKT?: boolean;
|
|
939
|
+
/**
|
|
940
|
+
*
|
|
941
|
+
* @type {string}
|
|
942
|
+
* @memberof GetExaminationResponse
|
|
943
|
+
*/
|
|
944
|
+
petKTNote?: string;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {boolean}
|
|
948
|
+
* @memberof GetExaminationResponse
|
|
949
|
+
*/
|
|
950
|
+
boneScan?: boolean;
|
|
951
|
+
/**
|
|
952
|
+
*
|
|
953
|
+
* @type {string}
|
|
954
|
+
* @memberof GetExaminationResponse
|
|
955
|
+
*/
|
|
956
|
+
boneScanNote?: string;
|
|
957
|
+
/**
|
|
958
|
+
*
|
|
959
|
+
* @type {boolean}
|
|
960
|
+
* @memberof GetExaminationResponse
|
|
961
|
+
*/
|
|
962
|
+
gynecologicalDiseasesInterventions?: boolean;
|
|
963
|
+
/**
|
|
964
|
+
*
|
|
965
|
+
* @type {string}
|
|
966
|
+
* @memberof GetExaminationResponse
|
|
967
|
+
*/
|
|
968
|
+
gynecologicalDiseasesInterventionsNote?: string;
|
|
969
|
+
/**
|
|
970
|
+
*
|
|
971
|
+
* @type {boolean}
|
|
972
|
+
* @memberof GetExaminationResponse
|
|
973
|
+
*/
|
|
974
|
+
transplantation?: boolean;
|
|
975
|
+
/**
|
|
976
|
+
*
|
|
977
|
+
* @type {string}
|
|
978
|
+
* @memberof GetExaminationResponse
|
|
979
|
+
*/
|
|
980
|
+
transplantationNote?: string;
|
|
981
|
+
/**
|
|
982
|
+
*
|
|
983
|
+
* @type {boolean}
|
|
984
|
+
* @memberof GetExaminationResponse
|
|
985
|
+
*/
|
|
986
|
+
recentInjury?: boolean;
|
|
987
|
+
/**
|
|
988
|
+
*
|
|
989
|
+
* @type {string}
|
|
990
|
+
* @memberof GetExaminationResponse
|
|
991
|
+
*/
|
|
992
|
+
recentInjuryNote?: string;
|
|
993
|
+
/**
|
|
994
|
+
*
|
|
995
|
+
* @type {boolean}
|
|
996
|
+
* @memberof GetExaminationResponse
|
|
997
|
+
*/
|
|
998
|
+
kt?: boolean;
|
|
999
|
+
/**
|
|
1000
|
+
*
|
|
1001
|
+
* @type {string}
|
|
1002
|
+
* @memberof GetExaminationResponse
|
|
1003
|
+
*/
|
|
1004
|
+
ktNote?: string;
|
|
1005
|
+
/**
|
|
1006
|
+
*
|
|
1007
|
+
* @type {boolean}
|
|
1008
|
+
* @memberof GetExaminationResponse
|
|
1009
|
+
*/
|
|
1010
|
+
mr?: boolean;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof GetExaminationResponse
|
|
1015
|
+
*/
|
|
1016
|
+
mrNote?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof GetExaminationResponse
|
|
1021
|
+
*/
|
|
1022
|
+
nurseAnamnesis?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
*
|
|
1025
|
+
* @type {string}
|
|
1026
|
+
* @memberof GetExaminationResponse
|
|
1027
|
+
*/
|
|
1028
|
+
doctorAnamnesis?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @type {string}
|
|
1032
|
+
* @memberof GetExaminationResponse
|
|
1033
|
+
*/
|
|
1034
|
+
changedBy?: string;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {number}
|
|
1038
|
+
* @memberof GetExaminationResponse
|
|
1039
|
+
*/
|
|
1040
|
+
createdAt?: number;
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @type {number}
|
|
1044
|
+
* @memberof GetExaminationResponse
|
|
1045
|
+
*/
|
|
1046
|
+
updatedAt?: number;
|
|
1047
|
+
}
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @export
|
|
1051
|
+
* @interface GetPatientResponse
|
|
1052
|
+
*/
|
|
1053
|
+
export interface GetPatientResponse {
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {string}
|
|
1057
|
+
* @memberof GetPatientResponse
|
|
1058
|
+
*/
|
|
1059
|
+
id: string;
|
|
1060
|
+
/**
|
|
1061
|
+
*
|
|
1062
|
+
* @type {string}
|
|
1063
|
+
* @memberof GetPatientResponse
|
|
1064
|
+
*/
|
|
1065
|
+
name: string;
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* @type {string}
|
|
1069
|
+
* @memberof GetPatientResponse
|
|
1070
|
+
*/
|
|
1071
|
+
surname: string;
|
|
1072
|
+
/**
|
|
1073
|
+
*
|
|
1074
|
+
* @type {string}
|
|
1075
|
+
* @memberof GetPatientResponse
|
|
1076
|
+
*/
|
|
1077
|
+
petId: string;
|
|
1078
|
+
/**
|
|
1079
|
+
*
|
|
1080
|
+
* @type {string}
|
|
1081
|
+
* @memberof GetPatientResponse
|
|
1082
|
+
*/
|
|
1083
|
+
telephoneNumber: string;
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* @type {string}
|
|
1087
|
+
* @memberof GetPatientResponse
|
|
1088
|
+
*/
|
|
1089
|
+
secondTelephoneNumber?: string;
|
|
1090
|
+
/**
|
|
1091
|
+
*
|
|
1092
|
+
* @type {string}
|
|
1093
|
+
* @memberof GetPatientResponse
|
|
1094
|
+
*/
|
|
1095
|
+
email?: string;
|
|
1096
|
+
/**
|
|
1097
|
+
*
|
|
1098
|
+
* @type {number}
|
|
1099
|
+
* @memberof GetPatientResponse
|
|
1100
|
+
*/
|
|
1101
|
+
dateOfBirth: number;
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @type {string}
|
|
1105
|
+
* @memberof GetPatientResponse
|
|
1106
|
+
*/
|
|
1107
|
+
EMBG: string;
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @type {string}
|
|
1111
|
+
* @memberof GetPatientResponse
|
|
1112
|
+
*/
|
|
1113
|
+
address: string;
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof GetPatientResponse
|
|
1118
|
+
*/
|
|
1119
|
+
citizenship: string;
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {string}
|
|
1123
|
+
* @memberof GetPatientResponse
|
|
1124
|
+
*/
|
|
1125
|
+
sex?: GetPatientResponseSexEnum;
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {number}
|
|
1129
|
+
* @memberof GetPatientResponse
|
|
1130
|
+
*/
|
|
1131
|
+
createdAt: number;
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
* @export
|
|
1135
|
+
* @enum {string}
|
|
1136
|
+
*/
|
|
1137
|
+
export declare enum GetPatientResponseSexEnum {
|
|
1138
|
+
Male = "male",
|
|
1139
|
+
Female = "female"
|
|
1140
|
+
}
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @export
|
|
1144
|
+
* @interface InlineObject
|
|
1145
|
+
*/
|
|
1146
|
+
export interface InlineObject {
|
|
1147
|
+
/**
|
|
1148
|
+
*
|
|
1149
|
+
* @type {Array<any>}
|
|
1150
|
+
* @memberof InlineObject
|
|
1151
|
+
*/
|
|
1152
|
+
files?: Array<any>;
|
|
1153
|
+
}
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @export
|
|
1157
|
+
* @interface InlineObject1
|
|
1158
|
+
*/
|
|
1159
|
+
export interface InlineObject1 {
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @type {Array<any>}
|
|
1163
|
+
* @memberof InlineObject1
|
|
1164
|
+
*/
|
|
1165
|
+
files?: Array<any>;
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
*
|
|
1169
|
+
* @export
|
|
1170
|
+
* @interface SendEmailRequest
|
|
1171
|
+
*/
|
|
1172
|
+
export interface SendEmailRequest {
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @type {Array<string>}
|
|
1176
|
+
* @memberof SendEmailRequest
|
|
1177
|
+
*/
|
|
1178
|
+
emails: Array<string>;
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {string}
|
|
1182
|
+
* @memberof SendEmailRequest
|
|
1183
|
+
*/
|
|
1184
|
+
documentId: string;
|
|
1185
|
+
}
|
|
1186
|
+
/**
|
|
1187
|
+
*
|
|
1188
|
+
* @export
|
|
1189
|
+
* @interface UpdateExaminationRequest
|
|
1190
|
+
*/
|
|
1191
|
+
export interface UpdateExaminationRequest {
|
|
1192
|
+
/**
|
|
1193
|
+
*
|
|
1194
|
+
* @type {string}
|
|
1195
|
+
* @memberof UpdateExaminationRequest
|
|
1196
|
+
*/
|
|
1197
|
+
patientId?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {string}
|
|
1201
|
+
* @memberof UpdateExaminationRequest
|
|
1202
|
+
*/
|
|
1203
|
+
examinationType: string;
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* @type {number}
|
|
1207
|
+
* @memberof UpdateExaminationRequest
|
|
1208
|
+
*/
|
|
1209
|
+
date?: number;
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {number}
|
|
1213
|
+
* @memberof UpdateExaminationRequest
|
|
1214
|
+
*/
|
|
1215
|
+
height?: number;
|
|
1216
|
+
/**
|
|
1217
|
+
*
|
|
1218
|
+
* @type {number}
|
|
1219
|
+
* @memberof UpdateExaminationRequest
|
|
1220
|
+
*/
|
|
1221
|
+
weight?: number;
|
|
1222
|
+
/**
|
|
1223
|
+
*
|
|
1224
|
+
* @type {string}
|
|
1225
|
+
* @memberof UpdateExaminationRequest
|
|
1226
|
+
*/
|
|
1227
|
+
glycemia?: string;
|
|
1228
|
+
/**
|
|
1229
|
+
*
|
|
1230
|
+
* @type {string}
|
|
1231
|
+
* @memberof UpdateExaminationRequest
|
|
1232
|
+
*/
|
|
1233
|
+
dose?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
*
|
|
1236
|
+
* @type {string}
|
|
1237
|
+
* @memberof UpdateExaminationRequest
|
|
1238
|
+
*/
|
|
1239
|
+
diagnose?: string;
|
|
1240
|
+
/**
|
|
1241
|
+
*
|
|
1242
|
+
* @type {string}
|
|
1243
|
+
* @memberof UpdateExaminationRequest
|
|
1244
|
+
*/
|
|
1245
|
+
protocol?: string;
|
|
1246
|
+
/**
|
|
1247
|
+
*
|
|
1248
|
+
* @type {boolean}
|
|
1249
|
+
* @memberof UpdateExaminationRequest
|
|
1250
|
+
*/
|
|
1251
|
+
infectiousDisease?: boolean;
|
|
1252
|
+
/**
|
|
1253
|
+
*
|
|
1254
|
+
* @type {string}
|
|
1255
|
+
* @memberof UpdateExaminationRequest
|
|
1256
|
+
*/
|
|
1257
|
+
infectiousDiseaseComment?: string;
|
|
1258
|
+
/**
|
|
1259
|
+
*
|
|
1260
|
+
* @type {string}
|
|
1261
|
+
* @memberof UpdateExaminationRequest
|
|
1262
|
+
*/
|
|
1263
|
+
generalCondition?: string;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {boolean}
|
|
1267
|
+
* @memberof UpdateExaminationRequest
|
|
1268
|
+
*/
|
|
1269
|
+
companion?: boolean;
|
|
1270
|
+
/**
|
|
1271
|
+
*
|
|
1272
|
+
* @type {string}
|
|
1273
|
+
* @memberof UpdateExaminationRequest
|
|
1274
|
+
*/
|
|
1275
|
+
companionComment?: string;
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @type {string}
|
|
1279
|
+
* @memberof UpdateExaminationRequest
|
|
1280
|
+
*/
|
|
1281
|
+
doctorRefers?: string;
|
|
1282
|
+
/**
|
|
1283
|
+
*
|
|
1284
|
+
* @type {string}
|
|
1285
|
+
* @memberof UpdateExaminationRequest
|
|
1286
|
+
*/
|
|
1287
|
+
clinicRefers?: string;
|
|
1288
|
+
/**
|
|
1289
|
+
*
|
|
1290
|
+
* @type {boolean}
|
|
1291
|
+
* @memberof UpdateExaminationRequest
|
|
1292
|
+
*/
|
|
1293
|
+
asthma?: boolean;
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @type {boolean}
|
|
1297
|
+
* @memberof UpdateExaminationRequest
|
|
1298
|
+
*/
|
|
1299
|
+
hyperthyroidism?: boolean;
|
|
1300
|
+
/**
|
|
1301
|
+
*
|
|
1302
|
+
* @type {boolean}
|
|
1303
|
+
* @memberof UpdateExaminationRequest
|
|
1304
|
+
*/
|
|
1305
|
+
diabetes?: boolean;
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @type {boolean}
|
|
1309
|
+
* @memberof UpdateExaminationRequest
|
|
1310
|
+
*/
|
|
1311
|
+
insulinTherapy?: boolean;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
* @type {number}
|
|
1315
|
+
* @memberof UpdateExaminationRequest
|
|
1316
|
+
*/
|
|
1317
|
+
lastMenstruation?: number;
|
|
1318
|
+
/**
|
|
1319
|
+
*
|
|
1320
|
+
* @type {boolean}
|
|
1321
|
+
* @memberof UpdateExaminationRequest
|
|
1322
|
+
*/
|
|
1323
|
+
claustrophobia?: boolean;
|
|
1324
|
+
/**
|
|
1325
|
+
*
|
|
1326
|
+
* @type {boolean}
|
|
1327
|
+
* @memberof UpdateExaminationRequest
|
|
1328
|
+
*/
|
|
1329
|
+
allergy?: boolean;
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @type {boolean}
|
|
1333
|
+
* @memberof UpdateExaminationRequest
|
|
1334
|
+
*/
|
|
1335
|
+
pregnancy?: boolean;
|
|
1336
|
+
/**
|
|
1337
|
+
*
|
|
1338
|
+
* @type {boolean}
|
|
1339
|
+
* @memberof UpdateExaminationRequest
|
|
1340
|
+
*/
|
|
1341
|
+
surgery?: boolean;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof UpdateExaminationRequest
|
|
1346
|
+
*/
|
|
1347
|
+
surgeryNote?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @type {boolean}
|
|
1351
|
+
* @memberof UpdateExaminationRequest
|
|
1352
|
+
*/
|
|
1353
|
+
radiotherapy?: boolean;
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* @type {string}
|
|
1357
|
+
* @memberof UpdateExaminationRequest
|
|
1358
|
+
*/
|
|
1359
|
+
radiotherapyNote?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
*
|
|
1362
|
+
* @type {boolean}
|
|
1363
|
+
* @memberof UpdateExaminationRequest
|
|
1364
|
+
*/
|
|
1365
|
+
chemotherapyImmunotherapy?: boolean;
|
|
389
1366
|
/**
|
|
390
1367
|
*
|
|
391
1368
|
* @type {string}
|
|
392
|
-
* @memberof
|
|
1369
|
+
* @memberof UpdateExaminationRequest
|
|
393
1370
|
*/
|
|
394
|
-
|
|
1371
|
+
chemotherapyImmunotherapyNote?: string;
|
|
395
1372
|
/**
|
|
396
1373
|
*
|
|
397
|
-
* @type {
|
|
398
|
-
* @memberof
|
|
1374
|
+
* @type {boolean}
|
|
1375
|
+
* @memberof UpdateExaminationRequest
|
|
399
1376
|
*/
|
|
400
|
-
|
|
401
|
-
}
|
|
402
|
-
/**
|
|
403
|
-
*
|
|
404
|
-
* @export
|
|
405
|
-
* @interface GetDocumentsResponseOwner
|
|
406
|
-
*/
|
|
407
|
-
export interface GetDocumentsResponseOwner {
|
|
1377
|
+
petKT?: boolean;
|
|
408
1378
|
/**
|
|
409
1379
|
*
|
|
410
1380
|
* @type {string}
|
|
411
|
-
* @memberof
|
|
1381
|
+
* @memberof UpdateExaminationRequest
|
|
412
1382
|
*/
|
|
413
|
-
|
|
1383
|
+
petKTNote?: string;
|
|
414
1384
|
/**
|
|
415
1385
|
*
|
|
416
|
-
* @type {
|
|
417
|
-
* @memberof
|
|
1386
|
+
* @type {boolean}
|
|
1387
|
+
* @memberof UpdateExaminationRequest
|
|
418
1388
|
*/
|
|
419
|
-
|
|
420
|
-
}
|
|
421
|
-
/**
|
|
422
|
-
*
|
|
423
|
-
* @export
|
|
424
|
-
* @interface GetPatientResponse
|
|
425
|
-
*/
|
|
426
|
-
export interface GetPatientResponse {
|
|
1389
|
+
boneScan?: boolean;
|
|
427
1390
|
/**
|
|
428
1391
|
*
|
|
429
1392
|
* @type {string}
|
|
430
|
-
* @memberof
|
|
1393
|
+
* @memberof UpdateExaminationRequest
|
|
431
1394
|
*/
|
|
432
|
-
|
|
1395
|
+
boneScanNote?: string;
|
|
433
1396
|
/**
|
|
434
1397
|
*
|
|
435
|
-
* @type {
|
|
436
|
-
* @memberof
|
|
1398
|
+
* @type {boolean}
|
|
1399
|
+
* @memberof UpdateExaminationRequest
|
|
437
1400
|
*/
|
|
438
|
-
|
|
1401
|
+
gynecologicalDiseasesInterventions?: boolean;
|
|
439
1402
|
/**
|
|
440
1403
|
*
|
|
441
1404
|
* @type {string}
|
|
442
|
-
* @memberof
|
|
1405
|
+
* @memberof UpdateExaminationRequest
|
|
443
1406
|
*/
|
|
444
|
-
|
|
1407
|
+
gynecologicalDiseasesInterventionsNote?: string;
|
|
445
1408
|
/**
|
|
446
1409
|
*
|
|
447
|
-
* @type {
|
|
448
|
-
* @memberof
|
|
1410
|
+
* @type {boolean}
|
|
1411
|
+
* @memberof UpdateExaminationRequest
|
|
449
1412
|
*/
|
|
450
|
-
|
|
1413
|
+
transplantation?: boolean;
|
|
451
1414
|
/**
|
|
452
1415
|
*
|
|
453
1416
|
* @type {string}
|
|
454
|
-
* @memberof
|
|
1417
|
+
* @memberof UpdateExaminationRequest
|
|
455
1418
|
*/
|
|
456
|
-
|
|
1419
|
+
transplantationNote?: string;
|
|
457
1420
|
/**
|
|
458
1421
|
*
|
|
459
|
-
* @type {
|
|
460
|
-
* @memberof
|
|
1422
|
+
* @type {boolean}
|
|
1423
|
+
* @memberof UpdateExaminationRequest
|
|
461
1424
|
*/
|
|
462
|
-
|
|
1425
|
+
recentInjury?: boolean;
|
|
463
1426
|
/**
|
|
464
1427
|
*
|
|
465
1428
|
* @type {string}
|
|
466
|
-
* @memberof
|
|
1429
|
+
* @memberof UpdateExaminationRequest
|
|
467
1430
|
*/
|
|
468
|
-
|
|
1431
|
+
recentInjuryNote?: string;
|
|
469
1432
|
/**
|
|
470
1433
|
*
|
|
471
|
-
* @type {
|
|
472
|
-
* @memberof
|
|
1434
|
+
* @type {boolean}
|
|
1435
|
+
* @memberof UpdateExaminationRequest
|
|
473
1436
|
*/
|
|
474
|
-
|
|
1437
|
+
kt?: boolean;
|
|
475
1438
|
/**
|
|
476
1439
|
*
|
|
477
1440
|
* @type {string}
|
|
478
|
-
* @memberof
|
|
1441
|
+
* @memberof UpdateExaminationRequest
|
|
479
1442
|
*/
|
|
480
|
-
|
|
1443
|
+
ktNote?: string;
|
|
481
1444
|
/**
|
|
482
1445
|
*
|
|
483
|
-
* @type {
|
|
484
|
-
* @memberof
|
|
1446
|
+
* @type {boolean}
|
|
1447
|
+
* @memberof UpdateExaminationRequest
|
|
485
1448
|
*/
|
|
486
|
-
|
|
1449
|
+
mr?: boolean;
|
|
487
1450
|
/**
|
|
488
1451
|
*
|
|
489
1452
|
* @type {string}
|
|
490
|
-
* @memberof
|
|
1453
|
+
* @memberof UpdateExaminationRequest
|
|
491
1454
|
*/
|
|
492
|
-
|
|
1455
|
+
mrNote?: string;
|
|
493
1456
|
/**
|
|
494
1457
|
*
|
|
495
1458
|
* @type {string}
|
|
496
|
-
* @memberof
|
|
497
|
-
*/
|
|
498
|
-
sex?: GetPatientResponseSexEnum;
|
|
499
|
-
/**
|
|
500
|
-
*
|
|
501
|
-
* @type {number}
|
|
502
|
-
* @memberof GetPatientResponse
|
|
1459
|
+
* @memberof UpdateExaminationRequest
|
|
503
1460
|
*/
|
|
504
|
-
|
|
505
|
-
}
|
|
506
|
-
/**
|
|
507
|
-
* @export
|
|
508
|
-
* @enum {string}
|
|
509
|
-
*/
|
|
510
|
-
export declare enum GetPatientResponseSexEnum {
|
|
511
|
-
Male = "male",
|
|
512
|
-
Female = "female"
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
*
|
|
516
|
-
* @export
|
|
517
|
-
* @interface InlineObject
|
|
518
|
-
*/
|
|
519
|
-
export interface InlineObject {
|
|
1461
|
+
nurseAnamnesis?: string;
|
|
520
1462
|
/**
|
|
521
1463
|
*
|
|
522
|
-
* @type {
|
|
523
|
-
* @memberof
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
* @memberof UpdateExaminationRequest
|
|
524
1466
|
*/
|
|
525
|
-
|
|
526
|
-
}
|
|
527
|
-
/**
|
|
528
|
-
*
|
|
529
|
-
* @export
|
|
530
|
-
* @interface InlineObject1
|
|
531
|
-
*/
|
|
532
|
-
export interface InlineObject1 {
|
|
1467
|
+
doctorAnamnesis?: string;
|
|
533
1468
|
/**
|
|
534
1469
|
*
|
|
535
|
-
* @type {
|
|
536
|
-
* @memberof
|
|
1470
|
+
* @type {string}
|
|
1471
|
+
* @memberof UpdateExaminationRequest
|
|
537
1472
|
*/
|
|
538
|
-
|
|
539
|
-
}
|
|
540
|
-
/**
|
|
541
|
-
*
|
|
542
|
-
* @export
|
|
543
|
-
* @interface SendEmailRequest
|
|
544
|
-
*/
|
|
545
|
-
export interface SendEmailRequest {
|
|
1473
|
+
changedBy?: string;
|
|
546
1474
|
/**
|
|
547
1475
|
*
|
|
548
|
-
* @type {
|
|
549
|
-
* @memberof
|
|
1476
|
+
* @type {number}
|
|
1477
|
+
* @memberof UpdateExaminationRequest
|
|
550
1478
|
*/
|
|
551
|
-
|
|
1479
|
+
createdAt?: number;
|
|
552
1480
|
/**
|
|
553
1481
|
*
|
|
554
|
-
* @type {
|
|
555
|
-
* @memberof
|
|
1482
|
+
* @type {number}
|
|
1483
|
+
* @memberof UpdateExaminationRequest
|
|
556
1484
|
*/
|
|
557
|
-
|
|
1485
|
+
updatedAt?: number;
|
|
558
1486
|
}
|
|
559
1487
|
/**
|
|
560
1488
|
*
|
|
@@ -674,6 +1602,19 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
674
1602
|
* @throws {RequiredError}
|
|
675
1603
|
*/
|
|
676
1604
|
dicomUploadOptions(options?: any): RequestArgs;
|
|
1605
|
+
/**
|
|
1606
|
+
*
|
|
1607
|
+
* @param {string} id The id of the examination
|
|
1608
|
+
* @param {*} [options] Override http request option.
|
|
1609
|
+
* @throws {RequiredError}
|
|
1610
|
+
*/
|
|
1611
|
+
examinationIdOptions(id: string, options?: any): RequestArgs;
|
|
1612
|
+
/**
|
|
1613
|
+
*
|
|
1614
|
+
* @param {*} [options] Override http request option.
|
|
1615
|
+
* @throws {RequiredError}
|
|
1616
|
+
*/
|
|
1617
|
+
examinationOptions(options?: any): RequestArgs;
|
|
677
1618
|
/**
|
|
678
1619
|
*
|
|
679
1620
|
* @param {*} [options] Override http request option.
|
|
@@ -745,6 +1686,19 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
745
1686
|
* @throws {RequiredError}
|
|
746
1687
|
*/
|
|
747
1688
|
dicomUploadOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @param {string} id The id of the examination
|
|
1692
|
+
* @param {*} [options] Override http request option.
|
|
1693
|
+
* @throws {RequiredError}
|
|
1694
|
+
*/
|
|
1695
|
+
examinationIdOptions(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
1696
|
+
/**
|
|
1697
|
+
*
|
|
1698
|
+
* @param {*} [options] Override http request option.
|
|
1699
|
+
* @throws {RequiredError}
|
|
1700
|
+
*/
|
|
1701
|
+
examinationOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
748
1702
|
/**
|
|
749
1703
|
*
|
|
750
1704
|
* @param {*} [options] Override http request option.
|
|
@@ -816,6 +1770,19 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
816
1770
|
* @throws {RequiredError}
|
|
817
1771
|
*/
|
|
818
1772
|
dicomUploadOptions(options?: any): AxiosPromise<void>;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @param {string} id The id of the examination
|
|
1776
|
+
* @param {*} [options] Override http request option.
|
|
1777
|
+
* @throws {RequiredError}
|
|
1778
|
+
*/
|
|
1779
|
+
examinationIdOptions(id: string, options?: any): AxiosPromise<void>;
|
|
1780
|
+
/**
|
|
1781
|
+
*
|
|
1782
|
+
* @param {*} [options] Override http request option.
|
|
1783
|
+
* @throws {RequiredError}
|
|
1784
|
+
*/
|
|
1785
|
+
examinationOptions(options?: any): AxiosPromise<void>;
|
|
819
1786
|
/**
|
|
820
1787
|
*
|
|
821
1788
|
* @param {*} [options] Override http request option.
|
|
@@ -893,6 +1860,21 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
893
1860
|
* @memberof DefaultApi
|
|
894
1861
|
*/
|
|
895
1862
|
dicomUploadOptions(options?: any): AxiosPromise<void>;
|
|
1863
|
+
/**
|
|
1864
|
+
*
|
|
1865
|
+
* @param {string} id The id of the examination
|
|
1866
|
+
* @param {*} [options] Override http request option.
|
|
1867
|
+
* @throws {RequiredError}
|
|
1868
|
+
* @memberof DefaultApi
|
|
1869
|
+
*/
|
|
1870
|
+
examinationIdOptions(id: string, options?: any): AxiosPromise<void>;
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
* @param {*} [options] Override http request option.
|
|
1874
|
+
* @throws {RequiredError}
|
|
1875
|
+
* @memberof DefaultApi
|
|
1876
|
+
*/
|
|
1877
|
+
examinationOptions(options?: any): AxiosPromise<void>;
|
|
896
1878
|
/**
|
|
897
1879
|
*
|
|
898
1880
|
* @param {*} [options] Override http request option.
|
|
@@ -944,6 +1926,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
944
1926
|
* @export
|
|
945
1927
|
*/
|
|
946
1928
|
export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1929
|
+
/**
|
|
1930
|
+
* Create a examination
|
|
1931
|
+
* @summary Create examination
|
|
1932
|
+
* @param {CreateExaminationRequest} [createExaminationRequest]
|
|
1933
|
+
* @param {*} [options] Override http request option.
|
|
1934
|
+
* @throws {RequiredError}
|
|
1935
|
+
*/
|
|
1936
|
+
addExamination(createExaminationRequest?: CreateExaminationRequest, options?: any): RequestArgs;
|
|
947
1937
|
/**
|
|
948
1938
|
* Create a patient
|
|
949
1939
|
* @summary Create patient
|
|
@@ -961,6 +1951,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
961
1951
|
* @throws {RequiredError}
|
|
962
1952
|
*/
|
|
963
1953
|
deleteDocument(id: string, key: string, options?: any): RequestArgs;
|
|
1954
|
+
/**
|
|
1955
|
+
*
|
|
1956
|
+
* @summary Deletes examination
|
|
1957
|
+
* @param {string} id The examination id
|
|
1958
|
+
* @param {*} [options] Override http request option.
|
|
1959
|
+
* @throws {RequiredError}
|
|
1960
|
+
*/
|
|
1961
|
+
deleteExamination(id: string, options?: any): RequestArgs;
|
|
964
1962
|
/**
|
|
965
1963
|
*
|
|
966
1964
|
* @summary Deletes patient
|
|
@@ -993,6 +1991,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
993
1991
|
* @throws {RequiredError}
|
|
994
1992
|
*/
|
|
995
1993
|
downloadStudy(id: string, options?: any): RequestArgs;
|
|
1994
|
+
/**
|
|
1995
|
+
*
|
|
1996
|
+
* @summary Get data about Examination for patient
|
|
1997
|
+
* @param {string} patientId The patientId
|
|
1998
|
+
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @throws {RequiredError}
|
|
2000
|
+
*/
|
|
2001
|
+
getAllExaminationForPatient(patientId: string, options?: any): RequestArgs;
|
|
996
2002
|
/**
|
|
997
2003
|
*
|
|
998
2004
|
* @summary Get data about patients
|
|
@@ -1023,6 +2029,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1023
2029
|
* @throws {RequiredError}
|
|
1024
2030
|
*/
|
|
1025
2031
|
getDocuments(id: string, options?: any): RequestArgs;
|
|
2032
|
+
/**
|
|
2033
|
+
*
|
|
2034
|
+
* @summary Get data about Examination
|
|
2035
|
+
* @param {string} id The id of the examination
|
|
2036
|
+
* @param {*} [options] Override http request option.
|
|
2037
|
+
* @throws {RequiredError}
|
|
2038
|
+
*/
|
|
2039
|
+
getExamination(id: string, options?: any): RequestArgs;
|
|
1026
2040
|
/**
|
|
1027
2041
|
*
|
|
1028
2042
|
* @summary Get data about patient
|
|
@@ -1039,6 +2053,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1039
2053
|
* @throws {RequiredError}
|
|
1040
2054
|
*/
|
|
1041
2055
|
sendEmail(sendEmailRequest: SendEmailRequest, options?: any): RequestArgs;
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @summary Updates the examination
|
|
2059
|
+
* @param {string} id The id of the examination
|
|
2060
|
+
* @param {UpdateExaminationRequest} [updateExaminationRequest]
|
|
2061
|
+
* @param {*} [options] Override http request option.
|
|
2062
|
+
* @throws {RequiredError}
|
|
2063
|
+
*/
|
|
2064
|
+
updateExamination(id: string, updateExaminationRequest?: UpdateExaminationRequest, options?: any): RequestArgs;
|
|
1042
2065
|
/**
|
|
1043
2066
|
*
|
|
1044
2067
|
* @summary Updates the patient
|
|
@@ -1071,6 +2094,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1071
2094
|
* @export
|
|
1072
2095
|
*/
|
|
1073
2096
|
export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
2097
|
+
/**
|
|
2098
|
+
* Create a examination
|
|
2099
|
+
* @summary Create examination
|
|
2100
|
+
* @param {CreateExaminationRequest} [createExaminationRequest]
|
|
2101
|
+
* @param {*} [options] Override http request option.
|
|
2102
|
+
* @throws {RequiredError}
|
|
2103
|
+
*/
|
|
2104
|
+
addExamination(createExaminationRequest?: CreateExaminationRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateExaminationResponse>;
|
|
1074
2105
|
/**
|
|
1075
2106
|
* Create a patient
|
|
1076
2107
|
* @summary Create patient
|
|
@@ -1088,6 +2119,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1088
2119
|
* @throws {RequiredError}
|
|
1089
2120
|
*/
|
|
1090
2121
|
deleteDocument(id: string, key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @summary Deletes examination
|
|
2125
|
+
* @param {string} id The examination id
|
|
2126
|
+
* @param {*} [options] Override http request option.
|
|
2127
|
+
* @throws {RequiredError}
|
|
2128
|
+
*/
|
|
2129
|
+
deleteExamination(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
1091
2130
|
/**
|
|
1092
2131
|
*
|
|
1093
2132
|
* @summary Deletes patient
|
|
@@ -1120,6 +2159,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1120
2159
|
* @throws {RequiredError}
|
|
1121
2160
|
*/
|
|
1122
2161
|
downloadStudy(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadStudyResponse>;
|
|
2162
|
+
/**
|
|
2163
|
+
*
|
|
2164
|
+
* @summary Get data about Examination for patient
|
|
2165
|
+
* @param {string} patientId The patientId
|
|
2166
|
+
* @param {*} [options] Override http request option.
|
|
2167
|
+
* @throws {RequiredError}
|
|
2168
|
+
*/
|
|
2169
|
+
getAllExaminationForPatient(patientId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>;
|
|
1123
2170
|
/**
|
|
1124
2171
|
*
|
|
1125
2172
|
* @summary Get data about patients
|
|
@@ -1150,6 +2197,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1150
2197
|
* @throws {RequiredError}
|
|
1151
2198
|
*/
|
|
1152
2199
|
getDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDocumentsResponse>;
|
|
2200
|
+
/**
|
|
2201
|
+
*
|
|
2202
|
+
* @summary Get data about Examination
|
|
2203
|
+
* @param {string} id The id of the examination
|
|
2204
|
+
* @param {*} [options] Override http request option.
|
|
2205
|
+
* @throws {RequiredError}
|
|
2206
|
+
*/
|
|
2207
|
+
getExamination(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetExaminationResponse>;
|
|
1153
2208
|
/**
|
|
1154
2209
|
*
|
|
1155
2210
|
* @summary Get data about patient
|
|
@@ -1166,6 +2221,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1166
2221
|
* @throws {RequiredError}
|
|
1167
2222
|
*/
|
|
1168
2223
|
sendEmail(sendEmailRequest: SendEmailRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
2224
|
+
/**
|
|
2225
|
+
*
|
|
2226
|
+
* @summary Updates the examination
|
|
2227
|
+
* @param {string} id The id of the examination
|
|
2228
|
+
* @param {UpdateExaminationRequest} [updateExaminationRequest]
|
|
2229
|
+
* @param {*} [options] Override http request option.
|
|
2230
|
+
* @throws {RequiredError}
|
|
2231
|
+
*/
|
|
2232
|
+
updateExamination(id: string, updateExaminationRequest?: UpdateExaminationRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
1169
2233
|
/**
|
|
1170
2234
|
*
|
|
1171
2235
|
* @summary Updates the patient
|
|
@@ -1198,6 +2262,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1198
2262
|
* @export
|
|
1199
2263
|
*/
|
|
1200
2264
|
export declare const MsPetApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2265
|
+
/**
|
|
2266
|
+
* Create a examination
|
|
2267
|
+
* @summary Create examination
|
|
2268
|
+
* @param {CreateExaminationRequest} [createExaminationRequest]
|
|
2269
|
+
* @param {*} [options] Override http request option.
|
|
2270
|
+
* @throws {RequiredError}
|
|
2271
|
+
*/
|
|
2272
|
+
addExamination(createExaminationRequest?: CreateExaminationRequest, options?: any): AxiosPromise<CreateExaminationResponse>;
|
|
1201
2273
|
/**
|
|
1202
2274
|
* Create a patient
|
|
1203
2275
|
* @summary Create patient
|
|
@@ -1215,6 +2287,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1215
2287
|
* @throws {RequiredError}
|
|
1216
2288
|
*/
|
|
1217
2289
|
deleteDocument(id: string, key: string, options?: any): AxiosPromise<DoneResult>;
|
|
2290
|
+
/**
|
|
2291
|
+
*
|
|
2292
|
+
* @summary Deletes examination
|
|
2293
|
+
* @param {string} id The examination id
|
|
2294
|
+
* @param {*} [options] Override http request option.
|
|
2295
|
+
* @throws {RequiredError}
|
|
2296
|
+
*/
|
|
2297
|
+
deleteExamination(id: string, options?: any): AxiosPromise<DoneResult>;
|
|
1218
2298
|
/**
|
|
1219
2299
|
*
|
|
1220
2300
|
* @summary Deletes patient
|
|
@@ -1247,6 +2327,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1247
2327
|
* @throws {RequiredError}
|
|
1248
2328
|
*/
|
|
1249
2329
|
downloadStudy(id: string, options?: any): AxiosPromise<DownloadStudyResponse>;
|
|
2330
|
+
/**
|
|
2331
|
+
*
|
|
2332
|
+
* @summary Get data about Examination for patient
|
|
2333
|
+
* @param {string} patientId The patientId
|
|
2334
|
+
* @param {*} [options] Override http request option.
|
|
2335
|
+
* @throws {RequiredError}
|
|
2336
|
+
*/
|
|
2337
|
+
getAllExaminationForPatient(patientId: string, options?: any): AxiosPromise<object[]>;
|
|
1250
2338
|
/**
|
|
1251
2339
|
*
|
|
1252
2340
|
* @summary Get data about patients
|
|
@@ -1277,6 +2365,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1277
2365
|
* @throws {RequiredError}
|
|
1278
2366
|
*/
|
|
1279
2367
|
getDocuments(id: string, options?: any): AxiosPromise<GetDocumentsResponse>;
|
|
2368
|
+
/**
|
|
2369
|
+
*
|
|
2370
|
+
* @summary Get data about Examination
|
|
2371
|
+
* @param {string} id The id of the examination
|
|
2372
|
+
* @param {*} [options] Override http request option.
|
|
2373
|
+
* @throws {RequiredError}
|
|
2374
|
+
*/
|
|
2375
|
+
getExamination(id: string, options?: any): AxiosPromise<GetExaminationResponse>;
|
|
1280
2376
|
/**
|
|
1281
2377
|
*
|
|
1282
2378
|
* @summary Get data about patient
|
|
@@ -1293,6 +2389,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1293
2389
|
* @throws {RequiredError}
|
|
1294
2390
|
*/
|
|
1295
2391
|
sendEmail(sendEmailRequest: SendEmailRequest, options?: any): AxiosPromise<DoneResult>;
|
|
2392
|
+
/**
|
|
2393
|
+
*
|
|
2394
|
+
* @summary Updates the examination
|
|
2395
|
+
* @param {string} id The id of the examination
|
|
2396
|
+
* @param {UpdateExaminationRequest} [updateExaminationRequest]
|
|
2397
|
+
* @param {*} [options] Override http request option.
|
|
2398
|
+
* @throws {RequiredError}
|
|
2399
|
+
*/
|
|
2400
|
+
updateExamination(id: string, updateExaminationRequest?: UpdateExaminationRequest, options?: any): AxiosPromise<DoneResult>;
|
|
1296
2401
|
/**
|
|
1297
2402
|
*
|
|
1298
2403
|
* @summary Updates the patient
|
|
@@ -1327,6 +2432,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1327
2432
|
* @extends {BaseAPI}
|
|
1328
2433
|
*/
|
|
1329
2434
|
export declare class MsPetApi extends BaseAPI {
|
|
2435
|
+
/**
|
|
2436
|
+
* Create a examination
|
|
2437
|
+
* @summary Create examination
|
|
2438
|
+
* @param {CreateExaminationRequest} [createExaminationRequest]
|
|
2439
|
+
* @param {*} [options] Override http request option.
|
|
2440
|
+
* @throws {RequiredError}
|
|
2441
|
+
* @memberof MsPetApi
|
|
2442
|
+
*/
|
|
2443
|
+
addExamination(createExaminationRequest?: CreateExaminationRequest, options?: any): AxiosPromise<CreateExaminationResponse>;
|
|
1330
2444
|
/**
|
|
1331
2445
|
* Create a patient
|
|
1332
2446
|
* @summary Create patient
|
|
@@ -1346,6 +2460,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1346
2460
|
* @memberof MsPetApi
|
|
1347
2461
|
*/
|
|
1348
2462
|
deleteDocument(id: string, key: string, options?: any): AxiosPromise<DoneResult>;
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
* @summary Deletes examination
|
|
2466
|
+
* @param {string} id The examination id
|
|
2467
|
+
* @param {*} [options] Override http request option.
|
|
2468
|
+
* @throws {RequiredError}
|
|
2469
|
+
* @memberof MsPetApi
|
|
2470
|
+
*/
|
|
2471
|
+
deleteExamination(id: string, options?: any): AxiosPromise<DoneResult>;
|
|
1349
2472
|
/**
|
|
1350
2473
|
*
|
|
1351
2474
|
* @summary Deletes patient
|
|
@@ -1382,6 +2505,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1382
2505
|
* @memberof MsPetApi
|
|
1383
2506
|
*/
|
|
1384
2507
|
downloadStudy(id: string, options?: any): AxiosPromise<DownloadStudyResponse>;
|
|
2508
|
+
/**
|
|
2509
|
+
*
|
|
2510
|
+
* @summary Get data about Examination for patient
|
|
2511
|
+
* @param {string} patientId The patientId
|
|
2512
|
+
* @param {*} [options] Override http request option.
|
|
2513
|
+
* @throws {RequiredError}
|
|
2514
|
+
* @memberof MsPetApi
|
|
2515
|
+
*/
|
|
2516
|
+
getAllExaminationForPatient(patientId: string, options?: any): AxiosPromise<object[]>;
|
|
1385
2517
|
/**
|
|
1386
2518
|
*
|
|
1387
2519
|
* @summary Get data about patients
|
|
@@ -1416,6 +2548,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1416
2548
|
* @memberof MsPetApi
|
|
1417
2549
|
*/
|
|
1418
2550
|
getDocuments(id: string, options?: any): AxiosPromise<GetDocumentsResponse>;
|
|
2551
|
+
/**
|
|
2552
|
+
*
|
|
2553
|
+
* @summary Get data about Examination
|
|
2554
|
+
* @param {string} id The id of the examination
|
|
2555
|
+
* @param {*} [options] Override http request option.
|
|
2556
|
+
* @throws {RequiredError}
|
|
2557
|
+
* @memberof MsPetApi
|
|
2558
|
+
*/
|
|
2559
|
+
getExamination(id: string, options?: any): AxiosPromise<GetExaminationResponse>;
|
|
1419
2560
|
/**
|
|
1420
2561
|
*
|
|
1421
2562
|
* @summary Get data about patient
|
|
@@ -1434,6 +2575,16 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1434
2575
|
* @memberof MsPetApi
|
|
1435
2576
|
*/
|
|
1436
2577
|
sendEmail(sendEmailRequest: SendEmailRequest, options?: any): AxiosPromise<DoneResult>;
|
|
2578
|
+
/**
|
|
2579
|
+
*
|
|
2580
|
+
* @summary Updates the examination
|
|
2581
|
+
* @param {string} id The id of the examination
|
|
2582
|
+
* @param {UpdateExaminationRequest} [updateExaminationRequest]
|
|
2583
|
+
* @param {*} [options] Override http request option.
|
|
2584
|
+
* @throws {RequiredError}
|
|
2585
|
+
* @memberof MsPetApi
|
|
2586
|
+
*/
|
|
2587
|
+
updateExamination(id: string, updateExaminationRequest?: UpdateExaminationRequest, options?: any): AxiosPromise<DoneResult>;
|
|
1437
2588
|
/**
|
|
1438
2589
|
*
|
|
1439
2590
|
* @summary Updates the patient
|