pluggy-sdk 1.0.0.post34__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.
Files changed (221) hide show
  1. pluggy_sdk/__init__.py +200 -0
  2. pluggy_sdk/api/__init__.py +25 -0
  3. pluggy_sdk/api/account_api.py +588 -0
  4. pluggy_sdk/api/acquirer_anticipation_api.py +664 -0
  5. pluggy_sdk/api/acquirer_receivable_api.py +664 -0
  6. pluggy_sdk/api/acquirer_sale_api.py +664 -0
  7. pluggy_sdk/api/auth_api.py +605 -0
  8. pluggy_sdk/api/benefit_api.py +567 -0
  9. pluggy_sdk/api/bill_api.py +567 -0
  10. pluggy_sdk/api/bulk_payment_api.py +1127 -0
  11. pluggy_sdk/api/category_api.py +1096 -0
  12. pluggy_sdk/api/connector_api.py +979 -0
  13. pluggy_sdk/api/consent_api.py +576 -0
  14. pluggy_sdk/api/identity_api.py +581 -0
  15. pluggy_sdk/api/income_report_api.py +311 -0
  16. pluggy_sdk/api/investment_api.py +918 -0
  17. pluggy_sdk/api/items_api.py +1456 -0
  18. pluggy_sdk/api/loan_api.py +567 -0
  19. pluggy_sdk/api/payment_customer_api.py +1414 -0
  20. pluggy_sdk/api/payment_intent_api.py +842 -0
  21. pluggy_sdk/api/payment_receipts_api.py +842 -0
  22. pluggy_sdk/api/payment_recipient_api.py +1997 -0
  23. pluggy_sdk/api/payment_request_api.py +2739 -0
  24. pluggy_sdk/api/payment_schedule_api.py +823 -0
  25. pluggy_sdk/api/payroll_loan_api.py +561 -0
  26. pluggy_sdk/api/portfolio_yield_api.py +580 -0
  27. pluggy_sdk/api/smart_account_api.py +1704 -0
  28. pluggy_sdk/api/smart_account_transfer_api.py +610 -0
  29. pluggy_sdk/api/smart_transfer_api.py +1406 -0
  30. pluggy_sdk/api/transaction_api.py +963 -0
  31. pluggy_sdk/api/webhook_api.py +1406 -0
  32. pluggy_sdk/api_client.py +798 -0
  33. pluggy_sdk/api_response.py +21 -0
  34. pluggy_sdk/configuration.py +596 -0
  35. pluggy_sdk/exceptions.py +217 -0
  36. pluggy_sdk/models/__init__.py +163 -0
  37. pluggy_sdk/models/account.py +134 -0
  38. pluggy_sdk/models/accounts_list200_response.py +102 -0
  39. pluggy_sdk/models/acquirer_anticipation.py +117 -0
  40. pluggy_sdk/models/acquirer_anticipation_data.py +101 -0
  41. pluggy_sdk/models/acquirer_data.py +113 -0
  42. pluggy_sdk/models/acquirer_receivable.py +143 -0
  43. pluggy_sdk/models/acquirer_receivable_data.py +108 -0
  44. pluggy_sdk/models/acquirer_receivable_data_establishment.py +96 -0
  45. pluggy_sdk/models/acquirer_receivable_destination_account.py +92 -0
  46. pluggy_sdk/models/acquirer_receivable_related_sale.py +99 -0
  47. pluggy_sdk/models/acquirer_sale.py +171 -0
  48. pluggy_sdk/models/acquirer_sale_data.py +150 -0
  49. pluggy_sdk/models/acquirer_sale_installment.py +93 -0
  50. pluggy_sdk/models/acquirer_sale_installment_data.py +95 -0
  51. pluggy_sdk/models/address.py +110 -0
  52. pluggy_sdk/models/aggregated_portfolio.py +120 -0
  53. pluggy_sdk/models/aggregated_portfolio_response.py +102 -0
  54. pluggy_sdk/models/asset_distribution.py +88 -0
  55. pluggy_sdk/models/auth_request.py +90 -0
  56. pluggy_sdk/models/auth_response.py +88 -0
  57. pluggy_sdk/models/bank_data.py +92 -0
  58. pluggy_sdk/models/benefit_loan.py +121 -0
  59. pluggy_sdk/models/benefit_loan_client.py +102 -0
  60. pluggy_sdk/models/benefit_response.py +118 -0
  61. pluggy_sdk/models/benefit_response_paying_institution.py +94 -0
  62. pluggy_sdk/models/benefits_list200_response.py +102 -0
  63. pluggy_sdk/models/bill.py +109 -0
  64. pluggy_sdk/models/bill_finance_charge.py +103 -0
  65. pluggy_sdk/models/bills_list200_response.py +102 -0
  66. pluggy_sdk/models/boleto.py +121 -0
  67. pluggy_sdk/models/boleto_payer.py +90 -0
  68. pluggy_sdk/models/boleto_recipient.py +90 -0
  69. pluggy_sdk/models/bulk_payment.py +128 -0
  70. pluggy_sdk/models/bulk_payments_list200_response.py +102 -0
  71. pluggy_sdk/models/category.py +96 -0
  72. pluggy_sdk/models/client_category_rule.py +98 -0
  73. pluggy_sdk/models/company.py +90 -0
  74. pluggy_sdk/models/connect_token_request.py +94 -0
  75. pluggy_sdk/models/connect_token_response.py +88 -0
  76. pluggy_sdk/models/connector.py +145 -0
  77. pluggy_sdk/models/connector_credential.py +121 -0
  78. pluggy_sdk/models/connector_health.py +96 -0
  79. pluggy_sdk/models/connector_health_details.py +90 -0
  80. pluggy_sdk/models/connector_list_response.py +102 -0
  81. pluggy_sdk/models/connector_user_action.py +93 -0
  82. pluggy_sdk/models/consent.py +120 -0
  83. pluggy_sdk/models/create_boleto_payment_request.py +98 -0
  84. pluggy_sdk/models/create_bulk_payment.py +96 -0
  85. pluggy_sdk/models/create_client_category_rule.py +96 -0
  86. pluggy_sdk/models/create_item.py +115 -0
  87. pluggy_sdk/models/create_item_parameters.py +144 -0
  88. pluggy_sdk/models/create_or_update_payment_customer.py +105 -0
  89. pluggy_sdk/models/create_payment_customer_request_body.py +103 -0
  90. pluggy_sdk/models/create_payment_intent.py +110 -0
  91. pluggy_sdk/models/create_payment_recipient.py +104 -0
  92. pluggy_sdk/models/create_payment_request.py +115 -0
  93. pluggy_sdk/models/create_payment_request_schedule.py +189 -0
  94. pluggy_sdk/models/create_pix_qr_payment_request.py +96 -0
  95. pluggy_sdk/models/create_smart_account_request.py +104 -0
  96. pluggy_sdk/models/create_smart_account_transfer_request.py +92 -0
  97. pluggy_sdk/models/create_smart_transfer_payment.py +96 -0
  98. pluggy_sdk/models/create_smart_transfer_preauthorization.py +104 -0
  99. pluggy_sdk/models/create_webhook.py +99 -0
  100. pluggy_sdk/models/credential_select_option.py +90 -0
  101. pluggy_sdk/models/credit_card_metadata.py +101 -0
  102. pluggy_sdk/models/credit_data.py +127 -0
  103. pluggy_sdk/models/custom.py +100 -0
  104. pluggy_sdk/models/daily.py +101 -0
  105. pluggy_sdk/models/document.py +100 -0
  106. pluggy_sdk/models/email.py +100 -0
  107. pluggy_sdk/models/global_error_response.py +94 -0
  108. pluggy_sdk/models/i_count_response.py +88 -0
  109. pluggy_sdk/models/identity_relation.py +102 -0
  110. pluggy_sdk/models/identity_response.py +173 -0
  111. pluggy_sdk/models/identity_response_financial_relationships.py +111 -0
  112. pluggy_sdk/models/identity_response_financial_relationships_accounts_inner.py +98 -0
  113. pluggy_sdk/models/identity_response_financial_relationships_procurators_inner.py +101 -0
  114. pluggy_sdk/models/identity_response_qualifications.py +112 -0
  115. pluggy_sdk/models/identity_response_qualifications_informed_income.py +100 -0
  116. pluggy_sdk/models/identity_response_qualifications_informed_patrimony.py +90 -0
  117. pluggy_sdk/models/income_report.py +90 -0
  118. pluggy_sdk/models/income_reports_response.py +102 -0
  119. pluggy_sdk/models/investment.py +192 -0
  120. pluggy_sdk/models/investment_expenses.py +108 -0
  121. pluggy_sdk/models/investment_metadata.py +100 -0
  122. pluggy_sdk/models/investment_transaction.py +124 -0
  123. pluggy_sdk/models/investments_list200_response.py +102 -0
  124. pluggy_sdk/models/item.py +150 -0
  125. pluggy_sdk/models/item_creation_error_response.py +102 -0
  126. pluggy_sdk/models/item_error.py +94 -0
  127. pluggy_sdk/models/item_options.py +94 -0
  128. pluggy_sdk/models/loan.py +199 -0
  129. pluggy_sdk/models/loan_contracted_fee.py +118 -0
  130. pluggy_sdk/models/loan_contracted_finance_charge.py +92 -0
  131. pluggy_sdk/models/loan_installment_balloon_payment.py +95 -0
  132. pluggy_sdk/models/loan_installment_balloon_payment_amount.py +90 -0
  133. pluggy_sdk/models/loan_installments.py +130 -0
  134. pluggy_sdk/models/loan_interest_rate.py +136 -0
  135. pluggy_sdk/models/loan_payment_release.py +103 -0
  136. pluggy_sdk/models/loan_payment_release_over_parcel.py +106 -0
  137. pluggy_sdk/models/loan_payment_release_over_parcel_charge.py +92 -0
  138. pluggy_sdk/models/loan_payment_release_over_parcel_fee.py +92 -0
  139. pluggy_sdk/models/loan_payments.py +98 -0
  140. pluggy_sdk/models/loan_warranty.py +94 -0
  141. pluggy_sdk/models/loans_list200_response.py +102 -0
  142. pluggy_sdk/models/merchant.py +96 -0
  143. pluggy_sdk/models/monthly.py +103 -0
  144. pluggy_sdk/models/monthly_portfolio.py +100 -0
  145. pluggy_sdk/models/monthly_portfolio_response.py +102 -0
  146. pluggy_sdk/models/not_authenticated_response.py +90 -0
  147. pluggy_sdk/models/page_response_acquirer_anticipations.py +102 -0
  148. pluggy_sdk/models/page_response_acquirer_receivables.py +102 -0
  149. pluggy_sdk/models/page_response_acquirer_sales.py +102 -0
  150. pluggy_sdk/models/page_response_category_rules.py +102 -0
  151. pluggy_sdk/models/page_response_consents.py +102 -0
  152. pluggy_sdk/models/page_response_investment_transactions.py +102 -0
  153. pluggy_sdk/models/page_response_transactions.py +102 -0
  154. pluggy_sdk/models/parameter_validation_error.py +92 -0
  155. pluggy_sdk/models/parameter_validation_response.py +98 -0
  156. pluggy_sdk/models/payment_customer.py +105 -0
  157. pluggy_sdk/models/payment_customers_list200_response.py +102 -0
  158. pluggy_sdk/models/payment_data.py +111 -0
  159. pluggy_sdk/models/payment_data_boleto_metadata.py +98 -0
  160. pluggy_sdk/models/payment_data_participant.py +102 -0
  161. pluggy_sdk/models/payment_institution.py +101 -0
  162. pluggy_sdk/models/payment_intent.py +145 -0
  163. pluggy_sdk/models/payment_intent_parameter.py +90 -0
  164. pluggy_sdk/models/payment_intents_list200_response.py +102 -0
  165. pluggy_sdk/models/payment_receipt.py +120 -0
  166. pluggy_sdk/models/payment_receipt_bank_account.py +92 -0
  167. pluggy_sdk/models/payment_receipt_person.py +96 -0
  168. pluggy_sdk/models/payment_recipient.py +110 -0
  169. pluggy_sdk/models/payment_recipient_account.py +92 -0
  170. pluggy_sdk/models/payment_recipients_institution_list200_response.py +102 -0
  171. pluggy_sdk/models/payment_recipients_list200_response.py +102 -0
  172. pluggy_sdk/models/payment_request.py +132 -0
  173. pluggy_sdk/models/payment_request_callback_urls.py +92 -0
  174. pluggy_sdk/models/payment_request_receipt_list200_response.py +102 -0
  175. pluggy_sdk/models/payment_request_schedule.py +183 -0
  176. pluggy_sdk/models/payment_requests_list200_response.py +102 -0
  177. pluggy_sdk/models/payment_schedules_list200_response.py +102 -0
  178. pluggy_sdk/models/payroll_loan.py +121 -0
  179. pluggy_sdk/models/payroll_loan_client.py +102 -0
  180. pluggy_sdk/models/payroll_loan_response.py +125 -0
  181. pluggy_sdk/models/payroll_loan_response_client.py +102 -0
  182. pluggy_sdk/models/payroll_loans_list200_response.py +102 -0
  183. pluggy_sdk/models/percentage_over_index.py +90 -0
  184. pluggy_sdk/models/phone_number.py +100 -0
  185. pluggy_sdk/models/pix_data.py +90 -0
  186. pluggy_sdk/models/schedule_payment.py +102 -0
  187. pluggy_sdk/models/schedule_type_custom.py +100 -0
  188. pluggy_sdk/models/schedule_type_daily.py +101 -0
  189. pluggy_sdk/models/schedule_type_monthly.py +103 -0
  190. pluggy_sdk/models/schedule_type_single.py +98 -0
  191. pluggy_sdk/models/schedule_type_weekly.py +110 -0
  192. pluggy_sdk/models/single.py +98 -0
  193. pluggy_sdk/models/smart_account.py +107 -0
  194. pluggy_sdk/models/smart_account_address.py +112 -0
  195. pluggy_sdk/models/smart_account_balance.py +95 -0
  196. pluggy_sdk/models/smart_account_transfer.py +123 -0
  197. pluggy_sdk/models/smart_accounts_list200_response.py +102 -0
  198. pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py +102 -0
  199. pluggy_sdk/models/smart_transfer_callback_urls.py +90 -0
  200. pluggy_sdk/models/smart_transfer_payment.py +116 -0
  201. pluggy_sdk/models/smart_transfer_preauthorization.py +128 -0
  202. pluggy_sdk/models/smart_transfer_preauthorization_parameter.py +90 -0
  203. pluggy_sdk/models/status_detail.py +127 -0
  204. pluggy_sdk/models/status_detail_product.py +101 -0
  205. pluggy_sdk/models/status_detail_product_warning.py +92 -0
  206. pluggy_sdk/models/transaction.py +141 -0
  207. pluggy_sdk/models/update_item.py +109 -0
  208. pluggy_sdk/models/update_item_parameters.py +144 -0
  209. pluggy_sdk/models/update_payment_recipient.py +102 -0
  210. pluggy_sdk/models/update_payment_request.py +102 -0
  211. pluggy_sdk/models/update_transaction.py +88 -0
  212. pluggy_sdk/models/webhook.py +106 -0
  213. pluggy_sdk/models/webhook_creation_error_response.py +90 -0
  214. pluggy_sdk/models/webhooks_list200_response.py +102 -0
  215. pluggy_sdk/models/weekly.py +110 -0
  216. pluggy_sdk/py.typed +0 -0
  217. pluggy_sdk/rest.py +258 -0
  218. pluggy_sdk-1.0.0.post34.dist-info/METADATA +373 -0
  219. pluggy_sdk-1.0.0.post34.dist-info/RECORD +221 -0
  220. pluggy_sdk-1.0.0.post34.dist-info/WHEEL +5 -0
  221. pluggy_sdk-1.0.0.post34.dist-info/top_level.txt +1 -0
