Skip to content

Commit ebb6fee

Browse files
authored
feat: add mutual funds subtypes (#30)
1 parent e813bc8 commit ebb6fee

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

src/types/investment.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,22 @@ export const COE_INVESTMENT_SUBTYPES = [
2929
export type CoeInvestmentSubtype = typeof COE_INVESTMENT_SUBTYPES[number]
3030

3131
export const MUTUAL_FUND_INVESTMENT_SUBTYPES = [
32-
'INVESTMENT_FUND',
32+
/*! Default subtype */
33+
'INVESTMENT_FUND',
34+
/*! Multimercados */
35+
'MULTIMARKET_FUND',
36+
/*! Fundos de Renda Fixa */
37+
'FIXED_INCOME_FUND',
38+
/*! Fundos de Acoes */
39+
'STOCK_FUND',
40+
/*! Fundos de ETF */
41+
'ETF_FUND',
42+
/*! Fundos Offshores */
43+
'OFFSHORE_FUND',
44+
/*! Fundos de Multiestratégia */
45+
'FIP_FUND',
46+
/*! Fundos de Cambio/Cambial */
47+
'EXCHANGE_FUND',
3348
] as const
3449
export type MutualFundInvestmentSubtype = typeof MUTUAL_FUND_INVESTMENT_SUBTYPES[number]
3550

@@ -45,6 +60,7 @@ export const EQUITY_INVESTMENT_SUBTYPES = [
4560
/*! BRAZILIAN_DEPOSITARY_RECEIPT */
4661
'BDR',
4762
'DERIVATIVES',
63+
'OPTION',
4864
] as const
4965
export type EquityInvestmentSubtype = typeof EQUITY_INVESTMENT_SUBTYPES[number]
5066

0 commit comments

Comments
 (0)