Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grunt-it/fiscalize",
"version": "0.1.0",
"version": "0.1.1",
"description": "Private/internal grunt-it Slovenian fiscalization + e-invoicing toolkit (TS/Effect). P1: EN16931 → e-SLOG 2.0 / UBL e-invoice generation + validation, deriving from E-Invoice-EU. Framework-agnostic engine.",
"type": "module",
"license": "UNLICENSED",
Expand Down Expand Up @@ -48,11 +48,11 @@
},
"devDependencies": {
"@types/bun": "latest",
"@types/node-forge": "^1.3.14",
"typescript": "^5"
},
"dependencies": {
"@e-invoice-eu/core": "^3.1.1",
"@types/node-forge": "^1.3.14",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"effect": "^3.18.4",
Expand Down
5 changes: 5 additions & 0 deletions src/lib/eslog/validate-eslog.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/// <reference path="../../types.d.ts" />
// The reference above carries the `declare module "*.xsd"` ambient into any
// consumer's compilation that loads this file (the engine ships TS source, so a
// consumer's tsc resolves these .xsd text-imports). Keeps consumers from having
// to re-declare the ambient themselves.
import { Effect } from "effect";
import { validateXML } from "xmllint-wasm";
import { EInvoiceGenerationError, EslogValidationError, type ValidationIssue } from "../foundation/errors";
Expand Down
Loading