@lunch-money/v2-api-spec 2.9.1 → 2.9.3

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.
@@ -42,7 +42,7 @@ info:
42
42
  license:
43
43
  name: Apache 2.0
44
44
  url: http://www.apache.org/licenses/LICENSE-2.0.html
45
- version: 2.9.1
45
+ version: 2.9.3
46
46
 
47
47
  servers:
48
48
  - url: https://api.lunchmoney.dev/v2
@@ -1531,14 +1531,10 @@ components:
1531
1531
  Name of payee set by the user, the financial institution, or by
1532
1532
  a matched recurring item. This will match the value
1533
1533
  displayed in payee field on the transactions page in the GUI.
1534
- minLength: 0
1535
- maxLength: 140
1536
1534
  original_name:
1537
1535
  type: string
1538
1536
  nullable: true
1539
1537
  description: Original payee name from the source (financial institution, CSV, etc.). For Plaid transactions, this is the raw name before normalization. For manual/API transactions, this typically matches `payee`. May be null for older transactions.
1540
- minLength: 0
1541
- maxLength: 140
1542
1538
  category_id:
1543
1539
  type: integer
1544
1540
  format: int32
@@ -1805,14 +1801,10 @@ components:
1805
1801
  Name of payee set by the user, the financial institution, or by
1806
1802
  a matched recurring item. This will match the value
1807
1803
  displayed in payee field on the transactions page in the GUI.
1808
- minLength: 0
1809
- maxLength: 140
1810
1804
  original_name:
1811
1805
  type: string
1812
1806
  nullable: true
1813
1807
  description: Original payee name from the source (financial institution, CSV, etc.). For Plaid transactions, this is the raw name before normalization. For manual/API transactions, this typically matches `payee`. May be null for older transactions.
1814
- minLength: 0
1815
- maxLength: 140
1816
1808
  category_id:
1817
1809
  type: integer
1818
1810
  format: int32
@@ -2050,14 +2042,10 @@ components:
2050
2042
  payee:
2051
2043
  type: string
2052
2044
  description: Name of payee for the transaction
2053
- minLength: 0
2054
- maxLength: 140
2055
2045
  original_name:
2056
2046
  type: string
2057
2047
  nullable: true
2058
2048
  description: Original payee name. If not provided, defaults to `payee` value.
2059
- minLength: 0
2060
- maxLength: 140
2061
2049
  category_id:
2062
2050
  type: integer
2063
2051
  format: int32
@@ -2190,15 +2178,11 @@ components:
2190
2178
  type: string
2191
2179
  description: |
2192
2180
  The new payee for the transaction.
2193
- minLength: 0
2194
- maxLength: 140
2195
2181
  x-updatable: true
2196
2182
  original_name:
2197
2183
  type: string
2198
2184
  nullable: true
2199
2185
  description: Original payee name. Cannot be changed. Ignored if set.
2200
- minLength: 0
2201
- maxLength: 140
2202
2186
  x-updatable: false
2203
2187
  category_id:
2204
2188
  type: integer
@@ -3238,6 +3222,8 @@ components:
3238
3222
  # - `vuv`: Vanuatu Vatu
3239
3223
  # - `wst`: Samoan Tala
3240
3224
  # - `xaf`: CFA Franc BEAC
3225
+ # - `xag`: Silver
3226
+ # - `xau`: Gold
3241
3227
  # - `xcd`: East Caribbean Dollar
3242
3228
  # - `xof`: CFA Franc BCEAO
3243
3229
  # - `xpf`: CFP Franc
@@ -3401,6 +3387,8 @@ components:
3401
3387
  - vuv
3402
3388
  - wst
3403
3389
  - xaf
3390
+ - xag
3391
+ - xau
3404
3392
  - xcd
3405
3393
  - xof
3406
3394
  - xpf
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunch-money/v2-api-spec",
3
- "version": "2.9.1",
3
+ "version": "2.9.3",
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": [
@@ -26,4 +26,3 @@
26
26
  "husky": "^8.0.3"
27
27
  }
28
28
  }
29
-
@@ -5,6 +5,12 @@ 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.3 - Apr 27, 2026
9
+ - Add `xag` and `xau` to the supported currency codes.
10
+
11
+ ## v2.9.2 - Apr 22, 2026
12
+ - Increase allowable length for a transaction `payee`
13
+
8
14
  ## v2.9.1 - Apr 22, 2026
9
15
  - You may now set `archived_at` when modifying a category or tag via the `PUT /categories` or `PUT /tags` endpoints.
10
16
 
@@ -349,4 +355,3 @@ This is the initial branch using the versioning described above
349
355
  - It is the v2 version of the API - hence the major version 2.
350
356
  - The API Spec currently supports 3 endpoints /me, /categories, and /transactions. hence the minor version 3.
351
357
  - This version of the spec contains minor modifications to the previously published spec and therefore has a revision number 1
352
-