lunchmoney-python-async 2.19.0__tar.gz → 2.21.0__tar.gz

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.
Files changed (207) hide show
  1. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/PKG-INFO +28 -23
  2. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/README.md +27 -22
  3. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/__init__.py +25 -17
  4. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/__init__.py +1 -0
  5. lunchmoney_python_async-2.21.0/lunchmoney/api/budgets_api.py +887 -0
  6. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/categories_api.py +8 -8
  7. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/manual_accounts_api.py +8 -8
  8. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/me_api.py +2 -2
  9. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/plaid_accounts_api.py +11 -11
  10. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/recurring_items_api.py +14 -14
  11. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/summary_api.py +23 -23
  12. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/tags_api.py +2 -2
  13. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/transactions_api.py +5 -5
  14. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/transactions_bulk_api.py +14 -14
  15. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/transactions_files_api.py +2 -2
  16. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/transactions_group_api.py +2 -2
  17. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api/transactions_split_api.py +2 -2
  18. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api_client.py +3 -3
  19. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/configuration.py +7 -7
  20. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/exceptions.py +2 -2
  21. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/__init__.py +12 -9
  22. lunchmoney_python_async-2.21.0/lunchmoney/models/account_type_enum.py +46 -0
  23. lunchmoney_python_async-2.21.0/lunchmoney/models/budget_invalid_period_error_object.py +107 -0
  24. lunchmoney_python_async-2.21.0/lunchmoney/models/budget_object.py +189 -0
  25. lunchmoney_python_async-2.21.0/lunchmoney/models/budget_settings_response_object.py +115 -0
  26. lunchmoney_python_async-2.21.0/lunchmoney/models/budget_upsert_response_object.py +104 -0
  27. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/category_object.py +7 -7
  28. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/child_category_object.py +12 -7
  29. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/child_transaction_object.py +3 -3
  30. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_category_request_object.py +4 -4
  31. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_category_request_object_children_inner.py +2 -2
  32. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_manual_account_request_object.py +2 -2
  33. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_manual_account_request_object_balance.py +2 -2
  34. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_manual_account_request_object_closed_on.py +2 -2
  35. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_new_transactions_request.py +2 -2
  36. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/create_tag_request_object.py +5 -5
  37. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/currency_enum.py +2 -2
  38. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/delete_category_response_with_dependencies.py +2 -2
  39. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/delete_category_response_with_dependencies_dependents.py +2 -2
  40. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/delete_tag_response_with_dependencies.py +2 -2
  41. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +2 -2
  42. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/delete_transactions_request.py +2 -2
  43. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/error_response_object.py +5 -5
  44. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/error_response_object_errors_inner.py +3 -3
  45. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_categories200_response.py +2 -2
  46. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_manual_accounts200_response.py +2 -2
  47. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_plaid_accounts200_response.py +2 -2
  48. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_recurring200_response.py +2 -2
  49. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_tags200_response.py +2 -2
  50. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_transactions200_response.py +2 -2
  51. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_all_transactions_created_since_parameter.py +2 -2
  52. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_transaction_attachment_url200_response.py +2 -2
  53. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/group_transactions_request.py +2 -2
  54. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/insert_transaction_object.py +3 -3
  55. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/insert_transaction_object_amount.py +2 -2
  56. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/insert_transactions_response_object.py +3 -3
  57. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/manual_account_object.py +2 -2
  58. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/plaid_account_object.py +2 -2
  59. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/recurring_object.py +6 -6
  60. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/recurring_object_matches.py +3 -3
  61. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/recurring_object_matches_found_transactions_inner.py +4 -4
  62. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/recurring_object_overrides.py +3 -3
  63. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/recurring_object_transaction_criteria.py +8 -8
  64. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/skipped_existing_external_id_object.py +3 -3
  65. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/split_transaction_object.py +6 -4
  66. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/split_transaction_object_amount.py +2 -2
  67. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/split_transaction_request.py +2 -2
  68. lunchmoney_python_async-2.21.0/lunchmoney/models/summary_category_object.py +110 -0
  69. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_category_occurrence_object.py +9 -9
  70. lunchmoney_python_async-2.21.0/lunchmoney/models/summary_category_totals_object.py +108 -0
  71. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_recurring_transaction_object.py +2 -2
  72. lunchmoney_python_async-2.21.0/lunchmoney/models/summary_response_object.py +110 -0
  73. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_rollover_pool_adjustment_object.py +5 -5
  74. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_rollover_pool_object.py +2 -2
  75. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_totals_breakdown_object.py +5 -3
  76. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/summary_totals_object.py +2 -2
  77. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/tag_object.py +7 -7
  78. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/transaction_attachment_object.py +2 -2
  79. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/transaction_object.py +3 -3
  80. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_category_request_object.py +5 -5
  81. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_manual_account_request_object.py +3 -3
  82. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_manual_account_request_object_balance.py +2 -2
  83. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_manual_account_request_object_closed_on.py +2 -2
  84. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_tag_request_object.py +8 -8
  85. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_transaction_object.py +8 -8
  86. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_transaction_object_amount.py +2 -2
  87. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_transactions200_response.py +2 -2
  88. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_transactions_request.py +2 -2
  89. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/update_transactions_request_transactions_inner.py +7 -7
  90. lunchmoney_python_async-2.21.0/lunchmoney/models/upsert_budget400_response.py +138 -0
  91. lunchmoney_python_async-2.21.0/lunchmoney/models/upsert_budget_request_object.py +108 -0
  92. lunchmoney_python_async-2.21.0/lunchmoney/models/upsert_budget_request_object_amount.py +145 -0
  93. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/user_object.py +9 -9
  94. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/rest.py +2 -2
  95. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney_python_async.egg-info/PKG-INFO +28 -23
  96. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney_python_async.egg-info/SOURCES.txt +22 -0
  97. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/pyproject.toml +1 -1
  98. lunchmoney_python_async-2.21.0/setup.py +52 -0
  99. lunchmoney_python_async-2.21.0/test/test_budget_invalid_period_error_object.py +59 -0
  100. lunchmoney_python_async-2.21.0/test/test_budget_object.py +80 -0
  101. lunchmoney_python_async-2.21.0/test/test_budget_settings_response_object.py +65 -0
  102. lunchmoney_python_async-2.21.0/test/test_budget_upsert_response_object.py +57 -0
  103. lunchmoney_python_async-2.21.0/test/test_budgets_api.py +53 -0
  104. lunchmoney_python_async-2.21.0/test/test_summary_category_object.py +89 -0
  105. lunchmoney_python_async-2.21.0/test/test_summary_category_totals_object.py +61 -0
  106. lunchmoney_python_async-2.21.0/test/test_summary_response_object.py +146 -0
  107. lunchmoney_python_async-2.21.0/test/test_upsert_budget400_response.py +65 -0
  108. lunchmoney_python_async-2.21.0/test/test_upsert_budget_request_object.py +59 -0
  109. lunchmoney_python_async-2.21.0/test/test_upsert_budget_request_object_amount.py +51 -0
  110. lunchmoney_python_async-2.19.0/lunchmoney/models/account_type_enum.py +0 -46
  111. lunchmoney_python_async-2.19.0/setup.py +0 -52
  112. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/api_response.py +0 -0
  113. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/app.py +0 -0
  114. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/aligned_category_totals_object.py +0 -0
  115. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/aligned_summary_category_object.py +0 -0
  116. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/aligned_summary_response_object.py +0 -0
  117. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/get_budget_summary200_response.py +0 -0
  118. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/non_aligned_category_totals_object.py +0 -0
  119. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/non_aligned_summary_category_object.py +0 -0
  120. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/models/non_aligned_summary_response_object.py +0 -0
  121. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney/py.typed +0 -0
  122. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney_python_async.egg-info/dependency_links.txt +0 -0
  123. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney_python_async.egg-info/requires.txt +0 -0
  124. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/lunchmoney_python_async.egg-info/top_level.txt +0 -0
  125. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/setup.cfg +0 -0
  126. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_account_type_enum.py +0 -0
  127. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_aligned_category_totals_object.py +0 -0
  128. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_aligned_summary_category_object.py +0 -0
  129. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_aligned_summary_response_object.py +0 -0
  130. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_app.py +0 -0
  131. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_categories_api.py +0 -0
  132. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_category_object.py +0 -0
  133. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_child_category_object.py +0 -0
  134. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_child_transaction_object.py +0 -0
  135. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_category_request_object.py +0 -0
  136. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_category_request_object_children_inner.py +0 -0
  137. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_manual_account_request_object.py +0 -0
  138. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_manual_account_request_object_balance.py +0 -0
  139. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_manual_account_request_object_closed_on.py +0 -0
  140. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_new_transactions_request.py +0 -0
  141. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_create_tag_request_object.py +0 -0
  142. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_currency_enum.py +0 -0
  143. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_delete_category_response_with_dependencies.py +0 -0
  144. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_delete_category_response_with_dependencies_dependents.py +0 -0
  145. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_delete_tag_response_with_dependencies.py +0 -0
  146. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_delete_tag_response_with_dependencies_dependents.py +0 -0
  147. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_delete_transactions_request.py +0 -0
  148. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_error_response_object.py +0 -0
  149. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_error_response_object_errors_inner.py +0 -0
  150. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_categories200_response.py +0 -0
  151. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_manual_accounts200_response.py +0 -0
  152. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_plaid_accounts200_response.py +0 -0
  153. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_recurring200_response.py +0 -0
  154. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_tags200_response.py +0 -0
  155. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_transactions200_response.py +0 -0
  156. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_all_transactions_created_since_parameter.py +0 -0
  157. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_budget_summary200_response.py +0 -0
  158. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_get_transaction_attachment_url200_response.py +0 -0
  159. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_group_transactions_request.py +0 -0
  160. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_insert_transaction_object.py +0 -0
  161. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_insert_transaction_object_amount.py +0 -0
  162. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_insert_transactions_response_object.py +0 -0
  163. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_manual_account_object.py +0 -0
  164. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_manual_accounts_api.py +0 -0
  165. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_me_api.py +0 -0
  166. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_non_aligned_category_totals_object.py +0 -0
  167. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_non_aligned_summary_category_object.py +0 -0
  168. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_non_aligned_summary_response_object.py +0 -0
  169. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_plaid_account_object.py +0 -0
  170. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_plaid_accounts_api.py +0 -0
  171. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_items_api.py +0 -0
  172. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_object.py +0 -0
  173. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_object_matches.py +0 -0
  174. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_object_matches_found_transactions_inner.py +0 -0
  175. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_object_overrides.py +0 -0
  176. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_recurring_object_transaction_criteria.py +0 -0
  177. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_skipped_existing_external_id_object.py +0 -0
  178. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_split_transaction_object.py +0 -0
  179. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_split_transaction_object_amount.py +0 -0
  180. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_split_transaction_request.py +0 -0
  181. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_api.py +0 -0
  182. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_category_occurrence_object.py +0 -0
  183. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_recurring_transaction_object.py +0 -0
  184. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_rollover_pool_adjustment_object.py +0 -0
  185. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_rollover_pool_object.py +0 -0
  186. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_totals_breakdown_object.py +0 -0
  187. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_summary_totals_object.py +0 -0
  188. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_tag_object.py +0 -0
  189. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_tags_api.py +0 -0
  190. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transaction_attachment_object.py +0 -0
  191. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transaction_object.py +0 -0
  192. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transactions_api.py +0 -0
  193. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transactions_bulk_api.py +0 -0
  194. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transactions_files_api.py +0 -0
  195. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transactions_group_api.py +0 -0
  196. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_transactions_split_api.py +0 -0
  197. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_category_request_object.py +0 -0
  198. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_manual_account_request_object.py +0 -0
  199. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_manual_account_request_object_balance.py +0 -0
  200. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_manual_account_request_object_closed_on.py +0 -0
  201. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_tag_request_object.py +0 -0
  202. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_transaction_object.py +0 -0
  203. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_transaction_object_amount.py +0 -0
  204. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_transactions200_response.py +0 -0
  205. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_transactions_request.py +0 -0
  206. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_update_transactions_request_transactions_inner.py +0 -0
  207. {lunchmoney_python_async-2.19.0 → lunchmoney_python_async-2.21.0}/test/test_user_object.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lunchmoney-python-async
