regenerated http calls
This commit is contained in:
parent
1bea2aecc9
commit
eb25c27e0b
@ -291,14 +291,26 @@ export class FilePreviewScreenComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public rejectSuggestion($event: MouseEvent, annotation: AnnotationWrapper) {
|
public rejectSuggestion($event: MouseEvent, annotation: AnnotationWrapper) {
|
||||||
this._dialogRef = this._dialogService.openRejectSuggestionModal($event, annotation, () => {
|
this.ngZone.run(() => {
|
||||||
this._cleanupAndRedrawManualAnnotations();
|
this._dialogRef = this._dialogService.openRejectSuggestionModal(
|
||||||
|
$event,
|
||||||
|
annotation,
|
||||||
|
() => {
|
||||||
|
this._cleanupAndRedrawManualAnnotations();
|
||||||
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
suggestRemoveAnnotation($event: MouseEvent, annotation: AnnotationWrapper) {
|
suggestRemoveAnnotation($event: MouseEvent, annotation: AnnotationWrapper) {
|
||||||
this._dialogRef = this._dialogService.openRemoveAnnotationModal($event, annotation, () => {
|
this.ngZone.run(() => {
|
||||||
this._cleanupAndRedrawManualAnnotations();
|
this._dialogRef = this._dialogService.openRemoveAnnotationModal(
|
||||||
|
$event,
|
||||||
|
annotation,
|
||||||
|
() => {
|
||||||
|
this._cleanupAndRedrawManualAnnotations();
|
||||||
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -16,6 +16,7 @@ export interface AddRedactionRequest {
|
|||||||
type?: string;
|
type?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
|
legalBasis?: string;
|
||||||
addToDictionary?: boolean;
|
addToDictionary?: boolean;
|
||||||
positions?: Array<Rectangle>;
|
positions?: Array<Rectangle>;
|
||||||
comment?: AddCommentRequest;
|
comment?: AddCommentRequest;
|
||||||
|
|||||||
@ -74,6 +74,10 @@ export interface FileStatus {
|
|||||||
* The status of the file with regard to its analysis an review processes.
|
* The status of the file with regard to its analysis an review processes.
|
||||||
*/
|
*/
|
||||||
status?: FileStatus.StatusEnum;
|
status?: FileStatus.StatusEnum;
|
||||||
|
/**
|
||||||
|
* The ID of the user who uploaded the file.
|
||||||
|
*/
|
||||||
|
uploader?: string;
|
||||||
}
|
}
|
||||||
export namespace FileStatus {
|
export namespace FileStatus {
|
||||||
export type StatusEnum =
|
export type StatusEnum =
|
||||||
|
|||||||
@ -9,16 +9,15 @@
|
|||||||
* https://github.com/swagger-api/swagger-codegen.git
|
* https://github.com/swagger-api/swagger-codegen.git
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
import { Comment } from './comment';
|
|
||||||
|
|
||||||
export interface IdRemoval {
|
export interface IdRemoval {
|
||||||
comments?: Array<Comment>;
|
|
||||||
id?: string;
|
id?: string;
|
||||||
|
processedDate?: string;
|
||||||
removeFromDictionary?: boolean;
|
removeFromDictionary?: boolean;
|
||||||
|
requestDate?: string;
|
||||||
status?: IdRemoval.StatusEnum;
|
status?: IdRemoval.StatusEnum;
|
||||||
user?: string;
|
user?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export namespace IdRemoval {
|
export namespace IdRemoval {
|
||||||
export type StatusEnum = 'REQUESTED' | 'APPROVED' | 'DECLINED';
|
export type StatusEnum = 'REQUESTED' | 'APPROVED' | 'DECLINED';
|
||||||
export const StatusEnum = {
|
export const StatusEnum = {
|
||||||
|
|||||||
@ -16,13 +16,13 @@ export interface ManualRedactionEntry {
|
|||||||
id?: string;
|
id?: string;
|
||||||
legalBasis?: string;
|
legalBasis?: string;
|
||||||
positions?: Array<Rectangle>;
|
positions?: Array<Rectangle>;
|
||||||
|
processedDate?: string;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
|
requestDate?: string;
|
||||||
status?: ManualRedactionEntry.StatusEnum;
|
status?: ManualRedactionEntry.StatusEnum;
|
||||||
type?: string;
|
type?: string;
|
||||||
user?: string;
|
user?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
requestDate?: string;
|
|
||||||
processedDate?: string;
|
|
||||||
}
|
}
|
||||||
export namespace ManualRedactionEntry {
|
export namespace ManualRedactionEntry {
|
||||||
export type StatusEnum = 'REQUESTED' | 'APPROVED' | 'DECLINED';
|
export type StatusEnum = 'REQUESTED' | 'APPROVED' | 'DECLINED';
|
||||||
|
|||||||
@ -32,3 +32,5 @@ export * from './user';
|
|||||||
export * from './userRequest';
|
export * from './userRequest';
|
||||||
export * from './userResponse';
|
export * from './userResponse';
|
||||||
export * from './versionsResponse';
|
export * from './versionsResponse';
|
||||||
|
export * from './viewedPages';
|
||||||
|
export * from './viewedPagesRequest';
|
||||||
|
|||||||
@ -13,14 +13,13 @@
|
|||||||
export interface Project {
|
export interface Project {
|
||||||
date?: string;
|
date?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
|
dueDate?: string;
|
||||||
memberIds?: Array<string>;
|
memberIds?: Array<string>;
|
||||||
ownerId?: string;
|
ownerId?: string;
|
||||||
projectId?: string;
|
projectId?: string;
|
||||||
dueDate?: string;
|
|
||||||
projectName?: string;
|
projectName?: string;
|
||||||
status?: Project.StatusEnum;
|
status?: Project.StatusEnum;
|
||||||
}
|
}
|
||||||
|
|
||||||
export namespace Project {
|
export namespace Project {
|
||||||
export type StatusEnum = 'ACTIVE' | 'DELETED';
|
export type StatusEnum = 'ACTIVE' | 'DELETED';
|
||||||
export const StatusEnum = {
|
export const StatusEnum = {
|
||||||
|
|||||||
@ -9,10 +9,9 @@
|
|||||||
* https://github.com/swagger-api/swagger-codegen.git
|
* https://github.com/swagger-api/swagger-codegen.git
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*/
|
*/
|
||||||
import { AddCommentRequest } from './addCommentRequest';
|
|
||||||
|
|
||||||
export interface RemoveRedactionRequest {
|
export interface RemoveRedactionRequest {
|
||||||
annotationId?: string;
|
annotationId?: string;
|
||||||
removeFromDictionary?: boolean;
|
removeFromDictionary?: boolean;
|
||||||
comment?: AddCommentRequest;
|
comment?: string;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -20,7 +20,6 @@ export interface ReportData {
|
|||||||
project?: string;
|
project?: string;
|
||||||
status?: ReportData.StatusEnum;
|
status?: ReportData.StatusEnum;
|
||||||
}
|
}
|
||||||
|
|
||||||
export namespace ReportData {
|
export namespace ReportData {
|
||||||
export type StatusEnum =
|
export type StatusEnum =
|
||||||
| 'UNPROCESSED'
|
| 'UNPROCESSED'
|
||||||
|
|||||||
@ -32,6 +32,4 @@ export interface TypeValue {
|
|||||||
*/
|
*/
|
||||||
type?: string;
|
type?: string;
|
||||||
isDefaultFilter?: boolean;
|
isDefaultFilter?: boolean;
|
||||||
virtual?: boolean;
|
|
||||||
label?: string;
|
|
||||||
}
|
}
|
||||||
|
|||||||
15
libs/red-ui-http/src/lib/model/viewedPages.ts
Normal file
15
libs/red-ui-http/src/lib/model/viewedPages.ts
Normal 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 ViewedPages {
|
||||||
|
pages?: Array<number>;
|
||||||
|
}
|
||||||
15
libs/red-ui-http/src/lib/model/viewedPagesRequest.ts
Normal file
15
libs/red-ui-http/src/lib/model/viewedPagesRequest.ts
Normal 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 ViewedPagesRequest {
|
||||||
|
page?: number;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user