lunchmoney-python-async 2.18.0__tar.gz → 2.19.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 (183) hide show
  1. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/PKG-INFO +5 -3
  2. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/README.md +4 -2
  3. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/__init__.py +6 -2
  4. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/categories_api.py +7 -7
  5. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/manual_accounts_api.py +7 -7
  6. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/me_api.py +1 -1
  7. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/plaid_accounts_api.py +10 -10
  8. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/recurring_items_api.py +1 -1
  9. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/summary_api.py +16 -16
  10. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/tags_api.py +1 -1
  11. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/transactions_api.py +1 -1
  12. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/transactions_bulk_api.py +7 -7
  13. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/transactions_files_api.py +1 -1
  14. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/transactions_group_api.py +1 -1
  15. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/transactions_split_api.py +1 -1
  16. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api_client.py +2 -2
  17. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/app.py +2 -2
  18. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/configuration.py +4 -4
  19. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/exceptions.py +1 -1
  20. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/__init__.py +3 -1
  21. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/account_type_enum.py +1 -1
  22. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/aligned_category_totals_object.py +1 -1
  23. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/aligned_summary_category_object.py +1 -1
  24. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/aligned_summary_response_object.py +1 -1
  25. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/category_object.py +6 -6
  26. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/child_category_object.py +6 -11
  27. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/child_transaction_object.py +10 -3
  28. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_category_request_object.py +3 -3
  29. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_category_request_object_children_inner.py +1 -1
  30. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_manual_account_request_object.py +27 -12
  31. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_manual_account_request_object_balance.py +1 -1
  32. lunchmoney_python_async-2.19.0/lunchmoney/models/create_manual_account_request_object_closed_on.py +151 -0
  33. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_new_transactions_request.py +1 -1
  34. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/create_tag_request_object.py +4 -4
  35. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/currency_enum.py +1 -1
  36. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/delete_category_response_with_dependencies.py +1 -1
  37. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/delete_category_response_with_dependencies_dependents.py +1 -1
  38. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/delete_tag_response_with_dependencies.py +1 -1
  39. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +1 -1
  40. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/delete_transactions_request.py +1 -1
  41. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/error_response_object.py +1 -1
  42. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/error_response_object_errors_inner.py +1 -1
  43. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_categories200_response.py +1 -1
  44. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_manual_accounts200_response.py +1 -1
  45. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_plaid_accounts200_response.py +1 -1
  46. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_recurring200_response.py +1 -1
  47. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_tags200_response.py +1 -1
  48. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_transactions200_response.py +1 -1
  49. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_all_transactions_created_since_parameter.py +1 -1
  50. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_budget_summary200_response.py +1 -1
  51. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/get_transaction_attachment_url200_response.py +1 -1
  52. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/group_transactions_request.py +1 -1
  53. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/insert_transaction_object.py +11 -4
  54. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/insert_transaction_object_amount.py +1 -1
  55. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/insert_transactions_response_object.py +2 -2
  56. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/manual_account_object.py +28 -17
  57. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/non_aligned_category_totals_object.py +1 -1
  58. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/non_aligned_summary_category_object.py +1 -1
  59. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/non_aligned_summary_response_object.py +1 -1
  60. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/plaid_account_object.py +14 -5
  61. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/recurring_object.py +5 -5
  62. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/recurring_object_matches.py +2 -2
  63. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/recurring_object_matches_found_transactions_inner.py +3 -3
  64. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/recurring_object_overrides.py +2 -2
  65. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/recurring_object_transaction_criteria.py +7 -7
  66. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/skipped_existing_external_id_object.py +2 -2
  67. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/split_transaction_object.py +2 -2
  68. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/split_transaction_object_amount.py +1 -1
  69. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/split_transaction_request.py +1 -1
  70. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_category_occurrence_object.py +7 -7
  71. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_recurring_transaction_object.py +1 -1
  72. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_rollover_pool_adjustment_object.py +1 -1
  73. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_rollover_pool_object.py +2 -2
  74. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_totals_breakdown_object.py +6 -6
  75. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/summary_totals_object.py +1 -1
  76. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/tag_object.py +6 -6
  77. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/transaction_attachment_object.py +1 -1
  78. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/transaction_object.py +10 -3
  79. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_category_request_object.py +4 -4
  80. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_manual_account_request_object.py +42 -24
  81. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_manual_account_request_object_balance.py +1 -1
  82. lunchmoney_python_async-2.19.0/lunchmoney/models/update_manual_account_request_object_closed_on.py +151 -0
  83. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_tag_request_object.py +7 -7
  84. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_transaction_object.py +15 -8
  85. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_transaction_object_amount.py +1 -1
  86. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_transactions200_response.py +1 -1
  87. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_transactions_request.py +1 -1
  88. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/update_transactions_request_transactions_inner.py +14 -7
  89. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/models/user_object.py +1 -1
  90. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/rest.py +1 -1
  91. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney_python_async.egg-info/PKG-INFO +5 -3
  92. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney_python_async.egg-info/SOURCES.txt +4 -0
  93. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/pyproject.toml +1 -1
  94. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/setup.py +2 -2
  95. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_app.py +2 -2
  96. lunchmoney_python_async-2.19.0/test/test_create_manual_account_request_object_closed_on.py +51 -0
  97. lunchmoney_python_async-2.19.0/test/test_update_manual_account_request_object_closed_on.py +51 -0
  98. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api/__init__.py +0 -0
  99. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/api_response.py +0 -0
  100. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney/py.typed +0 -0
  101. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney_python_async.egg-info/dependency_links.txt +0 -0
  102. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney_python_async.egg-info/requires.txt +0 -0
  103. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/lunchmoney_python_async.egg-info/top_level.txt +0 -0
  104. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/setup.cfg +0 -0
  105. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_account_type_enum.py +0 -0
  106. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_aligned_category_totals_object.py +0 -0
  107. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_aligned_summary_category_object.py +0 -0
  108. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_aligned_summary_response_object.py +0 -0
  109. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_categories_api.py +0 -0
  110. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_category_object.py +0 -0
  111. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_child_category_object.py +0 -0
  112. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_child_transaction_object.py +0 -0
  113. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_category_request_object.py +0 -0
  114. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_category_request_object_children_inner.py +0 -0
  115. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_manual_account_request_object.py +0 -0
  116. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_manual_account_request_object_balance.py +0 -0
  117. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_new_transactions_request.py +0 -0
  118. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_create_tag_request_object.py +0 -0
  119. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_currency_enum.py +0 -0
  120. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_delete_category_response_with_dependencies.py +0 -0
  121. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_delete_category_response_with_dependencies_dependents.py +0 -0
  122. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_delete_tag_response_with_dependencies.py +0 -0
  123. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_delete_tag_response_with_dependencies_dependents.py +0 -0
  124. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_delete_transactions_request.py +0 -0
  125. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_error_response_object.py +0 -0
  126. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_error_response_object_errors_inner.py +0 -0
  127. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_categories200_response.py +0 -0
  128. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_manual_accounts200_response.py +0 -0
  129. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_plaid_accounts200_response.py +0 -0
  130. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_recurring200_response.py +0 -0
  131. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_tags200_response.py +0 -0
  132. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_transactions200_response.py +0 -0
  133. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_all_transactions_created_since_parameter.py +0 -0
  134. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_budget_summary200_response.py +0 -0
  135. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_get_transaction_attachment_url200_response.py +0 -0
  136. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_group_transactions_request.py +0 -0
  137. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_insert_transaction_object.py +0 -0
  138. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_insert_transaction_object_amount.py +0 -0
  139. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_insert_transactions_response_object.py +0 -0
  140. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_manual_account_object.py +0 -0
  141. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_manual_accounts_api.py +0 -0
  142. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_me_api.py +0 -0
  143. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_non_aligned_category_totals_object.py +0 -0
  144. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_non_aligned_summary_category_object.py +0 -0
  145. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_non_aligned_summary_response_object.py +0 -0
  146. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_plaid_account_object.py +0 -0
  147. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_plaid_accounts_api.py +0 -0
  148. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_items_api.py +0 -0
  149. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_object.py +0 -0
  150. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_object_matches.py +0 -0
  151. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_object_matches_found_transactions_inner.py +0 -0
  152. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_object_overrides.py +0 -0
  153. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_recurring_object_transaction_criteria.py +0 -0
  154. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_skipped_existing_external_id_object.py +0 -0
  155. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_split_transaction_object.py +0 -0
  156. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_split_transaction_object_amount.py +0 -0
  157. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_split_transaction_request.py +0 -0
  158. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_api.py +0 -0
  159. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_category_occurrence_object.py +0 -0
  160. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_recurring_transaction_object.py +0 -0
  161. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_rollover_pool_adjustment_object.py +0 -0
  162. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_rollover_pool_object.py +0 -0
  163. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_totals_breakdown_object.py +0 -0
  164. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_summary_totals_object.py +0 -0
  165. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_tag_object.py +0 -0
  166. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_tags_api.py +0 -0
  167. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transaction_attachment_object.py +0 -0
  168. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transaction_object.py +0 -0
  169. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transactions_api.py +0 -0
  170. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transactions_bulk_api.py +0 -0
  171. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transactions_files_api.py +0 -0
  172. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transactions_group_api.py +0 -0
  173. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_transactions_split_api.py +0 -0
  174. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_category_request_object.py +0 -0
  175. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_manual_account_request_object.py +0 -0
  176. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_manual_account_request_object_balance.py +0 -0
  177. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_tag_request_object.py +0 -0
  178. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_transaction_object.py +0 -0
  179. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_transaction_object_amount.py +0 -0
  180. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_transactions200_response.py +0 -0
  181. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_transactions_request.py +0 -0
  182. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.0}/test/test_update_transactions_request_transactions_inner.py +0 -0
  183. {lunchmoney_python_async-2.18.0 → lunchmoney_python_async-2.19.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.18.0
3
+ Version: 2.19.0
4
4
  Summary: Lunch Money API - v2
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -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.4
60
- - Package version: 2.18.0
59
+ - API version: 2.8.5
60
+ - Package version: 2.19.0
61
61
  - Generator version: 7.17.0
62
62
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
63
63
 
@@ -204,6 +204,7 @@ Class | Method | HTTP request | Description
204
204
  - [CreateCategoryRequestObjectChildrenInner](docs/CreateCategoryRequestObjectChildrenInner.md)
205
205
  - [CreateManualAccountRequestObject](docs/CreateManualAccountRequestObject.md)
206
206
  - [CreateManualAccountRequestObjectBalance](docs/CreateManualAccountRequestObjectBalance.md)
207
+ - [CreateManualAccountRequestObjectClosedOn](docs/CreateManualAccountRequestObjectClosedOn.md)
207
208
  - [CreateNewTransactionsRequest](docs/CreateNewTransactionsRequest.md)
208
209
  - [CreateTagRequestObject](docs/CreateTagRequestObject.md)
209
210
  - [CurrencyEnum](docs/CurrencyEnum.md)
@@ -253,6 +254,7 @@ Class | Method | HTTP request | Description
253
254
  - [UpdateCategoryRequestObject](docs/UpdateCategoryRequestObject.md)
254
255
  - [UpdateManualAccountRequestObject](docs/UpdateManualAccountRequestObject.md)
255
256
  - [UpdateManualAccountRequestObjectBalance](docs/UpdateManualAccountRequestObjectBalance.md)
257
+ - [UpdateManualAccountRequestObjectClosedOn](docs/UpdateManualAccountRequestObjectClosedOn.md)
256
258
  - [UpdateTagRequestObject](docs/UpdateTagRequestObject.md)
257
259
  - [UpdateTransactionObject](docs/UpdateTransactionObject.md)
258
260
  - [UpdateTransactionObjectAmount](docs/UpdateTransactionObjectAmount.md)
@@ -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.4
40
- - Package version: 2.18.0
39
+ - API version: 2.8.5
40
+ - Package version: 2.19.0
41
41
  - Generator version: 7.17.0
42
42
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
43
43
 
@@ -184,6 +184,7 @@ Class | Method | HTTP request | Description
184
184
  - [CreateCategoryRequestObjectChildrenInner](docs/CreateCategoryRequestObjectChildrenInner.md)
185
185
  - [CreateManualAccountRequestObject](docs/CreateManualAccountRequestObject.md)
186
186
  - [CreateManualAccountRequestObjectBalance](docs/CreateManualAccountRequestObjectBalance.md)
187
+ - [CreateManualAccountRequestObjectClosedOn](docs/CreateManualAccountRequestObjectClosedOn.md)
187
188
  - [CreateNewTransactionsRequest](docs/CreateNewTransactionsRequest.md)
188
189
  - [CreateTagRequestObject](docs/CreateTagRequestObject.md)
189
190
  - [CurrencyEnum](docs/CurrencyEnum.md)
@@ -233,6 +234,7 @@ Class | Method | HTTP request | Description
233
234
  - [UpdateCategoryRequestObject](docs/UpdateCategoryRequestObject.md)
234
235
  - [UpdateManualAccountRequestObject](docs/UpdateManualAccountRequestObject.md)
235
236
  - [UpdateManualAccountRequestObjectBalance](docs/UpdateManualAccountRequestObjectBalance.md)
237
+ - [UpdateManualAccountRequestObjectClosedOn](docs/UpdateManualAccountRequestObjectClosedOn.md)
236
238
  - [UpdateTagRequestObject](docs/UpdateTagRequestObject.md)
237
239
  - [UpdateTransactionObject](docs/UpdateTransactionObject.md)
238
240
  - [UpdateTransactionObjectAmount](docs/UpdateTransactionObjectAmount.md)
@@ -7,7 +7,7 @@
7
7
 
8
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)
9
9
 
