ch-admin-api-client-typescript 5.3.0 → 5.3.1

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.
@@ -847,25 +847,44 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
847
847
  * @throws {RequiredError}
848
848
  */
849
849
  apiV1HospitalsHospitalIdSecurecontainersPost: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
850
+ /**
851
+ *
852
+ * @summary Get file content by file name
853
+ * @param {string} hospitalId
854
+ * @param {string} fileName
855
+ * @param {*} [options] Override http request option.
856
+ * @throws {RequiredError}
857
+ */
858
+ apiV1HospitalsHospitalIdSecurefilesFileNameGet: (hospitalId: string, fileName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
859
+ /**
860
+ *
861
+ * @summary Get secure file url with read access by file name
862
+ * @param {string} hospitalId
863
+ * @param {string} fileName
864
+ * @param {number} [minutesAvailableUntil]
865
+ * @param {*} [options] Override http request option.
866
+ * @throws {RequiredError}
867
+ */
868
+ apiV1HospitalsHospitalIdSecurefilesFileNameReadGet: (hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
850
869
  /**
851
870
  *
852
871
  * @summary Get file content by uri
853
872
  * @param {string} hospitalId
854
- * @param {string} uri
873
+ * @param {string} [uri]
855
874
  * @param {*} [options] Override http request option.
856
875
  * @throws {RequiredError}
857
876
  */
858
- apiV1HospitalsHospitalIdSecurefilesUriGet: (hospitalId: string, uri: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
877
+ apiV1HospitalsHospitalIdSecurefilesGet: (hospitalId: string, uri?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
859
878
  /**
860
879
  *
861
880
  * @summary Get secure file url with read access by uri
862
881
  * @param {string} hospitalId
863
- * @param {string} uri
882
+ * @param {string} [uri]
864
883
  * @param {number} [minutesAvailableUntil]
865
884
  * @param {*} [options] Override http request option.
866
885
  * @throws {RequiredError}
867
886
  */
868
- apiV1HospitalsHospitalIdSecurefilesUriReadGet: (hospitalId: string, uri: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
887
+ apiV1HospitalsHospitalIdSecurefilesReadGet: (hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
869
888
  /**
870
889
  *
871
890
  * @summary Get all HospitalSpecialties.
@@ -2146,25 +2165,44 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
2146
2165
  * @throws {RequiredError}
2147
2166
  */
2148
2167
  apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>>;
2168
+ /**
2169
+ *
2170
+ * @summary Get file content by file name
2171
+ * @param {string} hospitalId
2172
+ * @param {string} fileName
2173
+ * @param {*} [options] Override http request option.
2174
+ * @throws {RequiredError}
2175
+ */
2176
+ apiV1HospitalsHospitalIdSecurefilesFileNameGet(hospitalId: string, fileName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2177
+ /**
2178
+ *
2179
+ * @summary Get secure file url with read access by file name
2180
+ * @param {string} hospitalId
2181
+ * @param {string} fileName
2182
+ * @param {number} [minutesAvailableUntil]
2183
+ * @param {*} [options] Override http request option.
2184
+ * @throws {RequiredError}
2185
+ */
2186
+ apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2149
2187
  /**
2150
2188
  *
2151
2189
  * @summary Get file content by uri
2152
2190
  * @param {string} hospitalId
2153
- * @param {string} uri
2191
+ * @param {string} [uri]
2154
2192
  * @param {*} [options] Override http request option.
2155
2193
  * @throws {RequiredError}
2156
2194
  */
2157
- apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId: string, uri: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2195
+ apiV1HospitalsHospitalIdSecurefilesGet(hospitalId: string, uri?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2158
2196
  /**
2159
2197
  *
2160
2198
  * @summary Get secure file url with read access by uri
2161
2199
  * @param {string} hospitalId
2162
- * @param {string} uri
2200
+ * @param {string} [uri]
2163
2201
  * @param {number} [minutesAvailableUntil]
2164
2202
  * @param {*} [options] Override http request option.
2165
2203
  * @throws {RequiredError}
2166
2204
  */
2167
- apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId: string, uri: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2205
+ apiV1HospitalsHospitalIdSecurefilesReadGet(hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
2168
2206
  /**
2169
2207
  *
2170
2208
  * @summary Get all HospitalSpecialties.
@@ -3445,25 +3483,44 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3445
3483
  * @throws {RequiredError}
3446
3484
  */
3447
3485
  apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: any): AxiosPromise<SecureContainerModel>;
3486
+ /**
3487
+ *
3488
+ * @summary Get file content by file name
3489
+ * @param {string} hospitalId
3490
+ * @param {string} fileName
3491
+ * @param {*} [options] Override http request option.
3492
+ * @throws {RequiredError}
3493
+ */
3494
+ apiV1HospitalsHospitalIdSecurefilesFileNameGet(hospitalId: string, fileName: string, options?: any): AxiosPromise<void>;
3495
+ /**
3496
+ *
3497
+ * @summary Get secure file url with read access by file name
3498
+ * @param {string} hospitalId
3499
+ * @param {string} fileName
3500
+ * @param {number} [minutesAvailableUntil]
3501
+ * @param {*} [options] Override http request option.
3502
+ * @throws {RequiredError}
3503
+ */
3504
+ apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
3448
3505
  /**
3449
3506
  *
3450
3507
  * @summary Get file content by uri
3451
3508
  * @param {string} hospitalId
3452
- * @param {string} uri
3509
+ * @param {string} [uri]
3453
3510
  * @param {*} [options] Override http request option.
3454
3511
  * @throws {RequiredError}
3455
3512
  */
3456
- apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId: string, uri: string, options?: any): AxiosPromise<void>;
3513
+ apiV1HospitalsHospitalIdSecurefilesGet(hospitalId: string, uri?: string, options?: any): AxiosPromise<void>;
3457
3514
  /**
3458
3515
  *
3459
3516
  * @summary Get secure file url with read access by uri
3460
3517
  * @param {string} hospitalId
3461
- * @param {string} uri
3518
+ * @param {string} [uri]
3462
3519
  * @param {number} [minutesAvailableUntil]
3463
3520
  * @param {*} [options] Override http request option.
3464
3521
  * @throws {RequiredError}
3465
3522
  */
3466
- apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId: string, uri: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
3523
+ apiV1HospitalsHospitalIdSecurefilesReadGet(hospitalId: string, uri?: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
3467
3524
  /**
3468
3525
  *
3469
3526
  * @summary Get all HospitalSpecialties.
@@ -6010,46 +6067,90 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest
6010
6067
  readonly hospitalId: string;
6011
6068
  }
6012
6069
  /**
6013
- * Request parameters for apiV1HospitalsHospitalIdSecurefilesUriGet operation in HospitalsApi.
6070
+ * Request parameters for apiV1HospitalsHospitalIdSecurefilesFileNameGet operation in HospitalsApi.
6071
+ * @export
6072
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest
6073
+ */
6074
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest {
6075
+ /**
6076
+ *
6077
+ * @type {string}
6078
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGet
6079
+ */
6080
+ readonly hospitalId: string;
6081
+ /**
6082
+ *
6083
+ * @type {string}
6084
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGet
6085
+ */
6086
+ readonly fileName: string;
6087
+ }
6088
+ /**
6089
+ * Request parameters for apiV1HospitalsHospitalIdSecurefilesFileNameReadGet operation in HospitalsApi.
6014
6090
  * @export
6015
- * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest
6091
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest
6016
6092
  */
6017
- export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest {
6093
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest {
6018
6094
  /**
6019
6095
  *
6020
6096
  * @type {string}
6021
- * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGet
6097
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGet
6022
6098
  */
6023
6099
  readonly hospitalId: string;
6024
6100
  /**
6025
6101
  *
6026
6102
  * @type {string}
6027
- * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGet
6103
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGet
6028
6104
  */
6029
- readonly uri: string;
6105
+ readonly fileName: string;
6106
+ /**
6107
+ *
6108
+ * @type {number}
6109
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGet
6110
+ */
6111
+ readonly minutesAvailableUntil?: number;
6030
6112
  }
6031
6113
  /**
6032
- * Request parameters for apiV1HospitalsHospitalIdSecurefilesUriReadGet operation in HospitalsApi.
6114
+ * Request parameters for apiV1HospitalsHospitalIdSecurefilesGet operation in HospitalsApi.
6033
6115
  * @export
6034
- * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest
6116
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest
6035
6117
  */
6036
- export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest {
6118
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest {
6037
6119
  /**
6038
6120
  *
6039
6121
  * @type {string}
6040
- * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
6122
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesGet
6041
6123
  */
6042
6124
  readonly hospitalId: string;
6043
6125
  /**
6044
6126
  *
6045
6127
  * @type {string}
6046
- * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
6128
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesGet
6047
6129
  */
6048
- readonly uri: string;
6130
+ readonly uri?: string;
6131
+ }
6132
+ /**
6133
+ * Request parameters for apiV1HospitalsHospitalIdSecurefilesReadGet operation in HospitalsApi.
6134
+ * @export
6135
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest
6136
+ */
6137
+ export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest {
6138
+ /**
6139
+ *
6140
+ * @type {string}
6141
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGet
6142
+ */
6143
+ readonly hospitalId: string;
6144
+ /**
6145
+ *
6146
+ * @type {string}
6147
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGet
6148
+ */
6149
+ readonly uri?: string;
6049
6150
  /**
6050
6151
  *
6051
6152
  * @type {number}
6052
- * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
6153
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGet
6053
6154
  */
6054
6155
  readonly minutesAvailableUntil?: number;
6055
6156
  }
@@ -8299,24 +8400,42 @@ export declare class HospitalsApi extends BaseAPI {
8299
8400
  * @memberof HospitalsApi
8300
8401
  */
8301
8402
  apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainerModel, any>>;
8403
+ /**
8404
+ *
8405
+ * @summary Get file content by file name
8406
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest} requestParameters Request parameters.
8407
+ * @param {*} [options] Override http request option.
8408
+ * @throws {RequiredError}
8409
+ * @memberof HospitalsApi
8410
+ */
8411
+ apiV1HospitalsHospitalIdSecurefilesFileNameGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8412
+ /**
8413
+ *
8414
+ * @summary Get secure file url with read access by file name
8415
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest} requestParameters Request parameters.
8416
+ * @param {*} [options] Override http request option.
8417
+ * @throws {RequiredError}
8418
+ * @memberof HospitalsApi
8419
+ */
8420
+ apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
8302
8421
  /**
8303
8422
  *
8304
8423
  * @summary Get file content by uri
8305
- * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest} requestParameters Request parameters.
8424
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest} requestParameters Request parameters.
8306
8425
  * @param {*} [options] Override http request option.
8307
8426
  * @throws {RequiredError}
8308
8427
  * @memberof HospitalsApi
8309
8428
  */
8310
- apiV1HospitalsHospitalIdSecurefilesUriGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8429
+ apiV1HospitalsHospitalIdSecurefilesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8311
8430
  /**
8312
8431
  *
8313
8432
  * @summary Get secure file url with read access by uri
8314
- * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest} requestParameters Request parameters.
8433
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest} requestParameters Request parameters.
8315
8434
  * @param {*} [options] Override http request option.
8316
8435
  * @throws {RequiredError}
8317
8436
  * @memberof HospitalsApi
8318
8437
  */
8319
- apiV1HospitalsHospitalIdSecurefilesUriReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
8438
+ apiV1HospitalsHospitalIdSecurefilesReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
8320
8439
  /**
8321
8440
  *
8322
8441
  * @summary Get all HospitalSpecialties.