Skip to content

Releases: rantalainen/fivaldi-api-client

v1.1.0

29 Nov 09:55

Choose a tag to compare

Updates and fixes

  • Update the OpenAPI file from Fivaldi spec version 2.13.0
  • Includes some new endpoints (see commit for more details)
  • Fixes to interfaces and argument types
  • Improved documentation

v1.0.0

08 Jul 11:59

Choose a tag to compare

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

08 Apr 08:40

Choose a tag to compare

Fix output types as arrays in getAccountBalance and getAttachments

v0.5.0

20 Dec 09:29

Choose a tag to compare

❗ 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

27 Feb 08:58

Choose a tag to compare

Added interface IFivaldiCompanyBankAccountDTO for customer's bank details.

Added Customer register method

27 Feb 08:43

Choose a tag to compare

v0.4.0

Added Customer register methods

Added Sales orders method

27 Feb 08:42

Choose a tag to compare

v0.3.0

0.3.0 Added Sales orders method

Added Archive of files method

27 Feb 08:40

Choose a tag to compare

v0.2.0

Added archive method

Updated dependencies

27 Feb 08:38

Choose a tag to compare

v0.1.1

Updated dependencies