@lunch-money/v2-api-spec 2.8.5 → 2.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lunch-money-api-v2.yaml +2459 -2116
- package/package.json +1 -1
- package/version-history.md +12 -0
package/package.json
CHANGED
package/version-history.md
CHANGED
|
@@ -5,6 +5,18 @@ The Lunch Money API spec uses a modified version of SEMVER for its versioning me
|
|
|
5
5
|
- The minor version represents the number of main endpoints the current version of the spec supports. For example, a version of the API that supports the /me, /categories, and /transactions endpoints would have a minor version of 3.
|
|
6
6
|
- The revision number represents the number of updates since the last endpoint was added. For example, each time changes are made to one of the existing three APIs as described above, the revision number will be bumped.
|
|
7
7
|
|
|
8
|
+
## v2.9.1 - Apr 22, 2026
|
|
9
|
+
- You may now set `archived_at` when modifying a category or tag via the `PUT /categories` or `PUT /tags` endpoints.
|
|
10
|
+
|
|
11
|
+
## v2.9.0 - Feb 26, 2026
|
|
12
|
+
- Add initial `/budgets` endpoint support:
|
|
13
|
+
- `GET /budgets/settings` for account budget settings
|
|
14
|
+
- `PUT /budgets` to create or update budget amounts
|
|
15
|
+
- `DELETE /budgets` to remove budget amounts
|
|
16
|
+
- Updates the GET `/summary` endpoint to return an `occurrences` array for both aligned and non-aligned summary responses when `include_occurrences=true`.
|
|
17
|
+
- It can be useful to inspect the `start_date` and `end_date` of occurrences in a non-aligned response for use in subsequent requests to get an aligned response which will include complete budget information.
|
|
18
|
+
- Add support for setting `tag_ids` on child transactions in `POST /transactions/split/{id}`.
|
|
19
|
+
|
|
8
20
|
## v2.8.5 - Feb 2, 2026
|
|
9
21
|
- Add `plaid_item_id` and `linked_by_name` properties to the Plaid Account Object
|
|
10
22
|
- Expand Plaid Account Object `status` enum to include `closed`, `revoked`, and `deactivated`
|