@opentabs-dev/opentabs-plugin-ynab 0.0.85 → 0.0.87
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/dist/adapter.iife.js +1315 -545
- package/dist/adapter.iife.js.map +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -16
- package/dist/index.js.map +1 -1
- package/dist/tools/create-category-group.d.ts +11 -0
- package/dist/tools/create-category-group.d.ts.map +1 -0
- package/dist/tools/create-category-group.js +37 -0
- package/dist/tools/create-category-group.js.map +1 -0
- package/dist/tools/create-category.d.ts +59 -0
- package/dist/tools/create-category.d.ts.map +1 -0
- package/dist/tools/create-category.js +63 -0
- package/dist/tools/create-category.js.map +1 -0
- package/dist/tools/create-transaction.d.ts +2 -2
- package/dist/tools/create-transaction.d.ts.map +1 -1
- package/dist/tools/create-transaction.js +63 -22
- package/dist/tools/create-transaction.js.map +1 -1
- package/dist/tools/delete-category-group.d.ts +8 -0
- package/dist/tools/delete-category-group.d.ts.map +1 -0
- package/dist/tools/delete-category-group.js +33 -0
- package/dist/tools/delete-category-group.js.map +1 -0
- package/dist/tools/delete-category.d.ts +7 -0
- package/dist/tools/delete-category.d.ts.map +1 -0
- package/dist/tools/delete-category.js +28 -0
- package/dist/tools/delete-category.js.map +1 -0
- package/dist/tools/delete-transaction.d.ts.map +1 -1
- package/dist/tools/delete-transaction.js +22 -7
- package/dist/tools/delete-transaction.js.map +1 -1
- package/dist/tools/get-account.d.ts.map +1 -1
- package/dist/tools/get-account.js +3 -3
- package/dist/tools/get-account.js.map +1 -1
- package/dist/tools/get-month.d.ts +2 -1
- package/dist/tools/get-month.d.ts.map +1 -1
- package/dist/tools/get-month.js +10 -33
- package/dist/tools/get-month.js.map +1 -1
- package/dist/tools/get-plan.d.ts.map +1 -1
- package/dist/tools/get-plan.js +12 -5
- package/dist/tools/get-plan.js.map +1 -1
- package/dist/tools/get-transaction.d.ts +2 -2
- package/dist/tools/get-transaction.d.ts.map +1 -1
- package/dist/tools/get-transaction.js +5 -4
- package/dist/tools/get-transaction.js.map +1 -1
- package/dist/tools/list-accounts.d.ts.map +1 -1
- package/dist/tools/list-accounts.js +4 -4
- package/dist/tools/list-accounts.js.map +1 -1
- package/dist/tools/list-categories.d.ts.map +1 -1
- package/dist/tools/list-categories.js +9 -29
- package/dist/tools/list-categories.js.map +1 -1
- package/dist/tools/list-months.d.ts +1 -1
- package/dist/tools/list-months.d.ts.map +1 -1
- package/dist/tools/list-months.js +5 -14
- package/dist/tools/list-months.js.map +1 -1
- package/dist/tools/list-payees.d.ts.map +1 -1
- package/dist/tools/list-payees.js +3 -3
- package/dist/tools/list-payees.js.map +1 -1
- package/dist/tools/list-scheduled-transactions.d.ts.map +1 -1
- package/dist/tools/list-scheduled-transactions.js +7 -5
- package/dist/tools/list-scheduled-transactions.js.map +1 -1
- package/dist/tools/list-transactions.d.ts +4 -2
- package/dist/tools/list-transactions.d.ts.map +1 -1
- package/dist/tools/list-transactions.js +40 -8
- package/dist/tools/list-transactions.js.map +1 -1
- package/dist/tools/move-category-budget.d.ts +24 -0
- package/dist/tools/move-category-budget.d.ts.map +1 -0
- package/dist/tools/move-category-budget.js +100 -0
- package/dist/tools/move-category-budget.js.map +1 -0
- package/dist/tools/schemas.d.ts +185 -28
- package/dist/tools/schemas.d.ts.map +1 -1
- package/dist/tools/schemas.js +411 -28
- package/dist/tools/schemas.js.map +1 -1
- package/dist/tools/snooze-category-goal.d.ts +10 -0
- package/dist/tools/snooze-category-goal.d.ts.map +1 -0
- package/dist/tools/snooze-category-goal.js +53 -0
- package/dist/tools/snooze-category-goal.js.map +1 -0
- package/dist/tools/update-category-budget.d.ts.map +1 -1
- package/dist/tools/update-category-budget.js +51 -26
- package/dist/tools/update-category-budget.js.map +1 -1
- package/dist/tools/update-category.d.ts +61 -0
- package/dist/tools/update-category.d.ts.map +1 -0
- package/dist/tools/update-category.js +46 -0
- package/dist/tools/update-category.js.map +1 -0
- package/dist/tools/update-transaction.d.ts +3 -2
- package/dist/tools/update-transaction.d.ts.map +1 -1
- package/dist/tools/update-transaction.js +84 -31
- package/dist/tools/update-transaction.js.map +1 -1
- package/dist/tools.json +965 -43
- package/dist/ynab-api.d.ts +4 -1
- package/dist/ynab-api.d.ts.map +1 -1
- package/dist/ynab-api.js +47 -26
- package/dist/ynab-api.js.map +1 -1
- package/package.json +3 -3
package/dist/tools.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"sdkVersion": "0.0.
|
|
2
|
+
"sdkVersion": "0.0.91",
|
|
3
3
|
"iconSvg": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9654471,7.1372549 C12.9654471,7.1372549 13.0521782,7.17866667 13.01824,7.23137255 L9.43665461,12.7291114 C9.40271635,12.7818173 9.37254902,12.8759349 9.37254902,12.9361702 L9.37254902,15.8870588 C9.37254902,15.9472941 9.31975618,16 9.25942152,16 L6.74057848,16 C6.68024382,16 6.62745098,15.9472941 6.62745098,15.8870588 L6.62745098,12.9361702 C6.62745098,12.8721702 6.59728365,12.7818173 6.56334539,12.7291114 L2.97044729,7.23137255 C2.93650904,7.17866667 2.95536362,7.1372549 3.01946921,7.1372549 L5.96078431,7.1372549 C6.02111898,7.1372549 6.10030824,7.18243137 6.13047557,7.23513725 L7.94532171,10.3077647 C7.97925996,10.3604706 8.02828188,10.3604706 8.06222013,10.3077647 L9.86575351,7.23513725 C9.89969176,7.18243137 9.9751101,7.1372549 10.0392157,7.1372549 L12.9654471,7.1372549 Z M11.5729437,10.7557647 C11.5955692,10.7407059 11.6408202,10.7294118 11.7049258,10.7294118 C13.0021211,10.7256471 12.7871789,11.9717647 12.7306151,12.4235294 C12.2894179,12.3143529 11.0412444,12.0809412 11.5012963,10.8687059 C11.5276927,10.816 11.5503182,10.7708235 11.5729437,10.7557647 Z M4.29507424,10.7294118 C4.36295074,10.7294118 4.40443083,10.7407059 4.42705633,10.7557647 C4.44591091,10.7708235 4.47230733,10.816 4.49493283,10.8687059 C4.95498468,12.0809412 3.70681122,12.3143529 3.26561395,12.4235294 C3.21282112,11.9717647 2.99787886,10.7256471 4.29507424,10.7294118 Z M12.2630214,9.63764706 C12.2667924,9.59247059 12.3007306,9.52847059 12.372378,9.44564706 C13.7600754,7.83058824 14.9479142,9.50588235 15.4079661,10.0818824 C14.8083903,10.5072941 13.2019797,11.7872941 12.3158143,9.85223529 C12.281876,9.76564706 12.2554796,9.67905882 12.2630214,9.63764706 Z M3.74074947,9.63388235 C3.7482913,9.67529412 3.72189489,9.76188235 3.68795663,9.84847059 C2.80179119,11.7835294 1.19538063,10.5072941 0.595804855,10.0781176 C1.05208579,9.50588235 2.23992458,7.83058824 3.63139288,9.44188235 C3.69926938,9.52470588 3.73320764,9.59247059 3.74074947,9.63388235 Z M13.5451332,7.81552941 C13.5451332,7.78164706 13.5602168,7.72894118 13.597926,7.66117647 C14.3709639,6.29082353 15.5588027,7.26588235 16,7.59717647 C15.6229083,7.99623529 14.6273863,9.16705882 13.6243224,7.95858824 C13.5828423,7.90211765 13.5489041,7.84564706 13.5451332,7.81552941 Z M2.45486684,7.81176471 C2.45109592,7.84188235 2.41715767,7.89835294 2.37567759,7.95482353 C1.37261372,9.16705882 0.37709168,7.99623529 0,7.58964706 C0.441197266,7.26211765 1.62903606,6.28705882 2.402074,7.65741176 C2.44355409,7.72894118 2.45863776,7.78164706 2.45486684,7.81176471 Z M12.4817346,6.14776471 C12.46288,6.11011765 12.4515673,6.03858824 12.4591091,5.92941176 C12.6137167,3.80988235 14.5670516,4.44988235 15.2722131,4.63811765 C15.045958,5.33458824 14.5180297,7.31858824 12.6514259,6.28705882 C12.5722366,6.23811765 12.5005892,6.18541176 12.4817346,6.14776471 Z M3.51826538,6.15152941 C3.49941079,6.18917647 3.42776337,6.23811765 3.34857412,6.29082353 C1.4819703,7.31858824 0.954041951,5.33835294 0.724016026,4.64188235 C1.43294839,4.44988235 3.38251237,3.80988235 3.54089088,5.93317647 C3.54843271,6.03858824 3.53711996,6.11388235 3.51826538,6.15152941 Z M12.2856469,4.18258824 C12.2177704,4.17882353 12.1536649,4.17129412 12.1272684,4.15247059 C12.1046429,4.13741176 12.0744756,4.09223529 12.0443083,4.01317647 C11.4862126,2.54494118 12.9983502,2.26258824 13.5338204,2.13082353 C13.597926,2.67670588 13.8581193,4.19011765 12.2856469,4.18258824 Z M3.87273156,4.15623529 C3.84633514,4.17129412 3.78222955,4.18258824 3.71435305,4.18635294 C2.13810983,4.19388235 2.402074,2.68047059 2.46617959,2.13835294 C3.00164978,2.26635294 4.5100165,2.54870588 3.95569173,4.02070588 C3.92929531,4.09223529 3.89912798,4.13741176 3.87273156,4.15623529 Z M7.99434362,2.92517647 C7.95663446,2.92517647 7.88121612,2.89129412 7.80579778,2.84988235 C6.15036531,1.792 7.53052086,0.489411765 7.99434362,0 C8.46193731,0.489411765 9.84209286,1.78823529 8.18288947,2.84988235 C8.0999293,2.90258824 8.03205279,2.92517647 7.99434362,2.92517647 Z M10.1588499,3.712 C10.0834315,3.72329412 10.0117841,3.73082353 9.97784586,3.71952941 C9.94767853,3.70823529 9.90242753,3.66682353 9.84963469,3.59529412 C8.84657082,2.14588235 10.4152722,1.43058824 10.9620551,1.14447059 C11.1807683,1.72047059 11.8708461,3.29411765 10.1588499,3.712 Z M6.02215414,3.71952941 C5.98821588,3.73458824 5.91656847,3.72705882 5.84115013,3.712 C4.1291539,3.29411765 4.82300259,1.72047059 5.03794485,1.14070588 C5.58472779,1.42682353 7.15342918,2.14211765 6.15036531,3.59152941 C6.10134339,3.66682353 6.05609239,3.70823529 6.02215414,3.71952941 Z M7.85104879,5.78258824 C6.55385341,4.89411765 7.63233561,3.79858824 7.99811454,3.38823529 C8.36389347,3.79858824 9.44237568,4.89411765 8.1451803,5.78258824 C8.08107471,5.82776471 8.02828188,5.84658824 7.99811454,5.84658824 C7.96794721,5.84658824 7.91138346,5.81647059 7.85104879,5.78258824 Z M9.9401367,6.71623529 C9.84586378,6.70870588 9.75536177,6.69364706 9.72142352,6.67105882 C9.68371435,6.64847059 9.63846335,6.58823529 9.60075418,6.49035294 C8.74475607,4.54023529 10.7697384,4.19764706 11.4862126,4.03576471 C11.6106528,4.75482353 12.0707047,6.75764706 9.9401367,6.71623529 Z M7.99434362,8.68517647 C7.96417629,8.68517647 7.90761254,8.65505882 7.84727787,8.62117647 C6.55008249,7.72894118 7.63233561,6.63717647 7.99434362,6.22682353 C8.36012255,6.63717647 9.43860476,7.72894118 8.14140938,8.62117647 C8.07730379,8.66635294 8.02451096,8.68517647 7.99434362,8.68517647 Z M6.2823474,6.67105882 C6.24463823,6.69364706 6.15790714,6.70870588 6.06363422,6.71623529 C3.93306623,6.75764706 4.39311808,4.75858824 4.52132925,4.03576471 C5.23780344,4.19764706 7.26278576,4.54023529 6.40678765,6.49035294 C6.36153665,6.58823529 6.31628565,6.64847059 6.2823474,6.67105882 Z\" fill=\"black\"/> </svg>",
|
|
4
4
|
"iconInactiveSvg": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9654471,7.1372549 C12.9654471,7.1372549 13.0521782,7.17866667 13.01824,7.23137255 L9.43665461,12.7291114 C9.40271635,12.7818173 9.37254902,12.8759349 9.37254902,12.9361702 L9.37254902,15.8870588 C9.37254902,15.9472941 9.31975618,16 9.25942152,16 L6.74057848,16 C6.68024382,16 6.62745098,15.9472941 6.62745098,15.8870588 L6.62745098,12.9361702 C6.62745098,12.8721702 6.59728365,12.7818173 6.56334539,12.7291114 L2.97044729,7.23137255 C2.93650904,7.17866667 2.95536362,7.1372549 3.01946921,7.1372549 L5.96078431,7.1372549 C6.02111898,7.1372549 6.10030824,7.18243137 6.13047557,7.23513725 L7.94532171,10.3077647 C7.97925996,10.3604706 8.02828188,10.3604706 8.06222013,10.3077647 L9.86575351,7.23513725 C9.89969176,7.18243137 9.9751101,7.1372549 10.0392157,7.1372549 L12.9654471,7.1372549 Z M11.5729437,10.7557647 C11.5955692,10.7407059 11.6408202,10.7294118 11.7049258,10.7294118 C13.0021211,10.7256471 12.7871789,11.9717647 12.7306151,12.4235294 C12.2894179,12.3143529 11.0412444,12.0809412 11.5012963,10.8687059 C11.5276927,10.816 11.5503182,10.7708235 11.5729437,10.7557647 Z M4.29507424,10.7294118 C4.36295074,10.7294118 4.40443083,10.7407059 4.42705633,10.7557647 C4.44591091,10.7708235 4.47230733,10.816 4.49493283,10.8687059 C4.95498468,12.0809412 3.70681122,12.3143529 3.26561395,12.4235294 C3.21282112,11.9717647 2.99787886,10.7256471 4.29507424,10.7294118 Z M12.2630214,9.63764706 C12.2667924,9.59247059 12.3007306,9.52847059 12.372378,9.44564706 C13.7600754,7.83058824 14.9479142,9.50588235 15.4079661,10.0818824 C14.8083903,10.5072941 13.2019797,11.7872941 12.3158143,9.85223529 C12.281876,9.76564706 12.2554796,9.67905882 12.2630214,9.63764706 Z M3.74074947,9.63388235 C3.7482913,9.67529412 3.72189489,9.76188235 3.68795663,9.84847059 C2.80179119,11.7835294 1.19538063,10.5072941 0.595804855,10.0781176 C1.05208579,9.50588235 2.23992458,7.83058824 3.63139288,9.44188235 C3.69926938,9.52470588 3.73320764,9.59247059 3.74074947,9.63388235 Z M13.5451332,7.81552941 C13.5451332,7.78164706 13.5602168,7.72894118 13.597926,7.66117647 C14.3709639,6.29082353 15.5588027,7.26588235 16,7.59717647 C15.6229083,7.99623529 14.6273863,9.16705882 13.6243224,7.95858824 C13.5828423,7.90211765 13.5489041,7.84564706 13.5451332,7.81552941 Z M2.45486684,7.81176471 C2.45109592,7.84188235 2.41715767,7.89835294 2.37567759,7.95482353 C1.37261372,9.16705882 0.37709168,7.99623529 0,7.58964706 C0.441197266,7.26211765 1.62903606,6.28705882 2.402074,7.65741176 C2.44355409,7.72894118 2.45863776,7.78164706 2.45486684,7.81176471 Z M12.4817346,6.14776471 C12.46288,6.11011765 12.4515673,6.03858824 12.4591091,5.92941176 C12.6137167,3.80988235 14.5670516,4.44988235 15.2722131,4.63811765 C15.045958,5.33458824 14.5180297,7.31858824 12.6514259,6.28705882 C12.5722366,6.23811765 12.5005892,6.18541176 12.4817346,6.14776471 Z M3.51826538,6.15152941 C3.49941079,6.18917647 3.42776337,6.23811765 3.34857412,6.29082353 C1.4819703,7.31858824 0.954041951,5.33835294 0.724016026,4.64188235 C1.43294839,4.44988235 3.38251237,3.80988235 3.54089088,5.93317647 C3.54843271,6.03858824 3.53711996,6.11388235 3.51826538,6.15152941 Z M12.2856469,4.18258824 C12.2177704,4.17882353 12.1536649,4.17129412 12.1272684,4.15247059 C12.1046429,4.13741176 12.0744756,4.09223529 12.0443083,4.01317647 C11.4862126,2.54494118 12.9983502,2.26258824 13.5338204,2.13082353 C13.597926,2.67670588 13.8581193,4.19011765 12.2856469,4.18258824 Z M3.87273156,4.15623529 C3.84633514,4.17129412 3.78222955,4.18258824 3.71435305,4.18635294 C2.13810983,4.19388235 2.402074,2.68047059 2.46617959,2.13835294 C3.00164978,2.26635294 4.5100165,2.54870588 3.95569173,4.02070588 C3.92929531,4.09223529 3.89912798,4.13741176 3.87273156,4.15623529 Z M7.99434362,2.92517647 C7.95663446,2.92517647 7.88121612,2.89129412 7.80579778,2.84988235 C6.15036531,1.792 7.53052086,0.489411765 7.99434362,0 C8.46193731,0.489411765 9.84209286,1.78823529 8.18288947,2.84988235 C8.0999293,2.90258824 8.03205279,2.92517647 7.99434362,2.92517647 Z M10.1588499,3.712 C10.0834315,3.72329412 10.0117841,3.73082353 9.97784586,3.71952941 C9.94767853,3.70823529 9.90242753,3.66682353 9.84963469,3.59529412 C8.84657082,2.14588235 10.4152722,1.43058824 10.9620551,1.14447059 C11.1807683,1.72047059 11.8708461,3.29411765 10.1588499,3.712 Z M6.02215414,3.71952941 C5.98821588,3.73458824 5.91656847,3.72705882 5.84115013,3.712 C4.1291539,3.29411765 4.82300259,1.72047059 5.03794485,1.14070588 C5.58472779,1.42682353 7.15342918,2.14211765 6.15036531,3.59152941 C6.10134339,3.66682353 6.05609239,3.70823529 6.02215414,3.71952941 Z M7.85104879,5.78258824 C6.55385341,4.89411765 7.63233561,3.79858824 7.99811454,3.38823529 C8.36389347,3.79858824 9.44237568,4.89411765 8.1451803,5.78258824 C8.08107471,5.82776471 8.02828188,5.84658824 7.99811454,5.84658824 C7.96794721,5.84658824 7.91138346,5.81647059 7.85104879,5.78258824 Z M9.9401367,6.71623529 C9.84586378,6.70870588 9.75536177,6.69364706 9.72142352,6.67105882 C9.68371435,6.64847059 9.63846335,6.58823529 9.60075418,6.49035294 C8.74475607,4.54023529 10.7697384,4.19764706 11.4862126,4.03576471 C11.6106528,4.75482353 12.0707047,6.75764706 9.9401367,6.71623529 Z M7.99434362,8.68517647 C7.96417629,8.68517647 7.90761254,8.65505882 7.84727787,8.62117647 C6.55008249,7.72894118 7.63233561,6.63717647 7.99434362,6.22682353 C8.36012255,6.63717647 9.43860476,7.72894118 8.14140938,8.62117647 C8.07730379,8.66635294 8.02451096,8.68517647 7.99434362,8.68517647 Z M6.2823474,6.67105882 C6.24463823,6.69364706 6.15790714,6.70870588 6.06363422,6.71623529 C3.93306623,6.75764706 4.39311808,4.75858824 4.52132925,4.03576471 C5.23780344,4.19764706 7.26278576,4.54023529 6.40678765,6.49035294 C6.36153665,6.58823529 6.31628565,6.64847059 6.2823474,6.67105882 Z\" fill=\"#999999\"/> </svg>",
|
|
5
5
|
"iconDarkSvg": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9654471,7.1372549 C12.9654471,7.1372549 13.0521782,7.17866667 13.01824,7.23137255 L9.43665461,12.7291114 C9.40271635,12.7818173 9.37254902,12.8759349 9.37254902,12.9361702 L9.37254902,15.8870588 C9.37254902,15.9472941 9.31975618,16 9.25942152,16 L6.74057848,16 C6.68024382,16 6.62745098,15.9472941 6.62745098,15.8870588 L6.62745098,12.9361702 C6.62745098,12.8721702 6.59728365,12.7818173 6.56334539,12.7291114 L2.97044729,7.23137255 C2.93650904,7.17866667 2.95536362,7.1372549 3.01946921,7.1372549 L5.96078431,7.1372549 C6.02111898,7.1372549 6.10030824,7.18243137 6.13047557,7.23513725 L7.94532171,10.3077647 C7.97925996,10.3604706 8.02828188,10.3604706 8.06222013,10.3077647 L9.86575351,7.23513725 C9.89969176,7.18243137 9.9751101,7.1372549 10.0392157,7.1372549 L12.9654471,7.1372549 Z M11.5729437,10.7557647 C11.5955692,10.7407059 11.6408202,10.7294118 11.7049258,10.7294118 C13.0021211,10.7256471 12.7871789,11.9717647 12.7306151,12.4235294 C12.2894179,12.3143529 11.0412444,12.0809412 11.5012963,10.8687059 C11.5276927,10.816 11.5503182,10.7708235 11.5729437,10.7557647 Z M4.29507424,10.7294118 C4.36295074,10.7294118 4.40443083,10.7407059 4.42705633,10.7557647 C4.44591091,10.7708235 4.47230733,10.816 4.49493283,10.8687059 C4.95498468,12.0809412 3.70681122,12.3143529 3.26561395,12.4235294 C3.21282112,11.9717647 2.99787886,10.7256471 4.29507424,10.7294118 Z M12.2630214,9.63764706 C12.2667924,9.59247059 12.3007306,9.52847059 12.372378,9.44564706 C13.7600754,7.83058824 14.9479142,9.50588235 15.4079661,10.0818824 C14.8083903,10.5072941 13.2019797,11.7872941 12.3158143,9.85223529 C12.281876,9.76564706 12.2554796,9.67905882 12.2630214,9.63764706 Z M3.74074947,9.63388235 C3.7482913,9.67529412 3.72189489,9.76188235 3.68795663,9.84847059 C2.80179119,11.7835294 1.19538063,10.5072941 0.595804855,10.0781176 C1.05208579,9.50588235 2.23992458,7.83058824 3.63139288,9.44188235 C3.69926938,9.52470588 3.73320764,9.59247059 3.74074947,9.63388235 Z M13.5451332,7.81552941 C13.5451332,7.78164706 13.5602168,7.72894118 13.597926,7.66117647 C14.3709639,6.29082353 15.5588027,7.26588235 16,7.59717647 C15.6229083,7.99623529 14.6273863,9.16705882 13.6243224,7.95858824 C13.5828423,7.90211765 13.5489041,7.84564706 13.5451332,7.81552941 Z M2.45486684,7.81176471 C2.45109592,7.84188235 2.41715767,7.89835294 2.37567759,7.95482353 C1.37261372,9.16705882 0.37709168,7.99623529 0,7.58964706 C0.441197266,7.26211765 1.62903606,6.28705882 2.402074,7.65741176 C2.44355409,7.72894118 2.45863776,7.78164706 2.45486684,7.81176471 Z M12.4817346,6.14776471 C12.46288,6.11011765 12.4515673,6.03858824 12.4591091,5.92941176 C12.6137167,3.80988235 14.5670516,4.44988235 15.2722131,4.63811765 C15.045958,5.33458824 14.5180297,7.31858824 12.6514259,6.28705882 C12.5722366,6.23811765 12.5005892,6.18541176 12.4817346,6.14776471 Z M3.51826538,6.15152941 C3.49941079,6.18917647 3.42776337,6.23811765 3.34857412,6.29082353 C1.4819703,7.31858824 0.954041951,5.33835294 0.724016026,4.64188235 C1.43294839,4.44988235 3.38251237,3.80988235 3.54089088,5.93317647 C3.54843271,6.03858824 3.53711996,6.11388235 3.51826538,6.15152941 Z M12.2856469,4.18258824 C12.2177704,4.17882353 12.1536649,4.17129412 12.1272684,4.15247059 C12.1046429,4.13741176 12.0744756,4.09223529 12.0443083,4.01317647 C11.4862126,2.54494118 12.9983502,2.26258824 13.5338204,2.13082353 C13.597926,2.67670588 13.8581193,4.19011765 12.2856469,4.18258824 Z M3.87273156,4.15623529 C3.84633514,4.17129412 3.78222955,4.18258824 3.71435305,4.18635294 C2.13810983,4.19388235 2.402074,2.68047059 2.46617959,2.13835294 C3.00164978,2.26635294 4.5100165,2.54870588 3.95569173,4.02070588 C3.92929531,4.09223529 3.89912798,4.13741176 3.87273156,4.15623529 Z M7.99434362,2.92517647 C7.95663446,2.92517647 7.88121612,2.89129412 7.80579778,2.84988235 C6.15036531,1.792 7.53052086,0.489411765 7.99434362,0 C8.46193731,0.489411765 9.84209286,1.78823529 8.18288947,2.84988235 C8.0999293,2.90258824 8.03205279,2.92517647 7.99434362,2.92517647 Z M10.1588499,3.712 C10.0834315,3.72329412 10.0117841,3.73082353 9.97784586,3.71952941 C9.94767853,3.70823529 9.90242753,3.66682353 9.84963469,3.59529412 C8.84657082,2.14588235 10.4152722,1.43058824 10.9620551,1.14447059 C11.1807683,1.72047059 11.8708461,3.29411765 10.1588499,3.712 Z M6.02215414,3.71952941 C5.98821588,3.73458824 5.91656847,3.72705882 5.84115013,3.712 C4.1291539,3.29411765 4.82300259,1.72047059 5.03794485,1.14070588 C5.58472779,1.42682353 7.15342918,2.14211765 6.15036531,3.59152941 C6.10134339,3.66682353 6.05609239,3.70823529 6.02215414,3.71952941 Z M7.85104879,5.78258824 C6.55385341,4.89411765 7.63233561,3.79858824 7.99811454,3.38823529 C8.36389347,3.79858824 9.44237568,4.89411765 8.1451803,5.78258824 C8.08107471,5.82776471 8.02828188,5.84658824 7.99811454,5.84658824 C7.96794721,5.84658824 7.91138346,5.81647059 7.85104879,5.78258824 Z M9.9401367,6.71623529 C9.84586378,6.70870588 9.75536177,6.69364706 9.72142352,6.67105882 C9.68371435,6.64847059 9.63846335,6.58823529 9.60075418,6.49035294 C8.74475607,4.54023529 10.7697384,4.19764706 11.4862126,4.03576471 C11.6106528,4.75482353 12.0707047,6.75764706 9.9401367,6.71623529 Z M7.99434362,8.68517647 C7.96417629,8.68517647 7.90761254,8.65505882 7.84727787,8.62117647 C6.55008249,7.72894118 7.63233561,6.63717647 7.99434362,6.22682353 C8.36012255,6.63717647 9.43860476,7.72894118 8.14140938,8.62117647 C8.07730379,8.66635294 8.02451096,8.68517647 7.99434362,8.68517647 Z M6.2823474,6.67105882 C6.24463823,6.69364706 6.15790714,6.70870588 6.06363422,6.71623529 C3.93306623,6.75764706 4.39311808,4.75858824 4.52132925,4.03576471 C5.23780344,4.19764706 7.26278576,4.54023529 6.40678765,6.49035294 C6.36153665,6.58823529 6.31628565,6.64847059 6.2823474,6.67105882 Z\" fill=\"#ffffff\"/> </svg>",
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
{
|
|
292
292
|
"name": "list_categories",
|
|
293
293
|
"displayName": "List Categories",
|
|
294
|
-
"description": "List
|
|
294
|
+
"description": "List category groups and categories in the active YNAB plan. Returns budgeted amounts, activity, and available balances for the current month. Hidden and deleted categories are excluded by default — pass include_hidden=true to also see hidden categories (useful for editing budgets on hidden categories).",
|
|
295
295
|
"summary": "List budget categories with balances",
|
|
296
296
|
"icon": "tags",
|
|
297
297
|
"group": "Categories",
|
|
@@ -420,6 +420,723 @@
|
|
|
420
420
|
"additionalProperties": false
|
|
421
421
|
}
|
|
422
422
|
},
|
|
423
|
+
{
|
|
424
|
+
"name": "create_category",
|
|
425
|
+
"displayName": "Create Category",
|
|
426
|
+
"description": "Create a new category in an existing category group. Optionally set an initial goal: \"set_aside\" (set aside X per cadence), \"refill\" (refill the balance up to X per cadence), \"target_balance\" (have a balance of X), or \"target_by_date\" (have a balance of X by a specific date). NEED-style goals (set_aside, refill) accept weekly/monthly/yearly cadence. Debt goals are not supported for new categories — they only apply to existing debt-account categories.",
|
|
427
|
+
"summary": "Create a new budget category",
|
|
428
|
+
"icon": "plus",
|
|
429
|
+
"group": "Categories",
|
|
430
|
+
"input_schema": {
|
|
431
|
+
"type": "object",
|
|
432
|
+
"properties": {
|
|
433
|
+
"group_id": {
|
|
434
|
+
"type": "string",
|
|
435
|
+
"minLength": 1,
|
|
436
|
+
"description": "Category group ID to create the category in"
|
|
437
|
+
},
|
|
438
|
+
"name": {
|
|
439
|
+
"type": "string",
|
|
440
|
+
"minLength": 1,
|
|
441
|
+
"description": "Name of the new category"
|
|
442
|
+
},
|
|
443
|
+
"goal": {
|
|
444
|
+
"description": "Optional initial goal for the category",
|
|
445
|
+
"oneOf": [
|
|
446
|
+
{
|
|
447
|
+
"type": "object",
|
|
448
|
+
"properties": {
|
|
449
|
+
"type": {
|
|
450
|
+
"type": "string",
|
|
451
|
+
"const": "set_aside"
|
|
452
|
+
},
|
|
453
|
+
"target": {
|
|
454
|
+
"type": "number",
|
|
455
|
+
"exclusiveMinimum": 0,
|
|
456
|
+
"description": "Goal amount in currency units (e.g. 50 for $50)"
|
|
457
|
+
},
|
|
458
|
+
"cadence": {
|
|
459
|
+
"description": "How often the goal recurs. Defaults to monthly.",
|
|
460
|
+
"type": "string",
|
|
461
|
+
"enum": [
|
|
462
|
+
"weekly",
|
|
463
|
+
"monthly",
|
|
464
|
+
"yearly"
|
|
465
|
+
]
|
|
466
|
+
},
|
|
467
|
+
"every": {
|
|
468
|
+
"description": "Multiplier on cadence (e.g. cadence=monthly + every=5 means every 5 months). Defaults to 1.",
|
|
469
|
+
"type": "integer",
|
|
470
|
+
"minimum": 1,
|
|
471
|
+
"maximum": 9007199254740991
|
|
472
|
+
},
|
|
473
|
+
"day": {
|
|
474
|
+
"description": "Day-of-week (0=Sunday, 6=Saturday) for weekly cadence, or day-of-month (1-31) for monthly cadence.",
|
|
475
|
+
"type": "integer",
|
|
476
|
+
"minimum": 0,
|
|
477
|
+
"maximum": 31
|
|
478
|
+
},
|
|
479
|
+
"start_date": {
|
|
480
|
+
"description": "First occurrence date (YYYY-MM-DD). Required for yearly cadence; optional for others.",
|
|
481
|
+
"type": "string",
|
|
482
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"required": [
|
|
486
|
+
"type",
|
|
487
|
+
"target"
|
|
488
|
+
],
|
|
489
|
+
"additionalProperties": false
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "object",
|
|
493
|
+
"properties": {
|
|
494
|
+
"type": {
|
|
495
|
+
"type": "string",
|
|
496
|
+
"const": "refill"
|
|
497
|
+
},
|
|
498
|
+
"target": {
|
|
499
|
+
"type": "number",
|
|
500
|
+
"exclusiveMinimum": 0,
|
|
501
|
+
"description": "Goal amount in currency units (e.g. 50 for $50)"
|
|
502
|
+
},
|
|
503
|
+
"cadence": {
|
|
504
|
+
"description": "How often the goal recurs. Defaults to monthly.",
|
|
505
|
+
"type": "string",
|
|
506
|
+
"enum": [
|
|
507
|
+
"weekly",
|
|
508
|
+
"monthly",
|
|
509
|
+
"yearly"
|
|
510
|
+
]
|
|
511
|
+
},
|
|
512
|
+
"every": {
|
|
513
|
+
"description": "Multiplier on cadence (e.g. cadence=monthly + every=5 means every 5 months). Defaults to 1.",
|
|
514
|
+
"type": "integer",
|
|
515
|
+
"minimum": 1,
|
|
516
|
+
"maximum": 9007199254740991
|
|
517
|
+
},
|
|
518
|
+
"day": {
|
|
519
|
+
"description": "Day-of-week (0=Sunday, 6=Saturday) for weekly cadence, or day-of-month (1-31) for monthly cadence.",
|
|
520
|
+
"type": "integer",
|
|
521
|
+
"minimum": 0,
|
|
522
|
+
"maximum": 31
|
|
523
|
+
},
|
|
524
|
+
"start_date": {
|
|
525
|
+
"description": "First occurrence date (YYYY-MM-DD). Required for yearly cadence; optional for others.",
|
|
526
|
+
"type": "string",
|
|
527
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
"required": [
|
|
531
|
+
"type",
|
|
532
|
+
"target"
|
|
533
|
+
],
|
|
534
|
+
"additionalProperties": false
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"type": "object",
|
|
538
|
+
"properties": {
|
|
539
|
+
"type": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"const": "target_balance"
|
|
542
|
+
},
|
|
543
|
+
"target": {
|
|
544
|
+
"type": "number",
|
|
545
|
+
"exclusiveMinimum": 0,
|
|
546
|
+
"description": "Balance to maintain in currency units"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"required": [
|
|
550
|
+
"type",
|
|
551
|
+
"target"
|
|
552
|
+
],
|
|
553
|
+
"additionalProperties": false
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "object",
|
|
557
|
+
"properties": {
|
|
558
|
+
"type": {
|
|
559
|
+
"type": "string",
|
|
560
|
+
"const": "target_by_date"
|
|
561
|
+
},
|
|
562
|
+
"target": {
|
|
563
|
+
"type": "number",
|
|
564
|
+
"exclusiveMinimum": 0,
|
|
565
|
+
"description": "Target balance to have by the given date in currency units"
|
|
566
|
+
},
|
|
567
|
+
"date": {
|
|
568
|
+
"type": "string",
|
|
569
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
570
|
+
"description": "Target date YYYY-MM-DD"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"required": [
|
|
574
|
+
"type",
|
|
575
|
+
"target",
|
|
576
|
+
"date"
|
|
577
|
+
],
|
|
578
|
+
"additionalProperties": false
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"type": "object",
|
|
582
|
+
"properties": {
|
|
583
|
+
"type": {
|
|
584
|
+
"type": "string",
|
|
585
|
+
"const": "debt"
|
|
586
|
+
},
|
|
587
|
+
"target": {
|
|
588
|
+
"type": "number",
|
|
589
|
+
"exclusiveMinimum": 0,
|
|
590
|
+
"description": "Monthly payment amount in currency units"
|
|
591
|
+
},
|
|
592
|
+
"day": {
|
|
593
|
+
"description": "Day of month the payment is due (1-31). Defaults to 1.",
|
|
594
|
+
"type": "integer",
|
|
595
|
+
"minimum": 1,
|
|
596
|
+
"maximum": 31
|
|
597
|
+
}
|
|
598
|
+
},
|
|
599
|
+
"required": [
|
|
600
|
+
"type",
|
|
601
|
+
"target"
|
|
602
|
+
],
|
|
603
|
+
"additionalProperties": false
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"type": "object",
|
|
607
|
+
"properties": {
|
|
608
|
+
"type": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"const": "none"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"required": [
|
|
614
|
+
"type"
|
|
615
|
+
],
|
|
616
|
+
"additionalProperties": false
|
|
617
|
+
}
|
|
618
|
+
]
|
|
619
|
+
},
|
|
620
|
+
"note": {
|
|
621
|
+
"description": "Optional note for the category",
|
|
622
|
+
"type": "string"
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
"required": [
|
|
626
|
+
"group_id",
|
|
627
|
+
"name"
|
|
628
|
+
],
|
|
629
|
+
"additionalProperties": false
|
|
630
|
+
},
|
|
631
|
+
"output_schema": {
|
|
632
|
+
"type": "object",
|
|
633
|
+
"properties": {
|
|
634
|
+
"category": {
|
|
635
|
+
"type": "object",
|
|
636
|
+
"properties": {
|
|
637
|
+
"id": {
|
|
638
|
+
"type": "string",
|
|
639
|
+
"description": "Category ID"
|
|
640
|
+
},
|
|
641
|
+
"category_group_id": {
|
|
642
|
+
"type": "string",
|
|
643
|
+
"description": "Parent category group ID"
|
|
644
|
+
},
|
|
645
|
+
"name": {
|
|
646
|
+
"type": "string",
|
|
647
|
+
"description": "Category name"
|
|
648
|
+
},
|
|
649
|
+
"hidden": {
|
|
650
|
+
"type": "boolean",
|
|
651
|
+
"description": "Whether the category is hidden"
|
|
652
|
+
},
|
|
653
|
+
"budgeted": {
|
|
654
|
+
"type": "string",
|
|
655
|
+
"description": "Amount budgeted this month as currency string"
|
|
656
|
+
},
|
|
657
|
+
"activity": {
|
|
658
|
+
"type": "string",
|
|
659
|
+
"description": "Spending activity this month as currency string"
|
|
660
|
+
},
|
|
661
|
+
"balance": {
|
|
662
|
+
"type": "string",
|
|
663
|
+
"description": "Available balance as currency string"
|
|
664
|
+
},
|
|
665
|
+
"budgeted_milliunits": {
|
|
666
|
+
"type": "number",
|
|
667
|
+
"description": "Amount budgeted in milliunits"
|
|
668
|
+
},
|
|
669
|
+
"activity_milliunits": {
|
|
670
|
+
"type": "number",
|
|
671
|
+
"description": "Activity in milliunits"
|
|
672
|
+
},
|
|
673
|
+
"balance_milliunits": {
|
|
674
|
+
"type": "number",
|
|
675
|
+
"description": "Balance in milliunits"
|
|
676
|
+
},
|
|
677
|
+
"goal_type": {
|
|
678
|
+
"type": "string",
|
|
679
|
+
"description": "Goal type (TB, TBD, MF, NEED, DEBT, or empty if none)"
|
|
680
|
+
},
|
|
681
|
+
"goal_target": {
|
|
682
|
+
"type": "string",
|
|
683
|
+
"description": "Goal target amount as currency string"
|
|
684
|
+
},
|
|
685
|
+
"goal_percentage_complete": {
|
|
686
|
+
"type": "number",
|
|
687
|
+
"description": "Goal completion percentage (0-100)"
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"required": [
|
|
691
|
+
"id",
|
|
692
|
+
"category_group_id",
|
|
693
|
+
"name",
|
|
694
|
+
"hidden",
|
|
695
|
+
"budgeted",
|
|
696
|
+
"activity",
|
|
697
|
+
"balance",
|
|
698
|
+
"budgeted_milliunits",
|
|
699
|
+
"activity_milliunits",
|
|
700
|
+
"balance_milliunits",
|
|
701
|
+
"goal_type",
|
|
702
|
+
"goal_target",
|
|
703
|
+
"goal_percentage_complete"
|
|
704
|
+
],
|
|
705
|
+
"additionalProperties": false
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"required": [
|
|
709
|
+
"category"
|
|
710
|
+
],
|
|
711
|
+
"additionalProperties": false
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "update_category",
|
|
716
|
+
"displayName": "Update Category",
|
|
717
|
+
"description": "Rename a category, change its group, set/clear its goal, or hide/unhide it. Only specified fields change; omitted fields remain unchanged. Goal types: \"set_aside\" / \"refill\" (recurring NEED with optional cadence), \"target_balance\" (have $X), \"target_by_date\" (have $X by date), \"debt\" (recurring debt payment), or \"none\" to clear an existing goal.",
|
|
718
|
+
"summary": "Update a category",
|
|
719
|
+
"icon": "pencil",
|
|
720
|
+
"group": "Categories",
|
|
721
|
+
"input_schema": {
|
|
722
|
+
"type": "object",
|
|
723
|
+
"properties": {
|
|
724
|
+
"category_id": {
|
|
725
|
+
"type": "string",
|
|
726
|
+
"minLength": 1,
|
|
727
|
+
"description": "Category ID to update"
|
|
728
|
+
},
|
|
729
|
+
"name": {
|
|
730
|
+
"description": "New name",
|
|
731
|
+
"type": "string",
|
|
732
|
+
"minLength": 1
|
|
733
|
+
},
|
|
734
|
+
"group_id": {
|
|
735
|
+
"description": "New parent category group ID (to move the category)",
|
|
736
|
+
"type": "string",
|
|
737
|
+
"minLength": 1
|
|
738
|
+
},
|
|
739
|
+
"goal": {
|
|
740
|
+
"description": "New goal definition. Pass { type: \"none\" } to clear the goal.",
|
|
741
|
+
"oneOf": [
|
|
742
|
+
{
|
|
743
|
+
"type": "object",
|
|
744
|
+
"properties": {
|
|
745
|
+
"type": {
|
|
746
|
+
"type": "string",
|
|
747
|
+
"const": "set_aside"
|
|
748
|
+
},
|
|
749
|
+
"target": {
|
|
750
|
+
"type": "number",
|
|
751
|
+
"exclusiveMinimum": 0,
|
|
752
|
+
"description": "Goal amount in currency units (e.g. 50 for $50)"
|
|
753
|
+
},
|
|
754
|
+
"cadence": {
|
|
755
|
+
"description": "How often the goal recurs. Defaults to monthly.",
|
|
756
|
+
"type": "string",
|
|
757
|
+
"enum": [
|
|
758
|
+
"weekly",
|
|
759
|
+
"monthly",
|
|
760
|
+
"yearly"
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
"every": {
|
|
764
|
+
"description": "Multiplier on cadence (e.g. cadence=monthly + every=5 means every 5 months). Defaults to 1.",
|
|
765
|
+
"type": "integer",
|
|
766
|
+
"minimum": 1,
|
|
767
|
+
"maximum": 9007199254740991
|
|
768
|
+
},
|
|
769
|
+
"day": {
|
|
770
|
+
"description": "Day-of-week (0=Sunday, 6=Saturday) for weekly cadence, or day-of-month (1-31) for monthly cadence.",
|
|
771
|
+
"type": "integer",
|
|
772
|
+
"minimum": 0,
|
|
773
|
+
"maximum": 31
|
|
774
|
+
},
|
|
775
|
+
"start_date": {
|
|
776
|
+
"description": "First occurrence date (YYYY-MM-DD). Required for yearly cadence; optional for others.",
|
|
777
|
+
"type": "string",
|
|
778
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"required": [
|
|
782
|
+
"type",
|
|
783
|
+
"target"
|
|
784
|
+
],
|
|
785
|
+
"additionalProperties": false
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"type": "object",
|
|
789
|
+
"properties": {
|
|
790
|
+
"type": {
|
|
791
|
+
"type": "string",
|
|
792
|
+
"const": "refill"
|
|
793
|
+
},
|
|
794
|
+
"target": {
|
|
795
|
+
"type": "number",
|
|
796
|
+
"exclusiveMinimum": 0,
|
|
797
|
+
"description": "Goal amount in currency units (e.g. 50 for $50)"
|
|
798
|
+
},
|
|
799
|
+
"cadence": {
|
|
800
|
+
"description": "How often the goal recurs. Defaults to monthly.",
|
|
801
|
+
"type": "string",
|
|
802
|
+
"enum": [
|
|
803
|
+
"weekly",
|
|
804
|
+
"monthly",
|
|
805
|
+
"yearly"
|
|
806
|
+
]
|
|
807
|
+
},
|
|
808
|
+
"every": {
|
|
809
|
+
"description": "Multiplier on cadence (e.g. cadence=monthly + every=5 means every 5 months). Defaults to 1.",
|
|
810
|
+
"type": "integer",
|
|
811
|
+
"minimum": 1,
|
|
812
|
+
"maximum": 9007199254740991
|
|
813
|
+
},
|
|
814
|
+
"day": {
|
|
815
|
+
"description": "Day-of-week (0=Sunday, 6=Saturday) for weekly cadence, or day-of-month (1-31) for monthly cadence.",
|
|
816
|
+
"type": "integer",
|
|
817
|
+
"minimum": 0,
|
|
818
|
+
"maximum": 31
|
|
819
|
+
},
|
|
820
|
+
"start_date": {
|
|
821
|
+
"description": "First occurrence date (YYYY-MM-DD). Required for yearly cadence; optional for others.",
|
|
822
|
+
"type": "string",
|
|
823
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"required": [
|
|
827
|
+
"type",
|
|
828
|
+
"target"
|
|
829
|
+
],
|
|
830
|
+
"additionalProperties": false
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"type": "object",
|
|
834
|
+
"properties": {
|
|
835
|
+
"type": {
|
|
836
|
+
"type": "string",
|
|
837
|
+
"const": "target_balance"
|
|
838
|
+
},
|
|
839
|
+
"target": {
|
|
840
|
+
"type": "number",
|
|
841
|
+
"exclusiveMinimum": 0,
|
|
842
|
+
"description": "Balance to maintain in currency units"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
845
|
+
"required": [
|
|
846
|
+
"type",
|
|
847
|
+
"target"
|
|
848
|
+
],
|
|
849
|
+
"additionalProperties": false
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"type": "object",
|
|
853
|
+
"properties": {
|
|
854
|
+
"type": {
|
|
855
|
+
"type": "string",
|
|
856
|
+
"const": "target_by_date"
|
|
857
|
+
},
|
|
858
|
+
"target": {
|
|
859
|
+
"type": "number",
|
|
860
|
+
"exclusiveMinimum": 0,
|
|
861
|
+
"description": "Target balance to have by the given date in currency units"
|
|
862
|
+
},
|
|
863
|
+
"date": {
|
|
864
|
+
"type": "string",
|
|
865
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
866
|
+
"description": "Target date YYYY-MM-DD"
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
"required": [
|
|
870
|
+
"type",
|
|
871
|
+
"target",
|
|
872
|
+
"date"
|
|
873
|
+
],
|
|
874
|
+
"additionalProperties": false
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"type": "object",
|
|
878
|
+
"properties": {
|
|
879
|
+
"type": {
|
|
880
|
+
"type": "string",
|
|
881
|
+
"const": "debt"
|
|
882
|
+
},
|
|
883
|
+
"target": {
|
|
884
|
+
"type": "number",
|
|
885
|
+
"exclusiveMinimum": 0,
|
|
886
|
+
"description": "Monthly payment amount in currency units"
|
|
887
|
+
},
|
|
888
|
+
"day": {
|
|
889
|
+
"description": "Day of month the payment is due (1-31). Defaults to 1.",
|
|
890
|
+
"type": "integer",
|
|
891
|
+
"minimum": 1,
|
|
892
|
+
"maximum": 31
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"required": [
|
|
896
|
+
"type",
|
|
897
|
+
"target"
|
|
898
|
+
],
|
|
899
|
+
"additionalProperties": false
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"type": "object",
|
|
903
|
+
"properties": {
|
|
904
|
+
"type": {
|
|
905
|
+
"type": "string",
|
|
906
|
+
"const": "none"
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
"required": [
|
|
910
|
+
"type"
|
|
911
|
+
],
|
|
912
|
+
"additionalProperties": false
|
|
913
|
+
}
|
|
914
|
+
]
|
|
915
|
+
},
|
|
916
|
+
"hidden": {
|
|
917
|
+
"description": "Hide or unhide the category",
|
|
918
|
+
"type": "boolean"
|
|
919
|
+
},
|
|
920
|
+
"note": {
|
|
921
|
+
"description": "New note (pass empty string to clear)",
|
|
922
|
+
"type": "string"
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
"required": [
|
|
926
|
+
"category_id"
|
|
927
|
+
],
|
|
928
|
+
"additionalProperties": false
|
|
929
|
+
},
|
|
930
|
+
"output_schema": {
|
|
931
|
+
"type": "object",
|
|
932
|
+
"properties": {
|
|
933
|
+
"category": {
|
|
934
|
+
"type": "object",
|
|
935
|
+
"properties": {
|
|
936
|
+
"id": {
|
|
937
|
+
"type": "string",
|
|
938
|
+
"description": "Category ID"
|
|
939
|
+
},
|
|
940
|
+
"category_group_id": {
|
|
941
|
+
"type": "string",
|
|
942
|
+
"description": "Parent category group ID"
|
|
943
|
+
},
|
|
944
|
+
"name": {
|
|
945
|
+
"type": "string",
|
|
946
|
+
"description": "Category name"
|
|
947
|
+
},
|
|
948
|
+
"hidden": {
|
|
949
|
+
"type": "boolean",
|
|
950
|
+
"description": "Whether the category is hidden"
|
|
951
|
+
},
|
|
952
|
+
"budgeted": {
|
|
953
|
+
"type": "string",
|
|
954
|
+
"description": "Amount budgeted this month as currency string"
|
|
955
|
+
},
|
|
956
|
+
"activity": {
|
|
957
|
+
"type": "string",
|
|
958
|
+
"description": "Spending activity this month as currency string"
|
|
959
|
+
},
|
|
960
|
+
"balance": {
|
|
961
|
+
"type": "string",
|
|
962
|
+
"description": "Available balance as currency string"
|
|
963
|
+
},
|
|
964
|
+
"budgeted_milliunits": {
|
|
965
|
+
"type": "number",
|
|
966
|
+
"description": "Amount budgeted in milliunits"
|
|
967
|
+
},
|
|
968
|
+
"activity_milliunits": {
|
|
969
|
+
"type": "number",
|
|
970
|
+
"description": "Activity in milliunits"
|
|
971
|
+
},
|
|
972
|
+
"balance_milliunits": {
|
|
973
|
+
"type": "number",
|
|
974
|
+
"description": "Balance in milliunits"
|
|
975
|
+
},
|
|
976
|
+
"goal_type": {
|
|
977
|
+
"type": "string",
|
|
978
|
+
"description": "Goal type (TB, TBD, MF, NEED, DEBT, or empty if none)"
|
|
979
|
+
},
|
|
980
|
+
"goal_target": {
|
|
981
|
+
"type": "string",
|
|
982
|
+
"description": "Goal target amount as currency string"
|
|
983
|
+
},
|
|
984
|
+
"goal_percentage_complete": {
|
|
985
|
+
"type": "number",
|
|
986
|
+
"description": "Goal completion percentage (0-100)"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"required": [
|
|
990
|
+
"id",
|
|
991
|
+
"category_group_id",
|
|
992
|
+
"name",
|
|
993
|
+
"hidden",
|
|
994
|
+
"budgeted",
|
|
995
|
+
"activity",
|
|
996
|
+
"balance",
|
|
997
|
+
"budgeted_milliunits",
|
|
998
|
+
"activity_milliunits",
|
|
999
|
+
"balance_milliunits",
|
|
1000
|
+
"goal_type",
|
|
1001
|
+
"goal_target",
|
|
1002
|
+
"goal_percentage_complete"
|
|
1003
|
+
],
|
|
1004
|
+
"additionalProperties": false
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
"required": [
|
|
1008
|
+
"category"
|
|
1009
|
+
],
|
|
1010
|
+
"additionalProperties": false
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"name": "delete_category",
|
|
1015
|
+
"displayName": "Delete Category",
|
|
1016
|
+
"description": "Delete a category from the active YNAB plan. This is a soft delete (tombstone). Existing transactions assigned to this category remain in place but the category will no longer appear in budget views.",
|
|
1017
|
+
"summary": "Delete a category",
|
|
1018
|
+
"icon": "trash-2",
|
|
1019
|
+
"group": "Categories",
|
|
1020
|
+
"input_schema": {
|
|
1021
|
+
"type": "object",
|
|
1022
|
+
"properties": {
|
|
1023
|
+
"category_id": {
|
|
1024
|
+
"type": "string",
|
|
1025
|
+
"minLength": 1,
|
|
1026
|
+
"description": "Category ID to delete"
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"required": [
|
|
1030
|
+
"category_id"
|
|
1031
|
+
],
|
|
1032
|
+
"additionalProperties": false
|
|
1033
|
+
},
|
|
1034
|
+
"output_schema": {
|
|
1035
|
+
"type": "object",
|
|
1036
|
+
"properties": {
|
|
1037
|
+
"success": {
|
|
1038
|
+
"type": "boolean"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"required": [
|
|
1042
|
+
"success"
|
|
1043
|
+
],
|
|
1044
|
+
"additionalProperties": false
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"name": "create_category_group",
|
|
1049
|
+
"displayName": "Create Category Group",
|
|
1050
|
+
"description": "Create a new category group in the active YNAB plan.",
|
|
1051
|
+
"summary": "Create a category group",
|
|
1052
|
+
"icon": "folder-plus",
|
|
1053
|
+
"group": "Categories",
|
|
1054
|
+
"input_schema": {
|
|
1055
|
+
"type": "object",
|
|
1056
|
+
"properties": {
|
|
1057
|
+
"name": {
|
|
1058
|
+
"type": "string",
|
|
1059
|
+
"minLength": 1,
|
|
1060
|
+
"description": "Name of the new category group"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
"required": [
|
|
1064
|
+
"name"
|
|
1065
|
+
],
|
|
1066
|
+
"additionalProperties": false
|
|
1067
|
+
},
|
|
1068
|
+
"output_schema": {
|
|
1069
|
+
"type": "object",
|
|
1070
|
+
"properties": {
|
|
1071
|
+
"group": {
|
|
1072
|
+
"type": "object",
|
|
1073
|
+
"properties": {
|
|
1074
|
+
"id": {
|
|
1075
|
+
"type": "string",
|
|
1076
|
+
"description": "Category group ID"
|
|
1077
|
+
},
|
|
1078
|
+
"name": {
|
|
1079
|
+
"type": "string",
|
|
1080
|
+
"description": "Category group name"
|
|
1081
|
+
},
|
|
1082
|
+
"hidden": {
|
|
1083
|
+
"type": "boolean",
|
|
1084
|
+
"description": "Whether the group is hidden"
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
"required": [
|
|
1088
|
+
"id",
|
|
1089
|
+
"name",
|
|
1090
|
+
"hidden"
|
|
1091
|
+
],
|
|
1092
|
+
"additionalProperties": false
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"required": [
|
|
1096
|
+
"group"
|
|
1097
|
+
],
|
|
1098
|
+
"additionalProperties": false
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"name": "delete_category_group",
|
|
1103
|
+
"displayName": "Delete Category Group",
|
|
1104
|
+
"description": "Delete a category group and all of its child categories from the active YNAB plan. This is a soft delete (tombstone). Internal/non-deletable groups (Credit Card Payments, Hidden Categories, Internal Master Category) cannot be deleted.",
|
|
1105
|
+
"summary": "Delete a category group and its children",
|
|
1106
|
+
"icon": "folder-x",
|
|
1107
|
+
"group": "Categories",
|
|
1108
|
+
"input_schema": {
|
|
1109
|
+
"type": "object",
|
|
1110
|
+
"properties": {
|
|
1111
|
+
"group_id": {
|
|
1112
|
+
"type": "string",
|
|
1113
|
+
"minLength": 1,
|
|
1114
|
+
"description": "Category group ID to delete"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"required": [
|
|
1118
|
+
"group_id"
|
|
1119
|
+
],
|
|
1120
|
+
"additionalProperties": false
|
|
1121
|
+
},
|
|
1122
|
+
"output_schema": {
|
|
1123
|
+
"type": "object",
|
|
1124
|
+
"properties": {
|
|
1125
|
+
"success": {
|
|
1126
|
+
"type": "boolean"
|
|
1127
|
+
},
|
|
1128
|
+
"deleted_category_count": {
|
|
1129
|
+
"type": "number",
|
|
1130
|
+
"description": "Number of child categories that were also tombstoned"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"required": [
|
|
1134
|
+
"success",
|
|
1135
|
+
"deleted_category_count"
|
|
1136
|
+
],
|
|
1137
|
+
"additionalProperties": false
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
423
1140
|
{
|
|
424
1141
|
"name": "update_category_budget",
|
|
425
1142
|
"displayName": "Update Category Budget",
|
|
@@ -437,7 +1154,7 @@
|
|
|
437
1154
|
},
|
|
438
1155
|
"month": {
|
|
439
1156
|
"type": "string",
|
|
440
|
-
"
|
|
1157
|
+
"pattern": "^\\d{4}-\\d{2}(-\\d{2})?$",
|
|
441
1158
|
"description": "Month in YYYY-MM format (e.g. 2026-03)"
|
|
442
1159
|
},
|
|
443
1160
|
"budgeted": {
|
|
@@ -535,6 +1252,184 @@
|
|
|
535
1252
|
"additionalProperties": false
|
|
536
1253
|
}
|
|
537
1254
|
},
|
|
1255
|
+
{
|
|
1256
|
+
"name": "move_category_budget",
|
|
1257
|
+
"displayName": "Move Category Budget",
|
|
1258
|
+
"description": "Move budgeted money between categories or to/from Ready to Assign for a specific month. Omit from_category_id to move money out of Ready to Assign; omit to_category_id to move money back to Ready to Assign. Both null is invalid.",
|
|
1259
|
+
"summary": "Move money between budget categories",
|
|
1260
|
+
"icon": "arrow-left-right",
|
|
1261
|
+
"group": "Categories",
|
|
1262
|
+
"input_schema": {
|
|
1263
|
+
"type": "object",
|
|
1264
|
+
"properties": {
|
|
1265
|
+
"month": {
|
|
1266
|
+
"type": "string",
|
|
1267
|
+
"pattern": "^\\d{4}-\\d{2}(-\\d{2})?$",
|
|
1268
|
+
"description": "Month in YYYY-MM format (e.g. 2026-03)"
|
|
1269
|
+
},
|
|
1270
|
+
"amount": {
|
|
1271
|
+
"type": "number",
|
|
1272
|
+
"exclusiveMinimum": 0,
|
|
1273
|
+
"description": "Amount to move in currency units (e.g. 50 for $50)"
|
|
1274
|
+
},
|
|
1275
|
+
"from_category_id": {
|
|
1276
|
+
"description": "Source category ID. Omit to move from Ready to Assign.",
|
|
1277
|
+
"type": "string"
|
|
1278
|
+
},
|
|
1279
|
+
"to_category_id": {
|
|
1280
|
+
"description": "Destination category ID. Omit to move to Ready to Assign.",
|
|
1281
|
+
"type": "string"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
"required": [
|
|
1285
|
+
"month",
|
|
1286
|
+
"amount"
|
|
1287
|
+
],
|
|
1288
|
+
"additionalProperties": false
|
|
1289
|
+
},
|
|
1290
|
+
"output_schema": {
|
|
1291
|
+
"type": "object",
|
|
1292
|
+
"properties": {
|
|
1293
|
+
"categories": {
|
|
1294
|
+
"type": "array",
|
|
1295
|
+
"items": {
|
|
1296
|
+
"type": "object",
|
|
1297
|
+
"properties": {
|
|
1298
|
+
"id": {
|
|
1299
|
+
"type": "string",
|
|
1300
|
+
"description": "Category ID"
|
|
1301
|
+
},
|
|
1302
|
+
"category_group_id": {
|
|
1303
|
+
"type": "string",
|
|
1304
|
+
"description": "Parent category group ID"
|
|
1305
|
+
},
|
|
1306
|
+
"name": {
|
|
1307
|
+
"type": "string",
|
|
1308
|
+
"description": "Category name"
|
|
1309
|
+
},
|
|
1310
|
+
"hidden": {
|
|
1311
|
+
"type": "boolean",
|
|
1312
|
+
"description": "Whether the category is hidden"
|
|
1313
|
+
},
|
|
1314
|
+
"budgeted": {
|
|
1315
|
+
"type": "string",
|
|
1316
|
+
"description": "Amount budgeted this month as currency string"
|
|
1317
|
+
},
|
|
1318
|
+
"activity": {
|
|
1319
|
+
"type": "string",
|
|
1320
|
+
"description": "Spending activity this month as currency string"
|
|
1321
|
+
},
|
|
1322
|
+
"balance": {
|
|
1323
|
+
"type": "string",
|
|
1324
|
+
"description": "Available balance as currency string"
|
|
1325
|
+
},
|
|
1326
|
+
"budgeted_milliunits": {
|
|
1327
|
+
"type": "number",
|
|
1328
|
+
"description": "Amount budgeted in milliunits"
|
|
1329
|
+
},
|
|
1330
|
+
"activity_milliunits": {
|
|
1331
|
+
"type": "number",
|
|
1332
|
+
"description": "Activity in milliunits"
|
|
1333
|
+
},
|
|
1334
|
+
"balance_milliunits": {
|
|
1335
|
+
"type": "number",
|
|
1336
|
+
"description": "Balance in milliunits"
|
|
1337
|
+
},
|
|
1338
|
+
"goal_type": {
|
|
1339
|
+
"type": "string",
|
|
1340
|
+
"description": "Goal type (TB, TBD, MF, NEED, DEBT, or empty if none)"
|
|
1341
|
+
},
|
|
1342
|
+
"goal_target": {
|
|
1343
|
+
"type": "string",
|
|
1344
|
+
"description": "Goal target amount as currency string"
|
|
1345
|
+
},
|
|
1346
|
+
"goal_percentage_complete": {
|
|
1347
|
+
"type": "number",
|
|
1348
|
+
"description": "Goal completion percentage (0-100)"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"required": [
|
|
1352
|
+
"id",
|
|
1353
|
+
"category_group_id",
|
|
1354
|
+
"name",
|
|
1355
|
+
"hidden",
|
|
1356
|
+
"budgeted",
|
|
1357
|
+
"activity",
|
|
1358
|
+
"balance",
|
|
1359
|
+
"budgeted_milliunits",
|
|
1360
|
+
"activity_milliunits",
|
|
1361
|
+
"balance_milliunits",
|
|
1362
|
+
"goal_type",
|
|
1363
|
+
"goal_target",
|
|
1364
|
+
"goal_percentage_complete"
|
|
1365
|
+
],
|
|
1366
|
+
"additionalProperties": false
|
|
1367
|
+
},
|
|
1368
|
+
"description": "Updated categories (1 if RTA is involved, 2 for category-to-category)"
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
"required": [
|
|
1372
|
+
"categories"
|
|
1373
|
+
],
|
|
1374
|
+
"additionalProperties": false
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"name": "snooze_category_goal",
|
|
1379
|
+
"displayName": "Snooze Category Goal",
|
|
1380
|
+
"description": "Snooze a category goal for a specific month so it does not appear as needing funding for that month. Pass snooze=false to un-snooze.",
|
|
1381
|
+
"summary": "Snooze a category goal for a month",
|
|
1382
|
+
"icon": "bell-off",
|
|
1383
|
+
"group": "Categories",
|
|
1384
|
+
"input_schema": {
|
|
1385
|
+
"type": "object",
|
|
1386
|
+
"properties": {
|
|
1387
|
+
"category_id": {
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"minLength": 1,
|
|
1390
|
+
"description": "Category ID whose goal to snooze"
|
|
1391
|
+
},
|
|
1392
|
+
"month": {
|
|
1393
|
+
"type": "string",
|
|
1394
|
+
"pattern": "^\\d{4}-\\d{2}(-\\d{2})?$",
|
|
1395
|
+
"description": "Month in YYYY-MM format (e.g. 2026-04)"
|
|
1396
|
+
},
|
|
1397
|
+
"snooze": {
|
|
1398
|
+
"description": "true to snooze (default), false to un-snooze",
|
|
1399
|
+
"type": "boolean"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"required": [
|
|
1403
|
+
"category_id",
|
|
1404
|
+
"month"
|
|
1405
|
+
],
|
|
1406
|
+
"additionalProperties": false
|
|
1407
|
+
},
|
|
1408
|
+
"output_schema": {
|
|
1409
|
+
"type": "object",
|
|
1410
|
+
"properties": {
|
|
1411
|
+
"success": {
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
},
|
|
1414
|
+
"snoozed_at": {
|
|
1415
|
+
"anyOf": [
|
|
1416
|
+
{
|
|
1417
|
+
"type": "string"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"type": "null"
|
|
1421
|
+
}
|
|
1422
|
+
],
|
|
1423
|
+
"description": "ISO timestamp the goal was snoozed at, or null if un-snoozed"
|
|
1424
|
+
}
|
|
1425
|
+
},
|
|
1426
|
+
"required": [
|
|
1427
|
+
"success",
|
|
1428
|
+
"snoozed_at"
|
|
1429
|
+
],
|
|
1430
|
+
"additionalProperties": false
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
538
1433
|
{
|
|
539
1434
|
"name": "list_payees",
|
|
540
1435
|
"displayName": "List Payees",
|
|
@@ -601,6 +1496,14 @@
|
|
|
601
1496
|
"since_date": {
|
|
602
1497
|
"description": "Only return transactions on or after this date (YYYY-MM-DD). Omit for all transactions.",
|
|
603
1498
|
"type": "string"
|
|
1499
|
+
},
|
|
1500
|
+
"until_date": {
|
|
1501
|
+
"description": "Only return transactions on or before this date (YYYY-MM-DD). Combine with since_date for a date range.",
|
|
1502
|
+
"type": "string"
|
|
1503
|
+
},
|
|
1504
|
+
"payee_search": {
|
|
1505
|
+
"description": "Case-insensitive substring match against payee_name, imported_payee, and original_imported_payee. Useful for finding all transactions for a merchant without knowing the exact payee ID.",
|
|
1506
|
+
"type": "string"
|
|
604
1507
|
}
|
|
605
1508
|
},
|
|
606
1509
|
"additionalProperties": false
|
|
@@ -645,10 +1548,6 @@
|
|
|
645
1548
|
"type": "string",
|
|
646
1549
|
"description": "Flag color or empty string"
|
|
647
1550
|
},
|
|
648
|
-
"flag_name": {
|
|
649
|
-
"type": "string",
|
|
650
|
-
"description": "Custom flag name or empty string"
|
|
651
|
-
},
|
|
652
1551
|
"account_id": {
|
|
653
1552
|
"type": "string",
|
|
654
1553
|
"description": "Account ID"
|
|
@@ -677,9 +1576,13 @@
|
|
|
677
1576
|
"type": "string",
|
|
678
1577
|
"description": "If a transfer, the destination account ID"
|
|
679
1578
|
},
|
|
680
|
-
"
|
|
1579
|
+
"imported_payee": {
|
|
1580
|
+
"type": "string",
|
|
1581
|
+
"description": "Bank-imported payee name after YNAB cleansing (empty if manually entered)"
|
|
1582
|
+
},
|
|
1583
|
+
"original_imported_payee": {
|
|
681
1584
|
"type": "string",
|
|
682
|
-
"description": "
|
|
1585
|
+
"description": "Raw payee string from the bank feed before any cleansing (empty if manually entered)"
|
|
683
1586
|
},
|
|
684
1587
|
"deleted": {
|
|
685
1588
|
"type": "boolean",
|
|
@@ -695,7 +1598,6 @@
|
|
|
695
1598
|
"cleared",
|
|
696
1599
|
"approved",
|
|
697
1600
|
"flag_color",
|
|
698
|
-
"flag_name",
|
|
699
1601
|
"account_id",
|
|
700
1602
|
"account_name",
|
|
701
1603
|
"payee_id",
|
|
@@ -703,7 +1605,8 @@
|
|
|
703
1605
|
"category_id",
|
|
704
1606
|
"category_name",
|
|
705
1607
|
"transfer_account_id",
|
|
706
|
-
"
|
|
1608
|
+
"imported_payee",
|
|
1609
|
+
"original_imported_payee",
|
|
707
1610
|
"deleted"
|
|
708
1611
|
],
|
|
709
1612
|
"additionalProperties": false
|
|
@@ -776,10 +1679,6 @@
|
|
|
776
1679
|
"type": "string",
|
|
777
1680
|
"description": "Flag color or empty string"
|
|
778
1681
|
},
|
|
779
|
-
"flag_name": {
|
|
780
|
-
"type": "string",
|
|
781
|
-
"description": "Custom flag name or empty string"
|
|
782
|
-
},
|
|
783
1682
|
"account_id": {
|
|
784
1683
|
"type": "string",
|
|
785
1684
|
"description": "Account ID"
|
|
@@ -808,9 +1707,13 @@
|
|
|
808
1707
|
"type": "string",
|
|
809
1708
|
"description": "If a transfer, the destination account ID"
|
|
810
1709
|
},
|
|
811
|
-
"
|
|
1710
|
+
"imported_payee": {
|
|
1711
|
+
"type": "string",
|
|
1712
|
+
"description": "Bank-imported payee name after YNAB cleansing (empty if manually entered)"
|
|
1713
|
+
},
|
|
1714
|
+
"original_imported_payee": {
|
|
812
1715
|
"type": "string",
|
|
813
|
-
"description": "
|
|
1716
|
+
"description": "Raw payee string from the bank feed before any cleansing (empty if manually entered)"
|
|
814
1717
|
},
|
|
815
1718
|
"deleted": {
|
|
816
1719
|
"type": "boolean",
|
|
@@ -826,7 +1729,6 @@
|
|
|
826
1729
|
"cleared",
|
|
827
1730
|
"approved",
|
|
828
1731
|
"flag_color",
|
|
829
|
-
"flag_name",
|
|
830
1732
|
"account_id",
|
|
831
1733
|
"account_name",
|
|
832
1734
|
"payee_id",
|
|
@@ -834,7 +1736,8 @@
|
|
|
834
1736
|
"category_id",
|
|
835
1737
|
"category_name",
|
|
836
1738
|
"transfer_account_id",
|
|
837
|
-
"
|
|
1739
|
+
"imported_payee",
|
|
1740
|
+
"original_imported_payee",
|
|
838
1741
|
"deleted"
|
|
839
1742
|
],
|
|
840
1743
|
"additionalProperties": false
|
|
@@ -1025,10 +1928,6 @@
|
|
|
1025
1928
|
"type": "string",
|
|
1026
1929
|
"description": "Flag color or empty string"
|
|
1027
1930
|
},
|
|
1028
|
-
"flag_name": {
|
|
1029
|
-
"type": "string",
|
|
1030
|
-
"description": "Custom flag name or empty string"
|
|
1031
|
-
},
|
|
1032
1931
|
"account_id": {
|
|
1033
1932
|
"type": "string",
|
|
1034
1933
|
"description": "Account ID"
|
|
@@ -1057,9 +1956,13 @@
|
|
|
1057
1956
|
"type": "string",
|
|
1058
1957
|
"description": "If a transfer, the destination account ID"
|
|
1059
1958
|
},
|
|
1060
|
-
"
|
|
1959
|
+
"imported_payee": {
|
|
1960
|
+
"type": "string",
|
|
1961
|
+
"description": "Bank-imported payee name after YNAB cleansing (empty if manually entered)"
|
|
1962
|
+
},
|
|
1963
|
+
"original_imported_payee": {
|
|
1061
1964
|
"type": "string",
|
|
1062
|
-
"description": "
|
|
1965
|
+
"description": "Raw payee string from the bank feed before any cleansing (empty if manually entered)"
|
|
1063
1966
|
},
|
|
1064
1967
|
"deleted": {
|
|
1065
1968
|
"type": "boolean",
|
|
@@ -1075,7 +1978,6 @@
|
|
|
1075
1978
|
"cleared",
|
|
1076
1979
|
"approved",
|
|
1077
1980
|
"flag_color",
|
|
1078
|
-
"flag_name",
|
|
1079
1981
|
"account_id",
|
|
1080
1982
|
"account_name",
|
|
1081
1983
|
"payee_id",
|
|
@@ -1083,7 +1985,8 @@
|
|
|
1083
1985
|
"category_id",
|
|
1084
1986
|
"category_name",
|
|
1085
1987
|
"transfer_account_id",
|
|
1086
|
-
"
|
|
1988
|
+
"imported_payee",
|
|
1989
|
+
"original_imported_payee",
|
|
1087
1990
|
"deleted"
|
|
1088
1991
|
],
|
|
1089
1992
|
"additionalProperties": false
|
|
@@ -1098,7 +2001,7 @@
|
|
|
1098
2001
|
{
|
|
1099
2002
|
"name": "update_transaction",
|
|
1100
2003
|
"displayName": "Update Transaction",
|
|
1101
|
-
"description": "Update an existing transaction in the active YNAB plan. Only specified fields are changed; omitted fields remain unchanged. Amount is in currency units (negative for expenses, positive for income).",
|
|
2004
|
+
"description": "Update an existing transaction in the active YNAB plan. Only specified fields are changed; omitted fields remain unchanged. Amount is in currency units (negative for expenses, positive for income). Transfers and split transactions cannot be updated through this tool — edit them directly in YNAB.",
|
|
1102
2005
|
"summary": "Update a transaction",
|
|
1103
2006
|
"icon": "pencil",
|
|
1104
2007
|
"group": "Transactions",
|
|
@@ -1153,7 +2056,7 @@
|
|
|
1153
2056
|
"type": "boolean"
|
|
1154
2057
|
},
|
|
1155
2058
|
"flag_color": {
|
|
1156
|
-
"description": "New flag color",
|
|
2059
|
+
"description": "New flag color (pass \"none\" to clear)",
|
|
1157
2060
|
"type": "string",
|
|
1158
2061
|
"enum": [
|
|
1159
2062
|
"red",
|
|
@@ -1161,7 +2064,8 @@
|
|
|
1161
2064
|
"yellow",
|
|
1162
2065
|
"green",
|
|
1163
2066
|
"blue",
|
|
1164
|
-
"purple"
|
|
2067
|
+
"purple",
|
|
2068
|
+
"none"
|
|
1165
2069
|
]
|
|
1166
2070
|
}
|
|
1167
2071
|
},
|
|
@@ -1209,10 +2113,6 @@
|
|
|
1209
2113
|
"type": "string",
|
|
1210
2114
|
"description": "Flag color or empty string"
|
|
1211
2115
|
},
|
|
1212
|
-
"flag_name": {
|
|
1213
|
-
"type": "string",
|
|
1214
|
-
"description": "Custom flag name or empty string"
|
|
1215
|
-
},
|
|
1216
2116
|
"account_id": {
|
|
1217
2117
|
"type": "string",
|
|
1218
2118
|
"description": "Account ID"
|
|
@@ -1241,9 +2141,13 @@
|
|
|
1241
2141
|
"type": "string",
|
|
1242
2142
|
"description": "If a transfer, the destination account ID"
|
|
1243
2143
|
},
|
|
1244
|
-
"
|
|
2144
|
+
"imported_payee": {
|
|
1245
2145
|
"type": "string",
|
|
1246
|
-
"description": "
|
|
2146
|
+
"description": "Bank-imported payee name after YNAB cleansing (empty if manually entered)"
|
|
2147
|
+
},
|
|
2148
|
+
"original_imported_payee": {
|
|
2149
|
+
"type": "string",
|
|
2150
|
+
"description": "Raw payee string from the bank feed before any cleansing (empty if manually entered)"
|
|
1247
2151
|
},
|
|
1248
2152
|
"deleted": {
|
|
1249
2153
|
"type": "boolean",
|
|
@@ -1259,7 +2163,6 @@
|
|
|
1259
2163
|
"cleared",
|
|
1260
2164
|
"approved",
|
|
1261
2165
|
"flag_color",
|
|
1262
|
-
"flag_name",
|
|
1263
2166
|
"account_id",
|
|
1264
2167
|
"account_name",
|
|
1265
2168
|
"payee_id",
|
|
@@ -1267,7 +2170,8 @@
|
|
|
1267
2170
|
"category_id",
|
|
1268
2171
|
"category_name",
|
|
1269
2172
|
"transfer_account_id",
|
|
1270
|
-
"
|
|
2173
|
+
"imported_payee",
|
|
2174
|
+
"original_imported_payee",
|
|
1271
2175
|
"deleted"
|
|
1272
2176
|
],
|
|
1273
2177
|
"additionalProperties": false
|
|
@@ -1282,7 +2186,7 @@
|
|
|
1282
2186
|
{
|
|
1283
2187
|
"name": "delete_transaction",
|
|
1284
2188
|
"displayName": "Delete Transaction",
|
|
1285
|
-
"description": "Delete a transaction from the active YNAB plan. This marks the transaction as deleted (soft delete).",
|
|
2189
|
+
"description": "Delete a transaction from the active YNAB plan. This marks the transaction as deleted (soft delete). Transfer transactions cannot be deleted through this tool — delete them directly in YNAB.",
|
|
1286
2190
|
"summary": "Delete a transaction",
|
|
1287
2191
|
"icon": "trash-2",
|
|
1288
2192
|
"group": "Transactions",
|
|
@@ -1486,8 +2390,15 @@
|
|
|
1486
2390
|
"description": "Ready to Assign in milliunits"
|
|
1487
2391
|
},
|
|
1488
2392
|
"age_of_money": {
|
|
1489
|
-
"
|
|
1490
|
-
|
|
2393
|
+
"anyOf": [
|
|
2394
|
+
{
|
|
2395
|
+
"type": "number"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"type": "null"
|
|
2399
|
+
}
|
|
2400
|
+
],
|
|
2401
|
+
"description": "Age of money in days, or null if not yet computed"
|
|
1491
2402
|
}
|
|
1492
2403
|
},
|
|
1493
2404
|
"required": [
|
|
@@ -1527,6 +2438,10 @@
|
|
|
1527
2438
|
"type": "string",
|
|
1528
2439
|
"minLength": 1,
|
|
1529
2440
|
"description": "Month in YYYY-MM-DD format (first of month, e.g. 2026-03-01)"
|
|
2441
|
+
},
|
|
2442
|
+
"include_hidden": {
|
|
2443
|
+
"description": "Include hidden categories (default false)",
|
|
2444
|
+
"type": "boolean"
|
|
1530
2445
|
}
|
|
1531
2446
|
},
|
|
1532
2447
|
"required": [
|
|
@@ -1577,8 +2492,15 @@
|
|
|
1577
2492
|
"description": "Ready to Assign in milliunits"
|
|
1578
2493
|
},
|
|
1579
2494
|
"age_of_money": {
|
|
1580
|
-
"
|
|
1581
|
-
|
|
2495
|
+
"anyOf": [
|
|
2496
|
+
{
|
|
2497
|
+
"type": "number"
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"type": "null"
|
|
2501
|
+
}
|
|
2502
|
+
],
|
|
2503
|
+
"description": "Age of money in days, or null if not yet computed"
|
|
1582
2504
|
}
|
|
1583
2505
|
},
|
|
1584
2506
|
"required": [
|