@lunch-money/v2-api-spec 2.8.4 → 2.9.0
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/README.md.backup +12 -0
- package/lunch-money-api-v2.yaml +2489 -2033
- package/package.json +1 -1
- package/version-history.md +20 -2
package/package.json
CHANGED
package/version-history.md
CHANGED
|
@@ -5,7 +5,25 @@ 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.
|
|
8
|
+
## v2.9.0 - Feb 26, 2026
|
|
9
|
+
- Add initial `/budgets` endpoint support:
|
|
10
|
+
- `GET /budgets/settings` for account budget settings
|
|
11
|
+
- `PUT /budgets` to create or update budget amounts
|
|
12
|
+
- `DELETE /budgets` to remove budget amounts
|
|
13
|
+
- Updates the GET `/summary` endpoint to return an `occurrences` array for both aligned and non-aligned summary responses when `include_occurrences=true`.
|
|
14
|
+
- 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.
|
|
15
|
+
- Add support for setting `tag_ids` on child transactions in `POST /transactions/split/{id}`.
|
|
16
|
+
|
|
17
|
+
## v2.8.5 - Feb 2, 2026
|
|
18
|
+
- Add `plaid_item_id` and `linked_by_name` properties to the Plaid Account Object
|
|
19
|
+
- Expand Plaid Account Object `status` enum to include `closed`, `revoked`, and `deactivated`
|
|
20
|
+
- Restore the v1 `original_name` property to the v2 Transaction Object
|
|
21
|
+
- The `collapsed` property on the childCategoryObject is no longer nullable and is always set to `false`.
|
|
22
|
+
- Add `status` and `created_by_name` properties to the Manual Account Object
|
|
23
|
+
- **BREAKING CHANGE**
|
|
24
|
+
- It was possible to 'close' a manual account simply by setting the `closed_on` property in a PUT or POST request. Now `status` must also be set to `closed`.
|
|
25
|
+
|
|
26
|
+
## v2.8.4 - Jan 16, 2026
|
|
9
27
|
- Add new `created_since` and `updated_since` query parameters to the GET /transactions endpoint.
|
|
10
28
|
- Add a new `include_group_children` query parameter to the GET /transactions endpoint.
|
|
11
29
|
- Add new `include_rollover_pool` and `include_past_budget_dates` query params to the GET /summary endpoint.
|
|
@@ -128,7 +146,7 @@ The Lunch Money API spec uses a modified version of SEMVER for its versioning me
|
|
|
128
146
|
- It is also now permissible to include strings in the `children` property. These will be used as the names of new child categories that will be created.
|
|
129
147
|
- This release also updates the following schemas:
|
|
130
148
|
- Correctly specifies that all properties of the manualAccountObject are required
|
|
131
|
-
- Updates the
|
|
149
|
+
- Updates the updateManualAccountRequestObject and updatePlaidManualAccountRequest object to allow the `balance` property to be either a string or a number.
|
|
132
150
|
- Updates the userObject to include the `debits_as_negative` property. The documentation for Transaction Objects returned by GET requests have been updated to reflect how/if this setting affects the `amount` property of the transaction.
|
|
133
151
|
- Updates the childCategoryObject to restore the `exclude_from_budget`, `exclude_from_totals` and `is_income` properties. These properties are inherited from the Category Group and not settable but are provided for convenience.
|
|
134
152
|
|