10
- The version of the OpenAPI document: 2.8.4
10
+ The version of the OpenAPI document: 2.8.5
11
11
  Contact: devsupport@lunchmoney.app
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "2.18.0"
18
+ __version__ = "2.19.0"
19
19
 
20
20
  # Define package exports
21
21
  __all__ = [
@@ -51,6 +51,7 @@ __all__ = [
51
51
  "CreateCategoryRequestObjectChildrenInner",
52
52
  "CreateManualAccountRequestObject",
53
53
  "CreateManualAccountRequestObjectBalance",
54
+ "CreateManualAccountRequestObjectClosedOn",
54
55
  "CreateNewTransactionsRequest",
55
56
  "CreateTagRequestObject",
56
57
  "CurrencyEnum",
@@ -100,6 +101,7 @@ __all__ = [
100
101
  "UpdateCategoryRequestObject",
101
102
  "UpdateManualAccountRequestObject",
102
103
  "UpdateManualAccountRequestObjectBalance",
104
+ "UpdateManualAccountRequestObjectClosedOn",
103
105
  "UpdateTagRequestObject",
104
106
  "UpdateTransactionObject",
105
107
  "UpdateTransactionObjectAmount",
@@ -146,6 +148,7 @@ from lunchmoney.models.create_category_request_object import CreateCategoryReque
146
148
  from lunchmoney.models.create_category_request_object_children_inner import CreateCategoryRequestObjectChildrenInner as CreateCategoryRequestObjectChildrenInner
147
149
  from lunchmoney.models.create_manual_account_request_object import CreateManualAccountRequestObject as CreateManualAccountRequestObject
148
150
  from lunchmoney.models.create_manual_account_request_object_balance import CreateManualAccountRequestObjectBalance as CreateManualAccountRequestObjectBalance
151
+ from lunchmoney.models.create_manual_account_request_object_closed_on import CreateManualAccountRequestObjectClosedOn as CreateManualAccountRequestObjectClosedOn
149
152
  from lunchmoney.models.create_new_transactions_request import CreateNewTransactionsRequest as CreateNewTransactionsRequest
150
153
  from lunchmoney.models.create_tag_request_object import CreateTagRequestObject as CreateTagRequestObject
151
154
  from lunchmoney.models.currency_enum import CurrencyEnum as CurrencyEnum
@@ -195,6 +198,7 @@ from lunchmoney.models.transaction_object import TransactionObject as Transactio
195
198
  from lunchmoney.models.update_category_request_object import UpdateCategoryRequestObject as UpdateCategoryRequestObject
196
199
  from lunchmoney.models.update_manual_account_request_object import UpdateManualAccountRequestObject as UpdateManualAccountRequestObject
197
200
  from lunchmoney.models.update_manual_account_request_object_balance import UpdateManualAccountRequestObjectBalance as UpdateManualAccountRequestObjectBalance
201
+ from lunchmoney.models.update_manual_account_request_object_closed_on import UpdateManualAccountRequestObjectClosedOn as UpdateManualAccountRequestObjectClosedOn
198
202
  from lunchmoney.models.update_tag_request_object import UpdateTagRequestObject as UpdateTagRequestObject
199
203
  from lunchmoney.models.update_transaction_object import UpdateTransactionObject as UpdateTransactionObject
200
204
  from lunchmoney.models.update_transaction_object_amount import UpdateTransactionObjectAmount as UpdateTransactionObjectAmount
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -644,7 +644,7 @@ class CategoriesApi:
644
644
  ) -> GetAllCategories200Response:
645
645
  """Get all categories
646
646
 
647
- Retrieve a list of all categories associated with the user's account.
647
+ Retrieve a list of all categories associated with the user's account
648
648
 
649
649
  :param format: If `nested`, returns top-level categories (either category groups or categories not part of a category group) in alphabetical order. Grouped categories are nested within the category group under the property `children`. A `flattened`, response is similar but it includes grouped categories at the top level.<br/><br/> Categories are sorted by their `order`. When `order` is null, they are listed in alphabetical order below other categories with an `order`.
650
650
  :type format: str
@@ -719,7 +719,7 @@ class CategoriesApi:
719
719
  ) -> ApiResponse[GetAllCategories200Response]:
720
720
  """Get all categories
721
721
 
722
- Retrieve a list of all categories associated with the user's account.
722
+ Retrieve a list of all categories associated with the user's account
723
723
 
724
724
  :param format: If `nested`, returns top-level categories (either category groups or categories not part of a category group) in alphabetical order. Grouped categories are nested within the category group under the property `children`. A `flattened`, response is similar but it includes grouped categories at the top level.<br/><br/> Categories are sorted by their `order`. When `order` is null, they are listed in alphabetical order below other categories with an `order`.
725
725
  :type format: str
@@ -794,7 +794,7 @@ class CategoriesApi:
794
794
  ) -> RESTResponseType:
795
795
  """Get all categories
796
796
 
797
- Retrieve a list of all categories associated with the user's account.
797
+ Retrieve a list of all categories associated with the user's account
798
798
 
799
799
  :param format: If `nested`, returns top-level categories (either category groups or categories not part of a category group) in alphabetical order. Grouped categories are nested within the category group under the property `children`. A `flattened`, response is similar but it includes grouped categories at the top level.<br/><br/> Categories are sorted by their `order`. When `order` is null, they are listed in alphabetical order below other categories with an `order`.
800
800
  :type format: str
@@ -936,7 +936,7 @@ class CategoriesApi:
936
936
  ) -> CategoryObject:
937
937
  """Get a single category
938
938
 
939
- Retrieve details of a specific category or category group by its ID.
939
+ Retrieve details of a specific category or category group by its ID
940
940
 
941
941
  :param id: ID of the category to retrieve (required)
942
942
  :type id: int
@@ -1008,7 +1008,7 @@ class CategoriesApi:
1008
1008
  ) -> ApiResponse[CategoryObject]:
