pluggy-sdk 1.0.0.post44__py3-none-any.whl → 1.0.0.post49__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 +21 -1
- pluggy_sdk/api/__init__.py +1 -0
- pluggy_sdk/api/automatic_pix_api.py +1965 -0
- pluggy_sdk/api/payment_customer_api.py +68 -0
- pluggy_sdk/api/payment_recipient_api.py +52 -1
- pluggy_sdk/api/payment_request_api.py +123 -1
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +9 -0
- pluggy_sdk/models/additional_card.py +88 -0
- pluggy_sdk/models/automatic_pix_first_payment.py +93 -0
- pluggy_sdk/models/automatic_pix_payment.py +114 -0
- pluggy_sdk/models/create_automatic_pix_payment_request.py +128 -0
- pluggy_sdk/models/create_payment_recipient.py +4 -4
- pluggy_sdk/models/credit_data.py +22 -2
- pluggy_sdk/models/disaggregated_credit_limit.py +110 -0
- pluggy_sdk/models/payment_intent.py +2 -2
- pluggy_sdk/models/payment_intent_automatic_pix.py +114 -0
- pluggy_sdk/models/payment_intent_parameter.py +4 -2
- pluggy_sdk/models/payment_request.py +10 -4
- pluggy_sdk/models/payment_request_get_automatic_pix_schedules200_response.py +102 -0
- pluggy_sdk/models/retry_automatic_pix_payment_request.py +89 -0
- pluggy_sdk/models/schedule_automatic_pix_payment_request.py +95 -0
- pluggy_sdk/models/update_payment_recipient.py +4 -4
- {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/METADATA +24 -13
- {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/RECORD +28 -18
- {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
@@ -15,12 +15,13 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.0.0.
|
18
|
+
__version__ = "1.0.0.post49"
|
19
19
|
|
20
20
|
# Define package exports
|
21
21
|
__all__ = [
|
22
22
|
"AccountApi",
|
23
23
|
"AuthApi",
|
24
|
+
"AutomaticPIXApi",
|
24
25
|
"BillApi",
|
25
26
|
"BoletoManagementApi",
|
26
27
|
"CategoryApi",
|
@@ -49,9 +50,12 @@ __all__ = [
|
|
49
50
|
"ApiException",
|
50
51
|
"Account",
|
51
52
|
"AccountsList200Response",
|
53
|
+
"AdditionalCard",
|
52
54
|
"Address",
|
53
55
|
"AuthRequest",
|
54
56
|
"AuthResponse",
|
57
|
+
"AutomaticPixFirstPayment",
|
58
|
+
"AutomaticPixPayment",
|
55
59
|
"BankData",
|
56
60
|
"Bill",
|
57
61
|
"BillFinanceCharge",
|
@@ -73,6 +77,7 @@ __all__ = [
|
|
73
77
|
"ConnectorListResponse",
|
74
78
|
"ConnectorUserAction",
|
75
79
|
"Consent",
|
80
|
+
"CreateAutomaticPixPaymentRequest",
|
76
81
|
"CreateBoleto",
|
77
82
|
"CreateBoletoBoleto",
|
78
83
|
"CreateBoletoBoletoFine",
|
@@ -97,6 +102,7 @@ __all__ = [
|
|
97
102
|
"CreditCardMetadata",
|
98
103
|
"CreditData",
|
99
104
|
"DAILY",
|
105
|
+
"DisaggregatedCreditLimit",
|
100
106
|
"Document",
|
101
107
|
"Email",
|
102
108
|
"GlobalErrorResponse",
|
@@ -152,6 +158,7 @@ __all__ = [
|
|
152
158
|
"PaymentDataParticipant",
|
153
159
|
"PaymentInstitution",
|
154
160
|
"PaymentIntent",
|
161
|
+
"PaymentIntentAutomaticPix",
|
155
162
|
"PaymentIntentErrorDetail",
|
156
163
|
"PaymentIntentParameter",
|
157
164
|
"PaymentIntentsList200Response",
|
@@ -162,12 +169,15 @@ __all__ = [
|
|
162
169
|
"PaymentRequest",
|
163
170
|
"PaymentRequestCallbackUrls",
|
164
171
|
"PaymentRequestErrorDetail",
|
172
|
+
"PaymentRequestGetAutomaticPixSchedules200Response",
|
165
173
|
"PaymentRequestSchedule",
|
166
174
|
"PaymentRequestsList200Response",
|
167
175
|
"PaymentSchedulesList200Response",
|
168
176
|
"PhoneNumber",
|
169
177
|
"PixData",
|
178
|
+
"RetryAutomaticPixPaymentRequest",
|
170
179
|
"SINGLE",
|
180
|
+
"ScheduleAutomaticPixPaymentRequest",
|
171
181
|
"SchedulePayment",
|
172
182
|
"SchedulePaymentErrorDetail",
|
173
183
|
"SmartTranfersPreauthorizationsList200Response",
|
@@ -193,6 +203,7 @@ __all__ = [
|
|
193
203
|
# import apis into sdk package
|
194
204
|
from pluggy_sdk.api.account_api import AccountApi as AccountApi
|
195
205
|
from pluggy_sdk.api.auth_api import AuthApi as AuthApi
|
206
|
+
from pluggy_sdk.api.automatic_pix_api import AutomaticPIXApi as AutomaticPIXApi
|
196
207
|
from pluggy_sdk.api.bill_api import BillApi as BillApi
|
197
208
|
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi as BoletoManagementApi
|
198
209
|
from pluggy_sdk.api.category_api import CategoryApi as CategoryApi
|
@@ -225,9 +236,12 @@ from pluggy_sdk.exceptions import ApiException as ApiException
|
|
225
236
|
# import models into sdk package
|
226
237
|
from pluggy_sdk.models.account import Account as Account
|
227
238
|
from pluggy_sdk.models.accounts_list200_response import AccountsList200Response as AccountsList200Response
|
239
|
+
from pluggy_sdk.models.additional_card import AdditionalCard as AdditionalCard
|
228
240
|
from pluggy_sdk.models.address import Address as Address
|
229
241
|
from pluggy_sdk.models.auth_request import AuthRequest as AuthRequest
|
230
242
|
from pluggy_sdk.models.auth_response import AuthResponse as AuthResponse
|
243
|
+
from pluggy_sdk.models.automatic_pix_first_payment import AutomaticPixFirstPayment as AutomaticPixFirstPayment
|
244
|
+
from pluggy_sdk.models.automatic_pix_payment import AutomaticPixPayment as AutomaticPixPayment
|
231
245
|
from pluggy_sdk.models.bank_data import BankData as BankData
|
232
246
|
from pluggy_sdk.models.bill import Bill as Bill
|
233
247
|
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge as BillFinanceCharge
|
@@ -249,6 +263,7 @@ from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails as
|
|
249
263
|
from pluggy_sdk.models.connector_list_response import ConnectorListResponse as ConnectorListResponse
|
250
264
|
from pluggy_sdk.models.connector_user_action import ConnectorUserAction as ConnectorUserAction
|
251
265
|
from pluggy_sdk.models.consent import Consent as Consent
|
266
|
+
from pluggy_sdk.models.create_automatic_pix_payment_request import CreateAutomaticPixPaymentRequest as CreateAutomaticPixPaymentRequest
|
252
267
|
from pluggy_sdk.models.create_boleto import CreateBoleto as CreateBoleto
|
253
268
|
from pluggy_sdk.models.create_boleto_boleto import CreateBoletoBoleto as CreateBoletoBoleto
|
254
269
|
from pluggy_sdk.models.create_boleto_boleto_fine import CreateBoletoBoletoFine as CreateBoletoBoletoFine
|
@@ -273,6 +288,7 @@ from pluggy_sdk.models.credential_select_option import CredentialSelectOption as
|
|
273
288
|
from pluggy_sdk.models.credit_card_metadata import CreditCardMetadata as CreditCardMetadata
|
274
289
|
from pluggy_sdk.models.credit_data import CreditData as CreditData
|
275
290
|
from pluggy_sdk.models.daily import DAILY as DAILY
|
291
|
+
from pluggy_sdk.models.disaggregated_credit_limit import DisaggregatedCreditLimit as DisaggregatedCreditLimit
|
276
292
|
from pluggy_sdk.models.document import Document as Document
|
277
293
|
from pluggy_sdk.models.email import Email as Email
|
278
294
|
from pluggy_sdk.models.global_error_response import GlobalErrorResponse as GlobalErrorResponse
|
@@ -328,6 +344,7 @@ from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMeta
|
|
328
344
|
from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant as PaymentDataParticipant
|
329
345
|
from pluggy_sdk.models.payment_institution import PaymentInstitution as PaymentInstitution
|
330
346
|
from pluggy_sdk.models.payment_intent import PaymentIntent as PaymentIntent
|
347
|
+
from pluggy_sdk.models.payment_intent_automatic_pix import PaymentIntentAutomaticPix as PaymentIntentAutomaticPix
|
331
348
|
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail as PaymentIntentErrorDetail
|
332
349
|
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter as PaymentIntentParameter
|
333
350
|
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response as PaymentIntentsList200Response
|
@@ -338,12 +355,15 @@ from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipie
|
|
338
355
|
from pluggy_sdk.models.payment_request import PaymentRequest as PaymentRequest
|
339
356
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls as PaymentRequestCallbackUrls
|
340
357
|
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail as PaymentRequestErrorDetail
|
358
|
+
from pluggy_sdk.models.payment_request_get_automatic_pix_schedules200_response import PaymentRequestGetAutomaticPixSchedules200Response as PaymentRequestGetAutomaticPixSchedules200Response
|
341
359
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule as PaymentRequestSchedule
|
342
360
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response as PaymentRequestsList200Response
|
343
361
|
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response as PaymentSchedulesList200Response
|
344
362
|
from pluggy_sdk.models.phone_number import PhoneNumber as PhoneNumber
|
345
363
|
from pluggy_sdk.models.pix_data import PixData as PixData
|
364
|
+
from pluggy_sdk.models.retry_automatic_pix_payment_request import RetryAutomaticPixPaymentRequest as RetryAutomaticPixPaymentRequest
|
346
365
|
from pluggy_sdk.models.single import SINGLE as SINGLE
|
366
|
+
from pluggy_sdk.models.schedule_automatic_pix_payment_request import ScheduleAutomaticPixPaymentRequest as ScheduleAutomaticPixPaymentRequest
|
347
367
|
from pluggy_sdk.models.schedule_payment import SchedulePayment as SchedulePayment
|
348
368
|
from pluggy_sdk.models.schedule_payment_error_detail import SchedulePaymentErrorDetail as SchedulePaymentErrorDetail
|
349
369
|
from pluggy_sdk.models.smart_tranfers_preauthorizations_list200_response import SmartTranfersPreauthorizationsList200Response as SmartTranfersPreauthorizationsList200Response
|
pluggy_sdk/api/__init__.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# import apis into api package
|
4
4
|
from pluggy_sdk.api.account_api import AccountApi
|
5
5
|
from pluggy_sdk.api.auth_api import AuthApi
|
6
|
+
from pluggy_sdk.api.automatic_pix_api import AutomaticPIXApi
|
6
7
|
from pluggy_sdk.api.bill_api import BillApi
|
7
8
|
from pluggy_sdk.api.boleto_management_api import BoletoManagementApi
|
8
9
|
from pluggy_sdk.api.category_api import CategoryApi
|