3
- Version: 2.19.0
3
+ Version: 2.21.0
4
4
  Summary: Lunch Money API - v2
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -26,25 +26,25 @@ A working version of this API is now available through these docs, or directly a
26
26
  `https://api.lunchmoney.dev/v2`
27
27
 
28
28
  <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review
29
- period and bugs may still exist. Users are strongly encouraged to use the mock service or to create a test budget with example data as the first step to interacting with the v2 API.</strong></span>
30
- See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br>
29
+ period and bugs may still exist. We strongly encourage users to use the mock service or create a test budget with sample data as the first step to interacting with the v2 API.</strong></span>
30
+ See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<p>
31
31
 
32
32
  If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog).
33
33
 
34
34
  ### Static Mock Server
35
35
 
36
36
  You may also use these docs to explore the API using a static mock server endpoint.<p>
37
- This enables users to become familiar with the API without having to create an access token, and eliminates the possibility of modifying real data. <p>
38
- To access this endpoint select the second endpoint in the the \"Server\" dropdown to the right. When selected you should see \"Static Mock v2 Lunch Money API Server\".<br>
37
+ This will allow you to become familiar with the API without having to create an access token, and eliminates the possibility of changing real data. <p>
38
+ To access this endpoint, select the second endpoint in the \"Server\" dropdown to the right. When selected, you should see \"Static Mock v2 Lunch Money API Server\".<br>
39
39
  When using this server, set your Bearer token to any string with 11 or more characters.
