fixed typo

This commit is contained in:
Timo 2021-03-24 08:40:36 +02:00
parent c0b856fc14
commit c5ebbd2eac
4 changed files with 64 additions and 1 deletions

View File

@ -864,7 +864,7 @@
},
"digital-signature-screen": {
"title": "Digital Signature",
"no-key": "No Digital Signature certificate is configured. For signing redacted documents please upload an PCKS.12 certificate.",
"no-key": "No Digital Signature certificate is configured. For signing redacted documents please upload a PCKS.12 certificate.",
"upload-key": "Upload Certificate",
"reason": {
"label": "Reason",

View File

@ -21,6 +21,7 @@ import { PrepareDownloadRequest } from '../model/prepareDownloadRequest';
import { BASE_PATH } from '../variables';
import { Configuration } from '../configuration';
import { RemoveDownloadRequest } from '../model/removeDownloadRequest';
@Injectable()
export class DownloadControllerService {
@ -138,6 +139,52 @@ export class DownloadControllerService {
});
}
/**
* Removes a previously created download status
* None
* @param body removeDownloadRequest
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
public deleteDownload(body: RemoveDownloadRequest, observe?: 'body', reportProgress?: boolean): Observable<any>;
public deleteDownload(body: RemoveDownloadRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
public deleteDownload(body: RemoveDownloadRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
public deleteDownload(body: RemoveDownloadRequest, observe: any = 'body', reportProgress: boolean = false): Observable<any> {
if (body === null || body === undefined) {
throw new Error('Required parameter body was null or undefined when calling prepareDownload.');
}
let headers = this.defaultHeaders;
// authentication (RED-OAUTH) required
if (this.configuration.accessToken) {
const accessToken = typeof this.configuration.accessToken === 'function' ? this.configuration.accessToken() : this.configuration.accessToken;
headers = headers.set('Authorization', 'Bearer ' + accessToken);
}
// to determine the Accept header
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected !== undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes: string[] = ['application/json'];
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected !== undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.request<any>('post', `${this.basePath}/async/download/delete`, {
body: body,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
/**
* Prepares a download for given fileIds and types
* None

View File

@ -65,3 +65,4 @@ export * from './importCsvRequest';
export * from './importCsvResponse';
export * from './fileAttributeConfig';
export * from './fileAttributesBaseConfigRequest';
export * from './removeDownloadRequest';

View File

@ -0,0 +1,15 @@
/**
* API Documentation for Redaction Gateway
* Description for redaction
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
export interface RemoveDownloadRequest {
storageId?: string;
}