diff --git a/README.md b/README.md index 122b062a6..27e42e3ee 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ To re-generate http rune swagger YOu need swagger-codegen installed `brew install swagger-codegen` ``` -BASE=http://redaction.redaction-timo-latest.178.63.47.73.xip.io/ +BASE=https://timo-redaction-dev-2.iqser.cloud/ URL="$BASE"v2/api-docs?group=redaction-gateway-v1 mkdir -p /tmp/swagger swagger-codegen generate -i "$URL" -l typescript-angular -o /tmp/swagger diff --git a/libs/red-ui-http/src/lib/api/fileAttributesController.service.ts b/libs/red-ui-http/src/lib/api/fileAttributesController.service.ts index a985f86e9..7fba1da0e 100644 --- a/libs/red-ui-http/src/lib/api/fileAttributesController.service.ts +++ b/libs/red-ui-http/src/lib/api/fileAttributesController.service.ts @@ -381,24 +381,24 @@ export class FileAttributesControllerService { * Delete a specific file attribute. * None * @param ruleSetId ruleSetId - * @param ruleSetId ruleSetId + * @param fileAttributeId fileAttributeId * @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 setFileAttributesConfiguration1(ruleSetId: string, fileAttributeId: string, observe?: 'body', reportProgress?: boolean): Observable; - public setFileAttributesConfiguration1( + public deleteFileAttributesConfiguration(ruleSetId: string, fileAttributeId: string, observe?: 'body', reportProgress?: boolean): Observable; + public deleteFileAttributesConfiguration( ruleSetId: string, fileAttributeId: string, observe?: 'response', reportProgress?: boolean ): Observable>; - public setFileAttributesConfiguration1( + public deleteFileAttributesConfiguration( ruleSetId: string, fileAttributeId: string, observe?: 'events', reportProgress?: boolean ): Observable>; - public setFileAttributesConfiguration1( + public deleteFileAttributesConfiguration( ruleSetId: string, fileAttributeId: string, observe: any = 'body', diff --git a/libs/red-ui-http/src/lib/model/fileAttributesConfig.ts b/libs/red-ui-http/src/lib/model/fileAttributesConfig.ts index 2ab9b474e..086b504b8 100644 --- a/libs/red-ui-http/src/lib/model/fileAttributesConfig.ts +++ b/libs/red-ui-http/src/lib/model/fileAttributesConfig.ts @@ -9,8 +9,10 @@ * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ -import { FileAttribute } from './fileAttribute'; +import { FileAttributeConfig } from './fileAttributeConfig'; export interface FileAttributesConfig { - fileAttributes?: Array; + delimiter?: string; + fileAttributeConfigs?: Array; + filenameMappingColumnHeaderName?: string; }