lunchmoney-python 2.23.0__tar.gz → 2.25.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.
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/PKG-INFO +17 -30
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/README.md +16 -29
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/__init__.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/budgets_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/categories_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/manual_accounts_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/me_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/plaid_accounts_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/recurring_items_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/summary_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/tags_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_bulk_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_files_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_group_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_split_api.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api_client.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/configuration.py +4 -4
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/exceptions.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/__init__.py +2 -2
- lunchmoney_python-2.25.0/lunchmoney/models/account_type_enum.py +46 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/budget_invalid_period_error_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/budget_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/budget_settings_response_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/budget_upsert_response_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/category_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/child_category_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/child_transaction_object.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_category_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_category_request_object_children_inner.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_manual_account_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_manual_account_request_object_balance.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_manual_account_request_object_closed_on.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_new_transactions_request.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/create_tag_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/currency_enum.py +7 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/delete_category_response_with_dependencies.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/delete_category_response_with_dependencies_dependents.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/delete_tag_response_with_dependencies.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/delete_transactions_request.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/error_response_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/error_response_object_errors_inner.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_categories200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_manual_accounts200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_plaid_accounts200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_recurring200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_tags200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_transactions200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_all_transactions_created_since_parameter.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_transaction_attachment_url200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/group_transactions_request.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/insert_transaction_object.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/insert_transaction_object_amount.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/insert_transactions_response_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/manual_account_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/plaid_account_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/recurring_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/recurring_object_matches.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/recurring_object_matches_found_transactions_inner.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/recurring_object_overrides.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/recurring_object_transaction_criteria.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/skipped_existing_external_id_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/split_transaction_object.py +4 -4
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/split_transaction_object_amount.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/split_transaction_request.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_category_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_category_occurrence_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_category_totals_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_recurring_transaction_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_response_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_rollover_pool_adjustment_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_rollover_pool_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_totals_breakdown_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/summary_totals_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/tag_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/transaction_attachment_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/transaction_object.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_category_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_manual_account_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_manual_account_request_object_balance.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_manual_account_request_object_closed_on.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_tag_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_transaction_object.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_transaction_object_amount.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_transactions200_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_transactions_request.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/update_transactions_request_transactions_inner.py +3 -3
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/upsert_budget400_response.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/upsert_budget_request_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/upsert_budget_request_object_amount.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/user_object.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/rest.py +2 -2
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney_python.egg-info/PKG-INFO +17 -30
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/pyproject.toml +1 -1
- lunchmoney_python-2.25.0/setup.py +51 -0
- lunchmoney_python-2.23.0/lunchmoney/models/account_type_enum.py +0 -46
- lunchmoney_python-2.23.0/setup.py +0 -51
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/__init__.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/app.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/aligned_category_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/aligned_summary_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/aligned_summary_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/get_budget_summary200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/non_aligned_category_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/non_aligned_summary_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/models/non_aligned_summary_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/py.typed +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney_python.egg-info/SOURCES.txt +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney_python.egg-info/dependency_links.txt +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney_python.egg-info/requires.txt +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney_python.egg-info/top_level.txt +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/setup.cfg +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_account_type_enum.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_aligned_category_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_aligned_summary_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_aligned_summary_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_app.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_budget_invalid_period_error_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_budget_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_budget_settings_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_budget_upsert_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_budgets_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_categories_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_child_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_child_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_category_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_category_request_object_children_inner.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_manual_account_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_manual_account_request_object_balance.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_manual_account_request_object_closed_on.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_new_transactions_request.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_create_tag_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_currency_enum.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_delete_category_response_with_dependencies.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_delete_category_response_with_dependencies_dependents.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_delete_tag_response_with_dependencies.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_delete_tag_response_with_dependencies_dependents.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_delete_transactions_request.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_error_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_error_response_object_errors_inner.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_categories200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_manual_accounts200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_plaid_accounts200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_recurring200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_tags200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_transactions200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_all_transactions_created_since_parameter.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_budget_summary200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_get_transaction_attachment_url200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_group_transactions_request.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_insert_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_insert_transaction_object_amount.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_insert_transactions_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_manual_account_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_manual_accounts_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_me_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_non_aligned_category_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_non_aligned_summary_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_non_aligned_summary_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_plaid_account_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_plaid_accounts_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_items_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_object_matches.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_object_matches_found_transactions_inner.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_object_overrides.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_recurring_object_transaction_criteria.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_skipped_existing_external_id_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_split_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_split_transaction_object_amount.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_split_transaction_request.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_category_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_category_occurrence_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_category_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_recurring_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_response_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_rollover_pool_adjustment_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_rollover_pool_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_totals_breakdown_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_summary_totals_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_tag_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_tags_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transaction_attachment_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transactions_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transactions_bulk_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transactions_files_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transactions_group_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_transactions_split_api.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_category_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_manual_account_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_manual_account_request_object_balance.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_manual_account_request_object_closed_on.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_tag_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_transaction_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_transaction_object_amount.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_transactions200_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_transactions_request.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_update_transactions_request_transactions_inner.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_upsert_budget400_response.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_upsert_budget_request_object.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_upsert_budget_request_object_amount.py +0 -0
- {lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/test/test_user_object.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lunchmoney-python
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.25.0
|
|
4
4
|
Summary: Lunch Money API - v2
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: OpenAPI Generator community
|
|
@@ -17,45 +17,32 @@ Requires-Dist: typing-extensions>=4.7.1
|
|
|
17
17
|
Dynamic: author
|
|
18
18
|
|
|
19
19
|
# lunchmoney-python
|
|
20
|
-
Welcome to the Lunch Money v2 API.
|
|
20
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers).
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
### Introduction
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
<span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span>
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
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>
|
|
28
|
-
See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<p>
|
|
26
|
+
**Static Mock Server**
|
|
29
27
|
|
|
30
|
-
|
|
28
|
+
Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters.
|
|
31
29
|
|
|
32
|
-
|
|
30
|
+
**Migrating from v1**
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
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>
|
|
36
|
-
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>
|
|
37
|
-
When using this server, set your Bearer token to any string with 11 or more characters.
|
|
32
|
+
The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details.
|
|
38
33
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Useful links:
|
|
48
|
-
- [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
|
|
49
|
-
- [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog)
|
|
50
|
-
- [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide)
|
|
51
|
-
- [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits)
|
|
52
|
-
- [Current v1 Lunch Money API Documentation](https://lunchmoney.dev)
|
|
53
|
-
- [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
|
|
34
|
+
**Useful links**
|
|
35
|
+
- [Developer Portal](https://lunchmoney.dev/v2/introduction)
|
|
36
|
+
- [Getting Started Guide](https://lunchmoney.dev/v2/getting-started)
|
|
37
|
+
- [v2 API Overview](https://lunchmoney.dev/v2/overview)
|
|
38
|
+
- [v2 API Changelog](https://lunchmoney.dev/v2/changelog)
|
|
39
|
+
- [Migration Guide](https://lunchmoney.dev/v2/migration-guide)
|
|
40
|
+
- [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
54
41
|
|
|
55
42
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
56
43
|
|
|
57
|
-
- API version: 2.9.
|
|
58
|
-
- Package version: 2.
|
|
44
|
+
- API version: 2.9.4
|
|
45
|
+
- Package version: 2.25.0
|
|
59
46
|
- Generator version: 7.17.0
|
|
60
47
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
61
48
|
|
|
@@ -1,43 +1,30 @@
|
|
|
1
1
|
# lunchmoney-python
|
|
2
|
-
Welcome to the Lunch Money v2 API.
|
|
2
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers).
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
### Introduction
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
<span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span>
|
|
7
7
|
|
|
8
|
-
|
|
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>
|
|
8
|
+
**Static Mock Server**
|
|
11
9
|
|
|
12
|
-
|
|
10
|
+
Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters.
|
|
13
11
|
|
|
14
|
-
|
|
12
|
+
**Migrating from v1**
|
|
15
13
|
|
|
16
|
-
|
|
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
|
-
When using this server, set your Bearer token to any string with 11 or more characters.
|
|
14
|
+
The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details.
|
|
20
15
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Useful links:
|
|
30
|
-
- [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started)
|
|
31
|
-
- [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog)
|
|
32
|
-
- [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide)
|
|
33
|
-
- [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits)
|
|
34
|
-
- [Current v1 Lunch Money API Documentation](https://lunchmoney.dev)
|
|
35
|
-
- [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
|
|
16
|
+
**Useful links**
|
|
17
|
+
- [Developer Portal](https://lunchmoney.dev/v2/introduction)
|
|
18
|
+
- [Getting Started Guide](https://lunchmoney.dev/v2/getting-started)
|
|
19
|
+
- [v2 API Overview](https://lunchmoney.dev/v2/overview)
|
|
20
|
+
- [v2 API Changelog](https://lunchmoney.dev/v2/changelog)
|
|
21
|
+
- [Migration Guide](https://lunchmoney.dev/v2/migration-guide)
|
|
22
|
+
- [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
36
23
|
|
|
37
24
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
38
25
|
|
|
39
|
-
- API version: 2.9.
|
|
40
|
-
- Package version: 2.
|
|
26
|
+
- API version: 2.9.4
|
|
27
|
+
- Package version: 2.25.0
|
|
41
28
|
- Generator version: 7.17.0
|
|
42
29
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
43
30
|
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"""
|
|
6
6
|
Lunch Money API - v2
|
|
7
7
|
|
|
8
|
-
Welcome to the Lunch Money v2 API.
|
|
8
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
9
9
|
|
|
10
|
-
The version of the OpenAPI document: 2.9.
|
|
10
|
+
The version of the OpenAPI document: 2.9.4
|
|
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
|
+
__version__ = "2.25.0"
|
|
19
19
|
|
|
20
20
|
# Define package exports
|
|
21
21
|
__all__ = [
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_bulk_api.py
RENAMED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_files_api.py
RENAMED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_group_api.py
RENAMED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{lunchmoney_python-2.23.0 → lunchmoney_python-2.25.0}/lunchmoney/api/transactions_split_api.py
RENAMED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -92,7 +92,7 @@ class ApiClient:
|
|
|
92
92
|
self.default_headers[header_name] = header_value
|
|
93
93
|
self.cookie = cookie
|
|
94
94
|
# Set default User-Agent.
|
|
95
|
-
self.user_agent = 'OpenAPI-Generator/2.
|
|
95
|
+
self.user_agent = 'OpenAPI-Generator/2.25.0/python'
|
|
96
96
|
self.client_side_validation = configuration.client_side_validation
|
|
97
97
|
|
|
98
98
|
def __enter__(self):
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -544,8 +544,8 @@ conf = lunchmoney.Configuration(
|
|
|
544
544
|
return "Python SDK Debug Report:\n"\
|
|
545
545
|
"OS: {env}\n"\
|
|
546
546
|
"Python Version: {pyversion}\n"\
|
|
547
|
-
"Version of the API: 2.9.
|
|
548
|
-
"SDK Package Version: 2.
|
|
547
|
+
"Version of the API: 2.9.4\n"\
|
|
548
|
+
"SDK Package Version: 2.25.0".\
|
|
549
549
|
format(env=sys.platform, pyversion=sys.version)
|
|
550
550
|
|
|
551
551
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Lunch Money API - v2
|
|
5
5
|
|
|
6
|
-
Welcome to the Lunch Money v2 API.
|
|
6
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.9.
|
|
8
|
+
The version of the OpenAPI document: 2.9.4
|
|
9
9
|
Contact: devsupport@lunchmoney.app
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
"""
|
|
5
5
|
Lunch Money API - v2
|
|
6
6
|
|
|
7
|
-
Welcome to the Lunch Money v2 API.
|
|
7
|
+
Welcome to the Lunch Money v2 API. The API is available at `https://api.lunchmoney.dev/v2`. Get your access token from the [Lunch Money developers page](https://my.lunchmoney.app/developers). ### Introduction <span class=\"red-text\"><strong>The v2 API is in open alpha and is still subject to change. Use the mock server or a test budget when getting started.</strong></span> **Static Mock Server** Explore the API without an access token or risk to real data. Select **\"Static Mock v2 Lunch Money API Server\"** from the Server dropdown, then set your Bearer token to any string with 11 or more characters. **Migrating from v1** The v2 API is not backwards compatible with v1. See the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) for details. **Useful links** - [Developer Portal](https://lunchmoney.dev/v2/introduction) - [Getting Started Guide](https://lunchmoney.dev/v2/getting-started) - [v2 API Overview](https://lunchmoney.dev/v2/overview) - [v2 API Changelog](https://lunchmoney.dev/v2/changelog) - [Migration Guide](https://lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://lunchmoney.dev/v2/rate-limits)
|
|
8
8
|
|
|
9
|
-
The version of the OpenAPI document: 2.9.
|
|
9
|
+
The version of the OpenAPI document: 2.9.4
|
|
10
10
|
Contact: devsupport@lunchmoney.app
|
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
12
|
|