@classytic/ca-tax 0.0.1 → 0.0.2

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,67 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.2] - 2026-08-25
4
+
5
+ ### Added
6
+
7
+ **AT1 Schedule 29 — the Agreement Among Associated Corporations (page 3).**
8
+ An associated group claiming the enhanced rate under line 125 (rather than
9
+ line 112) must file a formal agreement naming every member, each one's own
10
+ allocated share of the $4,000,000 pool, and a group-level "Allowed Amount"
11
+ that gates the credit — a genuinely different formula from line 112's
12
+ "spending above base", not a variant of it. `computeIegAgreement` (new,
13
+ `schedule29-ieg-group.ts`) computes the agreement from
14
+ `IegAgreementInput`/`IegAgreementMember`; `computeIeg`'s new
15
+ `associatedAllowedAmount` input (presence, not truthiness, selects the
16
+ formula) switches `enhancedRateBasis` to `'associated'` and files line 125
17
+ in place of 112. `schedule29Values` now takes an optional second
18
+ `IegAgreementResult` argument and emits the agreement's page-3 lines
19
+ (200–325) alongside the grant. `computeAlbertaReturn`'s `ieg.agreement`
20
+ input composes the two: an agreement is computed first (when supplied) and
21
+ its claimant row's allocated allowed amount feeds `computeIeg` directly, so
22
+ a caller cannot wire the two paths inconsistently. Required for TRA's Test
23
+ Case 3 (a four-corporation associated group), which the engine could not
24
+ previously file at all.
25
+
26
+ `AT1_SCHEDULE_29`'s form definition (`schedule29.ts`) now covers the whole
27
+ schedule, not just lines 110–134: the Maximum Expenditure Limit box
28
+ (100/102/104/108), the base-amount inputs (114/116/118), line 125 itself, and
29
+ every page-3 Agreement line (200–325). Re-rendering the live form to add these
30
+ surfaced a real filing bug, now fixed: `schedule29Values` was filing a
31
+ member's free-text `name` at line 220, which the form defines as the Federal
32
+ Business Number (a 9-10 digit account number) — the form has no line for a
33
+ name at all. `IegAgreementMemberResult` gained a pass-through
34
+ `federalBusinessNumber`; 220 is now filed only when one is supplied, and
35
+ `name` is never transmitted.
36
+
37
+ ### Fixed
38
+
39
+ `ui-line-citations` had no form definition to check the Agreement UI's
40
+ "(line 245)" / "(line 265)" citations against — the completed `AT1_SCHEDULE_29`
41
+ above closes that gap for the whole schedule, not just those two lines.
42
+
43
+ ### Fixed
44
+
45
+ **AT1 Schedule 29 (Innovation Employment Grant)** — the taxable-capital grind
46
+ was applied to the wrong quantity: it reduced the $4,000,000 expenditure limit
47
+ itself, when the live, TRA-certified form (Rev. 2026-06) applies a reduction
48
+ FACTOR to the combined credit at line 130 instead. The two are not
49
+ equivalent once expenditures approach the limit. Also corrected: line 110 is
50
+ 8% of the full capped expenditures, not just the portion below base (a prior
51
+ version split the rate the wrong way, which happened to sum to the same total
52
+ only when there was no taxable-capital grind to expose it). `computeIeg` now
53
+ takes `taxableCapital` and an optional `recapture`, and returns the full
54
+ line 110/112/126/128/130/132/134 breakdown; `schedule29Values` files all of
55
+ it. `computeIegExpenditureLimit` is removed (replaced by
56
+ `computeIegReductionFactor`) — a breaking change to that one export.
57
+
58
+ Found and fixed by rendering the official TRA form PDF and cross-checking
59
+ against AuraTax's live rendering of the same schedule; see
60
+ `schedule29-ieg.ts` for the evidence and one still-unresolved discrepancy
61
+ against TRA's own (older) Chapter 3 specification text, worth confirming with
62
+ TRA directly before relying on this for a corporation with taxable capital in
63
+ the $10M–$50M band.
64
+
3
65
  ## [0.0.1] - 2026-08-20
4
66
 
5
67
  Initial release. A Canadian corporate tax engine for `@classytic/tax-core`,
