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';