@lunch-money/v2-api-spec 2.9.0 → 2.10.0-preview.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunch-money/v2-api-spec",
3
- "version": "2.9.0",
3
+ "version": "2.10.0-preview.2",
4
4
  "description": "OpenAPI specification and version history for the Lunch Money v2 API",
5
5
  "main": "lunch-money-api-v2.yaml",
6
6
  "files": [
@@ -5,13 +5,21 @@ 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.10.0 - TBD
9
+ - Add v2 crypto endpoints which support:
10
+ - Discovering the currently supported currencies for manually managed crypto assets
11
+ - Managing the complete lifecycle of manually managed crypto assets (create, read, update, delete)
12
+ - Viewing the balances for currencies associated with both manually managed crypto assets and those that are synced via a synced crypto account (ie: coinbase, kraken, ethereum wallet)
13
+ deferred.
14
+ - Refreshing synced crypto account balances
15
+
8
16
  ## v2.9.0 - Feb 26, 2026
9
17
  - Add initial `/budgets` endpoint support:
10
18
  - `GET /budgets/settings` for account budget settings
11
19
  - `PUT /budgets` to create or update budget amounts
12
20
  - `DELETE /budgets` to remove budget amounts
13
21
  - 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.
22
+ - 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
23
  - Add support for setting `tag_ids` on child transactions in `POST /transactions/split/{id}`.
16
24
 
17
25
  ## v2.8.5 - Feb 2, 2026
@@ -146,7 +154,7 @@ The Lunch Money API spec uses a modified version of SEMVER for its versioning me
146
154
  - 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.
147
155
  - This release also updates the following schemas:
148
156
  - Correctly specifies that all properties of the manualAccountObject are required
149
- - Updates the updateManualAccountRequestObject and updatePlaidManualAccountRequest object to allow the `balance` property to be either a string or a number.
157
+ - Updates the updateManualAccountObject and updatePlaidManualAccountObject to allow the `balance` property to be either a string or a number.
150
158
  - 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.
151
159
  - 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.
152
160
 
@@ -346,4 +354,3 @@ This is the initial branch using the versioning described above
346
354
  - It is the v2 version of the API - hence the major version 2.
347
355
  - The API Spec currently supports 3 endpoints /me, /categories, and /transactions. hence the minor version 3.
348
356
  - This version of the spec contains minor modifications to the previously published spec and therefore has a revision number 1
349
-