Skip to content

Releases: ynab/ynab-sdk-js

v1.51.0

22 May 14:34
Compare
Choose a tag to compare

Full Changelog: v1.50.0...v1.51.0

v1.50.0

22 May 14:26
Compare
Choose a tag to compare

Full Changelog: v1.49.0...v1.50.0

v1.49.0

17 Apr 18:24
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.48.0...v1.49.0

v1.48.0

04 Apr 20:53
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.47.0...v1.48.0

v1.47.0

15 Feb 18:14
Compare
Choose a tag to compare

What's Changed

  • Convert example scripts to .mts/.mjs for top-level await support by @bradymholt in #151
  • Add more fields to account, category, and transaction resources by @bradymholt in #152

Full Changelog: v1.45.0...v1.47.0

1.45.0

19 Jan 23:00
Compare
Choose a tag to compare
  • New support for deleting transactions (transactions.deleteTransaction(budget_id, transaction_id)])
  • Transaction response objects now include import_payee_name and import_payee_name_original fields, which provide "Bank Import Details" for imported transactions, as shown in the web application. More details here.
  • When updating multiple transactions (PATCH) with transactions.updateTransactions..., you no longer have to supply account_id, date, or amount for each transaction.
  • Some of the class names and TypeScript types have been modified which could cause some breaking changes if code is referencing them directly
    • UpdateTransaction => SaveTransactionWithId
    • SaveTransactionsWrapper => PostTransactionsWrapper
    • UpdateTransactionsWrapper => PatchTransactionsWrapper
    • SaveMonthCategoryWrapper => PatchMonthCategoryWrapper
    • SaveAccountWrapper => PostAccountWrapper

v1.43.0

19 Jan 18:00
Compare
Choose a tag to compare
Release 1.43.0

New support for deleting transactions and patching existing transctions
without having to provide account_id, date, or amount.

v1.42.0

03 Jan 14:40
Compare
Choose a tag to compare

Add server_knowledge to HybridTransactionsResponseData

v1.32.0

08 Sep 15:12
Compare
Choose a tag to compare

Include new list of account types.

As part of this change, the enum of account types has been moved from api.SaveAccount.TypeEnum to api.AccountType.

v1.31.0

08 Sep 15:05
Compare
Choose a tag to compare

Include new list of account types.

As part of this change, the enum of account types has been moved from api.SaveAccount.TypeEnum to api.AccountType.

Before: type: api.SaveAccount.TypeEnum.Checking
After: type: api.AccountType.Checking