1009
1009
  """Get a single category
1010
1010
 
1011
- Retrieve details of a specific category or category group by its ID.
1011
+ Retrieve details of a specific category or category group by its ID
1012
1012
 
1013
1013
  :param id: ID of the category to retrieve (required)
1014
1014
  :type id: int
@@ -1080,7 +1080,7 @@ class CategoriesApi:
1080
1080
  ) -> RESTResponseType:
1081
1081
  """Get a single category
1082
1082
 
1083
- Retrieve details of a specific category or category group by its ID.
1083
+ Retrieve details of a specific category or category group by its ID
1084
1084
 
1085
1085
  :param id: ID of the category to retrieve (required)
1086
1086
  :type id: int
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -62,7 +62,7 @@ class ManualAccountsApi:
62
62
  ) -> ManualAccountObject:
63
63
  """Create a manual account
64
64
 
65
- Creates a new manually-managed account.
65
+ Creates a new manually-managed account
66
66
 
67
67
  :param create_manual_account_request_object: (required)
68
68
  :type create_manual_account_request_object: CreateManualAccountRequestObject
@@ -133,7 +133,7 @@ class ManualAccountsApi:
133
133
  ) -> ApiResponse[ManualAccountObject]:
134
134
  """Create a manual account
135
135
 
136
- Creates a new manually-managed account.
136
+ Creates a new manually-managed account
137
137
 
