pigeongov 0.2.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/AGENTS.md +258 -0
- package/LICENSE +21 -0
- package/PRIVACY.md +38 -0
- package/README.md +234 -0
- package/agents.json +72 -0
- package/dist/bin/pigeongov.d.ts +2 -0
- package/dist/bin/pigeongov.js +4 -0
- package/dist/bin/pigeongov.js.map +1 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.d.ts +36 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.js +88 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.js.map +1 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.d.ts +31 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.js +96 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.js.map +1 -0
- package/dist/src/advisory/life-events/events.d.ts +4 -0
- package/dist/src/advisory/life-events/events.js +156 -0
- package/dist/src/advisory/life-events/events.js.map +1 -0
- package/dist/src/advisory/life-events/planner.d.ts +19 -0
- package/dist/src/advisory/life-events/planner.js +72 -0
- package/dist/src/advisory/life-events/planner.js.map +1 -0
- package/dist/src/advisory/screener/engine.d.ts +4 -0
- package/dist/src/advisory/screener/engine.js +368 -0
- package/dist/src/advisory/screener/engine.js.map +1 -0
- package/dist/src/advisory/screener/intake.d.ts +68 -0
- package/dist/src/advisory/screener/intake.js +93 -0
- package/dist/src/advisory/screener/intake.js.map +1 -0
- package/dist/src/analytics/stats.d.ts +18 -0
- package/dist/src/analytics/stats.js +158 -0
- package/dist/src/analytics/stats.js.map +1 -0
- package/dist/src/api/handlers/deadlines.d.ts +2 -0
- package/dist/src/api/handlers/deadlines.js +7 -0
- package/dist/src/api/handlers/deadlines.js.map +1 -0
- package/dist/src/api/handlers/openapi.d.ts +2 -0
- package/dist/src/api/handlers/openapi.js +7 -0
- package/dist/src/api/handlers/openapi.js.map +1 -0
- package/dist/src/api/handlers/workflows.d.ts +5 -0
- package/dist/src/api/handlers/workflows.js +73 -0
- package/dist/src/api/handlers/workflows.js.map +1 -0
- package/dist/src/api/index.d.ts +20 -0
- package/dist/src/api/index.js +70 -0
- package/dist/src/api/index.js.map +1 -0
- package/dist/src/api/openapi.d.ts +5 -0
- package/dist/src/api/openapi.js +384 -0
- package/dist/src/api/openapi.js.map +1 -0
- package/dist/src/api/router.d.ts +19 -0
- package/dist/src/api/router.js +57 -0
- package/dist/src/api/router.js.map +1 -0
- package/dist/src/cli/commands/completions.d.ts +2 -0
- package/dist/src/cli/commands/completions.js +396 -0
- package/dist/src/cli/commands/completions.js.map +1 -0
- package/dist/src/cli/commands/deadlines.d.ts +2 -0
- package/dist/src/cli/commands/deadlines.js +47 -0
- package/dist/src/cli/commands/deadlines.js.map +1 -0
- package/dist/src/cli/commands/doctor.d.ts +2 -0
- package/dist/src/cli/commands/doctor.js +50 -0
- package/dist/src/cli/commands/doctor.js.map +1 -0
- package/dist/src/cli/commands/drafts.d.ts +2 -0
- package/dist/src/cli/commands/drafts.js +75 -0
- package/dist/src/cli/commands/drafts.js.map +1 -0
- package/dist/src/cli/commands/extract.d.ts +2 -0
- package/dist/src/cli/commands/extract.js +17 -0
- package/dist/src/cli/commands/extract.js.map +1 -0
- package/dist/src/cli/commands/fees.d.ts +2 -0
- package/dist/src/cli/commands/fees.js +40 -0
- package/dist/src/cli/commands/fees.js.map +1 -0
- package/dist/src/cli/commands/fill.d.ts +25 -0
- package/dist/src/cli/commands/fill.js +354 -0
- package/dist/src/cli/commands/fill.js.map +1 -0
- package/dist/src/cli/commands/glossary.d.ts +2 -0
- package/dist/src/cli/commands/glossary.js +90 -0
- package/dist/src/cli/commands/glossary.js.map +1 -0
- package/dist/src/cli/commands/life-event.d.ts +2 -0
- package/dist/src/cli/commands/life-event.js +41 -0
- package/dist/src/cli/commands/life-event.js.map +1 -0
- package/dist/src/cli/commands/list.d.ts +2 -0
- package/dist/src/cli/commands/list.js +19 -0
- package/dist/src/cli/commands/list.js.map +1 -0
- package/dist/src/cli/commands/machine.d.ts +2 -0
- package/dist/src/cli/commands/machine.js +100 -0
- package/dist/src/cli/commands/machine.js.map +1 -0
- package/dist/src/cli/commands/merge.d.ts +2 -0
- package/dist/src/cli/commands/merge.js +24 -0
- package/dist/src/cli/commands/merge.js.map +1 -0
- package/dist/src/cli/commands/plugin.d.ts +2 -0
- package/dist/src/cli/commands/plugin.js +119 -0
- package/dist/src/cli/commands/plugin.js.map +1 -0
- package/dist/src/cli/commands/profile.d.ts +2 -0
- package/dist/src/cli/commands/profile.js +125 -0
- package/dist/src/cli/commands/profile.js.map +1 -0
- package/dist/src/cli/commands/review.d.ts +2 -0
- package/dist/src/cli/commands/review.js +25 -0
- package/dist/src/cli/commands/review.js.map +1 -0
- package/dist/src/cli/commands/scaffold.d.ts +2 -0
- package/dist/src/cli/commands/scaffold.js +304 -0
- package/dist/src/cli/commands/scaffold.js.map +1 -0
- package/dist/src/cli/commands/schemas.d.ts +2 -0
- package/dist/src/cli/commands/schemas.js +14 -0
- package/dist/src/cli/commands/schemas.js.map +1 -0
- package/dist/src/cli/commands/screen.d.ts +2 -0
- package/dist/src/cli/commands/screen.js +89 -0
- package/dist/src/cli/commands/screen.js.map +1 -0
- package/dist/src/cli/commands/serve.d.ts +2 -0
- package/dist/src/cli/commands/serve.js +46 -0
- package/dist/src/cli/commands/serve.js.map +1 -0
- package/dist/src/cli/commands/start.d.ts +2 -0
- package/dist/src/cli/commands/start.js +16 -0
- package/dist/src/cli/commands/start.js.map +1 -0
- package/dist/src/cli/commands/stats.d.ts +2 -0
- package/dist/src/cli/commands/stats.js +17 -0
- package/dist/src/cli/commands/stats.js.map +1 -0
- package/dist/src/cli/commands/testdata.d.ts +2 -0
- package/dist/src/cli/commands/testdata.js +60 -0
- package/dist/src/cli/commands/testdata.js.map +1 -0
- package/dist/src/cli/commands/tui.d.ts +2 -0
- package/dist/src/cli/commands/tui.js +26 -0
- package/dist/src/cli/commands/tui.js.map +1 -0
- package/dist/src/cli/commands/validate.d.ts +2 -0
- package/dist/src/cli/commands/validate.js +22 -0
- package/dist/src/cli/commands/validate.js.map +1 -0
- package/dist/src/cli/commands/vault.d.ts +2 -0
- package/dist/src/cli/commands/vault.js +73 -0
- package/dist/src/cli/commands/vault.js.map +1 -0
- package/dist/src/cli/commands/workflows.d.ts +2 -0
- package/dist/src/cli/commands/workflows.js +23 -0
- package/dist/src/cli/commands/workflows.js.map +1 -0
- package/dist/src/cli/display/review.d.ts +2 -0
- package/dist/src/cli/display/review.js +4 -0
- package/dist/src/cli/display/review.js.map +1 -0
- package/dist/src/cli/display/summary.d.ts +2 -0
- package/dist/src/cli/display/summary.js +19 -0
- package/dist/src/cli/display/summary.js.map +1 -0
- package/dist/src/cli/display/validation.d.ts +2 -0
- package/dist/src/cli/display/validation.js +16 -0
- package/dist/src/cli/display/validation.js.map +1 -0
- package/dist/src/cli/index.d.ts +1 -0
- package/dist/src/cli/index.js +83 -0
- package/dist/src/cli/index.js.map +1 -0
- package/dist/src/cli/output.d.ts +21 -0
- package/dist/src/cli/output.js +107 -0
- package/dist/src/cli/output.js.map +1 -0
- package/dist/src/cli/prompts/common.d.ts +21 -0
- package/dist/src/cli/prompts/common.js +53 -0
- package/dist/src/cli/prompts/common.js.map +1 -0
- package/dist/src/cli/prompts/credits.d.ts +3 -0
- package/dist/src/cli/prompts/credits.js +23 -0
- package/dist/src/cli/prompts/credits.js.map +1 -0
- package/dist/src/cli/prompts/deductions.d.ts +12 -0
- package/dist/src/cli/prompts/deductions.js +26 -0
- package/dist/src/cli/prompts/deductions.js.map +1 -0
- package/dist/src/cli/prompts/identity.d.ts +8 -0
- package/dist/src/cli/prompts/identity.js +36 -0
- package/dist/src/cli/prompts/identity.js.map +1 -0
- package/dist/src/cli/prompts/income.d.ts +15 -0
- package/dist/src/cli/prompts/income.js +61 -0
- package/dist/src/cli/prompts/income.js.map +1 -0
- package/dist/src/cli/prompts/workflow.d.ts +3 -0
- package/dist/src/cli/prompts/workflow.js +74 -0
- package/dist/src/cli/prompts/workflow.js.map +1 -0
- package/dist/src/cli/support.d.ts +53 -0
- package/dist/src/cli/support.js +80 -0
- package/dist/src/cli/support.js.map +1 -0
- package/dist/src/cli/tui.d.ts +22 -0
- package/dist/src/cli/tui.js +122 -0
- package/dist/src/cli/tui.js.map +1 -0
- package/dist/src/engine/audit-risk/scorer.d.ts +36 -0
- package/dist/src/engine/audit-risk/scorer.js +132 -0
- package/dist/src/engine/audit-risk/scorer.js.map +1 -0
- package/dist/src/engine/crypto/cost-basis.d.ts +19 -0
- package/dist/src/engine/crypto/cost-basis.js +115 -0
- package/dist/src/engine/crypto/cost-basis.js.map +1 -0
- package/dist/src/engine/crypto/transaction-parser.d.ts +36 -0
- package/dist/src/engine/crypto/transaction-parser.js +124 -0
- package/dist/src/engine/crypto/transaction-parser.js.map +1 -0
- package/dist/src/engine/crypto/wash-sale.d.ts +25 -0
- package/dist/src/engine/crypto/wash-sale.js +51 -0
- package/dist/src/engine/crypto/wash-sale.js.map +1 -0
- package/dist/src/engine/equity/espp.d.ts +41 -0
- package/dist/src/engine/equity/espp.js +90 -0
- package/dist/src/engine/equity/espp.js.map +1 -0
- package/dist/src/engine/equity/iso.d.ts +42 -0
- package/dist/src/engine/equity/iso.js +94 -0
- package/dist/src/engine/equity/iso.js.map +1 -0
- package/dist/src/engine/equity/nso.d.ts +35 -0
- package/dist/src/engine/equity/nso.js +63 -0
- package/dist/src/engine/equity/nso.js.map +1 -0
- package/dist/src/engine/equity/rsu.d.ts +33 -0
- package/dist/src/engine/equity/rsu.js +64 -0
- package/dist/src/engine/equity/rsu.js.map +1 -0
- package/dist/src/engine/field-mapper.d.ts +26 -0
- package/dist/src/engine/field-mapper.js +119 -0
- package/dist/src/engine/field-mapper.js.map +1 -0
- package/dist/src/engine/forms/core-1040.d.ts +2 -0
- package/dist/src/engine/forms/core-1040.js +124 -0
- package/dist/src/engine/forms/core-1040.js.map +1 -0
- package/dist/src/engine/forms/form-8949.d.ts +21 -0
- package/dist/src/engine/forms/form-8949.js +96 -0
- package/dist/src/engine/forms/form-8949.js.map +1 -0
- package/dist/src/engine/forms/index.d.ts +7 -0
- package/dist/src/engine/forms/index.js +6 -0
- package/dist/src/engine/forms/index.js.map +1 -0
- package/dist/src/engine/forms/schedule-b.d.ts +15 -0
- package/dist/src/engine/forms/schedule-b.js +78 -0
- package/dist/src/engine/forms/schedule-b.js.map +1 -0
- package/dist/src/engine/forms/schedule-d.d.ts +9 -0
- package/dist/src/engine/forms/schedule-d.js +86 -0
- package/dist/src/engine/forms/schedule-d.js.map +1 -0
- package/dist/src/engine/fpl.d.ts +70 -0
- package/dist/src/engine/fpl.js +127 -0
- package/dist/src/engine/fpl.js.map +1 -0
- package/dist/src/engine/gig/home-office.d.ts +34 -0
- package/dist/src/engine/gig/home-office.js +53 -0
- package/dist/src/engine/gig/home-office.js.map +1 -0
- package/dist/src/engine/gig/mileage.d.ts +30 -0
- package/dist/src/engine/gig/mileage.js +45 -0
- package/dist/src/engine/gig/mileage.js.map +1 -0
- package/dist/src/engine/gig/multi-1099.d.ts +19 -0
- package/dist/src/engine/gig/multi-1099.js +28 -0
- package/dist/src/engine/gig/multi-1099.js.map +1 -0
- package/dist/src/engine/multiyear/carryforward.d.ts +31 -0
- package/dist/src/engine/multiyear/carryforward.js +77 -0
- package/dist/src/engine/multiyear/carryforward.js.map +1 -0
- package/dist/src/engine/multiyear/compare.d.ts +25 -0
- package/dist/src/engine/multiyear/compare.js +94 -0
- package/dist/src/engine/multiyear/compare.js.map +1 -0
- package/dist/src/engine/multiyear/import.d.ts +23 -0
- package/dist/src/engine/multiyear/import.js +193 -0
- package/dist/src/engine/multiyear/import.js.map +1 -0
- package/dist/src/engine/optimizer/filing-status.d.ts +29 -0
- package/dist/src/engine/optimizer/filing-status.js +66 -0
- package/dist/src/engine/optimizer/filing-status.js.map +1 -0
- package/dist/src/engine/orchestrator.d.ts +14 -0
- package/dist/src/engine/orchestrator.js +135 -0
- package/dist/src/engine/orchestrator.js.map +1 -0
- package/dist/src/engine/scenarios/whatif.d.ts +34 -0
- package/dist/src/engine/scenarios/whatif.js +70 -0
- package/dist/src/engine/scenarios/whatif.js.map +1 -0
- package/dist/src/engine/state/ca/calculator.d.ts +3 -0
- package/dist/src/engine/state/ca/calculator.js +107 -0
- package/dist/src/engine/state/ca/calculator.js.map +1 -0
- package/dist/src/engine/state/common.d.ts +39 -0
- package/dist/src/engine/state/common.js +115 -0
- package/dist/src/engine/state/common.js.map +1 -0
- package/dist/src/engine/state/ga/calculator.d.ts +3 -0
- package/dist/src/engine/state/ga/calculator.js +82 -0
- package/dist/src/engine/state/ga/calculator.js.map +1 -0
- package/dist/src/engine/state/il/calculator.d.ts +3 -0
- package/dist/src/engine/state/il/calculator.js +49 -0
- package/dist/src/engine/state/il/calculator.js.map +1 -0
- package/dist/src/engine/state/mi/calculator.d.ts +3 -0
- package/dist/src/engine/state/mi/calculator.js +60 -0
- package/dist/src/engine/state/mi/calculator.js.map +1 -0
- package/dist/src/engine/state/nc/calculator.d.ts +3 -0
- package/dist/src/engine/state/nc/calculator.js +54 -0
- package/dist/src/engine/state/nc/calculator.js.map +1 -0
- package/dist/src/engine/state/nj/calculator.d.ts +3 -0
- package/dist/src/engine/state/nj/calculator.js +90 -0
- package/dist/src/engine/state/nj/calculator.js.map +1 -0
- package/dist/src/engine/state/ny/calculator.d.ts +3 -0
- package/dist/src/engine/state/ny/calculator.js +103 -0
- package/dist/src/engine/state/ny/calculator.js.map +1 -0
- package/dist/src/engine/state/oh/calculator.d.ts +3 -0
- package/dist/src/engine/state/oh/calculator.js +79 -0
- package/dist/src/engine/state/oh/calculator.js.map +1 -0
- package/dist/src/engine/state/pa/calculator.d.ts +3 -0
- package/dist/src/engine/state/pa/calculator.js +58 -0
- package/dist/src/engine/state/pa/calculator.js.map +1 -0
- package/dist/src/engine/state/registry.d.ts +9 -0
- package/dist/src/engine/state/registry.js +67 -0
- package/dist/src/engine/state/registry.js.map +1 -0
- package/dist/src/engine/state/types.d.ts +57 -0
- package/dist/src/engine/state/types.js +2 -0
- package/dist/src/engine/state/types.js.map +1 -0
- package/dist/src/engine/state/va/calculator.d.ts +3 -0
- package/dist/src/engine/state/va/calculator.js +76 -0
- package/dist/src/engine/state/va/calculator.js.map +1 -0
- package/dist/src/engine/suggestions/missed-deductions.d.ts +43 -0
- package/dist/src/engine/suggestions/missed-deductions.js +128 -0
- package/dist/src/engine/suggestions/missed-deductions.js.map +1 -0
- package/dist/src/engine/tax-calculator.d.ts +55 -0
- package/dist/src/engine/tax-calculator.js +156 -0
- package/dist/src/engine/tax-calculator.js.map +1 -0
- package/dist/src/engine/tax-constants-2025.d.ts +56 -0
- package/dist/src/engine/tax-constants-2025.js +138 -0
- package/dist/src/engine/tax-constants-2025.js.map +1 -0
- package/dist/src/engine/types.d.ts +77 -0
- package/dist/src/engine/types.js +2 -0
- package/dist/src/engine/types.js.map +1 -0
- package/dist/src/engine/va-math.d.ts +24 -0
- package/dist/src/engine/va-math.js +90 -0
- package/dist/src/engine/va-math.js.map +1 -0
- package/dist/src/engine/validator.d.ts +7 -0
- package/dist/src/engine/validator.js +108 -0
- package/dist/src/engine/validator.js.map +1 -0
- package/dist/src/glossary/entries/healthcare.d.ts +2 -0
- package/dist/src/glossary/entries/healthcare.js +78 -0
- package/dist/src/glossary/entries/healthcare.js.map +1 -0
- package/dist/src/glossary/entries/immigration.d.ts +2 -0
- package/dist/src/glossary/entries/immigration.js +112 -0
- package/dist/src/glossary/entries/immigration.js.map +1 -0
- package/dist/src/glossary/entries/tax.d.ts +2 -0
- package/dist/src/glossary/entries/tax.js +149 -0
- package/dist/src/glossary/entries/tax.js.map +1 -0
- package/dist/src/glossary/entries/unemployment.d.ts +2 -0
- package/dist/src/glossary/entries/unemployment.js +52 -0
- package/dist/src/glossary/entries/unemployment.js.map +1 -0
- package/dist/src/glossary/index.d.ts +19 -0
- package/dist/src/glossary/index.js +39 -0
- package/dist/src/glossary/index.js.map +1 -0
- package/dist/src/i18n/index.d.ts +21 -0
- package/dist/src/i18n/index.js +92 -0
- package/dist/src/i18n/index.js.map +1 -0
- package/dist/src/mcp/result.d.ts +3 -0
- package/dist/src/mcp/result.js +7 -0
- package/dist/src/mcp/result.js.map +1 -0
- package/dist/src/mcp/return-bundle.d.ts +19 -0
- package/dist/src/mcp/return-bundle.js +49 -0
- package/dist/src/mcp/return-bundle.js.map +1 -0
- package/dist/src/mcp/shared.d.ts +49102 -0
- package/dist/src/mcp/shared.js +354 -0
- package/dist/src/mcp/shared.js.map +1 -0
- package/dist/src/mcp/tools/build-packet.d.ts +7 -0
- package/dist/src/mcp/tools/build-packet.js +23 -0
- package/dist/src/mcp/tools/build-packet.js.map +1 -0
- package/dist/src/mcp/tools/calculate-tax.d.ts +40 -0
- package/dist/src/mcp/tools/calculate-tax.js +17 -0
- package/dist/src/mcp/tools/calculate-tax.js.map +1 -0
- package/dist/src/mcp/tools/deadlines.d.ts +7 -0
- package/dist/src/mcp/tools/deadlines.js +23 -0
- package/dist/src/mcp/tools/deadlines.js.map +1 -0
- package/dist/src/mcp/tools/describe-form.d.ts +14 -0
- package/dist/src/mcp/tools/describe-form.js +23 -0
- package/dist/src/mcp/tools/describe-form.js.map +1 -0
- package/dist/src/mcp/tools/describe-workflow.d.ts +6 -0
- package/dist/src/mcp/tools/describe-workflow.js +16 -0
- package/dist/src/mcp/tools/describe-workflow.js.map +1 -0
- package/dist/src/mcp/tools/explain-flag.d.ts +7 -0
- package/dist/src/mcp/tools/explain-flag.js +19 -0
- package/dist/src/mcp/tools/explain-flag.js.map +1 -0
- package/dist/src/mcp/tools/extract-document.d.ts +13 -0
- package/dist/src/mcp/tools/extract-document.js +20 -0
- package/dist/src/mcp/tools/extract-document.js.map +1 -0
- package/dist/src/mcp/tools/fees.d.ts +7 -0
- package/dist/src/mcp/tools/fees.js +24 -0
- package/dist/src/mcp/tools/fees.js.map +1 -0
- package/dist/src/mcp/tools/fill-form.d.ts +56 -0
- package/dist/src/mcp/tools/fill-form.js +47 -0
- package/dist/src/mcp/tools/fill-form.js.map +1 -0
- package/dist/src/mcp/tools/fill-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/fill-workflow.js +24 -0
- package/dist/src/mcp/tools/fill-workflow.js.map +1 -0
- package/dist/src/mcp/tools/glossary.d.ts +8 -0
- package/dist/src/mcp/tools/glossary.js +54 -0
- package/dist/src/mcp/tools/glossary.js.map +1 -0
- package/dist/src/mcp/tools/list-forms.d.ts +6 -0
- package/dist/src/mcp/tools/list-forms.js +15 -0
- package/dist/src/mcp/tools/list-forms.js.map +1 -0
- package/dist/src/mcp/tools/list-workflows.d.ts +6 -0
- package/dist/src/mcp/tools/list-workflows.js +16 -0
- package/dist/src/mcp/tools/list-workflows.js.map +1 -0
- package/dist/src/mcp/tools/plan-life-event.d.ts +59 -0
- package/dist/src/mcp/tools/plan-life-event.js +41 -0
- package/dist/src/mcp/tools/plan-life-event.js.map +1 -0
- package/dist/src/mcp/tools/review-form.d.ts +40 -0
- package/dist/src/mcp/tools/review-form.js +26 -0
- package/dist/src/mcp/tools/review-form.js.map +1 -0
- package/dist/src/mcp/tools/review-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/review-workflow.js +27 -0
- package/dist/src/mcp/tools/review-workflow.js.map +1 -0
- package/dist/src/mcp/tools/screen-eligibility.d.ts +53 -0
- package/dist/src/mcp/tools/screen-eligibility.js +44 -0
- package/dist/src/mcp/tools/screen-eligibility.js.map +1 -0
- package/dist/src/mcp/tools/start-workflow.d.ts +6 -0
- package/dist/src/mcp/tools/start-workflow.js +17 -0
- package/dist/src/mcp/tools/start-workflow.js.map +1 -0
- package/dist/src/mcp/tools/validate-form.d.ts +48 -0
- package/dist/src/mcp/tools/validate-form.js +30 -0
- package/dist/src/mcp/tools/validate-form.js.map +1 -0
- package/dist/src/mcp/tools/validate-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/validate-workflow.js +24 -0
- package/dist/src/mcp/tools/validate-workflow.js.map +1 -0
- package/dist/src/pdf/batch.d.ts +8 -0
- package/dist/src/pdf/batch.js +15 -0
- package/dist/src/pdf/batch.js.map +1 -0
- package/dist/src/pdf/merge.d.ts +10 -0
- package/dist/src/pdf/merge.js +62 -0
- package/dist/src/pdf/merge.js.map +1 -0
- package/dist/src/pdf/ocr.d.ts +22 -0
- package/dist/src/pdf/ocr.js +52 -0
- package/dist/src/pdf/ocr.js.map +1 -0
- package/dist/src/pdf/reader.d.ts +2 -0
- package/dist/src/pdf/reader.js +354 -0
- package/dist/src/pdf/reader.js.map +1 -0
- package/dist/src/pdf/shared.d.ts +89 -0
- package/dist/src/pdf/shared.js +137 -0
- package/dist/src/pdf/shared.js.map +1 -0
- package/dist/src/pdf/writer.d.ts +7 -0
- package/dist/src/pdf/writer.js +311 -0
- package/dist/src/pdf/writer.js.map +1 -0
- package/dist/src/plugins/loader.d.ts +15 -0
- package/dist/src/plugins/loader.js +86 -0
- package/dist/src/plugins/loader.js.map +1 -0
- package/dist/src/plugins/sandbox.d.ts +14 -0
- package/dist/src/plugins/sandbox.js +88 -0
- package/dist/src/plugins/sandbox.js.map +1 -0
- package/dist/src/plugins/types.d.ts +17 -0
- package/dist/src/plugins/types.js +13 -0
- package/dist/src/plugins/types.js.map +1 -0
- package/dist/src/schemas/2025/f1040.d.ts +127 -0
- package/dist/src/schemas/2025/f1040.js +104 -0
- package/dist/src/schemas/2025/f1040.js.map +1 -0
- package/dist/src/schemas/2025/f1099-int.d.ts +53 -0
- package/dist/src/schemas/2025/f1099-int.js +51 -0
- package/dist/src/schemas/2025/f1099-int.js.map +1 -0
- package/dist/src/schemas/2025/f1099-nec.d.ts +47 -0
- package/dist/src/schemas/2025/f1099-nec.js +45 -0
- package/dist/src/schemas/2025/f1099-nec.js.map +1 -0
- package/dist/src/schemas/2025/form-8949.d.ts +46 -0
- package/dist/src/schemas/2025/form-8949.js +71 -0
- package/dist/src/schemas/2025/form-8949.js.map +1 -0
- package/dist/src/schemas/2025/index.d.ts +1004 -0
- package/dist/src/schemas/2025/index.js +60 -0
- package/dist/src/schemas/2025/index.js.map +1 -0
- package/dist/src/schemas/2025/schedule-1.d.ts +44 -0
- package/dist/src/schemas/2025/schedule-1.js +56 -0
- package/dist/src/schemas/2025/schedule-1.js.map +1 -0
- package/dist/src/schemas/2025/schedule-b.d.ts +32 -0
- package/dist/src/schemas/2025/schedule-b.js +53 -0
- package/dist/src/schemas/2025/schedule-b.js.map +1 -0
- package/dist/src/schemas/2025/schedule-c.d.ts +58 -0
- package/dist/src/schemas/2025/schedule-c.js +46 -0
- package/dist/src/schemas/2025/schedule-c.js.map +1 -0
- package/dist/src/schemas/2025/schedule-d.d.ts +36 -0
- package/dist/src/schemas/2025/schedule-d.js +52 -0
- package/dist/src/schemas/2025/schedule-d.js.map +1 -0
- package/dist/src/schemas/2025/shared.d.ts +98 -0
- package/dist/src/schemas/2025/shared.js +161 -0
- package/dist/src/schemas/2025/shared.js.map +1 -0
- package/dist/src/schemas/2025/w2.d.ts +57 -0
- package/dist/src/schemas/2025/w2.js +62 -0
- package/dist/src/schemas/2025/w2.js.map +1 -0
- package/dist/src/storage/drafts.d.ts +25 -0
- package/dist/src/storage/drafts.js +117 -0
- package/dist/src/storage/drafts.js.map +1 -0
- package/dist/src/storage/paths.d.ts +15 -0
- package/dist/src/storage/paths.js +33 -0
- package/dist/src/storage/paths.js.map +1 -0
- package/dist/src/storage/profile.d.ts +17 -0
- package/dist/src/storage/profile.js +59 -0
- package/dist/src/storage/profile.js.map +1 -0
- package/dist/src/storage/vault.d.ts +38 -0
- package/dist/src/storage/vault.js +187 -0
- package/dist/src/storage/vault.js.map +1 -0
- package/dist/src/testing/synthetic.d.ts +13 -0
- package/dist/src/testing/synthetic.js +164 -0
- package/dist/src/testing/synthetic.js.map +1 -0
- package/dist/src/types.d.ts +362 -0
- package/dist/src/types.js +2 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/workflows/deadlines.d.ts +13 -0
- package/dist/src/workflows/deadlines.js +88 -0
- package/dist/src/workflows/deadlines.js.map +1 -0
- package/dist/src/workflows/domains/benefits.d.ts +409 -0
- package/dist/src/workflows/domains/benefits.js +744 -0
- package/dist/src/workflows/domains/benefits.js.map +1 -0
- package/dist/src/workflows/domains/business.d.ts +65 -0
- package/dist/src/workflows/domains/business.js +76 -0
- package/dist/src/workflows/domains/business.js.map +1 -0
- package/dist/src/workflows/domains/education.d.ts +251 -0
- package/dist/src/workflows/domains/education.js +504 -0
- package/dist/src/workflows/domains/education.js.map +1 -0
- package/dist/src/workflows/domains/estate.d.ts +217 -0
- package/dist/src/workflows/domains/estate.js +407 -0
- package/dist/src/workflows/domains/estate.js.map +1 -0
- package/dist/src/workflows/domains/healthcare-ext.d.ts +88 -0
- package/dist/src/workflows/domains/healthcare-ext.js +150 -0
- package/dist/src/workflows/domains/healthcare-ext.js.map +1 -0
- package/dist/src/workflows/domains/healthcare.d.ts +92 -0
- package/dist/src/workflows/domains/healthcare.js +126 -0
- package/dist/src/workflows/domains/healthcare.js.map +1 -0
- package/dist/src/workflows/domains/identity-domain.d.ts +291 -0
- package/dist/src/workflows/domains/identity-domain.js +541 -0
- package/dist/src/workflows/domains/identity-domain.js.map +1 -0
- package/dist/src/workflows/domains/immigration-ext.d.ts +282 -0
- package/dist/src/workflows/domains/immigration-ext.js +590 -0
- package/dist/src/workflows/domains/immigration-ext.js.map +1 -0
- package/dist/src/workflows/domains/immigration.d.ts +121 -0
- package/dist/src/workflows/domains/immigration.js +152 -0
- package/dist/src/workflows/domains/immigration.js.map +1 -0
- package/dist/src/workflows/domains/legal.d.ts +235 -0
- package/dist/src/workflows/domains/legal.js +380 -0
- package/dist/src/workflows/domains/legal.js.map +1 -0
- package/dist/src/workflows/domains/permits.d.ts +65 -0
- package/dist/src/workflows/domains/permits.js +74 -0
- package/dist/src/workflows/domains/permits.js.map +1 -0
- package/dist/src/workflows/domains/retirement.d.ts +59 -0
- package/dist/src/workflows/domains/retirement.js +155 -0
- package/dist/src/workflows/domains/retirement.js.map +1 -0
- package/dist/src/workflows/domains/tax.d.ts +133 -0
- package/dist/src/workflows/domains/tax.js +187 -0
- package/dist/src/workflows/domains/tax.js.map +1 -0
- package/dist/src/workflows/domains/unemployment.d.ts +105 -0
- package/dist/src/workflows/domains/unemployment.js +122 -0
- package/dist/src/workflows/domains/unemployment.js.map +1 -0
- package/dist/src/workflows/domains/veterans.d.ts +189 -0
- package/dist/src/workflows/domains/veterans.js +380 -0
- package/dist/src/workflows/domains/veterans.js.map +1 -0
- package/dist/src/workflows/fees.d.ts +15 -0
- package/dist/src/workflows/fees.js +93 -0
- package/dist/src/workflows/fees.js.map +1 -0
- package/dist/src/workflows/helpers.d.ts +8 -0
- package/dist/src/workflows/helpers.js +66 -0
- package/dist/src/workflows/helpers.js.map +1 -0
- package/dist/src/workflows/io.d.ts +3 -0
- package/dist/src/workflows/io.js +38 -0
- package/dist/src/workflows/io.js.map +1 -0
- package/dist/src/workflows/registry.d.ts +51355 -0
- package/dist/src/workflows/registry.js +140 -0
- package/dist/src/workflows/registry.js.map +1 -0
- package/dist/src/workflows/schemas/benefits.d.ts +78 -0
- package/dist/src/workflows/schemas/benefits.js +91 -0
- package/dist/src/workflows/schemas/benefits.js.map +1 -0
- package/dist/src/workflows/schemas/common.d.ts +27 -0
- package/dist/src/workflows/schemas/common.js +28 -0
- package/dist/src/workflows/schemas/common.js.map +1 -0
- package/dist/src/workflows/schemas/education.d.ts +70 -0
- package/dist/src/workflows/schemas/education.js +85 -0
- package/dist/src/workflows/schemas/education.js.map +1 -0
- package/dist/src/workflows/schemas/estate.d.ts +64 -0
- package/dist/src/workflows/schemas/estate.js +85 -0
- package/dist/src/workflows/schemas/estate.js.map +1 -0
- package/dist/src/workflows/schemas/healthcare-ext.d.ts +15 -0
- package/dist/src/workflows/schemas/healthcare-ext.js +17 -0
- package/dist/src/workflows/schemas/healthcare-ext.js.map +1 -0
- package/dist/src/workflows/schemas/healthcare.d.ts +33 -0
- package/dist/src/workflows/schemas/healthcare.js +20 -0
- package/dist/src/workflows/schemas/healthcare.js.map +1 -0
- package/dist/src/workflows/schemas/identity-domain.d.ts +64 -0
- package/dist/src/workflows/schemas/identity-domain.js +87 -0
- package/dist/src/workflows/schemas/identity-domain.js.map +1 -0
- package/dist/src/workflows/schemas/immigration-ext.d.ts +63 -0
- package/dist/src/workflows/schemas/immigration-ext.js +58 -0
- package/dist/src/workflows/schemas/immigration-ext.js.map +1 -0
- package/dist/src/workflows/schemas/immigration.d.ts +48 -0
- package/dist/src/workflows/schemas/immigration.js +27 -0
- package/dist/src/workflows/schemas/immigration.js.map +1 -0
- package/dist/src/workflows/schemas/legal.d.ts +45 -0
- package/dist/src/workflows/schemas/legal.js +45 -0
- package/dist/src/workflows/schemas/legal.js.map +1 -0
- package/dist/src/workflows/schemas/planning.d.ts +23 -0
- package/dist/src/workflows/schemas/planning.js +15 -0
- package/dist/src/workflows/schemas/planning.js.map +1 -0
- package/dist/src/workflows/schemas/retirement.d.ts +14 -0
- package/dist/src/workflows/schemas/retirement.js +22 -0
- package/dist/src/workflows/schemas/retirement.js.map +1 -0
- package/dist/src/workflows/schemas/tax.d.ts +58 -0
- package/dist/src/workflows/schemas/tax.js +51 -0
- package/dist/src/workflows/schemas/tax.js.map +1 -0
- package/dist/src/workflows/schemas/unemployment.d.ts +33 -0
- package/dist/src/workflows/schemas/unemployment.js +19 -0
- package/dist/src/workflows/schemas/unemployment.js.map +1 -0
- package/dist/src/workflows/schemas/veterans.d.ts +47 -0
- package/dist/src/workflows/schemas/veterans.js +51 -0
- package/dist/src/workflows/schemas/veterans.js.map +1 -0
- package/dist/src/workflows/types.d.ts +9 -0
- package/dist/src/workflows/types.js +2 -0
- package/dist/src/workflows/types.js.map +1 -0
- package/dist/xmcp.config.d.ts +3 -0
- package/dist/xmcp.config.js +29 -0
- package/dist/xmcp.config.js.map +1 -0
- package/llms.txt +48 -0
- package/package.json +82 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { f1040Meta, f1040Schema } from "./f1040.js";
|
|
2
|
+
import { f1099IntMeta, f1099IntSchema } from "./f1099-int.js";
|
|
3
|
+
import { f1099NecMeta, f1099NecSchema } from "./f1099-nec.js";
|
|
4
|
+
import { form8949Meta, form8949Schema } from "./form-8949.js";
|
|
5
|
+
import { schedule1Meta, schedule1Schema } from "./schedule-1.js";
|
|
6
|
+
import { scheduleBMeta, scheduleBSchema } from "./schedule-b.js";
|
|
7
|
+
import { scheduleCMeta, scheduleCSchema } from "./schedule-c.js";
|
|
8
|
+
import { scheduleDMeta, scheduleDSchema } from "./schedule-d.js";
|
|
9
|
+
import { w2Meta, w2Schema } from "./w2.js";
|
|
10
|
+
export { f1040Meta, f1040Schema } from "./f1040.js";
|
|
11
|
+
export { f1099IntMeta, f1099IntSchema } from "./f1099-int.js";
|
|
12
|
+
export { f1099NecMeta, f1099NecSchema } from "./f1099-nec.js";
|
|
13
|
+
export { form8949Meta, form8949Schema } from "./form-8949.js";
|
|
14
|
+
export { schedule1Meta, schedule1Schema } from "./schedule-1.js";
|
|
15
|
+
export { scheduleBMeta, scheduleBSchema } from "./schedule-b.js";
|
|
16
|
+
export { scheduleCMeta, scheduleCSchema } from "./schedule-c.js";
|
|
17
|
+
export { scheduleDMeta, scheduleDSchema } from "./schedule-d.js";
|
|
18
|
+
export { w2Meta, w2Schema } from "./w2.js";
|
|
19
|
+
export const schemaRegistry = {
|
|
20
|
+
"1040": {
|
|
21
|
+
meta: f1040Meta,
|
|
22
|
+
schema: f1040Schema,
|
|
23
|
+
},
|
|
24
|
+
"schedule-1": {
|
|
25
|
+
meta: schedule1Meta,
|
|
26
|
+
schema: schedule1Schema,
|
|
27
|
+
},
|
|
28
|
+
"schedule-b": {
|
|
29
|
+
meta: scheduleBMeta,
|
|
30
|
+
schema: scheduleBSchema,
|
|
31
|
+
},
|
|
32
|
+
"schedule-c": {
|
|
33
|
+
meta: scheduleCMeta,
|
|
34
|
+
schema: scheduleCSchema,
|
|
35
|
+
},
|
|
36
|
+
"schedule-d": {
|
|
37
|
+
meta: scheduleDMeta,
|
|
38
|
+
schema: scheduleDSchema,
|
|
39
|
+
},
|
|
40
|
+
"form-8949": {
|
|
41
|
+
meta: form8949Meta,
|
|
42
|
+
schema: form8949Schema,
|
|
43
|
+
},
|
|
44
|
+
w2: {
|
|
45
|
+
meta: w2Meta,
|
|
46
|
+
schema: w2Schema,
|
|
47
|
+
},
|
|
48
|
+
"1099-nec": {
|
|
49
|
+
meta: f1099NecMeta,
|
|
50
|
+
schema: f1099NecSchema,
|
|
51
|
+
},
|
|
52
|
+
"1099-int": {
|
|
53
|
+
meta: f1099IntMeta,
|
|
54
|
+
schema: f1099IntSchema,
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
export function getSchemaDefinition(schemaId) {
|
|
58
|
+
return schemaRegistry[schemaId];
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schemas/2025/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAE3C,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAE3C,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,MAAM,EAAE;QACN,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,WAAW;KACpB;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE,eAAe;KACxB;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE,eAAe;KACxB;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE,eAAe;KACxB;IACD,YAAY,EAAE;QACZ,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE,eAAe;KACxB;IACD,WAAW,EAAE;QACX,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,cAAc;KACvB;IACD,EAAE,EAAE;QACF,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,QAAQ;KACjB;IACD,UAAU,EAAE;QACV,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,cAAc;KACvB;IACD,UAAU,EAAE;QACV,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,cAAc;KACvB;CACO,CAAC;AAIX,MAAM,UAAU,mBAAmB,CAAC,QAA2B;IAC7D,OAAO,cAAc,CAAC,QAAQ,CAAC,CAAC;AAClC,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const schedule1Meta: import("./shared.js").SchemaMeta;
|
|
3
|
+
export declare const schedule1Schema: z.ZodObject<{
|
|
4
|
+
taxYear: z.ZodLiteral<2025>;
|
|
5
|
+
filingStatus: z.ZodOptional<z.ZodEnum<{
|
|
6
|
+
single: "single";
|
|
7
|
+
married_filing_jointly: "married_filing_jointly";
|
|
8
|
+
married_filing_separately: "married_filing_separately";
|
|
9
|
+
head_of_household: "head_of_household";
|
|
10
|
+
qualifying_surviving_spouse: "qualifying_surviving_spouse";
|
|
11
|
+
}>>;
|
|
12
|
+
additionalIncome: z.ZodObject<{
|
|
13
|
+
line1TaxableStateRefunds: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14
|
+
line2AlimonyReceived: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
15
|
+
line3BusinessIncomeOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16
|
+
line4CapitalGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
17
|
+
line5RentalRealEstateRoyaltiesPartnershipsSCorporationsTrusts: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18
|
+
line6FarmIncomeOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
19
|
+
line7UnemploymentCompensation: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
20
|
+
line8OtherIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
21
|
+
line9TotalOtherIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
22
|
+
line10TotalAdditionalIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
23
|
+
}, z.core.$strict>;
|
|
24
|
+
adjustments: z.ZodObject<{
|
|
25
|
+
line11EducatorExpenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
26
|
+
line12CertainBusinessExpenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
27
|
+
line13HealthSavingsAccountDeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
28
|
+
line14MovingExpenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
29
|
+
line15DeductiblePartOfSelfEmploymentTax: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
30
|
+
line16SelfEmployedSEPSimpleAndQualifiedPlans: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
31
|
+
line17SelfEmployedHealthInsuranceDeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
32
|
+
line18PenaltyOnEarlyWithdrawalOfSavings: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
33
|
+
line19AlimonyPaid: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
34
|
+
line20IraDeductions: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
35
|
+
line21StudentLoanInterestDeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
36
|
+
line22Reserved: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
37
|
+
line23Reserved: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
38
|
+
line24ArcherMSADeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
39
|
+
line25Reserved: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
40
|
+
line26TuitionAndFeesDeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
41
|
+
line27TotalAdjustments: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
42
|
+
}, z.core.$strict>;
|
|
43
|
+
}, z.core.$strict>;
|
|
44
|
+
export type Schedule1Schema = z.infer<typeof schedule1Schema>;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { filingStatusSchema, formMeta, moneySchema, nonNegativeMoneySchema, taxYearSchema, } from "./shared.js";
|
|
3
|
+
export const schedule1Meta = formMeta({
|
|
4
|
+
id: "schedule-1",
|
|
5
|
+
name: "Schedule 1",
|
|
6
|
+
taxYear: 2025,
|
|
7
|
+
version: "2025.1",
|
|
8
|
+
kind: "schedule",
|
|
9
|
+
});
|
|
10
|
+
const additionalIncomeSchema = z
|
|
11
|
+
.object({
|
|
12
|
+
line1TaxableStateRefunds: moneySchema.optional().describe("Line 1 - taxable state refunds"),
|
|
13
|
+
line2AlimonyReceived: moneySchema.optional().describe("Line 2 - alimony received"),
|
|
14
|
+
line3BusinessIncomeOrLoss: moneySchema.optional().describe("Line 3 - business income or loss"),
|
|
15
|
+
line4CapitalGainOrLoss: moneySchema.optional().describe("Line 4 - capital gain or loss"),
|
|
16
|
+
line5RentalRealEstateRoyaltiesPartnershipsSCorporationsTrusts: moneySchema.optional().describe("Line 5 - rental real estate, royalties, partnerships, S corporations, trusts"),
|
|
17
|
+
line6FarmIncomeOrLoss: moneySchema.optional().describe("Line 6 - farm income or loss"),
|
|
18
|
+
line7UnemploymentCompensation: moneySchema.optional().describe("Line 7 - unemployment compensation"),
|
|
19
|
+
line8OtherIncome: moneySchema.optional().describe("Line 8 - other income"),
|
|
20
|
+
line9TotalOtherIncome: moneySchema.optional().describe("Line 9 - total other income"),
|
|
21
|
+
line10TotalAdditionalIncome: moneySchema.optional().describe("Line 10 - total additional income"),
|
|
22
|
+
})
|
|
23
|
+
.strict()
|
|
24
|
+
.describe("Schedule 1 Part I");
|
|
25
|
+
const adjustmentsSchema = z
|
|
26
|
+
.object({
|
|
27
|
+
line11EducatorExpenses: nonNegativeMoneySchema.optional().describe("Line 11 - educator expenses"),
|
|
28
|
+
line12CertainBusinessExpenses: nonNegativeMoneySchema.optional().describe("Line 12 - certain business expenses"),
|
|
29
|
+
line13HealthSavingsAccountDeduction: nonNegativeMoneySchema.optional().describe("Line 13 - health savings account deduction"),
|
|
30
|
+
line14MovingExpenses: nonNegativeMoneySchema.optional().describe("Line 14 - moving expenses"),
|
|
31
|
+
line15DeductiblePartOfSelfEmploymentTax: nonNegativeMoneySchema.optional().describe("Line 15 - deductible part of self-employment tax"),
|
|
32
|
+
line16SelfEmployedSEPSimpleAndQualifiedPlans: nonNegativeMoneySchema.optional().describe("Line 16 - self-employed SEP, SIMPLE, and qualified plans"),
|
|
33
|
+
line17SelfEmployedHealthInsuranceDeduction: nonNegativeMoneySchema.optional().describe("Line 17 - self-employed health insurance deduction"),
|
|
34
|
+
line18PenaltyOnEarlyWithdrawalOfSavings: nonNegativeMoneySchema.optional().describe("Line 18 - penalty on early withdrawal of savings"),
|
|
35
|
+
line19AlimonyPaid: nonNegativeMoneySchema.optional().describe("Line 19 - alimony paid"),
|
|
36
|
+
line20IraDeductions: nonNegativeMoneySchema.optional().describe("Line 20 - IRA deduction"),
|
|
37
|
+
line21StudentLoanInterestDeduction: nonNegativeMoneySchema.optional().describe("Line 21 - student loan interest deduction"),
|
|
38
|
+
line22Reserved: nonNegativeMoneySchema.optional().describe("Line 22 - reserved"),
|
|
39
|
+
line23Reserved: nonNegativeMoneySchema.optional().describe("Line 23 - reserved"),
|
|
40
|
+
line24ArcherMSADeduction: nonNegativeMoneySchema.optional().describe("Line 24 - Archer MSA deduction"),
|
|
41
|
+
line25Reserved: nonNegativeMoneySchema.optional().describe("Line 25 - reserved"),
|
|
42
|
+
line26TuitionAndFeesDeduction: nonNegativeMoneySchema.optional().describe("Line 26 - tuition and fees deduction"),
|
|
43
|
+
line27TotalAdjustments: nonNegativeMoneySchema.optional().describe("Line 27 - total adjustments"),
|
|
44
|
+
})
|
|
45
|
+
.strict()
|
|
46
|
+
.describe("Schedule 1 Part II");
|
|
47
|
+
export const schedule1Schema = z
|
|
48
|
+
.object({
|
|
49
|
+
taxYear: taxYearSchema,
|
|
50
|
+
filingStatus: filingStatusSchema.optional().describe("Filing status for derived validation"),
|
|
51
|
+
additionalIncome: additionalIncomeSchema,
|
|
52
|
+
adjustments: adjustmentsSchema,
|
|
53
|
+
})
|
|
54
|
+
.strict()
|
|
55
|
+
.describe("Schedule 1");
|
|
56
|
+
//# sourceMappingURL=schedule-1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schedule-1.js","sourceRoot":"","sources":["../../../../src/schemas/2025/schedule-1.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const scheduleBMeta: import("./shared.js").SchemaMeta;
|
|
3
|
+
export declare const scheduleBSchema: z.ZodObject<{
|
|
4
|
+
taxYear: z.ZodLiteral<2025>;
|
|
5
|
+
filingStatus: z.ZodOptional<z.ZodEnum<{
|
|
6
|
+
single: "single";
|
|
7
|
+
married_filing_jointly: "married_filing_jointly";
|
|
8
|
+
married_filing_separately: "married_filing_separately";
|
|
9
|
+
head_of_household: "head_of_household";
|
|
10
|
+
qualifying_surviving_spouse: "qualifying_surviving_spouse";
|
|
11
|
+
}>>;
|
|
12
|
+
part1Interest: z.ZodObject<{
|
|
13
|
+
sources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
14
|
+
payerName: z.ZodString;
|
|
15
|
+
amount: z.ZodCoercedNumber<unknown>;
|
|
16
|
+
}, z.core.$strict>>>;
|
|
17
|
+
totalInterest: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18
|
+
}, z.core.$strict>;
|
|
19
|
+
part2OrdinaryDividends: z.ZodObject<{
|
|
20
|
+
sources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
21
|
+
payerName: z.ZodString;
|
|
22
|
+
amount: z.ZodCoercedNumber<unknown>;
|
|
23
|
+
}, z.core.$strict>>>;
|
|
24
|
+
totalOrdinaryDividends: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
25
|
+
}, z.core.$strict>;
|
|
26
|
+
part3ForeignAccountsAndTrusts: z.ZodObject<{
|
|
27
|
+
hasForeignAccount: z.ZodDefault<z.ZodBoolean>;
|
|
28
|
+
foreignCountry: z.ZodOptional<z.ZodString>;
|
|
29
|
+
hasForeignTrust: z.ZodDefault<z.ZodBoolean>;
|
|
30
|
+
}, z.core.$strict>;
|
|
31
|
+
}, z.core.$strict>;
|
|
32
|
+
export type ScheduleBSchema = z.infer<typeof scheduleBSchema>;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { filingStatusSchema, formMeta, moneySchema, nonNegativeMoneySchema, taxYearSchema, } from "./shared.js";
|
|
3
|
+
export const scheduleBMeta = formMeta({
|
|
4
|
+
id: "schedule-b",
|
|
5
|
+
name: "Schedule B",
|
|
6
|
+
taxYear: 2025,
|
|
7
|
+
version: "2025.1",
|
|
8
|
+
kind: "schedule",
|
|
9
|
+
});
|
|
10
|
+
const interestSourceSchema = z
|
|
11
|
+
.object({
|
|
12
|
+
payerName: z.string().trim().min(1).describe("Payer name"),
|
|
13
|
+
amount: nonNegativeMoneySchema.describe("Interest amount"),
|
|
14
|
+
})
|
|
15
|
+
.strict()
|
|
16
|
+
.describe("Interest source entry");
|
|
17
|
+
const dividendSourceSchema = z
|
|
18
|
+
.object({
|
|
19
|
+
payerName: z.string().trim().min(1).describe("Payer name"),
|
|
20
|
+
amount: nonNegativeMoneySchema.describe("Dividend amount"),
|
|
21
|
+
})
|
|
22
|
+
.strict()
|
|
23
|
+
.describe("Dividend source entry");
|
|
24
|
+
export const scheduleBSchema = z
|
|
25
|
+
.object({
|
|
26
|
+
taxYear: taxYearSchema,
|
|
27
|
+
filingStatus: filingStatusSchema.optional().describe("Filing status"),
|
|
28
|
+
part1Interest: z
|
|
29
|
+
.object({
|
|
30
|
+
sources: z.array(interestSourceSchema).default([]).describe("Interest sources"),
|
|
31
|
+
totalInterest: moneySchema.optional().describe("Line 4 - total interest"),
|
|
32
|
+
})
|
|
33
|
+
.strict()
|
|
34
|
+
.describe("Part I - Interest"),
|
|
35
|
+
part2OrdinaryDividends: z
|
|
36
|
+
.object({
|
|
37
|
+
sources: z.array(dividendSourceSchema).default([]).describe("Dividend sources"),
|
|
38
|
+
totalOrdinaryDividends: moneySchema.optional().describe("Line 6 - total ordinary dividends"),
|
|
39
|
+
})
|
|
40
|
+
.strict()
|
|
41
|
+
.describe("Part II - Ordinary Dividends"),
|
|
42
|
+
part3ForeignAccountsAndTrusts: z
|
|
43
|
+
.object({
|
|
44
|
+
hasForeignAccount: z.boolean().default(false).describe("Line 7a - foreign account"),
|
|
45
|
+
foreignCountry: z.string().trim().optional().describe("Line 7b - foreign country"),
|
|
46
|
+
hasForeignTrust: z.boolean().default(false).describe("Line 8 - foreign trust"),
|
|
47
|
+
})
|
|
48
|
+
.strict()
|
|
49
|
+
.describe("Part III - Foreign Accounts and Trusts"),
|
|
50
|
+
})
|
|
51
|
+
.strict()
|
|
52
|
+
.describe("Schedule B (Interest and Ordinary Dividends)");
|
|
53
|
+
//# sourceMappingURL=schedule-b.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schedule-b.js","sourceRoot":"","sources":["../../../../src/schemas/2025/schedule-b.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,kBAAkB,EAClB,QAAQ,EACR,WAAW,EACX,sBAAsB,EACtB,aAAa,GACd,MAAM,aAAa,CAAC;AAErB,MAAM,CAAC,MAAM,aAAa,GAAG,QAAQ,CAAC;IACpC,EAAE,EAAE,YAAY;IAChB,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,QAAQ;IACjB,IAAI,EAAE,UAAU;CACjB,CAAC,CAAC;AAEH,MAAM,oBAAoB,GAAG,CAAC;KAC3B,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,YAAY,CAAC;IAC1D,MAAM,EAAE,sBAAsB,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC3D,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CAAC,uBAAuB,CAAC,CAAC;AAErC,MAAM,oBAAoB,GAAG,CAAC;KAC3B,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,YAAY,CAAC;IAC1D,MAAM,EAAE,sBAAsB,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC3D,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CAAC,uBAAuB,CAAC,CAAC;AAErC,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,OAAO,EAAE,aAAa;IACtB,YAAY,EAAE,kBAAkB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC;IACrE,aAAa,EAAE,CAAC;SACb,MAAM,CAAC;QACN,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC;QAC/E,aAAa,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;KAC1E,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,mBAAmB,CAAC;IAChC,sBAAsB,EAAE,CAAC;SACtB,MAAM,CAAC;QACN,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC;QAC/E,sBAAsB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;KAC7F,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,6BAA6B,EAAE,CAAC;SAC7B,MAAM,CAAC;QACN,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QACnF,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QAClF,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,wBAAwB,CAAC;KAC/E,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CAAC,8CAA8C,CAAC,CAAC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const scheduleCMeta: import("./shared.js").SchemaMeta;
|
|
3
|
+
export declare const scheduleCSchema: z.ZodObject<{
|
|
4
|
+
taxYear: z.ZodLiteral<2025>;
|
|
5
|
+
ownerName: z.ZodString;
|
|
6
|
+
ownerSsn: z.ZodString;
|
|
7
|
+
businessName: z.ZodOptional<z.ZodString>;
|
|
8
|
+
ein: z.ZodOptional<z.ZodString>;
|
|
9
|
+
principalBusinessOrProfession: z.ZodString;
|
|
10
|
+
businessCode: z.ZodOptional<z.ZodString>;
|
|
11
|
+
accountingMethod: z.ZodDefault<z.ZodEnum<{
|
|
12
|
+
other: "other";
|
|
13
|
+
cash: "cash";
|
|
14
|
+
accrual: "accrual";
|
|
15
|
+
}>>;
|
|
16
|
+
materialParticipation: z.ZodOptional<z.ZodBoolean>;
|
|
17
|
+
income: z.ZodObject<{
|
|
18
|
+
grossReceiptsOrSales: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
19
|
+
returnsAndAllowances: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
20
|
+
otherIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
21
|
+
}, z.core.$strict>;
|
|
22
|
+
cogs: z.ZodObject<{
|
|
23
|
+
inventoryAtBeginning: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
24
|
+
purchasesLessItemsWithdrawnForPersonalUse: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
25
|
+
costOfLabor: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
26
|
+
materialsAndSupplies: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
27
|
+
otherCosts: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
28
|
+
inventoryAtEnd: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
29
|
+
}, z.core.$strict>;
|
|
30
|
+
expenses: z.ZodObject<{
|
|
31
|
+
advertising: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
32
|
+
carAndTruck: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
33
|
+
commissionsAndFees: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
34
|
+
contractLabor: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
35
|
+
depletion: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
36
|
+
depreciation: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
37
|
+
employeeBenefitPrograms: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
38
|
+
insuranceOtherThanHealth: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
39
|
+
interestMortgage: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
40
|
+
interestOther: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
41
|
+
legalAndProfessional: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
42
|
+
officeExpense: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
43
|
+
pensionAndProfitSharing: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
44
|
+
rentalOrLeaseVehicles: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
45
|
+
rentalOrLeaseOtherBusinessProperty: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
46
|
+
repairsAndMaintenance: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
47
|
+
supplies: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
48
|
+
taxesAndLicenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
49
|
+
travel: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
50
|
+
meals: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
51
|
+
utilities: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
52
|
+
wages: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
53
|
+
otherExpenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
54
|
+
}, z.core.$strict>;
|
|
55
|
+
homeOfficeDeduction: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
56
|
+
netProfitOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
57
|
+
}, z.core.$strict>;
|
|
58
|
+
export type ScheduleCSchema = z.infer<typeof scheduleCSchema>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { einSchema, formMeta, moneySchema, nonNegativeMoneySchema, scheduleCExpenseSchema, taxYearSchema, } from "./shared.js";
|
|
3
|
+
export const scheduleCMeta = formMeta({
|
|
4
|
+
id: "schedule-c",
|
|
5
|
+
name: "Schedule C",
|
|
6
|
+
taxYear: 2025,
|
|
7
|
+
version: "2025.1",
|
|
8
|
+
kind: "schedule",
|
|
9
|
+
});
|
|
10
|
+
export const scheduleCSchema = z
|
|
11
|
+
.object({
|
|
12
|
+
taxYear: taxYearSchema,
|
|
13
|
+
ownerName: z.string().trim().min(1).describe("Business owner name"),
|
|
14
|
+
ownerSsn: z.string().trim().regex(/^\d{3}-\d{2}-\d{4}$/).describe("Business owner SSN"),
|
|
15
|
+
businessName: z.string().trim().min(1).optional().describe("Business name"),
|
|
16
|
+
ein: einSchema.optional().describe("Business EIN"),
|
|
17
|
+
principalBusinessOrProfession: z.string().trim().min(1).describe("Principal business or profession"),
|
|
18
|
+
businessCode: z.string().trim().optional().describe("Principal business code"),
|
|
19
|
+
accountingMethod: z.enum(["cash", "accrual", "other"]).default("cash").describe("Accounting method"),
|
|
20
|
+
materialParticipation: z.boolean().optional().describe("Material participation"),
|
|
21
|
+
income: z
|
|
22
|
+
.object({
|
|
23
|
+
grossReceiptsOrSales: nonNegativeMoneySchema.optional().describe("Line 1 - gross receipts or sales"),
|
|
24
|
+
returnsAndAllowances: nonNegativeMoneySchema.optional().describe("Line 2 - returns and allowances"),
|
|
25
|
+
otherIncome: nonNegativeMoneySchema.optional().describe("Line 6 - other income"),
|
|
26
|
+
})
|
|
27
|
+
.strict()
|
|
28
|
+
.describe("Schedule C income"),
|
|
29
|
+
cogs: z
|
|
30
|
+
.object({
|
|
31
|
+
inventoryAtBeginning: nonNegativeMoneySchema.optional().describe("Line 35 - inventory at beginning"),
|
|
32
|
+
purchasesLessItemsWithdrawnForPersonalUse: nonNegativeMoneySchema.optional().describe("Line 36 - purchases"),
|
|
33
|
+
costOfLabor: nonNegativeMoneySchema.optional().describe("Line 37 - cost of labor"),
|
|
34
|
+
materialsAndSupplies: nonNegativeMoneySchema.optional().describe("Line 38 - materials and supplies"),
|
|
35
|
+
otherCosts: nonNegativeMoneySchema.optional().describe("Line 39 - other costs"),
|
|
36
|
+
inventoryAtEnd: nonNegativeMoneySchema.optional().describe("Line 41 - inventory at end"),
|
|
37
|
+
})
|
|
38
|
+
.strict()
|
|
39
|
+
.describe("Cost of goods sold"),
|
|
40
|
+
expenses: scheduleCExpenseSchema.describe("Schedule C business expenses"),
|
|
41
|
+
homeOfficeDeduction: nonNegativeMoneySchema.optional().describe("Line 30 - home office deduction"),
|
|
42
|
+
netProfitOrLoss: moneySchema.optional().describe("Line 31 - net profit or loss"),
|
|
43
|
+
})
|
|
44
|
+
.strict()
|
|
45
|
+
.describe("Schedule C");
|
|
46
|
+
//# sourceMappingURL=schedule-c.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schedule-c.js","sourceRoot":"","sources":["../../../../src/schemas/2025/schedule-c.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const scheduleDMeta: import("./shared.js").SchemaMeta;
|
|
3
|
+
export declare const scheduleDSchema: z.ZodObject<{
|
|
4
|
+
taxYear: z.ZodLiteral<2025>;
|
|
5
|
+
filingStatus: z.ZodOptional<z.ZodEnum<{
|
|
6
|
+
single: "single";
|
|
7
|
+
married_filing_jointly: "married_filing_jointly";
|
|
8
|
+
married_filing_separately: "married_filing_separately";
|
|
9
|
+
head_of_household: "head_of_household";
|
|
10
|
+
qualifying_surviving_spouse: "qualifying_surviving_spouse";
|
|
11
|
+
}>>;
|
|
12
|
+
part1ShortTerm: z.ZodObject<{
|
|
13
|
+
line1bForm8949BoxA: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14
|
+
line2Form8949BoxB: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
15
|
+
line3Form8949BoxC: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16
|
+
line4ShortTermFromK1: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
17
|
+
line5NetShortTermFromScheduleK1: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18
|
+
line6ShortTermCarryover: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
19
|
+
line7NetShortTermGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
20
|
+
}, z.core.$strict>;
|
|
21
|
+
part2LongTerm: z.ZodObject<{
|
|
22
|
+
line8bForm8949BoxD: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
23
|
+
line9Form8949BoxE: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
24
|
+
line10Form8949BoxF: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
25
|
+
line11OtherLongTermGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
26
|
+
line12NetLongTermFromScheduleK1: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
27
|
+
line13CapitalGainDistributions: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
28
|
+
line14LongTermCarryover: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
29
|
+
line15NetLongTermGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
30
|
+
}, z.core.$strict>;
|
|
31
|
+
part3Summary: z.ZodObject<{
|
|
32
|
+
line16CombinedGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
33
|
+
line21CapitalGainOrLoss: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
34
|
+
}, z.core.$strict>;
|
|
35
|
+
}, z.core.$strict>;
|
|
36
|
+
export type ScheduleDSchema = z.infer<typeof scheduleDSchema>;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { filingStatusSchema, formMeta, moneySchema, taxYearSchema, } from "./shared.js";
|
|
3
|
+
export const scheduleDMeta = formMeta({
|
|
4
|
+
id: "schedule-d",
|
|
5
|
+
name: "Schedule D",
|
|
6
|
+
taxYear: 2025,
|
|
7
|
+
version: "2025.1",
|
|
8
|
+
kind: "schedule",
|
|
9
|
+
});
|
|
10
|
+
export const scheduleDSchema = z
|
|
11
|
+
.object({
|
|
12
|
+
taxYear: taxYearSchema,
|
|
13
|
+
filingStatus: filingStatusSchema.optional().describe("Filing status"),
|
|
14
|
+
// Part I — Short-Term Capital Gains and Losses
|
|
15
|
+
part1ShortTerm: z
|
|
16
|
+
.object({
|
|
17
|
+
line1bForm8949BoxA: moneySchema.optional().describe("Line 1b - Form 8949 Box A totals"),
|
|
18
|
+
line2Form8949BoxB: moneySchema.optional().describe("Line 2 - Form 8949 Box B totals"),
|
|
19
|
+
line3Form8949BoxC: moneySchema.optional().describe("Line 3 - Form 8949 Box C totals"),
|
|
20
|
+
line4ShortTermFromK1: moneySchema.optional().describe("Line 4 - Short-term gain/loss from Forms 6252, 4684, 6781, 8824"),
|
|
21
|
+
line5NetShortTermFromScheduleK1: moneySchema.optional().describe("Line 5 - Net short-term from Schedule(s) K-1"),
|
|
22
|
+
line6ShortTermCarryover: moneySchema.optional().describe("Line 6 - Short-term capital loss carryover"),
|
|
23
|
+
line7NetShortTermGainOrLoss: moneySchema.optional().describe("Line 7 - Net short-term capital gain or (loss)"),
|
|
24
|
+
})
|
|
25
|
+
.strict()
|
|
26
|
+
.describe("Part I - Short-Term Capital Gains and Losses"),
|
|
27
|
+
// Part II — Long-Term Capital Gains and Losses
|
|
28
|
+
part2LongTerm: z
|
|
29
|
+
.object({
|
|
30
|
+
line8bForm8949BoxD: moneySchema.optional().describe("Line 8b - Form 8949 Box D totals"),
|
|
31
|
+
line9Form8949BoxE: moneySchema.optional().describe("Line 9 - Form 8949 Box E totals"),
|
|
32
|
+
line10Form8949BoxF: moneySchema.optional().describe("Line 10 - Form 8949 Box F totals"),
|
|
33
|
+
line11OtherLongTermGainOrLoss: moneySchema.optional().describe("Line 11 - Gain from Form 4797"),
|
|
34
|
+
line12NetLongTermFromScheduleK1: moneySchema.optional().describe("Line 12 - Net long-term from Schedule(s) K-1"),
|
|
35
|
+
line13CapitalGainDistributions: moneySchema.optional().describe("Line 13 - Capital gain distributions"),
|
|
36
|
+
line14LongTermCarryover: moneySchema.optional().describe("Line 14 - Long-term capital loss carryover"),
|
|
37
|
+
line15NetLongTermGainOrLoss: moneySchema.optional().describe("Line 15 - Net long-term capital gain or (loss)"),
|
|
38
|
+
})
|
|
39
|
+
.strict()
|
|
40
|
+
.describe("Part II - Long-Term Capital Gains and Losses"),
|
|
41
|
+
// Part III — Summary
|
|
42
|
+
part3Summary: z
|
|
43
|
+
.object({
|
|
44
|
+
line16CombinedGainOrLoss: moneySchema.optional().describe("Line 16 - Combine lines 7 and 15"),
|
|
45
|
+
line21CapitalGainOrLoss: moneySchema.optional().describe("Line 21 - Capital gain or (loss) to Form 1040 line 7"),
|
|
46
|
+
})
|
|
47
|
+
.strict()
|
|
48
|
+
.describe("Part III - Summary"),
|
|
49
|
+
})
|
|
50
|
+
.strict()
|
|
51
|
+
.describe("Schedule D (Capital Gains and Losses)");
|
|
52
|
+
//# sourceMappingURL=schedule-d.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schedule-d.js","sourceRoot":"","sources":["../../../../src/schemas/2025/schedule-d.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,kBAAkB,EAClB,QAAQ,EACR,WAAW,EACX,aAAa,GACd,MAAM,aAAa,CAAC;AAErB,MAAM,CAAC,MAAM,aAAa,GAAG,QAAQ,CAAC;IACpC,EAAE,EAAE,YAAY;IAChB,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,QAAQ;IACjB,IAAI,EAAE,UAAU;CACjB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,OAAO,EAAE,aAAa;IACtB,YAAY,EAAE,kBAAkB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC;IAErE,+CAA+C;IAC/C,cAAc,EAAE,CAAC;SACd,MAAM,CAAC;QACN,kBAAkB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QACvF,iBAAiB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;QACrF,iBAAiB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;QACrF,oBAAoB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iEAAiE,CAAC;QACxH,+BAA+B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;QAChH,uBAAuB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC;QACtG,2BAA2B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gDAAgD,CAAC;KAC/G,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,8CAA8C,CAAC;IAE3D,+CAA+C;IAC/C,aAAa,EAAE,CAAC;SACb,MAAM,CAAC;QACN,kBAAkB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QACvF,iBAAiB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;QACrF,kBAAkB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QACvF,6BAA6B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,+BAA+B,CAAC;QAC/F,+BAA+B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;QAChH,8BAA8B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;QACvG,uBAAuB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC;QACtG,2BAA2B,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gDAAgD,CAAC;KAC/G,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,8CAA8C,CAAC;IAE3D,qBAAqB;IACrB,YAAY,EAAE,CAAC;SACZ,MAAM,CAAC;QACN,wBAAwB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QAC7F,uBAAuB,EAAE,WAAW,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,sDAAsD,CAAC;KACjH,CAAC;SACD,MAAM,EAAE;SACR,QAAQ,CAAC,oBAAoB,CAAC;CAClC,CAAC;KACD,MAAM,EAAE;KACR,QAAQ,CAAC,uCAAuC,CAAC,CAAC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { Address, DependentInput, PersonIdentity } from "../../types.js";
|
|
3
|
+
export interface SchemaMeta {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
taxYear: 2025;
|
|
7
|
+
version: string;
|
|
8
|
+
kind: "return" | "schedule" | "source-document";
|
|
9
|
+
}
|
|
10
|
+
export declare const filingStatusValues: readonly ["single", "married_filing_jointly", "married_filing_separately", "head_of_household", "qualifying_surviving_spouse"];
|
|
11
|
+
export declare const filingStatusSchema: z.ZodEnum<{
|
|
12
|
+
single: "single";
|
|
13
|
+
married_filing_jointly: "married_filing_jointly";
|
|
14
|
+
married_filing_separately: "married_filing_separately";
|
|
15
|
+
head_of_household: "head_of_household";
|
|
16
|
+
qualifying_surviving_spouse: "qualifying_surviving_spouse";
|
|
17
|
+
}>;
|
|
18
|
+
export declare const taxYearSchema: z.ZodLiteral<2025>;
|
|
19
|
+
export declare const moneySchema: z.ZodCoercedNumber<unknown>;
|
|
20
|
+
export declare const signedMoneySchema: z.ZodCoercedNumber<unknown>;
|
|
21
|
+
export declare const nonNegativeMoneySchema: z.ZodCoercedNumber<unknown>;
|
|
22
|
+
export declare const percentSchema: z.ZodCoercedNumber<unknown>;
|
|
23
|
+
export declare const ssnSchema: z.ZodString;
|
|
24
|
+
export declare const einSchema: z.ZodString;
|
|
25
|
+
export declare const routingNumberSchema: z.ZodString;
|
|
26
|
+
export declare const accountNumberSchema: z.ZodString;
|
|
27
|
+
export declare const stateCodeSchema: z.ZodString;
|
|
28
|
+
export declare const zipCodeSchema: z.ZodString;
|
|
29
|
+
export declare const addressSchema: z.ZodObject<{
|
|
30
|
+
street1: z.ZodString;
|
|
31
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
32
|
+
city: z.ZodString;
|
|
33
|
+
state: z.ZodString;
|
|
34
|
+
zipCode: z.ZodString;
|
|
35
|
+
}, z.core.$strict>;
|
|
36
|
+
export declare const personIdentitySchema: z.ZodObject<{
|
|
37
|
+
firstName: z.ZodString;
|
|
38
|
+
lastName: z.ZodString;
|
|
39
|
+
ssn: z.ZodString;
|
|
40
|
+
address: z.ZodObject<{
|
|
41
|
+
street1: z.ZodString;
|
|
42
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
43
|
+
city: z.ZodString;
|
|
44
|
+
state: z.ZodString;
|
|
45
|
+
zipCode: z.ZodString;
|
|
46
|
+
}, z.core.$strict>;
|
|
47
|
+
}, z.core.$strict>;
|
|
48
|
+
export declare const dependentSchema: z.ZodObject<{
|
|
49
|
+
name: z.ZodString;
|
|
50
|
+
ssn: z.ZodString;
|
|
51
|
+
relationship: z.ZodString;
|
|
52
|
+
childTaxCreditEligible: z.ZodBoolean;
|
|
53
|
+
eitcEligible: z.ZodOptional<z.ZodBoolean>;
|
|
54
|
+
}, z.core.$strict>;
|
|
55
|
+
export declare const yesNoSchema: z.ZodBoolean;
|
|
56
|
+
export declare const stateInfoSchema: z.ZodObject<{
|
|
57
|
+
state: z.ZodString;
|
|
58
|
+
stateIdNumber: z.ZodOptional<z.ZodString>;
|
|
59
|
+
stateIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
60
|
+
stateTaxWithheld: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
61
|
+
localIncome: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
62
|
+
localTaxWithheld: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
63
|
+
}, z.core.$strict>;
|
|
64
|
+
export declare const w2Box12ItemSchema: z.ZodObject<{
|
|
65
|
+
code: z.ZodString;
|
|
66
|
+
amount: z.ZodCoercedNumber<unknown>;
|
|
67
|
+
}, z.core.$strict>;
|
|
68
|
+
export declare const scheduleCExpenseFields: readonly ["advertising", "carAndTruck", "commissionsAndFees", "contractLabor", "depletion", "depreciation", "employeeBenefitPrograms", "insuranceOtherThanHealth", "interestMortgage", "interestOther", "legalAndProfessional", "officeExpense", "pensionAndProfitSharing", "rentalOrLeaseVehicles", "rentalOrLeaseOtherBusinessProperty", "repairsAndMaintenance", "supplies", "taxesAndLicenses", "travel", "meals", "utilities", "wages", "otherExpenses"];
|
|
69
|
+
export type ScheduleCExpenseField = (typeof scheduleCExpenseFields)[number];
|
|
70
|
+
export declare const scheduleCExpenseSchema: z.ZodObject<{
|
|
71
|
+
advertising: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
72
|
+
carAndTruck: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
73
|
+
commissionsAndFees: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
74
|
+
contractLabor: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
75
|
+
depletion: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
76
|
+
depreciation: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
77
|
+
employeeBenefitPrograms: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
78
|
+
insuranceOtherThanHealth: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
79
|
+
interestMortgage: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
80
|
+
interestOther: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
81
|
+
legalAndProfessional: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
82
|
+
officeExpense: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
83
|
+
pensionAndProfitSharing: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
84
|
+
rentalOrLeaseVehicles: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
85
|
+
rentalOrLeaseOtherBusinessProperty: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
86
|
+
repairsAndMaintenance: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
87
|
+
supplies: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
88
|
+
taxesAndLicenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
89
|
+
travel: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
90
|
+
meals: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
91
|
+
utilities: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
92
|
+
wages: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
93
|
+
otherExpenses: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
94
|
+
}, z.core.$strict>;
|
|
95
|
+
export declare const formMeta: (meta: SchemaMeta) => SchemaMeta;
|
|
96
|
+
export type Dependent = DependentInput;
|
|
97
|
+
export type AddressInput = Address;
|
|
98
|
+
export type PersonIdentityInput = PersonIdentity;
|