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.
- package/lib/api/hospitals-api.d.ts +431 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +614 -0
- package/lib/models/index.d.ts +5 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +5 -0
- package/lib/models/secure-container-item-model.d.ts +67 -0
- package/lib/models/secure-container-item-model.d.ts.map +1 -0
- package/lib/models/secure-container-item-model.js +15 -0
- package/lib/models/secure-container-model.d.ts +74 -0
- package/lib/models/secure-container-model.d.ts.map +1 -0
- package/lib/models/secure-container-model.js +15 -0
- package/lib/models/secure-containers-model.d.ts +33 -0
- package/lib/models/secure-containers-model.d.ts.map +1 -0
- package/lib/models/secure-containers-model.js +15 -0
- package/lib/models/secure-file-model.d.ts +86 -0
- package/lib/models/secure-file-model.d.ts.map +1 -0
- package/lib/models/secure-file-model.js +15 -0
- package/lib/models/survey-result-item-model.d.ts +81 -0
- package/lib/models/survey-result-item-model.d.ts.map +1 -0
- package/lib/models/survey-result-item-model.js +15 -0
- package/lib/models/survey-result-model.d.ts +6 -6
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/lib/models/survey-results-model.d.ts +3 -3
- package/lib/models/survey-results-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +5 -0
- package/src/api/hospitals-api.ts +754 -6
- package/src/models/index.ts +5 -0
- package/src/models/secure-container-item-model.ts +72 -0
- package/src/models/secure-container-model.ts +81 -0
- package/src/models/secure-containers-model.ts +42 -0
- package/src/models/secure-file-model.ts +93 -0
- package/src/models/survey-result-item-model.ts +90 -0
- package/src/models/survey-result-model.ts +6 -6
- package/src/models/survey-results-model.ts +3 -3
package/src/api/hospitals-api.ts
CHANGED
|
@@ -121,6 +121,10 @@ import { SaveHospitalSpecialtyAppointmentTimetableOverridesCommand } from '../mo
|
|
|
121
121
|
// @ts-ignore
|
|
122
122
|
import { SaveServiceAppointmentTimetableOverridesCommand } from '../models';
|
|
123
123
|
// @ts-ignore
|
|
124
|
+
import { SecureContainerModel } from '../models';
|
|
125
|
+
// @ts-ignore
|
|
126
|
+
import { SecureContainersModel } from '../models';
|
|
127
|
+
// @ts-ignore
|
|
124
128
|
import { SnsHandleModel } from '../models';
|
|
125
129
|
// @ts-ignore
|
|
126
130
|
import { SnsType } from '../models';
|
|
@@ -2924,6 +2928,315 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2924
2928
|
|
|
2925
2929
|
|
|
2926
2930
|
|
|
2931
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2932
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2933
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2934
|
+
|
|
2935
|
+
return {
|
|
2936
|
+
url: toPathString(localVarUrlObj),
|
|
2937
|
+
options: localVarRequestOptions,
|
|
2938
|
+
};
|
|
2939
|
+
},
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @summary Delete secure file container
|
|
2943
|
+
* @param {string} hospitalId
|
|
2944
|
+
* @param {string} containerId
|
|
2945
|
+
* @param {*} [options] Override http request option.
|
|
2946
|
+
* @throws {RequiredError}
|
|
2947
|
+
*/
|
|
2948
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete: async (hospitalId: string, containerId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2949
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
2950
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete', 'hospitalId', hospitalId)
|
|
2951
|
+
// verify required parameter 'containerId' is not null or undefined
|
|
2952
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete', 'containerId', containerId)
|
|
2953
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}`
|
|
2954
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
2955
|
+
.replace(`{${"containerId"}}`, encodeURIComponent(String(containerId)));
|
|
2956
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2957
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2958
|
+
let baseOptions;
|
|
2959
|
+
if (configuration) {
|
|
2960
|
+
baseOptions = configuration.baseOptions;
|
|
2961
|
+
}
|
|
2962
|
+
|
|
2963
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2964
|
+
const localVarHeaderParameter = {} as any;
|
|
2965
|
+
const localVarQueryParameter = {} as any;
|
|
2966
|
+
|
|
2967
|
+
// authentication oauth2 required
|
|
2968
|
+
// oauth required
|
|
2969
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
|
|
2973
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2974
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2975
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2976
|
+
|
|
2977
|
+
return {
|
|
2978
|
+
url: toPathString(localVarUrlObj),
|
|
2979
|
+
options: localVarRequestOptions,
|
|
2980
|
+
};
|
|
2981
|
+
},
|
|
2982
|
+
/**
|
|
2983
|
+
*
|
|
2984
|
+
* @summary Get file content
|
|
2985
|
+
* @param {string} hospitalId
|
|
2986
|
+
* @param {string} containerId
|
|
2987
|
+
* @param {string} fileId
|
|
2988
|
+
* @param {*} [options] Override http request option.
|
|
2989
|
+
* @throws {RequiredError}
|
|
2990
|
+
*/
|
|
2991
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet: async (hospitalId: string, containerId: string, fileId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2992
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
2993
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet', 'hospitalId', hospitalId)
|
|
2994
|
+
// verify required parameter 'containerId' is not null or undefined
|
|
2995
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet', 'containerId', containerId)
|
|
2996
|
+
// verify required parameter 'fileId' is not null or undefined
|
|
2997
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet', 'fileId', fileId)
|
|
2998
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}/files/{fileId}`
|
|
2999
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3000
|
+
.replace(`{${"containerId"}}`, encodeURIComponent(String(containerId)))
|
|
3001
|
+
.replace(`{${"fileId"}}`, encodeURIComponent(String(fileId)));
|
|
3002
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3003
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3004
|
+
let baseOptions;
|
|
3005
|
+
if (configuration) {
|
|
3006
|
+
baseOptions = configuration.baseOptions;
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3010
|
+
const localVarHeaderParameter = {} as any;
|
|
3011
|
+
const localVarQueryParameter = {} as any;
|
|
3012
|
+
|
|
3013
|
+
// authentication oauth2 required
|
|
3014
|
+
// oauth required
|
|
3015
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3016
|
+
|
|
3017
|
+
|
|
3018
|
+
|
|
3019
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3020
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3021
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3022
|
+
|
|
3023
|
+
return {
|
|
3024
|
+
url: toPathString(localVarUrlObj),
|
|
3025
|
+
options: localVarRequestOptions,
|
|
3026
|
+
};
|
|
3027
|
+
},
|
|
3028
|
+
/**
|
|
3029
|
+
*
|
|
3030
|
+
* @summary Get secure file url with read access
|
|
3031
|
+
* @param {string} hospitalId
|
|
3032
|
+
* @param {string} containerId
|
|
3033
|
+
* @param {string} fileId
|
|
3034
|
+
* @param {number} [minutesAvailableUntil]
|
|
3035
|
+
* @param {*} [options] Override http request option.
|
|
3036
|
+
* @throws {RequiredError}
|
|
3037
|
+
*/
|
|
3038
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet: async (hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3039
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3040
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet', 'hospitalId', hospitalId)
|
|
3041
|
+
// verify required parameter 'containerId' is not null or undefined
|
|
3042
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet', 'containerId', containerId)
|
|
3043
|
+
// verify required parameter 'fileId' is not null or undefined
|
|
3044
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet', 'fileId', fileId)
|
|
3045
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}/files/{fileId}/url/read`
|
|
3046
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3047
|
+
.replace(`{${"containerId"}}`, encodeURIComponent(String(containerId)))
|
|
3048
|
+
.replace(`{${"fileId"}}`, encodeURIComponent(String(fileId)));
|
|
3049
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3050
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3051
|
+
let baseOptions;
|
|
3052
|
+
if (configuration) {
|
|
3053
|
+
baseOptions = configuration.baseOptions;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3057
|
+
const localVarHeaderParameter = {} as any;
|
|
3058
|
+
const localVarQueryParameter = {} as any;
|
|
3059
|
+
|
|
3060
|
+
// authentication oauth2 required
|
|
3061
|
+
// oauth required
|
|
3062
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3063
|
+
|
|
3064
|
+
if (minutesAvailableUntil !== undefined) {
|
|
3065
|
+
localVarQueryParameter['minutesAvailableUntil'] = minutesAvailableUntil;
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
|
|
3069
|
+
|
|
3070
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3071
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3072
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3073
|
+
|
|
3074
|
+
return {
|
|
3075
|
+
url: toPathString(localVarUrlObj),
|
|
3076
|
+
options: localVarRequestOptions,
|
|
3077
|
+
};
|
|
3078
|
+
},
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @summary Get secure container
|
|
3082
|
+
* @param {string} hospitalId
|
|
3083
|
+
* @param {string} containerId
|
|
3084
|
+
* @param {string} [languageCode]
|
|
3085
|
+
* @param {*} [options] Override http request option.
|
|
3086
|
+
* @throws {RequiredError}
|
|
3087
|
+
*/
|
|
3088
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet: async (hospitalId: string, containerId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3089
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3090
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdGet', 'hospitalId', hospitalId)
|
|
3091
|
+
// verify required parameter 'containerId' is not null or undefined
|
|
3092
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdGet', 'containerId', containerId)
|
|
3093
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}`
|
|
3094
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3095
|
+
.replace(`{${"containerId"}}`, encodeURIComponent(String(containerId)));
|
|
3096
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3097
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3098
|
+
let baseOptions;
|
|
3099
|
+
if (configuration) {
|
|
3100
|
+
baseOptions = configuration.baseOptions;
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3104
|
+
const localVarHeaderParameter = {} as any;
|
|
3105
|
+
const localVarQueryParameter = {} as any;
|
|
3106
|
+
|
|
3107
|
+
// authentication oauth2 required
|
|
3108
|
+
// oauth required
|
|
3109
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3110
|
+
|
|
3111
|
+
if (languageCode !== undefined) {
|
|
3112
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
3113
|
+
}
|
|
3114
|
+
|
|
3115
|
+
|
|
3116
|
+
|
|
3117
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3118
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3119
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3120
|
+
|
|
3121
|
+
return {
|
|
3122
|
+
url: toPathString(localVarUrlObj),
|
|
3123
|
+
options: localVarRequestOptions,
|
|
3124
|
+
};
|
|
3125
|
+
},
|
|
3126
|
+
/**
|
|
3127
|
+
*
|
|
3128
|
+
* @summary Get secure containers
|
|
3129
|
+
* @param {string} hospitalId
|
|
3130
|
+
* @param {string} [id]
|
|
3131
|
+
* @param {string} [languageCode]
|
|
3132
|
+
* @param {boolean} [showHidden]
|
|
3133
|
+
* @param {string} [userName]
|
|
3134
|
+
* @param {string} [userEmail]
|
|
3135
|
+
* @param {string} [userId]
|
|
3136
|
+
* @param {number} [page]
|
|
3137
|
+
* @param {number} [limit]
|
|
3138
|
+
* @param {Date} [lastRetrieved]
|
|
3139
|
+
* @param {*} [options] Override http request option.
|
|
3140
|
+
* @throws {RequiredError}
|
|
3141
|
+
*/
|
|
3142
|
+
apiV1HospitalsHospitalIdSecurecontainersGet: async (hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3143
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3144
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersGet', 'hospitalId', hospitalId)
|
|
3145
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers`
|
|
3146
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3147
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3148
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3149
|
+
let baseOptions;
|
|
3150
|
+
if (configuration) {
|
|
3151
|
+
baseOptions = configuration.baseOptions;
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3155
|
+
const localVarHeaderParameter = {} as any;
|
|
3156
|
+
const localVarQueryParameter = {} as any;
|
|
3157
|
+
|
|
3158
|
+
// authentication oauth2 required
|
|
3159
|
+
// oauth required
|
|
3160
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3161
|
+
|
|
3162
|
+
if (id !== undefined) {
|
|
3163
|
+
localVarQueryParameter['Id'] = id;
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
if (languageCode !== undefined) {
|
|
3167
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
if (showHidden !== undefined) {
|
|
3171
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
if (userName !== undefined) {
|
|
3175
|
+
localVarQueryParameter['UserName'] = userName;
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
if (userEmail !== undefined) {
|
|
3179
|
+
localVarQueryParameter['UserEmail'] = userEmail;
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
if (userId !== undefined) {
|
|
3183
|
+
localVarQueryParameter['UserId'] = userId;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
if (page !== undefined) {
|
|
3187
|
+
localVarQueryParameter['page'] = page;
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
if (limit !== undefined) {
|
|
3191
|
+
localVarQueryParameter['limit'] = limit;
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
if (lastRetrieved !== undefined) {
|
|
3195
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3196
|
+
(lastRetrieved as any).toISOString() :
|
|
3197
|
+
lastRetrieved;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
|
|
3201
|
+
|
|
3202
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3203
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3204
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3205
|
+
|
|
3206
|
+
return {
|
|
3207
|
+
url: toPathString(localVarUrlObj),
|
|
3208
|
+
options: localVarRequestOptions,
|
|
3209
|
+
};
|
|
3210
|
+
},
|
|
3211
|
+
/**
|
|
3212
|
+
*
|
|
3213
|
+
* @summary Create secure file container
|
|
3214
|
+
* @param {string} hospitalId
|
|
3215
|
+
* @param {*} [options] Override http request option.
|
|
3216
|
+
* @throws {RequiredError}
|
|
3217
|
+
*/
|
|
3218
|
+
apiV1HospitalsHospitalIdSecurecontainersPost: async (hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3219
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3220
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersPost', 'hospitalId', hospitalId)
|
|
3221
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers`
|
|
3222
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3223
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3224
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3225
|
+
let baseOptions;
|
|
3226
|
+
if (configuration) {
|
|
3227
|
+
baseOptions = configuration.baseOptions;
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3231
|
+
const localVarHeaderParameter = {} as any;
|
|
3232
|
+
const localVarQueryParameter = {} as any;
|
|
3233
|
+
|
|
3234
|
+
// authentication oauth2 required
|
|
3235
|
+
// oauth required
|
|
3236
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3237
|
+
|
|
3238
|
+
|
|
3239
|
+
|
|
2927
3240
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2928
3241
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2929
3242
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6138,20 +6451,103 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
6138
6451
|
* @param {*} [options] Override http request option.
|
|
6139
6452
|
* @throws {RequiredError}
|
|
6140
6453
|
*/
|
|
6141
|
-
async apiV1HospitalsHospitalIdReactivePut(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
6142
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdReactivePut(hospitalId, options);
|
|
6454
|
+
async apiV1HospitalsHospitalIdReactivePut(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
6455
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdReactivePut(hospitalId, options);
|
|
6456
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6457
|
+
},
|
|
6458
|
+
/**
|
|
6459
|
+
*
|
|
6460
|
+
* @summary Revalidate hospital
|
|
6461
|
+
* @param {string} hospitalId
|
|
6462
|
+
* @param {boolean} [includeCurrent]
|
|
6463
|
+
* @param {*} [options] Override http request option.
|
|
6464
|
+
* @throws {RequiredError}
|
|
6465
|
+
*/
|
|
6466
|
+
async apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
6467
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdRevalidatePost(hospitalId, includeCurrent, options);
|
|
6468
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6469
|
+
},
|
|
6470
|
+
/**
|
|
6471
|
+
*
|
|
6472
|
+
* @summary Delete secure file container
|
|
6473
|
+
* @param {string} hospitalId
|
|
6474
|
+
* @param {string} containerId
|
|
6475
|
+
* @param {*} [options] Override http request option.
|
|
6476
|
+
* @throws {RequiredError}
|
|
6477
|
+
*/
|
|
6478
|
+
async apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
6479
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId, containerId, options);
|
|
6480
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6481
|
+
},
|
|
6482
|
+
/**
|
|
6483
|
+
*
|
|
6484
|
+
* @summary Get file content
|
|
6485
|
+
* @param {string} hospitalId
|
|
6486
|
+
* @param {string} containerId
|
|
6487
|
+
* @param {string} fileId
|
|
6488
|
+
* @param {*} [options] Override http request option.
|
|
6489
|
+
* @throws {RequiredError}
|
|
6490
|
+
*/
|
|
6491
|
+
async apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
6492
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId, containerId, fileId, options);
|
|
6493
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6494
|
+
},
|
|
6495
|
+
/**
|
|
6496
|
+
*
|
|
6497
|
+
* @summary Get secure file url with read access
|
|
6498
|
+
* @param {string} hospitalId
|
|
6499
|
+
* @param {string} containerId
|
|
6500
|
+
* @param {string} fileId
|
|
6501
|
+
* @param {number} [minutesAvailableUntil]
|
|
6502
|
+
* @param {*} [options] Override http request option.
|
|
6503
|
+
* @throws {RequiredError}
|
|
6504
|
+
*/
|
|
6505
|
+
async apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
6506
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId, containerId, fileId, minutesAvailableUntil, options);
|
|
6507
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6508
|
+
},
|
|
6509
|
+
/**
|
|
6510
|
+
*
|
|
6511
|
+
* @summary Get secure container
|
|
6512
|
+
* @param {string} hospitalId
|
|
6513
|
+
* @param {string} containerId
|
|
6514
|
+
* @param {string} [languageCode]
|
|
6515
|
+
* @param {*} [options] Override http request option.
|
|
6516
|
+
* @throws {RequiredError}
|
|
6517
|
+
*/
|
|
6518
|
+
async apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>> {
|
|
6519
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId, containerId, languageCode, options);
|
|
6520
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6521
|
+
},
|
|
6522
|
+
/**
|
|
6523
|
+
*
|
|
6524
|
+
* @summary Get secure containers
|
|
6525
|
+
* @param {string} hospitalId
|
|
6526
|
+
* @param {string} [id]
|
|
6527
|
+
* @param {string} [languageCode]
|
|
6528
|
+
* @param {boolean} [showHidden]
|
|
6529
|
+
* @param {string} [userName]
|
|
6530
|
+
* @param {string} [userEmail]
|
|
6531
|
+
* @param {string} [userId]
|
|
6532
|
+
* @param {number} [page]
|
|
6533
|
+
* @param {number} [limit]
|
|
6534
|
+
* @param {Date} [lastRetrieved]
|
|
6535
|
+
* @param {*} [options] Override http request option.
|
|
6536
|
+
* @throws {RequiredError}
|
|
6537
|
+
*/
|
|
6538
|
+
async 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>> {
|
|
6539
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId, id, languageCode, showHidden, userName, userEmail, userId, page, limit, lastRetrieved, options);
|
|
6143
6540
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6144
6541
|
},
|
|
6145
6542
|
/**
|
|
6146
6543
|
*
|
|
6147
|
-
* @summary
|
|
6544
|
+
* @summary Create secure file container
|
|
6148
6545
|
* @param {string} hospitalId
|
|
6149
|
-
* @param {boolean} [includeCurrent]
|
|
6150
6546
|
* @param {*} [options] Override http request option.
|
|
6151
6547
|
* @throws {RequiredError}
|
|
6152
6548
|
*/
|
|
6153
|
-
async
|
|
6154
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
6549
|
+
async apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>> {
|
|
6550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId, options);
|
|
6155
6551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6156
6552
|
},
|
|
6157
6553
|
/**
|
|
@@ -7500,6 +7896,83 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
7500
7896
|
apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean> {
|
|
7501
7897
|
return localVarFp.apiV1HospitalsHospitalIdRevalidatePost(hospitalId, includeCurrent, options).then((request) => request(axios, basePath));
|
|
7502
7898
|
},
|
|
7899
|
+
/**
|
|
7900
|
+
*
|
|
7901
|
+
* @summary Delete secure file container
|
|
7902
|
+
* @param {string} hospitalId
|
|
7903
|
+
* @param {string} containerId
|
|
7904
|
+
* @param {*} [options] Override http request option.
|
|
7905
|
+
* @throws {RequiredError}
|
|
7906
|
+
*/
|
|
7907
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: any): AxiosPromise<boolean> {
|
|
7908
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId, containerId, options).then((request) => request(axios, basePath));
|
|
7909
|
+
},
|
|
7910
|
+
/**
|
|
7911
|
+
*
|
|
7912
|
+
* @summary Get file content
|
|
7913
|
+
* @param {string} hospitalId
|
|
7914
|
+
* @param {string} containerId
|
|
7915
|
+
* @param {string} fileId
|
|
7916
|
+
* @param {*} [options] Override http request option.
|
|
7917
|
+
* @throws {RequiredError}
|
|
7918
|
+
*/
|
|
7919
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: any): AxiosPromise<void> {
|
|
7920
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId, containerId, fileId, options).then((request) => request(axios, basePath));
|
|
7921
|
+
},
|
|
7922
|
+
/**
|
|
7923
|
+
*
|
|
7924
|
+
* @summary Get secure file url with read access
|
|
7925
|
+
* @param {string} hospitalId
|
|
7926
|
+
* @param {string} containerId
|
|
7927
|
+
* @param {string} fileId
|
|
7928
|
+
* @param {number} [minutesAvailableUntil]
|
|
7929
|
+
* @param {*} [options] Override http request option.
|
|
7930
|
+
* @throws {RequiredError}
|
|
7931
|
+
*/
|
|
7932
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string> {
|
|
7933
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(hospitalId, containerId, fileId, minutesAvailableUntil, options).then((request) => request(axios, basePath));
|
|
7934
|
+
},
|
|
7935
|
+
/**
|
|
7936
|
+
*
|
|
7937
|
+
* @summary Get secure container
|
|
7938
|
+
* @param {string} hospitalId
|
|
7939
|
+
* @param {string} containerId
|
|
7940
|
+
* @param {string} [languageCode]
|
|
7941
|
+
* @param {*} [options] Override http request option.
|
|
7942
|
+
* @throws {RequiredError}
|
|
7943
|
+
*/
|
|
7944
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: any): AxiosPromise<SecureContainerModel> {
|
|
7945
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId, containerId, languageCode, options).then((request) => request(axios, basePath));
|
|
7946
|
+
},
|
|
7947
|
+
/**
|
|
7948
|
+
*
|
|
7949
|
+
* @summary Get secure containers
|
|
7950
|
+
* @param {string} hospitalId
|
|
7951
|
+
* @param {string} [id]
|
|
7952
|
+
* @param {string} [languageCode]
|
|
7953
|
+
* @param {boolean} [showHidden]
|
|
7954
|
+
* @param {string} [userName]
|
|
7955
|
+
* @param {string} [userEmail]
|
|
7956
|
+
* @param {string} [userId]
|
|
7957
|
+
* @param {number} [page]
|
|
7958
|
+
* @param {number} [limit]
|
|
7959
|
+
* @param {Date} [lastRetrieved]
|
|
7960
|
+
* @param {*} [options] Override http request option.
|
|
7961
|
+
* @throws {RequiredError}
|
|
7962
|
+
*/
|
|
7963
|
+
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> {
|
|
7964
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId, id, languageCode, showHidden, userName, userEmail, userId, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
7965
|
+
},
|
|
7966
|
+
/**
|
|
7967
|
+
*
|
|
7968
|
+
* @summary Create secure file container
|
|
7969
|
+
* @param {string} hospitalId
|
|
7970
|
+
* @param {*} [options] Override http request option.
|
|
7971
|
+
* @throws {RequiredError}
|
|
7972
|
+
*/
|
|
7973
|
+
apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: any): AxiosPromise<SecureContainerModel> {
|
|
7974
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId, options).then((request) => request(axios, basePath));
|
|
7975
|
+
},
|
|
7503
7976
|
/**
|
|
7504
7977
|
*
|
|
7505
7978
|
* @summary Get all HospitalSpecialties.
|
|
@@ -9862,6 +10335,209 @@ export interface HospitalsApiApiV1HospitalsHospitalIdRevalidatePostRequest {
|
|
|
9862
10335
|
readonly includeCurrent?: boolean
|
|
9863
10336
|
}
|
|
9864
10337
|
|
|
10338
|
+
/**
|
|
10339
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete operation in HospitalsApi.
|
|
10340
|
+
* @export
|
|
10341
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest
|
|
10342
|
+
*/
|
|
10343
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest {
|
|
10344
|
+
/**
|
|
10345
|
+
*
|
|
10346
|
+
* @type {string}
|
|
10347
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDelete
|
|
10348
|
+
*/
|
|
10349
|
+
readonly hospitalId: string
|
|
10350
|
+
|
|
10351
|
+
/**
|
|
10352
|
+
*
|
|
10353
|
+
* @type {string}
|
|
10354
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDelete
|
|
10355
|
+
*/
|
|
10356
|
+
readonly containerId: string
|
|
10357
|
+
}
|
|
10358
|
+
|
|
10359
|
+
/**
|
|
10360
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet operation in HospitalsApi.
|
|
10361
|
+
* @export
|
|
10362
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest
|
|
10363
|
+
*/
|
|
10364
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest {
|
|
10365
|
+
/**
|
|
10366
|
+
*
|
|
10367
|
+
* @type {string}
|
|
10368
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
|
|
10369
|
+
*/
|
|
10370
|
+
readonly hospitalId: string
|
|
10371
|
+
|
|
10372
|
+
/**
|
|
10373
|
+
*
|
|
10374
|
+
* @type {string}
|
|
10375
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
|
|
10376
|
+
*/
|
|
10377
|
+
readonly containerId: string
|
|
10378
|
+
|
|
10379
|
+
/**
|
|
10380
|
+
*
|
|
10381
|
+
* @type {string}
|
|
10382
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet
|
|
10383
|
+
*/
|
|
10384
|
+
readonly fileId: string
|
|
10385
|
+
}
|
|
10386
|
+
|
|
10387
|
+
/**
|
|
10388
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet operation in HospitalsApi.
|
|
10389
|
+
* @export
|
|
10390
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest
|
|
10391
|
+
*/
|
|
10392
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest {
|
|
10393
|
+
/**
|
|
10394
|
+
*
|
|
10395
|
+
* @type {string}
|
|
10396
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
|
|
10397
|
+
*/
|
|
10398
|
+
readonly hospitalId: string
|
|
10399
|
+
|
|
10400
|
+
/**
|
|
10401
|
+
*
|
|
10402
|
+
* @type {string}
|
|
10403
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
|
|
10404
|
+
*/
|
|
10405
|
+
readonly containerId: string
|
|
10406
|
+
|
|
10407
|
+
/**
|
|
10408
|
+
*
|
|
10409
|
+
* @type {string}
|
|
10410
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
|
|
10411
|
+
*/
|
|
10412
|
+
readonly fileId: string
|
|
10413
|
+
|
|
10414
|
+
/**
|
|
10415
|
+
*
|
|
10416
|
+
* @type {number}
|
|
10417
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet
|
|
10418
|
+
*/
|
|
10419
|
+
readonly minutesAvailableUntil?: number
|
|
10420
|
+
}
|
|
10421
|
+
|
|
10422
|
+
/**
|
|
10423
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdGet operation in HospitalsApi.
|
|
10424
|
+
* @export
|
|
10425
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest
|
|
10426
|
+
*/
|
|
10427
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest {
|
|
10428
|
+
/**
|
|
10429
|
+
*
|
|
10430
|
+
* @type {string}
|
|
10431
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
|
|
10432
|
+
*/
|
|
10433
|
+
readonly hospitalId: string
|
|
10434
|
+
|
|
10435
|
+
/**
|
|
10436
|
+
*
|
|
10437
|
+
* @type {string}
|
|
10438
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
|
|
10439
|
+
*/
|
|
10440
|
+
readonly containerId: string
|
|
10441
|
+
|
|
10442
|
+
/**
|
|
10443
|
+
*
|
|
10444
|
+
* @type {string}
|
|
10445
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGet
|
|
10446
|
+
*/
|
|
10447
|
+
readonly languageCode?: string
|
|
10448
|
+
}
|
|
10449
|
+
|
|
10450
|
+
/**
|
|
10451
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersGet operation in HospitalsApi.
|
|
10452
|
+
* @export
|
|
10453
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest
|
|
10454
|
+
*/
|
|
10455
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest {
|
|
10456
|
+
/**
|
|
10457
|
+
*
|
|
10458
|
+
* @type {string}
|
|
10459
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10460
|
+
*/
|
|
10461
|
+
readonly hospitalId: string
|
|
10462
|
+
|
|
10463
|
+
/**
|
|
10464
|
+
*
|
|
10465
|
+
* @type {string}
|
|
10466
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10467
|
+
*/
|
|
10468
|
+
readonly id?: string
|
|
10469
|
+
|
|
10470
|
+
/**
|
|
10471
|
+
*
|
|
10472
|
+
* @type {string}
|
|
10473
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10474
|
+
*/
|
|
10475
|
+
readonly languageCode?: string
|
|
10476
|
+
|
|
10477
|
+
/**
|
|
10478
|
+
*
|
|
10479
|
+
* @type {boolean}
|
|
10480
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10481
|
+
*/
|
|
10482
|
+
readonly showHidden?: boolean
|
|
10483
|
+
|
|
10484
|
+
/**
|
|
10485
|
+
*
|
|
10486
|
+
* @type {string}
|
|
10487
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10488
|
+
*/
|
|
10489
|
+
readonly userName?: string
|
|
10490
|
+
|
|
10491
|
+
/**
|
|
10492
|
+
*
|
|
10493
|
+
* @type {string}
|
|
10494
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10495
|
+
*/
|
|
10496
|
+
readonly userEmail?: string
|
|
10497
|
+
|
|
10498
|
+
/**
|
|
10499
|
+
*
|
|
10500
|
+
* @type {string}
|
|
10501
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10502
|
+
*/
|
|
10503
|
+
readonly userId?: string
|
|
10504
|
+
|
|
10505
|
+
/**
|
|
10506
|
+
*
|
|
10507
|
+
* @type {number}
|
|
10508
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10509
|
+
*/
|
|
10510
|
+
readonly page?: number
|
|
10511
|
+
|
|
10512
|
+
/**
|
|
10513
|
+
*
|
|
10514
|
+
* @type {number}
|
|
10515
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10516
|
+
*/
|
|
10517
|
+
readonly limit?: number
|
|
10518
|
+
|
|
10519
|
+
/**
|
|
10520
|
+
*
|
|
10521
|
+
* @type {Date}
|
|
10522
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGet
|
|
10523
|
+
*/
|
|
10524
|
+
readonly lastRetrieved?: Date
|
|
10525
|
+
}
|
|
10526
|
+
|
|
10527
|
+
/**
|
|
10528
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersPost operation in HospitalsApi.
|
|
10529
|
+
* @export
|
|
10530
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest
|
|
10531
|
+
*/
|
|
10532
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest {
|
|
10533
|
+
/**
|
|
10534
|
+
*
|
|
10535
|
+
* @type {string}
|
|
10536
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPost
|
|
10537
|
+
*/
|
|
10538
|
+
readonly hospitalId: string
|
|
10539
|
+
}
|
|
10540
|
+
|
|
9865
10541
|
/**
|
|
9866
10542
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesGet operation in HospitalsApi.
|
|
9867
10543
|
* @export
|
|
@@ -12335,6 +13011,78 @@ export class HospitalsApi extends BaseAPI {
|
|
|
12335
13011
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdRevalidatePost(requestParameters.hospitalId, requestParameters.includeCurrent, options).then((request) => request(this.axios, this.basePath));
|
|
12336
13012
|
}
|
|
12337
13013
|
|
|
13014
|
+
/**
|
|
13015
|
+
*
|
|
13016
|
+
* @summary Delete secure file container
|
|
13017
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest} requestParameters Request parameters.
|
|
13018
|
+
* @param {*} [options] Override http request option.
|
|
13019
|
+
* @throws {RequiredError}
|
|
13020
|
+
* @memberof HospitalsApi
|
|
13021
|
+
*/
|
|
13022
|
+
public apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest, options?: AxiosRequestConfig) {
|
|
13023
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(requestParameters.hospitalId, requestParameters.containerId, options).then((request) => request(this.axios, this.basePath));
|
|
13024
|
+
}
|
|
13025
|
+
|
|
13026
|
+
/**
|
|
13027
|
+
*
|
|
13028
|
+
* @summary Get file content
|
|
13029
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest} requestParameters Request parameters.
|
|
13030
|
+
* @param {*} [options] Override http request option.
|
|
13031
|
+
* @throws {RequiredError}
|
|
13032
|
+
* @memberof HospitalsApi
|
|
13033
|
+
*/
|
|
13034
|
+
public apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest, options?: AxiosRequestConfig) {
|
|
13035
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(requestParameters.hospitalId, requestParameters.containerId, requestParameters.fileId, options).then((request) => request(this.axios, this.basePath));
|
|
13036
|
+
}
|
|
13037
|
+
|
|
13038
|
+
/**
|
|
13039
|
+
*
|
|
13040
|
+
* @summary Get secure file url with read access
|
|
13041
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest} requestParameters Request parameters.
|
|
13042
|
+
* @param {*} [options] Override http request option.
|
|
13043
|
+
* @throws {RequiredError}
|
|
13044
|
+
* @memberof HospitalsApi
|
|
13045
|
+
*/
|
|
13046
|
+
public apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGetRequest, options?: AxiosRequestConfig) {
|
|
13047
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdUrlReadGet(requestParameters.hospitalId, requestParameters.containerId, requestParameters.fileId, requestParameters.minutesAvailableUntil, options).then((request) => request(this.axios, this.basePath));
|
|
13048
|
+
}
|
|
13049
|
+
|
|
13050
|
+
/**
|
|
13051
|
+
*
|
|
13052
|
+
* @summary Get secure container
|
|
13053
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest} requestParameters Request parameters.
|
|
13054
|
+
* @param {*} [options] Override http request option.
|
|
13055
|
+
* @throws {RequiredError}
|
|
13056
|
+
* @memberof HospitalsApi
|
|
13057
|
+
*/
|
|
13058
|
+
public apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest, options?: AxiosRequestConfig) {
|
|
13059
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(requestParameters.hospitalId, requestParameters.containerId, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
13060
|
+
}
|
|
13061
|
+
|
|
13062
|
+
/**
|
|
13063
|
+
*
|
|
13064
|
+
* @summary Get secure containers
|
|
13065
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest} requestParameters Request parameters.
|
|
13066
|
+
* @param {*} [options] Override http request option.
|
|
13067
|
+
* @throws {RequiredError}
|
|
13068
|
+
* @memberof HospitalsApi
|
|
13069
|
+
*/
|
|
13070
|
+
public apiV1HospitalsHospitalIdSecurecontainersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest, options?: AxiosRequestConfig) {
|
|
13071
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersGet(requestParameters.hospitalId, requestParameters.id, requestParameters.languageCode, requestParameters.showHidden, requestParameters.userName, requestParameters.userEmail, requestParameters.userId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
13072
|
+
}
|
|
13073
|
+
|
|
13074
|
+
/**
|
|
13075
|
+
*
|
|
13076
|
+
* @summary Create secure file container
|
|
13077
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest} requestParameters Request parameters.
|
|
13078
|
+
* @param {*} [options] Override http request option.
|
|
13079
|
+
* @throws {RequiredError}
|
|
13080
|
+
* @memberof HospitalsApi
|
|
13081
|
+
*/
|
|
13082
|
+
public apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest, options?: AxiosRequestConfig) {
|
|
13083
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters.hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
13084
|
+
}
|
|
13085
|
+
|
|
12338
13086
|
/**
|
|
12339
13087
|
*
|
|
12340
13088
|
* @summary Get all HospitalSpecialties.
|