ch-admin-api-client-typescript 5.2.3 → 5.2.4

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.
Files changed (36) hide show
  1. package/lib/api/hospitals-api.d.ts +431 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +614 -0
  4. package/lib/models/index.d.ts +5 -0
  5. package/lib/models/index.d.ts.map +1 -1
  6. package/lib/models/index.js +5 -0
  7. package/lib/models/secure-container-item-model.d.ts +67 -0
  8. package/lib/models/secure-container-item-model.d.ts.map +1 -0
  9. package/lib/models/secure-container-item-model.js +15 -0
  10. package/lib/models/secure-container-model.d.ts +74 -0
  11. package/lib/models/secure-container-model.d.ts.map +1 -0
  12. package/lib/models/secure-container-model.js +15 -0
  13. package/lib/models/secure-containers-model.d.ts +33 -0
  14. package/lib/models/secure-containers-model.d.ts.map +1 -0
  15. package/lib/models/secure-containers-model.js +15 -0
  16. package/lib/models/secure-file-model.d.ts +86 -0
  17. package/lib/models/secure-file-model.d.ts.map +1 -0
  18. package/lib/models/secure-file-model.js +15 -0
  19. package/lib/models/survey-result-item-model.d.ts +81 -0
  20. package/lib/models/survey-result-item-model.d.ts.map +1 -0
  21. package/lib/models/survey-result-item-model.js +15 -0
  22. package/lib/models/survey-result-model.d.ts +6 -6
  23. package/lib/models/survey-result-model.d.ts.map +1 -1
  24. package/lib/models/survey-results-model.d.ts +3 -3
  25. package/lib/models/survey-results-model.d.ts.map +1 -1
  26. package/package.json +1 -1
  27. package/src/.openapi-generator/FILES +5 -0
  28. package/src/api/hospitals-api.ts +754 -6
  29. package/src/models/index.ts +5 -0
  30. package/src/models/secure-container-item-model.ts +72 -0
  31. package/src/models/secure-container-model.ts +81 -0
  32. package/src/models/secure-containers-model.ts +42 -0
  33. package/src/models/secure-file-model.ts +93 -0
  34. package/src/models/survey-result-item-model.ts +90 -0
  35. package/src/models/survey-result-model.ts +6 -6
  36. package/src/models/survey-results-model.ts +3 -3
@@ -61,6 +61,8 @@ import { SaveAppointmentTimetableOverridesResultModel } from '../models';
61
61
  import { SaveHospitalAppointmentTimetableOverridesCommand } from '../models';
62
62
  import { SaveHospitalSpecialtyAppointmentTimetableOverridesCommand } from '../models';
63
63
  import { SaveServiceAppointmentTimetableOverridesCommand } from '../models';
64
+ import { SecureContainerModel } from '../models';
65
+ import { SecureContainersModel } from '../models';
64
66
  import { SnsHandleModel } from '../models';
65
67
  import { SnsType } from '../models';
66
68
  import { TranslateHospitalCommand } from '../models';
@@ -662,6 +664,71 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
662
664
  * @throws {RequiredError}
663
665
  */