138
138
  :param create_manual_account_request_object: (required)
139
139
  :type create_manual_account_request_object: CreateManualAccountRequestObject
@@ -204,7 +204,7 @@ class ManualAccountsApi:
204
204
  ) -> RESTResponseType:
205
205
  """Create a manual account
206
206
 
207
- Creates a new manually-managed account.
207
+ Creates a new manually-managed account
208
208
 
209
209
  :param create_manual_account_request_object: (required)
210
210
  :type create_manual_account_request_object: CreateManualAccountRequestObject
@@ -916,7 +916,7 @@ class ManualAccountsApi:
916
916
  ) -> ManualAccountObject:
917
917
  """Get a single manual account
918
918
 
919
- Retrieve the details of the manual account with the specified ID.
919
+ Retrieve the details of the manual account with the specified ID
920
920
 
921
921
  :param id: ID of the manual account to retrieve (required)
922
922
  :type id: int
@@ -988,7 +988,7 @@ class ManualAccountsApi:
988
988
  ) -> ApiResponse[ManualAccountObject]:
989
989
  """Get a single manual account
990
990
 
991
- Retrieve the details of the manual account with the specified ID.
991
+ Retrieve the details of the manual account with the specified ID
992
992
 
993
993
  :param id: ID of the manual account to retrieve (required)
994
994
  :type id: int
@@ -1060,7 +1060,7 @@ class ManualAccountsApi:
1060
1060
  ) -> RESTResponseType:
1061
1061
  """Get a single manual account
