diff --git a/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/Model/Actions/Expectaction.swift b/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/Model/Actions/Expectaction.swift index d3669a3290..1814e0ccc4 100644 --- a/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/Model/Actions/Expectaction.swift +++ b/LocalPackages/DataBrokerProtection/Sources/DataBrokerProtection/Model/Actions/Expectaction.swift @@ -29,6 +29,7 @@ struct Item: Codable, Sendable { let expect: String? let selector: String? let parent: String? + let failSilently: Bool? } internal struct ExpectationAction: Action { @@ -36,4 +37,5 @@ internal struct ExpectationAction: Action { let actionType: ActionType let expectations: [Item] let dataSource: DataSource? + let actions: [Action]? }