pet-backend-sdk 0.30.0 → 0.35.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 CHANGED
@@ -287,7 +287,7 @@ export interface CreateExaminationRequest {
287
287
  * @type {string}
288
288
  * @memberof CreateExaminationRequest
289
289
  */
290
- nursenamnesis?: string;
290
+ nurseAnamnesis?: string;
291
291
  /**
292
292
  *
293
293
  * @type {string}
@@ -670,74 +670,6 @@ export interface GetAllStudiesResponseStudies {
670
670
  */
671
671
  type: string;
672
672
  }
673
- /**
674
- *
675
- * @export
676
- * @interface GetDocumentsResponse
677
- */
678
- export interface GetDocumentsResponse {
679
- /**
680
- *
681
- * @type {string}
682
- * @memberof GetDocumentsResponse
683
- */
684
- url: string;
685
- /**
686
- *
687
- * @type {string}
688
- * @memberof GetDocumentsResponse
689
- */
690
- key?: string;
691
- /**
692
- *
693
- * @type {string}
694
- * @memberof GetDocumentsResponse
695
- */
696
- lastModified?: string;
697
- /**
698
- *
699
- * @type {string}
700
- * @memberof GetDocumentsResponse
701
- */
702
- eTag?: string;
703
- /**
704
- *
705
- * @type {number}
706
- * @memberof GetDocumentsResponse
707
- */
708
- size?: number;
709
- /**
710
- *
711
- * @type {string}
712
- * @memberof GetDocumentsResponse
713
- */
714
- storageClass?: string;
715
- /**
716
- *
717
- * @type {GetDocumentsResponseOwner}
718
- * @memberof GetDocumentsResponse
719
- */
720
- owner?: GetDocumentsResponseOwner;
721
- }
722
- /**
723
- *
724
- * @export
725
- * @interface GetDocumentsResponseOwner
726
- */
727
- export interface GetDocumentsResponseOwner {
728
- /**
729
- *
730
- * @type {string}
731
- * @memberof GetDocumentsResponseOwner
732
- */
733
- displayName?: string;
734
- /**
735
- *
736
- * @type {string}
737
- * @memberof GetDocumentsResponseOwner
738
- */
739
- ID?: string;
740
- }
741
673
  /**
742
674
  *
743
675
  * @export
@@ -1019,7 +951,7 @@ export interface GetExaminationResponse {
1019
951
  * @type {string}
1020
952
  * @memberof GetExaminationResponse
1021
953
  */
1022
- nursenamnesis?: string;
954
+ nurseAnamnesis?: string;
1023
955
  /**
1024
956
  *
1025
957
  * @type {string}
@@ -1164,6 +1096,19 @@ export interface InlineObject1 {
1164
1096
  */
1165
1097
  files?: Array<any>;
1166
1098
  }
1099
+ /**
1100
+ *
1101
+ * @export
1102
+ * @interface InlineObject2
1103
+ */
1104
+ export interface InlineObject2 {
1105
+ /**
1106
+ *
1107
+ * @type {Array<any>}
1108
+ * @memberof InlineObject2
1109
+ */
1110
+ files?: Array<any>;
1111
+ }
1167
1112
  /**
1168
1113
  *
1169
1114
  * @export
@@ -1458,7 +1403,7 @@ export interface UpdateExaminationRequest {
1458
1403
  * @type {string}
1459
1404
  * @memberof UpdateExaminationRequest
1460
1405
  */
1461
- nursenamnesis?: string;
1406
+ nurseAnamnesis?: string;
1462
1407
  /**
1463
1408
  *
1464
1409
  * @type {string}
@@ -1602,6 +1547,26 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1602
1547
  * @throws {RequiredError}
1603
1548
  */
1604
1549
  dicomUploadOptions(options?: any): RequestArgs;