1062
1062
 
1063
- Retrieve the details of the manual account with the specified ID.
1063
+ Retrieve the details of the manual account with the specified ID
1064
1064
 
1065
1065
  :param id: ID of the manual account to retrieve (required)
1066
1066
  :type id: int
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -320,7 +320,7 @@ class PlaidAccountsApi:
320
320
  ) -> PlaidAccountObject:
321
321
  """Get a single account that is synced via Plaid
322
322
 
323
- Retrieve the details of the plaid account with the specified ID.
323
+ Retrieve the details of the plaid account with the specified ID
324
324
 
325
325
  :param id: ID of the plaid account to retrieve (required)
326
326
  :type id: int
@@ -392,7 +392,7 @@ class PlaidAccountsApi:
392
392
  ) -> ApiResponse[PlaidAccountObject]:
393
393
  """Get a single account that is synced via Plaid
394
394
 
395
- Retrieve the details of the plaid account with the specified ID.
395
+ Retrieve the details of the plaid account with the specified ID
396
396
 
397
397
  :param id: ID of the plaid account to retrieve (required)
398
398
  :type id: int
@@ -464,7 +464,7 @@ class PlaidAccountsApi:
464
464
  ) -> RESTResponseType:
465
465
  """Get a single account that is synced via Plaid
466
466
 
467
- Retrieve the details of the plaid account with the specified ID.
467
+ Retrieve the details of the plaid account with the specified ID
468
468
 
469
469
  :param id: ID of the plaid account to retrieve (required)
470
470
  :type id: int
@@ -581,7 +581,7 @@ class PlaidAccountsApi:
581
581
  @validate_call
582
582
  async def trigger_plaid_account_fetch(
583
583
  self,
584
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
584
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
585
585
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
586
586
  id: Annotated[Optional[StrictInt], Field(description="Specific ID of a plaid account to fetch. If not set the endpoint will trigger a fetch for all eligible accounts.")] = None,
587
587
  _request_timeout: Union[
@@ -601,7 +601,7 @@ class PlaidAccountsApi:
601
601
 
602
602
  Use this endpoint to trigger a fetch for latest data from Plaid.<br><br> Eligible accounts are those who last_fetch value is over 1 minute ago. (Although the limit is every minute, please use this endpoint sparingly!) Successive calls to this endpoint under a minute after the first will return a 425 TOO EARLY response.<br><br> Successful calls will return a 202 ACCEPTED response. Note that fetching from Plaid is a background job. This endpoint simply queues up the job. You may track the `plaid_last_successful_update`, `last_fetch` and `last_import` properties to verify the results of the fetch. The `last fetch` property is updated when Plaid accepts a request to fetch data. The `plaid_last_successful_update`is updated when it successfully contacts the associated financial institution. The `last_import` field is updated only when new transactions have been imported.
603
603
 
604
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
604
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
605
605
  :type start_date: date
606
606
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
607
607
  :type end_date: date
@@ -661,7 +661,7 @@ class PlaidAccountsApi:
661
661
  @validate_call
662
662
  async def trigger_plaid_account_fetch_with_http_info(
663
663
  self,
664
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
664
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
665
665
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
666
666
  id: Annotated[Optional[StrictInt], Field(description="Specific ID of a plaid account to fetch. If not set the endpoint will trigger a fetch for all eligible accounts.")] = None,
667
667
  _request_timeout: Union[
@@ -681,7 +681,7 @@ class PlaidAccountsApi:
681
681
 
682
682
  Use this endpoint to trigger a fetch for latest data from Plaid.<br><br> Eligible accounts are those who last_fetch value is over 1 minute ago. (Although the limit is every minute, please use this endpoint sparingly!) Successive calls to this endpoint under a minute after the first will return a 425 TOO EARLY response.<br><br> Successful calls will return a 202 ACCEPTED response. Note that fetching from Plaid is a background job. This endpoint simply queues up the job. You may track the `plaid_last_successful_update`, `last_fetch` and `last_import` properties to verify the results of the fetch. The `last fetch` property is updated when Plaid accepts a request to fetch data. The `plaid_last_successful_update`is updated when it successfully contacts the associated financial institution. The `last_import` field is updated only when new transactions have been imported.
683
683
 
684
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
684
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
685
685
  :type start_date: date
686
686
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
687
687
  :type end_date: date
@@ -741,7 +741,7 @@ class PlaidAccountsApi:
741
741
  @validate_call
742
742
  async def trigger_plaid_account_fetch_without_preload_content(
743
743
  self,
744
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
744
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>")] = None,
745
745
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
746
746
  id: Annotated[Optional[StrictInt], Field(description="Specific ID of a plaid account to fetch. If not set the endpoint will trigger a fetch for all eligible accounts.")] = None,
747
747
  _request_timeout: Union[
@@ -761,7 +761,7 @@ class PlaidAccountsApi:
761
761
 
762
762
  Use this endpoint to trigger a fetch for latest data from Plaid.<br><br> Eligible accounts are those who last_fetch value is over 1 minute ago. (Although the limit is every minute, please use this endpoint sparingly!) Successive calls to this endpoint under a minute after the first will return a 425 TOO EARLY response.<br><br> Successful calls will return a 202 ACCEPTED response. Note that fetching from Plaid is a background job. This endpoint simply queues up the job. You may track the `plaid_last_successful_update`, `last_fetch` and `last_import` properties to verify the results of the fetch. The `last fetch` property is updated when Plaid accepts a request to fetch data. The `plaid_last_successful_update`is updated when it successfully contacts the associated financial institution. The `last_import` field is updated only when new transactions have been imported.
763
763
 
764
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
764
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. <br> Required if end_date exists. <br>
765
765
  :type start_date: date
766
766
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
767
767
  :type end_date: date
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -44,9 +44,9 @@ class SummaryApi:
44
44
  @validate_call
45
45
  async def get_budget_summary(
46
46
  self,
47
- start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD).")],
47
+ start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD)")],
48
48
  end_date: Annotated[date, Field(description="End of date range in ISO 8601 date format (YYYY-MM-DD).")],
49
- include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.")] = None,
49
+ include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array")] = None,
50
50
  include_occurrences: Annotated[Optional[StrictBool], Field(description="Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.")] = None,
51
51
  include_past_budget_dates: Annotated[Optional[StrictBool], Field(description="Enable to include the three budget occurrences prior to the start date in the `occurrences` array for each category in an aligned response. This property is ignored if `include_occurrences` is not also set to `true`.")] = None,
52
52
  include_totals: Annotated[Optional[StrictBool], Field(description="Enable to include a top-level `totals` section that summarizes the inflow and outflow across all transactions for the specified date range.")] = None,
@@ -66,13 +66,13 @@ class SummaryApi:
66
66
  ) -> GetBudgetSummary200Response:
67
67
  """Get summary