@@ -0,0 +1,373 @@
1
+ Metadata-Version: 2.2
2
+ Name: pluggy-sdk
3
+ Version: 1.0.0.post34
4
+ Summary: Pluggy API
5
+ Home-page: https://github.com/diraol/pluggy-python
6
+ Author: Pluggy
7
+ Author-email: hello@pluggy.ai
8
+ License: MIT
9
+ Keywords: OpenAPI,OpenAPI-Generator,Pluggy API
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: keywords
21
+ Dynamic: license
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
24
+
25
+ # pluggy-sdk
26
+ Pluggy's main API to review data and execute connectors
27
+
28
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
29
+
30
+ - API version: 1.0.0
31
+ - Package version: 1.0.0.post34
32
+ - Generator version: 7.11.0-SNAPSHOT
33
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
34
+ For more information, please visit [https://pluggy.ai](https://pluggy.ai)
35
+
36
+ ## Requirements.
37
+
38
+ Python 3.8+
39
+
40
+ ## Installation & Usage
41
+ ### pip install
42
+
43
+ If the python package is hosted on a repository, you can install directly using:
44
+
45
+ ```sh
46
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
47
+ ```
48
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
49
+
50
+ Then import the package:
51
+ ```python
52
+ import pluggy_sdk
53
+ ```
54
+
55
+ ### Setuptools
56
+
57
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
58
+
59
+ ```sh
60
+ python setup.py install --user
61
+ ```
62
+ (or `sudo python setup.py install` to install the package for all users)
63
+
64
+ Then import the package:
65
+ ```python
66
+ import pluggy_sdk
67
+ ```
68
+
69
+ ### Tests
70
+
71
+ Execute `pytest` to run the tests.
72
+
73
+ ## Getting Started
74
+
75
+ Please follow the [installation procedure](#installation--usage) and then run the following:
76
+
77
+ ```python
78
+
79
+ import pluggy_sdk
80
+ from pluggy_sdk.rest import ApiException
81
+ from pprint import pprint
82
+
83
+ # Defining the host is optional and defaults to https://api.pluggy.ai
84
+ # See configuration.py for a list of all supported configuration parameters.
85
+ configuration = pluggy_sdk.Configuration(
86
+ host = "https://api.pluggy.ai"
87
+ )
88
+
89
+ # The client must configure the authentication and authorization parameters
90
+ # in accordance with the API server security policy.
91
+ # Examples for each auth method are provided below, use the example that
92
+ # satisfies your auth use case.
93
+
94
+ # Configure API key authorization: default
95
+ configuration.api_key['default'] = os.environ["API_KEY"]
96
+
97
+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
98
+ # configuration.api_key_prefix['default'] = 'Bearer'
99
+
100
+
101
+ # Enter a context with an instance of the API client
102
+ with pluggy_sdk.ApiClient(configuration) as api_client:
103
+ # Create an instance of the API class
104
+ api_instance = pluggy_sdk.AccountApi(api_client)
105
+ item_id = 'd0f8a8c0-e8e3-11e9-b210-d663bd873d93' # str | Item primary identifier
106
+ type = 'BANK' # str | Parameter to filter between bank accounts and credit accounts (optional)
107
+
108
+ try:
109
+ # List
110
+ api_response = api_instance.accounts_list(item_id, type=type)
111
+ print("The response of AccountApi->accounts_list:\n")
112
+ pprint(api_response)
113
+ except ApiException as e:
114
+ print("Exception when calling AccountApi->accounts_list: %s\n" % e)
115
+
116
+ ```
117
+
118
+ ## Documentation for API Endpoints
119
+
120
+ All URIs are relative to *https://api.pluggy.ai*
121
+
122
+ Class | Method | HTTP request | Description
123
+ ------------ | ------------- | ------------- | -------------
124
+ *AccountApi* | [**accounts_list**](docs/AccountApi.md#accounts_list) | **GET** /accounts | List
125
+ *AccountApi* | [**accounts_retrieve**](docs/AccountApi.md#accounts_retrieve) | **GET** /accounts/{id} | Retrieve
126
+ *AuthApi* | [**auth_create**](docs/AuthApi.md#auth_create) | **POST** /auth | Create API Key
127
+ *AuthApi* | [**connect_token_create**](docs/AuthApi.md#connect_token_create) | **POST** /connect_token | Create Connect Token
128
+ *BenefitApi* | [**benefit_retrieve_by_id**](docs/BenefitApi.md#benefit_retrieve_by_id) | **GET** /benefits/{id} | Retrieve
129
+ *BenefitApi* | [**benefits_list**](docs/BenefitApi.md#benefits_list) | **GET** /benefits | List
130
+ *BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
131
+ *BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
132
+ *BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create
133
+ *BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete
134
+ *BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve
135
+ *BulkPaymentApi* | [**bulk_payments_list**](docs/BulkPaymentApi.md#bulk_payments_list) | **GET** /payments/bulk | List
136
+ *CategoryApi* | [**categories_list**](docs/CategoryApi.md#categories_list) | **GET** /categories | List
137
+ *CategoryApi* | [**categories_retrieve**](docs/CategoryApi.md#categories_retrieve) | **GET** /categories/{id} | Retrieve
138
+ *CategoryApi* | [**client_category_rules_create**](docs/CategoryApi.md#client_category_rules_create) | **POST** /categories/rules | Create Category Rule
139
+ *CategoryApi* | [**client_category_rules_list**](docs/CategoryApi.md#client_category_rules_list) | **GET** /categories/rules | List Category Rules
140
+ *ConnectorApi* | [**connector_retrieve**](docs/ConnectorApi.md#connector_retrieve) | **GET** /connectors/{id} | Retrieve
141
+ *ConnectorApi* | [**connectors_list**](docs/ConnectorApi.md#connectors_list) | **GET** /connectors | List
142
+ *ConnectorApi* | [**connectors_validate**](docs/ConnectorApi.md#connectors_validate) | **POST** /connectors/{id}/validate | Validate
143
+ *ConsentApi* | [**consent_retrieve**](docs/ConsentApi.md#consent_retrieve) | **GET** /consents/{id} | Retrieve
144
+ *ConsentApi* | [**consents_list**](docs/ConsentApi.md#consents_list) | **GET** /consents | List
145
+ *IdentityApi* | [**identity_find_by_item**](docs/IdentityApi.md#identity_find_by_item) | **GET** /identity | Find by item
146
+ *IdentityApi* | [**identity_retrieve**](docs/IdentityApi.md#identity_retrieve) | **GET** /identity/{id} | Retrieve
147
+ *InvestmentApi* | [**investment_transactions_list**](docs/InvestmentApi.md#investment_transactions_list) | **GET** /investments/{id}/transactions | List investment transactions
148
+ *InvestmentApi* | [**investments_list**](docs/InvestmentApi.md#investments_list) | **GET** /investments | List
149
+ *InvestmentApi* | [**investments_retrieve**](docs/InvestmentApi.md#investments_retrieve) | **GET** /investments/{id} | Retrieve
150
+ *ItemsApi* | [**items_create**](docs/ItemsApi.md#items_create) | **POST** /items | Create
151
+ *ItemsApi* | [**items_delete**](docs/ItemsApi.md#items_delete) | **DELETE** /items/{id} | Delete
152
+ *ItemsApi* | [**items_retrieve**](docs/ItemsApi.md#items_retrieve) | **GET** /items/{id} | Retrieve
153
+ *ItemsApi* | [**items_send_mfa**](docs/ItemsApi.md#items_send_mfa) | **POST** /items/{id}/mfa | Send MFA
154
+ *ItemsApi* | [**items_update**](docs/ItemsApi.md#items_update) | **PATCH** /items/{id} | Update
155
+ *LoanApi* | [**loans_list**](docs/LoanApi.md#loans_list) | **GET** /loans | List
156
+ *LoanApi* | [**loans_retrieve**](docs/LoanApi.md#loans_retrieve) | **GET** /loans/{id} | Retrieve
157
+ *PaymentCustomerApi* | [**payment_customer_create**](docs/PaymentCustomerApi.md#payment_customer_create) | **POST** /payments/customers | Create
158
+ *PaymentCustomerApi* | [**payment_customer_delete**](docs/PaymentCustomerApi.md#payment_customer_delete) | **DELETE** /payments/customers/{id} | Delete
159
+ *PaymentCustomerApi* | [**payment_customer_retrieve**](docs/PaymentCustomerApi.md#payment_customer_retrieve) | **GET** /payments/customers/{id} | Retrieve
160
+ *PaymentCustomerApi* | [**payment_customer_update**](docs/PaymentCustomerApi.md#payment_customer_update) | **PATCH** /payments/customers/{id} | Update
161
+ *PaymentCustomerApi* | [**payment_customers_list**](docs/PaymentCustomerApi.md#payment_customers_list) | **GET** /payments/customers | List
162
+ *PaymentIntentApi* | [**payment_intent_create**](docs/PaymentIntentApi.md#payment_intent_create) | **POST** /payments/intents | Create
163
+ *PaymentIntentApi* | [**payment_intent_retrieve**](docs/PaymentIntentApi.md#payment_intent_retrieve) | **GET** /payments/intents/{id} | Retrieve
164
+ *PaymentIntentApi* | [**payment_intents_list**](docs/PaymentIntentApi.md#payment_intents_list) | **GET** /payments/intents | List
165
+ *PaymentRecipientApi* | [**payment_recipient_create**](docs/PaymentRecipientApi.md#payment_recipient_create) | **POST** /payments/recipients | Create
166
+ *PaymentRecipientApi* | [**payment_recipient_delete**](docs/PaymentRecipientApi.md#payment_recipient_delete) | **DELETE** /payments/recipients/{id} | Delete
167
+ *PaymentRecipientApi* | [**payment_recipient_institutions_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_institutions_retrieve) | **GET** /payments/recipients/institutions/{id} | Retrieve Institution
168
+ *PaymentRecipientApi* | [**payment_recipient_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_retrieve) | **GET** /payments/recipients/{id} | Retrieve
169
+ *PaymentRecipientApi* | [**payment_recipient_update**](docs/PaymentRecipientApi.md#payment_recipient_update) | **PATCH** /payments/recipients/{id} | Update
170
+ *PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions
171
+ *PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List
172
+ *PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create
173
+ *PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
174
+ *PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
175
+ *PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
176
+ *PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
177
+ *PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
178
+ *PaymentRequestApi* | [**payment_request_receipt_retrieve**](docs/PaymentRequestApi.md#payment_request_receipt_retrieve) | **GET** /payments/requests/{payment-request-id}/receipts/{payment-receipt-id} | Retrieve Payment Receipt
179
+ *PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
180
+ *PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
181
+ *PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
182
+ *PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
183
+ *PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule Authorization
184
+ *PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | List Schedules
185
+ *SmartAccountApi* | [**smart_account_balance_retrieve**](docs/SmartAccountApi.md#smart_account_balance_retrieve) | **GET** /payments/smart-accounts/{id}/balance | Retrieve Balance
186
+ *SmartAccountApi* | [**smart_account_create**](docs/SmartAccountApi.md#smart_account_create) | **POST** /payments/smart-accounts | Create
187
+ *SmartAccountApi* | [**smart_account_retrieve**](docs/SmartAccountApi.md#smart_account_retrieve) | **GET** /payments/smart-accounts/{id} | Retrieve
188
+ *SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
189
+ *SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
190
+ *SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
191
+ *SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
192
+ *SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
193
+ *SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
194
+ *SmartTransferApi* | [**smart_transfer_preauthorization_create**](docs/SmartTransferApi.md#smart_transfer_preauthorization_create) | **POST** /smart-transfers/preauthorizations | Create preauthorization
195
+ *SmartTransferApi* | [**smart_transfer_preauthorization_retrieve**](docs/SmartTransferApi.md#smart_transfer_preauthorization_retrieve) | **GET** /smart-transfers/preauthorizations/{id} | Retrieve preauthorization
196
+ *TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List
197
+ *TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve
198
+ *TransactionApi* | [**transactions_update**](docs/TransactionApi.md#transactions_update) | **PATCH** /transactions/{id} | Update
199
+ *WebhookApi* | [**webhooks_create**](docs/WebhookApi.md#webhooks_create) | **POST** /webhooks | Create
200
+ *WebhookApi* | [**webhooks_delete**](docs/WebhookApi.md#webhooks_delete) | **DELETE** /webhooks/{id} | Delete
201
+ *WebhookApi* | [**webhooks_list**](docs/WebhookApi.md#webhooks_list) | **GET** /webhooks | List
202
+ *WebhookApi* | [**webhooks_retrieve**](docs/WebhookApi.md#webhooks_retrieve) | **GET** /webhooks/{id} | Retrieve
203
+ *WebhookApi* | [**webhooks_update**](docs/WebhookApi.md#webhooks_update) | **PATCH** /webhooks/{id} | Update
204
+
205
+
206
+ ## Documentation For Models
207
+
208
+ - [Account](docs/Account.md)
209
+ - [AccountsList200Response](docs/AccountsList200Response.md)
210
+ - [Address](docs/Address.md)
211
+ - [AuthRequest](docs/AuthRequest.md)
212
+ - [AuthResponse](docs/AuthResponse.md)
213
+ - [BankData](docs/BankData.md)
214
+ - [BenefitLoan](docs/BenefitLoan.md)
215
+ - [BenefitLoanClient](docs/BenefitLoanClient.md)
216
+ - [BenefitResponse](docs/BenefitResponse.md)
217
+ - [BenefitResponsePayingInstitution](docs/BenefitResponsePayingInstitution.md)
218
+ - [BenefitsList200Response](docs/BenefitsList200Response.md)
219
+ - [Bill](docs/Bill.md)
220
+ - [BillFinanceCharge](docs/BillFinanceCharge.md)
221
+ - [BillsList200Response](docs/BillsList200Response.md)
222
+ - [Boleto](docs/Boleto.md)
223
+ - [BoletoPayer](docs/BoletoPayer.md)
224
+ - [BoletoRecipient](docs/BoletoRecipient.md)
225
+ - [BulkPayment](docs/BulkPayment.md)
226
+ - [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)
227
+ - [CUSTOM](docs/CUSTOM.md)
228
+ - [Category](docs/Category.md)
229
+ - [ClientCategoryRule](docs/ClientCategoryRule.md)
230
+ - [Company](docs/Company.md)
231
+ - [ConnectTokenRequest](docs/ConnectTokenRequest.md)
232
+ - [ConnectTokenResponse](docs/ConnectTokenResponse.md)
233
+ - [Connector](docs/Connector.md)
234
+ - [ConnectorCredential](docs/ConnectorCredential.md)
235
+ - [ConnectorHealth](docs/ConnectorHealth.md)
236
+ - [ConnectorHealthDetails](docs/ConnectorHealthDetails.md)
237
+ - [ConnectorListResponse](docs/ConnectorListResponse.md)
238
+ - [ConnectorUserAction](docs/ConnectorUserAction.md)
239
+ - [Consent](docs/Consent.md)
240
+ - [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
241
+ - [CreateBulkPayment](docs/CreateBulkPayment.md)
242
+ - [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
243
+ - [CreateItem](docs/CreateItem.md)
244
+ - [CreateItemParameters](docs/CreateItemParameters.md)
245
+ - [CreateOrUpdatePaymentCustomer](docs/CreateOrUpdatePaymentCustomer.md)
246
+ - [CreatePaymentCustomerRequestBody](docs/CreatePaymentCustomerRequestBody.md)
247
+ - [CreatePaymentIntent](docs/CreatePaymentIntent.md)
248
+ - [CreatePaymentRecipient](docs/CreatePaymentRecipient.md)
249
+ - [CreatePaymentRequest](docs/CreatePaymentRequest.md)
250
+ - [CreatePaymentRequestSchedule](docs/CreatePaymentRequestSchedule.md)
251
+ - [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
252
+ - [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
253
+ - [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
254
+ - [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
255
+ - [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
256
+ - [CreateWebhook](docs/CreateWebhook.md)
257
+ - [CredentialSelectOption](docs/CredentialSelectOption.md)
258
+ - [CreditCardMetadata](docs/CreditCardMetadata.md)
259
+ - [CreditData](docs/CreditData.md)
260
+ - [DAILY](docs/DAILY.md)
261
+ - [Document](docs/Document.md)
262
+ - [Email](docs/Email.md)
263
+ - [GlobalErrorResponse](docs/GlobalErrorResponse.md)
264
+ - [ICountResponse](docs/ICountResponse.md)
265
+ - [IdentityRelation](docs/IdentityRelation.md)
266
+ - [IdentityResponse](docs/IdentityResponse.md)
267
+ - [IdentityResponseFinancialRelationships](docs/IdentityResponseFinancialRelationships.md)
268
+ - [IdentityResponseFinancialRelationshipsAccountsInner](docs/IdentityResponseFinancialRelationshipsAccountsInner.md)
269
+ - [IdentityResponseFinancialRelationshipsProcuratorsInner](docs/IdentityResponseFinancialRelationshipsProcuratorsInner.md)
270
+ - [IdentityResponseQualifications](docs/IdentityResponseQualifications.md)
271
+ - [IdentityResponseQualificationsInformedIncome](docs/IdentityResponseQualificationsInformedIncome.md)
272
+ - [IdentityResponseQualificationsInformedPatrimony](docs/IdentityResponseQualificationsInformedPatrimony.md)
273
+ - [Investment](docs/Investment.md)
274
+ - [InvestmentExpenses](docs/InvestmentExpenses.md)
275
+ - [InvestmentMetadata](docs/InvestmentMetadata.md)
276
+ - [InvestmentTransaction](docs/InvestmentTransaction.md)
277
+ - [InvestmentsList200Response](docs/InvestmentsList200Response.md)
278
+ - [Item](docs/Item.md)
279
+ - [ItemCreationErrorResponse](docs/ItemCreationErrorResponse.md)
280
+ - [ItemError](docs/ItemError.md)
281
+ - [ItemOptions](docs/ItemOptions.md)
282
+ - [Loan](docs/Loan.md)
283
+ - [LoanContractedFee](docs/LoanContractedFee.md)
284
+ - [LoanContractedFinanceCharge](docs/LoanContractedFinanceCharge.md)
285
+ - [LoanInstallmentBalloonPayment](docs/LoanInstallmentBalloonPayment.md)
286
+ - [LoanInstallmentBalloonPaymentAmount](docs/LoanInstallmentBalloonPaymentAmount.md)
287
+ - [LoanInstallments](docs/LoanInstallments.md)
288
+ - [LoanInterestRate](docs/LoanInterestRate.md)
289
+ - [LoanPaymentRelease](docs/LoanPaymentRelease.md)
290
+ - [LoanPaymentReleaseOverParcel](docs/LoanPaymentReleaseOverParcel.md)
291
+ - [LoanPaymentReleaseOverParcelCharge](docs/LoanPaymentReleaseOverParcelCharge.md)
292
+ - [LoanPaymentReleaseOverParcelFee](docs/LoanPaymentReleaseOverParcelFee.md)
293
+ - [LoanPayments](docs/LoanPayments.md)
294
+ - [LoanWarranty](docs/LoanWarranty.md)
295
+ - [LoansList200Response](docs/LoansList200Response.md)
296
+ - [MONTHLY](docs/MONTHLY.md)
297
+ - [Merchant](docs/Merchant.md)
298
+ - [NotAuthenticatedResponse](docs/NotAuthenticatedResponse.md)
299
+ - [PageResponseCategoryRules](docs/PageResponseCategoryRules.md)
300
+ - [PageResponseConsents](docs/PageResponseConsents.md)
301
+ - [PageResponseInvestmentTransactions](docs/PageResponseInvestmentTransactions.md)
302
+ - [PageResponseTransactions](docs/PageResponseTransactions.md)
303
+ - [ParameterValidationError](docs/ParameterValidationError.md)
304
+ - [ParameterValidationResponse](docs/ParameterValidationResponse.md)
305
+ - [PaymentCustomer](docs/PaymentCustomer.md)
306
+ - [PaymentCustomersList200Response](docs/PaymentCustomersList200Response.md)
307
+ - [PaymentData](docs/PaymentData.md)
308
+ - [PaymentDataBoletoMetadata](docs/PaymentDataBoletoMetadata.md)
309
+ - [PaymentDataParticipant](docs/PaymentDataParticipant.md)
310
+ - [PaymentInstitution](docs/PaymentInstitution.md)
311
+ - [PaymentIntent](docs/PaymentIntent.md)
312
+ - [PaymentIntentParameter](docs/PaymentIntentParameter.md)
313
+ - [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
314
+ - [PaymentReceipt](docs/PaymentReceipt.md)
315
+ - [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)
316
+ - [PaymentReceiptPerson](docs/PaymentReceiptPerson.md)
317
+ - [PaymentRecipient](docs/PaymentRecipient.md)
318
+ - [PaymentRecipientAccount](docs/PaymentRecipientAccount.md)
319
+ - [PaymentRecipientsInstitutionList200Response](docs/PaymentRecipientsInstitutionList200Response.md)
320
+ - [PaymentRecipientsList200Response](docs/PaymentRecipientsList200Response.md)
321
+ - [PaymentRequest](docs/PaymentRequest.md)
322
+ - [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
323
+ - [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
324
+ - [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
325
+ - [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
326
+ - [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)
327
+ - [PhoneNumber](docs/PhoneNumber.md)
328
+ - [PixData](docs/PixData.md)
329
+ - [SINGLE](docs/SINGLE.md)
330
+ - [SchedulePayment](docs/SchedulePayment.md)
331
+ - [SmartAccount](docs/SmartAccount.md)
332
+ - [SmartAccountAddress](docs/SmartAccountAddress.md)
333
+ - [SmartAccountBalance](docs/SmartAccountBalance.md)
334
+ - [SmartAccountTransfer](docs/SmartAccountTransfer.md)
335
+ - [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)
336
+ - [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
337
+ - [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
338
+ - [SmartTransferPayment](docs/SmartTransferPayment.md)
339
+ - [SmartTransferPreauthorization](docs/SmartTransferPreauthorization.md)
340
+ - [SmartTransferPreauthorizationParameter](docs/SmartTransferPreauthorizationParameter.md)
341
+ - [StatusDetail](docs/StatusDetail.md)
342
+ - [StatusDetailProduct](docs/StatusDetailProduct.md)
343
+ - [StatusDetailProductWarning](docs/StatusDetailProductWarning.md)
344
+ - [Transaction](docs/Transaction.md)
345
+ - [UpdateItem](docs/UpdateItem.md)
346
+ - [UpdateItemParameters](docs/UpdateItemParameters.md)
347
+ - [UpdatePaymentRecipient](docs/UpdatePaymentRecipient.md)
348
+ - [UpdatePaymentRequest](docs/UpdatePaymentRequest.md)
349
+ - [UpdateTransaction](docs/UpdateTransaction.md)
350
+ - [WEEKLY](docs/WEEKLY.md)
351
+ - [Webhook](docs/Webhook.md)
352
+ - [WebhookCreationErrorResponse](docs/WebhookCreationErrorResponse.md)
353
+ - [WebhooksList200Response](docs/WebhooksList200Response.md)
354
+
355
+
356
+ <a id="documentation-for-authorization"></a>
357
+ ## Documentation For Authorization
358
+
359
+
360
+ Authentication schemes defined for the API:
361
+ <a id="default"></a>
362
+ ### default
363
+
364
+ - **Type**: API key
365
+ - **API key parameter name**: X-API-KEY
366
+ - **Location**: HTTP header
367
+
368
+
369
+ ## Author
370
+
371
+ hello@pluggy.ai
372
+
373
+
@@ -0,0 +1,221 @@
1
+ pluggy_sdk/__init__.py,sha256=zwTWR3VRyOAWCoSy1tYsTgrdltk43cG0ja3zIM_bA-M,12844
2
+ pluggy_sdk/api_client.py,sha256=pESvp1zgjRdH7IAjd3ScgTvXVNqgoH36hReVGCjK3rs,27438
3
+ pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ pluggy_sdk/configuration.py,sha256=SOQyk3VEKMY4ASY8DW0EfEtYGucykH3aF2oLf5Kqoe0,18485
5
+ pluggy_sdk/exceptions.py,sha256=i3cDTqzBiyuMq9VdCqE6CVVf09vq_TDYL9uOVvFoZis,6452
6
+ pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ pluggy_sdk/rest.py,sha256=vVdVX3R4AbYt0r6TChhsMVAnyL1nf0RA6eZYjkaaBzY,9389
8
+ pluggy_sdk/api/__init__.py,sha256=4umr7Tt4Qe6X3s1rlm6bQdDSlVkKc2hxkzYnylxx3nM,1212
9
+ pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
10
+ pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
11
+ pluggy_sdk/api/acquirer_receivable_api.py,sha256=BzTj0wfP11JDpLpaeREfNo-g7bs7PnRaK6Ab4gqR5a4,26388
12
+ pluggy_sdk/api/acquirer_sale_api.py,sha256=YZYt2Hy3vA-dIKFouejtQY8BTws3lNrY3NHdXMbBQJU,26137
13
+ pluggy_sdk/api/auth_api.py,sha256=TXqmhFum1h1bqt9BMANyvcwLLaS0M1Y0mIELutv9spo,23150
14
+ pluggy_sdk/api/benefit_api.py,sha256=WSa3Hp-6Dc1fA0dHUnYP5gu-iXgDD-0NC5yuxBuIouo,21329
15
+ pluggy_sdk/api/bill_api.py,sha256=_qkNNQIlImQEGpzHko9wxyIrGlNKfc7Aq1MOdGCy5Ac,21228
16
+ pluggy_sdk/api/bulk_payment_api.py,sha256=-Qac97nDXdqWUJlvNIONxJLrbKE7Wt1crK03_ARxbKY,43205
17
+ pluggy_sdk/api/category_api.py,sha256=ATCtlmkDmbNqS2kJV6f6P3G0_rgwqEip-PgQ9iUm_Nc,42113
18
+ pluggy_sdk/api/connector_api.py,sha256=Zmo8ZYrYaaa98eAF_DXGlnd7AFS7hK6SURAGhsL3NPM,41410
19
+ pluggy_sdk/api/consent_api.py,sha256=9lhmfKiIerWsEwVLE4TgIxtmQhnLQFPVpWEZRdDQJCc,21563
20
+ pluggy_sdk/api/identity_api.py,sha256=owFRuj7HTT9S8pPKGSY4cNjFJvEd-KobMr3hjytrXCk,21870
21
+ pluggy_sdk/api/income_report_api.py,sha256=HfcWM14chZfmmc8pNcmb68QIomjWFZAMahCAmYrHD9A,11727
22
+ pluggy_sdk/api/investment_api.py,sha256=x_V67FOqUY1h11kl3tB0Ne77qD_o_EgLQB5PKxT0Ock,36391
23
+ pluggy_sdk/api/items_api.py,sha256=ndeprcDlJmzvl82pCi_lgfn6PrMkofM1VCWIGsCeV5c,55263
24
+ pluggy_sdk/api/loan_api.py,sha256=0F4282MRf2XZ6KkRq9zZ9Bjfp4_gr628_Zjc3vnCnNU,21108
25
+ pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9BpctRvDW1w8,55454
26
+ pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
27
+ pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
28
+ pluggy_sdk/api/payment_recipient_api.py,sha256=nvV5zoyTMMr3geRBD0ztaSrBe9tkusS9rJSdvG-mq2g,78871
29
+ pluggy_sdk/api/payment_request_api.py,sha256=KoxSrmt2hXxISTXve_ur8LjAmk4WLlhxI0apRJD4eQo,106572
30
+ pluggy_sdk/api/payment_schedule_api.py,sha256=YUmE5fJktDrFHHm-SPphqQJmW-2CaBOlfX7QqZdQCk4,31605
31
+ pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
32
+ pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
33
+ pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
34
+ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
35
+ pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
36
+ pluggy_sdk/api/transaction_api.py,sha256=P3uIVt77rC4f9ITPJjT9oi8-pFrM6RmpgXP55_unCME,37955
37
+ pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
38
+ pluggy_sdk/models/__init__.py,sha256=NnMQ8oqM--bIoFcZvafaNTFJpDNf99PNlZ0kha8LoEU,11165
39
+ pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
40
+ pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
41
+ pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
42
+ pluggy_sdk/models/acquirer_anticipation_data.py,sha256=sNX04XqIYXT39eI1D81gX-46ZWnLVv2kUY2YhtWuTXY,3392
43
+ pluggy_sdk/models/acquirer_data.py,sha256=r-kjKmEdlf6LSJMRtvu8cqFruJYr-6pEGICnM7YTIlA,4470
44
+ pluggy_sdk/models/acquirer_receivable.py,sha256=wuUAPbSVd_c4mTcr7eAE7eizi-xCuxPO6OD5HGDACBk,6393
45
+ pluggy_sdk/models/acquirer_receivable_data.py,sha256=uk1fQL_q7LXVvAPoAazUKv-LYqAoPng6bwWacsbNwuQ,3912
46
+ pluggy_sdk/models/acquirer_receivable_data_establishment.py,sha256=PD6uckhWZRvboxLarlKQxjxj2PM7euUZ7loYWoR1oVA,3449
47
+ pluggy_sdk/models/acquirer_receivable_destination_account.py,sha256=bej3wke-6yx80dLRneXBUiDl7LRlzKGA976SV32pieI,2921
48
+ pluggy_sdk/models/acquirer_receivable_related_sale.py,sha256=iExYetycjRfF6G9JIJwPODdFJABnva9Mp3r4r5QzS2g,3604
49
+ pluggy_sdk/models/acquirer_sale.py,sha256=gSv_RVQoXfmzumaZutAi60fZD1o0pXoJw9g1MHskd00,7607
50
+ pluggy_sdk/models/acquirer_sale_data.py,sha256=AnKlF37NVg9Wa7x6HHXS6QpP8hYtnN8btNkskL3nBLk,6313
51
+ pluggy_sdk/models/acquirer_sale_installment.py,sha256=jMYYgd2yxUR6wqMdvGKQEZWjEQ1hAPVlY635OD3XLHQ,3083
52
+ pluggy_sdk/models/acquirer_sale_installment_data.py,sha256=4qn7D-pZxq0m08Cs9Nl7PbMhSUjSki9qqv8X5Q4Cmkc,3209
53
+ pluggy_sdk/models/address.py,sha256=CkRbeQlr-XFGX2g16xzn58dw7n2L-yy97sURcJWeEEw,3935
54
+ pluggy_sdk/models/aggregated_portfolio.py,sha256=LGYla8DycMpb9oP7TLzM8aVB968nQkphRRiBKZs1ZbI,5014
55
+ pluggy_sdk/models/aggregated_portfolio_response.py,sha256=Rrkl6ZvS6kpQYHYVy9yn-JfBa_ZuGarVeNMEvxeIC00,3614
56
+ pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-mcxFh5h9jdw,2800
57
+ pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
58
+ pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
59
+ pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
60
+ pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
61
+ pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
62
+ pluggy_sdk/models/benefit_response.py,sha256=nr8yRQcnMA6j6yjuFawU4dPC0iNOpvzVZ-UQ-eMO2OU,5350
63
+ pluggy_sdk/models/benefit_response_paying_institution.py,sha256=sur_yb6li6GoQqbt49OsD9FbPNx-kQ077fVMtuFOG5M,3044
64
+ pluggy_sdk/models/benefits_list200_response.py,sha256=2nvqxafhuuXbl2rq9lXOLcVtBYeoz9OTpvFunVevGOc,3464
65
+ pluggy_sdk/models/bill.py,sha256=e2tOe1aFBZs9VJMxV9pwsT-d4I8A66M7USGP9mWijbI,4476
66
+ pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
67
+ pluggy_sdk/models/bills_list200_response.py,sha256=iGWpb0feuyvZt_9OjJxsrO8bUycaq0n-guzr6yqMNlU,3416
68
+ pluggy_sdk/models/boleto.py,sha256=AXgr-nAs1EBqPVVRfuXdTDDnBbj0sLhOII2JlumeNpE,5402
69
+ pluggy_sdk/models/boleto_payer.py,sha256=0zVxArLdsn9lQ68WcabB0oT4tD1QzTyKblN8aZxbjpo,2641
70
+ pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5QlioE-Z_U,2665
71
+ pluggy_sdk/models/bulk_payment.py,sha256=_EiKF2iM38AktGvOHGey0FG9_usnL6YPUM7gtTWPeJg,5717
72
+ pluggy_sdk/models/bulk_payments_list200_response.py,sha256=9Ur4ZTPH5Q7sGwQ19XAd9iZi_uQll5-Jujmbj4qWtu4,3469
73
+ pluggy_sdk/models/category.py,sha256=oFSunhtg1GY2iJKhbio0ZtPeiFAwvOY-mknLELuQkYw,3297
74
+ pluggy_sdk/models/client_category_rule.py,sha256=jN6C9XzoGvd3Ku-Qzls2qlk1bI5c_O2JXAaaA9HvxBA,3490
75
+ pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
76
+ pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
77
+ pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
78
+ pluggy_sdk/models/connector.py,sha256=HEm1XmMIEbeauS2kbDNvi_6-9lnEGojYhDwoRpCRX6E,7332
79
+ pluggy_sdk/models/connector_credential.py,sha256=9omVYSRdUvra1wKToyF6rW8dnhy5vQAfXEaVFzjCau4,4925
80
+ pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
81
+ pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
82
+ pluggy_sdk/models/connector_list_response.py,sha256=PetHjZ1wAJ2k2gacrg9EmM0fnvSZ7YZPWms-GVUbKRg,3386
83
+ pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
84
+ pluggy_sdk/models/consent.py,sha256=2iGU-3JCbWzjUsFU1g4UYXz_zm0EziBJgki8XaBz1Kk,5451
85
+ pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
86
+ pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
87
+ pluggy_sdk/models/create_client_category_rule.py,sha256=CBmaEU87ba_EgxLIcFwb8YWe-FcMdKcaOiu9hGDoGFo,3448
88
+ pluggy_sdk/models/create_item.py,sha256=5fN_PTXFXAGiTXhQad_a8Oq9A_TPt4YSWyT13S4-fN0,4801
89
+ pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
90
+ pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
91
+ pluggy_sdk/models/create_payment_customer_request_body.py,sha256=YvSSzXEW2yI7M9alWr4fHbPRqNvV4sxTUVp3FkMQSyU,3365
92
+ pluggy_sdk/models/create_payment_intent.py,sha256=MCBRy8n1xXnajR3Q4gksZ07Qk_VvtrCPaldTvkBEfUw,4371
93
+ pluggy_sdk/models/create_payment_recipient.py,sha256=B4vmHZB0uhOBPl9GPcvkno02fpIHIKFTM3EQvMoBoS8,4554
94
+ pluggy_sdk/models/create_payment_request.py,sha256=H2SU4y28MxacJLrypgknHzIpPTp5m6z9VJEBoGcsazU,4852
95
+ pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
96
+ pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
97
+ pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQaGgeHhSNuIozC_OTcF7g,4030
98
+ pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
99
+ pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
100
+ pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=aSaFeY_pe-TX2kMyPA_sH89SshgqsJ7JJ4trwMP2zwQ,4149
101
+ pluggy_sdk/models/create_webhook.py,sha256=-u-_3zkLodjKzeXKTVFU_SfOINS6R5DyiKB_RwF_z5M,3984
102
+ pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
103
+ pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
104
+ pluggy_sdk/models/credit_data.py,sha256=LcdJCDgQEmdm60NPzx-hcq_cRHYic8OCr_zVBVuNcpE,5142
105
+ pluggy_sdk/models/custom.py,sha256=zjjIW93-oGUgaHiVfAimPHPyfFIeRf47c4i-5TpmujE,3138
106
+ pluggy_sdk/models/daily.py,sha256=_5HI2mqTi-LTPyLJyu6bSDGVqw6Y-58keirwFiOcLhk,3350
107
+ pluggy_sdk/models/document.py,sha256=kVgB5z4IAsO8snka8yeAABtoEm5KWlx3TtzbW2SuaXE,3003
108
+ pluggy_sdk/models/email.py,sha256=X7c8gC0n13Y-aKyOdVoIEnnyi-7jMlFBmKJyYeiezpc,2965
109
+ pluggy_sdk/models/global_error_response.py,sha256=JP7wgaEYQN4wp35fB74XTYsh_AdviIcuaUexrymj1S8,3025
110
+ pluggy_sdk/models/i_count_response.py,sha256=P6qECWikHU8-UiQWI-nzBkD1VUJK3HRKk6eD4-LccXQ,2554
111
+ pluggy_sdk/models/identity_relation.py,sha256=d_jRZfiYsJOeO5AOpfa8iAiupzGSmXZVxk_bS6xZVDE,3269
112
+ pluggy_sdk/models/identity_response.py,sha256=retv3r7307H-PerdPNALByFJo4NawMcEfJZr4xSU-zg,9124
113
+ pluggy_sdk/models/identity_response_financial_relationships.py,sha256=Gmed60Oordnehha8Tmdq43NQ9L-IEM5tLdUy20PZn6U,4748
114
+ pluggy_sdk/models/identity_response_financial_relationships_accounts_inner.py,sha256=2jyB_aqemv1V10rRtPgOrcTYgk7HG-N30YIdDANyfJE,3366
115
+ pluggy_sdk/models/identity_response_financial_relationships_procurators_inner.py,sha256=uDi5zNmhr2zxwKPh1UXSTiIlpUyLe55DbcEFSR4J4jg,3490
116
+ pluggy_sdk/models/identity_response_qualifications.py,sha256=2iMs8BRGZbkEgifzBwCbps6cDczTfqYJ2L8x5BDHROw,4657
117
+ pluggy_sdk/models/identity_response_qualifications_informed_income.py,sha256=L0Q84omtHx5eBf92fuJb2ntH-27tIprspUzLJGqmad8,3421
118
+ pluggy_sdk/models/identity_response_qualifications_informed_patrimony.py,sha256=DxOFOA6Mw8fjoj8FXmXemFop_58-6rbAOxVjkcBvvtA,2797
119
+ pluggy_sdk/models/income_report.py,sha256=MscdLVudpzaySJ__mKCBVD0vJcHoOKVIYyFJ6xaNS5U,2788
120
+ pluggy_sdk/models/income_reports_response.py,sha256=cXTY6QSoXZ5gSzJD2rz992dQRHk01QImadetCVg_fy8,3538
121
+ pluggy_sdk/models/investment.py,sha256=Wgrcn1BupoR-_2GRYHI5w_r7iuJJhQ-hNFPxaypXu7E,11148
122
+ pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM4bo3re18OCk,5224
123
+ pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
124
+ pluggy_sdk/models/investment_transaction.py,sha256=1A3Ak7W5jcXzZycd05eLDYHsAikgJQXe73cp_a11NeA,4789
125
+ pluggy_sdk/models/investments_list200_response.py,sha256=JqUTarakPV6yzY162pLugeFudbwj6pHeCJYGdKVz8Js,3458
126
+ pluggy_sdk/models/item.py,sha256=z__AH74riALcam8VE0U_GPCZPH7JrQydR1QeEHvlQRg,7295
127
+ pluggy_sdk/models/item_creation_error_response.py,sha256=_zdN0Go6iU2deVKxRrexeYlDxWxYfWhjyrxisyQbjUI,3607
128
+ pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
129
+ pluggy_sdk/models/item_options.py,sha256=_HtQch_MoHGlBSSxgfGhtCN083jSqKxov0KTmldRw6M,3390
130
+ pluggy_sdk/models/loan.py,sha256=mTbqlJwpxopVEiZYUFn3sc5oi9yXrH8rK43tuBuNlnM,12231
131
+ pluggy_sdk/models/loan_contracted_fee.py,sha256=k2EHfnbElL7scRmPQSKmzZ3oSxh50Z9wtAPe2Q2Oqzw,4205
132
+ pluggy_sdk/models/loan_contracted_finance_charge.py,sha256=-2cHDwe9IfcWxtjLaL1Vs0PdWsqMv5RGO_Cx2fo3dj0,3153
133
+ pluggy_sdk/models/loan_installment_balloon_payment.py,sha256=W9WH53-m8pz1AArlHri8-pbxNREo92quYLglTUeWCVk,3202
134
+ pluggy_sdk/models/loan_installment_balloon_payment_amount.py,sha256=n2W97p1QrZmrcseGJfkQCFMMCtSp37bMElyWVylfL4c,2936
135
+ pluggy_sdk/models/loan_installments.py,sha256=00rPPxX9QM7F2mzmjVj7oMG-iLMOlfjWeNcgjPlsOnc,6244
136
+ pluggy_sdk/models/loan_interest_rate.py,sha256=z2sL9_0Q8io4p3wwF6jjmOJ9Yt9gNcZr5YHwxVrTNKQ,6278
137
+ pluggy_sdk/models/loan_payment_release.py,sha256=Q9TSd4bHl9vu6W4mJatkYeiblmUCKI2LgUzmvMLRPjA,4233
138
+ pluggy_sdk/models/loan_payment_release_over_parcel.py,sha256=qAVv_xJnxRy6ThCgVoVP_Db3zqo5D-NPcXGMZ2mB0tg,3958
139
+ pluggy_sdk/models/loan_payment_release_over_parcel_charge.py,sha256=BieU1pled7qC_5zKW3xwX-_Z4N1gBl3CJOmWkrRYETo,3230
140
+ pluggy_sdk/models/loan_payment_release_over_parcel_fee.py,sha256=o9F2FuGgy-Ht93XrFqLbdHxB34RYb6qH0e-yGnkJi6A,2988
141
+ pluggy_sdk/models/loan_payments.py,sha256=tt1Fb4HxZWT5rHF1o88yRdVlXUd4qsLevM8blZtC19Y,3404
142
+ pluggy_sdk/models/loan_warranty.py,sha256=d5fioDjaxbCJwm71mBzIqGhlnV16PpGwmSwwbegzOS8,3493
143
+ pluggy_sdk/models/loans_list200_response.py,sha256=IlMx-0kbUxx6YiFc7YMXDCABX0HaiXOXceINurMkolw,3404
144
+ pluggy_sdk/models/merchant.py,sha256=Fq34vFzqnRy_ayQfJP8gVcNJlfc3PSg0wnuHFNr9HWE,3225
145
+ pluggy_sdk/models/monthly.py,sha256=8a4mB1xoLZHjM2lbaDPY3WydR0Se0jlfkpxqjs5paW8,3734
146
+ pluggy_sdk/models/monthly_portfolio.py,sha256=Q6anY9WVhr7ISpzD9wje5KJRQRo5pcBkuNePRuOUg_k,3967
147
+ pluggy_sdk/models/monthly_portfolio_response.py,sha256=0E90y0KN-tpf-47D1Vx4lSuqzGgUiITLwcT2aoAMSlc,3625
148
+ pluggy_sdk/models/not_authenticated_response.py,sha256=8xqADcfaba8G0ctU78DnIeywPVwbUDHjEEk6WdqQSK4,2665
149
+ pluggy_sdk/models/page_response_acquirer_anticipations.py,sha256=5gQYI_1BuIp0FDKWsNkSJsCDnykcEqEZZdlLh3gzeiM,3359
150
+ pluggy_sdk/models/page_response_acquirer_receivables.py,sha256=7Xblwq7stTBhAI2IOlraMC4fuHMclbxKzEbe9Q52D0A,3345
151
+ pluggy_sdk/models/page_response_acquirer_sales.py,sha256=exZgBz69kxYWUDzkn_i7n4uHDl32m8qzgJ0i80gp7wM,3303
152
+ pluggy_sdk/models/page_response_category_rules.py,sha256=zBL0x1-GY1llYRDHPEmffZC2wi7-ND_6fCqyqvSJgkg,3328
153
+ pluggy_sdk/models/page_response_consents.py,sha256=5hW5lV-1TdWvTj1IBREOIjCq38X0hsAsEbBhKEbWW3c,3267
154
+ pluggy_sdk/models/page_response_investment_transactions.py,sha256=1tmgkQZST-uBq4iCsHe65ayl6IizSq5EbklIbzAOa1k,3366
155
+ pluggy_sdk/models/page_response_transactions.py,sha256=uVDrbsOwMG0IhlyU9Ri4OS5kkiOL6jT02eGA9_rdOPc,3295
156
+ pluggy_sdk/models/parameter_validation_error.py,sha256=LHjLtSC2E0jlaDeljJONx2ljhUFDk3-sUgrZ_sGCHDs,2631
157
+ pluggy_sdk/models/parameter_validation_response.py,sha256=oy9I3j23NItavWkK1GxNJ8qu8snAeH0WygExjXQeLn4,3273
158
+ pluggy_sdk/models/payment_customer.py,sha256=ex6-H5-hXd04Q39gJVPIYvnAVXp8bhQjg3-9fi2HBaY,3413
159
+ pluggy_sdk/models/payment_customers_list200_response.py,sha256=X4IXDtLhs4g-ts7unv4sX50wtECDa6YH0rFXsuyyf60,3505
160
+ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnYW2eE,4638
161
+ pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
162
+ pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
163
+ pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
164
+ pluggy_sdk/models/payment_intent.py,sha256=rYiJnfN6Jy1H0WxMeSgUQPr4vTtjjwTAujlixvr0Lj8,7065
165
+ pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
166
+ pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
167
+ pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
168
+ pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
169
+ pluggy_sdk/models/payment_receipt_person.py,sha256=9eHiWC33eisDSZJgHW6ho_xD2ekaMuzq8AdvVEt5dUE,3246
170
+ pluggy_sdk/models/payment_recipient.py,sha256=XGpf7503LIg9YADhESE-VGjaFSVWVq0_Dlgb6MUoeDw,4534
171
+ pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
172
+ pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
173
+ pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
174
+ pluggy_sdk/models/payment_request.py,sha256=5Bmj4lcoIpuAV1kTLd4tGCAnuvrFgaby_hmMyWUrGjA,5986
175
+ pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
176
+ pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
177
+ pluggy_sdk/models/payment_request_schedule.py,sha256=gQqGFVYZLe8NguGwzpREBMa0b2KCUhmgudUlSUMazY4,6999
178
+ pluggy_sdk/models/payment_requests_list200_response.py,sha256=sAsajmYPVezAobFSq0KFFMBcO8ApV-RKl2PrmfXWs1s,3496
179
+ pluggy_sdk/models/payment_schedules_list200_response.py,sha256=b8e5Q46P2lmKv2MUqdAhgcEZ5OJ13_-OLnFp60D9S9w,3529
180
+ pluggy_sdk/models/payroll_loan.py,sha256=rX7FRaG_yWmfhM3IOLmq_9uLSa-oZ1PO1-uFkWHtWiI,6158
181
+ pluggy_sdk/models/payroll_loan_client.py,sha256=_5zEk1OsZcUdWYVTrU04qfI98CJnceuuJr1k08qXRYk,3756
182
+ pluggy_sdk/models/payroll_loan_response.py,sha256=0LjS2R5BYHjhaaWAMTdQ5VRz3ugdQlwoec8piEeaf6U,6339
183
+ pluggy_sdk/models/payroll_loan_response_client.py,sha256=yTGMf7zBwp2Fks8CQn8XNc1fmDlLHFqktN37iev1qEg,3780
184
+ pluggy_sdk/models/payroll_loans_list200_response.py,sha256=zG54rlfMAINvraIn48n-1Ffe1AOgMnuMgANlgXlIuE4,3478
185
+ pluggy_sdk/models/percentage_over_index.py,sha256=UMM-sXy36J5X_kfVCCy3glXjEGUXJzZxKQM0Ipt05uE,2861
186
+ pluggy_sdk/models/phone_number.py,sha256=KtNMYqBE9K7Of-gVId3wV9gN9vf1XGbDnv3R_s-QGco,3087
187
+ pluggy_sdk/models/pix_data.py,sha256=zygIaWicGwI93-q181yHzPVxKBZ7wpuhN70b_KvPm0c,2602
188
+ pluggy_sdk/models/schedule_payment.py,sha256=5F3SjAg0gYOvgNGxoxmqFI8sPYPGXEs-k4rDPncRcmw,3251
189
+ pluggy_sdk/models/schedule_type_custom.py,sha256=OIPS53NFeFbQ3rFR030CEdP1E0XY2bJUP4iHc8Iv-q4,3174
190
+ pluggy_sdk/models/schedule_type_daily.py,sha256=FWFTMERGd8ma9dVmp5oXm2CoXFX0Mxa81huli9Th83g,3145
191
+ pluggy_sdk/models/schedule_type_monthly.py,sha256=2sXy5AbY_YYqosEYRAk6GK94BuXITFUyNM2cjkSoYfg,3424
192
+ pluggy_sdk/models/schedule_type_single.py,sha256=4Z7BxTZLi4U989-EdB1DBzxaz_FLjalA2oHgli9EMvU,2915
193
+ pluggy_sdk/models/schedule_type_weekly.py,sha256=8e20wK6cSTOkCNr8pC8CvG_aqeZ0BRGjgVP1er4z7HQ,3749
194
+ pluggy_sdk/models/single.py,sha256=gbYj-8Dzspav04aP3b-J_01jJEi4luacnzm4GVr3Rn8,2879
195
+ pluggy_sdk/models/smart_account.py,sha256=qEXq6v5t5mCr2YEZdvMncCiwNh_fbUqNzqze6RoPMtc,3625
196
+ pluggy_sdk/models/smart_account_address.py,sha256=iSFjlo01nqtRtfsD24h0gABxmUamPfHcW3hzCiCCM5s,4266
197
+ pluggy_sdk/models/smart_account_balance.py,sha256=FhPmk52iCQfrhTItJl6XQdV7fFIkxQed3H1vrp8o5o8,3217
198
+ pluggy_sdk/models/smart_account_transfer.py,sha256=UaOK1DFUJXotRZTpF3fhdEtIVrOXka0ItWp7NtWBsC4,5111
199
+ pluggy_sdk/models/smart_accounts_list200_response.py,sha256=7Qgcc6VUha7fGm4w2MMTkGtLGeGLWAjkzBzKRzicyxQ,3478
200
+ pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py,sha256=2GsrZjFOR9IYZHyvE1BHcGPZsvH1-EPkGX1TFBKPSnk,3618
201
+ pluggy_sdk/models/smart_transfer_callback_urls.py,sha256=pvgQt9jvPknZczpXDb80rTdxdLRkrKbTd-Z8xTYQh1w,2880
202
+ pluggy_sdk/models/smart_transfer_payment.py,sha256=KVzD6ETAFMG-n9K9StFUrbArl5AFGyUvr5cN79OIJt8,4806
203
+ pluggy_sdk/models/smart_transfer_preauthorization.py,sha256=M2JABKmnBAeU2tjJ32_NiDdzPUBzY1GRnzSDc66WC30,5387
204
+ pluggy_sdk/models/smart_transfer_preauthorization_parameter.py,sha256=ZhP5Q_7gZoc-gghrqdWaDfXjhKxo6518FOIuMwVrEyE,2759
205
+ pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6tTOEHA,5728
206
+ pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
207
+ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
208
+ pluggy_sdk/models/transaction.py,sha256=Aokv7FMDJ0ubyX51FKeTMzEVMbLS0MmgQkTfv6yGaPY,6671
209
+ pluggy_sdk/models/update_item.py,sha256=WJHiELhr-_JqIAVXcJLx0NTsS4CkVtdq4y_S915cKWA,4092
210
+ pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
211
+ pluggy_sdk/models/update_payment_recipient.py,sha256=CvKd2orRdEYgroSy42bkzxqiJ_JjELQhnxwf7R7bx3Y,4187
212
+ pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
213
+ pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
214
+ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
215
+ pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
216
+ pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
217
+ pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
218
+ pluggy_sdk-1.0.0.post34.dist-info/METADATA,sha256=kvTxndqPFG4IyQ0__Moq2g0bvpMZNUVmwFAMaH8MvxQ,23207
219
+ pluggy_sdk-1.0.0.post34.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
220
+ pluggy_sdk-1.0.0.post34.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
221
+ pluggy_sdk-1.0.0.post34.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pluggy_sdk