pet-backend-sdk 0.25.0 → 0.29.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 +1332 -78
- package/axios/api.js +768 -79
- 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,38 @@ 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
|
+
}
|
|
141
493
|
/**
|
|
142
494
|
*
|
|
143
495
|
* @export
|
|
@@ -149,7 +501,7 @@ export interface DownloadMultipleFilesResponse {
|
|
|
149
501
|
* @type {string}
|
|
150
502
|
* @memberof DownloadMultipleFilesResponse
|
|
151
503
|
*/
|
|
152
|
-
|
|
504
|
+
blob: string;
|
|
153
505
|
}
|
|
154
506
|
/**
|
|
155
507
|
*
|
|
@@ -389,127 +741,748 @@ export interface GetDocumentsResponseOwner {
|
|
|
389
741
|
/**
|
|
390
742
|
*
|
|
391
743
|
* @export
|
|
392
|
-
* @interface
|
|
744
|
+
* @interface GetExaminationResponse
|
|
393
745
|
*/
|
|
394
|
-
export interface
|
|
746
|
+
export interface GetExaminationResponse {
|
|
395
747
|
/**
|
|
396
748
|
*
|
|
397
749
|
* @type {string}
|
|
398
|
-
* @memberof
|
|
750
|
+
* @memberof GetExaminationResponse
|
|
399
751
|
*/
|
|
400
|
-
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
|
+
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
|
|
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
|
+
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;
|
|
401
1396
|
/**
|
|
402
1397
|
*
|
|
403
|
-
* @type {
|
|
404
|
-
* @memberof
|
|
1398
|
+
* @type {boolean}
|
|
1399
|
+
* @memberof UpdateExaminationRequest
|
|
405
1400
|
*/
|
|
406
|
-
|
|
1401
|
+
gynecologicalDiseasesInterventions?: boolean;
|
|
407
1402
|
/**
|
|
408
1403
|
*
|
|
409
1404
|
* @type {string}
|
|
410
|
-
* @memberof
|
|
1405
|
+
* @memberof UpdateExaminationRequest
|
|
411
1406
|
*/
|
|
412
|
-
|
|
1407
|
+
gynecologicalDiseasesInterventionsNote?: string;
|
|
413
1408
|
/**
|
|
414
1409
|
*
|
|
415
|
-
* @type {
|
|
416
|
-
* @memberof
|
|
1410
|
+
* @type {boolean}
|
|
1411
|
+
* @memberof UpdateExaminationRequest
|
|
417
1412
|
*/
|
|
418
|
-
|
|
1413
|
+
transplantation?: boolean;
|
|
419
1414
|
/**
|
|
420
1415
|
*
|
|
421
1416
|
* @type {string}
|
|
422
|
-
* @memberof
|
|
1417
|
+
* @memberof UpdateExaminationRequest
|
|
423
1418
|
*/
|
|
424
|
-
|
|
1419
|
+
transplantationNote?: string;
|
|
425
1420
|
/**
|
|
426
1421
|
*
|
|
427
|
-
* @type {
|
|
428
|
-
* @memberof
|
|
1422
|
+
* @type {boolean}
|
|
1423
|
+
* @memberof UpdateExaminationRequest
|
|
429
1424
|
*/
|
|
430
|
-
|
|
1425
|
+
recentInjury?: boolean;
|
|
431
1426
|
/**
|
|
432
1427
|
*
|
|
433
1428
|
* @type {string}
|
|
434
|
-
* @memberof
|
|
1429
|
+
* @memberof UpdateExaminationRequest
|
|
435
1430
|
*/
|
|
436
|
-
|
|
1431
|
+
recentInjuryNote?: string;
|
|
437
1432
|
/**
|
|
438
1433
|
*
|
|
439
|
-
* @type {
|
|
440
|
-
* @memberof
|
|
1434
|
+
* @type {boolean}
|
|
1435
|
+
* @memberof UpdateExaminationRequest
|
|
441
1436
|
*/
|
|
442
|
-
|
|
1437
|
+
KT?: boolean;
|
|
443
1438
|
/**
|
|
444
1439
|
*
|
|
445
1440
|
* @type {string}
|
|
446
|
-
* @memberof
|
|
1441
|
+
* @memberof UpdateExaminationRequest
|
|
447
1442
|
*/
|
|
448
|
-
|
|
1443
|
+
kTNote?: string;
|
|
449
1444
|
/**
|
|
450
1445
|
*
|
|
451
|
-
* @type {
|
|
452
|
-
* @memberof
|
|
1446
|
+
* @type {boolean}
|
|
1447
|
+
* @memberof UpdateExaminationRequest
|
|
453
1448
|
*/
|
|
454
|
-
|
|
1449
|
+
MR?: boolean;
|
|
455
1450
|
/**
|
|
456
1451
|
*
|
|
457
1452
|
* @type {string}
|
|
458
|
-
* @memberof
|
|
1453
|
+
* @memberof UpdateExaminationRequest
|
|
459
1454
|
*/
|
|
460
|
-
|
|
1455
|
+
mRNote?: string;
|
|
461
1456
|
/**
|
|
462
1457
|
*
|
|
463
1458
|
* @type {string}
|
|
464
|
-
* @memberof
|
|
1459
|
+
* @memberof UpdateExaminationRequest
|
|
465
1460
|
*/
|
|
466
|
-
|
|
1461
|
+
nursenamnesis?: string;
|
|
467
1462
|
/**
|
|
468
1463
|
*
|
|
469
|
-
* @type {
|
|
470
|
-
* @memberof
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
* @memberof UpdateExaminationRequest
|
|
471
1466
|
*/
|
|
472
|
-
|
|
473
|
-
}
|
|
474
|
-
/**
|
|
475
|
-
* @export
|
|
476
|
-
* @enum {string}
|
|
477
|
-
*/
|
|
478
|
-
export declare enum GetPatientResponseSexEnum {
|
|
479
|
-
Male = "male",
|
|
480
|
-
Female = "female"
|
|
481
|
-
}
|
|
482
|
-
/**
|
|
483
|
-
*
|
|
484
|
-
* @export
|
|
485
|
-
* @interface InlineObject
|
|
486
|
-
*/
|
|
487
|
-
export interface InlineObject {
|
|
1467
|
+
doctorAnamnesis?: string;
|
|
488
1468
|
/**
|
|
489
1469
|
*
|
|
490
|
-
* @type {
|
|
491
|
-
* @memberof
|
|
1470
|
+
* @type {string}
|
|
1471
|
+
* @memberof UpdateExaminationRequest
|
|
492
1472
|
*/
|
|
493
|
-
|
|
494
|
-
}
|
|
495
|
-
/**
|
|
496
|
-
*
|
|
497
|
-
* @export
|
|
498
|
-
* @interface SendEmailRequest
|
|
499
|
-
*/
|
|
500
|
-
export interface SendEmailRequest {
|
|
1473
|
+
changedBy?: string;
|
|
501
1474
|
/**
|
|
502
1475
|
*
|
|
503
|
-
* @type {
|
|
504
|
-
* @memberof
|
|
1476
|
+
* @type {number}
|
|
1477
|
+
* @memberof UpdateExaminationRequest
|
|
505
1478
|
*/
|
|
506
|
-
|
|
1479
|
+
createdAt?: number;
|
|
507
1480
|
/**
|
|
508
1481
|
*
|
|
509
|
-
* @type {
|
|
510
|
-
* @memberof
|
|
1482
|
+
* @type {number}
|
|
1483
|
+
* @memberof UpdateExaminationRequest
|
|
511
1484
|
*/
|
|
512
|
-
|
|
1485
|
+
updatedAt?: number;
|
|
513
1486
|
}
|
|
514
1487
|
/**
|
|
515
1488
|
*
|
|
@@ -628,7 +1601,26 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
628
1601
|
* @param {*} [options] Override http request option.
|
|
629
1602
|
* @throws {RequiredError}
|
|
630
1603
|
*/
|
|
631
|
-
|
|
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;
|
|
632
1624
|
/**
|
|
633
1625
|
*
|
|
634
1626
|
* @param {string} key The key of the document
|
|
@@ -693,7 +1685,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
693
1685
|
* @param {*} [options] Override http request option.
|
|
694
1686
|
* @throws {RequiredError}
|
|
695
1687
|
*/
|
|
696
|
-
|
|
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>;
|
|
697
1708
|
/**
|
|
698
1709
|
*
|
|
699
1710
|
* @param {string} key The key of the document
|
|
@@ -758,7 +1769,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
758
1769
|
* @param {*} [options] Override http request option.
|
|
759
1770
|
* @throws {RequiredError}
|
|
760
1771
|
*/
|
|
761
|
-
|
|
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>;
|
|
762
1792
|
/**
|
|
763
1793
|
*
|
|
764
1794
|
* @param {string} key The key of the document
|
|
@@ -829,7 +1859,29 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
829
1859
|
* @throws {RequiredError}
|
|
830
1860
|
* @memberof DefaultApi
|
|
831
1861
|
*/
|
|
832
|
-
|
|
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>;
|
|
833
1885
|
/**
|
|
834
1886
|
*
|
|
835
1887
|
* @param {string} key The key of the document
|
|
@@ -874,6 +1926,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
874
1926
|
* @export
|
|
875
1927
|
*/
|
|
876
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;
|
|
877
1937
|
/**
|
|
878
1938
|
* Create a patient
|
|
879
1939
|
* @summary Create patient
|
|
@@ -891,6 +1951,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
891
1951
|
* @throws {RequiredError}
|
|
892
1952
|
*/
|
|
893
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;
|
|
894
1962
|
/**
|
|
895
1963
|
*
|
|
896
1964
|
* @summary Deletes patient
|
|
@@ -910,11 +1978,11 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
910
1978
|
/**
|
|
911
1979
|
*
|
|
912
1980
|
* @summary Download zip with multiple files
|
|
913
|
-
* @param {
|
|
1981
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
914
1982
|
* @param {*} [options] Override http request option.
|
|
915
1983
|
* @throws {RequiredError}
|
|
916
1984
|
*/
|
|
917
|
-
downloadMultipleFiles(
|
|
1985
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): RequestArgs;
|
|
918
1986
|
/**
|
|
919
1987
|
*
|
|
920
1988
|
* @summary Download study dicom
|
|
@@ -923,6 +1991,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
923
1991
|
* @throws {RequiredError}
|
|
924
1992
|
*/
|
|
925
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;
|
|
926
2002
|
/**
|
|
927
2003
|
*
|
|
928
2004
|
* @summary Get data about patients
|
|
@@ -953,6 +2029,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
953
2029
|
* @throws {RequiredError}
|
|
954
2030
|
*/
|
|
955
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;
|
|
956
2040
|
/**
|
|
957
2041
|
*
|
|
958
2042
|
* @summary Get data about patient
|
|
@@ -969,6 +2053,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
969
2053
|
* @throws {RequiredError}
|
|
970
2054
|
*/
|
|
971
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;
|
|
972
2065
|
/**
|
|
973
2066
|
*
|
|
974
2067
|
* @summary Updates the patient
|
|
@@ -978,6 +2071,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
978
2071
|
* @throws {RequiredError}
|
|
979
2072
|
*/
|
|
980
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;
|
|
981
2082
|
/**
|
|
982
2083
|
* Upload medical examination files
|
|
983
2084
|
* @summary Upload documents
|
|
@@ -993,6 +2094,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
993
2094
|
* @export
|
|
994
2095
|
*/
|
|
995
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>;
|
|
996
2105
|
/**
|
|
997
2106
|
* Create a patient
|
|
998
2107
|
* @summary Create patient
|
|
@@ -1010,6 +2119,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1010
2119
|
* @throws {RequiredError}
|
|
1011
2120
|
*/
|
|
1012
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>;
|
|
1013
2130
|
/**
|
|
1014
2131
|
*
|
|
1015
2132
|
* @summary Deletes patient
|
|
@@ -1029,11 +2146,11 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1029
2146
|
/**
|
|
1030
2147
|
*
|
|
1031
2148
|
* @summary Download zip with multiple files
|
|
1032
|
-
* @param {
|
|
2149
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
1033
2150
|
* @param {*} [options] Override http request option.
|
|
1034
2151
|
* @throws {RequiredError}
|
|
1035
2152
|
*/
|
|
1036
|
-
downloadMultipleFiles(
|
|
2153
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadMultipleFilesResponse>;
|
|
1037
2154
|
/**
|
|
1038
2155
|
*
|
|
1039
2156
|
* @summary Download study dicom
|
|
@@ -1042,6 +2159,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1042
2159
|
* @throws {RequiredError}
|
|
1043
2160
|
*/
|
|
1044
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>>;
|
|
1045
2170
|
/**
|
|
1046
2171
|
*
|
|
1047
2172
|
* @summary Get data about patients
|
|
@@ -1072,6 +2197,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1072
2197
|
* @throws {RequiredError}
|
|
1073
2198
|
*/
|
|
1074
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>;
|
|
1075
2208
|
/**
|
|
1076
2209
|
*
|
|
1077
2210
|
* @summary Get data about patient
|
|
@@ -1088,6 +2221,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1088
2221
|
* @throws {RequiredError}
|
|
1089
2222
|
*/
|
|
1090
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>;
|
|
1091
2233
|
/**
|
|
1092
2234
|
*
|
|
1093
2235
|
* @summary Updates the patient
|
|
@@ -1097,6 +2239,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1097
2239
|
* @throws {RequiredError}
|
|
1098
2240
|
*/
|
|
1099
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>;
|
|
1100
2250
|
/**
|
|
1101
2251
|
* Upload medical examination files
|
|
1102
2252
|
* @summary Upload documents
|
|
@@ -1112,6 +2262,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
|
|
|
1112
2262
|
* @export
|
|
1113
2263
|
*/
|
|
1114
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>;
|
|
1115
2273
|
/**
|
|
1116
2274
|
* Create a patient
|
|
1117
2275
|
* @summary Create patient
|
|
@@ -1129,6 +2287,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1129
2287
|
* @throws {RequiredError}
|
|
1130
2288
|
*/
|
|
1131
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>;
|
|
1132
2298
|
/**
|
|
1133
2299
|
*
|
|
1134
2300
|
* @summary Deletes patient
|
|
@@ -1148,11 +2314,11 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1148
2314
|
/**
|
|
1149
2315
|
*
|
|
1150
2316
|
* @summary Download zip with multiple files
|
|
1151
|
-
* @param {
|
|
2317
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
1152
2318
|
* @param {*} [options] Override http request option.
|
|
1153
2319
|
* @throws {RequiredError}
|
|
1154
2320
|
*/
|
|
1155
|
-
downloadMultipleFiles(
|
|
2321
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
|
|
1156
2322
|
/**
|
|
1157
2323
|
*
|
|
1158
2324
|
* @summary Download study dicom
|
|
@@ -1161,6 +2327,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1161
2327
|
* @throws {RequiredError}
|
|
1162
2328
|
*/
|
|
1163
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[]>;
|
|
1164
2338
|
/**
|
|
1165
2339
|
*
|
|
1166
2340
|
* @summary Get data about patients
|
|
@@ -1191,6 +2365,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1191
2365
|
* @throws {RequiredError}
|
|
1192
2366
|
*/
|
|
1193
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>;
|
|
1194
2376
|
/**
|
|
1195
2377
|
*
|
|
1196
2378
|
* @summary Get data about patient
|
|
@@ -1207,6 +2389,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1207
2389
|
* @throws {RequiredError}
|
|
1208
2390
|
*/
|
|
1209
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>;
|
|
1210
2401
|
/**
|
|
1211
2402
|
*
|
|
1212
2403
|
* @summary Updates the patient
|
|
@@ -1216,6 +2407,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1216
2407
|
* @throws {RequiredError}
|
|
1217
2408
|
*/
|
|
1218
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>;
|
|
1219
2418
|
/**
|
|
1220
2419
|
* Upload medical examination files
|
|
1221
2420
|
* @summary Upload documents
|
|
@@ -1233,6 +2432,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1233
2432
|
* @extends {BaseAPI}
|
|
1234
2433
|
*/
|
|
1235
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>;
|
|
1236
2444
|
/**
|
|
1237
2445
|
* Create a patient
|
|
1238
2446
|
* @summary Create patient
|
|
@@ -1252,6 +2460,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1252
2460
|
* @memberof MsPetApi
|
|
1253
2461
|
*/
|
|
1254
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>;
|
|
1255
2472
|
/**
|
|
1256
2473
|
*
|
|
1257
2474
|
* @summary Deletes patient
|
|
@@ -1273,12 +2490,12 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1273
2490
|
/**
|
|
1274
2491
|
*
|
|
1275
2492
|
* @summary Download zip with multiple files
|
|
1276
|
-
* @param {
|
|
2493
|
+
* @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
|
|
1277
2494
|
* @param {*} [options] Override http request option.
|
|
1278
2495
|
* @throws {RequiredError}
|
|
1279
2496
|
* @memberof MsPetApi
|
|
1280
2497
|
*/
|
|
1281
|
-
downloadMultipleFiles(
|
|
2498
|
+
downloadMultipleFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
|
|
1282
2499
|
/**
|
|
1283
2500
|
*
|
|
1284
2501
|
* @summary Download study dicom
|
|
@@ -1288,6 +2505,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1288
2505
|
* @memberof MsPetApi
|
|
1289
2506
|
*/
|
|
1290
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[]>;
|
|
1291
2517
|
/**
|
|
1292
2518
|
*
|
|
1293
2519
|
* @summary Get data about patients
|
|
@@ -1322,6 +2548,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1322
2548
|
* @memberof MsPetApi
|
|
1323
2549
|
*/
|
|
1324
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>;
|
|
1325
2560
|
/**
|
|
1326
2561
|
*
|
|
1327
2562
|
* @summary Get data about patient
|
|
@@ -1340,6 +2575,16 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1340
2575
|
* @memberof MsPetApi
|
|
1341
2576
|
*/
|
|
1342
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>;
|
|
1343
2588
|
/**
|
|
1344
2589
|
*
|
|
1345
2590
|
* @summary Updates the patient
|
|
@@ -1350,6 +2595,15 @@ export declare class MsPetApi extends BaseAPI {
|
|
|
1350
2595
|
* @memberof MsPetApi
|
|
1351
2596
|
*/
|
|
1352
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>;
|
|
1353
2607
|
/**
|
|
1354
2608
|
* Upload medical examination files
|
|
1355
2609
|
* @summary Upload documents
|