pluggy-sdk 1.0.0.post42__py3-none-any.whl → 1.0.0.post44__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 +343 -193
- pluggy_sdk/api/__init__.py +0 -3
- pluggy_sdk/api/payment_request_api.py +0 -1349
- pluggy_sdk/api/payment_schedule_api.py +3 -3
- pluggy_sdk/api_client.py +5 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +0 -20
- pluggy_sdk/models/create_payment_intent.py +4 -6
- pluggy_sdk/models/create_payment_recipient.py +2 -4
- pluggy_sdk/models/create_payment_request.py +1 -3
- pluggy_sdk/models/payment_intent.py +1 -7
- pluggy_sdk/models/payment_recipient.py +2 -4
- pluggy_sdk/models/schedule_payment.py +3 -1
- pluggy_sdk/models/smart_transfer_payment.py +3 -3
- {pluggy_sdk-1.0.0.post42.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/METADATA +4 -41
- {pluggy_sdk-1.0.0.post42.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/RECORD +18 -18
- {pluggy_sdk-1.0.0.post42.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post42.dist-info → pluggy_sdk-1.0.0.post44.dist-info}/top_level.txt +0 -0
@@ -311,7 +311,7 @@ class PaymentScheduleApi:
|
|
311
311
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
312
312
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
313
313
|
) -> None:
|
314
|
-
"""Cancel Payment Schedule
|
314
|
+
"""Cancel Payment Schedule
|
315
315
|
|
316
316
|
|
317
317
|
|
@@ -382,7 +382,7 @@ class PaymentScheduleApi:
|
|
382
382
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
383
383
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
384
384
|
) -> ApiResponse[None]:
|
385
|
-
"""Cancel Payment Schedule
|
385
|
+
"""Cancel Payment Schedule
|
386
386
|
|
387
387
|
|
388
388
|
|
@@ -453,7 +453,7 @@ class PaymentScheduleApi:
|
|
453
453
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
454
454
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
455
455
|
) -> RESTResponseType:
|
456
|
-
"""Cancel Payment Schedule
|
456
|
+
"""Cancel Payment Schedule
|
457
457
|
|
458
458
|
|
459
459
|
|
pluggy_sdk/api_client.py
CHANGED
@@ -91,7 +91,7 @@ class ApiClient:
|
|
91
91
|
self.default_headers[header_name] = header_value
|
92
92
|
self.cookie = cookie
|
93
93
|
# Set default User-Agent.
|
94
|
-
self.user_agent = 'OpenAPI-Generator/1.0.0.
|
94
|
+
self.user_agent = 'OpenAPI-Generator/1.0.0.post44/python'
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
96
96
|
|
97
97
|
def __enter__(self):
|
@@ -383,6 +383,10 @@ class ApiClient:
|
|
383
383
|
else:
|
384
384
|
obj_dict = obj.__dict__
|
385
385
|
|
386
|
+
if isinstance(obj_dict, list):
|
387
|
+
# here we handle instances that can either be a list or something else, and only became a real list by calling to_dict()
|
388
|
+
return self.sanitize_for_serialization(obj_dict)
|
389
|
+
|
386
390
|
return {
|
387
391
|
key: self.sanitize_for_serialization(val)
|
388
392
|
for key, val in obj_dict.items()
|
pluggy_sdk/configuration.py
CHANGED
@@ -532,7 +532,7 @@ conf = pluggy_sdk.Configuration(
|
|
532
532
|
"OS: {env}\n"\
|
533
533
|
"Python Version: {pyversion}\n"\
|
534
534
|
"Version of the API: 1.0.0\n"\
|
535
|
-
"SDK Package Version: 1.0.0.
|
535
|
+
"SDK Package Version: 1.0.0.post44".\
|
536
536
|
format(env=sys.platform, pyversion=sys.version)
|
537
537
|
|
538
538
|
def get_host_settings(self) -> List[HostSetting]:
|
pluggy_sdk/models/__init__.py
CHANGED
@@ -21,11 +21,6 @@ from pluggy_sdk.models.address import Address
|
|
21
21
|
from pluggy_sdk.models.auth_request import AuthRequest
|
22
22
|
from pluggy_sdk.models.auth_response import AuthResponse
|
23
23
|
from pluggy_sdk.models.bank_data import BankData
|
24
|
-
from pluggy_sdk.models.benefit_loan import BenefitLoan
|
25
|
-
from pluggy_sdk.models.benefit_loan_client import BenefitLoanClient
|
26
|
-
from pluggy_sdk.models.benefit_response import BenefitResponse
|
27
|
-
from pluggy_sdk.models.benefit_response_paying_institution import BenefitResponsePayingInstitution
|
28
|
-
from pluggy_sdk.models.benefits_list200_response import BenefitsList200Response
|
29
24
|
from pluggy_sdk.models.bill import Bill
|
30
25
|
from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
|
31
26
|
from pluggy_sdk.models.bills_list200_response import BillsList200Response
|
@@ -33,8 +28,6 @@ from pluggy_sdk.models.boleto import Boleto
|
|
33
28
|
from pluggy_sdk.models.boleto_connection import BoletoConnection
|
34
29
|
from pluggy_sdk.models.boleto_payer import BoletoPayer
|
35
30
|
from pluggy_sdk.models.boleto_recipient import BoletoRecipient
|
36
|
-
from pluggy_sdk.models.bulk_payment import BulkPayment
|
37
|
-
from pluggy_sdk.models.bulk_payments_list200_response import BulkPaymentsList200Response
|
38
31
|
from pluggy_sdk.models.custom import CUSTOM
|
39
32
|
from pluggy_sdk.models.category import Category
|
40
33
|
from pluggy_sdk.models.client_category_rule import ClientCategoryRule
|
@@ -55,8 +48,6 @@ from pluggy_sdk.models.create_boleto_boleto_interest import CreateBoletoBoletoIn
|
|
55
48
|
from pluggy_sdk.models.create_boleto_boleto_payer import CreateBoletoBoletoPayer
|
56
49
|
from pluggy_sdk.models.create_boleto_connection import CreateBoletoConnection
|
57
50
|
from pluggy_sdk.models.create_boleto_connection_from_item import CreateBoletoConnectionFromItem
|
58
|
-
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
59
|
-
from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
|
60
51
|
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
|
61
52
|
from pluggy_sdk.models.create_item import CreateItem
|
62
53
|
from pluggy_sdk.models.create_item_parameters import CreateItemParameters
|
@@ -67,8 +58,6 @@ from pluggy_sdk.models.create_payment_recipient import CreatePaymentRecipient
|
|
67
58
|
from pluggy_sdk.models.create_payment_request import CreatePaymentRequest
|
68
59
|
from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule
|
69
60
|
from pluggy_sdk.models.create_pix_qr_payment_request import CreatePixQrPaymentRequest
|
70
|
-
from pluggy_sdk.models.create_smart_account_request import CreateSmartAccountRequest
|
71
|
-
from pluggy_sdk.models.create_smart_account_transfer_request import CreateSmartAccountTransferRequest
|
72
61
|
from pluggy_sdk.models.create_smart_transfer_payment import CreateSmartTransferPayment
|
73
62
|
from pluggy_sdk.models.create_smart_transfer_preauthorization import CreateSmartTransferPreauthorization
|
74
63
|
from pluggy_sdk.models.create_webhook import CreateWebhook
|
@@ -134,9 +123,6 @@ from pluggy_sdk.models.payment_intent import PaymentIntent
|
|
134
123
|
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail
|
135
124
|
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
|
136
125
|
from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
|
137
|
-
from pluggy_sdk.models.payment_receipt import PaymentReceipt
|
138
|
-
from pluggy_sdk.models.payment_receipt_bank_account import PaymentReceiptBankAccount
|
139
|
-
from pluggy_sdk.models.payment_receipt_person import PaymentReceiptPerson
|
140
126
|
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
141
127
|
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
142
128
|
from pluggy_sdk.models.payment_recipients_institution_list200_response import PaymentRecipientsInstitutionList200Response
|
@@ -144,7 +130,6 @@ from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipie
|
|
144
130
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
145
131
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
146
132
|
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
|
147
|
-
from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRequestReceiptList200Response
|
148
133
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
149
134
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
150
135
|
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response
|
@@ -153,11 +138,6 @@ from pluggy_sdk.models.pix_data import PixData
|
|
153
138
|
from pluggy_sdk.models.single import SINGLE
|
154
139
|
from pluggy_sdk.models.schedule_payment import SchedulePayment
|
155
140
|
from pluggy_sdk.models.schedule_payment_error_detail import SchedulePaymentErrorDetail
|
156
|
-
from pluggy_sdk.models.smart_account import SmartAccount
|
157
|
-
from pluggy_sdk.models.smart_account_address import SmartAccountAddress
|
158
|
-
from pluggy_sdk.models.smart_account_balance import SmartAccountBalance
|
159
|
-
from pluggy_sdk.models.smart_account_transfer import SmartAccountTransfer
|
160
|
-
from pluggy_sdk.models.smart_accounts_list200_response import SmartAccountsList200Response
|
161
141
|
from pluggy_sdk.models.smart_tranfers_preauthorizations_list200_response import SmartTranfersPreauthorizationsList200Response
|
162
142
|
from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
|
163
143
|
from pluggy_sdk.models.smart_transfer_payment import SmartTransferPayment
|
@@ -29,12 +29,11 @@ class CreatePaymentIntent(BaseModel):
|
|
29
29
|
Request with information to create a payment intent
|
30
30
|
""" # noqa: E501
|
31
31
|
payment_request_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the payment request associated to the payment intent", alias="paymentRequestId")
|
32
|
-
bulk_payment_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the bulk payment associated to the payment intent", alias="bulkPaymentId")
|
33
32
|
parameters: Optional[PaymentIntentParameter] = None
|
34
33
|
connector_id: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Primary identifier of the connector associated to the payment intent", alias="connectorId")
|
35
|
-
payment_method: Optional[StrictStr] = Field(default=None, description="Payment method can be PIS (Payment Initiation) or PIX (PIX QR flow)
|
34
|
+
payment_method: Optional[StrictStr] = Field(default=None, description="Payment method can be PIS (Payment Initiation) or PIX (PIX QR flow).", alias="paymentMethod")
|
36
35
|
is_dynamic_pix: Optional[StrictBool] = Field(default=None, description="Only for PIX paymentMethod. If true, the generated PIX QR code is dynamic and one-use. This requires the customerId to be present, and the customer must have CPF/CNPJ", alias="isDynamicPix")
|
37
|
-
__properties: ClassVar[List[str]] = ["paymentRequestId", "
|
36
|
+
__properties: ClassVar[List[str]] = ["paymentRequestId", "parameters", "connectorId", "paymentMethod", "isDynamicPix"]
|
38
37
|
|
39
38
|
@field_validator('payment_method')
|
40
39
|
def payment_method_validate_enum(cls, value):
|
@@ -42,8 +41,8 @@ class CreatePaymentIntent(BaseModel):
|
|
42
41
|
if value is None:
|
43
42
|
return value
|
44
43
|
|
45
|
-
if value not in set(['PIS'
|
46
|
-
raise ValueError("must be one of enum values ('PIS'
|
44
|
+
if value not in set(['PIS']):
|
45
|
+
raise ValueError("must be one of enum values ('PIS')")
|
47
46
|
return value
|
48
47
|
|
49
48
|
model_config = ConfigDict(
|
@@ -101,7 +100,6 @@ class CreatePaymentIntent(BaseModel):
|
|
101
100
|
|
102
101
|
_obj = cls.model_validate({
|
103
102
|
"paymentRequestId": obj.get("paymentRequestId"),
|
104
|
-
"bulkPaymentId": obj.get("bulkPaymentId"),
|
105
103
|
"parameters": PaymentIntentParameter.from_dict(obj["parameters"]) if obj.get("parameters") is not None else None,
|
106
104
|
"connectorId": obj.get("connectorId"),
|
107
105
|
"paymentMethod": obj.get("paymentMethod"),
|
@@ -33,8 +33,7 @@ class CreatePaymentRecipient(BaseModel):
|
|
33
33
|
payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only when the pixKey is not sent.", alias="paymentInstitutionId")
|
34
34
|
account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the pixKey is not sent.")
|
35
35
|
pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
|
36
|
-
|
37
|
-
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "pixKey", "smartAccountId"]
|
36
|
+
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "pixKey"]
|
38
37
|
|
39
38
|
model_config = ConfigDict(
|
40
39
|
populate_by_name=True,
|
@@ -94,8 +93,7 @@ class CreatePaymentRecipient(BaseModel):
|
|
94
93
|
"name": obj.get("name"),
|
95
94
|
"paymentInstitutionId": obj.get("paymentInstitutionId"),
|
96
95
|
"account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
|
97
|
-
"pixKey": obj.get("pixKey")
|
98
|
-
"smartAccountId": obj.get("smartAccountId")
|
96
|
+
"pixKey": obj.get("pixKey")
|
99
97
|
})
|
100
98
|
return _obj
|
101
99
|
|
@@ -35,9 +35,8 @@ class CreatePaymentRequest(BaseModel):
|
|
35
35
|
recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
|
36
36
|
customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
|
37
37
|
client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
|
38
|
-
smart_account_id: Optional[StrictStr] = Field(default=None, description="Smart account identifier associated to the payment, used to be able to use PIX Qr method", alias="smartAccountId")
|
39
38
|
schedule: Optional[CreatePaymentRequestSchedule] = None
|
40
|
-
__properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "
|
39
|
+
__properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "schedule"]
|
41
40
|
|
42
41
|
model_config = ConfigDict(
|
43
42
|
populate_by_name=True,
|
@@ -107,7 +106,6 @@ class CreatePaymentRequest(BaseModel):
|
|
107
106
|
"recipientId": obj.get("recipientId"),
|
108
107
|
"customerId": obj.get("customerId"),
|
109
108
|
"clientPaymentId": obj.get("clientPaymentId"),
|
110
|
-
"smartAccountId": obj.get("smartAccountId"),
|
111
109
|
"schedule": CreatePaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None
|
112
110
|
})
|
113
111
|
return _obj
|
@@ -21,7 +21,6 @@ import json
|
|
21
21
|
from datetime import datetime
|
22
22
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional
|
24
|
-
from pluggy_sdk.models.bulk_payment import BulkPayment
|
25
24
|
from pluggy_sdk.models.connector import Connector
|
26
25
|
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail
|
27
26
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
@@ -38,14 +37,13 @@ class PaymentIntent(BaseModel):
|
|
38
37
|
created_at: Optional[datetime] = Field(default=None, description="Date when the payment intent was created", alias="createdAt")
|
39
38
|
updated_at: Optional[datetime] = Field(default=None, description="Date when the payment intent was updated", alias="updatedAt")
|
40
39
|
payment_request: Optional[PaymentRequest] = Field(default=None, description="Payment request associated to the payment intent", alias="paymentRequest")
|
41
|
-
bulk_payment: Optional[BulkPayment] = Field(default=None, description="Bulk Payment associated to the payment intent", alias="bulkPayment")
|
42
40
|
connector: Optional[Connector] = Field(default=None, description="Connector associated to the payment intent")
|
43
41
|
consent_url: Optional[StrictStr] = Field(default=None, description="Url to authorize the payment intent", alias="consentUrl")
|
44
42
|
reference_id: Optional[StrictStr] = Field(default=None, description="Pix id related to the payment intent", alias="referenceId")
|
45
43
|
payment_method: Optional[StrictStr] = Field(default='PIS', description="Payment method can be PIS (Payment Initiation) or PIX", alias="paymentMethod")
|
46
44
|
pix_data: Optional[PixData] = Field(default=None, description="Pix data related to the payment intent (only applies for PIX payment method)", alias="pixData")
|
47
45
|
error_detail: Optional[PaymentIntentErrorDetail] = Field(default=None, alias="errorDetail")
|
48
|
-
__properties: ClassVar[List[str]] = ["id", "status", "createdAt", "updatedAt", "paymentRequest", "
|
46
|
+
__properties: ClassVar[List[str]] = ["id", "status", "createdAt", "updatedAt", "paymentRequest", "connector", "consentUrl", "referenceId", "paymentMethod", "pixData", "errorDetail"]
|
49
47
|
|
50
48
|
@field_validator('status')
|
51
49
|
def status_validate_enum(cls, value):
|
@@ -109,9 +107,6 @@ class PaymentIntent(BaseModel):
|
|
109
107
|
# override the default output from pydantic by calling `to_dict()` of payment_request
|
110
108
|
if self.payment_request:
|
111
109
|
_dict['paymentRequest'] = self.payment_request.to_dict()
|
112
|
-
# override the default output from pydantic by calling `to_dict()` of bulk_payment
|
113
|
-
if self.bulk_payment:
|
114
|
-
_dict['bulkPayment'] = self.bulk_payment.to_dict()
|
115
110
|
# override the default output from pydantic by calling `to_dict()` of connector
|
116
111
|
if self.connector:
|
117
112
|
_dict['connector'] = self.connector.to_dict()
|
@@ -138,7 +133,6 @@ class PaymentIntent(BaseModel):
|
|
138
133
|
"createdAt": obj.get("createdAt"),
|
139
134
|
"updatedAt": obj.get("updatedAt"),
|
140
135
|
"paymentRequest": PaymentRequest.from_dict(obj["paymentRequest"]) if obj.get("paymentRequest") is not None else None,
|
141
|
-
"bulkPayment": BulkPayment.from_dict(obj["bulkPayment"]) if obj.get("bulkPayment") is not None else None,
|
142
136
|
"connector": Connector.from_dict(obj["connector"]) if obj.get("connector") is not None else None,
|
143
137
|
"consentUrl": obj.get("consentUrl"),
|
144
138
|
"referenceId": obj.get("referenceId"),
|
@@ -36,8 +36,7 @@ class PaymentRecipient(BaseModel):
|
|
36
36
|
is_default: StrictBool = Field(description="Indicates if the recipient is the default one", alias="isDefault")
|
37
37
|
account: PaymentRecipientAccount
|
38
38
|
pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
|
39
|
-
|
40
|
-
__properties: ClassVar[List[str]] = ["id", "taxNumber", "name", "paymentInstitution", "isDefault", "account", "pixKey", "smartAccountId"]
|
39
|
+
__properties: ClassVar[List[str]] = ["id", "taxNumber", "name", "paymentInstitution", "isDefault", "account", "pixKey"]
|
41
40
|
|
42
41
|
model_config = ConfigDict(
|
43
42
|
populate_by_name=True,
|
@@ -102,8 +101,7 @@ class PaymentRecipient(BaseModel):
|
|
102
101
|
"paymentInstitution": PaymentInstitution.from_dict(obj["paymentInstitution"]) if obj.get("paymentInstitution") is not None else None,
|
103
102
|
"isDefault": obj.get("isDefault"),
|
104
103
|
"account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
|
105
|
-
"pixKey": obj.get("pixKey")
|
106
|
-
"smartAccountId": obj.get("smartAccountId")
|
104
|
+
"pixKey": obj.get("pixKey")
|
107
105
|
})
|
108
106
|
return _obj
|
109
107
|
|
@@ -33,8 +33,9 @@ class SchedulePayment(BaseModel):
|
|
33
33
|
description: StrictStr = Field(description="Scheduled payment description")
|
34
34
|
status: StrictStr = Field(description="Scheduled payment status")
|
35
35
|
scheduled_date: date = Field(description="Date when the payment is scheduled", alias="scheduledDate")
|
36
|
+
end_to_end_id: Optional[StrictStr] = Field(default=None, description="Identifier for the payment, used to link the scheduled payment with the corresponding payment received", alias="endToEndId")
|
36
37
|
error_detail: Optional[SchedulePaymentErrorDetail] = Field(default=None, alias="errorDetail")
|
37
|
-
__properties: ClassVar[List[str]] = ["id", "description", "status", "scheduledDate", "errorDetail"]
|
38
|
+
__properties: ClassVar[List[str]] = ["id", "description", "status", "scheduledDate", "endToEndId", "errorDetail"]
|
38
39
|
|
39
40
|
@field_validator('status')
|
40
41
|
def status_validate_enum(cls, value):
|
@@ -101,6 +102,7 @@ class SchedulePayment(BaseModel):
|
|
101
102
|
"description": obj.get("description"),
|
102
103
|
"status": obj.get("status"),
|
103
104
|
"scheduledDate": obj.get("scheduledDate"),
|
105
|
+
"endToEndId": obj.get("endToEndId"),
|
104
106
|
"errorDetail": SchedulePaymentErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
|
105
107
|
})
|
106
108
|
return _obj
|
@@ -21,7 +21,7 @@ import json
|
|
21
21
|
from datetime import datetime
|
22
22
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
24
|
-
from pluggy_sdk.models.
|
24
|
+
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
25
25
|
from typing import Optional, Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
@@ -34,7 +34,7 @@ class SmartTransferPayment(BaseModel):
|
|
34
34
|
status: StrictStr = Field(description="Payment status")
|
35
35
|
amount: Union[StrictFloat, StrictInt] = Field(description="Payment amount")
|
36
36
|
description: Optional[StrictStr] = Field(default=None, description="Payment description")
|
37
|
-
recipient:
|
37
|
+
recipient: PaymentRecipient
|
38
38
|
client_payment_id: Optional[StrictStr] = Field(default=None, description="Client payment identifier", alias="clientPaymentId")
|
39
39
|
created_at: datetime = Field(description="Date when the payemnt was created", alias="createdAt")
|
40
40
|
updated_at: datetime = Field(description="Date when the payment was updated", alias="updatedAt")
|
@@ -106,7 +106,7 @@ class SmartTransferPayment(BaseModel):
|
|
106
106
|
"status": obj.get("status"),
|
107
107
|
"amount": obj.get("amount"),
|
108
108
|
"description": obj.get("description"),
|
109
|
-
"recipient":
|
109
|
+
"recipient": PaymentRecipient.from_dict(obj["recipient"]) if obj.get("recipient") is not None else None,
|
110
110
|
"clientPaymentId": obj.get("clientPaymentId"),
|
111
111
|
"createdAt": obj.get("createdAt"),
|
112
112
|
"updatedAt": obj.get("updatedAt")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post44
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -28,8 +28,8 @@ Pluggy's main API to review data and execute connectors
|
|
28
28
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
29
29
|
|
30
30
|
- API version: 1.0.0
|
31
|
-
- Package version: 1.0.0.
|
32
|
-
- Generator version: 7.
|
31
|
+
- Package version: 1.0.0.post44
|
32
|
+
- Generator version: 7.14.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
35
35
|
|
@@ -125,8 +125,6 @@ Class | Method | HTTP request | Description
|
|
125
125
|
*AccountApi* | [**accounts_retrieve**](docs/AccountApi.md#accounts_retrieve) | **GET** /accounts/{id} | Retrieve
|
126
126
|
*AuthApi* | [**auth_create**](docs/AuthApi.md#auth_create) | **POST** /auth | Create API Key
|
127
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
128
|
*BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
|
131
129
|
*BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
|
132
130
|
*BoletoManagementApi* | [**boleto_cancel**](docs/BoletoManagementApi.md#boleto_cancel) | **POST** /boletos/{id}/cancel | Cancel Boleto
|
@@ -134,10 +132,6 @@ Class | Method | HTTP request | Description
|
|
134
132
|
*BoletoManagementApi* | [**boleto_connection_create_from_item**](docs/BoletoManagementApi.md#boleto_connection_create_from_item) | **POST** /boleto-connections/from-item | Create boleto connection from Item
|
135
133
|
*BoletoManagementApi* | [**boleto_create**](docs/BoletoManagementApi.md#boleto_create) | **POST** /boletos | Issue Boleto
|
136
134
|
*BoletoManagementApi* | [**boleto_get**](docs/BoletoManagementApi.md#boleto_get) | **GET** /boletos/{id} | Get Boleto
|
137
|
-
*BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create
|
138
|
-
*BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete
|
139
|
-
*BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve
|
140
|
-
*BulkPaymentApi* | [**bulk_payments_list**](docs/BulkPaymentApi.md#bulk_payments_list) | **GET** /payments/bulk | List
|
141
135
|
*CategoryApi* | [**categories_list**](docs/CategoryApi.md#categories_list) | **GET** /categories | List
|
142
136
|
*CategoryApi* | [**categories_retrieve**](docs/CategoryApi.md#categories_retrieve) | **GET** /categories/{id} | Retrieve
|
143
137
|
*CategoryApi* | [**client_category_rules_create**](docs/CategoryApi.md#client_category_rules_create) | **POST** /categories/rules | Create Category Rule
|
@@ -176,25 +170,14 @@ Class | Method | HTTP request | Description
|
|
176
170
|
*PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions
|
177
171
|
*PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List
|
178
172
|
*PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create
|
179
|
-
*PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
|
180
173
|
*PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
|
181
174
|
*PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
|
182
|
-
*PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
|
183
|
-
*PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
|
184
|
-
*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
|
185
|
-
*PaymentRequestApi* | [**payment_request_refund**](docs/PaymentRequestApi.md#payment_request_refund) | **POST** /payments/requests/{id}/refund | Refund Payment Request
|
186
175
|
*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
|
187
176
|
*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
|
188
177
|
*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
|
189
178
|
*PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
|
190
|
-
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule
|
179
|
+
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule
|
191
180
|
*PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | List Schedules
|
192
|
-
*SmartAccountApi* | [**smart_account_balance_retrieve**](docs/SmartAccountApi.md#smart_account_balance_retrieve) | **GET** /payments/smart-accounts/{id}/balance | Retrieve Balance
|
193
|
-
*SmartAccountApi* | [**smart_account_create**](docs/SmartAccountApi.md#smart_account_create) | **POST** /payments/smart-accounts | Create
|
194
|
-
*SmartAccountApi* | [**smart_account_retrieve**](docs/SmartAccountApi.md#smart_account_retrieve) | **GET** /payments/smart-accounts/{id} | Retrieve
|
195
|
-
*SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
|
196
|
-
*SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
|
197
|
-
*SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
|
198
181
|
*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
|
199
182
|
*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
|
200
183
|
*SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
|
@@ -218,11 +201,6 @@ Class | Method | HTTP request | Description
|
|
218
201
|
- [AuthRequest](docs/AuthRequest.md)
|
219
202
|
- [AuthResponse](docs/AuthResponse.md)
|
220
203
|
- [BankData](docs/BankData.md)
|
221
|
-
- [BenefitLoan](docs/BenefitLoan.md)
|
222
|
-
- [BenefitLoanClient](docs/BenefitLoanClient.md)
|
223
|
-
- [BenefitResponse](docs/BenefitResponse.md)
|
224
|
-
- [BenefitResponsePayingInstitution](docs/BenefitResponsePayingInstitution.md)
|
225
|
-
- [BenefitsList200Response](docs/BenefitsList200Response.md)
|
226
204
|
- [Bill](docs/Bill.md)
|
227
205
|
- [BillFinanceCharge](docs/BillFinanceCharge.md)
|
228
206
|
- [BillsList200Response](docs/BillsList200Response.md)
|
@@ -230,8 +208,6 @@ Class | Method | HTTP request | Description
|
|
230
208
|
- [BoletoConnection](docs/BoletoConnection.md)
|
231
209
|
- [BoletoPayer](docs/BoletoPayer.md)
|
232
210
|
- [BoletoRecipient](docs/BoletoRecipient.md)
|
233
|
-
- [BulkPayment](docs/BulkPayment.md)
|
234
|
-
- [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)
|
235
211
|
- [CUSTOM](docs/CUSTOM.md)
|
236
212
|
- [Category](docs/Category.md)
|
237
213
|
- [ClientCategoryRule](docs/ClientCategoryRule.md)
|
@@ -252,8 +228,6 @@ Class | Method | HTTP request | Description
|
|
252
228
|
- [CreateBoletoBoletoPayer](docs/CreateBoletoBoletoPayer.md)
|
253
229
|
- [CreateBoletoConnection](docs/CreateBoletoConnection.md)
|
254
230
|
- [CreateBoletoConnectionFromItem](docs/CreateBoletoConnectionFromItem.md)
|
255
|
-
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
|
256
|
-
- [CreateBulkPayment](docs/CreateBulkPayment.md)
|
257
231
|
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
|
258
232
|
- [CreateItem](docs/CreateItem.md)
|
259
233
|
- [CreateItemParameters](docs/CreateItemParameters.md)
|
@@ -264,8 +238,6 @@ Class | Method | HTTP request | Description
|
|
264
238
|
- [CreatePaymentRequest](docs/CreatePaymentRequest.md)
|
265
239
|
- [CreatePaymentRequestSchedule](docs/CreatePaymentRequestSchedule.md)
|
266
240
|
- [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
|
267
|
-
- [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
|
268
|
-
- [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
|
269
241
|
- [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
|
270
242
|
- [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
|
271
243
|
- [CreateWebhook](docs/CreateWebhook.md)
|
@@ -331,9 +303,6 @@ Class | Method | HTTP request | Description
|
|
331
303
|
- [PaymentIntentErrorDetail](docs/PaymentIntentErrorDetail.md)
|
332
304
|
- [PaymentIntentParameter](docs/PaymentIntentParameter.md)
|
333
305
|
- [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
|
334
|
-
- [PaymentReceipt](docs/PaymentReceipt.md)
|
335
|
-
- [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)
|
336
|
-
- [PaymentReceiptPerson](docs/PaymentReceiptPerson.md)
|
337
306
|
- [PaymentRecipient](docs/PaymentRecipient.md)
|
338
307
|
- [PaymentRecipientAccount](docs/PaymentRecipientAccount.md)
|
339
308
|
- [PaymentRecipientsInstitutionList200Response](docs/PaymentRecipientsInstitutionList200Response.md)
|
@@ -341,7 +310,6 @@ Class | Method | HTTP request | Description
|
|
341
310
|
- [PaymentRequest](docs/PaymentRequest.md)
|
342
311
|
- [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
|
343
312
|
- [PaymentRequestErrorDetail](docs/PaymentRequestErrorDetail.md)
|
344
|
-
- [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
|
345
313
|
- [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
|
346
314
|
- [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
|
347
315
|
- [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)
|
@@ -350,11 +318,6 @@ Class | Method | HTTP request | Description
|
|
350
318
|
- [SINGLE](docs/SINGLE.md)
|
351
319
|
- [SchedulePayment](docs/SchedulePayment.md)
|
352
320
|
- [SchedulePaymentErrorDetail](docs/SchedulePaymentErrorDetail.md)
|
353
|
-
- [SmartAccount](docs/SmartAccount.md)
|
354
|
-
- [SmartAccountAddress](docs/SmartAccountAddress.md)
|
355
|
-
- [SmartAccountBalance](docs/SmartAccountBalance.md)
|
356
|
-
- [SmartAccountTransfer](docs/SmartAccountTransfer.md)
|
357
|
-
- [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)
|
358
321
|
- [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
|
359
322
|
- [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
|
360
323
|
- [SmartTransferPayment](docs/SmartTransferPayment.md)
|
@@ -1,11 +1,11 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=KIMUpD2-CV4z_OaB4Cm2Pa0Qxmxx_dEx9MpkAO1bSk8,20741
|
2
|
+
pluggy_sdk/api_client.py,sha256=xhHw71QPRSgx7LQyMbC6AKUWgLF_Bwacsz9AYo6fk2M,27672
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=GQMDdbX-v3AL7uffoUgod0vrpmeRSHr03mo6gtCwvrU,18823
|
5
5
|
pluggy_sdk/exceptions.py,sha256=i3cDTqzBiyuMq9VdCqE6CVVf09vq_TDYL9uOVvFoZis,6452
|
6
6
|
pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pluggy_sdk/rest.py,sha256=GHVGUFTXDukPvnXQi5AUNhTb1Ko-ZdZdvJQLnovZlbs,9445
|
8
|
-
pluggy_sdk/api/__init__.py,sha256=
|
8
|
+
pluggy_sdk/api/__init__.py,sha256=iBE38lzf4luNVrfA7NRRaKaoqo2t3OFiX7CpIkZUJuo,1111
|
9
9
|
pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
|
10
10
|
pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
|
11
11
|
pluggy_sdk/api/acquirer_receivable_api.py,sha256=BzTj0wfP11JDpLpaeREfNo-g7bs7PnRaK6Ab4gqR5a4,26388
|
@@ -27,8 +27,8 @@ pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9Bp
|
|
27
27
|
pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
|
28
28
|
pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
|
29
29
|
pluggy_sdk/api/payment_recipient_api.py,sha256=WbprFZ_w1CXt9QAJPGWlbpPm5zhqFpD88mD_B9QR3ug,77923
|
30
|
-
pluggy_sdk/api/payment_request_api.py,sha256=
|
31
|
-
pluggy_sdk/api/payment_schedule_api.py,sha256=
|
30
|
+
pluggy_sdk/api/payment_request_api.py,sha256=yAfXrUPtUZR2ktqDSPwIlm_FkUE7PW_Ab5nDAtj5xaM,63808
|
31
|
+
pluggy_sdk/api/payment_schedule_api.py,sha256=d9uRuUcdhoOHBKIUoNwNbFfI8413D2F_Qk4bva5GumY,31563
|
32
32
|
pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
|
33
33
|
pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
|
34
34
|
pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
|
@@ -36,7 +36,7 @@ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5T
|
|
36
36
|
pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
|
37
37
|
pluggy_sdk/api/transaction_api.py,sha256=hJdOkkOB0PEl1eSceLppyaX7Ot1SSSSz7CPWl4JbxRU,41854
|
38
38
|
pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
|
39
|
-
pluggy_sdk/models/__init__.py,sha256=
|
39
|
+
pluggy_sdk/models/__init__.py,sha256=hIRg1ILVlSdtixtyOkhgvjlcrihx1IJgrft3E5Jji2E,10753
|
40
40
|
pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
|
41
41
|
pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
|
42
42
|
pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
|
@@ -98,9 +98,9 @@ pluggy_sdk/models/create_item.py,sha256=iz0JMSwXcC2iemswn6Wq-2-SUG015vDMrQ01OWmV
|
|
98
98
|
pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
|
99
99
|
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=jM5YueP_je65I8koHuKY7c6ssz0KQgTaiRrS3XMDz7o,3479
|
100
100
|
pluggy_sdk/models/create_payment_customer_request_body.py,sha256=xwJ5ZA645R7Dm14BCpnLVxNH77pRGEOpKZ4pETlPFBg,3389
|
101
|
-
pluggy_sdk/models/create_payment_intent.py,sha256=
|
102
|
-
pluggy_sdk/models/create_payment_recipient.py,sha256=
|
103
|
-
pluggy_sdk/models/create_payment_request.py,sha256=
|
101
|
+
pluggy_sdk/models/create_payment_intent.py,sha256=3sqYR4sW5aODMZEeYjjOeEegT7MIUsj4nTYnTqdpzgg,4360
|
102
|
+
pluggy_sdk/models/create_payment_recipient.py,sha256=EhERKrgFbAV90H74SMqp4topDd3eVJWnjNP7Ac3XwAc,4066
|
103
|
+
pluggy_sdk/models/create_payment_request.py,sha256=ACMxL0Y77vJU8dMosDD6ww3EiZ5BSJKJH9n4cuQcyBc,4585
|
104
104
|
pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
|
105
105
|
pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
|
106
106
|
pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQaGgeHhSNuIozC_OTcF7g,4030
|
@@ -174,14 +174,14 @@ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnY
|
|
174
174
|
pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
|
175
175
|
pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
|
176
176
|
pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
|
177
|
-
pluggy_sdk/models/payment_intent.py,sha256=
|
177
|
+
pluggy_sdk/models/payment_intent.py,sha256=5m20XwAcCYDJ3mTf0JbuygdXa4iYchm1hpGVYbACmpU,7058
|
178
178
|
pluggy_sdk/models/payment_intent_error_detail.py,sha256=8rhASOpDfP07LHggptAJ1w5GJJY-s7A3-nNgEr04Jfo,3176
|
179
179
|
pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
|
180
180
|
pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
|
181
181
|
pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
|
182
182
|
pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
|
183
183
|
pluggy_sdk/models/payment_receipt_person.py,sha256=9eHiWC33eisDSZJgHW6ho_xD2ekaMuzq8AdvVEt5dUE,3246
|
184
|
-
pluggy_sdk/models/payment_recipient.py,sha256=
|
184
|
+
pluggy_sdk/models/payment_recipient.py,sha256=PKpjebsFXZBMQphfF0bragOYzn4ym2V504BWMDhgeF8,4212
|
185
185
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
186
186
|
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
187
187
|
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
@@ -200,7 +200,7 @@ pluggy_sdk/models/payroll_loans_list200_response.py,sha256=zG54rlfMAINvraIn48n-1
|
|
200
200
|
pluggy_sdk/models/percentage_over_index.py,sha256=UMM-sXy36J5X_kfVCCy3glXjEGUXJzZxKQM0Ipt05uE,2861
|
201
201
|
pluggy_sdk/models/phone_number.py,sha256=KtNMYqBE9K7Of-gVId3wV9gN9vf1XGbDnv3R_s-QGco,3087
|
202
202
|
pluggy_sdk/models/pix_data.py,sha256=zygIaWicGwI93-q181yHzPVxKBZ7wpuhN70b_KvPm0c,2602
|
203
|
-
pluggy_sdk/models/schedule_payment.py,sha256=
|
203
|
+
pluggy_sdk/models/schedule_payment.py,sha256=jeZhxuQtaZpy3azrv3WDZszkKfur_m_djAvOK8YOKDY,4040
|
204
204
|
pluggy_sdk/models/schedule_payment_error_detail.py,sha256=9bqhCPmKOkIKXE6nnjN72PQ28QE9-jJtQZKB8fET-AA,2975
|
205
205
|
pluggy_sdk/models/schedule_type_custom.py,sha256=OIPS53NFeFbQ3rFR030CEdP1E0XY2bJUP4iHc8Iv-q4,3174
|
206
206
|
pluggy_sdk/models/schedule_type_daily.py,sha256=FWFTMERGd8ma9dVmp5oXm2CoXFX0Mxa81huli9Th83g,3145
|
@@ -215,7 +215,7 @@ pluggy_sdk/models/smart_account_transfer.py,sha256=UaOK1DFUJXotRZTpF3fhdEtIVrOXk
|
|
215
215
|
pluggy_sdk/models/smart_accounts_list200_response.py,sha256=7Qgcc6VUha7fGm4w2MMTkGtLGeGLWAjkzBzKRzicyxQ,3478
|
216
216
|
pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py,sha256=2GsrZjFOR9IYZHyvE1BHcGPZsvH1-EPkGX1TFBKPSnk,3618
|
217
217
|
pluggy_sdk/models/smart_transfer_callback_urls.py,sha256=pvgQt9jvPknZczpXDb80rTdxdLRkrKbTd-Z8xTYQh1w,2880
|
218
|
-
pluggy_sdk/models/smart_transfer_payment.py,sha256=
|
218
|
+
pluggy_sdk/models/smart_transfer_payment.py,sha256=FieBWWIYr_vbvysEojEHj-hAX9OP3_86JTH-E3q--ao,4814
|
219
219
|
pluggy_sdk/models/smart_transfer_preauthorization.py,sha256=M2JABKmnBAeU2tjJ32_NiDdzPUBzY1GRnzSDc66WC30,5387
|
220
220
|
pluggy_sdk/models/smart_transfer_preauthorization_parameter.py,sha256=ZhP5Q_7gZoc-gghrqdWaDfXjhKxo6518FOIuMwVrEyE,2759
|
221
221
|
pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6tTOEHA,5728
|
@@ -231,7 +231,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
|
|
231
231
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
232
232
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
233
233
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
234
|
-
pluggy_sdk-1.0.0.
|
235
|
-
pluggy_sdk-1.0.0.
|
236
|
-
pluggy_sdk-1.0.0.
|
237
|
-
pluggy_sdk-1.0.0.
|
234
|
+
pluggy_sdk-1.0.0.post44.dist-info/METADATA,sha256=13A7idqoC8fgFUcKcFnCBFrWINgGzDAvR8vkos5Xslg,21306
|
235
|
+
pluggy_sdk-1.0.0.post44.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
236
|
+
pluggy_sdk-1.0.0.post44.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
237
|
+
pluggy_sdk-1.0.0.post44.dist-info/RECORD,,
|
File without changes
|