@lunch-money/v2-api-spec 2.9.3 → 2.9.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.
@@ -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.3
45
+ version: 2.9.4
46
46
 
47
47
  servers:
48
48
  - url: https://api.lunchmoney.dev/v2
@@ -1591,8 +1591,6 @@ components:
1591
1591
  Any transaction notes set by the user or by
1592
1592
  a matched recurring item. This will match the value
1593
1593
  displayed in notes field on the transactions page in the GUI.
1594
- minLength: 0
1595
- maxLength: 350
1596
1594
  status:
1597
1595
  type: string
1598
1596
  # description: >
@@ -1820,8 +1818,6 @@ components:
1820
1818
  Any transaction notes set by the user or by
1821
1819
  a matched recurring item. This will match the value
1822
1820
  displayed in notes field on the transactions page in the GUI.
1823
- minLength: 0
1824
- maxLength: 350
1825
1821
  status:
1826
1822
  type: string
1827
1823
  description: >
@@ -2060,8 +2056,6 @@ components:
2060
2056
  Any transaction notes set by the user or by
2061
2057
  a matched recurring item. This will match the value
2062
2058
  displayed in notes field on the transactions page in the GUI.
2063
- minLength: 0
2064
- maxLength: 350
2065
2059
  manual_account_id:
2066
2060
  type: integer
2067
2061
  format: int32
@@ -2197,8 +2191,6 @@ components:
2197
2191
  description: >
2198
2192
  New notes for the transaction. Set this to an empty string to clear
2199
2193
  the existing notes.
2200
- minLength: 0
2201
- maxLength: 350
2202
2194
  x-updatable: true
2203
2195
  manual_account_id:
2204
2196
  type: integer
@@ -2394,7 +2386,6 @@ components:
2394
2386
  format: int32
2395
2387
  notes:
2396
2388
  type: string
2397
- maxLength: 350
2398
2389
  description: Will inherit notes from parent if not defined.
2399
2390
  required:
2400
2391
  - amount
@@ -3096,6 +3087,7 @@ components:
3096
3087
  # - `cad`: Canadian Dollar
3097
3088
  # - `cdf`: Congolese Franc
3098
3089
  # - `chf`: Swiss Franc
3090
+ # - `clf`: Chilean Unit of Account (UF)
3099
3091
  # - `clp`: Chilean Peso
3100
3092
  # - `cny`: Chinese Yuan
3101
3093
  # - `cop`: Colombian Peso
@@ -3111,6 +3103,7 @@ components:
3111
3103
  # - `egp`: Egyptian Pound
3112
3104
  # - `ern`: Eritrean Nakfa
3113
3105
  # - `etb`: Ethiopian Birr
3106
+ # - `eth`: Ethereum
3114
3107
  # - `eur`: Euro
3115
3108
  # - `fjd`: Fijian Dollar
3116
3109
  # - `fkp`: Falkland Islands Pound
@@ -3218,6 +3211,7 @@ components:
3218
3211
  # - `uyu`: Uruguayan Peso
3219
3212
  # - `uzs`: Uzbekistan Som
3220
3213
  # - `vef`: Venezuelan Bolívar
3214
+ # - `ves`: Venezuelan Bolívar Sotiemas
3221
3215
  # - `vnd`: Vietnamese Dong
3222
3216
  # - `vuv`: Vanuatu Vatu
3223
3217
  # - `wst`: Samoan Tala
@@ -3261,6 +3255,7 @@ components:
3261
3255
  - cad
3262
3256
  - cdf
3263
3257
  - chf
3258
+ - clf
3264
3259
  - clp
3265
3260
  - cny
3266
3261
  - cop
@@ -3276,6 +3271,7 @@ components:
3276
3271
  - egp
3277
3272
  - ern
3278
3273
  - etb
3274
+ - eth
3279
3275
  - eur
3280
3276
  - fjd
3281
3277
  - fkp
@@ -3383,6 +3379,7 @@ components:
3383
3379
  - uyu
3384
3380
  - uzs
3385
3381
  - vef
3382
+ - ves
3386
3383
  - vnd
3387
3384
  - vuv
3388
3385
  - wst
@@ -7381,8 +7378,6 @@ paths:
7381
7378
  nullable: true
7382
7379
  description: |
7383
7380
  Notes for the grouped transaction.
7384
- minLength: 0
7385
- maxLength: 350
7386
7381
  status:
7387
7382
  type: string
7388
7383
  description: If set must be either `reviewed` or `unreviewed`. If not set,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunch-money/v2-api-spec",
3
- "version": "2.9.3",
3
+ "version": "2.9.4",
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,11 +5,15 @@ 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.4 - May 23, 2026
9
+ - Increase allowable length for transaction `notes`.
10
+ - Add `clf`, `eth`, and `ves` to the supported currency codes.
11
+
8
12
  ## v2.9.3 - Apr 27, 2026
9
13
  - Add `xag` and `xau` to the supported currency codes.
10
14
 
11
15
  ## v2.9.2 - Apr 22, 2026
12
- - Increase allowable length for a transaction `payee`
16
+ - Increase allowable length for a transaction `payee`.
13
17
 
14
18
  ## v2.9.1 - Apr 22, 2026
15
19
  - You may now set `archived_at` when modifying a category or tag via the `PUT /categories` or `PUT /tags` endpoints.