68
68
 
69
- Returns a summary of the budget activity for the specified date range.
69
+ Returns a summary of the budget activity for the specified date range
70
70
 
71
- :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD). (required)
71
+ :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD) (required)
72
72
  :type start_date: date
73
73
  :param end_date: End of date range in ISO 8601 date format (YYYY-MM-DD). (required)
74
74
  :type end_date: date
75
- :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.
75
+ :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array
76
76
  :type include_exclude_from_budgets: bool
77
77
  :param include_occurrences: Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.
78
78
  :type include_occurrences: bool
@@ -138,9 +138,9 @@ class SummaryApi:
138
138
  @validate_call
139
139
  async def get_budget_summary_with_http_info(
140
140
  self,
141
- start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD).")],
141
+ start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD)")],
142
142
  end_date: Annotated[date, Field(description="End of date range in ISO 8601 date format (YYYY-MM-DD).")],
143
- include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.")] = None,
143
+ include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array")] = None,
144
144
  include_occurrences: Annotated[Optional[StrictBool], Field(description="Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.")] = None,
145
145
  include_past_budget_dates: Annotated[Optional[StrictBool], Field(description="Enable to include the three budget occurrences prior to the start date in the `occurrences` array for each category in an aligned response. This property is ignored if `include_occurrences` is not also set to `true`.")] = None,