664
666
  apiV1HospitalsHospitalIdRevalidatePost: (hospitalId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
667
+ /**
668
+ *
669
+ * @summary Delete secure file container
670
+ * @param {string} hospitalId
671
+ * @param {string} containerId
672
+ * @param {*} [options] Override http request option.
673
+ * @throws {RequiredError}
674
+ */
675
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete: (hospitalId: string, containerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
676
+ /**
677
+ *
678
+ * @summary Get file content
679
+ * @param {string} hospitalId
680
+ * @param {string} containerId
681
+ * @param {string} fileId
682
+ * @param {*} [options] Override http request option.
683
+ * @throws {RequiredError}
684
+ */
685
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet: (hospitalId: string, containerId: string, fileId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
686
+ /**
687
+ *
688
+ * @summary Get secure file url with read access
689
+ * @param {string} hospitalId
690
+ * @param {string} containerId
691
+ * @param {string} fileId
692
+ * @param {number} [minutesAvailableUntil]
693
+ * @param {*} [options] Override http request option.
694
+ * @throws {RequiredError}
695
+ */
696
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet: (hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
697
+ /**
698
+ *
699
+ * @summary Get secure container
700
+ * @param {string} hospitalId
701
+ * @param {string} containerId
702
+ * @param {string} [languageCode]
703
+ * @param {*} [options] Override http request option.
704
+ * @throws {RequiredError}
705
+ */
706
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdGet: (hospitalId: string, containerId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
707
+ /**
708
+ *
709
+ * @summary Get secure containers
710
+ * @param {string} hospitalId
711
+ * @param {string} [id]
712
+ * @param {string} [languageCode]
713
+ * @param {boolean} [showHidden]
714
+ * @param {string} [userName]
715
+ * @param {string} [userEmail]
716
+ * @param {string} [userId]
717
+ * @param {number} [page]
718
+ * @param {number} [limit]
719
+ * @param {Date} [lastRetrieved]
720
+ * @param {*} [options] Override http request option.
721
+ * @throws {RequiredError}
722
+ */
723
+ apiV1HospitalsHospitalIdSecurecontainersGet: (hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
724
+ /**
725
+ *
726
+ * @summary Create secure file container
727
+ * @param {string} hospitalId
728
+ * @param {*} [options] Override http request option.
729
+ * @throws {RequiredError}
730
+ */
731
+ apiV1HospitalsHospitalIdSecurecontainersPost: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
665
732
  /**
666
733
  *
667
734
  * @summary Get all HospitalSpecialties.
@@ -1765,6 +1832,71 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1765
1832
  * @throws {RequiredError}
1766
1833
  */
1767
1834
  apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1835
+ /**
1836
+ *
1837
+ * @summary Delete secure file container
1838
+ * @param {string} hospitalId
1839
+ * @param {string} containerId
1840
+ * @param {*} [options] Override http request option.
1841
+ * @throws {RequiredError}
1842
+ */
1843
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1844
+ /**
1845
+ *
1846
+ * @summary Get file content
1847
+ * @param {string} hospitalId
1848
+ * @param {string} containerId
1849
+ * @param {string} fileId
1850
+ * @param {*} [options] Override http request option.
1851
+ * @throws {RequiredError}
1852
+ */
1853
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1854
+ /**
1855
+ *
1856
+ * @summary Get secure file url with read access
1857
+ * @param {string} hospitalId
1858
+ * @param {string} containerId
1859
+ * @param {string} fileId
1860
+ * @param {number} [minutesAvailableUntil]
1861
+ * @param {*} [options] Override http request option.
1862
+ * @throws {RequiredError}
1863
+ */
1864
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
1865
+ /**
1866
+ *
1867
+ * @summary Get secure container
1868
+ * @param {string} hospitalId
1869
+ * @param {string} containerId
1870
+ * @param {string} [languageCode]
1871
+ * @param {*} [options] Override http request option.
1872
+ * @throws {RequiredError}
1873
+ */
1874
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>>;
1875
+ /**
1876
+ *
1877
+ * @summary Get secure containers
1878
+ * @param {string} hospitalId
1879
+ * @param {string} [id]
1880
+ * @param {string} [languageCode]
1881
+ * @param {boolean} [showHidden]
1882
+ * @param {string} [userName]
1883
+ * @param {string} [userEmail]
1884
+ * @param {string} [userId]
1885
+ * @param {number} [page]
1886
+ * @param {number} [limit]
1887
+ * @param {Date} [lastRetrieved]
1888
+ * @param {*} [options] Override http request option.
1889
+ * @throws {RequiredError}
1890
+ */
1891
+ apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainersModel>>;
1892
+ /**
1893
+ *
1894
+ * @summary Create secure file container
1895
+ * @param {string} hospitalId
1896
+ * @param {*} [options] Override http request option.
1897
+ * @throws {RequiredError}
1898
+ */
1899
+ apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>>;
1768
1900
  /**
1769
1901
  *
1770
1902
  * @summary Get all HospitalSpecialties.
@@ -2868,6 +3000,71 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
2868
3000
  * @throws {RequiredError}
2869
3001
  */
2870
3002
  apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
3003
+ /**
3004
+ *
3005
+ * @summary Delete secure file container
3006
+ * @param {string} hospitalId
3007
+ * @param {string} containerId
3008
+ * @param {*} [options] Override http request option.
3009
+ * @throws {RequiredError}
3010
+ */
3011
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: any): AxiosPromise<boolean>;
3012
+ /**
3013
+ *
3014
+ * @summary Get file content
3015
+ * @param {string} hospitalId
3016
+ * @param {string} containerId
3017
+ * @param {string} fileId
3018
+ * @param {*} [options] Override http request option.
3019
+ * @throws {RequiredError}
3020
+ */
3021
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: any): AxiosPromise<void>;
3022
+ /**
3023
+ *
3024
+ * @summary Get secure file url with read access
3025
+ * @param {string} hospitalId
3026
+ * @param {string} containerId
3027
+ * @param {string} fileId
3028
+ * @param {number} [minutesAvailableUntil]
3029
+ * @param {*} [options] Override http request option.
3030
+ * @throws {RequiredError}
3031
+ */
3032
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
3033
+ /**
3034
+ *
3035
+ * @summary Get secure container
3036
+ * @param {string} hospitalId
3037
+ * @param {string} containerId
3038
+ * @param {string} [languageCode]
3039
+ * @param {*} [options] Override http request option.
3040
+ * @throws {RequiredError}
3041
+ */
3042
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: any): AxiosPromise<SecureContainerModel>;
3043
+ /**
3044
+ *
3045
+ * @summary Get secure containers
3046
+ * @param {string} hospitalId
3047
+ * @param {string} [id]
3048
+ * @param {string} [languageCode]
3049
+ * @param {boolean} [showHidden]
3050
+ * @param {string} [userName]
3051
+ * @param {string} [userEmail]
3052
+ * @param {string} [userId]
3053
+ * @param {number} [page]
3054
+ * @param {number} [limit]
3055
+ * @param {Date} [lastRetrieved]
3056
+ * @param {*} [options] Override http request option.
3057
+ * @throws {RequiredError}
3058
+ */
3059
+ apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SecureContainersModel>;
3060
+ /**
3061
+ *
3062
+ * @summary Create secure file container
3063
+ * @param {string} hospitalId
3064
+ * @param {*} [options] Override http request option.
3065
+ * @throws {RequiredError}
3066
+ */
3067
+ apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: any): AxiosPromise<SecureContainerModel>;
2871
3068
  /**
2872
3069
  *
2873
3070
  * @summary Get all HospitalSpecialties.
@@ -4946,6 +5143,186 @@ export interface HospitalsApiApiV1HospitalsHospitalIdRevalidatePostRequest {
4946
5143
  */
4947
5144
  readonly includeCurrent?: boolean;
4948
5145
  }
5146
+ /**
5147
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete operation in HospitalsApi.
5148
+ * @export
5149
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest
5150
+ */
5151
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest {
5152
+ /**
5153
+ *
5154
+ * @type {string}
5155
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDelete
5156
+ */
5157
+ readonly hospitalId: string;
5158
+ /**
5159
+ *
5160
+ * @type {string}
5161
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDelete
5162
+ */
5163
+ readonly containerId: string;
5164
+ }
5165
+ /**
5166
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet operation in HospitalsApi.
5167
+ * @export
5168
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest
5169
+ */
5170
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest {
5171
+ /**
5172
+ *
5173
+ * @type {string}
5174
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
5175
+ */
5176
+ readonly hospitalId: string;
5177
+ /**
5178
+ *
5179
+ * @type {string}
5180
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
5181
+ */
5182
+ readonly containerId: string;
5183
+ /**
5184
+ *
5185
+ * @type {string}
5186
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
5187
+ */
5188
+ readonly fileId: string;
5189
+ }
5190
+ /**
5191
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet operation in HospitalsApi.
5192
+ * @export
5193
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest
5194
+ */
5195
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest {
5196
+ /**
5197
+ *
5198
+ * @type {string}
5199
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
5200
+ */
5201
+ readonly hospitalId: string;
5202
+ /**
5203
+ *
5204
+ * @type {string}
5205
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
5206
+ */
5207
+ readonly containerId: string;
5208
+ /**
5209
+ *
5210
+ * @type {string}
5211
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
5212
+ */
5213
+ readonly fileId: string;
5214
+ /**
5215
+ *
5216
+ * @type {number}
5217
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
5218
+ */
5219
+ readonly minutesAvailableUntil?: number;
5220
+ }
5221
+ /**
5222
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdGet operation in HospitalsApi.
5223
+ * @export
5224
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest
5225
+ */
5226
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest {
5227
+ /**
5228
+ *
5229
+ * @type {string}
5230
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
5231
+ */
5232
+ readonly hospitalId: string;
5233
+ /**
5234
+ *
5235
+ * @type {string}
5236
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
5237
+ */
5238
+ readonly containerId: string;
5239
+ /**
5240
+ *
5241
+ * @type {string}
5242
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
5243
+ */
5244
+ readonly languageCode?: string;
5245
+ }
5246
+ /**
5247
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersGet operation in HospitalsApi.
5248
+ * @export
5249
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest
5250
+ */
5251
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest {
5252
+ /**
5253
+ *
5254
+ * @type {string}
5255
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5256
+ */
5257
+ readonly hospitalId: string;
5258
+ /**
5259
+ *
5260
+ * @type {string}
5261
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5262
+ */
5263
+ readonly id?: string;
5264
+ /**
5265
+ *
5266
+ * @type {string}
5267
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5268
+ */
5269
+ readonly languageCode?: string;
5270
+ /**
5271
+ *
5272
+ * @type {boolean}
5273
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5274
+ */
5275
+ readonly showHidden?: boolean;
5276
+ /**
5277
+ *
5278
+ * @type {string}
5279
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5280
+ */
5281
+ readonly userName?: string;
5282
+ /**
5283
+ *
5284
+ * @type {string}
5285
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5286
+ */
5287
+ readonly userEmail?: string;
5288
+ /**
5289
+ *
5290
+ * @type {string}
5291
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5292
+ */
5293
+ readonly userId?: string;
5294
+ /**
5295
+ *
5296
+ * @type {number}
5297
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5298
+ */
5299
+ readonly page?: number;
5300
+ /**
5301
+ *
5302
+ * @type {number}
5303
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5304
+ */
5305
+ readonly limit?: number;
5306
+ /**
5307
+ *
5308
+ * @type {Date}
5309
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
5310
+ */
5311
+ readonly lastRetrieved?: Date;
5312
+ }
5313
+ /**
5314
+ * Request parameters for apiV1HospitalsHospitalIdSecurecontainersPost operation in HospitalsApi.
5315
+ * @export
5316
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest
5317
+ */
5318
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest {
5319
+ /**
5320
+ *
5321
+ * @type {string}
5322
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPost
5323
+ */
5324
+ readonly hospitalId: string;
5325
+ }
4949
5326
  /**
4950
5327
  * Request parameters for apiV1HospitalsHospitalIdSpecialtiesGet operation in HospitalsApi.
4951
5328
  * @export
@@ -7039,6 +7416,60 @@ export declare class HospitalsApi extends BaseAPI {
7039
7416
  * @memberof HospitalsApi
7040
7417
  */
7041
7418
  apiV1HospitalsHospitalIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
7419
+ /**
7420
+ *
7421
+ * @summary Delete secure file container
7422
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest} requestParameters Request parameters.
7423
+ * @param {*} [options] Override http request option.
7424
+ * @throws {RequiredError}
7425
+ * @memberof HospitalsApi
7426
+ */
7427
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
7428
+ /**
7429
+ *
7430
+ * @summary Get file content
7431
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest} requestParameters Request parameters.
7432
+ * @param {*} [options] Override http request option.
7433
+ * @throws {RequiredError}
7434
+ * @memberof HospitalsApi
7435
+ */
7436
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
7437
+ /**
7438
+ *
7439
+ * @summary Get secure file url with read access
7440
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest} requestParameters Request parameters.
7441
+ * @param {*} [options] Override http request option.
7442
+ * @throws {RequiredError}
7443
+ * @memberof HospitalsApi
7444
+ */
7445
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
7446
+ /**
7447
+ *
7448
+ * @summary Get secure container
7449
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest} requestParameters Request parameters.
7450
+ * @param {*} [options] Override http request option.
7451
+ * @throws {RequiredError}
7452
+ * @memberof HospitalsApi
7453
+ */
7454
+ apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainerModel, any>>;
7455
+ /**
7456
+ *
7457
+ * @summary Get secure containers
7458
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest} requestParameters Request parameters.
7459
+ * @param {*} [options] Override http request option.
7460
+ * @throws {RequiredError}
7461
+ * @memberof HospitalsApi
7462
+ */
7463
+ apiV1HospitalsHospitalIdSecurecontainersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainersModel, any>>;
7464
+ /**
7465
+ *
7466
+ * @summary Create secure file container
7467
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest} requestParameters Request parameters.
7468
+ * @param {*} [options] Override http request option.
7469
+ * @throws {RequiredError}
7470
+ * @memberof HospitalsApi
7471
+ */
7472
+ apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainerModel, any>>;
7042
7473
  /**
7043
7474
  *
7044
7475
  * @summary Get all HospitalSpecialties.