@lunch-money/v2-api-spec 2.8.3 → 2.8.4
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 +431 -226
- package/package.json +1 -1
- package/version-history.md +19 -2
package/package.json
CHANGED
package/version-history.md
CHANGED
|
@@ -5,7 +5,24 @@ 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.
|
|
8
|
+
## v2.8.4 - [TBD]
|
|
9
|
+
- Add new `created_since` and `updated_since` query parameters to the GET /transactions endpoint.
|
|
10
|
+
- Add a new `include_group_children` query parameter to the GET /transactions endpoint.
|
|
11
|
+
- Add new `include_rollover_pool` and `include_past_budget_dates` query params to the GET /summary endpoint.
|
|
12
|
+
- Add `to_base` to the allowed properties in the updateManualAccountObject. This is tolerated but ignored (matches behavior in updateTransactionObject)
|
|
13
|
+
- New `x-updatable` attributes have been added to the properties of the update objects to more clearly describe which system defined properties are tolerated but ignored.
|
|
14
|
+
- **BREAKING CHANGES**
|
|
15
|
+
- Renamed several properties in the transaction object:
|
|
16
|
+
- `is_parent` -> `is_split_parent`
|
|
17
|
+
- `parent_id` -> `split_parent_id`
|
|
18
|
+
- `is_group` -> `is_group_parent`
|
|
19
|
+
- `group_id` -> `group_parent_id`
|
|
20
|
+
- Renamed a query parameter on the GET /transactions endpoint
|
|
21
|
+
- `is_group` -> `is_group_parent`
|
|
22
|
+
- Renamed a property in the occurrences object returned by the GET /summary endpoint
|
|
23
|
+
- `current` -> `in_range`
|
|
24
|
+
|
|
25
|
+
## v2.8.3 - Dec 23, 2025
|
|
9
26
|
- The default for the GET /transactions query parameter `limit` has been changed from 100 to 1000. The max for this parameter is now 2000.
|
|
10
27
|
- Added new guides covering pagination and supported currencies.
|
|
11
28
|
|
|
@@ -111,7 +128,7 @@ The Lunch Money API spec uses a modified version of SEMVER for its versioning me
|
|
|
111
128
|
- 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.
|
|
112
129
|
- This release also updates the following schemas:
|
|
113
130
|
- Correctly specifies that all properties of the manualAccountObject are required
|
|
114
|
-
- Updates the
|
|
131
|
+
- Updates the updateManualAccountObject and updatePlaidManualAccountObject to allow the `balance` property to be either a string or a number.
|
|
115
132
|
- 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.
|
|
116
133
|
- 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.
|
|
117
134
|
|