pluggy-sdk 1.0.0.post36__py3-none-any.whl → 1.0.0.post38__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.
- pluggy_sdk/__init__.py +12 -1
- pluggy_sdk/api/__init__.py +1 -0
- pluggy_sdk/api/boleto_management_api.py +1375 -0
- pluggy_sdk/api/payment_recipient_api.py +1 -18
- pluggy_sdk/api/transaction_api.py +46 -3
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +10 -0
- pluggy_sdk/models/boleto_connection.py +95 -0
- pluggy_sdk/models/create_boleto.py +94 -0
- pluggy_sdk/models/create_boleto_boleto.py +100 -0
- pluggy_sdk/models/create_boleto_boleto_payer.py +98 -0
- pluggy_sdk/models/create_boleto_connection.py +91 -0
- pluggy_sdk/models/create_boleto_connection_from_item.py +88 -0
- pluggy_sdk/models/create_item.py +1 -1
- pluggy_sdk/models/create_or_update_payment_customer.py +1 -1
- pluggy_sdk/models/create_payment_customer_request_body.py +1 -1
- pluggy_sdk/models/create_payment_recipient.py +2 -4
- pluggy_sdk/models/create_webhook.py +2 -2
- pluggy_sdk/models/investment.py +1 -11
- pluggy_sdk/models/issued_boleto.py +121 -0
- pluggy_sdk/models/issued_boleto_payer.py +126 -0
- pluggy_sdk/models/item_options.py +1 -1
- pluggy_sdk/models/payment_intent.py +8 -2
- pluggy_sdk/models/payment_intent_error_detail.py +94 -0
- pluggy_sdk/models/payment_request.py +8 -2
- pluggy_sdk/models/payment_request_error_detail.py +90 -0
- pluggy_sdk/models/update_item.py +1 -1
- pluggy_sdk/models/update_payment_recipient.py +2 -4
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/METADATA +17 -2
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/RECORD +33 -22
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
@@ -15,13 +15,14 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.0.0.
|
18
|
+
__version__ = "1.0.0.post38"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from pluggy_sdk.api.account_api import AccountApi
|
22
22
|
from pluggy_sdk.api.auth_api import AuthApi
|
23
23
|
from pluggy_sdk.api.benefit_api import BenefitApi
|
24
24
|
from pluggy_sdk.api.bill_api import BillApi
|
25
|
+
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi
|
25
26
|
from pluggy_sdk.api.bulk_payment_api import BulkPaymentApi
|
26
27
|
from pluggy_sdk.api.category_api import CategoryApi
|
27
28
|
from pluggy_sdk.api.connector_api import ConnectorApi
|
@@ -67,6 +68,7 @@ from pluggy_sdk.models.bill import Bill
|
|
67
68
|
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
|
68
69
|
from pluggy_sdk.models.bills_list200_response import BillsList200Response
|
69
70
|
from pluggy_sdk.models.boleto import Boleto
|
71
|
+
from pluggy_sdk.models.boleto_connection import BoletoConnection
|
70
72
|
from pluggy_sdk.models.boleto_payer import BoletoPayer
|
71
73
|
from pluggy_sdk.models.boleto_recipient import BoletoRecipient
|
72
74
|
from pluggy_sdk.models.bulk_payment import BulkPayment
|
@@ -84,6 +86,11 @@ from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails
|
|
84
86
|
from pluggy_sdk.models.connector_list_response import ConnectorListResponse
|
85
87
|
from pluggy_sdk.models.connector_user_action import ConnectorUserAction
|
86
88
|
from pluggy_sdk.models.consent import Consent
|
89
|
+
from pluggy_sdk.models.create_boleto import CreateBoleto
|
90
|
+
from pluggy_sdk.models.create_boleto_boleto import CreateBoletoBoleto
|
91
|
+
from pluggy_sdk.models.create_boleto_boleto_payer import CreateBoletoBoletoPayer
|
92
|
+
from pluggy_sdk.models.create_boleto_connection import CreateBoletoConnection
|
93
|
+
from pluggy_sdk.models.create_boleto_connection_from_item import CreateBoletoConnectionFromItem
|
87
94
|
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
88
95
|
from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
|
89
96
|
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
|
@@ -122,6 +129,8 @@ from pluggy_sdk.models.investment_expenses import InvestmentExpenses
|
|
122
129
|
from pluggy_sdk.models.investment_metadata import InvestmentMetadata
|
123
130
|
from pluggy_sdk.models.investment_transaction import InvestmentTransaction
|
124
131
|
from pluggy_sdk.models.investments_list200_response import InvestmentsList200Response
|
132
|
+
from pluggy_sdk.models.issued_boleto import IssuedBoleto
|
133
|
+
from pluggy_sdk.models.issued_boleto_payer import IssuedBoletoPayer
|
125
134
|
from pluggy_sdk.models.item import Item
|
126
135
|
from pluggy_sdk.models.item_creation_error_response import ItemCreationErrorResponse
|
127
136
|
from pluggy_sdk.models.item_error import ItemError
|
@@ -156,6 +165,7 @@ from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMeta
|
|
156
165
|
from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
|
157
166
|
from pluggy_sdk.models.payment_institution import PaymentInstitution
|
158
167
|
from pluggy_sdk.models.payment_intent import PaymentIntent
|
168
|
+
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail
|
159
169
|
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
|
160
170
|
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
|
161
171
|
from pluggy_sdk.models.payment_receipt import PaymentReceipt
|
@@ -167,6 +177,7 @@ from pluggy_sdk.models.payment_recipients_institution_list200_response import Pa
|
|
167
177
|
from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipientsList200Response
|
168
178
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
169
179
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
180
|
+
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
|
170
181
|
from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRequestReceiptList200Response
|
171
182
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
172
183
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
pluggy_sdk/api/__init__.py
CHANGED
@@ -5,6 +5,7 @@ from pluggy_sdk.api.account_api import AccountApi
|
|
5
5
|
from pluggy_sdk.api.auth_api import AuthApi
|
6
6
|
from pluggy_sdk.api.benefit_api import BenefitApi
|
7
7
|
from pluggy_sdk.api.bill_api import BillApi
|
8
|
+
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi
|
8
9
|
from pluggy_sdk.api.bulk_payment_api import BulkPaymentApi
|
9
10
|
from pluggy_sdk.api.category_api import CategoryApi
|
10
11
|
from pluggy_sdk.api.connector_api import ConnectorApi
|