40
40
 
41
41
  ### Migrating from V1
42
42
 
43
- The v2 API is NOT backwards compatible with the v1 API. Developers are encouraged to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration.
43
+ The v2 API is NOT backwards compatible with the v1 API. We encourage developers to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration.
44
44
 
45
45
  ### Acknowledgments
46
46
 
47
- If you have been providing feedback on the API during our iterative design process, **THANK YOU**. We are happy to provide the opportunity to finally interact with the working API that was built based on your feedback.
47
+ If you have provided feedback on the API during our ongoing design process, **THANK YOU**. We are thrilled that you can finally interact with the working API we built based on your feedback.
48
48
 
49
49
  ### Useful links:
50
50
  - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
@@ -56,8 +56,8 @@ If you have been providing feedback on the API during our iterative design proce
56
56
 
57
57
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
58
58
 
59
- - API version: 2.8.5
60
- - Package version: 2.19.0
59
+ - API version: 2.9.0
60
+ - Package version: 2.21.0
61
61
  - Generator version: 7.17.0
62
62
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
63
63
 
@@ -134,16 +134,15 @@ configuration = lunchmoney.Configuration(
134
134
  # Enter a context with an instance of the API client
135
135
  async with lunchmoney.ApiClient(configuration) as api_client:
136
136
  # Create an instance of the API class
137
- api_instance = lunchmoney.CategoriesApi(api_client)
138
- create_category_request_object = {"name":"API Created Category","description":"Test description of created category","is_income":false,"exclude_from_budget":true,"exclude_from_totals":false,"is_group":false} # CreateCategoryRequestObject |
137
+ api_instance = lunchmoney.BudgetsApi(api_client)
138
+ category_id = 56 # int | Category ID of the budget to delete
139
+ start_date = '2013-10-20' # date | Start date of the budget period in ISO 8601 date format (YYYY-MM-DD)
139
140
 
140
141
  try:
141
- # Create a new category or category group
142
- api_response = await api_instance.create_category(create_category_request_object)
143
- print("The response of CategoriesApi->create_category:\n")
144
- pprint(api_response)
142
+ # Delete budget
143
+ await api_instance.delete_budget(category_id, start_date)
145
144
  except ApiException as e:
146
- print("Exception when calling CategoriesApi->create_category: %s\n" % e)
145
+ print("Exception when calling BudgetsApi->delete_budget: %s\n" % e)
147
146
 
148
147
  ```
149
148
 
@@ -153,6 +152,9 @@ All URIs are relative to *https://api.lunchmoney.dev/v2*
153
152
 
154
153
  Class | Method | HTTP request | Description
155
154
  ------------ | ------------- | ------------- | -------------
155
+ *BudgetsApi* | [**delete_budget**](docs/BudgetsApi.md#delete_budget) | **DELETE** /budgets | Delete budget
156
+ *BudgetsApi* | [**get_budget_settings**](docs/BudgetsApi.md#get_budget_settings) | **GET** /budgets/settings | Get budget settings
157
+ *BudgetsApi* | [**upsert_budget**](docs/BudgetsApi.md#upsert_budget) | **PUT** /budgets | Upsert budget
156
158
  *CategoriesApi* | [**create_category**](docs/CategoriesApi.md#create_category) | **POST** /categories | Create a new category or category group
157
159
  *CategoriesApi* | [**delete_category**](docs/CategoriesApi.md#delete_category) | **DELETE** /categories/{id} | Delete a category or category group
158
160
  *CategoriesApi* | [**get_all_categories**](docs/CategoriesApi.md#get_all_categories) | **GET** /categories | Get all categories
@@ -194,9 +196,10 @@ Class | Method | HTTP request | Description
194
196
  ## Documentation For Models
195
197
 
196
198
  - [AccountTypeEnum](docs/AccountTypeEnum.md)
197
- - [AlignedCategoryTotalsObject](docs/AlignedCategoryTotalsObject.md)
198
- - [AlignedSummaryCategoryObject](docs/AlignedSummaryCategoryObject.md)
199
- - [AlignedSummaryResponseObject](docs/AlignedSummaryResponseObject.md)
199
+ - [BudgetInvalidPeriodErrorObject](docs/BudgetInvalidPeriodErrorObject.md)
200
+ - [BudgetObject](docs/BudgetObject.md)
201
+ - [BudgetSettingsResponseObject](docs/BudgetSettingsResponseObject.md)
202
+ - [BudgetUpsertResponseObject](docs/BudgetUpsertResponseObject.md)
200
203
  - [CategoryObject](docs/CategoryObject.md)
201
204
  - [ChildCategoryObject](docs/ChildCategoryObject.md)
202
205
  - [ChildTransactionObject](docs/ChildTransactionObject.md)
@@ -222,16 +225,12 @@ Class | Method | HTTP request | Description
222
225
  - [GetAllTags200Response](docs/GetAllTags200Response.md)
223
226
  - [GetAllTransactions200Response](docs/GetAllTransactions200Response.md)
224
227
  - [GetAllTransactionsCreatedSinceParameter](docs/GetAllTransactionsCreatedSinceParameter.md)
225
- - [GetBudgetSummary200Response](docs/GetBudgetSummary200Response.md)
226
228
  - [GetTransactionAttachmentUrl200Response](docs/GetTransactionAttachmentUrl200Response.md)
227
229
  - [GroupTransactionsRequest](docs/GroupTransactionsRequest.md)
228
230
  - [InsertTransactionObject](docs/InsertTransactionObject.md)
229
231
  - [InsertTransactionObjectAmount](docs/InsertTransactionObjectAmount.md)
230
232
  - [InsertTransactionsResponseObject](docs/InsertTransactionsResponseObject.md)
231
233
  - [ManualAccountObject](docs/ManualAccountObject.md)
232
- - [NonAlignedCategoryTotalsObject](docs/NonAlignedCategoryTotalsObject.md)
233
- - [NonAlignedSummaryCategoryObject](docs/NonAlignedSummaryCategoryObject.md)
234
- - [NonAlignedSummaryResponseObject](docs/NonAlignedSummaryResponseObject.md)
235
234
  - [PlaidAccountObject](docs/PlaidAccountObject.md)
236
235
  - [RecurringObject](docs/RecurringObject.md)
237
236
  - [RecurringObjectMatches](docs/RecurringObjectMatches.md)
@@ -242,8 +241,11 @@ Class | Method | HTTP request | Description
242
241
  - [SplitTransactionObject](docs/SplitTransactionObject.md)
243
242
  - [SplitTransactionObjectAmount](docs/SplitTransactionObjectAmount.md)
244
243
  - [SplitTransactionRequest](docs/SplitTransactionRequest.md)
244
+ - [SummaryCategoryObject](docs/SummaryCategoryObject.md)
245
245
  - [SummaryCategoryOccurrenceObject](docs/SummaryCategoryOccurrenceObject.md)
246
+ - [SummaryCategoryTotalsObject](docs/SummaryCategoryTotalsObject.md)
246
247
  - [SummaryRecurringTransactionObject](docs/SummaryRecurringTransactionObject.md)
248
+ - [SummaryResponseObject](docs/SummaryResponseObject.md)
247
249
  - [SummaryRolloverPoolAdjustmentObject](docs/SummaryRolloverPoolAdjustmentObject.md)
248
250
  - [SummaryRolloverPoolObject](docs/SummaryRolloverPoolObject.md)
249
251
  - [SummaryTotalsBreakdownObject](docs/SummaryTotalsBreakdownObject.md)
@@ -261,6 +263,9 @@ Class | Method | HTTP request | Description
261
263
  - [UpdateTransactions200Response](docs/UpdateTransactions200Response.md)
262
264
  - [UpdateTransactionsRequest](docs/UpdateTransactionsRequest.md)
263
265
  - [UpdateTransactionsRequestTransactionsInner](docs/UpdateTransactionsRequestTransactionsInner.md)
266
+ - [UpsertBudget400Response](docs/UpsertBudget400Response.md)
267
+ - [UpsertBudgetRequestObject](docs/UpsertBudgetRequestObject.md)
268
+ - [UpsertBudgetRequestObjectAmount](docs/UpsertBudgetRequestObjectAmount.md)
264
269
  - [UserObject](docs/UserObject.md)
265
270
 
266
271
 
@@ -6,25 +6,25 @@ A working version of this API is now available through these docs, or directly a
6
6
  `https://api.lunchmoney.dev/v2`
7
7
 
8
8
  <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review
9
- period and bugs may still exist. Users are strongly encouraged to use the mock service or to create a test budget with example data as the first step to interacting with the v2 API.</strong></span>
10
- See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br>
9
+ period and bugs may still exist. We strongly encourage users to use the mock service or create a test budget with sample data as the first step to interacting with the v2 API.</strong></span>
10
+ See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<p>
11
11
 
12
12
  If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog).