146
146
  include_totals: Annotated[Optional[StrictBool], Field(description="Enable to include a top-level `totals` section that summarizes the inflow and outflow across all transactions for the specified date range.")] = None,
@@ -160,13 +160,13 @@ class SummaryApi:
160
160
  ) -> ApiResponse[GetBudgetSummary200Response]:
161
161
  """Get summary
162
162
 
163
- Returns a summary of the budget activity for the specified date range.
163
+ Returns a summary of the budget activity for the specified date range
164
164
 
165
- :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD). (required)
165
+ :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD) (required)
166
166
  :type start_date: date
167
167
  :param end_date: End of date range in ISO 8601 date format (YYYY-MM-DD). (required)
168
168
  :type end_date: date
169
- :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.
169
+ :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array
170
170
  :type include_exclude_from_budgets: bool
171
171
  :param include_occurrences: Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.
172
172
  :type include_occurrences: bool
@@ -232,9 +232,9 @@ class SummaryApi:
232
232
  @validate_call
233
233
  async def get_budget_summary_without_preload_content(
234
234
  self,
235
- start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD).")],
235
+ start_date: Annotated[date, Field(description="Start of date range in ISO 8601 date format (YYYY-MM-DD)")],
236
236
  end_date: Annotated[date, Field(description="End of date range in ISO 8601 date format (YYYY-MM-DD).")],
237
- include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.")] = None,
237
+ include_exclude_from_budgets: Annotated[Optional[StrictBool], Field(description="Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array")] = None,
238
238
  include_occurrences: Annotated[Optional[StrictBool], Field(description="Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.")] = None,
239
239
  include_past_budget_dates: Annotated[Optional[StrictBool], Field(description="Enable to include the three budget occurrences prior to the start date in the `occurrences` array for each category in an aligned response. This property is ignored if `include_occurrences` is not also set to `true`.")] = None,
240
240
  include_totals: Annotated[Optional[StrictBool], Field(description="Enable to include a top-level `totals` section that summarizes the inflow and outflow across all transactions for the specified date range.")] = None,
@@ -254,13 +254,13 @@ class SummaryApi:
254
254
  ) -> RESTResponseType:
255
255
  """Get summary
