From 950a11ba4f953f053c469454cb5dc798fbe394ef Mon Sep 17 00:00:00 2001 From: Braxton Ward Date: Fri, 10 Apr 2026 10:58:00 -0600 Subject: [PATCH 1/2] feat: add manage product type --- src/constants.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/constants.tsx b/src/constants.tsx index 0a2d86c..b05c675 100644 --- a/src/constants.tsx +++ b/src/constants.tsx @@ -5,6 +5,7 @@ export const Product = { WITHHOLD: 'withhold', PRESENT: 'present', SWITCH: 'switch', + MANAGE: 'manage', }; export const Scope = { @@ -48,7 +49,7 @@ export const DeferredPaymentMethodStrategy = { export const App = { PAY_NOW: 'pay-now', - TRANSACTIONS: 'transactions', + EXPENSES: 'expenses', ORDERS: 'orders', SUGGESTIONS: 'suggestions', } as const; From 76f0d230ad6ce6ea7ecad9b66a80cd170e080ab2 Mon Sep 17 00:00:00 2001 From: Braxton Ward Date: Fri, 10 Apr 2026 11:04:33 -0600 Subject: [PATCH 2/2] feat: update example app with manage config options --- example/screens/TransactScreen.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/example/screens/TransactScreen.tsx b/example/screens/TransactScreen.tsx index 9f79fae..220cedd 100644 --- a/example/screens/TransactScreen.tsx +++ b/example/screens/TransactScreen.tsx @@ -51,6 +51,7 @@ const TransactScreen: React.FC = () => { { key: Product.DEPOSIT, label: 'Deposit' }, { key: Product.PRESENT, label: 'Present' }, { key: Product.SWITCH, label: 'Switch' }, + { key: Product.MANAGE, label: 'Manage' }, ]; const getScope = () => {