@lunch-money/v2-api-spec 2.9.1 → 2.9.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/lunch-money-api-v2.yaml +1 -17
- package/package.json +1 -1
- package/version-history.md +3 -1
package/lunch-money-api-v2.yaml
CHANGED
|
@@ -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.
|
|
45
|
+
version: 2.9.2
|
|
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
|
package/package.json
CHANGED
package/version-history.md
CHANGED
|
@@ -5,6 +5,9 @@ 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.2 - Apr 22, 2026
|
|
9
|
+
- Increase allowable length for a transaction `payee`
|
|
10
|
+
|
|
8
11
|
## v2.9.1 - Apr 22, 2026
|
|
9
12
|
- You may now set `archived_at` when modifying a category or tag via the `PUT /categories` or `PUT /tags` endpoints.
|
|
10
13
|
|
|
@@ -349,4 +352,3 @@ This is the initial branch using the versioning described above
|
|
|
349
352
|
- It is the v2 version of the API - hence the major version 2.
|
|
350
353
|
- The API Spec currently supports 3 endpoints /me, /categories, and /transactions. hence the minor version 3.
|
|
351
354
|
- This version of the spec contains minor modifications to the previously published spec and therefore has a revision number 1
|
|
352
|
-
|