256
256
 
257
- Returns a summary of the budget activity for the specified date range.
257
+ Returns a summary of the budget activity for the specified date range
258
258
 
259
- :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD). (required)
259
+ :param start_date: Start of date range in ISO 8601 date format (YYYY-MM-DD) (required)
260
260
  :type start_date: date
261
261
  :param end_date: End of date range in ISO 8601 date format (YYYY-MM-DD). (required)
262
262
  :type end_date: date
263
- :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array.
263
+ :param include_exclude_from_budgets: Enable to include categories that have the 'Exclude from Budgets' flag set in the returned `categories` array
264
264
  :type include_exclude_from_budgets: bool
265
265
  :param include_occurrences: Enable to include an `occurrences` array for each category in an aligned response. Each array will include an object for each budget period that falls within the specified date range which includes details on the activity for the budget period.
266
266
  :type include_occurrences: bool
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -626,7 +626,7 @@ class TransactionsBulkApi:
626
626
  @validate_call
627
627
  async def get_all_transactions(
628
628
  self,
629
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
629
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
630
630
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
631
631
  created_since: Annotated[Optional[Any], Field(description="Filter transactions to those created after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
632
632
  updated_since: Annotated[Optional[Any], Field(description="Filter transactions to those updated after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
@@ -663,7 +663,7 @@ class TransactionsBulkApi:
663
663
 
664
664
  Retrieve a list of all transactions associated with a user's account. <br>If called with no parameters, this endpoint will return the most recent transactions up to `limit` number of transactions.
665
665
 
666
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
666
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
667
667
  :type start_date: date
668
668
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
669
669
  :type end_date: date
@@ -773,7 +773,7 @@ class TransactionsBulkApi:
773
773
  @validate_call
774
774
  async def get_all_transactions_with_http_info(
775
775
  self,
776
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
776
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
777
777
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
778
778
  created_since: Annotated[Optional[Any], Field(description="Filter transactions to those created after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
779
779
  updated_since: Annotated[Optional[Any], Field(description="Filter transactions to those updated after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
@@ -810,7 +810,7 @@ class TransactionsBulkApi:
810
810
 
811
811
  Retrieve a list of all transactions associated with a user's account. <br>If called with no parameters, this endpoint will return the most recent transactions up to `limit` number of transactions.
812
812
 
813
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
813
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
814
814
  :type start_date: date
815
815
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
816
816
  :type end_date: date
@@ -920,7 +920,7 @@ class TransactionsBulkApi:
920
920
  @validate_call
921
921
  async def get_all_transactions_without_preload_content(
922
922
  self,
923
- start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
923
+ start_date: Annotated[Optional[date], Field(description="Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>")] = None,
924
924
  end_date: Annotated[Optional[date], Field(description="Denotes the end of the time period you'd like to get transactions for. Required if start_date exists. ")] = None,
925
925
  created_since: Annotated[Optional[Any], Field(description="Filter transactions to those created after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
926
926
  updated_since: Annotated[Optional[Any], Field(description="Filter transactions to those updated after the specified timestamp. Accepts either a date (YYYY-MM-DD) or ISO 8601 datetime string. Date-only values are interpreted as midnight UTC (00:00:00Z).")] = None,
@@ -957,7 +957,7 @@ class TransactionsBulkApi:
957
957
 
958
958
  Retrieve a list of all transactions associated with a user's account. <br>If called with no parameters, this endpoint will return the most recent transactions up to `limit` number of transactions.
959
959
 
960
- :param start_date: Denotes the beginning of the time period to fetch transactions for. If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
960
+ :param start_date: Denotes the beginning of the time period to fetch transactions for If omitted, the most recent transactions will be returned. See `limit`. Required if end_date exists. <br>
961
961
  :type start_date: date
962
962
  :param end_date: Denotes the end of the time period you'd like to get transactions for. Required if start_date exists.
963
963
  :type end_date: date
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  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)
7
7
 
8
- The version of the OpenAPI document: 2.8.4
8
+ The version of the OpenAPI document: 2.8.5
9
9
  Contact: devsupport@lunchmoney.app
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11