@classytic/ca-tax 0.0.5 → 0.0.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,305 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.13] - 2026-08-31
4
+
5
+ ### Added — 10 new AT1 schedule form definitions
6
+
7
+ `AT1_SCHEDULE_1` (Small Business Deduction), `AT1_SCHEDULE_2` (Allocation of
8
+ Taxable Income), `AT1_SCHEDULE_4` (Charitable Donations / Gifts), `AT1_SCHEDULE_5`
9
+ (Saskatchewan Royalties / Resource Allowance), `AT1_SCHEDULE_6` (Royalty Tax
10
+ Credit), `AT1_SCHEDULE_7` (Alberta Venture Capital Tax Credit), `AT1_SCHEDULE_8`
11
+ (Capital Cost Allowance), `AT1_SCHEDULE_9` (Losses — Applied and Available),
12
+ `AT1_SCHEDULE_10` (Loss Carry-Back Application), `AT1_SCHEDULE_11` (Partnership
13
+ Income / Losses). All registered in `FORMS` and exported from `./forms`.
14
+
15
+ ### Added — paper Form View layout generator expanded
16
+
17
+ `emit-ui-schedule.ts` now generates flat paper layouts for every new schedule via
18
+ a shared `emitFlatSchedule` helper, removing the ~20-line boilerplate each
19
+ previously required. Jacket and Schedule 21 layouts predate the helper and keep
20
+ their own functions so the drift tests pin their exact byte output unchanged.
21
+
22
+ Destination path corrected from `schedules/net-income.ts` to
23
+ `schedules/t2/net-income.ts`; import paths inside the generated file updated to
24
+ match the restructured web-app directory.
25
+
26
+ ### Added — `Schedule1AgreementMember` + Area A occurrence support in Schedule 1 filing
27
+
28
+ `schedule1Values` accepts `agreementMembers?: Schedule1AgreementMember[]` — one
29
+ entry per associated corp (claimant first) — and emits fields 041/043/045 with
30
+ occurrence numbers so every member appears on the NetFile payload. Previously
31
+ there was no way to file Schedule 1 for an associated group.
32
+
33
+ ### Added — farm and other-loss carry-back types in Schedule 10 filing
34
+
35
+ `schedule10Values` now models all four loss-type columns: non-capital, farm,
36
+ other loss (restricted farm / listed personal property checkbox), and capital.
37
+ Previously only non-capital and capital were wired. The three preceding-year date
38
+ fields are shared across columns (the printed form has one row of date boxes, not
39
+ one per loss type).
40
+
41
+ ### Fixed — IEG discriminated-union call enforced at the call site
42
+
43
+ `computeAlbertaReturn` now calls `computeIeg` via a ternary that passes EITHER
44
+ the associated branch (with `associatedAllowedAmount`, no `baseAmount`) OR the
45
+ non-associated branch (with `baseAmount`, no `associatedAllowedAmount`), matching
46
+ the discriminated union that `IegInput` declares. Previously both branches were
47
+ merged into one call where `baseAmount` and `associatedAllowedAmount` were both
48
+ present, meaning `baseAmount` — a group-level figure with no corresponding line
49
+ on the live form when an Agreement exists — was silently passed into the
50
+ associated computation.
51
+
52
+ ### Fixed — schedule issues now propagate to the top-level issues array
53
+
54
+ `computeAlbertaReturn` folds each schedule's `result.issues` into the top-level
55
+ `issues` array (SBD already does; allocation and the others now follow). A caller
56
+ (the review layer, a paper Form View) previously had to inspect each schedule's
57
+ result separately to find validation notes and fail-closed defaults.
58
+
59
+ ### Changed — new AT1 schedule exports from `./forms`
60
+
61
+ `AT1_SCHEDULE_21_CONTINUITY_CAPTIONS`, `AT1_SCHEDULE_21_CONTINUITY_ORDER`, and
62
+ `scheduleTwentyOneLineId` are now exported from `./forms` under their public
63
+ names. `AT1_SCHEDULE_1`, `AT1_SCHEDULE_2`, `AT1_SCHEDULE_10` join the index.
64
+
65
+ ## [0.0.12] - 2026-08-30
66
+
67
+ ### Fixed
68
+
69
+ **AT1 Schedule 6's "missing credit line" was not actually a gap — traced to a
70
+ confirmed answer and the incorrect `issues` entry removed.** 0.0.11 shipped
71
+ Schedule 6 (Royalty Tax Credit) with an `issues` entry stating no formula
72
+ existed in the transcribed spec range to compute a final claimable credit
73
+ dollar amount. Tracing the AT1 jacket's own balance-owing formula (spec
74
+ §3.2.3.1, `090 = 080 − (081+082+085+086+087)`) shows it never references a
75
+ Schedule 6 total the way it references Schedule 9's SR&ED credit (081) or
76
+ Schedule 8's political credit (074) — because the **Alberta Royalty Tax
77
+ Credit is administered as an instalment program**, not an annual claimed
78
+ credit. TRA pays or credits ARTC instalments to the corporation during the
79
+ year based on estimated entitlement; the corporation simply reports what it
80
+ received at AT1 jacket line **000082** ("Instalments and other payments and
81
+ ARTC instalments credited to income tax account"), already collected by
82
+ this app's shared "Payments & Instalments" schedule. Schedule 6/7 exist to
83
+ establish the royalty amount, shelter and rate TRA uses for that
84
+ determination — not to produce a number this return deducts. Schedule 6 was
85
+ complete as built; only the messaging (an engine `issues` entry, a module
86
+ docstring, and the UI schedule hint) implied an unresolved defect where none
87
+ existed. Corrected all three.
88
+
89
+ ## [0.0.11] - 2026-08-30
90
+
91
+ ### Added
92
+
93
+ **Nine entirely-unmodeled AT1 schedules — engine, filing builders, server
94
+ composition and UI, all wired end to end.** Before this release the AT1
95
+ engine modeled 12 of the 21 real Alberta schedules; Schedules 3, 4, 5, 6, 7,
96
+ 8, 9, 11 and 15 existed only as bottom-line jacket passthroughs with zero
97
+ supporting-schedule math. Each is now a real, tested module reachable from a
98
+ preparer's form through to a filed Net File payload:
99
+
100
+ - **Schedule 3** — Other Tax Deductions and Credits: three independent
101
+ non-refundable credit continuities (Investor Tax Credit, Capital Investment
102
+ Tax Credit, Agri-Processing Investment Tax Credit) sharing one ceiling
103
+ (Maximum Allowable Deduction). CITC is gated behind ITC's carryforward;
104
+ APITC's three earliest vintages each carry their own percentage cap
105
+ (20%/30%/50%), the rest uncapped.
106
+ - **Schedule 4** — Foreign Investment Income Tax Credit: one row per country,
107
+ mirroring federal Schedule 21's own occurrences.
108
+ - **Schedule 5** — Royalty Tax Deduction: the Crown Royalty Tax Deduction
109
+ pool (unsuccessored) plus SSPI/FSPI successored pools, each with its own
110
+ mandatory (not discretionary) claim formula.
111
+ - **Schedule 6** — Royalty Tax Credit. **Known gap, not guessed at:** the
112
+ specification's own field map stops at line 006034 — no line anywhere
113
+ multiplies rate × min(royalty, shelter) into a claimable credit dollar
114
+ amount. Every other line files; the credit itself is absent with an
115
+ `issues` entry until an authoritative source resolves it.
116
+ - **Schedule 7** — Royalty Tax Credit/Deduction Supplemental Information:
117
+ Crown Payment Information, Partnership Income Tax Information and
118
+ Adjustments to ACR — the disclosure schedule Schedules 5 and 6 both depend
119
+ on (per the spec, omitting it disallows the credit entitlement outright).
120
+ - **Schedule 8** — Political Contributions Tax Credit: per-contribution
121
+ receipts plus the three-rate-period tiered credit formula (to-2003,
122
+ from-2004, and the 2003/2004 straddling tax year).
123
+ - **Schedule 9** — SR&ED Tax Credit (Alberta's own credit, distinct from
124
+ Schedule 16's federal-mirroring deduction pool), including the page-3
125
+ associated-group expenditure-limit allocation.
126
+ - **Schedule 11** — Manufacturing and Processing Profits Deduction: a
127
+ historical schedule (tax years beginning before 2001-04-01 only), gated on
128
+ both the date and the 10%-of-gross-revenue test.
129
+ - **Schedule 15** — Resource Related Deductions: eight resource-expense
130
+ continuity pools, each regular + successor (EDA, CMEDB, CEE, CDE, CCOGPE,
131
+ FEDE, SFEDE, CFRE — the last two per-country). No resource-allowance pool
132
+ exists on this schedule; it was repealed federally for post-1989 years.
133
+
134
+ No PDF exists for Schedules 3, 4, 6, 7, 8, 9, 11 or 15 under
135
+ `research/sources/tra-forms/pdf/` — every field number was transcribed
136
+ directly from the TRA specification text (Chapter 3, 2025.2) and cross-
137
+ checked against the engine's own filing-builder tests. Two small,
138
+ purpose-built `FormDefinition`s (`AT1_SCHEDULE_3`, `AT1_SCHEDULE_15`) were
139
+ hand-authored and registered in `src/forms/registry.ts` so every line number
140
+ the return editor shows a preparer is checked, not just asserted — matching
141
+ this package's existing "hand-authored from the specification, no fillable
142
+ form to extract" convention (see `schedule12.ts`).
143
+
144
+ **Genuine spec ambiguities flagged with an `issues[]` entry rather than
145
+ guessed at, across the nine schedules:** Schedule 3's undocumented cross-
146
+ vintage APITC application order when shared room can't cover every vintage
147
+ (oldest-vintage-first is a documented engine default); Schedule 5's line 025
148
+ formula literally omitting the reimbursements term line 013 includes (kept
149
+ literal, not "fixed"); Schedule 6's missing credit line (above); Schedule
150
+ 7's line 061, which has no defining row in its own spec block but is cited
151
+ by Schedule 5's field definition; Schedule 9's line 009031, missing from the
152
+ spec's own field list, derived from the surrounding add/deduct lines with an
153
+ `issues` flag whenever the derived figure is used instead of a direct entry;
154
+ Schedule 11's line 011001, whose caption cites a Schedule 12 line that
155
+ doesn't exist anywhere else in the specification (the computable business-
156
+ rule formula was followed, the discrepancy documented); Schedule 15's
157
+ CCOGPE↔CDE negative-pool routing ambiguity (four lines with an undocumented
158
+ designation gate) and CFRE's "global foreign resource limit" (referenced by
159
+ the claim-cap formula, never defined — treated as nil with a flag rather
160
+ than invented).
161
+
162
+ `AT1_SCHEDULES_WITH_BUILDERS` now lists 21 schedule codes (was 12).
163
+ `AlbertaReturnInput.schedules` gained nine new optional keys
164
+ (`otherDeductionsCredits`, `foreignInvestmentTaxCredit`,
165
+ `royaltyTaxDeduction`, `royaltyTaxCredit`, `royaltySupplemental`,
166
+ `politicalContributions`, `sredTaxCredit`, `manufacturingProcessing`,
167
+ `resourceDeductions`) alongside the existing eleven.
168
+
169
+ **Fixed:** a real barrel-export collision discovered mid-build —
170
+ `Schedule4Input`/`Schedule4Result`/`computeSchedule4` and (more seriously)
171
+ `Schedule8Input`/`Schedule8Result`/`computeSchedule8` silently collided with
172
+ unrelated federal T2 exports of the identical names (`schedule4-losses.js`,
173
+ `schedule8.js`, the CCA module) under ESM/TS star-export rules — an explicit
174
+ local export always wins over a same-named star re-export, with no build
175
+ error. Verified live: calling the unprefixed `computeSchedule8` actually
176
+ invoked the federal CCA function and threw `entries is not iterable`. Both
177
+ AT1 pairs are now exported under `Alberta`-prefixed names
178
+ (`computeAlbertaSchedule4`/`AlbertaSchedule4Result`,
179
+ `computeAlbertaSchedule8`/`AlbertaSchedule8Result`).
180
+
181
+ **Also fixed, found while composing Schedule 17 (Reserves) for this
182
+ release:** `insurancePolicyReserves` and `bankReserves` — the two AT1-only
183
+ reserve kinds with no federal Schedule 13 Part 2 equivalent — are now
184
+ selectable in the UI and carry real Alberta-override wiring
185
+ (`assemble-at1-schedules.ts`'s `scheduleSeventeen`); previously the engine
186
+ supported all 8 reserve kinds but composition only ever passed federal
187
+ figures, so Schedule 17 could never diverge from federal for any kind.
188
+
189
+ 1211 → 1252 tests. 12 → 21 of the 21 real AT1 schedules now modeled (one,
190
+ Schedule 16's SR&ED deduction pool, remains out of scope — no federal T661
191
+ pool module exists to derive it from).
192
+
193
+ ## [0.0.10] - 2026-08-30
194
+
195
+ ### Added
196
+
197
+ **AT1 Schedule 21's SEVENTH and EIGHTH sections — analysis of losses by year
198
+ of origin (pages 3-4 of the live form) — verified against the actual
199
+ rendered PDF, not just the NetFile spec text.** Two 21-row vintage ledgers:
200
+
201
+ - `computeNonCapitalLossByYearOfOrigin` (`schedule21-year-of-origin.ts`) —
202
+ non-capital losses, one row per taxation year (0 = current, 1-20 =
203
+ preceding — the 20-year expiry limit), six columns per row. Row 0 is
204
+ fully DERIVED, not asked for twice: the spec states line 157 "must equal
205
+ 021021" (the schedule's own current-year loss) and line 165 "must equal
206
+ 021047" (the pool's total carried back) — both already computed
207
+ elsewhere. Only the 20 preceding vintages need direct entry, since that
208
+ history genuinely cannot be derived.
209
+ - `computeOtherLossByYearOfOrigin` — farm / restricted-farm / listed-
210
+ personal-property, same 21 rows but one raw balance per type per year, no
211
+ sub-formula. Listed personal property is refused (zeroed, not merely
212
+ warned) beyond occurrence 7 — it expires after 7 taxation years, not 20.
213
+
214
+ `schedule21Values` merges both into the same `Schedule Number="021"` block
215
+ as the five pools and the limited-partnership grid — one payload, not four.
216
+
217
+ **Confirmed out of scope, not silently missing:** the live form's ninth
218
+ section, Continuity of Restricted Interest and Financing Expenses (RIFE,
219
+ page 5, lines 200-250/310-350). An exhaustive search of the entire NetFile
220
+ transmission spec found no `021200`-`021350` field anywhere — RIFE
221
+ continuity exists on the paper form but is not part of the electronic
222
+ filing schema this engine targets.
223
+
224
+ ## [0.0.9] - 2026-08-30
225
+
226
+ ### Added
227
+
228
+ **AT1 Schedule 21's sixth section — Continuity of Limited Partnership Losses
229
+ (lines 131-141) — was entirely unmodeled (form, engine, and filing all
230
+ missing it) until now.** New `computeLimitedPartnershipLossRow` /
231
+ `computeLimitedPartnershipLosses` (`schedule21-limited-partnership.ts`), one
232
+ row per partnership: `closing = preceding-year balance + wind-up transfer +
233
+ current-year loss − applied`, with `applied` capped at `preceding + wind-up`
234
+ per the spec ("cannot exceed 021133 + 021135"). `schedule21Values` now
235
+ merges these rows into the SAME Schedule 021 payload block as the five
236
+ jurisdiction pools (not a second `Schedule Number="021"` element). The
237
+ column-139 total is exposed on the result for the caller to carry to
238
+ Schedule 12 line 072, per the form's own instruction — that cross-schedule
239
+ wire-up is not done here, same convention as every other Schedule 21 pool's
240
+ Schedule 12 links.
241
+
242
+ ## [0.0.8] - 2026-08-30
243
+
244
+ ### Fixed
245
+
246
+ **AT1 Schedule 21's loss-continuity formula was missing three terms the real
247
+ form has.** Verified against the spec's own formula (§3.2.3.21): closing
248
+ balance = `(carried forward − expired) + wind-up transfer + current-year loss
249
+ − applied against income − s.80 adjustment − other adjustments − carried
250
+ back`. `computeLossContinuity` previously omitted wind-up transfer, s.80
251
+ adjustment and other adjustments entirely — not just from the UI, from the
252
+ FORMULA. `LossContinuityResult` gains `windUpTransfer`, `section80Adjustment`,
253
+ `otherAdjustments`, and the intermediate `balanceAtBeginningOfYear` (033).
254
+
255
+ **`schedule21Values` silently dropped every line except opening/current/
256
+ carry-back/closing.** Even where the engine already computed
257
+ `expired`/`appliedCurrentYear` (reused from federal), the filing builder never
258
+ wrote lines 032/035/041/043/045 (and each pool's equivalents) to the XML —
259
+ they existed in memory and never reached TRA. Rewritten to read the pool's
260
+ own line numbers directly off `AT1_SCHEDULE_21_POOLS` (the form definition's
261
+ own table, not a second hand-copied one) and emit every field the pool's
262
+ form entry actually has a box for.
263
+
264
+ ## [0.0.7] - 2026-08-29
265
+
266
+ ### Added
267
+
268
+ **A genuine NEW Class 13/14 addition now amortises correctly, on both
269
+ federal Schedule 8 and AT1 Schedule 13.** 0.0.6's Class 13/14 support (added
270
+ in 0.0.4) only ever handled an EXISTING opening-UCC pool with no addition —
271
+ correct for that case, but it refused a real new leasehold layer or
272
+ limited-life property outright, even though the full Reg 1100(1)(b)/(c) /
273
+ Schedule III mechanic (`computeClass13`/`computeClass14`) already existed in
274
+ `cca-straight-line.ts` and just wasn't wired into either pipeline.
275
+
276
+ - `FederalT2Input` gains `class13?: Class13Input` / `class14?: Class14Input`
277
+ — separate from `ccaClasses`, which keeps its existing-balance-only
278
+ behaviour. Injects the Schedule 1 deduction (line 403, combined with any
279
+ declining-balance CCA into one line) same as before.
280
+ - `AlbertaSchedule13Input` gains `class13?: AlbertaClass13Input` /
281
+ `class14?: AlbertaClass14Input` — federal and Alberta share the same
282
+ layers/properties (a lease term doesn't change by jurisdiction); only the
283
+ CLAIM can diverge, same "omit = defaults to federal's actual claim"
284
+ semantics every other AT1 column already has. Alberta's claim is still
285
+ capped at the same Schedule III maximum federal's is — a discretionary
286
+ election can claim less, never more than the layer's own ceiling allows.
287
+ - Verified against a hand-derived example (a $25,000, 7-year leasehold,
288
+ first year): the 5-year floor and half-year rule correctly cap the year-1
289
+ claim at $3,571, not the full $25,000 the old degenerate stub would have
290
+ claimed.
291
+
292
+ ## [0.0.6] - 2026-08-29
293
+
294
+ ### Changed
295
+
296
+ **Raised the `@classytic/primitives` / `@classytic/tax-core` peer floors.**
297
+ They were still declared at `>=0.9.0` / `>=0.1.0` — stale by many minor
298
+ releases (current: 0.26.1 / 0.3.0) and well below what every actual consumer
299
+ already runs (`apps/server` uses `^0.23.0` / `^0.3.0`). Raised the peer and
300
+ dev floors to `>=0.23.0` / `>=0.3.0`, matching the versions this package is
301
+ actually built and tested against.
302
+
3
303
  ## [0.0.5] - 2026-08-29
4
304
 
5
305
  ### Added
@@ -1,2 +1,2 @@
1
- import { $ as SCHEDULE_4_CARRYBACK_YEARS, $t as AT1_BALANCE_LINE, A as SCHEDULE_21_BUSINESS_CREDIT_LINE, At as AT1_SCHEDULE_21, B as SCHEDULE_8_TERMINAL_LOSS_LINE, Bt as DispositionCategory, C as SCHEDULE_31_ENHANCED_SRED_RATE, Ct as CO17_TAX_PAYABLE_BOX, D as T2_SCHEDULE_24, Dt as AT1_IEG_MAX_EXPENDITURE, E as SCHEDULE_24_OPERATION_TYPE_LINE, Et as AT1_IEG_JACKET_LINE, F as T2_SCHEDULE_13, Ft as AT1_SCHEDULE_20_POOLS, G as DispositionGrid, Gt as AT1_SCHEDULE_16_CARRYFORWARD_LINE, H as SCHEDULE_7_ADJUSTED_AII_LINE, Ht as AT1_SCHEDULE_17_RESERVES, I as CcaColumn, It as DonationPool, J as AllocationJurisdiction, Jt as AlbertaCcaColumn, K as SCHEDULE_6_GRIDS, Kt as AT1_SCHEDULE_13, L as SCHEDULE_8_CCA_LINE, Lt as AT1_SCHEDULE_18, M as T2_SCHEDULE_21, Mt as AlbertaLossPool, N as ReserveRow, Nt as AT1_DONATION_CARRYFORWARD_YEARS, O as SCHEDULE_23_GROUP_BUSINESS_LIMIT, Ot as AT1_IEG_PRIOR_YEARS, P as SCHEDULE_13_RESERVE_ROWS, Pt as AT1_SCHEDULE_20, Q as T2_SCHEDULE_5, Qt as AT1_BALANCE_CREDIT_LINES, R as SCHEDULE_8_COLUMNS, Rt as AT1_SCHEDULE_18_CATEGORIES, S as T2_SCHEDULE_33, St as CO17_TAXABLE_INCOME_BOX, T as T2_SCHEDULE_31, Tt as AT1_IEG_ENHANCED_RATE, U as SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, Ut as AlbertaReserveKind, V as T2_SCHEDULE_8, Vt as AT1_SCHEDULE_17, W as T2_SCHEDULE_7, Wt as AT1_SCHEDULE_16, X as SCHEDULE_5_REVENUE_OFFSET, Xt as AT1_SCHEDULE_12_PAIRS, Y as SCHEDULE_5_JURISDICTIONS, Yt as AT1_SCHEDULE_12, Z as SCHEDULE_5_SALARIES_OFFSET, Zt as AlbertaReconcilingPair, _ as SCHEDULE_50_DISCLOSURE_THRESHOLD, _n as isEnterableLine, _t as T2_SMALL_BUSINESS_DEDUCTION_RATE, a as getField, an as FormField, at as T2_SCHEDULE_3, b as T2_SCHEDULE_43, bt as CO17_QUEBEC_PROPORTION_BOX, c as CaptionRow, cn as FormFieldRole, ct as T2_SCHEDULE_2, d as buildFields, dn as FormProvenance, dt as SCHEDULE_1_TOTAL_ADDITIONS_LINE, en as AT1_JACKET, et as SCHEDULE_4_LPP_CARRYFORWARD_YEARS, f as T2_SCHEDULE_130, fn as FormSection, ft as SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, g as T2_SCHEDULE_53, gn as inputFields, gt as T2_NET_INCOME_FOR_TAX_LINE, h as SCHEDULE_53_GENERAL_RATE_FACTOR, hn as indexByLine, ht as T2_JACKET, i as formsForProgram, in as FormDefinition, it as SCHEDULE_3_TAXABLE_PAID_LINE, j as SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, jt as AT1_SCHEDULE_21_POOLS, k as T2_SCHEDULE_23, kt as AT1_SCHEDULE_29, l as LineBand, ln as FormFieldSide, lt as SCHEDULE_1_LINES, m as SCHEDULE_53_CLOSING_GRIP_LINE, mn as fieldsInSection, mt as T2_BASE_PART_I_RATE, n as describeLine, nn as AT4970, nt as T2_SCHEDULE_4, o as getForm, on as FormFieldKind, ot as SCHEDULE_2_CARRYFORWARD_YEARS, p as T2_SCHEDULE_55, pn as LineNumberScheme, pt as T2_SCHEDULE_1, q as T2_SCHEDULE_6, qt as AT1_SCHEDULE_13_COLUMNS, r as findBrokenLinks, rn as AT4970_JURISDICTIONS, rt as SCHEDULE_3_ELIGIBLE_PAID_LINE, s as BuildFieldsSpec, sn as FormFieldRequirement, st as SCHEDULE_2_CHARITABLE_CURRENT_LINE, t as FORMS, tn as AT1_TAX_PAYABLE_LINE, tt as SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, u as UnclassifiedLineError, un as FormLineRef, ut as SCHEDULE_1_LINE_BY_NUMBER, v as T2_SCHEDULE_50, vn as validateFormDefinition, vt as T2_TAXABLE_INCOME_LINE, w as SCHEDULE_31_GENERAL_SRED_RATE, wt as AT1_IEG_BASE_RATE, x as SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, xt as CO17_RETURN, y as SCHEDULE_43_DIVIDEND_ALLOWANCE, yt as T2_TOTAL_TAX_PAYABLE_LINE, z as SCHEDULE_8_RECAPTURE_LINE, zt as AT1_SECTION_34_2_GROSS_UP } from "../index.mjs";
2
- export { AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_DONATION_CARRYFORWARD_YEARS, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_SCHEDULE_12, AT1_SCHEDULE_12_PAIRS, AT1_SCHEDULE_13, AT1_SCHEDULE_13_COLUMNS, AT1_SCHEDULE_16, AT1_SCHEDULE_16_CARRYFORWARD_LINE, AT1_SCHEDULE_17, AT1_SCHEDULE_17_RESERVES, AT1_SCHEDULE_18, AT1_SCHEDULE_18_CATEGORIES, AT1_SCHEDULE_20, AT1_SCHEDULE_20_POOLS, AT1_SCHEDULE_21, AT1_SCHEDULE_21_POOLS, AT1_SCHEDULE_29, AT1_SECTION_34_2_GROSS_UP, AT1_TAX_PAYABLE_LINE, AT4970, AT4970_JURISDICTIONS, type AlbertaCcaColumn, type AlbertaLossPool, type AlbertaReconcilingPair, type AlbertaReserveKind, type AllocationJurisdiction, type BuildFieldsSpec, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, type CaptionRow, type CcaColumn, type DispositionCategory, type DispositionGrid, type DonationPool, FORMS, type FormDefinition, type FormField, type FormFieldKind, type FormFieldRequirement, type FormFieldRole, type FormFieldSide, type FormLineRef, type FormProvenance, type FormSection, type LineBand, type LineNumberScheme, type ReserveRow, SCHEDULE_13_RESERVE_ROWS, SCHEDULE_1_LINES, SCHEDULE_1_LINE_BY_NUMBER, SCHEDULE_1_TOTAL_ADDITIONS_LINE, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, SCHEDULE_21_BUSINESS_CREDIT_LINE, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, SCHEDULE_23_GROUP_BUSINESS_LIMIT, SCHEDULE_24_OPERATION_TYPE_LINE, SCHEDULE_2_CARRYFORWARD_YEARS, SCHEDULE_2_CHARITABLE_CURRENT_LINE, SCHEDULE_31_ENHANCED_SRED_RATE, SCHEDULE_31_GENERAL_SRED_RATE, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, SCHEDULE_3_ELIGIBLE_PAID_LINE, SCHEDULE_3_TAXABLE_PAID_LINE, SCHEDULE_43_DIVIDEND_ALLOWANCE, SCHEDULE_4_CARRYBACK_YEARS, SCHEDULE_4_LPP_CARRYFORWARD_YEARS, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, SCHEDULE_50_DISCLOSURE_THRESHOLD, SCHEDULE_53_CLOSING_GRIP_LINE, SCHEDULE_53_GENERAL_RATE_FACTOR, SCHEDULE_5_JURISDICTIONS, SCHEDULE_5_REVENUE_OFFSET, SCHEDULE_5_SALARIES_OFFSET, SCHEDULE_6_GRIDS, SCHEDULE_7_ADJUSTED_AII_LINE, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, T2_BASE_PART_I_RATE, T2_JACKET, T2_NET_INCOME_FOR_TAX_LINE, T2_SCHEDULE_1, T2_SCHEDULE_13, T2_SCHEDULE_130, T2_SCHEDULE_2, T2_SCHEDULE_21, T2_SCHEDULE_23, T2_SCHEDULE_24, T2_SCHEDULE_3, T2_SCHEDULE_31, T2_SCHEDULE_33, T2_SCHEDULE_4, T2_SCHEDULE_43, T2_SCHEDULE_5, T2_SCHEDULE_50, T2_SCHEDULE_53, T2_SCHEDULE_55, T2_SCHEDULE_6, T2_SCHEDULE_7, T2_SCHEDULE_8, T2_SMALL_BUSINESS_DEDUCTION_RATE, T2_TAXABLE_INCOME_LINE, T2_TOTAL_TAX_PAYABLE_LINE, UnclassifiedLineError, buildFields, describeLine, fieldsInSection, findBrokenLinks, formsForProgram, getField, getForm, indexByLine, inputFields, isEnterableLine, validateFormDefinition };
1
+ import { $ as SCHEDULE_4_CARRYBACK_YEARS, $t as AT1_SCHEDULE_12_PAIRS, A as SCHEDULE_21_BUSINESS_CREDIT_LINE, At as AT1_SCHEDULE_21, B as SCHEDULE_8_TERMINAL_LOSS_LINE, Bt as AT1_SCHEDULE_18, C as SCHEDULE_31_ENHANCED_SRED_RATE, Cn as isEnterableLine, Ct as CO17_TAX_PAYABLE_BOX, D as T2_SCHEDULE_24, Dt as AT1_IEG_MAX_EXPENDITURE, E as SCHEDULE_24_OPERATION_TYPE_LINE, Et as AT1_IEG_JACKET_LINE, F as T2_SCHEDULE_13, Ft as scheduleTwentyOneLineId, G as DispositionGrid, Gt as AT1_SCHEDULE_17_RESERVES, H as SCHEDULE_7_ADJUSTED_AII_LINE, Ht as AT1_SECTION_34_2_GROSS_UP, I as CcaColumn, It as AT1_DONATION_CARRYFORWARD_YEARS, J as AllocationJurisdiction, Jt as AT1_SCHEDULE_16_CARRYFORWARD_LINE, K as SCHEDULE_6_GRIDS, Kt as AlbertaReserveKind, L as SCHEDULE_8_CCA_LINE, Lt as AT1_SCHEDULE_20, M as T2_SCHEDULE_21, Mt as AlbertaLossPool, N as ReserveRow, Nt as CONTINUITY_CAPTIONS, O as SCHEDULE_23_GROUP_BUSINESS_LIMIT, Ot as AT1_IEG_PRIOR_YEARS, P as SCHEDULE_13_RESERVE_ROWS, Pt as CONTINUITY_ORDER, Q as T2_SCHEDULE_5, Qt as AT1_SCHEDULE_12, R as SCHEDULE_8_COLUMNS, Rt as AT1_SCHEDULE_20_POOLS, S as T2_SCHEDULE_33, Sn as inputFields, St as CO17_TAXABLE_INCOME_BOX, T as T2_SCHEDULE_31, Tt as AT1_IEG_ENHANCED_RATE, U as SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, Ut as DispositionCategory, V as T2_SCHEDULE_8, Vt as AT1_SCHEDULE_18_CATEGORIES, W as T2_SCHEDULE_7, Wt as AT1_SCHEDULE_17, X as SCHEDULE_5_REVENUE_OFFSET, Xt as AT1_SCHEDULE_13_COLUMNS, Y as SCHEDULE_5_JURISDICTIONS, Yt as AT1_SCHEDULE_13, Z as SCHEDULE_5_SALARIES_OFFSET, Zt as AlbertaCcaColumn, _ as SCHEDULE_50_DISCLOSURE_THRESHOLD, _n as FormProvenance, _t as T2_SMALL_BUSINESS_DEDUCTION_RATE, a as getField, an as AT1_BALANCE_LINE, at as T2_SCHEDULE_3, b as T2_SCHEDULE_43, bn as fieldsInSection, bt as CO17_QUEBEC_PROPORTION_BOX, c as CaptionRow, cn as AT4970, ct as T2_SCHEDULE_2, d as buildFields, dn as FormField, dt as SCHEDULE_1_TOTAL_ADDITIONS_LINE, en as AlbertaReconcilingPair, et as SCHEDULE_4_LPP_CARRYFORWARD_YEARS, f as T2_SCHEDULE_130, fn as FormFieldKind, ft as SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, g as T2_SCHEDULE_53, gn as FormLineRef, gt as T2_NET_INCOME_FOR_TAX_LINE, h as SCHEDULE_53_GENERAL_RATE_FACTOR, hn as FormFieldSide, ht as T2_JACKET, i as formsForProgram, in as AT1_BALANCE_CREDIT_LINES, it as SCHEDULE_3_TAXABLE_PAID_LINE, j as SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, jt as AT1_SCHEDULE_21_POOLS, k as T2_SCHEDULE_23, kt as AT1_SCHEDULE_29, l as LineBand, ln as AT4970_JURISDICTIONS, lt as SCHEDULE_1_LINES, m as SCHEDULE_53_CLOSING_GRIP_LINE, mn as FormFieldRole, mt as T2_BASE_PART_I_RATE, n as describeLine, nn as AT1_SCHEDULE_2, nt as T2_SCHEDULE_4, o as getForm, on as AT1_JACKET, ot as SCHEDULE_2_CARRYFORWARD_YEARS, p as T2_SCHEDULE_55, pn as FormFieldRequirement, pt as T2_SCHEDULE_1, q as T2_SCHEDULE_6, qt as AT1_SCHEDULE_16, r as findBrokenLinks, rn as AT1_SCHEDULE_1, rt as SCHEDULE_3_ELIGIBLE_PAID_LINE, s as BuildFieldsSpec, sn as AT1_TAX_PAYABLE_LINE, st as SCHEDULE_2_CHARITABLE_CURRENT_LINE, t as FORMS, tn as AT1_SCHEDULE_10, tt as SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, u as UnclassifiedLineError, un as FormDefinition, ut as SCHEDULE_1_LINE_BY_NUMBER, v as T2_SCHEDULE_50, vn as FormSection, vt as T2_TAXABLE_INCOME_LINE, w as SCHEDULE_31_GENERAL_SRED_RATE, wn as validateFormDefinition, wt as AT1_IEG_BASE_RATE, x as SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, xn as indexByLine, xt as CO17_RETURN, y as SCHEDULE_43_DIVIDEND_ALLOWANCE, yn as LineNumberScheme, yt as T2_TOTAL_TAX_PAYABLE_LINE, z as SCHEDULE_8_RECAPTURE_LINE, zt as DonationPool } from "../index.mjs";
2
+ export { AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_DONATION_CARRYFORWARD_YEARS, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_SCHEDULE_1, AT1_SCHEDULE_10, AT1_SCHEDULE_12, AT1_SCHEDULE_12_PAIRS, AT1_SCHEDULE_13, AT1_SCHEDULE_13_COLUMNS, AT1_SCHEDULE_16, AT1_SCHEDULE_16_CARRYFORWARD_LINE, AT1_SCHEDULE_17, AT1_SCHEDULE_17_RESERVES, AT1_SCHEDULE_18, AT1_SCHEDULE_18_CATEGORIES, AT1_SCHEDULE_2, AT1_SCHEDULE_20, AT1_SCHEDULE_20_POOLS, AT1_SCHEDULE_21, CONTINUITY_CAPTIONS as AT1_SCHEDULE_21_CONTINUITY_CAPTIONS, CONTINUITY_ORDER as AT1_SCHEDULE_21_CONTINUITY_ORDER, AT1_SCHEDULE_21_POOLS, AT1_SCHEDULE_29, AT1_SECTION_34_2_GROSS_UP, AT1_TAX_PAYABLE_LINE, AT4970, AT4970_JURISDICTIONS, type AlbertaCcaColumn, type AlbertaLossPool, type AlbertaReconcilingPair, type AlbertaReserveKind, type AllocationJurisdiction, type BuildFieldsSpec, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, type CaptionRow, type CcaColumn, type DispositionCategory, type DispositionGrid, type DonationPool, FORMS, type FormDefinition, type FormField, type FormFieldKind, type FormFieldRequirement, type FormFieldRole, type FormFieldSide, type FormLineRef, type FormProvenance, type FormSection, type LineBand, type LineNumberScheme, type ReserveRow, SCHEDULE_13_RESERVE_ROWS, SCHEDULE_1_LINES, SCHEDULE_1_LINE_BY_NUMBER, SCHEDULE_1_TOTAL_ADDITIONS_LINE, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, SCHEDULE_21_BUSINESS_CREDIT_LINE, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, SCHEDULE_23_GROUP_BUSINESS_LIMIT, SCHEDULE_24_OPERATION_TYPE_LINE, SCHEDULE_2_CARRYFORWARD_YEARS, SCHEDULE_2_CHARITABLE_CURRENT_LINE, SCHEDULE_31_ENHANCED_SRED_RATE, SCHEDULE_31_GENERAL_SRED_RATE, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, SCHEDULE_3_ELIGIBLE_PAID_LINE, SCHEDULE_3_TAXABLE_PAID_LINE, SCHEDULE_43_DIVIDEND_ALLOWANCE, SCHEDULE_4_CARRYBACK_YEARS, SCHEDULE_4_LPP_CARRYFORWARD_YEARS, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, SCHEDULE_50_DISCLOSURE_THRESHOLD, SCHEDULE_53_CLOSING_GRIP_LINE, SCHEDULE_53_GENERAL_RATE_FACTOR, SCHEDULE_5_JURISDICTIONS, SCHEDULE_5_REVENUE_OFFSET, SCHEDULE_5_SALARIES_OFFSET, SCHEDULE_6_GRIDS, SCHEDULE_7_ADJUSTED_AII_LINE, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, T2_BASE_PART_I_RATE, T2_JACKET, T2_NET_INCOME_FOR_TAX_LINE, T2_SCHEDULE_1, T2_SCHEDULE_13, T2_SCHEDULE_130, T2_SCHEDULE_2, T2_SCHEDULE_21, T2_SCHEDULE_23, T2_SCHEDULE_24, T2_SCHEDULE_3, T2_SCHEDULE_31, T2_SCHEDULE_33, T2_SCHEDULE_4, T2_SCHEDULE_43, T2_SCHEDULE_5, T2_SCHEDULE_50, T2_SCHEDULE_53, T2_SCHEDULE_55, T2_SCHEDULE_6, T2_SCHEDULE_7, T2_SCHEDULE_8, T2_SMALL_BUSINESS_DEDUCTION_RATE, T2_TAXABLE_INCOME_LINE, T2_TOTAL_TAX_PAYABLE_LINE, UnclassifiedLineError, buildFields, describeLine, fieldsInSection, findBrokenLinks, formsForProgram, getField, getForm, indexByLine, inputFields, isEnterableLine, scheduleTwentyOneLineId, validateFormDefinition };
@@ -1,2 +1,2 @@
1
- import { $ as SCHEDULE_2_CARRYFORWARD_YEARS, A as SCHEDULE_8_CCA_LINE, At as AT1_DONATION_CARRYFORWARD_YEARS, B as SCHEDULE_5_JURISDICTIONS, Bt as AT1_SCHEDULE_13, C as SCHEDULE_23_GROUP_BUSINESS_LIMIT, Ct as AT1_IEG_ENHANCED_RATE, D as T2_SCHEDULE_21, Dt as AT1_SCHEDULE_29, E as SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, Et as AT1_IEG_PRIOR_YEARS, F as SCHEDULE_7_ADJUSTED_AII_LINE, Ft as AT1_SECTION_34_2_GROSS_UP, G as SCHEDULE_4_LPP_CARRYFORWARD_YEARS, Gt as AT1_BALANCE_LINE, H as SCHEDULE_5_SALARIES_OFFSET, Ht as AT1_SCHEDULE_12, I as SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, It as AT1_SCHEDULE_17, J as UnclassifiedLineError, Jt as AT4970, K as SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, Kt as AT1_JACKET, L as T2_SCHEDULE_7, Lt as AT1_SCHEDULE_17_RESERVES, M as SCHEDULE_8_RECAPTURE_LINE, Mt as AT1_SCHEDULE_20_POOLS, N as SCHEDULE_8_TERMINAL_LOSS_LINE, Nt as AT1_SCHEDULE_18, O as SCHEDULE_13_RESERVE_ROWS, Ot as AT1_SCHEDULE_21, P as T2_SCHEDULE_8, Pt as AT1_SCHEDULE_18_CATEGORIES, Q as T2_SCHEDULE_3, R as SCHEDULE_6_GRIDS, Rt as AT1_SCHEDULE_16, S as T2_SCHEDULE_24, St as AT1_IEG_BASE_RATE, T as SCHEDULE_21_BUSINESS_CREDIT_LINE, Tt as AT1_IEG_MAX_EXPENDITURE, U as T2_SCHEDULE_5, Ut as AT1_SCHEDULE_12_PAIRS, V as SCHEDULE_5_REVENUE_OFFSET, Vt as AT1_SCHEDULE_13_COLUMNS, W as SCHEDULE_4_CARRYBACK_YEARS, Wt as AT1_BALANCE_CREDIT_LINES, X as SCHEDULE_3_ELIGIBLE_PAID_LINE, Y as buildFields, Yt as AT4970_JURISDICTIONS, Z as SCHEDULE_3_TAXABLE_PAID_LINE, _ as T2_SCHEDULE_33, _t as T2_TOTAL_TAX_PAYABLE_LINE, a as getField, at as SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, b as T2_SCHEDULE_31, bt as CO17_TAXABLE_INCOME_BOX, c as T2_SCHEDULE_55, ct as indexByLine, d as T2_SCHEDULE_53, dt as validateFormDefinition, et as SCHEDULE_2_CHARITABLE_CURRENT_LINE, f as SCHEDULE_50_DISCLOSURE_THRESHOLD, ft as T2_BASE_PART_I_RATE, g as SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, gt as T2_TAXABLE_INCOME_LINE, h as T2_SCHEDULE_43, ht as T2_SMALL_BUSINESS_DEDUCTION_RATE, i as formsForProgram, it as SCHEDULE_1_TOTAL_ADDITIONS_LINE, j as SCHEDULE_8_COLUMNS, jt as AT1_SCHEDULE_20, k as T2_SCHEDULE_13, kt as AT1_SCHEDULE_21_POOLS, l as SCHEDULE_53_CLOSING_GRIP_LINE, lt as inputFields, m as SCHEDULE_43_DIVIDEND_ALLOWANCE, mt as T2_NET_INCOME_FOR_TAX_LINE, n as describeLine, nt as SCHEDULE_1_LINES, o as getForm, ot as T2_SCHEDULE_1, p as T2_SCHEDULE_50, pt as T2_JACKET, q as T2_SCHEDULE_4, qt as AT1_TAX_PAYABLE_LINE, r as findBrokenLinks, rt as SCHEDULE_1_LINE_BY_NUMBER, s as T2_SCHEDULE_130, st as fieldsInSection, t as FORMS, tt as T2_SCHEDULE_2, u as SCHEDULE_53_GENERAL_RATE_FACTOR, ut as isEnterableLine, v as SCHEDULE_31_ENHANCED_SRED_RATE, vt as CO17_QUEBEC_PROPORTION_BOX, w as T2_SCHEDULE_23, wt as AT1_IEG_JACKET_LINE, x as SCHEDULE_24_OPERATION_TYPE_LINE, xt as CO17_TAX_PAYABLE_BOX, y as SCHEDULE_31_GENERAL_SRED_RATE, yt as CO17_RETURN, z as T2_SCHEDULE_6, zt as AT1_SCHEDULE_16_CARRYFORWARD_LINE } from "../forms.mjs";
2
- export { AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_DONATION_CARRYFORWARD_YEARS, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_SCHEDULE_12, AT1_SCHEDULE_12_PAIRS, AT1_SCHEDULE_13, AT1_SCHEDULE_13_COLUMNS, AT1_SCHEDULE_16, AT1_SCHEDULE_16_CARRYFORWARD_LINE, AT1_SCHEDULE_17, AT1_SCHEDULE_17_RESERVES, AT1_SCHEDULE_18, AT1_SCHEDULE_18_CATEGORIES, AT1_SCHEDULE_20, AT1_SCHEDULE_20_POOLS, AT1_SCHEDULE_21, AT1_SCHEDULE_21_POOLS, AT1_SCHEDULE_29, AT1_SECTION_34_2_GROSS_UP, AT1_TAX_PAYABLE_LINE, AT4970, AT4970_JURISDICTIONS, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, FORMS, SCHEDULE_13_RESERVE_ROWS, SCHEDULE_1_LINES, SCHEDULE_1_LINE_BY_NUMBER, SCHEDULE_1_TOTAL_ADDITIONS_LINE, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, SCHEDULE_21_BUSINESS_CREDIT_LINE, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, SCHEDULE_23_GROUP_BUSINESS_LIMIT, SCHEDULE_24_OPERATION_TYPE_LINE, SCHEDULE_2_CARRYFORWARD_YEARS, SCHEDULE_2_CHARITABLE_CURRENT_LINE, SCHEDULE_31_ENHANCED_SRED_RATE, SCHEDULE_31_GENERAL_SRED_RATE, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, SCHEDULE_3_ELIGIBLE_PAID_LINE, SCHEDULE_3_TAXABLE_PAID_LINE, SCHEDULE_43_DIVIDEND_ALLOWANCE, SCHEDULE_4_CARRYBACK_YEARS, SCHEDULE_4_LPP_CARRYFORWARD_YEARS, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, SCHEDULE_50_DISCLOSURE_THRESHOLD, SCHEDULE_53_CLOSING_GRIP_LINE, SCHEDULE_53_GENERAL_RATE_FACTOR, SCHEDULE_5_JURISDICTIONS, SCHEDULE_5_REVENUE_OFFSET, SCHEDULE_5_SALARIES_OFFSET, SCHEDULE_6_GRIDS, SCHEDULE_7_ADJUSTED_AII_LINE, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, T2_BASE_PART_I_RATE, T2_JACKET, T2_NET_INCOME_FOR_TAX_LINE, T2_SCHEDULE_1, T2_SCHEDULE_13, T2_SCHEDULE_130, T2_SCHEDULE_2, T2_SCHEDULE_21, T2_SCHEDULE_23, T2_SCHEDULE_24, T2_SCHEDULE_3, T2_SCHEDULE_31, T2_SCHEDULE_33, T2_SCHEDULE_4, T2_SCHEDULE_43, T2_SCHEDULE_5, T2_SCHEDULE_50, T2_SCHEDULE_53, T2_SCHEDULE_55, T2_SCHEDULE_6, T2_SCHEDULE_7, T2_SCHEDULE_8, T2_SMALL_BUSINESS_DEDUCTION_RATE, T2_TAXABLE_INCOME_LINE, T2_TOTAL_TAX_PAYABLE_LINE, UnclassifiedLineError, buildFields, describeLine, fieldsInSection, findBrokenLinks, formsForProgram, getField, getForm, indexByLine, inputFields, isEnterableLine, validateFormDefinition };
1
+ import { $ as SCHEDULE_2_CARRYFORWARD_YEARS, $t as AT1_TAX_PAYABLE_LINE, A as SCHEDULE_8_CCA_LINE, At as CONTINUITY_CAPTIONS, B as SCHEDULE_5_JURISDICTIONS, Bt as AT1_SCHEDULE_17_RESERVES, C as SCHEDULE_23_GROUP_BUSINESS_LIMIT, Ct as AT1_IEG_ENHANCED_RATE, D as T2_SCHEDULE_21, Dt as AT1_SCHEDULE_29, E as SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, Et as AT1_IEG_PRIOR_YEARS, F as SCHEDULE_7_ADJUSTED_AII_LINE, Ft as AT1_SCHEDULE_20_POOLS, G as SCHEDULE_4_LPP_CARRYFORWARD_YEARS, Gt as AT1_SCHEDULE_12, H as SCHEDULE_5_SALARIES_OFFSET, Ht as AT1_SCHEDULE_16_CARRYFORWARD_LINE, I as SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, It as AT1_SCHEDULE_18, J as UnclassifiedLineError, Jt as AT1_SCHEDULE_2, K as SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, Kt as AT1_SCHEDULE_12_PAIRS, L as T2_SCHEDULE_7, Lt as AT1_SCHEDULE_18_CATEGORIES, M as SCHEDULE_8_RECAPTURE_LINE, Mt as scheduleTwentyOneLineId, N as SCHEDULE_8_TERMINAL_LOSS_LINE, Nt as AT1_DONATION_CARRYFORWARD_YEARS, O as SCHEDULE_13_RESERVE_ROWS, Ot as AT1_SCHEDULE_21, P as T2_SCHEDULE_8, Pt as AT1_SCHEDULE_20, Q as T2_SCHEDULE_3, Qt as AT1_JACKET, R as SCHEDULE_6_GRIDS, Rt as AT1_SECTION_34_2_GROSS_UP, S as T2_SCHEDULE_24, St as AT1_IEG_BASE_RATE, T as SCHEDULE_21_BUSINESS_CREDIT_LINE, Tt as AT1_IEG_MAX_EXPENDITURE, U as T2_SCHEDULE_5, Ut as AT1_SCHEDULE_13, V as SCHEDULE_5_REVENUE_OFFSET, Vt as AT1_SCHEDULE_16, W as SCHEDULE_4_CARRYBACK_YEARS, Wt as AT1_SCHEDULE_13_COLUMNS, X as SCHEDULE_3_ELIGIBLE_PAID_LINE, Xt as AT1_BALANCE_CREDIT_LINES, Y as buildFields, Yt as AT1_SCHEDULE_1, Z as SCHEDULE_3_TAXABLE_PAID_LINE, Zt as AT1_BALANCE_LINE, _ as T2_SCHEDULE_33, _t as T2_TOTAL_TAX_PAYABLE_LINE, a as getField, at as SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, b as T2_SCHEDULE_31, bt as CO17_TAXABLE_INCOME_BOX, c as T2_SCHEDULE_55, ct as indexByLine, d as T2_SCHEDULE_53, dt as validateFormDefinition, en as AT4970, et as SCHEDULE_2_CHARITABLE_CURRENT_LINE, f as SCHEDULE_50_DISCLOSURE_THRESHOLD, ft as T2_BASE_PART_I_RATE, g as SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, gt as T2_TAXABLE_INCOME_LINE, h as T2_SCHEDULE_43, ht as T2_SMALL_BUSINESS_DEDUCTION_RATE, i as formsForProgram, it as SCHEDULE_1_TOTAL_ADDITIONS_LINE, j as SCHEDULE_8_COLUMNS, jt as CONTINUITY_ORDER, k as T2_SCHEDULE_13, kt as AT1_SCHEDULE_21_POOLS, l as SCHEDULE_53_CLOSING_GRIP_LINE, lt as inputFields, m as SCHEDULE_43_DIVIDEND_ALLOWANCE, mt as T2_NET_INCOME_FOR_TAX_LINE, n as describeLine, nt as SCHEDULE_1_LINES, o as getForm, ot as T2_SCHEDULE_1, p as T2_SCHEDULE_50, pt as T2_JACKET, q as T2_SCHEDULE_4, qt as AT1_SCHEDULE_10, r as findBrokenLinks, rt as SCHEDULE_1_LINE_BY_NUMBER, s as T2_SCHEDULE_130, st as fieldsInSection, t as FORMS, tn as AT4970_JURISDICTIONS, tt as T2_SCHEDULE_2, u as SCHEDULE_53_GENERAL_RATE_FACTOR, ut as isEnterableLine, v as SCHEDULE_31_ENHANCED_SRED_RATE, vt as CO17_QUEBEC_PROPORTION_BOX, w as T2_SCHEDULE_23, wt as AT1_IEG_JACKET_LINE, x as SCHEDULE_24_OPERATION_TYPE_LINE, xt as CO17_TAX_PAYABLE_BOX, y as SCHEDULE_31_GENERAL_SRED_RATE, yt as CO17_RETURN, z as T2_SCHEDULE_6, zt as AT1_SCHEDULE_17 } from "../forms.mjs";
2
+ export { AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_DONATION_CARRYFORWARD_YEARS, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_SCHEDULE_1, AT1_SCHEDULE_10, AT1_SCHEDULE_12, AT1_SCHEDULE_12_PAIRS, AT1_SCHEDULE_13, AT1_SCHEDULE_13_COLUMNS, AT1_SCHEDULE_16, AT1_SCHEDULE_16_CARRYFORWARD_LINE, AT1_SCHEDULE_17, AT1_SCHEDULE_17_RESERVES, AT1_SCHEDULE_18, AT1_SCHEDULE_18_CATEGORIES, AT1_SCHEDULE_2, AT1_SCHEDULE_20, AT1_SCHEDULE_20_POOLS, AT1_SCHEDULE_21, CONTINUITY_CAPTIONS as AT1_SCHEDULE_21_CONTINUITY_CAPTIONS, CONTINUITY_ORDER as AT1_SCHEDULE_21_CONTINUITY_ORDER, AT1_SCHEDULE_21_POOLS, AT1_SCHEDULE_29, AT1_SECTION_34_2_GROSS_UP, AT1_TAX_PAYABLE_LINE, AT4970, AT4970_JURISDICTIONS, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, FORMS, SCHEDULE_13_RESERVE_ROWS, SCHEDULE_1_LINES, SCHEDULE_1_LINE_BY_NUMBER, SCHEDULE_1_TOTAL_ADDITIONS_LINE, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE, SCHEDULE_21_BUSINESS_CREDIT_LINE, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE, SCHEDULE_23_GROUP_BUSINESS_LIMIT, SCHEDULE_24_OPERATION_TYPE_LINE, SCHEDULE_2_CARRYFORWARD_YEARS, SCHEDULE_2_CHARITABLE_CURRENT_LINE, SCHEDULE_31_ENHANCED_SRED_RATE, SCHEDULE_31_GENERAL_SRED_RATE, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE, SCHEDULE_3_ELIGIBLE_PAID_LINE, SCHEDULE_3_TAXABLE_PAID_LINE, SCHEDULE_43_DIVIDEND_ALLOWANCE, SCHEDULE_4_CARRYBACK_YEARS, SCHEDULE_4_LPP_CARRYFORWARD_YEARS, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS, SCHEDULE_50_DISCLOSURE_THRESHOLD, SCHEDULE_53_CLOSING_GRIP_LINE, SCHEDULE_53_GENERAL_RATE_FACTOR, SCHEDULE_5_JURISDICTIONS, SCHEDULE_5_REVENUE_OFFSET, SCHEDULE_5_SALARIES_OFFSET, SCHEDULE_6_GRIDS, SCHEDULE_7_ADJUSTED_AII_LINE, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, T2_BASE_PART_I_RATE, T2_JACKET, T2_NET_INCOME_FOR_TAX_LINE, T2_SCHEDULE_1, T2_SCHEDULE_13, T2_SCHEDULE_130, T2_SCHEDULE_2, T2_SCHEDULE_21, T2_SCHEDULE_23, T2_SCHEDULE_24, T2_SCHEDULE_3, T2_SCHEDULE_31, T2_SCHEDULE_33, T2_SCHEDULE_4, T2_SCHEDULE_43, T2_SCHEDULE_5, T2_SCHEDULE_50, T2_SCHEDULE_53, T2_SCHEDULE_55, T2_SCHEDULE_6, T2_SCHEDULE_7, T2_SCHEDULE_8, T2_SMALL_BUSINESS_DEDUCTION_RATE, T2_TAXABLE_INCOME_LINE, T2_TOTAL_TAX_PAYABLE_LINE, UnclassifiedLineError, buildFields, describeLine, fieldsInSection, findBrokenLinks, formsForProgram, getField, getForm, indexByLine, inputFields, isEnterableLine, scheduleTwentyOneLineId, validateFormDefinition };