pet-backend-sdk 0.26.0 → 0.30.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 +1292 -70
- package/axios/api.js +752 -63
- 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
|
+
nursenamnesis?: 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
|
|
@@ -181,7 +501,7 @@ export interface DownloadMultipleFilesResponse {
|
|
|
181
501
|
* @type {string}
|
|
182
502
|
* @memberof DownloadMultipleFilesResponse
|
|
183
503
|
*/
|
|
184
|
-
|
|
504
|
+
blob: string;
|
|
185
505
|
}
|
|
186
506
|
/**
|
|
187
507
|
*
|
|
@@ -421,127 +741,748 @@ export interface GetDocumentsResponseOwner {
|
|
|
421
741
|
/**
|
|
422
742
|
*
|
|
423
743
|
* @export
|
|
424
|
-
* @interface
|
|
744
|
+
* @interface GetExaminationResponse
|
|
425
745
|
*/
|
|
426
|
-
export interface
|
|
746
|
+
export interface GetExaminationResponse {
|
|
427
747
|
/**
|
|
428
748
|
*
|
|
429
749
|
* @type {string}
|
|
430
|
-
* @memberof
|
|
750
|
+
* @memberof GetExaminationResponse
|
|
431
751
|
*/
|
|
432
|
-
id
|
|
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
|
+
nursenamnesis?: 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;
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @type {string}
|
|
1369
|
+
* @memberof UpdateExaminationRequest
|
|
1370
|
+
*/
|
|
1371
|
+
chemotherapyImmunotherapyNote?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
*
|
|
1374
|
+
* @type {boolean}
|
|
1375
|
+
* @memberof UpdateExaminationRequest
|
|
1376
|
+
*/
|
|
1377
|
+
petKT?: boolean;
|
|
1378
|
+
/**
|
|
1379
|
+
*
|
|
1380
|
+
* @type {string}
|
|
1381
|
+
* @memberof UpdateExaminationRequest
|
|
1382
|
+
*/
|
|
1383
|
+
petKTNote?: string;
|
|
1384
|
+
/**
|
|
1385
|
+
*
|
|
1386
|
+
* @type {boolean}
|
|
1387
|
+
* @memberof UpdateExaminationRequest
|
|
1388
|
+
*/
|
|
1389
|
+
boneScan?: boolean;
|
|
1390
|
+
/**
|
|
1391
|
+
*
|
|
1392
|
+
* @type {string}
|
|
1393
|
+
* @memberof UpdateExaminationRequest
|
|
1394
|
+
*/
|
|
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
|
|
1459
|
+
* @memberof UpdateExaminationRequest
|
|
497
1460
|
*/
|
|
498
|
-
|
|
1461
|
+
nursenamnesis?: string;
|
|
499
1462
|
/**
|
|
500
1463
|
*
|
|
501
|
-
* @type {
|
|
502
|
-
* @memberof
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
* @memberof UpdateExaminationRequest
|
|
503
1466
|
*/
|
|
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 {
|
|
1467
|
+
doctorAnamnesis?: string;
|
|
520
1468
|
/**
|
|
521
1469
|
*
|
|
522
|
-
* @type {
|
|
523
|
-
* @memberof
|
|
1470
|
+
* @type {string}
|
|
1471
|
+
* @memberof UpdateExaminationRequest
|
|
524
1472
|
*/
|
|
525
|
-
|
|
526
|
-
}
|
|
527
|
-
/**
|
|
528
|
-
*
|
|
529
|
-
* @export
|
|
530
|
-
* @interface SendEmailRequest
|
|
531
|
-
*/
|
|
532
|
-
export interface SendEmailRequest {
|
|
1473
|
+
changedBy?: string;
|
|
533
1474
|
/**
|
|
534
1475
|
*
|
|
535
|
-
* @type {
|
|
536
|
-
* @memberof
|
|
1476
|
+
* @type {number}
|
|
1477
|
+
* @memberof UpdateExaminationRequest
|
|
537
1478
|
*/
|
|
538
|
-
|
|
1479
|
+
createdAt?: number;
|
|
539
1480
|
/**
|
|
540
1481
|
*
|
|
541
|
-
* @type {
|
|
542
|
-
* @memberof
|
|
1482
|
+
* @type {number}
|
|
1483
|
+
* @memberof UpdateExaminationRequest
|
|
543
1484
|
*/
|
|
544
|
-
|
|
1485
|
+
updatedAt?: number;
|
|
545
1486
|
}
|
|
546
1487
|
/**
|
|
547
1488
|
*
|
|
@@ -660,7 +1601,26 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
660
1601
|
* @param {*} [options] Override http request option.
|
|
661
1602
|
* @throws {RequiredError}
|
|
662
1603
|
*/
|
|
663
|
-
|
|
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;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @param {*} [options] Override http request option.
|
|
1621
|
+
* @throws {RequiredError}
|
|
1622
|
+
*/
|
|
1623
|
+
patientDocumentsDownloadMultipleOptions(options?: any): RequestArgs;
|
|
664
1624
|
/**
|
|
665
1625
|
*
|
|
666
1626
|
* @param {string} key The key of the document
|
|
@@ -725,7 +1685,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
725
1685
|
* @param {*} [options] Override http request option.
|
|
726
1686
|
* @throws {RequiredError}
|
|
727
1687
|
*/
|
|
728
|
-
|
|
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>;
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @param {*} [options] Override http request option.
|
|
1705
|
+
* @throws {RequiredError}
|
|
1706
|
+
*/
|
|
1707
|
+
patientDocumentsDownloadMultipleOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
729
1708
|
/**
|
|
730
1709
|
*
|
|
731
1710
|
* @param {string} key The key of the document
|
|
@@ -790,7 +1769,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
790
1769
|
* @param {*} [options] Override http request option.
|
|
791
1770
|
* @throws {RequiredError}
|
|
792
1771
|
*/
|
|
793
|
-
|
|
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>;
|
|
1786
|
+
/**
|
|
1787
|
+
*
|
|
1788
|
+
* @param {*} [options] Override http request option.
|
|
1789
|
+
* @throws {RequiredError}
|
|
1790
|
+
*/
|
|
1791
|
+
patientDocumentsDownloadMultipleOptions(options?: any): AxiosPromise<void>;
|
|
794
1792
|
/**
|
|
795
1793
|
*
|
|
796
1794
|
* @param {string} key The key of the document
|
|
@@ -861,7 +1859,29 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
861
1859
|
* @throws {RequiredError}
|
|
862
1860
|
* @memberof DefaultApi
|
|
863
1861
|
*/
|
|
864
|
-
|
|
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>;
|
|
1878
|
+
/**
|
|
1879
|
+
*
|
|
1880
|
+
* @param {*} [options] Override http request option.
|
|
1881
|
+
* @throws {RequiredError}
|
|
1882
|
+
* @memberof DefaultApi
|
|
1883
|
+
*/
|
|
1884
|
+
patientDocumentsDownloadMultipleOptions(options?: any): AxiosPromise<void>;
|
|
865
1885
|
/**
|
|
866
1886
|
*
|
|
867
1887
|
* @param {string} key The key of the document
|
|
@@ -906,6 +1926,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
906
1926
|
* @export
|
|
907
1927
|
*/
|
|
908
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;
|
|
909
1937
|
/**
|
|
910
1938
|
* Create a patient
|
|
911
1939
|
* @summary Create patient
|
|
@@ -923,6 +1951,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
923
1951
|
* @throws {RequiredError}
|
|
924
1952
|
*/
|
|
925
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;
|
|
926
1962
|
/**
|
|
927
1963
|
*
|
|
928
1964
|
* @summary Deletes patient
|
|
@@ -955,6 +1991,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
955
1991
|
* @throws {RequiredError}
|
|
956
1992
|
*/
|
|
957
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;
|
|
958
2002
|
/**
|
|
959
2003
|
*
|
|
960
2004
|
* @summary Get data about patients
|
|
@@ -985,6 +2029,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
985
2029
|
* @throws {RequiredError}
|
|
986
2030
|
*/
|
|
987
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;
|
|
988
2040
|
/**
|
|
989
2041
|
*
|
|
990
2042
|
* @summary Get data about patient
|
|
@@ -1001,6 +2053,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1001
2053
|
* @throws {RequiredError}
|
|
1002
2054
|
*/
|
|
1003
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;
|
|
1004
2065
|
/**
|
|
1005
2066
|
*
|
|
1006
2067
|
* @summary Updates the patient
|
|
@@ -1010,6 +2071,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1010
2071
|
* @throws {RequiredError}
|
|
1011
2072
|
*/
|
|
1012
2073
|
updatePatientDetails(id: string, updatePatientRequest?: UpdatePatientRequest, options?: any): RequestArgs;
|
|
2074
|
+
/**
|
|
2075
|
+
* Upload medical DICOM files
|
|
2076
|
+
* @summary Upload DICOM documents
|
|
2077
|
+
* @param {Array<any>} [files]
|
|
2078
|
+
* @param {*} [options] Override http request option.
|
|
2079
|
+
* @throws {RequiredError}
|
|
2080
|
+
*/
|
|
2081
|
+
uploadDICOMDocuments(files?: Array<any>, options?: any): RequestArgs;
|
|
1013
2082
|
/**
|
|
1014
2083
|
* Upload medical examination files
|
|
1015
2084
|
* @summary Upload documents
|
|
@@ -1025,6 +2094,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1025
2094
|
* @export
|
|
1026
2095
|
*/
|
|
1027
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>;
|
|
1028
2105
|
/**
|
|
1029
2106
|
* Create a patient
|
|
1030
2107
|
* @summary Create patient
|
|
@@ -1042,6 +2119,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1042
2119
|
* @throws {RequiredError}
|
|
1043
2120
|
*/
|
|
1044
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>;
|
|
1045
2130
|
/**
|
|
1046
2131
|
*
|
|
1047
2132
|
* @summary Deletes patient
|
|
@@ -1074,6 +2159,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1074
2159
|
* @throws {RequiredError}
|
|
1075
2160
|
*/
|
|
1076
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>>;
|
|
1077
2170
|
/**
|
|
1078
2171
|
*
|
|
1079
2172
|
* @summary Get data about patients
|
|
@@ -1104,6 +2197,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1104
2197
|
* @throws {RequiredError}
|
|
1105
2198
|
*/
|
|
1106
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>;
|
|
1107
2208
|
/**
|
|
1108
2209
|
*
|
|
1109
2210
|
* @summary Get data about patient
|
|
@@ -1120,6 +2221,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1120
2221
|
* @throws {RequiredError}
|
|
1121
2222
|
*/
|
|
1122
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>;
|
|
1123
2233
|
/**
|
|
1124
2234
|
*
|
|
1125
2235
|
* @summary Updates the patient
|
|
@@ -1129,6 +2239,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1129
2239
|
* @throws {RequiredError}
|
|
1130
2240
|
*/
|
|
1131
2241
|
updatePatientDetails(id: string, updatePatientRequest?: UpdatePatientRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
2242
|
+
/**
|
|
2243
|
+
* Upload medical DICOM files
|
|
2244
|
+
* @summary Upload DICOM documents
|
|
2245
|
+
* @param {Array<any>} [files]
|
|
2246
|
+
* @param {*} [options] Override http request option.
|
|
2247
|
+
* @throws {RequiredError}
|
|
2248
|
+
*/
|
|
2249
|
+
uploadDICOMDocuments(files?: Array<any>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
|
|
1132
2250
|
/**
|
|
1133
2251
|
* Upload medical examination files
|
|
1134
2252
|
* @summary Upload documents
|
|
@@ -1144,6 +2262,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1144
2262
|
* @export
|
|
1145
2263
|
*/
|
|
1146
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>;
|
|
1147
2273
|
/**
|
|
1148
2274
|
* Create a patient
|
|
1149
2275
|
* @summary Create patient
|
|
@@ -1161,6 +2287,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1161
2287
|
* @throws {RequiredError}
|
|
1162
2288
|
*/
|
|
1163
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>;
|
|
1164
2298
|
/**
|
|
1165
2299
|
*
|
|
1166
2300
|
* @summary Deletes patient
|
|
@@ -1193,6 +2327,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1193
2327
|
* @throws {RequiredError}
|
|
1194
2328
|
*/
|
|
1195
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[]>;
|
|
1196
2338
|
/**
|
|
1197
2339
|
*
|
|
1198
2340
|
* @summary Get data about patients
|
|
@@ -1223,6 +2365,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1223
2365
|
* @throws {RequiredError}
|
|
1224
2366
|
*/
|
|
1225
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>;
|
|
1226
2376
|
/**
|
|
1227
2377
|
*
|
|
1228
2378
|
* @summary Get data about patient
|
|
@@ -1239,6 +2389,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1239
2389
|
* @throws {RequiredError}
|
|
1240
2390
|
*/
|
|
1241
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>;
|
|
1242
2401
|
/**
|
|
1243
2402
|
*
|
|
1244
2403
|
* @summary Updates the patient
|
|
@@ -1248,6 +2407,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1248
2407
|
* @throws {RequiredError}
|
|
1249
2408
|
*/
|
|
1250
2409
|
updatePatientDetails(id: string, updatePatientRequest?: UpdatePatientRequest, options?: any): AxiosPromise<DoneResult>;
|
|
2410
|
+
/**
|
|
2411
|
+
* Upload medical DICOM files
|
|
2412
|
+
* @summary Upload DICOM documents
|
|
2413
|
+
* @param {Array<any>} [files]
|
|
2414
|
+
* @param {*} [options] Override http request option.
|
|
2415
|
+
* @throws {RequiredError}
|
|
2416
|
+
*/
|
|
2417
|
+
uploadDICOMDocuments(files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
|
|
1251
2418
|
/**
|
|
1252
2419
|
* Upload medical examination files
|
|
1253
2420
|
* @summary Upload documents
|
|
@@ -1265,6 +2432,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1265
2432
|
* @extends {BaseAPI}
|
|
1266
2433
|
*/
|
|
1267
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>;
|
|
1268
2444
|
/**
|
|
1269
2445
|
* Create a patient
|
|
1270
2446
|
* @summary Create patient
|
|
@@ -1284,6 +2460,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1284
2460
|
* @memberof MsPetApi
|
|
1285
2461
|
*/
|
|
1286
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>;
|
|
1287
2472
|
/**
|
|
1288
2473
|
*
|
|
1289
2474
|
* @summary Deletes patient
|
|
@@ -1320,6 +2505,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1320
2505
|
* @memberof MsPetApi
|
|
1321
2506
|
*/
|
|
1322
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[]>;
|
|
1323
2517
|
/**
|
|
1324
2518
|
*
|
|
1325
2519
|
* @summary Get data about patients
|
|
@@ -1354,6 +2548,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1354
2548
|
* @memberof MsPetApi
|
|
1355
2549
|
*/
|
|
1356
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>;
|
|
1357
2560
|
/**
|
|
1358
2561
|
*
|
|
1359
2562
|
* @summary Get data about patient
|
|
@@ -1372,6 +2575,16 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1372
2575
|
* @memberof MsPetApi
|
|
1373
2576
|
*/
|
|
1374
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>;
|
|
1375
2588
|
/**
|
|
1376
2589
|
*
|
|
1377
2590
|
* @summary Updates the patient
|
|
@@ -1382,6 +2595,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1382
2595
|
* @memberof MsPetApi
|
|
1383
2596
|
*/
|
|
1384
2597
|
updatePatientDetails(id: string, updatePatientRequest?: UpdatePatientRequest, options?: any): AxiosPromise<DoneResult>;
|
|
2598
|
+
/**
|
|
2599
|
+
* Upload medical DICOM files
|
|
2600
|
+
* @summary Upload DICOM documents
|
|
2601
|
+
* @param {Array<any>} [files]
|
|
2602
|
+
* @param {*} [options] Override http request option.
|
|
2603
|
+
* @throws {RequiredError}
|
|
2604
|
+
* @memberof MsPetApi
|
|
2605
|
+
*/
|
|
2606
|
+
uploadDICOMDocuments(files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
|
|
1385
2607
|
/**
|
|
1386
2608
|
* Upload medical examination files
|
|
1387
2609
|
* @summary Upload documents
|