didox 1.0.3 → 1.0.5
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 +44 -0
- package/README.md +350 -428
- package/dist/index.d.mts +2798 -21
- package/dist/index.d.ts +2798 -21
- package/dist/index.js +3257 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3250 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,50 @@ All notable changes to the Didox SDK will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.5] - 2026-01-17
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Documents Module** - Complete electronic document management API
|
|
13
|
+
- `list()` - List documents with filtering, sorting, and pagination
|
|
14
|
+
- `get()` - Get detailed document information by ID
|
|
15
|
+
- `getStatistics()` - Get document statistics with customizable date ranges
|
|
16
|
+
- `createDraft()` - Universal method for creating document drafts with builders
|
|
17
|
+
|
|
18
|
+
- **Document Builders** - Fluent API for creating type-safe documents
|
|
19
|
+
- **InvoiceBuilder (002)** - Electronic invoices with VAT calculation
|
|
20
|
+
- **ActBuilder (005)** - Acts of completed work and services
|
|
21
|
+
- **EmpowermentBuilder (006)** - Power of attorney documents
|
|
22
|
+
- **TTNBuilder (041)** - Transport waybills (TTN)
|
|
23
|
+
- **ArbitraryBuilder (000)** - Custom documents with flexible structure
|
|
24
|
+
- **MultiPartyBuilder (010)** - Multi-party contracts and agreements
|
|
25
|
+
- **FoundersProtocolBuilder (075)** - Founders' meeting protocols
|
|
26
|
+
- **LetterNKBuilder (013)** - Letters to tax authorities (NK)
|
|
27
|
+
|
|
28
|
+
### Developer Experience
|
|
29
|
+
|
|
30
|
+
- **Fluent Builder API** - Chainable methods for intuitive document creation
|
|
31
|
+
- **Full TypeScript Support** - Comprehensive type definitions for all builders
|
|
32
|
+
- **Validation Layer** - Built-in validation for all document fields
|
|
33
|
+
- **Smart Defaults** - Automatic field population where possible
|
|
34
|
+
- **Zero Breaking Changes** - Fully backward compatible with existing APIs
|
|
35
|
+
|
|
36
|
+
### Production Ready
|
|
37
|
+
|
|
38
|
+
- Complete test coverage for all document types
|
|
39
|
+
- Production-grade error handling and validation
|
|
40
|
+
- Enterprise-ready document workflows
|
|
41
|
+
- Comprehensive documentation and examples
|
|
42
|
+
|
|
43
|
+
## [1.0.4] - 2026-01-17
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
- **Utilities: Legal Entity Information by TIN**
|
|
47
|
+
- `getLegalEntityInfoByTin()` - Get detailed legal entity information by TIN
|
|
48
|
+
- Comprehensive company data including legal form, director info, banking details
|
|
49
|
+
- Address, OKED classification, VAT status, organizational flags
|
|
50
|
+
- Full TypeScript types with detailed JSDoc documentation
|
|
51
|
+
|
|
8
52
|
## [1.0.3] - 2026-01-16
|
|
9
53
|
|
|
10
54
|
### Added
|