Releases: rantalainen/fivaldi-api-client
Releases · rantalainen/fivaldi-api-client
v1.1.0
v1.0.0
Breaking Changes
- The API client is now generated from Fivaldi's OpenAPI specification.
- This introduces changes to how the client is used and is not backward compatible with previous versions.
Features
- The API client now includes all currently supported Fivaldi endpoints.
- API rate limits are now automatically respected. The client enforces request throttling based on Fivaldi's rate-limiting headers (
X-RateLimit-Replenish-Rate,X-RateLimit-Burst-Capacity, etc.), so no manual handling is required.
v0.5.1
Fix output types as arrays in getAccountBalance and getAttachments
v0.5.0
❗ Breaking changes
- Old
products.getProduct()where you give product code as a string parameter is now deprecated
const products = await fivaldi.products.getProduct('123'); // Deprecated method - New
products.getProduct()method now needs product code as object paramter
const products = await fivaldi.products.getProduct({ productCode: '123' }); // New method - Product code parameter now supports special characters
New methods
- Added a new method
chartOfAccounts.dimensions()for creating new accounts under dimension
Fixes and other updates
- Fixes to interface types
- Added new properties to some interfaces
Fixed return value and updated interfaces
Added interface IFivaldiCompanyBankAccountDTO for customer's bank details.
Added Customer register method
v0.4.0 Added Customer register methods
Added Sales orders method
v0.3.0 0.3.0 Added Sales orders method
Added Archive of files method
v0.2.0 Added archive method
Updated dependencies
v0.1.1 Updated dependencies