package/dist/forms.mjs CHANGED
@@ -2096,19 +2096,58 @@ const AT1_SCHEDULE_29 = {
2096
2096
  title: "Alberta Innovation Employment Grant",
2097
2097
  scheme: "tra-line-item-id",
2098
2098
  taxYears: { from: 2021 },
2099
- sections: [{
2100
- id: "grant",
2101
- title: "Innovation Employment Grant",
2102
- description: "Base rate on everything, enhanced rate on the increment above the average of the previous two years."
2103
- }],
2099
+ sections: [
2100
+ {
2101
+ id: "limit",
2102
+ title: "Maximum Expenditure Limit",
2103
+ page: 2,
2104
+ description: "Whether the corporation is associated for IEG purposes, and the resulting expenditure limit for the year — shared with the group (line 102, from the Agreement) if associated, or this corporation’s own day-prorated $4,000,000 (line 104) if not."
2105
+ },
2106
+ {
2107
+ id: "grant",
2108
+ title: "Innovation Employment Grant",
2109
+ page: 2,
2110
+ description: "Base rate on the capped expenditures, enhanced rate on the increment above the average of the previous two years, both scaled by the taxable-capital reduction factor."
2111
+ },
2112
+ {
2113
+ id: "agreement",
2114
+ title: "Agreement Among Associated Corporations",
2115
+ page: 3,
2116
+ description: "Filed only when the corporation is associated (line 100 = Yes). Names every member, each one’s own agreed share of the $4,000,000 pool, and the group’s Allowed Amount — the figure line 125 uses instead of spending above base."
2117
+ }
2118
+ ],
2104
2119
  fields: [
2105
2120
  {
2106
- field: "128",
2107
- caption: "Incremental eligible expenditures",
2121
+ field: "100",
2122
+ caption: "Associated with one or more corporations for IEG purposes?",
2123
+ kind: "flag",
2124
+ role: "input",
2125
+ section: "limit",
2126
+ note: "If \"Yes\", complete page 3 — the formal Agreement Among Associated Corporations."
2127
+ },
2128
+ {
2129
+ field: "102",
2130
+ caption: "Allocated expenditure limit, if associated",
2131
+ kind: "money",
2132
+ role: "input",
2133
+ section: "limit",
2134
+ note: "Transcribed from this corporation’s own line 240 on page 3 (row 1, the claiming corporation) — filled in here, not re-derived."
2135
+ },
2136
+ {
2137
+ field: "104",
2138
+ caption: "Expenditure limit, if not associated",
2108
2139
  kind: "money",
2109
2140
  role: "computed",
2110
- section: "grant",
2111
- note: "Eligible expenditures LESS the base level the average of the previous two years. Nil where spending has not increased."
2141
+ section: "limit",
2142
+ note: "$4,000,000 × (days in the tax year ÷ 365, or 366 if the year includes February 29) this corporation’s own limit; there is no group to share it with."
2143
+ },
2144
+ {
2145
+ field: "108",
2146
+ caption: "Maximum expenditure limit for the year",
2147
+ kind: "money",
2148
+ role: "computed",
2149
+ section: "limit",
2150
+ note: "Line 102 or line 104, as applicable. Feeds lines 110, 112 and 125."
2112
2151
  },
2113
2152
  {
2114
2153
  field: "110",
@@ -2116,30 +2155,286 @@ const AT1_SCHEDULE_29 = {
2116
2155
  kind: "money",
2117
2156
  role: "computed",
2118
2157
  section: "grant",
2119
- note: "Eight per cent, on eligible expenditures up to the base level."
2158
+ note: "Eight per cent, on the LESSER of eligible expenditures (line 031) and line 108."
2120
2159
  },
2121
2160
  {
2122
2161
  field: "112",
2123
- caption: "Grant at the enhanced rate",
2162
+ caption: "Grant at the enhanced rate — non-associated",
2124
2163
  kind: "money",
2125
2164
  role: "computed",
2126
2165
  section: "grant",
2127
- note: "Twenty per cent, on the INCREMENT only. Applying it to the whole expenditure roughly doubles the grant."
2166
+ note: "Twelve per cent, on the INCREMENT above the base level — (lesser of line 031 and line 108) minus the base amount at line 118. Applying it to the whole expenditure overstates the grant. Filed instead of line 125, never alongside it."
2167
+ },
2168
+ {
2169
+ field: "114",
2170
+ caption: "Eligible expenditures — first preceding year",
2171
+ kind: "money",
2172
+ role: "input",
2173
+ section: "grant",
2174
+ note: "Non-associated only (see line 112’s note) — this corporation’s OWN prior year, not a group figure."
2175
+ },
2176
+ {
2177
+ field: "116",
2178
+ caption: "Eligible expenditures — second preceding year",
2179
+ kind: "money",
2180
+ role: "input",
2181
+ section: "grant",
2182
+ note: "Non-associated only, this corporation’s own prior year — see line 114."
2183
+ },
2184
+ {
2185
+ field: "118",
2186
+ caption: "Base amount",
2187
+ kind: "money",
2188
+ role: "computed",
2189
+ section: "grant",
2190
+ note: "Average of lines 114 and 116. Feeds line 112 only — the associated formula at line 125 does not subtract a base amount at all."
2191
+ },
2192
+ {
2193
+ field: "125",
2194
+ caption: "Grant at the enhanced rate — associated",
2195
+ kind: "money",
2196
+ role: "computed",
2197
+ section: "grant",
2198
+ note: "(Lesser of line 108 or the allocated allowed amount at line 325) × 12%. A genuinely different formula from line 112 — no base amount is subtracted, and actual spending above base plays no part. Filed instead of line 112, never alongside it."
2199
+ },
2200
+ {
2201
+ field: "126",
2202
+ caption: "Taxable capital employed in Canada",
2203
+ kind: "money",
2204
+ role: "input",
2205
+ section: "grant",
2206
+ note: "This corporation alone if not associated with anyone for IEG purposes; the associated group’s total otherwise. Drives the reduction factor at line 128."
2207
+ },
2208
+ {
2209
+ field: "128",
2210
+ caption: "Taxable-capital reduction factor",
2211
+ kind: "rate",
2212
+ role: "computed",
2213
+ section: "grant",
2214
+ note: "1 at $10,000,000 taxable capital or below, straight-line down to 0 at $50,000,000. Multiplies lines 110 + 112 at line 130 — it does not reduce the $4,000,000 expenditure limit."
2215
+ },
2216
+ {
2217
+ field: "130",
2218
+ caption: "Grant before recapture",
2219
+ kind: "money",
2220
+ role: "computed",
2221
+ section: "grant",
2222
+ note: "(Line 110 + line 112) × line 128."
2223
+ },
2224
+ {
2225
+ field: "132",
2226
+ caption: "Recapture",
2227
+ kind: "money",
2228
+ role: "input",
2229
+ section: "grant",
2230
+ note: "Where IEG-funded property was sold or converted to commercial use in the year. Blank, not zero, when there is none to report."
2231
+ },
2232
+ {
2233
+ field: "134",
2234
+ caption: "Net Innovation Employment Grant",
2235
+ kind: "money",
2236
+ role: "total",
2237
+ section: "grant",
2238
+ note: "Line 130 minus line 132. Carried to AT1 page 2, line 129."
2239
+ },
2240
+ {
2241
+ field: "200",
2242
+ caption: "CAN of the associated corporation with the longest taxation year",
2243
+ kind: "text",
2244
+ role: "input",
2245
+ section: "agreement",
2246
+ note: "9 or 10 digit Alberta Corporate Account Number."
2247
+ },
2248
+ {
2249
+ field: "202",
2250
+ caption: "Taxation year beginning",
2251
+ kind: "date",
2252
+ role: "input",
2253
+ section: "agreement",
2254
+ note: "The longest-year member’s own tax year — not necessarily the claimant’s."
2255
+ },
2256
+ {
2257
+ field: "204",
2258
+ caption: "Taxation year ending",
2259
+ kind: "date",
2260
+ role: "input",
2261
+ section: "agreement",
2262
+ note: "The longest-year member’s own tax year end."
2263
+ },
2264
+ {
2265
+ field: "206",
2266
+ caption: "Number of days in the longest year",
2267
+ kind: "text",
2268
+ role: "input",
2269
+ section: "agreement",
2270
+ note: "Max 365 days; 366 if the longest taxation year includes February 29."
2271
+ },
2272
+ {
2273
+ field: "208",
2274
+ caption: "Maximum Expenditure Limit",
2275
+ kind: "money",
2276
+ role: "computed",
2277
+ section: "agreement",
2278
+ note: "$4,000,000 × (line 206 ÷ 365). The group’s shared pool for the year."
2279
+ },
2280
+ {
2281
+ field: "220",
2282
+ caption: "Federal Business Number (FBN)",
2283
+ kind: "text",
2284
+ role: "input",
2285
+ section: "agreement",
2286
+ note: "One row per associated member, the claiming corporation first. There is NO line for the member’s name on this form — 220 is the FBN, not a name field."
2287
+ },
2288
+ {
2289
+ field: "230",
2290
+ caption: "Alberta Corporate Account Number (CAN)",
2291
+ kind: "text",
2292
+ role: "input",
2293
+ section: "agreement",
2294
+ note: "9 or 10 digit account number, this member’s own."
2295
+ },
2296
+ {
2297
+ field: "235",
2298
+ caption: "Current Taxation Year End",
2299
+ kind: "date",
2300
+ role: "input",
2301
+ section: "agreement",
2302
+ note: "This member’s own current taxation year end that ended within the claiming corporation’s calendar year."
2303
+ },
2304
+ {
2305
+ field: "240",
2306
+ caption: "Allocated Expenditure Limit",
2307
+ kind: "money",
2308
+ role: "input",
2309
+ section: "agreement",
2310
+ note: "The amount allocated to this member — the claimant’s own row 1 figure is transcribed to line 102 on page 2."
2311
+ },
2312
+ {
2313
+ field: "245",
2314
+ caption: "Current year’s eligible expenditures",
2315
+ kind: "money",
2316
+ role: "input",
2317
+ section: "agreement",
2318
+ note: "This member’s own current-year eligible expenditures. Summed at line 275 (\"X\")."
2319
+ },
2320
+ {
2321
+ field: "250",
2322
+ caption: "Eligible expenditures for the first preceding year",
2323
+ kind: "money",
2324
+ role: "input",
2325
+ section: "agreement",
2326
+ note: "This member’s own figure. Summed at line 280 (\"Y\")."
2327
+ },
2328
+ {
2329
+ field: "260",
2330
+ caption: "Eligible expenditures for the second preceding year",
2331
+ kind: "money",
2332
+ role: "input",
2333
+ section: "agreement",
2334
+ note: "This member’s own figure. Summed at line 290 (\"Z\")."
2335
+ },
2336
+ {
2337
+ field: "265",
2338
+ caption: "Taxable Capital for the first preceding year",
2339
+ kind: "money",
2340
+ role: "input",
2341
+ section: "agreement",
2342
+ note: "This member’s own figure. Summed at line 300 — informational; does not feed line 128."
2343
+ },
2344
+ {
2345
+ field: "267",
2346
+ caption: "Individual corporation maximum allowed amount",
2347
+ kind: "money",
2348
+ role: "computed",
2349
+ section: "agreement",
2350
+ note: "Line 245 − [(line 250 + line 260) / 2]. If negative, this member’s allowed amount (line 268) is nil, not negative."
2351
+ },
2352
+ {
2353
+ field: "268",
2354
+ caption: "Allocated allowed amount to each corporation",
2355
+ kind: "money",
2356
+ role: "computed",
2357
+ section: "agreement",
2358
+ note: "The LEAST of: line 240, line 267, and the lesser of [(4,000,000 × days in this member’s own tax year / 365 or 366) or line 031] less this member’s own base amount."
2359
+ },
2360
+ {
2361
+ field: "270",
2362
+ caption: "Total allocated expenditure limit",
2363
+ kind: "money",
2364
+ role: "total",
2365
+ section: "agreement",
2366
+ note: "Σ line 240 across every member. Must not exceed line 208."
2367
+ },
2368
+ {
2369
+ field: "275",
2370
+ caption: "Total current-year eligible expenditures",
2371
+ kind: "money",
2372
+ role: "total",
2373
+ section: "agreement",
2374
+ note: "Σ line 245 — \"X\" in the Allowed Amount formula on page 2."
2375
+ },
2376
+ {
2377
+ field: "280",
2378
+ caption: "Total eligible expenditures — first preceding year",
2379
+ kind: "money",
2380
+ role: "total",
2381
+ section: "agreement",
2382
+ note: "Σ line 250 — \"Y\" in the Allowed Amount formula."
2383
+ },
2384
+ {
2385
+ field: "290",
2386
+ caption: "Total eligible expenditures — second preceding year",
2387
+ kind: "money",
2388
+ role: "total",
2389
+ section: "agreement",
2390
+ note: "Σ line 260 — \"Z\" in the Allowed Amount formula."
2391
+ },
2392
+ {
2393
+ field: "300",
2394
+ caption: "Total taxable capital — first preceding year",
2395
+ kind: "money",
2396
+ role: "total",
2397
+ section: "agreement",
2398
+ note: "Σ line 265, across every member."
2399
+ },
2400
+ {
2401
+ field: "310",
2402
+ caption: "Group Allowed Amount",
2403
+ kind: "money",
2404
+ role: "computed",
2405
+ section: "agreement",
2406
+ note: "Line 275 − (average of line 280 and line 290). \"X − ((Y + Z) / 2)\"."
2407
+ },
2408
+ {
2409
+ field: "320",
2410
+ caption: "Total allocated allowed amount",
2411
+ kind: "money",
2412
+ role: "total",
2413
+ section: "agreement",
2414
+ note: "Σ line 268. Must be less than or equal to line 310."
2415
+ },
2416
+ {
2417
+ field: "325",
2418
+ caption: "Corporation Allocated Allowed amount",
2419
+ kind: "money",
2420
+ role: "total",
2421
+ section: "agreement",
2422
+ note: "The claiming corporation’s own line 268, restated — used to calculate line 125 on page 2."
2128
2423
  }
2129
2424
  ].map(({ field, ...rest }) => ({
2130
2425
  ...rest,
2131
2426
  line: id(field)
2132
2427
  })).sort((a, b) => a.line.localeCompare(b.line)),
2133
2428
  provenance: {
2134
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
2135
- retrieved: "2026-08-08",
2136
- revision: "line numbers match the engine payload builder, verified against the live form"
2429
+ document: "research/sources/tra-forms/pdf/AT1SCH29-innovation-employment-grant-TRA14637.pdf",
2430
+ retrieved: "2026-08-28",
2431
+ revision: "TRA14637 (AT29) Rev. 2026-06. Page 1/2 rendered at 250dpi and cross-checked against AuraTax’s live rendering of the same schedule (research/validation/auratax/2026-08-25-at1-schedule1-royalty/); replaced a prior definition that ground the $4M limit by taxable capital instead of applying the reduction factor to the credit — see schedule29-ieg.ts. Page 2’s limit fields (100/102/104/108/114/116/118/125) and page 3 (the Agreement Among Associated Corporations, 200-325) were added 2026-08-28 by re-rendering the live form at 300dpi — this closed two gaps at once: `ui-line-citations` had no form definition to check the new UI’s 245/265 citations against, and a prior version of `schedule29Values` filed the member’s free-text NAME at line 220, which the form defines as the Federal Business Number — a wrong-box filing the citation check could not have caught on its own, since 220 was not cited by any UI label."
2137
2432
  }
2138
2433
  };
2139
- /** Eight per cent, up to the base level of spending. */
2434
+ /** Eight per cent, on the full capped eligible expenditures. */
2140
2435
  const AT1_IEG_BASE_RATE = .08;
2141
- /** Twenty per cent, on the increment above it. */
2142
- const AT1_IEG_ENHANCED_RATE = .2;
2436
+ /** Twelve per cent, on the increment above the base level. */
2437
+ const AT1_IEG_ENHANCED_RATE = .12;
2143
2438
  /** The annual cap on eligible expenditures, shared across an associated group. */
2144
2439
  const AT1_IEG_MAX_EXPENDITURE = 4e6;
2145
2440
  /** The base level averages this many prior years. */
package/dist/index.d.mts CHANGED
@@ -313,10 +313,10 @@ declare const AT1_SCHEDULE_21: FormDefinition;
313
313
  //#endregion
314
314
  //#region src/t2/at1/forms/schedule29.d.ts
315
315
  declare const AT1_SCHEDULE_29: FormDefinition;
316
- /** Eight per cent, up to the base level of spending. */
316
+ /** Eight per cent, on the full capped eligible expenditures. */
317
317
  declare const AT1_IEG_BASE_RATE = 0.08;
318
- /** Twenty per cent, on the increment above it. */
319
- declare const AT1_IEG_ENHANCED_RATE = 0.2;
318
+ /** Twelve per cent, on the increment above the base level. */
319
+ declare const AT1_IEG_ENHANCED_RATE = 0.12;
320
320
  /** The annual cap on eligible expenditures, shared across an associated group. */
321
321
  declare const AT1_IEG_MAX_EXPENDITURE = 4000000;
322
322
  /** The base level averages this many prior years. */
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { _ as getCombinedRate, a as SIMPLIFIED_DIGITAL_THRESHOLD_MINOR, b as resetCaTaxRuleExtensions, c as calculateCaSalesTax, d as placeOfSupply, f as CA_SUPPLY_CATEGORIES, g as PROVINCIAL_REGIMES, h as GST_RATE, i as PSB_SMALL_SUPPLIER_THRESHOLD_MINOR, l as claimableItc, m as pstApplies, n as gst34LedgerAdapter, o as SMALL_SUPPLIER_THRESHOLD_MINOR, p as classifySupply, r as gst34Template, s as VEHICLE_ITC_CEILINGS, t as gst34Engine, u as isSmallSupplier, v as getProvincialRegime, y as extendCaTaxRules } from "./gst-hst.mjs";
2
2
  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, 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, 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";
3
- import { $ as computeProvincialAllocation, $n as at1TaxPayableDeductions, $t as CEC_DEDUCTION_RATE, A as runConformance, An as reconcileAlbertaNetIncome, Ar as AB_GENERAL_RATE_BANDS, At as computeCcpcActiveBusinessTax, B as computeGrip, Bn as formatRsiText, Bt as AT1_DONATION_GAIN_RATE, C as computeQuebecTax, Cn as albertaCcaScheduleAdjustments, Cr as schedule1Values, Ct as blendProvinceRateTable, D as T2_LINE_META, Dn as albertaReserveDifference, Dr as schedule2Values, Dt as dividendsDeductibleS112, E as resolveQuebecTaxRates, En as albertaRecaptureDifference, Er as schedule29Values, Et as computeTaxableIncome, F as normalizeSchedule88, Fn as RSI_NEGATIVE_PREFIX, Fr as earliestRateYear, Ft as CORP_TAX_RATE_BOOK, G as ITC_RECAPTURE_PERIOD_YEARS, Gn as AT1_CRITICAL_MANDATORY_FIELDS, Gt as SECTION_34_2_GROSS_UP, H as LARGE_CORPORATION_THRESHOLD, Hn as renderRsiHeader, Ht as computeDonationMaximum, I as computeSchedule55, In as RSI_WORD_GAP, Ir as extendRateBook, It as resolveCorpTaxRates, J as allocateEvenly, Jn as At1TaxPayableMismatchError, Jt as AT1_RESERVE_LINES, K as computeItcRecapture, Kn as At1CriticalFieldMissingError, Kt as computeAlbertaSchedule18, L as LRIP_INVESTMENT_CORPORATION_MULTIPLE, Ln as RsiLineItemError, Lr as hasExactRateYear, Lt as T2_CERTIFICATION_FIXTURES, M as computeFederalT2, Mn as computeLossCarryback, Mr as AB_TAX_2024, Mt as computeBusinessLimit, N as computeSchedule101, Nn as RSI_COLUMN_GAP, Nr as AB_TAX_RATE_BOOK, Nt as computeSBD, O as foldT2Lines, On as albertaTerminalLossDifference, Or as computeAlbertaTax, Ot as netCapitalLossApplied, P as SCHEDULE_88_MAX_URLS, Pn as RSI_DELIMITER, Pr as resolveAlbertaTaxRates, Pt as CORP_TAX_2024, Q as computeSchedule6, Qn as assertCriticalFields, Qt as computeAlbertaSchedule16, R as LRIP_INVESTMENT_INCOME_FACTOR, Rn as formatRsiAmount, Rr as latestRateYear, Rt as computeLossSchedule, S as computeQuebecAllocationFactor, Sn as albertaCcaDifference, Sr as schedule18Values, St as resolveProvinceRates, T as QC_TAX_RATE_BOOK, Tn as albertaDispositionAdjustments, Tr as schedule21Values, Tt as charitableDonationsDeduction, U as computeTaxableCapital, Un as renderRsiLineItem, Ut as computeSchedule20, V as computeSchedule43, Vn as renderAt1Rsi, Vt as AT1_DONATION_INCOME_RATE, W as computeSchedule31, Wn as renderAt1NetFile, Wt as AT1_DISPOSITION_CATEGORIES, X as computeSchedule21, Xn as assertAt1MandatoryComplete, Xt as computeAlbertaSchedule17, Y as computeBusinessLimitAllocation, Yn as albertaBalanceUnpaid, Yt as AT1_RESERVE_TOTAL_LINES, Z as computeSchedule13, Zn as assertAt1TaxPayableReconciles, Zt as assistanceFrom, _ as renderT2DraftReturn, _n as CCA_RATE_BOOK, _r as schedule12LossDeductions, _t as EIFEL_EFFECTIVE_FROM, a as PART_VI_1_DEDUCTION_BANDS, an as computeCcaClass, ar as allocateIegExpenditureLimit, at as computeSchedule2, b as co17Engine, bn as albertaAbilDifference, br as schedule16Values, bt as PROVINCE_RATE_BOOK, c as EIFEL_FIRST_YEAR_START, cn as CLASS_14_1_MINIMUM_DEDUCTION, cr as computeIeg, ct as assertSchedule1Fileable, d as EIFEL_TRANSITIONAL_RATIO, dn as MIN_LEASEHOLD_PERIODS, dr as SINGLE_JURISDICTION_ALBERTA_FACTOR, dt as deferredIncomeTaxProvisionAddBack, en as CEC_INCLUSION_RATE, er as at1YesNo, et as computeSchedule5, f as computeEifelLimitation, fn as computeClass13, fr as computeAllocationFactor, ft as findSchedule1LineDefects, g as computeT2Settlement, gn as CCA_DECLINING_BALANCE_RATES_2024, gr as schedule10Values, gt as terminalLossDeduction, h as computeAdjustedTaxableIncome, hn as leaseholdPeriods, hr as at1LineItemId, ht as recaptureAddBack, i as computeMpDeduction, in as UnsupportedCcaClassError, ir as allocateIegEvenly, it as computePart4Rdtoh, j as runConformanceSuite, jn as LossCarrybackError, jr as computeDayWeightedGeneralTax, jt as computePartITax, k as formatConformanceReport, kn as computeSchedule12, kr as computeAlbertaSbd, kt as nonCapitalLossApplied, l as EIFEL_STANDARD_RATIO, ln as CLASS_14_1_TRANSITIONAL_RATE, lr as computeIegBaseAmount, lt as ccaDeduction, m as FOREIGN_TAX_CREDIT_GROSS_UP, mn as computeClass141AdditionalAllowance, mr as AT1_SCHEDULES_WITH_BUILDERS, mt as mealsAndEntertainmentAddBack, n as MP_GROSS_REVENUE_THRESHOLD, nn as computeAlbertaSchedule14, nr as at1Engine, nt as PART_IV_RATE, o as computePartVI1Deduction, on as computeCcaSchedule, or as computeIegGroupFigures, ot as Schedule1NotFileableError, p as ratioOfPermissibleExpenses, pn as computeClass14, pr as AT1_SCHEDULES_WITHOUT_BUILDERS, pt as incomeTaxProvisionAddBack, q as computeZetm, qn as At1MandatoryFieldMissingError, qt as AT1_RESERVE_KINDS, r as MP_RATES_2024, rn as computeAlbertaSchedule13, rr as computeAlbertaReturn, rt as REFUNDABLE_PART_I_RATE, s as partVI1DeductionMultiple, sn as computeSchedule8, sr as IEG_2024, st as amortizationAddBack, t as MP_EXCLUDED_ACTIVITIES, tn as cecScheduleAppliesToTaxYear, tr as xmlEscape, tt as computeSchedule4Losses, u as EIFEL_STANDARD_RATIO_FROM, un as MAX_LEASEHOLD_PERIODS, ur as computeIegExpenditureLimit, ut as computeSchedule1, v as t2Engine, vn as isDecliningBalanceClass, vr as schedule12Values, vt as assessEifel, w as QC_TAX_2024, wn as albertaCurrentYearLoss, wr as schedule20Values, wt as dayWeightedRate, x as computeQuebecReturn, xn as albertaCapitalGainDifference, xr as schedule17Values, xt as isSchedule5Province, y as renderCo17DraftReturn, yn as resolveCcaRates, yr as schedule13Values, yt as PROVINCE_RATES_2024, z as computeSchedule54, zn as formatRsiDate, zr as resolveRates, zt as computeLossContinuity } from "./t2.mjs";
3
+ import { $ as computeProvincialAllocation, $n as at1TaxPayableDeductions, $t as CEC_DEDUCTION_RATE, A as runConformance, An as reconcileAlbertaNetIncome, Ar as computeAlbertaSbd, At as computeCcpcActiveBusinessTax, B as computeGrip, Bn as formatRsiText, Br as resolveRates, Bt as AT1_DONATION_GAIN_RATE, C as computeQuebecTax, Cn as albertaCcaScheduleAdjustments, Cr as schedule18Values, Ct as blendProvinceRateTable, D as T2_LINE_META, Dn as albertaReserveDifference, Dr as schedule29Values, Dt as dividendsDeductibleS112, E as resolveQuebecTaxRates, En as albertaRecaptureDifference, Er as schedule21Values, Et as computeTaxableIncome, F as normalizeSchedule88, Fn as RSI_NEGATIVE_PREFIX, Fr as resolveAlbertaTaxRates, Ft as CORP_TAX_RATE_BOOK, G as ITC_RECAPTURE_PERIOD_YEARS, Gn as AT1_CRITICAL_MANDATORY_FIELDS, Gt as SECTION_34_2_GROSS_UP, H as LARGE_CORPORATION_THRESHOLD, Hn as renderRsiHeader, Ht as computeDonationMaximum, I as computeSchedule55, In as RSI_WORD_GAP, Ir as earliestRateYear, It as resolveCorpTaxRates, J as allocateEvenly, Jn as At1TaxPayableMismatchError, Jt as AT1_RESERVE_LINES, K as computeItcRecapture, Kn as At1CriticalFieldMissingError, Kt as computeAlbertaSchedule18, L as LRIP_INVESTMENT_CORPORATION_MULTIPLE, Ln as RsiLineItemError, Lr as extendRateBook, Lt as T2_CERTIFICATION_FIXTURES, M as computeFederalT2, Mn as computeLossCarryback, Mr as computeDayWeightedGeneralTax, Mt as computeBusinessLimit, N as computeSchedule101, Nn as RSI_COLUMN_GAP, Nr as AB_TAX_2024, Nt as computeSBD, O as foldT2Lines, On as albertaTerminalLossDifference, Or as schedule2Values, Ot as netCapitalLossApplied, P as SCHEDULE_88_MAX_URLS, Pn as RSI_DELIMITER, Pr as AB_TAX_RATE_BOOK, Pt as CORP_TAX_2024, Q as computeSchedule6, Qn as assertCriticalFields, Qt as computeAlbertaSchedule16, R as LRIP_INVESTMENT_INCOME_FACTOR, Rn as formatRsiAmount, Rr as hasExactRateYear, Rt as computeLossSchedule, S as computeQuebecAllocationFactor, Sn as albertaCcaDifference, Sr as schedule17Values, St as resolveProvinceRates, T as QC_TAX_RATE_BOOK, Tn as albertaDispositionAdjustments, Tr as schedule20Values, Tt as charitableDonationsDeduction, U as computeTaxableCapital, Un as renderRsiLineItem, Ut as computeSchedule20, V as computeSchedule43, Vn as renderAt1Rsi, Vt as AT1_DONATION_INCOME_RATE, W as computeSchedule31, Wn as renderAt1NetFile, Wt as AT1_DISPOSITION_CATEGORIES, X as computeSchedule21, Xn as assertAt1MandatoryComplete, Xt as computeAlbertaSchedule17, Y as computeBusinessLimitAllocation, Yn as albertaBalanceUnpaid, Yt as AT1_RESERVE_TOTAL_LINES, Z as computeSchedule13, Zn as assertAt1TaxPayableReconciles, Zt as assistanceFrom, _ as renderT2DraftReturn, _n as CCA_RATE_BOOK, _r as schedule10Values, _t as EIFEL_EFFECTIVE_FROM, a as PART_VI_1_DEDUCTION_BANDS, an as computeCcaClass, ar as allocateIegExpenditureLimit, at as computeSchedule2, b as co17Engine, bn as albertaAbilDifference, br as schedule13Values, bt as PROVINCE_RATE_BOOK, c as EIFEL_FIRST_YEAR_START, cn as CLASS_14_1_MINIMUM_DEDUCTION, cr as IEG_2024, ct as assertSchedule1Fileable, d as EIFEL_TRANSITIONAL_RATIO, dn as MIN_LEASEHOLD_PERIODS, dr as computeIegReductionFactor, dt as deferredIncomeTaxProvisionAddBack, en as CEC_INCLUSION_RATE, er as at1YesNo, et as computeSchedule5, f as computeEifelLimitation, fn as computeClass13, fr as SINGLE_JURISDICTION_ALBERTA_FACTOR, ft as findSchedule1LineDefects, g as computeT2Settlement, gn as CCA_DECLINING_BALANCE_RATES_2024, gr as at1LineItemId, gt as terminalLossDeduction, h as computeAdjustedTaxableIncome, hn as leaseholdPeriods, hr as AT1_SCHEDULES_WITH_BUILDERS, ht as recaptureAddBack, i as computeMpDeduction, in as UnsupportedCcaClassError, ir as allocateIegEvenly, it as computePart4Rdtoh, j as runConformanceSuite, jn as LossCarrybackError, jr as AB_GENERAL_RATE_BANDS, jt as computePartITax, k as formatConformanceReport, kn as computeSchedule12, kr as computeAlbertaTax, kt as nonCapitalLossApplied, l as EIFEL_STANDARD_RATIO, ln as CLASS_14_1_TRANSITIONAL_RATE, lr as computeIeg, lt as ccaDeduction, m as FOREIGN_TAX_CREDIT_GROSS_UP, mn as computeClass141AdditionalAllowance, mr as AT1_SCHEDULES_WITHOUT_BUILDERS, mt as mealsAndEntertainmentAddBack, n as MP_GROSS_REVENUE_THRESHOLD, nn as computeAlbertaSchedule14, nr as at1Engine, nt as PART_IV_RATE, o as computePartVI1Deduction, on as computeCcaSchedule, or as computeIegAgreement, ot as Schedule1NotFileableError, p as ratioOfPermissibleExpenses, pn as computeClass14, pr as computeAllocationFactor, pt as incomeTaxProvisionAddBack, q as computeZetm, qn as At1MandatoryFieldMissingError, qt as AT1_RESERVE_KINDS, r as MP_RATES_2024, rn as computeAlbertaSchedule13, rr as computeAlbertaReturn, rt as REFUNDABLE_PART_I_RATE, s as partVI1DeductionMultiple, sn as computeSchedule8, sr as computeIegGroupFigures, st as amortizationAddBack, t as MP_EXCLUDED_ACTIVITIES, tn as cecScheduleAppliesToTaxYear, tr as xmlEscape, tt as computeSchedule4Losses, u as EIFEL_STANDARD_RATIO_FROM, un as MAX_LEASEHOLD_PERIODS, ur as computeIegBaseAmount, ut as computeSchedule1, v as t2Engine, vn as isDecliningBalanceClass, vr as schedule12LossDeductions, vt as assessEifel, w as QC_TAX_2024, wn as albertaCurrentYearLoss, wr as schedule1Values, wt as dayWeightedRate, x as computeQuebecReturn, xn as albertaCapitalGainDifference, xr as schedule16Values, xt as isSchedule5Province, y as renderCo17DraftReturn, yn as resolveCcaRates, yr as schedule12Values, yt as PROVINCE_RATES_2024, z as computeSchedule54, zn as formatRsiDate, zr as latestRateYear, zt as computeLossContinuity } from "./t2.mjs";
4
4
  import { wireTaxToLedger } from "@classytic/tax-core/obligation";
5
5
  //#region src/resolver.ts
6
6
  function createCaTaxResolver(options) {
@@ -95,4 +95,4 @@ const caTaxPack = {
95
95
  ]
96
96
  };
97
97
  //#endregion
98
- export { AB_GENERAL_RATE_BANDS, AB_TAX_2024, AB_TAX_RATE_BOOK, AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_CRITICAL_MANDATORY_FIELDS, AT1_DISPOSITION_CATEGORIES, AT1_DONATION_CARRYFORWARD_YEARS, AT1_DONATION_GAIN_RATE, AT1_DONATION_INCOME_RATE, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_RESERVE_KINDS, AT1_RESERVE_LINES, AT1_RESERVE_TOTAL_LINES, AT1_SCHEDULES_WITHOUT_BUILDERS, AT1_SCHEDULES_WITH_BUILDERS, 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, At1CriticalFieldMissingError, At1MandatoryFieldMissingError, At1TaxPayableMismatchError, CA_SUPPLY_CATEGORIES, CCA_DECLINING_BALANCE_RATES_2024, CCA_RATE_BOOK, CEC_DEDUCTION_RATE, CEC_INCLUSION_RATE, CLASS_14_1_MINIMUM_DEDUCTION, CLASS_14_1_TRANSITIONAL_RATE, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, CORP_TAX_2024, CORP_TAX_RATE_BOOK, EIFEL_EFFECTIVE_FROM, EIFEL_FIRST_YEAR_START, EIFEL_STANDARD_RATIO, EIFEL_STANDARD_RATIO_FROM, EIFEL_TRANSITIONAL_RATIO, FOREIGN_TAX_CREDIT_GROSS_UP, FORMS, GST_RATE, IEG_2024, ITC_RECAPTURE_PERIOD_YEARS, LARGE_CORPORATION_THRESHOLD, LRIP_INVESTMENT_CORPORATION_MULTIPLE, LRIP_INVESTMENT_INCOME_FACTOR, LossCarrybackError, MAX_LEASEHOLD_PERIODS, MIN_LEASEHOLD_PERIODS, MP_EXCLUDED_ACTIVITIES, MP_GROSS_REVENUE_THRESHOLD, MP_RATES_2024, PART_IV_RATE, PART_VI_1_DEDUCTION_BANDS, PROVINCE_RATES_2024, PROVINCE_RATE_BOOK, PROVINCIAL_REGIMES, PSB_SMALL_SUPPLIER_THRESHOLD_MINOR, QC_TAX_2024, QC_TAX_RATE_BOOK, REFUNDABLE_PART_I_RATE, RSI_COLUMN_GAP, RSI_DELIMITER, RSI_NEGATIVE_PREFIX, RSI_WORD_GAP, RsiLineItemError, 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_88_MAX_URLS, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, SECTION_34_2_GROSS_UP, SIMPLIFIED_DIGITAL_THRESHOLD_MINOR, SINGLE_JURISDICTION_ALBERTA_FACTOR, SMALL_SUPPLIER_THRESHOLD_MINOR, Schedule1NotFileableError, T2_BASE_PART_I_RATE, T2_CERTIFICATION_FIXTURES, T2_JACKET, T2_LINE_META, 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, UnsupportedCcaClassError, VEHICLE_ITC_CEILINGS, albertaAbilDifference, albertaBalanceUnpaid, albertaCapitalGainDifference, albertaCcaDifference, albertaCcaScheduleAdjustments, albertaCurrentYearLoss, albertaDispositionAdjustments, albertaRecaptureDifference, albertaReserveDifference, albertaTerminalLossDifference, allocateEvenly, allocateIegEvenly, allocateIegExpenditureLimit, amortizationAddBack, assertAt1MandatoryComplete, assertAt1TaxPayableReconciles, assertCriticalFields, assertSchedule1Fileable, assessEifel, assistanceFrom, at1Engine, at1LineItemId, at1TaxPayableDeductions, at1YesNo, blendProvinceRateTable, buildFields, caTaxPack, calculateCaSalesTax, ccaDeduction, cecScheduleAppliesToTaxYear, charitableDonationsDeduction, claimableItc, classifySupply, co17Engine, computeAdjustedTaxableIncome, computeAlbertaReturn, computeAlbertaSbd, computeAlbertaSchedule13, computeAlbertaSchedule14, computeAlbertaSchedule16, computeAlbertaSchedule17, computeAlbertaSchedule18, computeAlbertaTax, computeAllocationFactor, computeBusinessLimit, computeBusinessLimitAllocation, computeCcaClass, computeCcaSchedule, computeCcpcActiveBusinessTax, computeClass13, computeClass14, computeClass141AdditionalAllowance, computeDayWeightedGeneralTax, computeDonationMaximum, computeEifelLimitation, computeFederalT2, computeGrip, computeIeg, computeIegBaseAmount, computeIegExpenditureLimit, computeIegGroupFigures, computeItcRecapture, computeLossCarryback, computeLossContinuity, computeLossSchedule, computeMpDeduction, computePart4Rdtoh, computePartITax, computePartVI1Deduction, computeProvincialAllocation, computeQuebecAllocationFactor, computeQuebecReturn, computeQuebecTax, computeSBD, computeSchedule1, computeSchedule101, computeSchedule12, computeSchedule13, computeSchedule2, computeSchedule20, computeSchedule21, computeSchedule31, computeSchedule43, computeSchedule4Losses, computeSchedule5, computeSchedule54, computeSchedule55, computeSchedule6, computeSchedule8, computeT2Settlement, computeTaxableCapital, computeTaxableIncome, computeZetm, createCaTaxResolver, dayWeightedRate, deferredIncomeTaxProvisionAddBack, describeLine, dividendsDeductibleS112, earliestRateYear, extendCaTaxRules, extendRateBook, fieldsInSection, findBrokenLinks, findSchedule1LineDefects, foldT2Lines, formatConformanceReport, formatRsiAmount, formatRsiDate, formatRsiText, formsForProgram, getCombinedRate, getField, getForm, getProvincialRegime, gst34Engine, gst34LedgerAdapter, gst34Template, hasExactRateYear, incomeTaxProvisionAddBack, indexByLine, inputFields, isDecliningBalanceClass, isEnterableLine, isSchedule5Province, isSmallSupplier, latestRateYear, leaseholdPeriods, mealsAndEntertainmentAddBack, netCapitalLossApplied, nonCapitalLossApplied, normalizeSchedule88, partVI1DeductionMultiple, placeOfSupply, pstApplies, ratioOfPermissibleExpenses, recaptureAddBack, reconcileAlbertaNetIncome, renderAt1NetFile, renderAt1Rsi, renderCo17DraftReturn, renderRsiHeader, renderRsiLineItem, renderT2DraftReturn, resetCaTaxRuleExtensions, resolveAlbertaTaxRates, resolveCcaRates, resolveCorpTaxRates, resolveProvinceRates, resolveQuebecTaxRates, resolveRates, runConformance, runConformanceSuite, schedule10Values, schedule12LossDeductions, schedule12Values, schedule13Values, schedule16Values, schedule17Values, schedule18Values, schedule1Values, schedule20Values, schedule21Values, schedule29Values, schedule2Values, t2Engine, terminalLossDeduction, validateFormDefinition, wireTaxToLedger, xmlEscape };
98
+ export { AB_GENERAL_RATE_BANDS, AB_TAX_2024, AB_TAX_RATE_BOOK, AT1_BALANCE_CREDIT_LINES, AT1_BALANCE_LINE, AT1_CRITICAL_MANDATORY_FIELDS, AT1_DISPOSITION_CATEGORIES, AT1_DONATION_CARRYFORWARD_YEARS, AT1_DONATION_GAIN_RATE, AT1_DONATION_INCOME_RATE, AT1_IEG_BASE_RATE, AT1_IEG_ENHANCED_RATE, AT1_IEG_JACKET_LINE, AT1_IEG_MAX_EXPENDITURE, AT1_IEG_PRIOR_YEARS, AT1_JACKET, AT1_RESERVE_KINDS, AT1_RESERVE_LINES, AT1_RESERVE_TOTAL_LINES, AT1_SCHEDULES_WITHOUT_BUILDERS, AT1_SCHEDULES_WITH_BUILDERS, 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, At1CriticalFieldMissingError, At1MandatoryFieldMissingError, At1TaxPayableMismatchError, CA_SUPPLY_CATEGORIES, CCA_DECLINING_BALANCE_RATES_2024, CCA_RATE_BOOK, CEC_DEDUCTION_RATE, CEC_INCLUSION_RATE, CLASS_14_1_MINIMUM_DEDUCTION, CLASS_14_1_TRANSITIONAL_RATE, CO17_QUEBEC_PROPORTION_BOX, CO17_RETURN, CO17_TAXABLE_INCOME_BOX, CO17_TAX_PAYABLE_BOX, CORP_TAX_2024, CORP_TAX_RATE_BOOK, EIFEL_EFFECTIVE_FROM, EIFEL_FIRST_YEAR_START, EIFEL_STANDARD_RATIO, EIFEL_STANDARD_RATIO_FROM, EIFEL_TRANSITIONAL_RATIO, FOREIGN_TAX_CREDIT_GROSS_UP, FORMS, GST_RATE, IEG_2024, ITC_RECAPTURE_PERIOD_YEARS, LARGE_CORPORATION_THRESHOLD, LRIP_INVESTMENT_CORPORATION_MULTIPLE, LRIP_INVESTMENT_INCOME_FACTOR, LossCarrybackError, MAX_LEASEHOLD_PERIODS, MIN_LEASEHOLD_PERIODS, MP_EXCLUDED_ACTIVITIES, MP_GROSS_REVENUE_THRESHOLD, MP_RATES_2024, PART_IV_RATE, PART_VI_1_DEDUCTION_BANDS, PROVINCE_RATES_2024, PROVINCE_RATE_BOOK, PROVINCIAL_REGIMES, PSB_SMALL_SUPPLIER_THRESHOLD_MINOR, QC_TAX_2024, QC_TAX_RATE_BOOK, REFUNDABLE_PART_I_RATE, RSI_COLUMN_GAP, RSI_DELIMITER, RSI_NEGATIVE_PREFIX, RSI_WORD_GAP, RsiLineItemError, 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_88_MAX_URLS, SCHEDULE_8_CCA_LINE, SCHEDULE_8_COLUMNS, SCHEDULE_8_RECAPTURE_LINE, SCHEDULE_8_TERMINAL_LOSS_LINE, SECTION_34_2_GROSS_UP, SIMPLIFIED_DIGITAL_THRESHOLD_MINOR, SINGLE_JURISDICTION_ALBERTA_FACTOR, SMALL_SUPPLIER_THRESHOLD_MINOR, Schedule1NotFileableError, T2_BASE_PART_I_RATE, T2_CERTIFICATION_FIXTURES, T2_JACKET, T2_LINE_META, 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, UnsupportedCcaClassError, VEHICLE_ITC_CEILINGS, albertaAbilDifference, albertaBalanceUnpaid, albertaCapitalGainDifference, albertaCcaDifference, albertaCcaScheduleAdjustments, albertaCurrentYearLoss, albertaDispositionAdjustments, albertaRecaptureDifference, albertaReserveDifference, albertaTerminalLossDifference, allocateEvenly, allocateIegEvenly, allocateIegExpenditureLimit, amortizationAddBack, assertAt1MandatoryComplete, assertAt1TaxPayableReconciles, assertCriticalFields, assertSchedule1Fileable, assessEifel, assistanceFrom, at1Engine, at1LineItemId, at1TaxPayableDeductions, at1YesNo, blendProvinceRateTable, buildFields, caTaxPack, calculateCaSalesTax, ccaDeduction, cecScheduleAppliesToTaxYear, charitableDonationsDeduction, claimableItc, classifySupply, co17Engine, computeAdjustedTaxableIncome, computeAlbertaReturn, computeAlbertaSbd, computeAlbertaSchedule13, computeAlbertaSchedule14, computeAlbertaSchedule16, computeAlbertaSchedule17, computeAlbertaSchedule18, computeAlbertaTax, computeAllocationFactor, computeBusinessLimit, computeBusinessLimitAllocation, computeCcaClass, computeCcaSchedule, computeCcpcActiveBusinessTax, computeClass13, computeClass14, computeClass141AdditionalAllowance, computeDayWeightedGeneralTax, computeDonationMaximum, computeEifelLimitation, computeFederalT2, computeGrip, computeIeg, computeIegAgreement, computeIegBaseAmount, computeIegGroupFigures, computeIegReductionFactor, computeItcRecapture, computeLossCarryback, computeLossContinuity, computeLossSchedule, computeMpDeduction, computePart4Rdtoh, computePartITax, computePartVI1Deduction, computeProvincialAllocation, computeQuebecAllocationFactor, computeQuebecReturn, computeQuebecTax, computeSBD, computeSchedule1, computeSchedule101, computeSchedule12, computeSchedule13, computeSchedule2, computeSchedule20, computeSchedule21, computeSchedule31, computeSchedule43, computeSchedule4Losses, computeSchedule5, computeSchedule54, computeSchedule55, computeSchedule6, computeSchedule8, computeT2Settlement, computeTaxableCapital, computeTaxableIncome, computeZetm, createCaTaxResolver, dayWeightedRate, deferredIncomeTaxProvisionAddBack, describeLine, dividendsDeductibleS112, earliestRateYear, extendCaTaxRules, extendRateBook, fieldsInSection, findBrokenLinks, findSchedule1LineDefects, foldT2Lines, formatConformanceReport, formatRsiAmount, formatRsiDate, formatRsiText, formsForProgram, getCombinedRate, getField, getForm, getProvincialRegime, gst34Engine, gst34LedgerAdapter, gst34Template, hasExactRateYear, incomeTaxProvisionAddBack, indexByLine, inputFields, isDecliningBalanceClass, isEnterableLine, isSchedule5Province, isSmallSupplier, latestRateYear, leaseholdPeriods, mealsAndEntertainmentAddBack, netCapitalLossApplied, nonCapitalLossApplied, normalizeSchedule88, partVI1DeductionMultiple, placeOfSupply, pstApplies, ratioOfPermissibleExpenses, recaptureAddBack, reconcileAlbertaNetIncome, renderAt1NetFile, renderAt1Rsi, renderCo17DraftReturn, renderRsiHeader, renderRsiLineItem, renderT2DraftReturn, resetCaTaxRuleExtensions, resolveAlbertaTaxRates, resolveCcaRates, resolveCorpTaxRates, resolveProvinceRates, resolveQuebecTaxRates, resolveRates, runConformance, runConformanceSuite, schedule10Values, schedule12LossDeductions, schedule12Values, schedule13Values, schedule16Values, schedule17Values, schedule18Values, schedule1Values, schedule20Values, schedule21Values, schedule29Values, schedule2Values, t2Engine, terminalLossDeduction, validateFormDefinition, wireTaxToLedger, xmlEscape };