Merged
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
|
The changes in this PR were just released in 5.1.0 🎉. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Regenerates the SDK against the YNAB API spec through v1.83.0, picking up changes released since the last generation at v1.79.0.
v1.80.0 — Account creation types
Adds
SaveAccountTypeenum used bySaveAccount.typewhen creating accounts, replacing the broaderAccountType.v1.81.0 — Create payee endpoint
Adds
POST /plans/{plan_id}/payeesviaPayeesApi#create_payee, along withPostPayeeandPostPayeeWrappermodels.v1.82.0 — Formatted currency fields
Monetary responses across accounts, categories, transactions, scheduled transactions, months, and money movements now expose
*_formattedand*_currencyfields so callers can skip converting from milliunits. Implemented via new*Basemodel classes (AccountBase,CategoryBase,MoneyMovementBase,MonthSummaryBase,MonthDetailBase,TransactionSummaryBase,SubTransactionBase,ScheduledTransactionSummaryBase,ScheduledSubTransactionBase) that the existing detail/summary models extend.PlanDetailnow references the*Basevariants for its nested collections so the formatted/currency fields are only returned from single-resource endpoints.SaveAccountTypeis also extended withotherAssetandotherLiability.v1.83.0 — Category goal enhancements
goal_needs_whole_amountboolean on category create/update to toggle between "Set aside another…" (true) and "Refill up to…" (false) rollover behavior.goal_targetalone creates a "Pay Specific Amount Monthly" target; providing bothgoal_targetandgoal_target_datecreates a "Pay Off Balance by Date" target. Reflected in the updatedSaveCategory.goal_targetdescription (defaults toNEED, orMFfor Credit Card Payment categories, whengoal_typeis omitted).Implementation notes
Generated output only — regenerated
lib/ynab/(models, apis) anddocs/, along withopen_api_spec.yamland the generator metadata files. Minor description cleanup onSavePayee.name/PatchPayee.name.