Skip to content

Commit

Permalink
fix: update AASApiClientV3 unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfaron committed Aug 29, 2024
1 parent 203b215 commit 5edf0cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ interface OperationRequest {
clientTimeoutDuration?: string;
}

interface Message {
export interface Message {
code?: string;
correlationId?: string;
messageType: 'Undefined' | 'Info' | 'Warning' | 'Error' | 'Exception';
text: string;
timeStamp?: string;
}

interface OperationResult {
export interface OperationResult {
messages?: Message[];
executionState: 'Initiated' | 'Running' | 'Completed' | 'Canceled' | 'Failed' | 'Timeout';
success: boolean;
Expand Down

0 comments on commit 5edf0cc

Please sign in to comment.