lunchmoney-python 2.9.0__py3-none-any.whl
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/__init__.py +205 -0
- lunchmoney/api/__init__.py +16 -0
- lunchmoney/api/categories_api.py +1499 -0
- lunchmoney/api/manual_accounts_api.py +1479 -0
- lunchmoney/api/me_api.py +293 -0
- lunchmoney/api/plaid_accounts_api.py +909 -0
- lunchmoney/api/recurring_items_api.py +702 -0
- lunchmoney/api/summary_api.py +434 -0
- lunchmoney/api/tags_api.py +1465 -0
- lunchmoney/api/transactions_api.py +914 -0
- lunchmoney/api/transactions_bulk_api.py +1527 -0
- lunchmoney/api/transactions_files_api.py +891 -0
- lunchmoney/api/transactions_group_api.py +601 -0
- lunchmoney/api/transactions_split_api.py +616 -0
- lunchmoney/api_client.py +805 -0
- lunchmoney/api_response.py +21 -0
- lunchmoney/configuration.py +620 -0
- lunchmoney/exceptions.py +217 -0
- lunchmoney/models/__init__.py +84 -0
- lunchmoney/models/account_type_enum.py +46 -0
- lunchmoney/models/aligned_category_totals_object.py +108 -0
- lunchmoney/models/aligned_summary_category_object.py +110 -0
- lunchmoney/models/aligned_summary_response_object.py +104 -0
- lunchmoney/models/category_object.py +146 -0
- lunchmoney/models/child_category_object.py +141 -0
- lunchmoney/models/child_transaction_object.py +219 -0
- lunchmoney/models/create_category_request_object.py +137 -0
- lunchmoney/models/create_category_request_object_children_inner.py +159 -0
- lunchmoney/models/create_manual_account_request_object.py +138 -0
- lunchmoney/models/create_manual_account_request_object_balance.py +145 -0
- lunchmoney/models/create_new_transactions_request.py +103 -0
- lunchmoney/models/create_tag_request_object.py +112 -0
- lunchmoney/models/currency_enum.py +198 -0
- lunchmoney/models/delete_category_response_with_dependencies.py +94 -0
- lunchmoney/models/delete_category_response_with_dependencies_dependents.py +98 -0
- lunchmoney/models/delete_tag_response_with_dependencies.py +94 -0
- lunchmoney/models/delete_tag_response_with_dependencies_dependents.py +90 -0
- lunchmoney/models/delete_transactions_request.py +89 -0
- lunchmoney/models/error_response_object.py +98 -0
- lunchmoney/models/error_response_object_errors_inner.py +101 -0
- lunchmoney/models/get_all_categories200_response.py +96 -0
- lunchmoney/models/get_all_manual_accounts200_response.py +96 -0
- lunchmoney/models/get_all_plaid_accounts200_response.py +96 -0
- lunchmoney/models/get_all_recurring200_response.py +96 -0
- lunchmoney/models/get_all_tags200_response.py +96 -0
- lunchmoney/models/get_all_transactions200_response.py +100 -0
- lunchmoney/models/get_all_transactions_created_since_parameter.py +145 -0
- lunchmoney/models/get_budget_summary200_response.py +138 -0
- lunchmoney/models/get_transaction_attachment_url200_response.py +91 -0
- lunchmoney/models/group_transactions_request.py +122 -0
- lunchmoney/models/insert_transaction_object.py +164 -0
- lunchmoney/models/insert_transaction_object_amount.py +145 -0
- lunchmoney/models/insert_transactions_response_object.py +106 -0
- lunchmoney/models/manual_account_object.py +158 -0
- lunchmoney/models/non_aligned_category_totals_object.py +94 -0
- lunchmoney/models/non_aligned_summary_category_object.py +94 -0
- lunchmoney/models/non_aligned_summary_response_object.py +104 -0
- lunchmoney/models/plaid_account_object.py +168 -0
- lunchmoney/models/recurring_object.py +143 -0
- lunchmoney/models/recurring_object_matches.py +105 -0
- lunchmoney/models/recurring_object_matches_found_transactions_inner.py +91 -0
- lunchmoney/models/recurring_object_overrides.py +92 -0
- lunchmoney/models/recurring_object_transaction_criteria.py +149 -0
- lunchmoney/models/skipped_existing_external_id_object.py +108 -0
- lunchmoney/models/split_transaction_object.py +102 -0
- lunchmoney/models/split_transaction_object_amount.py +145 -0
- lunchmoney/models/split_transaction_request.py +97 -0
- lunchmoney/models/summary_category_occurrence_object.py +126 -0
- lunchmoney/models/summary_recurring_transaction_object.py +100 -0
- lunchmoney/models/summary_rollover_pool_adjustment_object.py +98 -0
- lunchmoney/models/summary_rollover_pool_object.py +98 -0
- lunchmoney/models/summary_totals_breakdown_object.py +98 -0
- lunchmoney/models/summary_totals_object.py +97 -0
- lunchmoney/models/tag_object.py +125 -0
- lunchmoney/models/transaction_attachment_object.py +106 -0
- lunchmoney/models/transaction_object.py +229 -0
- lunchmoney/models/update_category_request_object.py +156 -0
- lunchmoney/models/update_manual_account_request_object.py +156 -0
- lunchmoney/models/update_manual_account_request_object_balance.py +145 -0
- lunchmoney/models/update_tag_request_object.py +126 -0
- lunchmoney/models/update_transaction_object.py +228 -0
- lunchmoney/models/update_transaction_object_amount.py +145 -0
- lunchmoney/models/update_transactions200_response.py +96 -0
- lunchmoney/models/update_transactions_request.py +97 -0
- lunchmoney/models/update_transactions_request_transactions_inner.py +228 -0
- lunchmoney/models/user_object.py +106 -0
- lunchmoney/py.typed +0 -0
- lunchmoney/rest.py +259 -0
- lunchmoney_python-2.9.0.dist-info/METADATA +285 -0
- lunchmoney_python-2.9.0.dist-info/RECORD +92 -0
- lunchmoney_python-2.9.0.dist-info/WHEEL +5 -0
- lunchmoney_python-2.9.0.dist-info/top_level.txt +1 -0
lunchmoney/__init__.py
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Lunch Money API - v2
|
|
7
|
+
|
|
8
|
+
Welcome to the Lunch Money v2 API. A working version of this API is now available through these docs, or directly at: `https://api.lunchmoney.dev/v2` <span class=\"red-text\"><strong>This is in alpha launch of a major API update. It is still subject to change during this alpha review period and bugs may still exist. Users are strongly encouraged to use the mock service or to create a test budget with example data as the first step to interacting with the v2 API.</strong></span> See the [Getting Started Guide](https://alpha.lunchmoney.dev/v2/getting-started) for more information on using a test budget.<br<br> If you are new to the v2 API, you may wish to review the [v2 API Overview of Changes](https://alpha.lunchmoney.dev/v2/changelog). ### Static Mock Server You may also use these docs to explore the API using a static mock server endpoint.<p> This enables users to become familiar with the API without having to create an access token, and eliminates the possibility of modifying real data. <p> To access this endpoint select the second endpoint in the the \"Server\" dropdown to the right. When selected you should see \"Static Mock v2 Lunch Money API Server\".<br> When using this server, set your Bearer token to any string with 11 or more characters. ### Migrating from V1 The v2 API is NOT backwards compatible with the v1 API. Developers are encouraged to review the [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) to understand the changes and plan their migration. ### Acknowledgments If you have been providing feedback on the API during our iterative design process, **THANK YOU**. We are happy to provide the opportunity to finally interact with the working API that was built based on your feedback. ### Useful links: - [Getting Started](https://alpha.lunchmoney.dev/v2/getting-started) - [v2 API Changelog](https://alpha.lunchmoney.dev/v2/changelog) - [Migration Guide](https://alpha.lunchmoney.dev/v2/migration-guide) - [Rate Limits](https://alpha.lunchmoney.dev/v2/rate-limits) - [Current v1 Lunch Money API Documentation](https://lunchmoney.dev) - [Awesome Lunch Money Projects](https://github.com/lunch-money/awesome-lunchmoney?tab=readme-ov-file)
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 2.8.4
|
|
11
|
+
Contact: devsupport@lunchmoney.app
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "2.9.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"CategoriesApi",
|
|
23
|
+
"ManualAccountsApi",
|
|
24
|
+
"MeApi",
|
|
25
|
+
"PlaidAccountsApi",
|
|
26
|
+
"RecurringItemsApi",
|
|
27
|
+
"SummaryApi",
|
|
28
|
+
"TagsApi",
|
|
29
|
+
"TransactionsApi",
|
|
30
|
+
"TransactionsBulkApi",
|
|
31
|
+
"TransactionsFilesApi",
|
|
32
|
+
"TransactionsGroupApi",
|
|
33
|
+
"TransactionsSplitApi",
|
|
34
|
+
"ApiResponse",
|
|
35
|
+
"ApiClient",
|
|
36
|
+
"Configuration",
|
|
37
|
+
"OpenApiException",
|
|
38
|
+
"ApiTypeError",
|
|
39
|
+
"ApiValueError",
|
|
40
|
+
"ApiKeyError",
|
|
41
|
+
"ApiAttributeError",
|
|
42
|
+
"ApiException",
|
|
43
|
+
"AccountTypeEnum",
|
|
44
|
+
"AlignedCategoryTotalsObject",
|
|
45
|
+
"AlignedSummaryCategoryObject",
|
|
46
|
+
"AlignedSummaryResponseObject",
|
|
47
|
+
"CategoryObject",
|
|
48
|
+
"ChildCategoryObject",
|
|
49
|
+
"ChildTransactionObject",
|
|
50
|
+
"CreateCategoryRequestObject",
|
|
51
|
+
"CreateCategoryRequestObjectChildrenInner",
|
|
52
|
+
"CreateManualAccountRequestObject",
|
|
53
|
+
"CreateManualAccountRequestObjectBalance",
|
|
54
|
+
"CreateNewTransactionsRequest",
|
|
55
|
+
"CreateTagRequestObject",
|
|
56
|
+
"CurrencyEnum",
|
|
57
|
+
"DeleteCategoryResponseWithDependencies",
|
|
58
|
+
"DeleteCategoryResponseWithDependenciesDependents",
|
|
59
|
+
"DeleteTagResponseWithDependencies",
|
|
60
|
+
"DeleteTagResponseWithDependenciesDependents",
|
|
61
|
+
"DeleteTransactionsRequest",
|
|
62
|
+
"ErrorResponseObject",
|
|
63
|
+
"ErrorResponseObjectErrorsInner",
|
|
64
|
+
"GetAllCategories200Response",
|
|
65
|
+
"GetAllManualAccounts200Response",
|
|
66
|
+
"GetAllPlaidAccounts200Response",
|
|
67
|
+
"GetAllRecurring200Response",
|
|
68
|
+
"GetAllTags200Response",
|
|
69
|
+
"GetAllTransactions200Response",
|
|
70
|
+
"GetAllTransactionsCreatedSinceParameter",
|
|
71
|
+
"GetBudgetSummary200Response",
|
|
72
|
+
"GetTransactionAttachmentUrl200Response",
|
|
73
|
+
"GroupTransactionsRequest",
|
|
74
|
+
"InsertTransactionObject",
|
|
75
|
+
"InsertTransactionObjectAmount",
|
|
76
|
+
"InsertTransactionsResponseObject",
|
|
77
|
+
"ManualAccountObject",
|
|
78
|
+
"NonAlignedCategoryTotalsObject",
|
|
79
|
+
"NonAlignedSummaryCategoryObject",
|
|
80
|
+
"NonAlignedSummaryResponseObject",
|
|
81
|
+
"PlaidAccountObject",
|
|
82
|
+
"RecurringObject",
|
|
83
|
+
"RecurringObjectMatches",
|
|
84
|
+
"RecurringObjectMatchesFoundTransactionsInner",
|
|
85
|
+
"RecurringObjectOverrides",
|
|
86
|
+
"RecurringObjectTransactionCriteria",
|
|
87
|
+
"SkippedExistingExternalIdObject",
|
|
88
|
+
"SplitTransactionObject",
|
|
89
|
+
"SplitTransactionObjectAmount",
|
|
90
|
+
"SplitTransactionRequest",
|
|
91
|
+
"SummaryCategoryOccurrenceObject",
|
|
92
|
+
"SummaryRecurringTransactionObject",
|
|
93
|
+
"SummaryRolloverPoolAdjustmentObject",
|
|
94
|
+
"SummaryRolloverPoolObject",
|
|
95
|
+
"SummaryTotalsBreakdownObject",
|
|
96
|
+
"SummaryTotalsObject",
|
|
97
|
+
"TagObject",
|
|
98
|
+
"TransactionAttachmentObject",
|
|
99
|
+
"TransactionObject",
|
|
100
|
+
"UpdateCategoryRequestObject",
|
|
101
|
+
"UpdateManualAccountRequestObject",
|
|
102
|
+
"UpdateManualAccountRequestObjectBalance",
|
|
103
|
+
"UpdateTagRequestObject",
|
|
104
|
+
"UpdateTransactionObject",
|
|
105
|
+
"UpdateTransactionObjectAmount",
|
|
106
|
+
"UpdateTransactions200Response",
|
|
107
|
+
"UpdateTransactionsRequest",
|
|
108
|
+
"UpdateTransactionsRequestTransactionsInner",
|
|
109
|
+
"UserObject",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
# import apis into sdk package
|
|
113
|
+
from lunchmoney.api.categories_api import CategoriesApi as CategoriesApi
|
|
114
|
+
from lunchmoney.api.manual_accounts_api import ManualAccountsApi as ManualAccountsApi
|
|
115
|
+
from lunchmoney.api.me_api import MeApi as MeApi
|
|
116
|
+
from lunchmoney.api.plaid_accounts_api import PlaidAccountsApi as PlaidAccountsApi
|
|
117
|
+
from lunchmoney.api.recurring_items_api import RecurringItemsApi as RecurringItemsApi
|
|
118
|
+
from lunchmoney.api.summary_api import SummaryApi as SummaryApi
|
|
119
|
+
from lunchmoney.api.tags_api import TagsApi as TagsApi
|
|
120
|
+
from lunchmoney.api.transactions_api import TransactionsApi as TransactionsApi
|
|
121
|
+
from lunchmoney.api.transactions_bulk_api import TransactionsBulkApi as TransactionsBulkApi
|
|
122
|
+
from lunchmoney.api.transactions_files_api import TransactionsFilesApi as TransactionsFilesApi
|
|
123
|
+
from lunchmoney.api.transactions_group_api import TransactionsGroupApi as TransactionsGroupApi
|
|
124
|
+
from lunchmoney.api.transactions_split_api import TransactionsSplitApi as TransactionsSplitApi
|
|
125
|
+
|
|
126
|
+
# import ApiClient
|
|
127
|
+
from lunchmoney.api_response import ApiResponse as ApiResponse
|
|
128
|
+
from lunchmoney.api_client import ApiClient as ApiClient
|
|
129
|
+
from lunchmoney.configuration import Configuration as Configuration
|
|
130
|
+
from lunchmoney.exceptions import OpenApiException as OpenApiException
|
|
131
|
+
from lunchmoney.exceptions import ApiTypeError as ApiTypeError
|
|
132
|
+
from lunchmoney.exceptions import ApiValueError as ApiValueError
|
|
133
|
+
from lunchmoney.exceptions import ApiKeyError as ApiKeyError
|
|
134
|
+
from lunchmoney.exceptions import ApiAttributeError as ApiAttributeError
|
|
135
|
+
from lunchmoney.exceptions import ApiException as ApiException
|
|
136
|
+
|
|
137
|
+
# import models into sdk package
|
|
138
|
+
from lunchmoney.models.account_type_enum import AccountTypeEnum as AccountTypeEnum
|
|
139
|
+
from lunchmoney.models.aligned_category_totals_object import AlignedCategoryTotalsObject as AlignedCategoryTotalsObject
|
|
140
|
+
from lunchmoney.models.aligned_summary_category_object import AlignedSummaryCategoryObject as AlignedSummaryCategoryObject
|
|
141
|
+
from lunchmoney.models.aligned_summary_response_object import AlignedSummaryResponseObject as AlignedSummaryResponseObject
|
|
142
|
+
from lunchmoney.models.category_object import CategoryObject as CategoryObject
|
|
143
|
+
from lunchmoney.models.child_category_object import ChildCategoryObject as ChildCategoryObject
|
|
144
|
+
from lunchmoney.models.child_transaction_object import ChildTransactionObject as ChildTransactionObject
|
|
145
|
+
from lunchmoney.models.create_category_request_object import CreateCategoryRequestObject as CreateCategoryRequestObject
|
|
146
|
+
from lunchmoney.models.create_category_request_object_children_inner import CreateCategoryRequestObjectChildrenInner as CreateCategoryRequestObjectChildrenInner
|
|
147
|
+
from lunchmoney.models.create_manual_account_request_object import CreateManualAccountRequestObject as CreateManualAccountRequestObject
|
|
148
|
+
from lunchmoney.models.create_manual_account_request_object_balance import CreateManualAccountRequestObjectBalance as CreateManualAccountRequestObjectBalance
|
|
149
|
+
from lunchmoney.models.create_new_transactions_request import CreateNewTransactionsRequest as CreateNewTransactionsRequest
|
|
150
|
+
from lunchmoney.models.create_tag_request_object import CreateTagRequestObject as CreateTagRequestObject
|
|
151
|
+
from lunchmoney.models.currency_enum import CurrencyEnum as CurrencyEnum
|
|
152
|
+
from lunchmoney.models.delete_category_response_with_dependencies import DeleteCategoryResponseWithDependencies as DeleteCategoryResponseWithDependencies
|
|
153
|
+
from lunchmoney.models.delete_category_response_with_dependencies_dependents import DeleteCategoryResponseWithDependenciesDependents as DeleteCategoryResponseWithDependenciesDependents
|
|
154
|
+
from lunchmoney.models.delete_tag_response_with_dependencies import DeleteTagResponseWithDependencies as DeleteTagResponseWithDependencies
|
|
155
|
+
from lunchmoney.models.delete_tag_response_with_dependencies_dependents import DeleteTagResponseWithDependenciesDependents as DeleteTagResponseWithDependenciesDependents
|
|
156
|
+
from lunchmoney.models.delete_transactions_request import DeleteTransactionsRequest as DeleteTransactionsRequest
|
|
157
|
+
from lunchmoney.models.error_response_object import ErrorResponseObject as ErrorResponseObject
|
|
158
|
+
from lunchmoney.models.error_response_object_errors_inner import ErrorResponseObjectErrorsInner as ErrorResponseObjectErrorsInner
|
|
159
|
+
from lunchmoney.models.get_all_categories200_response import GetAllCategories200Response as GetAllCategories200Response
|
|
160
|
+
from lunchmoney.models.get_all_manual_accounts200_response import GetAllManualAccounts200Response as GetAllManualAccounts200Response
|
|
161
|
+
from lunchmoney.models.get_all_plaid_accounts200_response import GetAllPlaidAccounts200Response as GetAllPlaidAccounts200Response
|
|
162
|
+
from lunchmoney.models.get_all_recurring200_response import GetAllRecurring200Response as GetAllRecurring200Response
|
|
163
|
+
from lunchmoney.models.get_all_tags200_response import GetAllTags200Response as GetAllTags200Response
|
|
164
|
+
from lunchmoney.models.get_all_transactions200_response import GetAllTransactions200Response as GetAllTransactions200Response
|
|
165
|
+
from lunchmoney.models.get_all_transactions_created_since_parameter import GetAllTransactionsCreatedSinceParameter as GetAllTransactionsCreatedSinceParameter
|
|
166
|
+
from lunchmoney.models.get_budget_summary200_response import GetBudgetSummary200Response as GetBudgetSummary200Response
|
|
167
|
+
from lunchmoney.models.get_transaction_attachment_url200_response import GetTransactionAttachmentUrl200Response as GetTransactionAttachmentUrl200Response
|
|
168
|
+
from lunchmoney.models.group_transactions_request import GroupTransactionsRequest as GroupTransactionsRequest
|
|
169
|
+
from lunchmoney.models.insert_transaction_object import InsertTransactionObject as InsertTransactionObject
|
|
170
|
+
from lunchmoney.models.insert_transaction_object_amount import InsertTransactionObjectAmount as InsertTransactionObjectAmount
|
|
171
|
+
from lunchmoney.models.insert_transactions_response_object import InsertTransactionsResponseObject as InsertTransactionsResponseObject
|
|
172
|
+
from lunchmoney.models.manual_account_object import ManualAccountObject as ManualAccountObject
|
|
173
|
+
from lunchmoney.models.non_aligned_category_totals_object import NonAlignedCategoryTotalsObject as NonAlignedCategoryTotalsObject
|
|
174
|
+
from lunchmoney.models.non_aligned_summary_category_object import NonAlignedSummaryCategoryObject as NonAlignedSummaryCategoryObject
|
|
175
|
+
from lunchmoney.models.non_aligned_summary_response_object import NonAlignedSummaryResponseObject as NonAlignedSummaryResponseObject
|
|
176
|
+
from lunchmoney.models.plaid_account_object import PlaidAccountObject as PlaidAccountObject
|
|
177
|
+
from lunchmoney.models.recurring_object import RecurringObject as RecurringObject
|
|
178
|
+
from lunchmoney.models.recurring_object_matches import RecurringObjectMatches as RecurringObjectMatches
|
|
179
|
+
from lunchmoney.models.recurring_object_matches_found_transactions_inner import RecurringObjectMatchesFoundTransactionsInner as RecurringObjectMatchesFoundTransactionsInner
|
|
180
|
+
from lunchmoney.models.recurring_object_overrides import RecurringObjectOverrides as RecurringObjectOverrides
|
|
181
|
+
from lunchmoney.models.recurring_object_transaction_criteria import RecurringObjectTransactionCriteria as RecurringObjectTransactionCriteria
|
|
182
|
+
from lunchmoney.models.skipped_existing_external_id_object import SkippedExistingExternalIdObject as SkippedExistingExternalIdObject
|
|
183
|
+
from lunchmoney.models.split_transaction_object import SplitTransactionObject as SplitTransactionObject
|
|
184
|
+
from lunchmoney.models.split_transaction_object_amount import SplitTransactionObjectAmount as SplitTransactionObjectAmount
|
|
185
|
+
from lunchmoney.models.split_transaction_request import SplitTransactionRequest as SplitTransactionRequest
|
|
186
|
+
from lunchmoney.models.summary_category_occurrence_object import SummaryCategoryOccurrenceObject as SummaryCategoryOccurrenceObject
|
|
187
|
+
from lunchmoney.models.summary_recurring_transaction_object import SummaryRecurringTransactionObject as SummaryRecurringTransactionObject
|
|
188
|
+
from lunchmoney.models.summary_rollover_pool_adjustment_object import SummaryRolloverPoolAdjustmentObject as SummaryRolloverPoolAdjustmentObject
|
|
189
|
+
from lunchmoney.models.summary_rollover_pool_object import SummaryRolloverPoolObject as SummaryRolloverPoolObject
|
|
190
|
+
from lunchmoney.models.summary_totals_breakdown_object import SummaryTotalsBreakdownObject as SummaryTotalsBreakdownObject
|
|
191
|
+
from lunchmoney.models.summary_totals_object import SummaryTotalsObject as SummaryTotalsObject
|
|
192
|
+
from lunchmoney.models.tag_object import TagObject as TagObject
|
|
193
|
+
from lunchmoney.models.transaction_attachment_object import TransactionAttachmentObject as TransactionAttachmentObject
|
|
194
|
+
from lunchmoney.models.transaction_object import TransactionObject as TransactionObject
|
|
195
|
+
from lunchmoney.models.update_category_request_object import UpdateCategoryRequestObject as UpdateCategoryRequestObject
|
|
196
|
+
from lunchmoney.models.update_manual_account_request_object import UpdateManualAccountRequestObject as UpdateManualAccountRequestObject
|
|
197
|
+
from lunchmoney.models.update_manual_account_request_object_balance import UpdateManualAccountRequestObjectBalance as UpdateManualAccountRequestObjectBalance
|
|
198
|
+
from lunchmoney.models.update_tag_request_object import UpdateTagRequestObject as UpdateTagRequestObject
|
|
199
|
+
from lunchmoney.models.update_transaction_object import UpdateTransactionObject as UpdateTransactionObject
|
|
200
|
+
from lunchmoney.models.update_transaction_object_amount import UpdateTransactionObjectAmount as UpdateTransactionObjectAmount
|
|
201
|
+
from lunchmoney.models.update_transactions200_response import UpdateTransactions200Response as UpdateTransactions200Response
|
|
202
|
+
from lunchmoney.models.update_transactions_request import UpdateTransactionsRequest as UpdateTransactionsRequest
|
|
203
|
+
from lunchmoney.models.update_transactions_request_transactions_inner import UpdateTransactionsRequestTransactionsInner as UpdateTransactionsRequestTransactionsInner
|
|
204
|
+
from lunchmoney.models.user_object import UserObject as UserObject
|
|
205
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from lunchmoney.api.categories_api import CategoriesApi
|
|
5
|
+
from lunchmoney.api.manual_accounts_api import ManualAccountsApi
|
|
6
|
+
from lunchmoney.api.me_api import MeApi
|
|
7
|
+
from lunchmoney.api.plaid_accounts_api import PlaidAccountsApi
|
|
8
|
+
from lunchmoney.api.recurring_items_api import RecurringItemsApi
|
|
9
|
+
from lunchmoney.api.summary_api import SummaryApi
|
|
10
|
+
from lunchmoney.api.tags_api import TagsApi
|
|
11
|
+
from lunchmoney.api.transactions_api import TransactionsApi
|
|
12
|
+
from lunchmoney.api.transactions_bulk_api import TransactionsBulkApi
|
|
13
|
+
from lunchmoney.api.transactions_files_api import TransactionsFilesApi
|
|
14
|
+
from lunchmoney.api.transactions_group_api import TransactionsGroupApi
|
|
15
|
+
from lunchmoney.api.transactions_split_api import TransactionsSplitApi
|
|
16
|
+
|