pet-backend-sdk 0.23.0 → 0.28.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 +1390 -11
- package/axios/api.js +1006 -44
- 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
|
+
width?: 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
|
|
@@ -138,6 +458,51 @@ export interface DownloadDocumentResponse {
|
|
|
138
458
|
*/
|
|
139
459
|
url: string;
|
|
140
460
|
}
|
|
461
|
+
/**
|
|
462
|
+
*
|
|
463
|
+
* @export
|
|
464
|
+
* @interface DownloadMultipleFilesRequest
|
|
465
|
+
*/
|
|
466
|
+
export interface DownloadMultipleFilesRequest {
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @type {Array<DownloadMultipleFilesRequestDocuments>}
|
|
470
|
+
* @memberof DownloadMultipleFilesRequest
|
|
471
|
+
*/
|
|
472
|
+
documents?: Array<DownloadMultipleFilesRequestDocuments>;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
*
|
|
476
|
+
* @export
|
|
477
|
+
* @interface DownloadMultipleFilesRequestDocuments
|
|
478
|
+
*/
|
|
479
|
+
export interface DownloadMultipleFilesRequestDocuments {
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @type {string}
|
|
483
|
+
* @memberof DownloadMultipleFilesRequestDocuments
|
|
484
|
+
*/
|
|
485
|
+
key: string;
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @type {string}
|
|
489
|
+
* @memberof DownloadMultipleFilesRequestDocuments
|
|
490
|
+
*/
|
|
491
|
+
name: string;
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @export
|
|
496
|
+
* @interface DownloadMultipleFilesResponse
|
|
497
|
+
*/
|
|
498
|
+
export interface DownloadMultipleFilesResponse {
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @type {string}
|
|
502
|
+
* @memberof DownloadMultipleFilesResponse
|
|
503
|
+
*/
|
|
504
|
+
blob: string;
|
|
505
|
+
}
|
|
141
506
|
/**
|
|
142
507
|
*
|
|
143
508
|
* @export
|
|
@@ -376,25 +741,332 @@ export interface GetDocumentsResponseOwner {
|
|
|
376
741
|
/**
|
|
377
742
|
*
|
|
378
743
|
* @export
|
|
379
|
-
* @interface
|
|
744
|
+
* @interface GetExaminationResponse
|
|
380
745
|
*/
|
|
381
|
-
export interface
|
|
746
|
+
export interface GetExaminationResponse {
|
|
382
747
|
/**
|
|
383
748
|
*
|
|
384
749
|
* @type {string}
|
|
385
|
-
* @memberof
|
|
750
|
+
* @memberof GetExaminationResponse
|
|
386
751
|
*/
|
|
387
|
-
id
|
|
752
|
+
id?: string;
|
|
388
753
|
/**
|
|
389
754
|
*
|
|
390
755
|
* @type {string}
|
|
391
|
-
* @memberof
|
|
756
|
+
* @memberof GetExaminationResponse
|
|
392
757
|
*/
|
|
393
|
-
|
|
758
|
+
patientId: string;
|
|
394
759
|
/**
|
|
395
760
|
*
|
|
396
761
|
* @type {string}
|
|
397
|
-
* @memberof
|
|
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
|
+
width?: 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
|
|
398
1070
|
*/
|
|
399
1071
|
surname: string;
|
|
400
1072
|
/**
|
|
@@ -479,6 +1151,19 @@ export interface InlineObject {
|
|
|
479
1151
|
*/
|
|
480
1152
|
files?: Array<any>;
|
|
481
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
|
+
}
|
|
482
1167
|
/**
|
|
483
1168
|
*
|
|
484
1169
|
* @export
|
|
@@ -498,6 +1183,307 @@ export interface SendEmailRequest {
|
|
|
498
1183
|
*/
|
|
499
1184
|
documentId: string;
|
|
500
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
|
+
width?: 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;
|
|
1396
|
+
/**
|
|
1397
|
+
*
|
|
1398
|
+
* @type {boolean}
|
|
1399
|
+
* @memberof UpdateExaminationRequest
|
|
1400
|
+
*/
|
|
1401
|
+
gynecologicalDiseasesInterventions?: boolean;
|
|
1402
|
+
/**
|
|
1403
|
+
*
|
|
1404
|
+
* @type {string}
|
|
1405
|
+
* @memberof UpdateExaminationRequest
|
|
1406
|
+
*/
|
|
1407
|
+
gynecologicalDiseasesInterventionsNote?: string;
|
|
1408
|
+
/**
|
|
1409
|
+
*
|
|
1410
|
+
* @type {boolean}
|
|
1411
|
+
* @memberof UpdateExaminationRequest
|
|
1412
|
+
*/
|
|
1413
|
+
transplantation?: boolean;
|
|
1414
|
+
/**
|
|
1415
|
+
*
|
|
1416
|
+
* @type {string}
|
|
1417
|
+
* @memberof UpdateExaminationRequest
|
|
1418
|
+
*/
|
|
1419
|
+
transplantationNote?: string;
|
|
1420
|
+
/**
|
|
1421
|
+
*
|
|
1422
|
+
* @type {boolean}
|
|
1423
|
+
* @memberof UpdateExaminationRequest
|
|
1424
|
+
*/
|
|
1425
|
+
recentInjury?: boolean;
|
|
1426
|
+
/**
|
|
1427
|
+
*
|
|
1428
|
+
* @type {string}
|
|
1429
|
+
* @memberof UpdateExaminationRequest
|
|
1430
|
+
*/
|
|
1431
|
+
recentInjuryNote?: string;
|
|
1432
|
+
/**
|
|
1433
|
+
*
|
|
1434
|
+
* @type {boolean}
|
|
1435
|
+
* @memberof UpdateExaminationRequest
|
|
1436
|
+
*/
|
|
1437
|
+
KT?: boolean;
|
|
1438
|
+
/**
|
|
1439
|
+
*
|
|
1440
|
+
* @type {string}
|
|
1441
|
+
* @memberof UpdateExaminationRequest
|
|
1442
|
+
*/
|
|
1443
|
+
kTNote?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* @type {boolean}
|
|
1447
|
+
* @memberof UpdateExaminationRequest
|
|
1448
|
+
*/
|
|
1449
|
+
MR?: boolean;
|
|
1450
|
+
/**
|
|
1451
|
+
*
|
|
1452
|
+
* @type {string}
|
|
1453
|
+
* @memberof UpdateExaminationRequest
|
|
1454
|
+
*/
|
|
1455
|
+
mRNote?: string;
|
|
1456
|
+
/**
|
|
1457
|
+
*
|
|
1458
|
+
* @type {string}
|
|
1459
|
+
* @memberof UpdateExaminationRequest
|
|
1460
|
+
*/
|
|
1461
|
+
nursenamnesis?: string;
|
|
1462
|
+
/**
|
|
1463
|
+
*
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
* @memberof UpdateExaminationRequest
|
|
1466
|
+
*/
|
|
1467
|
+
doctorAnamnesis?: string;
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @type {string}
|
|
1471
|
+
* @memberof UpdateExaminationRequest
|
|
1472
|
+
*/
|
|
1473
|
+
changedBy?: string;
|
|
1474
|
+
/**
|
|
1475
|
+
*
|
|
1476
|
+
* @type {number}
|
|
1477
|
+
* @memberof UpdateExaminationRequest
|
|
1478
|
+
*/
|
|
1479
|
+
createdAt?: number;
|
|
1480
|
+
/**
|
|
1481
|
+
*
|
|
1482
|
+
* @type {number}
|
|
1483
|
+
* @memberof UpdateExaminationRequest
|
|
1484
|
+
*/
|
|
1485
|
+
updatedAt?: number;
|
|
1486
|
+
}
|
|
501
1487
|
/**
|
|
502
1488
|
*
|
|
503
1489
|
* @export
|
|
@@ -592,18 +1578,49 @@ export declare enum UpdatePatientRequestSexEnum {
|
|
|
592
1578
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
593
1579
|
/**
|
|
594
1580
|
*
|
|
595
|
-
* @param {string} id The id of the patient
|
|
1581
|
+
* @param {string} id The id of the patient
|
|
1582
|
+
* @param {*} [options] Override http request option.
|
|
1583
|
+
* @throws {RequiredError}
|
|
1584
|
+
*/
|
|
1585
|
+
dicomIdAllStudiesOptions(id: string, options?: any): RequestArgs;
|
|
1586
|
+
/**
|
|
1587
|
+
*
|
|
1588
|
+
* @param {string} id The id of the study
|
|
1589
|
+
* @param {*} [options] Override http request option.
|
|
1590
|
+
* @throws {RequiredError}
|
|
1591
|
+
*/
|
|
1592
|
+
dicomIdDownloadOptions(id: string, options?: any): RequestArgs;
|
|
1593
|
+
/**
|
|
1594
|
+
*
|
|
1595
|
+
* @param {*} [options] Override http request option.
|
|
1596
|
+
* @throws {RequiredError}
|
|
1597
|
+
*/
|
|
1598
|
+
dicomUnassignedStudiesOptions(options?: any): RequestArgs;
|
|
1599
|
+
/**
|
|
1600
|
+
*
|
|
1601
|
+
* @param {*} [options] Override http request option.
|
|
1602
|
+
* @throws {RequiredError}
|
|
1603
|
+
*/
|
|
1604
|
+
dicomUploadOptions(options?: any): RequestArgs;
|
|
1605
|
+
/**
|
|
1606
|
+
*
|
|
1607
|
+
* @param {string} id The id of the examination
|
|
596
1608
|
* @param {*} [options] Override http request option.
|
|
597
1609
|
* @throws {RequiredError}
|
|
598
1610
|
*/
|
|
599
|
-
|
|
1611
|
+
examinationIdOptions(id: string, options?: any): RequestArgs;
|
|
600
1612
|
/**
|
|
601
1613
|
*
|
|
602
|
-
* @param {string} id The id of the study
|
|
603
1614
|
* @param {*} [options] Override http request option.
|
|
604
1615
|
* @throws {RequiredError}
|
|
605
1616
|
*/
|
|
606
|
-
|
|
1617
|
+
examinationOptions(options?: any): RequestArgs;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @param {*} [options] Override http request option.
|
|
1621
|
+
* @throws {RequiredError}
|
|
1622
|
+
*/
|
|
1623
|
+
patientDocumentsDownloadMultipleOptions(options?: any): RequestArgs;
|
|
607
1624
|
/**
|
|
608
1625
|
*
|
|
609
1626
|
* @param {string} key The key of the document
|
|
@@ -657,6 +1674,37 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
657
1674
|
* @throws {RequiredError}
|
|
658
1675
|
*/
|
|
659
1676
|
dicomIdDownloadOptions(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @param {*} [options] Override http request option.
|
|
1680
|
+
* @throws {RequiredError}
|
|
1681
|
+
*/
|
|
1682
|
+
dicomUnassignedStudiesOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @param {*} [options] Override http request option.
|
|
1686
|
+
* @throws {RequiredError}
|
|
1687
|
+
*/
|
|
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>;
|
|
660
1708
|
/**
|
|
661
1709
|
*
|
|
662
1710
|
* @param {string} key The key of the document
|
|
@@ -710,6 +1758,37 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
710
1758
|
* @throws {RequiredError}
|
|
711
1759
|
*/
|
|
712
1760
|
dicomIdDownloadOptions(id: string, options?: any): AxiosPromise<void>;
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @param {*} [options] Override http request option.
|
|
1764
|
+
* @throws {RequiredError}
|
|
1765
|
+
*/
|
|
1766
|
+
dicomUnassignedStudiesOptions(options?: any): AxiosPromise<void>;
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @param {*} [options] Override http request option.
|
|
1770
|
+
* @throws {RequiredError}
|
|
1771
|
+
*/
|
|
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>;
|
|
713
1792
|
/**
|
|
714
1793
|
*
|
|
715
1794
|
* @param {string} key The key of the document
|
|
@@ -767,6 +1846,42 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
767
1846
|
* @memberof DefaultApi
|
|
768
1847
|
*/
|
|
769
1848
|
dicomIdDownloadOptions(id: string, options?: any): AxiosPromise<void>;
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @param {*} [options] Override http request option.
|
|
1852
|
+
* @throws {RequiredError}
|
|
1853
|
+
* @memberof DefaultApi
|
|
1854
|
+
*/
|
|
1855
|
+
dicomUnassignedStudiesOptions(options?: any): AxiosPromise<void>;
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @param {*} [options] Override http request option.
|
|
1859
|
+
* @throws {RequiredError}
|
|
1860
|
+
* @memberof DefaultApi
|
|
1861
|
+
*/
|
|
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>;
|
|
770
1885
|
/**
|
|
771
1886
|
*
|
|
772
1887
|
* @param {string} key The key of the document
|
|
@@ -811,6 +1926,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
811
1926
|
* @export
|
|
812
1927
|
*/
|
|
813
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;
|
|
814
1937
|
/**
|
|
815
1938
|
* Create a patient
|
|
816
1939
|
* @summary Create patient
|
|
@@ -828,6 +1951,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
828
1951
|
* @throws {RequiredError}
|
|
829
1952
|
*/
|
|
830
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;
|
|
831
1962
|
/**
|
|
832
1963
|
*
|
|
833
1964
|
* @summary Deletes patient
|
|
@@ -844,6 +1975,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
844
1975
|
* @throws {RequiredError}
|
|
845
1976
|
*/
|
|
846
1977
|
downloadDocument(key: string, options?: any): RequestArgs;
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @summary Download zip with multiple files
|
|
1981
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
1982
|
+
* @param {*} [options] Override http request option.
|
|
1983
|
+
* @throws {RequiredError}
|
|
1984
|
+
*/
|
|
1985
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): RequestArgs;
|
|
847
1986
|
/**
|
|
848
1987
|
*
|
|
849
1988
|
* @summary Download study dicom
|
|
@@ -852,6 +1991,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
852
1991
|
* @throws {RequiredError}
|
|
853
1992
|
*/
|
|
854
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;
|
|
855
2002
|
/**
|
|
856
2003
|
*
|
|
857
2004
|
* @summary Get data about patients
|
|
@@ -867,6 +2014,13 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
867
2014
|
* @throws {RequiredError}
|
|
868
2015
|
*/
|
|
869
2016
|
getAllStudies(id: string, options?: any): RequestArgs;
|
|
2017
|
+
/**
|
|
2018
|
+
*
|
|
2019
|
+
* @summary Get all unassigned studies
|
|
2020
|
+
* @param {*} [options] Override http request option.
|
|
2021
|
+
* @throws {RequiredError}
|
|
2022
|
+
*/
|
|
2023
|
+
getAllUnassignedStudies(options?: any): RequestArgs;
|
|
870
2024
|
/**
|
|
871
2025
|
*
|
|
872
2026
|
* @summary Get data about documents
|
|
@@ -875,6 +2029,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
875
2029
|
* @throws {RequiredError}
|
|
876
2030
|
*/
|
|
877
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;
|
|
878
2040
|
/**
|
|
879
2041
|
*
|
|
880
2042
|
* @summary Get data about patient
|
|
@@ -891,6 +2053,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
891
2053
|
* @throws {RequiredError}
|
|
892
2054
|
*/
|
|
893
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;
|
|
894
2065
|
/**
|
|
895
2066
|
*
|
|
896
2067
|
* @summary Updates the patient
|
|
@@ -900,6 +2071,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
900
2071
|
* @throws {RequiredError}
|
|
901
2072
|
*/
|
|
902
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;
|
|
903
2082
|
/**
|
|
904
2083
|
* Upload medical examination files
|
|
905
2084
|
* @summary Upload documents
|
|
@@ -915,6 +2094,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
915
2094
|
* @export
|
|
916
2095
|
*/
|
|
917
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>;
|
|
918
2105
|
/**
|
|
919
2106
|
* Create a patient
|
|
920
2107
|
* @summary Create patient
|
|
@@ -932,6 +2119,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
932
2119
|
* @throws {RequiredError}
|
|
933
2120
|
*/
|
|
934
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>;
|
|
935
2130
|
/**
|
|
936
2131
|
*
|
|
937
2132
|
* @summary Deletes patient
|
|
@@ -948,6 +2143,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
948
2143
|
* @throws {RequiredError}
|
|
949
2144
|
*/
|
|
950
2145
|
downloadDocument(key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadDocumentResponse>;
|
|
2146
|
+
/**
|
|
2147
|
+
*
|
|
2148
|
+
* @summary Download zip with multiple files
|
|
2149
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
2150
|
+
* @param {*} [options] Override http request option.
|
|
2151
|
+
* @throws {RequiredError}
|
|
2152
|
+
*/
|
|
2153
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadMultipleFilesResponse>;
|
|
951
2154
|
/**
|
|
952
2155
|
*
|
|
953
2156
|
* @summary Download study dicom
|
|
@@ -956,6 +2159,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
956
2159
|
* @throws {RequiredError}
|
|
957
2160
|
*/
|
|
958
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>>;
|
|
959
2170
|
/**
|
|
960
2171
|
*
|
|
961
2172
|
* @summary Get data about patients
|
|
@@ -971,6 +2182,13 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
971
2182
|
* @throws {RequiredError}
|
|
972
2183
|
*/
|
|
973
2184
|
getAllStudies(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllStudiesResponse>;
|
|
2185
|
+
/**
|
|
2186
|
+
*
|
|
2187
|
+
* @summary Get all unassigned studies
|
|
2188
|
+
* @param {*} [options] Override http request option.
|
|
2189
|
+
* @throws {RequiredError}
|
|
2190
|
+
*/
|
|
2191
|
+
getAllUnassignedStudies(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllStudiesResponse>;
|
|
974
2192
|
/**
|
|
975
2193
|
*
|
|
976
2194
|
* @summary Get data about documents
|
|
@@ -979,6 +2197,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
979
2197
|
* @throws {RequiredError}
|
|
980
2198
|
*/
|
|
981
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>;
|
|
982
2208
|
/**
|
|
983
2209
|
*
|
|
984
2210
|
* @summary Get data about patient
|
|
@@ -995,6 +2221,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
995
2221
|
* @throws {RequiredError}
|
|
996
2222
|
*/
|
|
997
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>;
|
|
998
2233
|
/**
|
|
999
2234
|
*
|
|
1000
2235
|
* @summary Updates the patient
|
|
@@ -1004,6 +2239,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1004
2239
|
* @throws {RequiredError}
|
|
1005
2240
|
*/
|
|
1006
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>;
|
|
1007
2250
|
/**
|
|
1008
2251
|
* Upload medical examination files
|
|
1009
2252
|
* @summary Upload documents
|
|
@@ -1019,6 +2262,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1019
2262
|
* @export
|
|
1020
2263
|
*/
|
|
1021
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>;
|
|
1022
2273
|
/**
|
|
1023
2274
|
* Create a patient
|
|
1024
2275
|
* @summary Create patient
|
|
@@ -1036,6 +2287,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1036
2287
|
* @throws {RequiredError}
|
|
1037
2288
|
*/
|
|
1038
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>;
|
|
1039
2298
|
/**
|
|
1040
2299
|
*
|
|
1041
2300
|
* @summary Deletes patient
|
|
@@ -1052,6 +2311,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1052
2311
|
* @throws {RequiredError}
|
|
1053
2312
|
*/
|
|
1054
2313
|
downloadDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
|
|
2314
|
+
/**
|
|
2315
|
+
*
|
|
2316
|
+
* @summary Download zip with multiple files
|
|
2317
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
2318
|
+
* @param {*} [options] Override http request option.
|
|
2319
|
+
* @throws {RequiredError}
|
|
2320
|
+
*/
|
|
2321
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
|
|
1055
2322
|
/**
|
|
1056
2323
|
*
|
|
1057
2324
|
* @summary Download study dicom
|
|
@@ -1060,6 +2327,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1060
2327
|
* @throws {RequiredError}
|
|
1061
2328
|
*/
|
|
1062
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[]>;
|
|
1063
2338
|
/**
|
|
1064
2339
|
*
|
|
1065
2340
|
* @summary Get data about patients
|
|
@@ -1075,6 +2350,13 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1075
2350
|
* @throws {RequiredError}
|
|
1076
2351
|
*/
|
|
1077
2352
|
getAllStudies(id: string, options?: any): AxiosPromise<GetAllStudiesResponse>;
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
* @summary Get all unassigned studies
|
|
2356
|
+
* @param {*} [options] Override http request option.
|
|
2357
|
+
* @throws {RequiredError}
|
|
2358
|
+
*/
|
|
2359
|
+
getAllUnassignedStudies(options?: any): AxiosPromise<GetAllStudiesResponse>;
|
|
1078
2360
|
/**
|
|
1079
2361
|
*
|
|
1080
2362
|
* @summary Get data about documents
|
|
@@ -1083,6 +2365,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1083
2365
|
* @throws {RequiredError}
|
|
1084
2366
|
*/
|
|
1085
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>;
|
|
1086
2376
|
/**
|
|
1087
2377
|
*
|
|
1088
2378
|
* @summary Get data about patient
|
|
@@ -1099,6 +2389,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1099
2389
|
* @throws {RequiredError}
|
|
1100
2390
|
*/
|
|
1101
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>;
|
|
1102
2401
|
/**
|
|
1103
2402
|
*
|
|
1104
2403
|
* @summary Updates the patient
|
|
@@ -1108,6 +2407,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1108
2407
|
* @throws {RequiredError}
|
|
1109
2408
|
*/
|
|
1110
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>;
|
|
1111
2418
|
/**
|
|
1112
2419
|
* Upload medical examination files
|
|
1113
2420
|
* @summary Upload documents
|
|
@@ -1125,6 +2432,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1125
2432
|
* @extends {BaseAPI}
|
|
1126
2433
|
*/
|
|
1127
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>;
|
|
1128
2444
|
/**
|
|
1129
2445
|
* Create a patient
|
|
1130
2446
|
* @summary Create patient
|
|
@@ -1144,6 +2460,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1144
2460
|
* @memberof MsPetApi
|
|
1145
2461
|
*/
|
|
1146
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>;
|
|
1147
2472
|
/**
|
|
1148
2473
|
*
|
|
1149
2474
|
* @summary Deletes patient
|
|
@@ -1162,6 +2487,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1162
2487
|
* @memberof MsPetApi
|
|
1163
2488
|
*/
|
|
1164
2489
|
downloadDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
|
|
2490
|
+
/**
|
|
2491
|
+
*
|
|
2492
|
+
* @summary Download zip with multiple files
|
|
2493
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
2494
|
+
* @param {*} [options] Override http request option.
|
|
2495
|
+
* @throws {RequiredError}
|
|
2496
|
+
* @memberof MsPetApi
|
|
2497
|
+
*/
|
|
2498
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
|
|
1165
2499
|
/**
|
|
1166
2500
|
*
|
|
1167
2501
|
* @summary Download study dicom
|
|
@@ -1171,6 +2505,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1171
2505
|
* @memberof MsPetApi
|
|
1172
2506
|
*/
|
|
1173
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[]>;
|
|
1174
2517
|
/**
|
|
1175
2518
|
*
|
|
1176
2519
|
* @summary Get data about patients
|
|
@@ -1188,6 +2531,14 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1188
2531
|
* @memberof MsPetApi
|
|
1189
2532
|
*/
|
|
1190
2533
|
getAllStudies(id: string, options?: any): AxiosPromise<GetAllStudiesResponse>;
|
|
2534
|
+
/**
|
|
2535
|
+
*
|
|
2536
|
+
* @summary Get all unassigned studies
|
|
2537
|
+
* @param {*} [options] Override http request option.
|
|
2538
|
+
* @throws {RequiredError}
|
|
2539
|
+
* @memberof MsPetApi
|
|
2540
|
+
*/
|
|
2541
|
+
getAllUnassignedStudies(options?: any): AxiosPromise<GetAllStudiesResponse>;
|
|
1191
2542
|
/**
|
|
1192
2543
|
*
|
|
1193
2544
|
* @summary Get data about documents
|
|
@@ -1197,6 +2548,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1197
2548
|
* @memberof MsPetApi
|
|
1198
2549
|
*/
|
|
1199
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>;
|
|
1200
2560
|
/**
|
|
1201
2561
|
*
|
|
1202
2562
|
* @summary Get data about patient
|
|
@@ -1215,6 +2575,16 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1215
2575
|
* @memberof MsPetApi
|
|
1216
2576
|
*/
|
|
1217
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>;
|
|
1218
2588
|
/**
|
|
1219
2589
|
*
|
|
1220
2590
|
* @summary Updates the patient
|
|
@@ -1225,6 +2595,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1225
2595
|
* @memberof MsPetApi
|
|
1226
2596
|
*/
|
|
1227
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>;
|
|
1228
2607
|
/**
|
|
1229
2608
|
* Upload medical examination files
|
|
1230
2609
|
* @summary Upload documents
|