From c0ed5640f2af34cf0a74b538bf10894cbe8910ee Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 5 Jul 2026 10:09:59 +0200 Subject: [PATCH] Setup categories and platforms --- libs/common/src/lib/types/product-category.type.ts | 12 ++++++++++++ libs/common/src/lib/types/product-platform.type.ts | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 libs/common/src/lib/types/product-category.type.ts create mode 100644 libs/common/src/lib/types/product-platform.type.ts diff --git a/libs/common/src/lib/types/product-category.type.ts b/libs/common/src/lib/types/product-category.type.ts new file mode 100644 index 0000000000..7fae17a72f --- /dev/null +++ b/libs/common/src/lib/types/product-category.type.ts @@ -0,0 +1,12 @@ +export type ProductCategory = + | 'BUDGETING' + | 'CRYPTOCURRENCY' + | 'DIVIDEND_TRACKING' + | 'ETF_TRACKING' + | 'FAMILY_OFFICE' + | 'FINANCIAL_PLANNING' + | 'INVESTMENT_RESEARCH' + | 'NET_WORTH_TRACKING' + | 'STOCK_TRACKING' + | 'TAX_REPORTING' + | 'WEALTH_MANAGEMENT'; diff --git a/libs/common/src/lib/types/product-platform.type.ts b/libs/common/src/lib/types/product-platform.type.ts new file mode 100644 index 0000000000..01f647e49f --- /dev/null +++ b/libs/common/src/lib/types/product-platform.type.ts @@ -0,0 +1,7 @@ +export type ProductPlatform = + | 'ANDROID' + | 'IOS' + | 'LINUX' + | 'MACOS' + | 'WEB' + | 'WINDOWS';