@paro.io/expert-shared-components 1.14.70 → 1.14.72
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/lib/components/TaxAxis/TaxAxisApi.d.ts +0 -8
- package/lib/components/TaxAxis/TaxAxisShell.js +13 -29
- package/lib/tax-axis/components/clientReport/ExecutiveSummary.d.ts +4 -2
- package/lib/tax-axis/components/clientReport/ExecutiveSummary.js +18 -12
- package/lib/tax-axis/components/clientReport/ImplementationRoadmap.d.ts +5 -3
- package/lib/tax-axis/components/clientReport/ImplementationRoadmap.js +12 -9
- package/lib/tax-axis/components/clientReport/ImplementationTimelineChart.d.ts +2 -1
- package/lib/tax-axis/components/clientReport/ImplementationTimelineChart.js +9 -3
- package/lib/tax-axis/components/clientReport/QuarterlyCashChart.d.ts +2 -1
- package/lib/tax-axis/components/clientReport/QuarterlyCashChart.js +9 -3
- package/lib/tax-axis/components/clientReport/TaxAxisClientReport.js +22 -6
- package/lib/tax-axis/components/dashboard/StrategyDetailPanel.js +3 -1
- package/lib/tax-axis/components/dashboard/TaxAxisDashboard.js +5 -2
- package/lib/tax-axis/components/intake/ClientParametersSection.js +14 -4
- package/lib/tax-axis/components/intake/IntakeCtaCards.d.ts +2 -8
- package/lib/tax-axis/components/intake/IntakeCtaCards.js +7 -70
- package/lib/tax-axis/components/intake/TaxAxisIntake.js +1 -1
- package/lib/tax-axis/components/intake/intakeSchema.js +1 -1
- package/lib/tax-axis/components/preparerWorkpaper/EngagementHeader.js +6 -2
- package/lib/tax-axis/components/preparerWorkpaper/TaxAxisPreparerWorkpaper.js +3 -3
- package/lib/tax-axis/components/processing/TaxAxisProcessing.d.ts +1 -5
- package/lib/tax-axis/components/processing/TaxAxisProcessing.js +11 -27
- package/lib/tax-axis/components/prospectReport/ProspectNextSteps.js +1 -3
- package/lib/tax-axis/components/prospectReport/ProspectStrategyCard.d.ts +1 -7
- package/lib/tax-axis/components/prospectReport/ProspectStrategyCard.js +6 -8
- package/lib/tax-axis/components/prospectReport/TaxAxisProspectReport.d.ts +1 -33
- package/lib/tax-axis/components/prospectReport/TaxAxisProspectReport.js +56 -57
- package/lib/tax-axis/lib/adapters/useEngineOutput.d.ts +42 -58
- package/lib/tax-axis/lib/adapters/useEngineOutput.js +136 -36
- package/lib/tax-axis/lib/data/nextSteps.js +13 -13
- package/lib/tax-axis/lib/data/sourceDescriptions.js +6 -0
- package/lib/tax-axis/lib/documentFieldCatalog.d.ts +10 -5
- package/lib/tax-axis/lib/documentFieldCatalog.js +329 -115
- package/lib/tax-axis/lib/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/lib/tax-axis/components/prospectReport/ProspectReportSkeleton.d.ts +0 -2
- package/lib/tax-axis/components/prospectReport/ProspectReportSkeleton.js +0 -78
|
@@ -1,196 +1,410 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
//
|
|
3
|
-
//
|
|
2
|
+
// documentFieldCatalog — per-documentType section/field metadata for the Review modal.
|
|
3
|
+
// Sections group extracted fields into labeled categories (Revenue, Expenses, etc.).
|
|
4
|
+
// Field defs provide human-readable labels and source line references.
|
|
5
|
+
// Built from backend extraction schemas in paro-graphql-api/src/tax-axis/catalog/documentCatalog.ts.
|
|
4
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
7
|
exports.DOCUMENT_FIELD_CATALOG = void 0;
|
|
8
|
+
/**
|
|
9
|
+
* Keyed by documentType string returned by the backend in parsedData.documentType.
|
|
10
|
+
* When DocumentReviewModal receives parsedData, it looks up the documentType here
|
|
11
|
+
* to get section groupings and field labels. Falls back to flat rendering if no entry.
|
|
12
|
+
*/
|
|
6
13
|
exports.DOCUMENT_FIELD_CATALOG = {
|
|
7
|
-
|
|
14
|
+
// ── Profit & Loss ──
|
|
15
|
+
profit_loss: {
|
|
8
16
|
sections: [
|
|
17
|
+
{ head: "Revenue", fields: ["total_revenue", "cost_of_goods_sold", "gross_profit"] },
|
|
9
18
|
{
|
|
10
|
-
head: "
|
|
11
|
-
fields: [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
head: "Operating Expenses",
|
|
20
|
+
fields: [
|
|
21
|
+
"officer_compensation", "salaries_wages_staff", "employee_benefits",
|
|
22
|
+
"payroll_taxes_employer", "employer_retirement_contribution",
|
|
23
|
+
"rent_expense", "utilities", "software_subscriptions",
|
|
24
|
+
"professional_fees", "advertising_marketing", "travel",
|
|
25
|
+
"business_meals", "office_supplies", "insurance_nonhealth",
|
|
26
|
+
"repairs_maintenance", "bank_fees", "contract_labor",
|
|
27
|
+
"mortgage_interest", "business_interest_nonmortgage",
|
|
28
|
+
"depreciation_expense", "amortization_expense", "other_expenses",
|
|
29
|
+
"total_operating_expenses",
|
|
30
|
+
],
|
|
20
31
|
},
|
|
32
|
+
{ head: "Net Income", fields: ["net_operating_income", "income_tax_provision", "net_income"] },
|
|
21
33
|
],
|
|
22
34
|
fields: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
total_revenue: { label: "Total Revenue", sourceRef: "Line 1a" },
|
|
36
|
+
cost_of_goods_sold: { label: "Cost of Goods Sold", sourceRef: "Line 2" },
|
|
37
|
+
gross_profit: { label: "Gross Profit", sourceRef: "Computed" },
|
|
38
|
+
officer_compensation: { label: "Officer Compensation", sourceRef: "Line 7" },
|
|
39
|
+
salaries_wages_staff: { label: "Wages & Salaries", sourceRef: "Line 13" },
|
|
40
|
+
employee_benefits: { label: "Employee Benefits", sourceRef: "" },
|
|
41
|
+
payroll_taxes_employer: { label: "Payroll Taxes", sourceRef: "" },
|
|
42
|
+
employer_retirement_contribution: { label: "Retirement Contributions", sourceRef: "" },
|
|
43
|
+
rent_expense: { label: "Rent / Lease", sourceRef: "Line 15" },
|
|
44
|
+
utilities: { label: "Utilities", sourceRef: "" },
|
|
45
|
+
software_subscriptions: { label: "Software & Subscriptions", sourceRef: "" },
|
|
46
|
+
professional_fees: { label: "Professional Fees", sourceRef: "Line 17" },
|
|
47
|
+
advertising_marketing: { label: "Advertising & Marketing", sourceRef: "" },
|
|
48
|
+
travel: { label: "Travel", sourceRef: "" },
|
|
49
|
+
business_meals: { label: "Meals & Entertainment", sourceRef: "Line 19" },
|
|
50
|
+
office_supplies: { label: "Office Supplies", sourceRef: "" },
|
|
51
|
+
insurance_nonhealth: { label: "Insurance (Non-Health)", sourceRef: "" },
|
|
52
|
+
repairs_maintenance: { label: "Repairs & Maintenance", sourceRef: "" },
|
|
53
|
+
bank_fees: { label: "Bank Fees", sourceRef: "" },
|
|
54
|
+
contract_labor: { label: "Contract Labor", sourceRef: "" },
|
|
55
|
+
mortgage_interest: { label: "Mortgage Interest", sourceRef: "" },
|
|
56
|
+
business_interest_nonmortgage: { label: "Business Interest", sourceRef: "" },
|
|
57
|
+
depreciation_expense: { label: "Depreciation", sourceRef: "Line 14" },
|
|
58
|
+
amortization_expense: { label: "Amortization", sourceRef: "" },
|
|
59
|
+
other_expenses: { label: "Other Expenses", sourceRef: "" },
|
|
60
|
+
total_operating_expenses: { label: "Total Operating Expenses", sourceRef: "" },
|
|
61
|
+
net_operating_income: { label: "Net Operating Income", sourceRef: "Line 21" },
|
|
62
|
+
income_tax_provision: { label: "Income Tax Provision", sourceRef: "" },
|
|
63
|
+
net_income: { label: "Net Income", sourceRef: "Line 30" },
|
|
36
64
|
},
|
|
37
65
|
},
|
|
38
|
-
|
|
66
|
+
// ── Balance Sheet ──
|
|
67
|
+
balance_sheet: {
|
|
39
68
|
sections: [
|
|
40
69
|
{
|
|
41
|
-
head: "
|
|
42
|
-
fields: [
|
|
70
|
+
head: "Assets",
|
|
71
|
+
fields: [
|
|
72
|
+
"cash_and_equivalents", "accounts_receivable",
|
|
73
|
+
"allowance_for_doubtful_accounts", "prepaid_expenses", "inventory",
|
|
74
|
+
"total_current_assets", "property_equipment_gross",
|
|
75
|
+
"accumulated_depreciation", "property_equipment_net",
|
|
76
|
+
"intangible_assets_gross", "accumulated_amortization",
|
|
77
|
+
"intangible_assets_net", "security_deposits_held_as_asset", "total_assets",
|
|
78
|
+
],
|
|
43
79
|
},
|
|
44
80
|
{
|
|
45
|
-
head: "
|
|
46
|
-
fields: [
|
|
81
|
+
head: "Liabilities",
|
|
82
|
+
fields: [
|
|
83
|
+
"accounts_payable", "accrued_liabilities", "deferred_revenue",
|
|
84
|
+
"short_term_debt", "long_term_debt_current_portion",
|
|
85
|
+
"total_current_liabilities", "long_term_debt", "total_liabilities",
|
|
86
|
+
],
|
|
47
87
|
},
|
|
48
88
|
{
|
|
49
|
-
head: "
|
|
50
|
-
fields: [
|
|
89
|
+
head: "Equity",
|
|
90
|
+
fields: [
|
|
91
|
+
"common_stock_par_value", "additional_paid_in_capital",
|
|
92
|
+
"retained_earnings", "aaa_balance", "owners_equity",
|
|
93
|
+
"total_equity", "total_liabilities_and_equity",
|
|
94
|
+
],
|
|
51
95
|
},
|
|
52
96
|
],
|
|
53
97
|
fields: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
98
|
+
cash_and_equivalents: { label: "Cash & Equivalents", sourceRef: "Line 1" },
|
|
99
|
+
accounts_receivable: { label: "Accounts Receivable", sourceRef: "Line 2" },
|
|
100
|
+
allowance_for_doubtful_accounts: { label: "Allowance for Doubtful Accts", sourceRef: "" },
|
|
101
|
+
prepaid_expenses: { label: "Prepaid Expenses", sourceRef: "" },
|
|
102
|
+
inventory: { label: "Inventory", sourceRef: "Line 3" },
|
|
103
|
+
total_current_assets: { label: "Total Current Assets", sourceRef: "" },
|
|
104
|
+
property_equipment_gross: { label: "Property & Equipment (Gross)", sourceRef: "" },
|
|
105
|
+
accumulated_depreciation: { label: "Accumulated Depreciation", sourceRef: "" },
|
|
106
|
+
property_equipment_net: { label: "Property & Equipment (Net)", sourceRef: "" },
|
|
107
|
+
intangible_assets_gross: { label: "Intangible Assets (Gross)", sourceRef: "" },
|
|
108
|
+
accumulated_amortization: { label: "Accumulated Amortization", sourceRef: "" },
|
|
109
|
+
intangible_assets_net: { label: "Intangible Assets (Net)", sourceRef: "" },
|
|
110
|
+
security_deposits_held_as_asset: { label: "Security Deposits", sourceRef: "" },
|
|
111
|
+
total_assets: { label: "Total Assets", sourceRef: "Line 11" },
|
|
112
|
+
accounts_payable: { label: "Accounts Payable", sourceRef: "Line 15" },
|
|
113
|
+
accrued_liabilities: { label: "Accrued Liabilities", sourceRef: "" },
|
|
114
|
+
deferred_revenue: { label: "Deferred Revenue", sourceRef: "" },
|
|
115
|
+
short_term_debt: { label: "Short-Term Debt", sourceRef: "" },
|
|
116
|
+
long_term_debt_current_portion: { label: "Current Portion of LT Debt", sourceRef: "" },
|
|
117
|
+
total_current_liabilities: { label: "Total Current Liabilities", sourceRef: "" },
|
|
118
|
+
long_term_debt: { label: "Long-Term Debt", sourceRef: "Line 17" },
|
|
119
|
+
total_liabilities: { label: "Total Liabilities", sourceRef: "Line 22" },
|
|
120
|
+
common_stock_par_value: { label: "Common Stock", sourceRef: "" },
|
|
121
|
+
additional_paid_in_capital: { label: "Additional Paid-in Capital", sourceRef: "" },
|
|
122
|
+
retained_earnings: { label: "Retained Earnings", sourceRef: "Line 24" },
|
|
123
|
+
aaa_balance: { label: "AAA Balance", sourceRef: "" },
|
|
124
|
+
owners_equity: { label: "Owner's Equity", sourceRef: "" },
|
|
125
|
+
total_equity: { label: "Total Equity", sourceRef: "Line 27" },
|
|
126
|
+
total_liabilities_and_equity: { label: "Total Liabilities & Equity", sourceRef: "" },
|
|
65
127
|
},
|
|
66
128
|
},
|
|
67
|
-
|
|
129
|
+
// ── Federal Tax Return (1120S, 1120, 1065, Schedule C) ──
|
|
130
|
+
federal_tax_return: {
|
|
68
131
|
sections: [
|
|
69
132
|
{
|
|
70
|
-
head: "
|
|
71
|
-
fields: [
|
|
133
|
+
head: "Entity & Filing",
|
|
134
|
+
fields: [
|
|
135
|
+
"entity_tax_classification", "ein", "date_incorporated",
|
|
136
|
+
"accounting_method_box", "industry_naics",
|
|
137
|
+
"amended_return_flag", "initial_return_flag", "final_return_flag",
|
|
138
|
+
],
|
|
72
139
|
},
|
|
73
140
|
{
|
|
74
|
-
head: "
|
|
75
|
-
fields: [
|
|
141
|
+
head: "Income",
|
|
142
|
+
fields: [
|
|
143
|
+
"gross_receipts_L1a", "returns_and_allowances_L1b", "revenue",
|
|
144
|
+
"cost_of_goods_sold", "gross_profit", "total_income",
|
|
145
|
+
],
|
|
76
146
|
},
|
|
77
147
|
{
|
|
78
|
-
head: "
|
|
79
|
-
fields: [
|
|
148
|
+
head: "Deductions",
|
|
149
|
+
fields: [
|
|
150
|
+
"compensation_of_officers_line", "salaries_wages_line",
|
|
151
|
+
"repairs_maintenance", "rent_expense_line",
|
|
152
|
+
"taxes_and_licenses_line", "interest_expense_line",
|
|
153
|
+
"charitable_contributions", "depreciation_line",
|
|
154
|
+
"advertising_expense", "pension_profit_sharing",
|
|
155
|
+
"employee_benefit_programs", "other_deductions_line",
|
|
156
|
+
"total_deductions",
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
head: "Tax Computation",
|
|
161
|
+
fields: [
|
|
162
|
+
"net_income", "nol_deduction", "total_tax",
|
|
163
|
+
"estimated_tax_payments", "tax_due_or_overpayment",
|
|
164
|
+
"self_emp_hi",
|
|
165
|
+
],
|
|
80
166
|
},
|
|
81
167
|
],
|
|
82
168
|
fields: {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
169
|
+
entity_tax_classification: { label: "Entity Classification", sourceRef: "Form Title" },
|
|
170
|
+
ein: { label: "EIN", sourceRef: "Box B" },
|
|
171
|
+
date_incorporated: { label: "Date Incorporated", sourceRef: "Box E" },
|
|
172
|
+
accounting_method_box: { label: "Accounting Method", sourceRef: "Sch B Q1" },
|
|
173
|
+
industry_naics: { label: "NAICS Code", sourceRef: "Box A" },
|
|
174
|
+
amended_return_flag: { label: "Amended Return", sourceRef: "Header" },
|
|
175
|
+
initial_return_flag: { label: "Initial Return", sourceRef: "Header" },
|
|
176
|
+
final_return_flag: { label: "Final Return", sourceRef: "Header" },
|
|
177
|
+
gross_receipts_L1a: { label: "Gross Receipts", sourceRef: "Line 1a" },
|
|
178
|
+
returns_and_allowances_L1b: { label: "Returns & Allowances", sourceRef: "Line 1b" },
|
|
179
|
+
revenue: { label: "Revenue", sourceRef: "Line 1c" },
|
|
180
|
+
cost_of_goods_sold: { label: "Cost of Goods Sold", sourceRef: "Line 2" },
|
|
181
|
+
gross_profit: { label: "Gross Profit", sourceRef: "Line 3" },
|
|
182
|
+
total_income: { label: "Total Income", sourceRef: "Line 6" },
|
|
183
|
+
compensation_of_officers_line: { label: "Officer Compensation", sourceRef: "Line 7" },
|
|
184
|
+
salaries_wages_line: { label: "Salaries & Wages", sourceRef: "Line 8" },
|
|
185
|
+
repairs_maintenance: { label: "Repairs & Maintenance", sourceRef: "Line 9" },
|
|
186
|
+
rent_expense_line: { label: "Rent Expense", sourceRef: "Line 11" },
|
|
187
|
+
taxes_and_licenses_line: { label: "Taxes & Licenses", sourceRef: "Line 12" },
|
|
188
|
+
interest_expense_line: { label: "Interest Expense", sourceRef: "Line 13" },
|
|
189
|
+
charitable_contributions: { label: "Charitable Contributions", sourceRef: "Line 19" },
|
|
190
|
+
depreciation_line: { label: "Depreciation", sourceRef: "Line 14" },
|
|
191
|
+
advertising_expense: { label: "Advertising", sourceRef: "Line 16" },
|
|
192
|
+
pension_profit_sharing: { label: "Pension & Profit Sharing", sourceRef: "Line 17" },
|
|
193
|
+
employee_benefit_programs: { label: "Employee Benefits", sourceRef: "Line 18" },
|
|
194
|
+
other_deductions_line: { label: "Other Deductions", sourceRef: "Line 19" },
|
|
195
|
+
total_deductions: { label: "Total Deductions", sourceRef: "Line 20" },
|
|
196
|
+
net_income: { label: "Net Income", sourceRef: "Line 21" },
|
|
197
|
+
nol_deduction: { label: "NOL Deduction", sourceRef: "Line 29a" },
|
|
198
|
+
total_tax: { label: "Total Tax", sourceRef: "Line 31" },
|
|
199
|
+
estimated_tax_payments: { label: "Estimated Tax Payments", sourceRef: "Line 32b" },
|
|
200
|
+
tax_due_or_overpayment: { label: "Tax Due / Overpayment", sourceRef: "" },
|
|
201
|
+
self_emp_hi: { label: "Self-Employed Health Insurance", sourceRef: "Sch 1 L17" },
|
|
94
202
|
},
|
|
95
203
|
},
|
|
96
|
-
|
|
204
|
+
// ── W-3 (Payroll Summary) ──
|
|
205
|
+
w3: {
|
|
97
206
|
sections: [
|
|
98
207
|
{
|
|
99
|
-
head: "
|
|
100
|
-
fields: [
|
|
208
|
+
head: "Wages & Withholding",
|
|
209
|
+
fields: [
|
|
210
|
+
"wages_tips_other_compensation_box1", "federal_income_tax_withheld_box2",
|
|
211
|
+
"social_security_wages_box3", "social_security_tax_withheld_box4",
|
|
212
|
+
"medicare_wages_box5", "medicare_tax_withheld_box6",
|
|
213
|
+
"social_security_tips_box7", "allocated_tips_box8",
|
|
214
|
+
],
|
|
101
215
|
},
|
|
102
216
|
{
|
|
103
|
-
head: "
|
|
104
|
-
fields: [
|
|
217
|
+
head: "Benefits & Other",
|
|
218
|
+
fields: [
|
|
219
|
+
"dependent_care_benefits_box10", "nonqualified_plans_box11",
|
|
220
|
+
"owner_w2_comp", "employees",
|
|
221
|
+
],
|
|
105
222
|
},
|
|
106
223
|
],
|
|
107
224
|
fields: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
225
|
+
wages_tips_other_compensation_box1: { label: "Wages, Tips & Compensation", sourceRef: "Box 1" },
|
|
226
|
+
federal_income_tax_withheld_box2: { label: "Federal Income Tax Withheld", sourceRef: "Box 2" },
|
|
227
|
+
social_security_wages_box3: { label: "Social Security Wages", sourceRef: "Box 3" },
|
|
228
|
+
social_security_tax_withheld_box4: { label: "SS Tax Withheld", sourceRef: "Box 4" },
|
|
229
|
+
medicare_wages_box5: { label: "Medicare Wages", sourceRef: "Box 5" },
|
|
230
|
+
medicare_tax_withheld_box6: { label: "Medicare Tax Withheld", sourceRef: "Box 6" },
|
|
231
|
+
social_security_tips_box7: { label: "Social Security Tips", sourceRef: "Box 7" },
|
|
232
|
+
allocated_tips_box8: { label: "Allocated Tips", sourceRef: "Box 8" },
|
|
233
|
+
dependent_care_benefits_box10: { label: "Dependent Care Benefits", sourceRef: "Box 10" },
|
|
234
|
+
nonqualified_plans_box11: { label: "Nonqualified Plans", sourceRef: "Box 11" },
|
|
235
|
+
owner_w2_comp: { label: "Owner W-2 Compensation", sourceRef: "Box 1 (Officer)" },
|
|
236
|
+
employees: { label: "Number of Employees", sourceRef: "Box d" },
|
|
115
237
|
},
|
|
116
238
|
},
|
|
117
|
-
|
|
239
|
+
// ── Payroll Records ──
|
|
240
|
+
payroll_records: {
|
|
118
241
|
sections: [
|
|
119
242
|
{
|
|
120
|
-
head: "
|
|
121
|
-
fields: [
|
|
243
|
+
head: "Totals",
|
|
244
|
+
fields: [
|
|
245
|
+
"employees", "w2_wages_paid_total",
|
|
246
|
+
"total_federal_withholding", "total_ss_withholding",
|
|
247
|
+
"total_medicare_withholding",
|
|
248
|
+
],
|
|
122
249
|
},
|
|
123
250
|
{
|
|
124
|
-
head: "
|
|
125
|
-
fields: [
|
|
251
|
+
head: "Employer Costs",
|
|
252
|
+
fields: [
|
|
253
|
+
"employer_fica_match", "employer_futa_paid",
|
|
254
|
+
"employer_401k_match_total", "bonuses_paid_total",
|
|
255
|
+
"commissions_paid_total", "overtime_pay_total",
|
|
256
|
+
"tip_income_reported",
|
|
257
|
+
],
|
|
126
258
|
},
|
|
127
259
|
],
|
|
128
260
|
fields: {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
261
|
+
employees: { label: "Number of Employees", sourceRef: "" },
|
|
262
|
+
w2_wages_paid_total: { label: "Total W-2 Wages Paid", sourceRef: "" },
|
|
263
|
+
total_federal_withholding: { label: "Federal Withholding", sourceRef: "" },
|
|
264
|
+
total_ss_withholding: { label: "Social Security Withholding", sourceRef: "" },
|
|
265
|
+
total_medicare_withholding: { label: "Medicare Withholding", sourceRef: "" },
|
|
266
|
+
employer_fica_match: { label: "Employer FICA Match", sourceRef: "" },
|
|
267
|
+
employer_futa_paid: { label: "FUTA Paid", sourceRef: "" },
|
|
268
|
+
employer_401k_match_total: { label: "401(k) Match Total", sourceRef: "" },
|
|
269
|
+
bonuses_paid_total: { label: "Bonuses Paid", sourceRef: "" },
|
|
270
|
+
commissions_paid_total: { label: "Commissions Paid", sourceRef: "" },
|
|
271
|
+
overtime_pay_total: { label: "Overtime Pay", sourceRef: "" },
|
|
272
|
+
tip_income_reported: { label: "Tip Income Reported", sourceRef: "" },
|
|
136
273
|
},
|
|
137
274
|
},
|
|
275
|
+
// ── Fixed Asset Schedule ──
|
|
138
276
|
fixed_asset_schedule: {
|
|
139
277
|
sections: [
|
|
140
278
|
{
|
|
141
|
-
head: "
|
|
142
|
-
fields: [
|
|
279
|
+
head: "Summary",
|
|
280
|
+
fields: [
|
|
281
|
+
"total_original_cost", "total_accumulated_depreciation",
|
|
282
|
+
"total_net_book_value", "fixed_asset_additions_current_year",
|
|
283
|
+
"qualifying_asset_cost",
|
|
284
|
+
],
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
head: "Depreciation & Amortization",
|
|
288
|
+
fields: [
|
|
289
|
+
"total_section_179_claimed", "total_bonus_depreciation_claimed",
|
|
290
|
+
"qip_value", "ubia_total",
|
|
291
|
+
],
|
|
143
292
|
},
|
|
144
293
|
],
|
|
145
294
|
fields: {
|
|
146
|
-
|
|
147
|
-
total_accumulated_depreciation: { label: "
|
|
148
|
-
total_net_book_value: { label: "
|
|
149
|
-
|
|
150
|
-
|
|
295
|
+
total_original_cost: { label: "Total Original Cost", sourceRef: "" },
|
|
296
|
+
total_accumulated_depreciation: { label: "Accumulated Depreciation", sourceRef: "" },
|
|
297
|
+
total_net_book_value: { label: "Net Book Value", sourceRef: "" },
|
|
298
|
+
fixed_asset_additions_current_year: { label: "Current Year Additions", sourceRef: "" },
|
|
299
|
+
qualifying_asset_cost: { label: "Qualifying Asset Cost", sourceRef: "≤20yr life" },
|
|
300
|
+
total_section_179_claimed: { label: "Section 179 Claimed", sourceRef: "" },
|
|
301
|
+
total_bonus_depreciation_claimed: { label: "Bonus Depreciation Claimed", sourceRef: "" },
|
|
302
|
+
qip_value: { label: "QIP Value", sourceRef: "" },
|
|
303
|
+
ubia_total: { label: "UBIA Total", sourceRef: "" },
|
|
151
304
|
},
|
|
152
305
|
},
|
|
153
|
-
|
|
306
|
+
// ── State Tax Return ──
|
|
307
|
+
state_tax_return: {
|
|
154
308
|
sections: [
|
|
155
309
|
{
|
|
156
|
-
head: "
|
|
157
|
-
fields: ["
|
|
310
|
+
head: "Filing Summary",
|
|
311
|
+
fields: ["tax_type_by_state", "state_nexus_type", "state_apportionment_method"],
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
head: "Tax Computation",
|
|
315
|
+
fields: [
|
|
316
|
+
"apportionment_factor", "state_taxable_income", "state_tax_paid",
|
|
317
|
+
"state_estimated_payments_made", "pte_election_status", "pte_tax_paid",
|
|
318
|
+
"il_replacement_tax",
|
|
319
|
+
],
|
|
158
320
|
},
|
|
159
321
|
],
|
|
160
322
|
fields: {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
323
|
+
tax_type_by_state: { label: "Tax Type", sourceRef: "" },
|
|
324
|
+
state_nexus_type: { label: "Nexus Type", sourceRef: "" },
|
|
325
|
+
state_apportionment_method: { label: "Apportionment Method", sourceRef: "" },
|
|
326
|
+
apportionment_factor: { label: "Apportionment Factor", sourceRef: "" },
|
|
327
|
+
state_taxable_income: { label: "State Taxable Income", sourceRef: "" },
|
|
328
|
+
state_tax_paid: { label: "State Tax Paid", sourceRef: "Total" },
|
|
329
|
+
state_estimated_payments_made: { label: "Estimated Payments Made", sourceRef: "" },
|
|
330
|
+
pte_election_status: { label: "PTE Election Status", sourceRef: "" },
|
|
331
|
+
pte_tax_paid: { label: "PTE Tax Paid", sourceRef: "" },
|
|
332
|
+
il_replacement_tax: { label: "IL Replacement Tax", sourceRef: "" },
|
|
166
333
|
},
|
|
167
334
|
},
|
|
168
|
-
|
|
335
|
+
// ── Form 4562 (Depreciation & Amortization) ──
|
|
336
|
+
form_4562: {
|
|
169
337
|
sections: [
|
|
170
338
|
{
|
|
171
|
-
head: "
|
|
172
|
-
fields: [
|
|
339
|
+
head: "Section 179",
|
|
340
|
+
fields: [
|
|
341
|
+
"section_179_max_amount_L1", "section_179_cost_placed_L2",
|
|
342
|
+
"dollar_limitation_L5", "section_179_expense_L12",
|
|
343
|
+
"section_179_carryover_to_next_year_L13",
|
|
344
|
+
],
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
head: "MACRS & Bonus",
|
|
348
|
+
fields: [
|
|
349
|
+
"bonus_depreciation_claimed_L14", "bonus_elected_out_flag",
|
|
350
|
+
"macrs_prior_year_assets_L17", "macrs_current_year_gds",
|
|
351
|
+
"macrs_current_year_ads",
|
|
352
|
+
],
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
head: "Totals",
|
|
356
|
+
fields: [
|
|
357
|
+
"total_depreciation_L22", "fixed_asset_additions",
|
|
358
|
+
"qualifying_asset_cost", "qip_present",
|
|
359
|
+
],
|
|
173
360
|
},
|
|
174
361
|
],
|
|
175
362
|
fields: {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
363
|
+
section_179_max_amount_L1: { label: "§179 Maximum Amount", sourceRef: "Line 1" },
|
|
364
|
+
section_179_cost_placed_L2: { label: "§179 Cost of Property", sourceRef: "Line 2" },
|
|
365
|
+
dollar_limitation_L5: { label: "Dollar Limitation", sourceRef: "Line 5" },
|
|
366
|
+
section_179_expense_L12: { label: "§179 Expense Deduction", sourceRef: "Line 12" },
|
|
367
|
+
section_179_carryover_to_next_year_L13: { label: "§179 Carryover", sourceRef: "Line 13" },
|
|
368
|
+
bonus_depreciation_claimed_L14: { label: "Bonus Depreciation", sourceRef: "Line 14" },
|
|
369
|
+
bonus_elected_out_flag: { label: "Bonus Elected Out", sourceRef: "Election" },
|
|
370
|
+
macrs_prior_year_assets_L17: { label: "MACRS Prior Year Assets", sourceRef: "Line 17" },
|
|
371
|
+
macrs_current_year_gds: { label: "MACRS Current Year (GDS)", sourceRef: "Section B" },
|
|
372
|
+
macrs_current_year_ads: { label: "MACRS Current Year (ADS)", sourceRef: "Section C" },
|
|
373
|
+
total_depreciation_L22: { label: "Total Depreciation", sourceRef: "Line 22" },
|
|
374
|
+
fixed_asset_additions: { label: "Fixed Asset Additions", sourceRef: "" },
|
|
375
|
+
qualifying_asset_cost: { label: "Qualifying Asset Cost", sourceRef: "≤20yr" },
|
|
376
|
+
qip_present: { label: "QIP Present", sourceRef: "" },
|
|
179
377
|
},
|
|
180
378
|
},
|
|
181
|
-
|
|
379
|
+
// ── Form 8889 (HSA) ──
|
|
380
|
+
form_8889: {
|
|
182
381
|
sections: [
|
|
183
382
|
{
|
|
184
|
-
head: "
|
|
185
|
-
fields: [
|
|
383
|
+
head: "Coverage & Contributions",
|
|
384
|
+
fields: [
|
|
385
|
+
"hdhp_coverage_L1", "hsa_contributions_L2",
|
|
386
|
+
"age_55_catchup_contribution_L3", "employer_contributions_L9",
|
|
387
|
+
"deductible_hsa_contributions_L13",
|
|
388
|
+
],
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
head: "Distributions",
|
|
392
|
+
fields: [
|
|
393
|
+
"total_distributions_L14a", "qualified_medical_expenses_L15",
|
|
394
|
+
"taxable_hsa_distributions_L16", "additional_20pct_tax_L17b",
|
|
395
|
+
],
|
|
186
396
|
},
|
|
187
397
|
],
|
|
188
398
|
fields: {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
399
|
+
hdhp_coverage_L1: { label: "HDHP Coverage", sourceRef: "Line 1" },
|
|
400
|
+
hsa_contributions_L2: { label: "HSA Contributions", sourceRef: "Line 2" },
|
|
401
|
+
age_55_catchup_contribution_L3: { label: "Age 55+ Catch-Up", sourceRef: "Line 3" },
|
|
402
|
+
employer_contributions_L9: { label: "Employer Contributions", sourceRef: "Line 9" },
|
|
403
|
+
deductible_hsa_contributions_L13: { label: "Deductible HSA Contributions", sourceRef: "Line 13" },
|
|
404
|
+
total_distributions_L14a: { label: "Total Distributions", sourceRef: "Line 14a" },
|
|
405
|
+
qualified_medical_expenses_L15: { label: "Qualified Medical Expenses", sourceRef: "Line 15" },
|
|
406
|
+
taxable_hsa_distributions_L16: { label: "Taxable HSA Distributions", sourceRef: "Line 16" },
|
|
407
|
+
additional_20pct_tax_L17b: { label: "Additional 20% Tax", sourceRef: "Line 17b" },
|
|
194
408
|
},
|
|
195
409
|
},
|
|
196
410
|
};
|
package/package.json
CHANGED