pluggy-sdk 1.0.0.post41__py3-none-any.whl → 1.0.0.post43__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 +175 -23
- pluggy_sdk/api/__init__.py +0 -3
- pluggy_sdk/api/payment_request_api.py +0 -1074
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +0 -19
- pluggy_sdk/models/connector.py +9 -2
- 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/smart_transfer_payment.py +3 -3
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post43.dist-info}/METADATA +3 -38
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post43.dist-info}/RECORD +17 -17
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post43.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post43.dist-info}/top_level.txt +0 -0
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.post43/python'
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
96
96
|
|
97
97
|
def __enter__(self):
|
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.post43".\
|
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
|
@@ -56,7 +49,6 @@ 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
51
|
from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
|
59
|
-
from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
|
60
52
|
from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
|
61
53
|
from pluggy_sdk.models.create_item import CreateItem
|
62
54
|
from pluggy_sdk.models.create_item_parameters import CreateItemParameters
|
@@ -67,8 +59,6 @@ from pluggy_sdk.models.create_payment_recipient import CreatePaymentRecipient
|
|
67
59
|
from pluggy_sdk.models.create_payment_request import CreatePaymentRequest
|
68
60
|
from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule
|
69
61
|
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
62
|
from pluggy_sdk.models.create_smart_transfer_payment import CreateSmartTransferPayment
|
73
63
|
from pluggy_sdk.models.create_smart_transfer_preauthorization import CreateSmartTransferPreauthorization
|
74
64
|
from pluggy_sdk.models.create_webhook import CreateWebhook
|
@@ -134,9 +124,6 @@ from pluggy_sdk.models.payment_intent import PaymentIntent
|
|
134
124
|
from pluggy_sdk.models.payment_intent_error_detail import PaymentIntentErrorDetail
|
135
125
|
from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
|
136
126
|
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
127
|
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
141
128
|
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
142
129
|
from pluggy_sdk.models.payment_recipients_institution_list200_response import PaymentRecipientsInstitutionList200Response
|
@@ -144,7 +131,6 @@ from pluggy_sdk.models.payment_recipients_list200_response import PaymentRecipie
|
|
144
131
|
from pluggy_sdk.models.payment_request import PaymentRequest
|
145
132
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
146
133
|
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
|
147
|
-
from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRequestReceiptList200Response
|
148
134
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
149
135
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
150
136
|
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response
|
@@ -153,11 +139,6 @@ from pluggy_sdk.models.pix_data import PixData
|
|
153
139
|
from pluggy_sdk.models.single import SINGLE
|
154
140
|
from pluggy_sdk.models.schedule_payment import SchedulePayment
|
155
141
|
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
142
|
from pluggy_sdk.models.smart_tranfers_preauthorizations_list200_response import SmartTranfersPreauthorizationsList200Response
|
162
143
|
from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
|
163
144
|
from pluggy_sdk.models.smart_transfer_payment import SmartTransferPayment
|
pluggy_sdk/models/connector.py
CHANGED
@@ -18,6 +18,7 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
+
from datetime import datetime
|
21
22
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr, field_validator
|
22
23
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
23
24
|
from pluggy_sdk.models.connector_credential import ConnectorCredential
|
@@ -47,7 +48,10 @@ class Connector(BaseModel):
|
|
47
48
|
supports_payment_initiation: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports the payment initiation API", alias="supportsPaymentInitiation")
|
48
49
|
supports_scheduled_payments: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports scheduled payments", alias="supportsScheduledPayments")
|
49
50
|
supports_smart_transfers: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports smart transfers", alias="supportsSmartTransfers")
|
50
|
-
|
51
|
+
supports_boleto_management: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports boleto management", alias="supportsBoletoManagement")
|
52
|
+
created_at: Optional[datetime] = Field(default=None, description="Date of creation", alias="createdAt")
|
53
|
+
updated_at: Optional[datetime] = Field(default=None, description="Date of last modification", alias="updatedAt")
|
54
|
+
__properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation", "supportsScheduledPayments", "supportsSmartTransfers", "supportsBoletoManagement", "createdAt", "updatedAt"]
|
51
55
|
|
52
56
|
@field_validator('products')
|
53
57
|
def products_validate_enum(cls, value):
|
@@ -138,7 +142,10 @@ class Connector(BaseModel):
|
|
138
142
|
"isOpenFinance": obj.get("isOpenFinance"),
|
139
143
|
"supportsPaymentInitiation": obj.get("supportsPaymentInitiation"),
|
140
144
|
"supportsScheduledPayments": obj.get("supportsScheduledPayments"),
|
141
|
-
"supportsSmartTransfers": obj.get("supportsSmartTransfers")
|
145
|
+
"supportsSmartTransfers": obj.get("supportsSmartTransfers"),
|
146
|
+
"supportsBoletoManagement": obj.get("supportsBoletoManagement"),
|
147
|
+
"createdAt": obj.get("createdAt"),
|
148
|
+
"updatedAt": obj.get("updatedAt")
|
142
149
|
})
|
143
150
|
return _obj
|
144
151
|
|
@@ -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
|
|
@@ -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.post43
|
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.post43
|
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
|
@@ -179,22 +173,12 @@ Class | Method | HTTP request | Description
|
|
179
173
|
*PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
|
180
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
|
181
175
|
*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
176
|
*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
|
187
177
|
*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
|
188
178
|
*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
|
189
179
|
*PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
|
190
180
|
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule Authorization
|
191
181
|
*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
182
|
*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
|
199
183
|
*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
|
200
184
|
*SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
|
@@ -218,11 +202,6 @@ Class | Method | HTTP request | Description
|
|
218
202
|
- [AuthRequest](docs/AuthRequest.md)
|
219
203
|
- [AuthResponse](docs/AuthResponse.md)
|
220
204
|
- [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
205
|
- [Bill](docs/Bill.md)
|
227
206
|
- [BillFinanceCharge](docs/BillFinanceCharge.md)
|
228
207
|
- [BillsList200Response](docs/BillsList200Response.md)
|
@@ -230,8 +209,6 @@ Class | Method | HTTP request | Description
|
|
230
209
|
- [BoletoConnection](docs/BoletoConnection.md)
|
231
210
|
- [BoletoPayer](docs/BoletoPayer.md)
|
232
211
|
- [BoletoRecipient](docs/BoletoRecipient.md)
|
233
|
-
- [BulkPayment](docs/BulkPayment.md)
|
234
|
-
- [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)
|
235
212
|
- [CUSTOM](docs/CUSTOM.md)
|
236
213
|
- [Category](docs/Category.md)
|
237
214
|
- [ClientCategoryRule](docs/ClientCategoryRule.md)
|
@@ -253,7 +230,6 @@ Class | Method | HTTP request | Description
|
|
253
230
|
- [CreateBoletoConnection](docs/CreateBoletoConnection.md)
|
254
231
|
- [CreateBoletoConnectionFromItem](docs/CreateBoletoConnectionFromItem.md)
|
255
232
|
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
|
256
|
-
- [CreateBulkPayment](docs/CreateBulkPayment.md)
|
257
233
|
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
|
258
234
|
- [CreateItem](docs/CreateItem.md)
|
259
235
|
- [CreateItemParameters](docs/CreateItemParameters.md)
|
@@ -264,8 +240,6 @@ Class | Method | HTTP request | Description
|
|
264
240
|
- [CreatePaymentRequest](docs/CreatePaymentRequest.md)
|
265
241
|
- [CreatePaymentRequestSchedule](docs/CreatePaymentRequestSchedule.md)
|
266
242
|
- [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
|
267
|
-
- [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
|
268
|
-
- [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
|
269
243
|
- [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
|
270
244
|
- [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
|
271
245
|
- [CreateWebhook](docs/CreateWebhook.md)
|
@@ -331,9 +305,6 @@ Class | Method | HTTP request | Description
|
|
331
305
|
- [PaymentIntentErrorDetail](docs/PaymentIntentErrorDetail.md)
|
332
306
|
- [PaymentIntentParameter](docs/PaymentIntentParameter.md)
|
333
307
|
- [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
|
334
|
-
- [PaymentReceipt](docs/PaymentReceipt.md)
|
335
|
-
- [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)
|
336
|
-
- [PaymentReceiptPerson](docs/PaymentReceiptPerson.md)
|
337
308
|
- [PaymentRecipient](docs/PaymentRecipient.md)
|
338
309
|
- [PaymentRecipientAccount](docs/PaymentRecipientAccount.md)
|
339
310
|
- [PaymentRecipientsInstitutionList200Response](docs/PaymentRecipientsInstitutionList200Response.md)
|
@@ -341,7 +312,6 @@ Class | Method | HTTP request | Description
|
|
341
312
|
- [PaymentRequest](docs/PaymentRequest.md)
|
342
313
|
- [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
|
343
314
|
- [PaymentRequestErrorDetail](docs/PaymentRequestErrorDetail.md)
|
344
|
-
- [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
|
345
315
|
- [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
|
346
316
|
- [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
|
347
317
|
- [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)
|
@@ -350,11 +320,6 @@ Class | Method | HTTP request | Description
|
|
350
320
|
- [SINGLE](docs/SINGLE.md)
|
351
321
|
- [SchedulePayment](docs/SchedulePayment.md)
|
352
322
|
- [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
323
|
- [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
|
359
324
|
- [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
|
360
325
|
- [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=41ydJupBghUY4vG1VSCVhItIlbV3NFPXMxHyVhzp5DA,17015
|
2
|
+
pluggy_sdk/api_client.py,sha256=0mCkmYLiQdWZ9NvJ4yytxD8rZ5ysPmpU1Kc04OTumyo,27438
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=1qqZ5XxkpE-07D4dZmvkF896jciV-ORQ9ZCxBFmq3aw,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,7 +27,7 @@ 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=
|
30
|
+
pluggy_sdk/api/payment_request_api.py,sha256=PUYpqq2PiAiJJAn2KF4DdrdCAEujsE0FIF3wiERZHYg,74784
|
31
31
|
pluggy_sdk/api/payment_schedule_api.py,sha256=YUmE5fJktDrFHHm-SPphqQJmW-2CaBOlfX7QqZdQCk4,31605
|
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
|
@@ -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=t8CC5QjbAGlH5vFzIRwuwE4XLpqtdZGPnADqOE6uxFw,10840
|
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
|
@@ -77,7 +77,7 @@ pluggy_sdk/models/client_category_rule.py,sha256=jN6C9XzoGvd3Ku-Qzls2qlk1bI5c_O2
|
|
77
77
|
pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
|
78
78
|
pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
|
79
79
|
pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
|
80
|
-
pluggy_sdk/models/connector.py,sha256=
|
80
|
+
pluggy_sdk/models/connector.py,sha256=VoSMG3RguHi6bkOv6-zdLiQ51mCmIal0Tf7ueL0bkTc,7990
|
81
81
|
pluggy_sdk/models/connector_credential.py,sha256=9omVYSRdUvra1wKToyF6rW8dnhy5vQAfXEaVFzjCau4,4925
|
82
82
|
pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
|
83
83
|
pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
|
@@ -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
|
@@ -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.post43.dist-info/METADATA,sha256=qL8ncLwKohOX5fnOecNZgdS159oya8v_dm9AG_1CyaY,21572
|
235
|
+
pluggy_sdk-1.0.0.post43.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
236
|
+
pluggy_sdk-1.0.0.post43.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
237
|
+
pluggy_sdk-1.0.0.post43.dist-info/RECORD,,
|
File without changes
|