13
13
 
14
14
  ### Static Mock Server
15
15
 
16
16
  You may also use these docs to explore the API using a static mock server endpoint.<p>
17
- This enables users to become familiar with the API without having to create an access token, and eliminates the possibility of modifying real data. <p>
18
- To access this endpoint select the second endpoint in the the \"Server\" dropdown to the right. When selected you should see \"Static Mock v2 Lunch Money API Server\".<br>
17
+ This will allow you to become familiar with the API without having to create an access token, and eliminates the possibility of changing real data. <p>
18
+ To access this endpoint, select the second endpoint in the \"Server\" dropdown to the right. When selected, you should see \"Static Mock v2 Lunch Money API Server\".<br>
19
19
  When using this server, set your Bearer token to any string with 11 or more characters.
20
20
 
21
21
  ### Migrating from V1
22
22
 
23
- The v2 API is NOT backwards compatible with the v1 API. Developers are encouraged to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration.
23
+ The v2 API is NOT backwards compatible with the v1 API. We encourage developers to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration.
24
24
 
25
25
  ### Acknowledgments
26
26
 
27
- If you have been providing feedback on the API during our iterative design process, **THANK YOU**. We are happy to provide the opportunity to finally interact with the working API that was built based on your feedback.
27
+ If you have provided feedback on the API during our ongoing design process, **THANK YOU**. We are thrilled that you can finally interact with the working API we built based on your feedback.
28
28
 
