Skip to content

Commit cf3cfbd

Browse files
jleclancheclaude
andcommitted
release: publish the packages that gained source fixes
peppol 0.7.0 (scheme-aware participant ids), ubl 0.14.0 (reuses it, and its peppol floor is raised to 0.7.0 so it cannot resolve a version without ./identifiers), nbb-cbso 0.6.1, facturx 0.1.1, ecb-client 0.2.1, be-vat-account 0.2.0, camt053 0.2.0, myminfin 0.8.0, iso4217 0.2.0, nace-codes 3.1.0. iso4217 also gains `satisfies` on its generated literals, in the generator as well as the two generated files: freezing them had widened countryCodes back to string[] and broken typecheck, which vitest never runs and so nobody saw. Packages whose only change was tests are deliberately not released. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MFh8XQkb5TQASLPVHp4jdF
1 parent cdf43d0 commit cf3cfbd

15 files changed

Lines changed: 348 additions & 345 deletions

File tree

packages/be-vat-account/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@financica/be-vat-account",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Parser for the Belgian VAT current-account statement (Extrait de compte TVA / Uittreksel btw-rekening) issued by the FPS Finance — PFORM671 and legacy layouts, French and Dutch.",
55
"keywords": [
66
"accounting",

packages/camt053/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@financica/camt053",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "TypeScript parser for ISO 20022 CAMT.053 (Bank-to-Customer Statement) XML",
55
"homepage": "https://github.com/financica/ts-libs/tree/main/packages/camt053#readme",
66
"bugs": "https://github.com/financica/ts-libs/issues",

packages/ecb-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@financica/ecb-client",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Tiny, zero-dependency client for the European Central Bank euro foreign-exchange reference rates, with historical single-day lookups, date-range series, and last-business-day fallback.",
55
"keywords": [
66
"accounting",

packages/facturx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@financica/facturx",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Factur-X / ZUGFeRD (EN 16931 CII) hybrid e-invoice toolkit for TypeScript: parse, generate, and embed structured invoices in PDF/A-3.",
55
"keywords": [
66
"accounting",

packages/iso4217/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@financica/iso4217",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "ISO 4217 currency codes, numeric codes, minor units, and entities — fully typed, zero dependencies, O(1) lookups.",
55
"keywords": [
66
"currencies",

packages/iso4217/scripts/generate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ function serializeCurrency(c: Currency): string {
368368
countryCodes: ${countries},
369369
isFund: ${c.isFund},
370370
kind: ${JSON.stringify(c.kind)},
371-
})`;
371+
} satisfies Currency)`;
372372
}
373373

374374
function emitData(currencies: Currency[], publishedAt: string): string {
@@ -396,7 +396,7 @@ function serializeHistoric(h: HistoricCurrency): string {
396396
numericCode: ${numeric},
397397
name: ${JSON.stringify(h.name)},
398398
withdrawalDate: ${JSON.stringify(h.withdrawalDate)},
399-
})`;
399+
} satisfies HistoricCurrency)`;
400400
}
401401

402402
function emitHistoricData(historic: HistoricCurrency[], publishedAt: string): string {

0 commit comments

Comments
 (0)