Skip to content

Commit

Permalink
fix: oubli dans le commit précédent
Browse files Browse the repository at this point in the history
  • Loading branch information
ocruze committed Nov 21, 2024
1 parent 1c2ca0b commit 4f262e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/@types/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export { EndpointDetailResponseDtoTypeEnum as EndpointTypeEnum };

export type CheckOrProcessingExecutionLogs = [string];
export type CheckDetailed = CheckingExecutionDetailResponseDto & {
logs: CheckOrProcessingExecutionLogs;
logs?: CheckOrProcessingExecutionLogs;
};

export type ProcessingExecution = ProcessingExecutionDetailResponseDto;
Expand All @@ -245,9 +245,9 @@ export type StoredDataReport = {
processing_executions: StoredDataReportProcessingExecution[];
};

type StoredDataReportProcessingExecution = ProcessingExecution & {
export type StoredDataReportProcessingExecution = ProcessingExecution & {
output: ProcessingExecutionOutputStoredDataDto;
logs: CheckOrProcessingExecutionLogs;
logs?: CheckOrProcessingExecutionLogs;
};

export type UserRightsResponseDto = {
Expand Down

0 comments on commit 4f262e8

Please sign in to comment.