29
29
  ### Useful links:
30
30
  - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
@@ -36,8 +36,8 @@ If you have been providing feedback on the API during our iterative design proce
36
36
 
37
37
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
38
38
 
39
- - API version: 2.8.5
40
- - Package version: 2.19.0
39
+ - API version: 2.9.0
40
+ - Package version: 2.21.0
41
41
  - Generator version: 7.17.0
42
42
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
43
43
 
@@ -114,16 +114,15 @@ configuration = lunchmoney.Configuration(
114
114
  # Enter a context with an instance of the API client
115
115
  async with lunchmoney.ApiClient(configuration) as api_client:
116
116
  # Create an instance of the API class
117
- api_instance = lunchmoney.CategoriesApi(api_client)
118
- create_category_request_object = {"name":"API Created Category","description":"Test description of created category","is_income":false,"exclude_from_budget":true,"exclude_from_totals":false,"is_group":false} # CreateCategoryRequestObject |
117
+ api_instance = lunchmoney.BudgetsApi(api_client)
118
+ category_id = 56 # int | Category ID of the budget to delete
119
+ start_date = '2013-10-20' # date | Start date of the budget period in ISO 8601 date format (YYYY-MM-DD)
119
120
 
120
121
  try:
121
- # Create a new category or category group
122
- api_response = await api_instance.create_category(create_category_request_object)
123
- print("The response of CategoriesApi->create_category:\n")
124
- pprint(api_response)
122
+ # Delete budget
123
+ await api_instance.delete_budget(category_id, start_date)
125
124
  except ApiException as e:
126
- print("Exception when calling CategoriesApi->create_category: %s\n" % e)
125
+ print("Exception when calling BudgetsApi->delete_budget: %s\n" % e)
127
126
 
128
127
  ```
129
128
 
@@ -133,6 +132,9 @@ All URIs are relative to *https://api.lunchmoney.dev/v2*
133
132
 
134
133
  Class | Method | HTTP request | Description
135
134
  ------------ | ------------- | ------------- | -------------
135
+ *BudgetsApi* | [**delete_budget**](docs/BudgetsApi.md#delete_budget) | **DELETE** /budgets | Delete budget
136
+ *BudgetsApi* | [**get_budget_settings**](docs/BudgetsApi.md#get_budget_settings) | **GET** /budgets/settings | Get budget settings
137
+ *BudgetsApi* | [**upsert_budget**](docs/BudgetsApi.md#upsert_budget) | **PUT** /budgets | Upsert budget
136
138
  *CategoriesApi* | [**create_category**](docs/CategoriesApi.md#create_category) | **POST** /categories | Create a new category or category group
137
139
  *CategoriesApi* | [**delete_category**](docs/CategoriesApi.md#delete_category) | **DELETE** /categories/{id} | Delete a category or category group
138
140
  *CategoriesApi* | [**get_all_categories**](docs/CategoriesApi.md#get_all_categories) | **GET** /categories | Get all categories
@@ -174,9 +176,10 @@ Class | Method | HTTP request | Description
174
176
  ## Documentation For Models
175
177
 
176
178
  - [AccountTypeEnum](docs/AccountTypeEnum.md)
177
- - [AlignedCategoryTotalsObject](docs/AlignedCategoryTotalsObject.md)
178
- - [AlignedSummaryCategoryObject](docs/AlignedSummaryCategoryObject.md)
179
- - [AlignedSummaryResponseObject](docs/AlignedSummaryResponseObject.md)
179
+ - [BudgetInvalidPeriodErrorObject](docs/BudgetInvalidPeriodErrorObject.md)
180
+ - [BudgetObject](docs/BudgetObject.md)
181
+ - [BudgetSettingsResponseObject](docs/BudgetSettingsResponseObject.md)
182
+ - [BudgetUpsertResponseObject](docs/BudgetUpsertResponseObject.md)
180
183
  - [CategoryObject](docs/CategoryObject.md)
181
184
  - [ChildCategoryObject](docs/ChildCategoryObject.md)
182
185
  - [ChildTransactionObject](docs/ChildTransactionObject.md)
@@ -202,16 +205,12 @@ Class | Method | HTTP request | Description
202
205
  - [GetAllTags200Response](docs/GetAllTags200Response.md)
203
206
  - [GetAllTransactions200Response](docs/GetAllTransactions200Response.md)
204
207
  - [GetAllTransactionsCreatedSinceParameter](docs/GetAllTransactionsCreatedSinceParameter.md)
205
- - [GetBudgetSummary200Response](docs/GetBudgetSummary200Response.md)
206
208
  - [GetTransactionAttachmentUrl200Response](docs/GetTransactionAttachmentUrl200Response.md)
207
209
  - [GroupTransactionsRequest](docs/GroupTransactionsRequest.md)
208
210
  - [InsertTransactionObject](docs/InsertTransactionObject.md)
209
211
  - [InsertTransactionObjectAmount](docs/InsertTransactionObjectAmount.md)
210
212
  - [InsertTransactionsResponseObject](docs/InsertTransactionsResponseObject.md)
211
213
  - [ManualAccountObject](docs/ManualAccountObject.md)
212
- - [NonAlignedCategoryTotalsObject](docs/NonAlignedCategoryTotalsObject.md)
213
- - [NonAlignedSummaryCategoryObject](docs/NonAlignedSummaryCategoryObject.md)
214
- - [NonAlignedSummaryResponseObject](docs/NonAlignedSummaryResponseObject.md)
215
214
  - [PlaidAccountObject](docs/PlaidAccountObject.md)
216
215
  - [RecurringObject](docs/RecurringObject.md)
217
216
  - [RecurringObjectMatches](docs/RecurringObjectMatches.md)
@@ -222,8 +221,11 @@ Class | Method | HTTP request | Description
222
221
  - [SplitTransactionObject](docs/SplitTransactionObject.md)
223
222
  - [SplitTransactionObjectAmount](docs/SplitTransactionObjectAmount.md)
224
223
  - [SplitTransactionRequest](docs/SplitTransactionRequest.md)
224
+ - [SummaryCategoryObject](docs/SummaryCategoryObject.md)
225
225
  - [SummaryCategoryOccurrenceObject](docs/SummaryCategoryOccurrenceObject.md)
226
+ - [SummaryCategoryTotalsObject](docs/SummaryCategoryTotalsObject.md)
226
227
  - [SummaryRecurringTransactionObject](docs/SummaryRecurringTransactionObject.md)
228
+ - [SummaryResponseObject](docs/SummaryResponseObject.md)
227
229
  - [SummaryRolloverPoolAdjustmentObject](docs/SummaryRolloverPoolAdjustmentObject.md)
228
230
  - [SummaryRolloverPoolObject](docs/SummaryRolloverPoolObject.md)
229
231
  - [SummaryTotalsBreakdownObject](docs/SummaryTotalsBreakdownObject.md)
@@ -241,6 +243,9 @@ Class | Method | HTTP request | Description
241
243
  - [UpdateTransactions200Response](docs/UpdateTransactions200Response.md)
242
244
  - [UpdateTransactionsRequest](docs/UpdateTransactionsRequest.md)
243
245
  - [UpdateTransactionsRequestTransactionsInner](docs/UpdateTransactionsRequestTransactionsInner.md)
246
+ - [UpsertBudget400Response](docs/UpsertBudget400Response.md)
247
+ - [UpsertBudgetRequestObject](docs/UpsertBudgetRequestObject.md)
248
+ - [UpsertBudgetRequestObjectAmount](docs/UpsertBudgetRequestObjectAmount.md)
244
249
  - [UserObject](docs/UserObject.md)
245
250
 
246
251
 
@@ -5,9 +5,9 @@
5
5
  """
6
6
  Lunch Money API - v2
7
7
 
8
- Welcome to the Lunch Money v2 API. A working version of this API is now available through these docs, or directly at: `https://api.lunchmoney.dev/v2` <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review period and bugs may still exist. Users are strongly encouraged to use the mock service or to create a test budget with example data as the first step to interacting with the v2 API.</strong></span> See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br> If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog). ### Static Mock Server You may also use these docs to explore the API using a static mock server endpoint.<p> This enables users to become familiar with the API without having to create an access token, and eliminates the possibility of modifying real data. <p> To access this endpoint select the second endpoint in the the \"Server\" dropdown to the right. When selected you should see \"Static Mock v2 Lunch Money API Server\".<br> When using this server, set your Bearer token to any string with 11 or more characters. ### Migrating from V1 The v2 API is NOT backwards compatible with the v1 API. Developers are encouraged to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration. ### Acknowledgments If you have been providing feedback on the API during our iterative design process, **THANK YOU**. We are happy to provide the opportunity to finally interact with the working API that was built based on your feedback. ### Useful links: - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started) - [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog) - [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits) - [Current v1 Lunch Money API Documentation](https://lunchmoney.dev) - [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
8
+ Welcome to the Lunch Money v2 API. A working version of this API is now available through these docs, or directly at: `https://api.lunchmoney.dev/v2` <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review period and bugs may still exist. We strongly encourage users to use the mock service or create a test budget with sample data as the first step to interacting with the v2 API.</strong></span> See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<p> If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog). ### Static Mock Server You may also use these docs to explore the API using a static mock server endpoint.<p> This will allow you to become familiar with the API without having to create an access token, and eliminates the possibility of changing real data. <p> To access this endpoint, select the second endpoint in the \"Server\" dropdown to the right. When selected, you should see \"Static Mock v2 Lunch Money API Server\".<br> When using this server, set your Bearer token to any string with 11 or more characters. ### Migrating from V1 The v2 API is NOT backwards compatible with the v1 API. We encourage developers to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration. ### Acknowledgments If you have provided feedback on the API during our ongoing design process, **THANK YOU**. We are thrilled that you can finally interact with the working API we built based on your feedback. ### Useful links: - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started) - [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog) - [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits) - [Current v1 Lunch Money API Documentation](https://lunchmoney.dev) - [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
9
9
 