1550
+ /**
1551
+ *
1552
+ * @param {*} [options] Override http request option.
1553
+ * @throws {RequiredError}
1554
+ */
1555
+ examinationDocumentsDownloadMultipleOptions(options?: any): RequestArgs;
1556
+ /**
1557
+ *
1558
+ * @param {string} key The key of the document
1559
+ * @param {*} [options] Override http request option.
1560
+ * @throws {RequiredError}
1561
+ */
1562
+ examinationDocumentsKeyDownloadOptions(key: string, options?: any): RequestArgs;
1563
+ /**
1564
+ *
1565
+ * @param {string} id The id of the examination
1566
+ * @param {*} [options] Override http request option.
1567
+ * @throws {RequiredError}
1568
+ */
1569
+ examinationIdDocumentsOptions(id: string, options?: any): RequestArgs;
1605
1570
  /**
1606
1571
  *
1607
1572
  * @param {string} id The id of the examination
@@ -1686,6 +1651,26 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1686
1651
  * @throws {RequiredError}
1687
1652
  */
1688
1653
  dicomUploadOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
1654
+ /**
1655
+ *
1656
+ * @param {*} [options] Override http request option.
1657
+ * @throws {RequiredError}
1658
+ */
1659
+ examinationDocumentsDownloadMultipleOptions(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
1660
+ /**
1661
+ *
1662
+ * @param {string} key The key of the document
1663
+ * @param {*} [options] Override http request option.
1664
+ * @throws {RequiredError}
1665
+ */
1666
+ examinationDocumentsKeyDownloadOptions(key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
1667
+ /**
1668
+ *
1669
+ * @param {string} id The id of the examination
1670
+ * @param {*} [options] Override http request option.
1671
+ * @throws {RequiredError}
1672
+ */
1673
+ examinationIdDocumentsOptions(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>;
1689
1674
  /**
1690
1675
  *
1691
1676
  * @param {string} id The id of the examination
@@ -1770,6 +1755,26 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1770
1755
  * @throws {RequiredError}
1771
1756
  */
1772
1757
  dicomUploadOptions(options?: any): AxiosPromise<void>;
1758
+ /**
1759
+ *
1760
+ * @param {*} [options] Override http request option.
1761
+ * @throws {RequiredError}
1762
+ */
1763
+ examinationDocumentsDownloadMultipleOptions(options?: any): AxiosPromise<void>;
1764
+ /**
1765
+ *
1766
+ * @param {string} key The key of the document
1767
+ * @param {*} [options] Override http request option.
1768
+ * @throws {RequiredError}
1769
+ */
1770
+ examinationDocumentsKeyDownloadOptions(key: string, options?: any): AxiosPromise<void>;
1771
+ /**
1772
+ *
1773
+ * @param {string} id The id of the examination
1774
+ * @param {*} [options] Override http request option.
1775
+ * @throws {RequiredError}
1776
+ */
1777
+ examinationIdDocumentsOptions(id: string, options?: any): AxiosPromise<void>;
1773
1778
  /**
1774
1779
  *
1775
1780
  * @param {string} id The id of the examination
@@ -1860,6 +1865,29 @@ export declare class DefaultApi extends BaseAPI {
1860
1865
  * @memberof DefaultApi
1861
1866
  */
1862
1867
  dicomUploadOptions(options?: any): AxiosPromise<void>;
1868
+ /**
1869
+ *
1870
+ * @param {*} [options] Override http request option.
1871
+ * @throws {RequiredError}
1872
+ * @memberof DefaultApi
1873
+ */
1874
+ examinationDocumentsDownloadMultipleOptions(options?: any): AxiosPromise<void>;
1875
+ /**
1876
+ *
1877
+ * @param {string} key The key of the document
1878
+ * @param {*} [options] Override http request option.
1879
+ * @throws {RequiredError}
1880
+ * @memberof DefaultApi
1881
+ */
1882
+ examinationDocumentsKeyDownloadOptions(key: string, options?: any): AxiosPromise<void>;
1883
+ /**
1884
+ *
1885
+ * @param {string} id The id of the examination
1886
+ * @param {*} [options] Override http request option.
1887
+ * @throws {RequiredError}
1888
+ * @memberof DefaultApi
1889
+ */
1890
+ examinationIdDocumentsOptions(id: string, options?: any): AxiosPromise<void>;
1863
1891
  /**
1864
1892
  *
1865
1893
  * @param {string} id The id of the examination
@@ -1959,6 +1987,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
1959
1987
  * @throws {RequiredError}
1960
1988
  */
1961
1989
  deleteExamination(id: string, options?: any): RequestArgs;
1990
+ /**
1991
+ *
1992
+ * @summary Deletes document
1993
+ * @param {string} id The id of the examination
1994
+ * @param {string} key The key of the document
1995
+ * @param {*} [options] Override http request option.
1996
+ * @throws {RequiredError}
1997
+ */
1998
+ deleteExaminationDocument(id: string, key: string, options?: any): RequestArgs;
1962
1999
  /**
1963
2000
  *
1964
2001
  * @summary Deletes patient
@@ -1975,6 +2012,22 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
1975
2012
  * @throws {RequiredError}
1976
2013
  */
1977
2014
  downloadDocument(key: string, options?: any): RequestArgs;
2015
+ /**
2016
+ *
2017
+ * @summary Download the document
2018
+ * @param {string} key The key of the document
2019
+ * @param {*} [options] Override http request option.
2020
+ * @throws {RequiredError}
2021
+ */
2022
+ downloadExaminationDocument(key: string, options?: any): RequestArgs;
2023
+ /**
2024
+ *
2025
+ * @summary Download zip with multiple files
2026
+ * @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
2027
+ * @param {*} [options] Override http request option.
2028
+ * @throws {RequiredError}
2029
+ */
2030
+ downloadExaminationFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): RequestArgs;
1978
2031
  /**
1979
2032
  *
1980
2033
  * @summary Download zip with multiple files
@@ -2037,6 +2090,14 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
2037
2090
  * @throws {RequiredError}
2038
2091
  */
2039
2092
  getExamination(id: string, options?: any): RequestArgs;
2093
+ /**
2094
+ *
2095
+ * @summary Get data about documents
2096
+ * @param {string} id The id of the examination
2097
+ * @param {*} [options] Override http request option.
2098
+ * @throws {RequiredError}
2099
+ */
2100
+ getExaminationDocuments(id: string, options?: any): RequestArgs;
2040
2101
  /**
2041
2102
  *
2042
2103
  * @summary Get data about patient
@@ -2053,6 +2114,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
2053
2114
  * @throws {RequiredError}
2054
2115
  */
2055
2116
  sendEmail(sendEmailRequest: SendEmailRequest, options?: any): RequestArgs;
2117
+ /**
2118
+ * Change type of a document
2119
+ * @summary Change document type
2120
+ * @param {string} id The id of the patient
2121
+ * @param {string} type The type of the document
2122
+ * @param {*} [options] Override http request option.
2123
+ * @throws {RequiredError}
2124
+ */
2125
+ setDocumentType(id: string, type: string, options?: any): RequestArgs;
2056
2126
  /**
2057
2127
  *
2058
2128
  * @summary Updates the examination
@@ -2088,6 +2158,15 @@ export declare const MsPetApiAxiosParamCreator: (configuration?: Configuration)
2088
2158
  * @throws {RequiredError}
2089
2159
  */
2090
2160
  uploadDocuments(id: string, files?: Array<any>, options?: any): RequestArgs;
2161
+ /**
2162
+ * Upload medical examination files
2163
+ * @summary Upload documents
2164
+ * @param {string} id The id of the examination
2165
+ * @param {Array<any>} [files]
2166
+ * @param {*} [options] Override http request option.
2167
+ * @throws {RequiredError}
2168
+ */
2169
+ uploadExaminationDocuments(id: string, files?: Array<any>, options?: any): RequestArgs;
2091
2170
  };
2092
2171
  /**
2093
2172
  * MsPetApi - functional programming interface
@@ -2127,6 +2206,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2127
2206
  * @throws {RequiredError}
2128
2207
  */
2129
2208
  deleteExamination(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2209
+ /**
2210
+ *
2211
+ * @summary Deletes document
2212
+ * @param {string} id The id of the examination
2213
+ * @param {string} key The key of the document
2214
+ * @param {*} [options] Override http request option.
2215
+ * @throws {RequiredError}
2216
+ */
2217
+ deleteExaminationDocument(id: string, key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2130
2218
  /**
2131
2219
  *
2132
2220
  * @summary Deletes patient
@@ -2143,6 +2231,22 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2143
2231
  * @throws {RequiredError}
2144
2232
  */
2145
2233
  downloadDocument(key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadDocumentResponse>;
2234
+ /**
2235
+ *
2236
+ * @summary Download the document
2237
+ * @param {string} key The key of the document
2238
+ * @param {*} [options] Override http request option.
2239
+ * @throws {RequiredError}
2240
+ */
2241
+ downloadExaminationDocument(key: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadDocumentResponse>;
2242
+ /**
2243
+ *
2244
+ * @summary Download zip with multiple files
2245
+ * @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
2246
+ * @param {*} [options] Override http request option.
2247
+ * @throws {RequiredError}
2248
+ */
2249
+ downloadExaminationFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadMultipleFilesResponse>;
2146
2250
  /**
2147
2251
  *
2148
2252
  * @summary Download zip with multiple files
@@ -2196,7 +2300,7 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2196
2300
  * @param {*} [options] Override http request option.
2197
2301
  * @throws {RequiredError}
2198
2302
  */
2199
- getDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDocumentsResponse>;
2303
+ getDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>;
2200
2304
  /**
2201
2305
  *
2202
2306
  * @summary Get data about Examination
@@ -2205,6 +2309,14 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2205
2309
  * @throws {RequiredError}
2206
2310
  */
2207
2311
  getExamination(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetExaminationResponse>;
2312
+ /**
2313
+ *
2314
+ * @summary Get data about documents
2315
+ * @param {string} id The id of the examination
2316
+ * @param {*} [options] Override http request option.
2317
+ * @throws {RequiredError}
2318
+ */
2319
+ getExaminationDocuments(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>;
2208
2320
  /**
2209
2321
  *
2210
2322
  * @summary Get data about patient
@@ -2221,6 +2333,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2221
2333
  * @throws {RequiredError}
2222
2334
  */
2223
2335
  sendEmail(sendEmailRequest: SendEmailRequest, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2336
+ /**
2337
+ * Change type of a document
2338
+ * @summary Change document type
2339
+ * @param {string} id The id of the patient
2340
+ * @param {string} type The type of the document
2341
+ * @param {*} [options] Override http request option.
2342
+ * @throws {RequiredError}
2343
+ */
2344
+ setDocumentType(id: string, type: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2224
2345
  /**
2225
2346
  *
2226
2347
  * @summary Updates the examination
@@ -2256,6 +2377,15 @@ export declare const MsPetApiFp: (configuration?: Configuration) => {
2256
2377
  * @throws {RequiredError}
2257
2378
  */
2258
2379
  uploadDocuments(id: string, files?: Array<any>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2380
+ /**
2381
+ * Upload medical examination files
2382
+ * @summary Upload documents
2383
+ * @param {string} id The id of the examination
2384
+ * @param {Array<any>} [files]
2385
+ * @param {*} [options] Override http request option.
2386
+ * @throws {RequiredError}
2387
+ */
2388
+ uploadExaminationDocuments(id: string, files?: Array<any>, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoneResult>;
2259
2389
  };
2260
2390
  /**
2261
2391
  * MsPetApi - factory interface
@@ -2295,6 +2425,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2295
2425
  * @throws {RequiredError}
2296
2426
  */
2297
2427
  deleteExamination(id: string, options?: any): AxiosPromise<DoneResult>;
2428
+ /**
2429
+ *
2430
+ * @summary Deletes document
2431
+ * @param {string} id The id of the examination
2432
+ * @param {string} key The key of the document
2433
+ * @param {*} [options] Override http request option.
2434
+ * @throws {RequiredError}
2435
+ */
2436
+ deleteExaminationDocument(id: string, key: string, options?: any): AxiosPromise<DoneResult>;
2298
2437
  /**
2299
2438
  *
2300
2439
  * @summary Deletes patient
@@ -2311,6 +2450,22 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2311
2450
  * @throws {RequiredError}
2312
2451
  */
2313
2452
  downloadDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
2453
+ /**
2454
+ *
2455
+ * @summary Download the document
2456
+ * @param {string} key The key of the document
2457
+ * @param {*} [options] Override http request option.
2458
+ * @throws {RequiredError}
2459
+ */
2460
+ downloadExaminationDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
2461
+ /**
2462
+ *
2463
+ * @summary Download zip with multiple files
2464
+ * @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
2465
+ * @param {*} [options] Override http request option.
2466
+ * @throws {RequiredError}
2467
+ */
2468
+ downloadExaminationFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
2314
2469
  /**
2315
2470
  *
2316
2471
  * @summary Download zip with multiple files
@@ -2364,7 +2519,7 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2364
2519
  * @param {*} [options] Override http request option.
2365
2520
  * @throws {RequiredError}
2366
2521
  */
2367
- getDocuments(id: string, options?: any): AxiosPromise<GetDocumentsResponse>;
2522
+ getDocuments(id: string, options?: any): AxiosPromise<object[]>;
2368
2523
  /**
2369
2524
  *
2370
2525
  * @summary Get data about Examination
@@ -2373,6 +2528,14 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2373
2528
  * @throws {RequiredError}
2374
2529
  */
2375
2530
  getExamination(id: string, options?: any): AxiosPromise<GetExaminationResponse>;
2531
+ /**
2532
+ *
2533
+ * @summary Get data about documents
2534
+ * @param {string} id The id of the examination
2535
+ * @param {*} [options] Override http request option.
2536
+ * @throws {RequiredError}
2537
+ */
2538
+ getExaminationDocuments(id: string, options?: any): AxiosPromise<object[]>;
2376
2539
  /**
2377
2540
  *
2378
2541
  * @summary Get data about patient
@@ -2389,6 +2552,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2389
2552
  * @throws {RequiredError}
2390
2553
  */
2391
2554
  sendEmail(sendEmailRequest: SendEmailRequest, options?: any): AxiosPromise<DoneResult>;
2555
+ /**
2556
+ * Change type of a document
2557
+ * @summary Change document type
2558
+ * @param {string} id The id of the patient
2559
+ * @param {string} type The type of the document
2560
+ * @param {*} [options] Override http request option.
2561
+ * @throws {RequiredError}
2562
+ */
2563
+ setDocumentType(id: string, type: string, options?: any): AxiosPromise<DoneResult>;
2392
2564
  /**
2393
2565
  *
2394
2566
  * @summary Updates the examination
@@ -2424,6 +2596,15 @@ export declare const MsPetApiFactory: (configuration?: Configuration, basePath?:
2424
2596
  * @throws {RequiredError}
2425
2597
  */
2426
2598
  uploadDocuments(id: string, files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
2599
+ /**
2600
+ * Upload medical examination files
2601
+ * @summary Upload documents
2602
+ * @param {string} id The id of the examination
2603
+ * @param {Array<any>} [files]
2604
+ * @param {*} [options] Override http request option.
2605
+ * @throws {RequiredError}
2606
+ */
2607
+ uploadExaminationDocuments(id: string, files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
2427
2608
  };
2428
2609
  /**
2429
2610
  * MsPetApi - object-oriented interface
@@ -2469,6 +2650,16 @@ export declare class MsPetApi extends BaseAPI {
2469
2650
  * @memberof MsPetApi
2470
2651
  */
2471
2652
  deleteExamination(id: string, options?: any): AxiosPromise<DoneResult>;
2653
+ /**
2654
+ *
2655
+ * @summary Deletes document
2656
+ * @param {string} id The id of the examination
2657
+ * @param {string} key The key of the document
2658
+ * @param {*} [options] Override http request option.
2659
+ * @throws {RequiredError}
2660
+ * @memberof MsPetApi
2661
+ */
2662
+ deleteExaminationDocument(id: string, key: string, options?: any): AxiosPromise<DoneResult>;
2472
2663
  /**
2473
2664
  *
2474
2665
  * @summary Deletes patient
@@ -2487,6 +2678,24 @@ export declare class MsPetApi extends BaseAPI {
2487
2678
  * @memberof MsPetApi
2488
2679
  */
2489
2680
  downloadDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
2681
+ /**
2682
+ *
2683
+ * @summary Download the document
2684
+ * @param {string} key The key of the document
2685
+ * @param {*} [options] Override http request option.
2686
+ * @throws {RequiredError}
2687
+ * @memberof MsPetApi
2688
+ */
2689
+ downloadExaminationDocument(key: string, options?: any): AxiosPromise<DownloadDocumentResponse>;
2690
+ /**
2691
+ *
2692
+ * @summary Download zip with multiple files
2693
+ * @param {DownloadMultipleFilesRequest} downloadMultipleFilesRequest
2694
+ * @param {*} [options] Override http request option.
2695
+ * @throws {RequiredError}
2696
+ * @memberof MsPetApi
2697
+ */
2698
+ downloadExaminationFiles(downloadMultipleFilesRequest: DownloadMultipleFilesRequest, options?: any): AxiosPromise<DownloadMultipleFilesResponse>;
2490
2699
  /**
2491
2700
  *
2492
2701
  * @summary Download zip with multiple files
@@ -2547,7 +2756,7 @@ export declare class MsPetApi extends BaseAPI {
2547
2756
  * @throws {RequiredError}
2548
2757
  * @memberof MsPetApi
2549
2758
  */
2550
- getDocuments(id: string, options?: any): AxiosPromise<GetDocumentsResponse>;
2759
+ getDocuments(id: string, options?: any): AxiosPromise<object[]>;
2551
2760
  /**
2552
2761
  *
2553
2762
  * @summary Get data about Examination
@@ -2557,6 +2766,15 @@ export declare class MsPetApi extends BaseAPI {
2557
2766
  * @memberof MsPetApi
2558
2767
  */
2559
2768
  getExamination(id: string, options?: any): AxiosPromise<GetExaminationResponse>;
2769
+ /**
2770
+ *
2771
+ * @summary Get data about documents
2772
+ * @param {string} id The id of the examination
2773
+ * @param {*} [options] Override http request option.
2774
+ * @throws {RequiredError}
2775
+ * @memberof MsPetApi
2776
+ */
2777
+ getExaminationDocuments(id: string, options?: any): AxiosPromise<object[]>;
2560
2778
  /**
2561
2779
  *
2562
2780
  * @summary Get data about patient
@@ -2575,6 +2793,16 @@ export declare class MsPetApi extends BaseAPI {
2575
2793
  * @memberof MsPetApi
2576
2794
  */
2577
2795
  sendEmail(sendEmailRequest: SendEmailRequest, options?: any): AxiosPromise<DoneResult>;
2796
+ /**
2797
+ * Change type of a document
2798
+ * @summary Change document type
2799
+ * @param {string} id The id of the patient
2800
+ * @param {string} type The type of the document
2801
+ * @param {*} [options] Override http request option.
2802
+ * @throws {RequiredError}
2803
+ * @memberof MsPetApi
2804
+ */
2805
+ setDocumentType(id: string, type: string, options?: any): AxiosPromise<DoneResult>;
2578
2806
  /**
2579
2807
  *
2580
2808
  * @summary Updates the examination
@@ -2614,4 +2842,14 @@ export declare class MsPetApi extends BaseAPI {
2614
2842
  * @memberof MsPetApi
2615
2843
  */
2616
2844
  uploadDocuments(id: string, files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
2845
+ /**
2846
+ * Upload medical examination files
2847
+ * @summary Upload documents
2848
+ * @param {string} id The id of the examination
2849
+ * @param {Array<any>} [files]
2850
+ * @param {*} [options] Override http request option.
2851
+ * @throws {RequiredError}
2852
+ * @memberof MsPetApi
2853
+ */
2854
+ uploadExaminationDocuments(id: string, files?: Array<any>, options?: any): AxiosPromise<DoneResult>;
2617
2855
  }