File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,22 @@ export const COE_INVESTMENT_SUBTYPES = [
2929export type CoeInvestmentSubtype = typeof COE_INVESTMENT_SUBTYPES [ number ]
3030
3131export 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
3449export 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
4965export type EquityInvestmentSubtype = typeof EQUITY_INVESTMENT_SUBTYPES [ number ]
5066
You can’t perform that action at this time.
0 commit comments