Fix ITMS-90626: quitar 'Siri' de descripciones de App Intents + build 78

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01L38583J7AYWCVPevkivscj
This commit is contained in:
alexandrev-tibco
2026-08-06 20:11:58 +02:00
parent 9c2a67853d
commit d941ecf27b
2 changed files with 14 additions and 12 deletions
@@ -234,7 +234,8 @@ enum SharedPortfolioReader {
/// from the shared store and speaks it back. Runs headless (no app launch).
struct NetWorthIntent: AppIntent {
static let title: LocalizedStringResource = "Check Net Worth"
static let description = IntentDescription("Ask Siri for your total portfolio value.")
// ITMS-90626: intent descriptions must not contain the word "Siri".
static let description = IntentDescription("Get your total portfolio value.")
static let openAppWhenRun = false
@MainActor
@@ -260,7 +261,8 @@ struct NetWorthIntent: AppIntent {
/// and when you last logged. Nice-to-have engagement surface. Runs headless.
struct StreakIntent: AppIntent {
static let title: LocalizedStringResource = "Check Streak"
static let description = IntentDescription("Ask Siri about your current check-in streak.")
// ITMS-90626: intent descriptions must not contain the word "Siri".
static let description = IntentDescription("Get your current check-in streak.")
static let openAppWhenRun = false
@MainActor