@adonoustech/bacon-tax 3.12.2 → 3.13.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.13.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": "797b737a7d85686fa10ff6f7585e916f223411c6"
|
|
40
40
|
}
|
|
@@ -2289,5 +2289,27 @@ export const ActionTaxFragments = [
|
|
|
2289
2289
|
<p>If you need a template or guidance on how to organize this information, please let us know, and we'll provide the necessary tools to assist you.</p>
|
|
2290
2290
|
|
|
2291
2291
|
<p>Providing this data will help us accurately calculate your travel-related deductions and optimize your tax return. If you have any questions about what qualifies as a business expense or how to document your travel, please don't hesitate to ask.</p>`
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
actionTaxSubject: "Reduced Tax on Tips",
|
|
2295
|
+
actionTitle: "Reduced Tax on Tips (OBBBA) Documentation",
|
|
2296
|
+
actionInstructions: `<p>You indicated you want to claim the <strong>Reduced Tax on Tips</strong> deduction under the One Big Beautiful Bill Act (OBBBA). This deduction allows qualifying tipped workers to exclude up to $25,000 in tips from taxable income for tax years 2025-2028.</p>
|
|
2297
|
+
|
|
2298
|
+
<p><strong>Eligibility Requirements:</strong></p>
|
|
2299
|
+
<ol>
|
|
2300
|
+
<li><strong>Occupation Test:</strong> Your occupation must have customarily received tips before December 31, 2024 (e.g., server, bartender, hairdresser, valet, delivery driver).</li>
|
|
2301
|
+
<li><strong>Filing Status:</strong> You must file a joint return if married. This deduction is not available for Married Filing Separately.</li>
|
|
2302
|
+
<li><strong>Income Phase-out:</strong> The deduction phases out at $150,000 MAGI (single/head of household) or $300,000 MAGI (married filing jointly).</li>
|
|
2303
|
+
</ol>
|
|
2304
|
+
|
|
2305
|
+
<p><strong>Required Documentation:</strong></p>
|
|
2306
|
+
<ol>
|
|
2307
|
+
<li><strong>W-2 Form:</strong> Box 7 (Social Security tips) and Box 8 (Allocated tips)</li>
|
|
2308
|
+
<li><strong>Form 4070 or Daily Tip Log:</strong> Records of tips reported to your employer</li>
|
|
2309
|
+
<li><strong>Form 4137:</strong> Required if you have unreported tips subject to Social Security and Medicare tax</li>
|
|
2310
|
+
<li><strong>1099-MISC, 1099-NEC, or 1099-K:</strong> For tips received as a non-employee (e.g., independent contractor)</li>
|
|
2311
|
+
</ol>
|
|
2312
|
+
|
|
2313
|
+
<p>Please provide all applicable documentation to ensure we can accurately calculate your Reduced Tax on Tips deduction and verify eligibility requirements are met.</p>`
|
|
2292
2314
|
}
|
|
2293
2315
|
];
|
|
@@ -126,5 +126,6 @@ export const enum ActionTaxSubjects {
|
|
|
126
126
|
BusinessAssetsSold = "Business Assets Sold",
|
|
127
127
|
HomeOfficeDeduction = "Home Office Deduction",
|
|
128
128
|
BusinessUsePersonalVehicle = "Business Use of Personal Vehicle",
|
|
129
|
-
BusinessTravelPersonalFunds = "Business Travel Paid with Personal Funds"
|
|
129
|
+
BusinessTravelPersonalFunds = "Business Travel Paid with Personal Funds",
|
|
130
|
+
ReducedTaxOnTips = "Reduced Tax on Tips"
|
|
130
131
|
}
|
|
@@ -25,6 +25,12 @@ export interface IEmployeeCompensationModel {
|
|
|
25
25
|
/** Extended data for tip income - collected inline when Yes is selected */
|
|
26
26
|
hasTipIncomeExtended?: IIntakeExtendedData;
|
|
27
27
|
tipIncomeAmount: number;
|
|
28
|
+
/** Whether the taxpayer's occupation customarily received tips before Dec 31, 2024 */
|
|
29
|
+
tipOccupationQualifies?: boolean;
|
|
30
|
+
/** Whether taxpayer wants to claim the Reduced Tax on Tips deduction */
|
|
31
|
+
claimReducedTipTax?: boolean;
|
|
32
|
+
/** Extended data for Reduced Tax on Tips documentation */
|
|
33
|
+
claimReducedTipTaxExtended?: IIntakeExtendedData;
|
|
28
34
|
hasAccountablePlan: boolean;
|
|
29
35
|
/** Extended data for employee accountable plan - collected inline when Yes is selected */
|
|
30
36
|
hasAccountablePlanExtended?: IIntakeExtendedData;
|