updated file attributes
This commit is contained in:
parent
591e4874f1
commit
579a36d579
@ -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
|
||||
|
||||
@ -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<any>;
|
||||
public setFileAttributesConfiguration1(
|
||||
public deleteFileAttributesConfiguration(ruleSetId: string, fileAttributeId: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
||||
public deleteFileAttributesConfiguration(
|
||||
ruleSetId: string,
|
||||
fileAttributeId: string,
|
||||
observe?: 'response',
|
||||
reportProgress?: boolean
|
||||
): Observable<HttpResponse<any>>;
|
||||
public setFileAttributesConfiguration1(
|
||||
public deleteFileAttributesConfiguration(
|
||||
ruleSetId: string,
|
||||
fileAttributeId: string,
|
||||
observe?: 'events',
|
||||
reportProgress?: boolean
|
||||
): Observable<HttpEvent<any>>;
|
||||
public setFileAttributesConfiguration1(
|
||||
public deleteFileAttributesConfiguration(
|
||||
ruleSetId: string,
|
||||
fileAttributeId: string,
|
||||
observe: any = 'body',
|
||||
|
||||
@ -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<FileAttribute>;
|
||||
delimiter?: string;
|
||||
fileAttributeConfigs?: Array<FileAttributeConfig>;
|
||||
filenameMappingColumnHeaderName?: string;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user