Releases: ynab/ynab-sdk-js
Releases · ynab/ynab-sdk-js
v1.51.0
Full Changelog: v1.50.0...v1.51.0
v1.50.0
Full Changelog: v1.49.0...v1.50.0
v1.49.0
v1.48.0
What's Changed
- Bump webpack from 5.74.0 to 5.76.0 by @dependabot in #155
- Update youneedabudget.com domain references to ynab.com by @bradymholt in #154
Full Changelog: v1.47.0...v1.48.0
v1.47.0
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
- New support for deleting transactions (
transactions.deleteTransaction(budget_id, transaction_id)]
) - Transaction response objects now include
import_payee_name
andimport_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 supplyaccount_id
,date
, oramount
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
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
Add server_knowledge to HybridTransactionsResponseData
v1.32.0
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
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