From 5bd7b916f52b96b4fc6641b2c24c550623b23805 Mon Sep 17 00:00:00 2001 From: Brian Hall Date: Tue, 22 Oct 2024 15:21:27 -0500 Subject: [PATCH] Support conditional actions in Personal Information Removal --- .../DataBrokerProtection/Model/Actions/Expectaction.swift | 2 ++ 1 file changed, 2 insertions(+) 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]? }