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,409 @@
|
|
|
1
|
+
import type { WorkflowBundle } from "../../types.js";
|
|
2
|
+
import type { LiheapInput, MedicaidInput, Section8Input, SnapInput, SsdiInput, WicInput } from "../schemas/benefits.js";
|
|
3
|
+
declare function buildSnapBundle(input: SnapInput): WorkflowBundle;
|
|
4
|
+
declare function buildSection8Bundle(input: Section8Input): WorkflowBundle;
|
|
5
|
+
declare function buildWicBundle(input: WicInput): WorkflowBundle;
|
|
6
|
+
declare function buildLiheapBundle(input: LiheapInput): WorkflowBundle;
|
|
7
|
+
declare function buildMedicaidBundle(input: MedicaidInput): WorkflowBundle;
|
|
8
|
+
declare function buildSsdiBundle(input: SsdiInput): WorkflowBundle;
|
|
9
|
+
export declare const benefitsWorkflows: {
|
|
10
|
+
readonly "benefits/snap": {
|
|
11
|
+
summary: {
|
|
12
|
+
id: string;
|
|
13
|
+
domain: "benefits";
|
|
14
|
+
title: string;
|
|
15
|
+
summary: string;
|
|
16
|
+
status: "active";
|
|
17
|
+
audience: "household";
|
|
18
|
+
tags: string[];
|
|
19
|
+
};
|
|
20
|
+
inputSchema: import("zod").ZodObject<{
|
|
21
|
+
householdSize: import("zod").ZodCoercedNumber<unknown>;
|
|
22
|
+
monthlyGrossIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
23
|
+
monthlyNetIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
24
|
+
state: import("zod").ZodString;
|
|
25
|
+
citizenshipStatus: import("zod").ZodEnum<{
|
|
26
|
+
other: "other";
|
|
27
|
+
permanent_resident: "permanent_resident";
|
|
28
|
+
us_citizen: "us_citizen";
|
|
29
|
+
qualified_alien: "qualified_alien";
|
|
30
|
+
}>;
|
|
31
|
+
receivingTanf: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
32
|
+
receivingSsi: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
33
|
+
hasAssets: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
34
|
+
assetValue: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
35
|
+
hasVehicle: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
36
|
+
}, import("zod/v4/core").$strict>;
|
|
37
|
+
starterData: {
|
|
38
|
+
householdSize: number;
|
|
39
|
+
monthlyGrossIncome: number;
|
|
40
|
+
monthlyNetIncome: number;
|
|
41
|
+
state: string;
|
|
42
|
+
citizenshipStatus: "us_citizen";
|
|
43
|
+
receivingTanf: false;
|
|
44
|
+
receivingSsi: false;
|
|
45
|
+
hasAssets: false;
|
|
46
|
+
assetValue: number;
|
|
47
|
+
hasVehicle: false;
|
|
48
|
+
};
|
|
49
|
+
sections: ({
|
|
50
|
+
id: string;
|
|
51
|
+
title: string;
|
|
52
|
+
fields: ({
|
|
53
|
+
key: string;
|
|
54
|
+
label: string;
|
|
55
|
+
type: "number";
|
|
56
|
+
options?: never;
|
|
57
|
+
} | {
|
|
58
|
+
key: string;
|
|
59
|
+
label: string;
|
|
60
|
+
type: "text";
|
|
61
|
+
options?: never;
|
|
62
|
+
} | {
|
|
63
|
+
key: string;
|
|
64
|
+
label: string;
|
|
65
|
+
type: "select";
|
|
66
|
+
options: {
|
|
67
|
+
label: string;
|
|
68
|
+
value: string;
|
|
69
|
+
}[];
|
|
70
|
+
})[];
|
|
71
|
+
} | {
|
|
72
|
+
id: string;
|
|
73
|
+
title: string;
|
|
74
|
+
fields: ({
|
|
75
|
+
key: string;
|
|
76
|
+
label: string;
|
|
77
|
+
type: "confirm";
|
|
78
|
+
} | {
|
|
79
|
+
key: string;
|
|
80
|
+
label: string;
|
|
81
|
+
type: "currency";
|
|
82
|
+
})[];
|
|
83
|
+
})[];
|
|
84
|
+
buildBundle: typeof buildSnapBundle;
|
|
85
|
+
};
|
|
86
|
+
readonly "benefits/section8": {
|
|
87
|
+
summary: {
|
|
88
|
+
id: string;
|
|
89
|
+
domain: "benefits";
|
|
90
|
+
title: string;
|
|
91
|
+
summary: string;
|
|
92
|
+
status: "active";
|
|
93
|
+
audience: "household";
|
|
94
|
+
tags: string[];
|
|
95
|
+
};
|
|
96
|
+
inputSchema: import("zod").ZodObject<{
|
|
97
|
+
householdSize: import("zod").ZodCoercedNumber<unknown>;
|
|
98
|
+
annualIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
99
|
+
state: import("zod").ZodString;
|
|
100
|
+
county: import("zod").ZodString;
|
|
101
|
+
currentHousingCost: import("zod").ZodCoercedNumber<unknown>;
|
|
102
|
+
isDisabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
103
|
+
isElderly: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
104
|
+
isVeteran: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
105
|
+
}, import("zod/v4/core").$strict>;
|
|
106
|
+
starterData: {
|
|
107
|
+
householdSize: number;
|
|
108
|
+
annualIncome: number;
|
|
109
|
+
state: string;
|
|
110
|
+
county: string;
|
|
111
|
+
currentHousingCost: number;
|
|
112
|
+
isDisabled: false;
|
|
113
|
+
isElderly: false;
|
|
114
|
+
isVeteran: false;
|
|
115
|
+
};
|
|
116
|
+
sections: ({
|
|
117
|
+
id: string;
|
|
118
|
+
title: string;
|
|
119
|
+
fields: ({
|
|
120
|
+
key: string;
|
|
121
|
+
label: string;
|
|
122
|
+
type: "number";
|
|
123
|
+
} | {
|
|
124
|
+
key: string;
|
|
125
|
+
label: string;
|
|
126
|
+
type: "text";
|
|
127
|
+
})[];
|
|
128
|
+
} | {
|
|
129
|
+
id: string;
|
|
130
|
+
title: string;
|
|
131
|
+
fields: ({
|
|
132
|
+
key: string;
|
|
133
|
+
label: string;
|
|
134
|
+
type: "currency";
|
|
135
|
+
} | {
|
|
136
|
+
key: string;
|
|
137
|
+
label: string;
|
|
138
|
+
type: "confirm";
|
|
139
|
+
})[];
|
|
140
|
+
})[];
|
|
141
|
+
buildBundle: typeof buildSection8Bundle;
|
|
142
|
+
};
|
|
143
|
+
readonly "benefits/wic": {
|
|
144
|
+
summary: {
|
|
145
|
+
id: string;
|
|
146
|
+
domain: "benefits";
|
|
147
|
+
title: string;
|
|
148
|
+
summary: string;
|
|
149
|
+
status: "active";
|
|
150
|
+
audience: "household";
|
|
151
|
+
tags: string[];
|
|
152
|
+
};
|
|
153
|
+
inputSchema: import("zod").ZodObject<{
|
|
154
|
+
applicantCategory: import("zod").ZodEnum<{
|
|
155
|
+
child: "child";
|
|
156
|
+
pregnant: "pregnant";
|
|
157
|
+
postpartum: "postpartum";
|
|
158
|
+
infant: "infant";
|
|
159
|
+
}>;
|
|
160
|
+
applicantAge: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
161
|
+
householdSize: import("zod").ZodCoercedNumber<unknown>;
|
|
162
|
+
annualIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
163
|
+
receivingMedicaid: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
164
|
+
receivingSnap: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
165
|
+
receivingTanf: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
166
|
+
}, import("zod/v4/core").$strict>;
|
|
167
|
+
starterData: {
|
|
168
|
+
applicantCategory: "child";
|
|
169
|
+
householdSize: number;
|
|
170
|
+
annualIncome: number;
|
|
171
|
+
receivingMedicaid: false;
|
|
172
|
+
receivingSnap: false;
|
|
173
|
+
receivingTanf: false;
|
|
174
|
+
};
|
|
175
|
+
sections: ({
|
|
176
|
+
id: string;
|
|
177
|
+
title: string;
|
|
178
|
+
fields: ({
|
|
179
|
+
key: string;
|
|
180
|
+
label: string;
|
|
181
|
+
type: "select";
|
|
182
|
+
options: {
|
|
183
|
+
label: string;
|
|
184
|
+
value: string;
|
|
185
|
+
}[];
|
|
186
|
+
} | {
|
|
187
|
+
key: string;
|
|
188
|
+
label: string;
|
|
189
|
+
type: "number";
|
|
190
|
+
options?: never;
|
|
191
|
+
})[];
|
|
192
|
+
} | {
|
|
193
|
+
id: string;
|
|
194
|
+
title: string;
|
|
195
|
+
fields: ({
|
|
196
|
+
key: string;
|
|
197
|
+
label: string;
|
|
198
|
+
type: "currency";
|
|
199
|
+
} | {
|
|
200
|
+
key: string;
|
|
201
|
+
label: string;
|
|
202
|
+
type: "confirm";
|
|
203
|
+
})[];
|
|
204
|
+
})[];
|
|
205
|
+
buildBundle: typeof buildWicBundle;
|
|
206
|
+
};
|
|
207
|
+
readonly "benefits/liheap": {
|
|
208
|
+
summary: {
|
|
209
|
+
id: string;
|
|
210
|
+
domain: "benefits";
|
|
211
|
+
title: string;
|
|
212
|
+
summary: string;
|
|
213
|
+
status: "active";
|
|
214
|
+
audience: "household";
|
|
215
|
+
tags: string[];
|
|
216
|
+
};
|
|
217
|
+
inputSchema: import("zod").ZodObject<{
|
|
218
|
+
householdSize: import("zod").ZodCoercedNumber<unknown>;
|
|
219
|
+
annualIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
220
|
+
state: import("zod").ZodString;
|
|
221
|
+
heatingSource: import("zod").ZodString;
|
|
222
|
+
hasUtilityShutoffNotice: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
223
|
+
season: import("zod").ZodEnum<{
|
|
224
|
+
winter: "winter";
|
|
225
|
+
summer: "summer";
|
|
226
|
+
}>;
|
|
227
|
+
}, import("zod/v4/core").$strict>;
|
|
228
|
+
starterData: {
|
|
229
|
+
householdSize: number;
|
|
230
|
+
annualIncome: number;
|
|
231
|
+
state: string;
|
|
232
|
+
heatingSource: string;
|
|
233
|
+
hasUtilityShutoffNotice: false;
|
|
234
|
+
season: "winter";
|
|
235
|
+
};
|
|
236
|
+
sections: ({
|
|
237
|
+
id: string;
|
|
238
|
+
title: string;
|
|
239
|
+
fields: ({
|
|
240
|
+
key: string;
|
|
241
|
+
label: string;
|
|
242
|
+
type: "number";
|
|
243
|
+
} | {
|
|
244
|
+
key: string;
|
|
245
|
+
label: string;
|
|
246
|
+
type: "text";
|
|
247
|
+
})[];
|
|
248
|
+
} | {
|
|
249
|
+
id: string;
|
|
250
|
+
title: string;
|
|
251
|
+
fields: {
|
|
252
|
+
key: string;
|
|
253
|
+
label: string;
|
|
254
|
+
type: "currency";
|
|
255
|
+
}[];
|
|
256
|
+
} | {
|
|
257
|
+
id: string;
|
|
258
|
+
title: string;
|
|
259
|
+
fields: ({
|
|
260
|
+
key: string;
|
|
261
|
+
label: string;
|
|
262
|
+
type: "text";
|
|
263
|
+
options?: never;
|
|
264
|
+
} | {
|
|
265
|
+
key: string;
|
|
266
|
+
label: string;
|
|
267
|
+
type: "confirm";
|
|
268
|
+
options?: never;
|
|
269
|
+
} | {
|
|
270
|
+
key: string;
|
|
271
|
+
label: string;
|
|
272
|
+
type: "select";
|
|
273
|
+
options: {
|
|
274
|
+
label: string;
|
|
275
|
+
value: string;
|
|
276
|
+
}[];
|
|
277
|
+
})[];
|
|
278
|
+
})[];
|
|
279
|
+
buildBundle: typeof buildLiheapBundle;
|
|
280
|
+
};
|
|
281
|
+
readonly "benefits/medicaid": {
|
|
282
|
+
summary: {
|
|
283
|
+
id: string;
|
|
284
|
+
domain: "benefits";
|
|
285
|
+
title: string;
|
|
286
|
+
summary: string;
|
|
287
|
+
status: "active";
|
|
288
|
+
audience: "household";
|
|
289
|
+
tags: string[];
|
|
290
|
+
};
|
|
291
|
+
inputSchema: import("zod").ZodObject<{
|
|
292
|
+
householdSize: import("zod").ZodCoercedNumber<unknown>;
|
|
293
|
+
monthlyIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
294
|
+
state: import("zod").ZodString;
|
|
295
|
+
isPregnant: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
296
|
+
hasChildren: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
297
|
+
isDisabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
298
|
+
isElderly: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
299
|
+
currentInsurance: import("zod").ZodDefault<import("zod").ZodString>;
|
|
300
|
+
}, import("zod/v4/core").$strict>;
|
|
301
|
+
starterData: {
|
|
302
|
+
householdSize: number;
|
|
303
|
+
monthlyIncome: number;
|
|
304
|
+
state: string;
|
|
305
|
+
isPregnant: false;
|
|
306
|
+
hasChildren: false;
|
|
307
|
+
isDisabled: false;
|
|
308
|
+
isElderly: false;
|
|
309
|
+
currentInsurance: string;
|
|
310
|
+
};
|
|
311
|
+
sections: ({
|
|
312
|
+
id: string;
|
|
313
|
+
title: string;
|
|
314
|
+
fields: {
|
|
315
|
+
key: string;
|
|
316
|
+
label: string;
|
|
317
|
+
type: "number";
|
|
318
|
+
}[];
|
|
319
|
+
} | {
|
|
320
|
+
id: string;
|
|
321
|
+
title: string;
|
|
322
|
+
fields: {
|
|
323
|
+
key: string;
|
|
324
|
+
label: string;
|
|
325
|
+
type: "currency";
|
|
326
|
+
}[];
|
|
327
|
+
} | {
|
|
328
|
+
id: string;
|
|
329
|
+
title: string;
|
|
330
|
+
fields: ({
|
|
331
|
+
key: string;
|
|
332
|
+
label: string;
|
|
333
|
+
type: "confirm";
|
|
334
|
+
} | {
|
|
335
|
+
key: string;
|
|
336
|
+
label: string;
|
|
337
|
+
type: "text";
|
|
338
|
+
})[];
|
|
339
|
+
})[];
|
|
340
|
+
buildBundle: typeof buildMedicaidBundle;
|
|
341
|
+
};
|
|
342
|
+
readonly "benefits/ssdi-application": {
|
|
343
|
+
summary: {
|
|
344
|
+
id: string;
|
|
345
|
+
domain: "benefits";
|
|
346
|
+
title: string;
|
|
347
|
+
summary: string;
|
|
348
|
+
status: "active";
|
|
349
|
+
audience: "individual";
|
|
350
|
+
tags: string[];
|
|
351
|
+
};
|
|
352
|
+
inputSchema: import("zod").ZodObject<{
|
|
353
|
+
applicantName: import("zod").ZodString;
|
|
354
|
+
disabilityOnsetDate: import("zod").ZodString;
|
|
355
|
+
lastWorkDate: import("zod").ZodString;
|
|
356
|
+
monthlyEarnings: import("zod").ZodCoercedNumber<unknown>;
|
|
357
|
+
medicalConditions: import("zod").ZodArray<import("zod").ZodString>;
|
|
358
|
+
treatingPhysicians: import("zod").ZodArray<import("zod").ZodString>;
|
|
359
|
+
hasBeenHospitalized: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
360
|
+
}, import("zod/v4/core").$strict>;
|
|
361
|
+
starterData: {
|
|
362
|
+
applicantName: string;
|
|
363
|
+
disabilityOnsetDate: string;
|
|
364
|
+
lastWorkDate: string;
|
|
365
|
+
monthlyEarnings: number;
|
|
366
|
+
medicalConditions: never[];
|
|
367
|
+
treatingPhysicians: never[];
|
|
368
|
+
hasBeenHospitalized: false;
|
|
369
|
+
};
|
|
370
|
+
sections: ({
|
|
371
|
+
id: string;
|
|
372
|
+
title: string;
|
|
373
|
+
fields: ({
|
|
374
|
+
key: string;
|
|
375
|
+
label: string;
|
|
376
|
+
type: "text";
|
|
377
|
+
} | {
|
|
378
|
+
key: string;
|
|
379
|
+
label: string;
|
|
380
|
+
type: "date";
|
|
381
|
+
} | {
|
|
382
|
+
key: string;
|
|
383
|
+
label: string;
|
|
384
|
+
type: "currency";
|
|
385
|
+
})[];
|
|
386
|
+
description?: never;
|
|
387
|
+
} | {
|
|
388
|
+
id: string;
|
|
389
|
+
title: string;
|
|
390
|
+
fields: ({
|
|
391
|
+
key: string;
|
|
392
|
+
label: string;
|
|
393
|
+
type: "date";
|
|
394
|
+
} | {
|
|
395
|
+
key: string;
|
|
396
|
+
label: string;
|
|
397
|
+
type: "confirm";
|
|
398
|
+
})[];
|
|
399
|
+
description?: never;
|
|
400
|
+
} | {
|
|
401
|
+
id: string;
|
|
402
|
+
title: string;
|
|
403
|
+
description: string;
|
|
404
|
+
fields: never[];
|
|
405
|
+
})[];
|
|
406
|
+
buildBundle: typeof buildSsdiBundle;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
export {};
|