10
- The version of the OpenAPI document: 2.8.5
10
+ The version of the OpenAPI document: 2.9.0
11
11
  Contact: devsupport@lunchmoney.app
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,10 +15,11 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "2.19.0"
18
+ __version__ = "2.21.0"
19
19
 
20
20
  # Define package exports
21
21
  __all__ = [
22
+ "BudgetsApi",
22
23
  "CategoriesApi",
23
24
  "ManualAccountsApi",
24
25
  "MeApi",
@@ -41,9 +42,10 @@ __all__ = [
41
42
  "ApiAttributeError",
42
43
  "ApiException",
43
44
  "AccountTypeEnum",
44
- "AlignedCategoryTotalsObject",
45
- "AlignedSummaryCategoryObject",
46
- "AlignedSummaryResponseObject",
45
+ "BudgetInvalidPeriodErrorObject",
46
+ "BudgetObject",
47
+ "BudgetSettingsResponseObject",
48
+ "BudgetUpsertResponseObject",
47
49
  "CategoryObject",
48
50
  "ChildCategoryObject",
49
51
  "ChildTransactionObject",
@@ -69,16 +71,12 @@ __all__ = [
69
71
  "GetAllTags200Response",
70
72
  "GetAllTransactions200Response",
71
73
  "GetAllTransactionsCreatedSinceParameter",
72
- "GetBudgetSummary200Response",
73
74
  "GetTransactionAttachmentUrl200Response",
74
75
  "GroupTransactionsRequest",
75
76
  "InsertTransactionObject",
76
77
  "InsertTransactionObjectAmount",
77
78
  "InsertTransactionsResponseObject",
78
79
  "ManualAccountObject",
79
- "NonAlignedCategoryTotalsObject",
80
- "NonAlignedSummaryCategoryObject",
81
- "NonAlignedSummaryResponseObject",
82
80
  "PlaidAccountObject",
83
81
  "RecurringObject",
84
82
  "RecurringObjectMatches",
@@ -89,8 +87,11 @@ __all__ = [
89
87
  "SplitTransactionObject",
90
88
  "SplitTransactionObjectAmount",
91
89
  "SplitTransactionRequest",
90
+ "SummaryCategoryObject",
92
91
  "SummaryCategoryOccurrenceObject",
92
+ "SummaryCategoryTotalsObject",
93
93
  "SummaryRecurringTransactionObject",
94
+ "SummaryResponseObject",
94
95
  "SummaryRolloverPoolAdjustmentObject",
95
96
  "SummaryRolloverPoolObject",
96
97
  "SummaryTotalsBreakdownObject",
@@ -108,10 +109,14 @@ __all__ = [
108
109
  "UpdateTransactions200Response",
109
110
  "UpdateTransactionsRequest",
110
111
  "UpdateTransactionsRequestTransactionsInner",
112
+ "UpsertBudget400Response",
113
+ "UpsertBudgetRequestObject",
114
+ "UpsertBudgetRequestObjectAmount",
111
115
  "UserObject",
112
116
  ]
113
117
 
114
118
  # import apis into sdk package
119
+ from lunchmoney.api.budgets_api import BudgetsApi as BudgetsApi
115
120
  from lunchmoney.api.categories_api import CategoriesApi as CategoriesApi
116
121
  from lunchmoney.api.manual_accounts_api import ManualAccountsApi as ManualAccountsApi
117
122
  from lunchmoney.api.me_api import MeApi as MeApi
@@ -138,9 +143,10 @@ from lunchmoney.exceptions import ApiException as ApiException
138
143
 
139
144
  # import models into sdk package
140
145
  from lunchmoney.models.account_type_enum import AccountTypeEnum as AccountTypeEnum
141
- from lunchmoney.models.aligned_category_totals_object import AlignedCategoryTotalsObject as AlignedCategoryTotalsObject
142
- from lunchmoney.models.aligned_summary_category_object import AlignedSummaryCategoryObject as AlignedSummaryCategoryObject
143
- from lunchmoney.models.aligned_summary_response_object import AlignedSummaryResponseObject as AlignedSummaryResponseObject
146
+ from lunchmoney.models.budget_invalid_period_error_object import BudgetInvalidPeriodErrorObject as BudgetInvalidPeriodErrorObject
147
+ from lunchmoney.models.budget_object import BudgetObject as BudgetObject
148
+ from lunchmoney.models.budget_settings_response_object import BudgetSettingsResponseObject as BudgetSettingsResponseObject
149
+ from lunchmoney.models.budget_upsert_response_object import BudgetUpsertResponseObject as BudgetUpsertResponseObject
144
150
  from lunchmoney.models.category_object import CategoryObject as CategoryObject
145
151
  from lunchmoney.models.child_category_object import ChildCategoryObject as ChildCategoryObject
146
152
  from lunchmoney.models.child_transaction_object import ChildTransactionObject as ChildTransactionObject
@@ -166,16 +172,12 @@ from lunchmoney.models.get_all_recurring200_response import GetAllRecurring200Re
166
172
  from lunchmoney.models.get_all_tags200_response import GetAllTags200Response as GetAllTags200Response
167
173
  from lunchmoney.models.get_all_transactions200_response import GetAllTransactions200Response as GetAllTransactions200Response
168
174
  from lunchmoney.models.get_all_transactions_created_since_parameter import GetAllTransactionsCreatedSinceParameter as GetAllTransactionsCreatedSinceParameter
169
- from lunchmoney.models.get_budget_summary200_response import GetBudgetSummary200Response as GetBudgetSummary200Response
170
175
  from lunchmoney.models.get_transaction_attachment_url200_response import GetTransactionAttachmentUrl200Response as GetTransactionAttachmentUrl200Response
171
176
  from lunchmoney.models.group_transactions_request import GroupTransactionsRequest as GroupTransactionsRequest
172
177
  from lunchmoney.models.insert_transaction_object import InsertTransactionObject as InsertTransactionObject
173
178
  from lunchmoney.models.insert_transaction_object_amount import InsertTransactionObjectAmount as InsertTransactionObjectAmount
174
179
  from lunchmoney.models.insert_transactions_response_object import InsertTransactionsResponseObject as InsertTransactionsResponseObject
175
180
  from lunchmoney.models.manual_account_object import ManualAccountObject as ManualAccountObject
176
- from lunchmoney.models.non_aligned_category_totals_object import NonAlignedCategoryTotalsObject as NonAlignedCategoryTotalsObject
177
- from lunchmoney.models.non_aligned_summary_category_object import NonAlignedSummaryCategoryObject as NonAlignedSummaryCategoryObject
178
- from lunchmoney.models.non_aligned_summary_response_object import NonAlignedSummaryResponseObject as NonAlignedSummaryResponseObject
179
181
  from lunchmoney.models.plaid_account_object import PlaidAccountObject as PlaidAccountObject
180
182
  from lunchmoney.models.recurring_object import RecurringObject as RecurringObject
181
183
  from lunchmoney.models.recurring_object_matches import RecurringObjectMatches as RecurringObjectMatches
@@ -186,8 +188,11 @@ from lunchmoney.models.skipped_existing_external_id_object import SkippedExistin
186
188
  from lunchmoney.models.split_transaction_object import SplitTransactionObject as SplitTransactionObject
187
189
  from lunchmoney.models.split_transaction_object_amount import SplitTransactionObjectAmount as SplitTransactionObjectAmount
188
190
  from lunchmoney.models.split_transaction_request import SplitTransactionRequest as SplitTransactionRequest
191
+ from lunchmoney.models.summary_category_object import SummaryCategoryObject as SummaryCategoryObject
189
192
  from lunchmoney.models.summary_category_occurrence_object import SummaryCategoryOccurrenceObject as SummaryCategoryOccurrenceObject
193
+ from lunchmoney.models.summary_category_totals_object import SummaryCategoryTotalsObject as SummaryCategoryTotalsObject
190
194
  from lunchmoney.models.summary_recurring_transaction_object import SummaryRecurringTransactionObject as SummaryRecurringTransactionObject
195
+ from lunchmoney.models.summary_response_object import SummaryResponseObject as SummaryResponseObject
191
196
  from lunchmoney.models.summary_rollover_pool_adjustment_object import SummaryRolloverPoolAdjustmentObject as SummaryRolloverPoolAdjustmentObject
192
197
  from lunchmoney.models.summary_rollover_pool_object import SummaryRolloverPoolObject as SummaryRolloverPoolObject
193
198
  from lunchmoney.models.summary_totals_breakdown_object import SummaryTotalsBreakdownObject as SummaryTotalsBreakdownObject
@@ -205,5 +210,8 @@ from lunchmoney.models.update_transaction_object_amount import UpdateTransaction
205
210
  from lunchmoney.models.update_transactions200_response import UpdateTransactions200Response as UpdateTransactions200Response
206
211
  from lunchmoney.models.update_transactions_request import UpdateTransactionsRequest as UpdateTransactionsRequest
207
212
  from lunchmoney.models.update_transactions_request_transactions_inner import UpdateTransactionsRequestTransactionsInner as UpdateTransactionsRequestTransactionsInner
213
+ from lunchmoney.models.upsert_budget400_response import UpsertBudget400Response as UpsertBudget400Response
214
+ from lunchmoney.models.upsert_budget_request_object import UpsertBudgetRequestObject as UpsertBudgetRequestObject
215
+ from lunchmoney.models.upsert_budget_request_object_amount import UpsertBudgetRequestObjectAmount as UpsertBudgetRequestObjectAmount
208
216
  from lunchmoney.models.user_object import UserObject as UserObject
209
217
 
@@ -1,6 +1,7 @@
1
1
  # flake8: noqa
2
2
 
3
3
  # import apis into api package
4
+ from lunchmoney.api.budgets_api import BudgetsApi
4
5
  from lunchmoney.api.categories_api import CategoriesApi
5
6
  from lunchmoney.api.manual_accounts_api import ManualAccountsApi
6
7
  from lunchmoney.api.me_api import MeApi