@adonoustech/bacon-tax 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonoustech/bacon-tax",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
6
6
|
"build:es": "tsc -p tsconfig.es.json",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/AdonousTech/bacon-tax/issues"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "2248da5caee1eccf5ee528b4eefad3cbc26195ed"
|
|
40
40
|
}
|
|
@@ -1,13 +1,45 @@
|
|
|
1
|
+
import { IIntakeExtendedData } from "./i-intake-extended-data";
|
|
2
|
+
|
|
1
3
|
export interface ICapitalGainsLossModel {
|
|
2
4
|
disposedCapitalAssets: boolean;
|
|
5
|
+
/** Extended data for disposed capital assets - collected inline when Yes is selected */
|
|
6
|
+
disposedCapitalAssetsExtended?: IIntakeExtendedData;
|
|
7
|
+
|
|
3
8
|
disposedDigitalAssets: boolean;
|
|
9
|
+
/** Extended data for disposed digital assets (cryptocurrency) - collected inline when Yes is selected */
|
|
10
|
+
disposedDigitalAssetsExtended?: IIntakeExtendedData;
|
|
11
|
+
|
|
4
12
|
mutualFundGainProfit: boolean;
|
|
5
|
-
|
|
13
|
+
/** Extended data for mutual fund gains/profits - collected inline when Yes is selected */
|
|
14
|
+
mutualFundGainProfitExtended?: IIntakeExtendedData;
|
|
15
|
+
|
|
16
|
+
mutualFundDisposal: boolean;
|
|
17
|
+
/** Extended data for mutual fund disposals - collected inline when Yes is selected */
|
|
18
|
+
mutualFundDisposalExtended?: IIntakeExtendedData;
|
|
19
|
+
|
|
6
20
|
mutualFundGainProfitAmount: number;
|
|
21
|
+
|
|
7
22
|
hasWashSale: boolean;
|
|
23
|
+
/** Extended data for wash sales - collected inline when Yes is selected */
|
|
24
|
+
hasWashSaleExtended?: IIntakeExtendedData;
|
|
25
|
+
|
|
8
26
|
soldHome: boolean;
|
|
27
|
+
/** Extended data for home sales - collected inline when Yes is selected */
|
|
28
|
+
soldHomeExtended?: IIntakeExtendedData;
|
|
29
|
+
|
|
9
30
|
hasInstallmentSalePayments: boolean;
|
|
31
|
+
/** Extended data for installment sale payments - collected inline when Yes is selected */
|
|
32
|
+
hasInstallmentSalePaymentsExtended?: IIntakeExtendedData;
|
|
33
|
+
|
|
10
34
|
hasWorthlessSecurities: boolean;
|
|
35
|
+
/** Extended data for worthless securities - collected inline when Yes is selected */
|
|
36
|
+
hasWorthlessSecuritiesExtended?: IIntakeExtendedData;
|
|
37
|
+
|
|
11
38
|
hasSec124SmallBusinessStock: boolean;
|
|
39
|
+
/** Extended data for Section 1244 small business stock - collected inline when Yes is selected */
|
|
40
|
+
hasSec124SmallBusinessStockExtended?: IIntakeExtendedData;
|
|
41
|
+
|
|
12
42
|
hasRelatedPartyTransactions: boolean;
|
|
43
|
+
/** Extended data for related party transactions - collected inline when Yes is selected */
|
|
44
|
+
hasRelatedPartyTransactionsExtended?: IIntakeExtendedData;
|
|
13
45
|
}
|