wip
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { AuthenticationState } from '../../domain/value-objects/AuthenticationState';
|
||||
import { BrowserAuthenticationState } from '../../domain/value-objects/BrowserAuthenticationState';
|
||||
import { AuthenticationState } from '../../automation-domain/value-objects/AuthenticationState';
|
||||
import { BrowserAuthenticationState } from '../../automation-domain/value-objects/BrowserAuthenticationState';
|
||||
import { Result } from '../../shared/result/Result';
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { HostedSessionConfig } from '../../domain/entities/HostedSessionConfig';
|
||||
import { StepId } from '../../domain/value-objects/StepId';
|
||||
import { HostedSessionConfig } from '../../automation-domain/entities/HostedSessionConfig';
|
||||
import { StepId } from '../../automation-domain/value-objects/StepId';
|
||||
|
||||
export interface ValidationResult {
|
||||
isValid: boolean;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Result } from '../../shared/result/Result';
|
||||
import { CheckoutConfirmation } from '../../domain/value-objects/CheckoutConfirmation';
|
||||
import { CheckoutPrice } from '../../domain/value-objects/CheckoutPrice';
|
||||
import { CheckoutState } from '../../domain/value-objects/CheckoutState';
|
||||
import { CheckoutConfirmation } from '../../automation-domain/value-objects/CheckoutConfirmation';
|
||||
import { CheckoutPrice } from '../../automation-domain/value-objects/CheckoutPrice';
|
||||
import { CheckoutState } from '../../automation-domain/value-objects/CheckoutState';
|
||||
|
||||
export interface CheckoutConfirmationRequest {
|
||||
price: CheckoutPrice;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { Result } from '../../shared/result/Result';
|
||||
import { CheckoutPrice } from '../../domain/value-objects/CheckoutPrice';
|
||||
import { CheckoutState } from '../../domain/value-objects/CheckoutState';
|
||||
import { CheckoutPrice } from '../../automation-domain/value-objects/CheckoutPrice';
|
||||
import { CheckoutState } from '../../automation-domain/value-objects/CheckoutState';
|
||||
|
||||
export interface CheckoutInfo {
|
||||
price: CheckoutPrice | null;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { StepId } from '../../domain/value-objects/StepId';
|
||||
import { StepId } from '../../automation-domain/value-objects/StepId';
|
||||
import {
|
||||
NavigationResult,
|
||||
FormFillResult,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { AutomationSession } from '../../domain/entities/AutomationSession';
|
||||
import { SessionStateValue } from '../../domain/value-objects/SessionState';
|
||||
import { AutomationSession } from '../../automation-domain/entities/AutomationSession';
|
||||
import { SessionStateValue } from '../../automation-domain/value-objects/SessionState';
|
||||
|
||||
export interface ISessionRepository {
|
||||
save(session: AutomationSession): Promise<void>;
|
||||
|
||||
Reference in New Issue
Block a user