pluggy-sdk 1.0.0.post35__py3-none-any.whl → 1.0.0.post37__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 +11 -1
- pluggy_sdk/api/__init__.py +1 -0
- pluggy_sdk/api/boleto_management_api.py +845 -0
- pluggy_sdk/api/payment_request_api.py +264 -0
- pluggy_sdk/api/transaction_api.py +46 -3
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +9 -0
- pluggy_sdk/models/boleto_connection.py +95 -0
- pluggy_sdk/models/create_boleto.py +94 -0
- pluggy_sdk/models/create_boleto_boleto.py +100 -0
- pluggy_sdk/models/create_boleto_boleto_payer.py +98 -0
- pluggy_sdk/models/create_boleto_connection.py +91 -0
- pluggy_sdk/models/create_item.py +1 -1
- pluggy_sdk/models/create_payment_intent.py +5 -3
- pluggy_sdk/models/create_webhook.py +2 -2
- pluggy_sdk/models/issued_boleto.py +121 -0
- pluggy_sdk/models/issued_boleto_payer.py +112 -0
- pluggy_sdk/models/item_options.py +1 -1
- pluggy_sdk/models/payment_intent.py +8 -2
- pluggy_sdk/models/payment_intent_error_detail.py +94 -0
- pluggy_sdk/models/payment_request.py +8 -2
- pluggy_sdk/models/payment_request_error_detail.py +90 -0
- pluggy_sdk/models/update_item.py +1 -1
- {pluggy_sdk-1.0.0.post35.dist-info → pluggy_sdk-1.0.0.post37.dist-info}/METADATA +15 -2
- {pluggy_sdk-1.0.0.post35.dist-info → pluggy_sdk-1.0.0.post37.dist-info}/RECORD +28 -18
- {pluggy_sdk-1.0.0.post35.dist-info → pluggy_sdk-1.0.0.post37.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post35.dist-info → pluggy_sdk-1.0.0.post37.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,94 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Pluggy API
|
5
|
+
|
6
|
+
Pluggy's main API to review data and execute connectors
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Contact: hello@pluggy.ai
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
|
+
|
12
|
+
Do not edit the class manually.
|
13
|
+
""" # noqa: E501
|
14
|
+
|
15
|
+
|
16
|
+
from __future__ import annotations
|
17
|
+
import pprint
|
18
|
+
import re # noqa: F401
|
19
|
+
import json
|
20
|
+
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
+
from typing import Optional, Set
|
24
|
+
from typing_extensions import Self
|
25
|
+
|
26
|
+
class PaymentIntentErrorDetail(BaseModel):
|
27
|
+
"""
|
28
|
+
Error details when payment intent fails
|
29
|
+
""" # noqa: E501
|
30
|
+
code: Optional[StrictStr] = Field(default=None, description="Error code")
|
31
|
+
provider_code: Optional[StrictStr] = Field(default=None, description="Provider error code", alias="providerCode")
|
32
|
+
provider_title: Optional[StrictStr] = Field(default=None, description="Provider error title", alias="providerTitle")
|
33
|
+
provider_detail: Optional[StrictStr] = Field(default=None, description="Provider detailed error description", alias="providerDetail")
|
34
|
+
__properties: ClassVar[List[str]] = ["code", "providerCode", "providerTitle", "providerDetail"]
|
35
|
+
|
36
|
+
model_config = ConfigDict(
|
37
|
+
populate_by_name=True,
|
38
|
+
validate_assignment=True,
|
39
|
+
protected_namespaces=(),
|
40
|
+
)
|
41
|
+
|
42
|
+
|
43
|
+
def to_str(self) -> str:
|
44
|
+
"""Returns the string representation of the model using alias"""
|
45
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
46
|
+
|
47
|
+
def to_json(self) -> str:
|
48
|
+
"""Returns the JSON representation of the model using alias"""
|
49
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
50
|
+
return json.dumps(self.to_dict())
|
51
|
+
|
52
|
+
@classmethod
|
53
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
54
|
+
"""Create an instance of PaymentIntentErrorDetail from a JSON string"""
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
56
|
+
|
57
|
+
def to_dict(self) -> Dict[str, Any]:
|
58
|
+
"""Return the dictionary representation of the model using alias.
|
59
|
+
|
60
|
+
This has the following differences from calling pydantic's
|
61
|
+
`self.model_dump(by_alias=True)`:
|
62
|
+
|
63
|
+
* `None` is only added to the output dict for nullable fields that
|
64
|
+
were set at model initialization. Other fields with value `None`
|
65
|
+
are ignored.
|
66
|
+
"""
|
67
|
+
excluded_fields: Set[str] = set([
|
68
|
+
])
|
69
|
+
|
70
|
+
_dict = self.model_dump(
|
71
|
+
by_alias=True,
|
72
|
+
exclude=excluded_fields,
|
73
|
+
exclude_none=True,
|
74
|
+
)
|
75
|
+
return _dict
|
76
|
+
|
77
|
+
@classmethod
|
78
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
79
|
+
"""Create an instance of PaymentIntentErrorDetail from a dict"""
|
80
|
+
if obj is None:
|
81
|
+
return None
|
82
|
+
|
83
|
+
if not isinstance(obj, dict):
|
84
|
+
return cls.model_validate(obj)
|
85
|
+
|
86
|
+
_obj = cls.model_validate({
|
87
|
+
"code": obj.get("code"),
|
88
|
+
"providerCode": obj.get("providerCode"),
|
89
|
+
"providerTitle": obj.get("providerTitle"),
|
90
|
+
"providerDetail": obj.get("providerDetail")
|
91
|
+
})
|
92
|
+
return _obj
|
93
|
+
|
94
|
+
|
@@ -23,6 +23,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, Stric
|
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
24
24
|
from pluggy_sdk.models.boleto import Boleto
|
25
25
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
26
|
+
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
|
26
27
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
27
28
|
from typing import Optional, Set
|
28
29
|
from typing_extensions import Self
|
@@ -44,7 +45,8 @@ class PaymentRequest(BaseModel):
|
|
44
45
|
pix_qr_code: Optional[StrictStr] = Field(default=None, description="Pix QR code generated by the payment receiver", alias="pixQrCode")
|
45
46
|
boleto: Optional[Boleto] = None
|
46
47
|
schedule: Optional[PaymentRequestSchedule] = None
|
47
|
-
|
48
|
+
error_detail: Optional[PaymentRequestErrorDetail] = Field(default=None, alias="errorDetail")
|
49
|
+
__properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "schedule", "errorDetail"]
|
48
50
|
|
49
51
|
@field_validator('status')
|
50
52
|
def status_validate_enum(cls, value):
|
@@ -101,6 +103,9 @@ class PaymentRequest(BaseModel):
|
|
101
103
|
# override the default output from pydantic by calling `to_dict()` of schedule
|
102
104
|
if self.schedule:
|
103
105
|
_dict['schedule'] = self.schedule.to_dict()
|
106
|
+
# override the default output from pydantic by calling `to_dict()` of error_detail
|
107
|
+
if self.error_detail:
|
108
|
+
_dict['errorDetail'] = self.error_detail.to_dict()
|
104
109
|
return _dict
|
105
110
|
|
106
111
|
@classmethod
|
@@ -125,7 +130,8 @@ class PaymentRequest(BaseModel):
|
|
125
130
|
"paymentUrl": obj.get("paymentUrl"),
|
126
131
|
"pixQrCode": obj.get("pixQrCode"),
|
127
132
|
"boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None,
|
128
|
-
"schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None
|
133
|
+
"schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
|
134
|
+
"errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
|
129
135
|
})
|
130
136
|
return _obj
|
131
137
|
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Pluggy API
|
5
|
+
|
6
|
+
Pluggy's main API to review data and execute connectors
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Contact: hello@pluggy.ai
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
|
+
|
12
|
+
Do not edit the class manually.
|
13
|
+
""" # noqa: E501
|
14
|
+
|
15
|
+
|
16
|
+
from __future__ import annotations
|
17
|
+
import pprint
|
18
|
+
import re # noqa: F401
|
19
|
+
import json
|
20
|
+
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
+
from typing import Optional, Set
|
24
|
+
from typing_extensions import Self
|
25
|
+
|
26
|
+
class PaymentRequestErrorDetail(BaseModel):
|
27
|
+
"""
|
28
|
+
Error details when payment request fails
|
29
|
+
""" # noqa: E501
|
30
|
+
code: Optional[StrictStr] = Field(default=None, description="Error code")
|
31
|
+
provider_message: Optional[StrictStr] = Field(default=None, description="Error message returned by the institution", alias="providerMessage")
|
32
|
+
__properties: ClassVar[List[str]] = ["code", "providerMessage"]
|
33
|
+
|
34
|
+
model_config = ConfigDict(
|
35
|
+
populate_by_name=True,
|
36
|
+
validate_assignment=True,
|
37
|
+
protected_namespaces=(),
|
38
|
+
)
|
39
|
+
|
40
|
+
|
41
|
+
def to_str(self) -> str:
|
42
|
+
"""Returns the string representation of the model using alias"""
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
44
|
+
|
45
|
+
def to_json(self) -> str:
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
48
|
+
return json.dumps(self.to_dict())
|
49
|
+
|
50
|
+
@classmethod
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
52
|
+
"""Create an instance of PaymentRequestErrorDetail from a JSON string"""
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
54
|
+
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
57
|
+
|
58
|
+
This has the following differences from calling pydantic's
|
59
|
+
`self.model_dump(by_alias=True)`:
|
60
|
+
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
62
|
+
were set at model initialization. Other fields with value `None`
|
63
|
+
are ignored.
|
64
|
+
"""
|
65
|
+
excluded_fields: Set[str] = set([
|
66
|
+
])
|
67
|
+
|
68
|
+
_dict = self.model_dump(
|
69
|
+
by_alias=True,
|
70
|
+
exclude=excluded_fields,
|
71
|
+
exclude_none=True,
|
72
|
+
)
|
73
|
+
return _dict
|
74
|
+
|
75
|
+
@classmethod
|
76
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
77
|
+
"""Create an instance of PaymentRequestErrorDetail from a dict"""
|
78
|
+
if obj is None:
|
79
|
+
return None
|
80
|
+
|
81
|
+
if not isinstance(obj, dict):
|
82
|
+
return cls.model_validate(obj)
|
83
|
+
|
84
|
+
_obj = cls.model_validate({
|
85
|
+
"code": obj.get("code"),
|
86
|
+
"providerMessage": obj.get("providerMessage")
|
87
|
+
})
|
88
|
+
return _obj
|
89
|
+
|
90
|
+
|
pluggy_sdk/models/update_item.py
CHANGED
@@ -29,7 +29,7 @@ class UpdateItem(BaseModel):
|
|
29
29
|
Update Item Request
|
30
30
|
""" # noqa: E501
|
31
31
|
parameters: Optional[UpdateItemParameters] = None
|
32
|
-
client_user_id: Optional[StrictStr] = Field(default=None, description="Client's identifier for the user, it can be a ID, UUID or even an email.", alias="clientUserId")
|
32
|
+
client_user_id: Optional[StrictStr] = Field(default=None, description="Client's external identifier for the user, it can be a ID, UUID or even an email. This is free for clients to use.", alias="clientUserId")
|
33
33
|
webhook_url: Optional[StrictStr] = Field(default=None, description="Url to be notified of item changes", alias="webhookUrl")
|
34
34
|
products: Optional[List[StrictStr]] = Field(default=None, description="Products to be collected in the connection")
|
35
35
|
__properties: ClassVar[List[str]] = ["parameters", "clientUserId", "webhookUrl", "products"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post37
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -28,7 +28,7 @@ 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.
|
31
|
+
- Package version: 1.0.0.post37
|
32
32
|
- Generator version: 7.12.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -129,6 +129,9 @@ Class | Method | HTTP request | Description
|
|
129
129
|
*BenefitApi* | [**benefits_list**](docs/BenefitApi.md#benefits_list) | **GET** /benefits | List
|
130
130
|
*BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
|
131
131
|
*BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
|
132
|
+
*BoletoManagementApi* | [**boleto_cancel**](docs/BoletoManagementApi.md#boleto_cancel) | **POST** /boletos/{id}/cancel | Cancel Boleto
|
133
|
+
*BoletoManagementApi* | [**boleto_connection_create**](docs/BoletoManagementApi.md#boleto_connection_create) | **POST** /boleto-connections | Connect boleto credentials
|
134
|
+
*BoletoManagementApi* | [**boleto_create**](docs/BoletoManagementApi.md#boleto_create) | **POST** /boletos | Issue Boleto
|
132
135
|
*BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create
|
133
136
|
*BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete
|
134
137
|
*BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve
|
@@ -176,6 +179,7 @@ Class | Method | HTTP request | Description
|
|
176
179
|
*PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
|
177
180
|
*PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
|
178
181
|
*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
|
182
|
+
*PaymentRequestApi* | [**payment_request_refund**](docs/PaymentRequestApi.md#payment_request_refund) | **POST** /payments/requests/{id}/refund | Refund Payment Request
|
179
183
|
*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
|
180
184
|
*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
|
181
185
|
*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
|
@@ -220,6 +224,7 @@ Class | Method | HTTP request | Description
|
|
220
224
|
- [BillFinanceCharge](docs/BillFinanceCharge.md)
|
221
225
|
- [BillsList200Response](docs/BillsList200Response.md)
|
222
226
|
- [Boleto](docs/Boleto.md)
|
227
|
+
- [BoletoConnection](docs/BoletoConnection.md)
|
223
228
|
- [BoletoPayer](docs/BoletoPayer.md)
|
224
229
|
- [BoletoRecipient](docs/BoletoRecipient.md)
|
225
230
|
- [BulkPayment](docs/BulkPayment.md)
|
@@ -237,6 +242,10 @@ Class | Method | HTTP request | Description
|
|
237
242
|
- [ConnectorListResponse](docs/ConnectorListResponse.md)
|
238
243
|
- [ConnectorUserAction](docs/ConnectorUserAction.md)
|
239
244
|
- [Consent](docs/Consent.md)
|
245
|
+
- [CreateBoleto](docs/CreateBoleto.md)
|
246
|
+
- [CreateBoletoBoleto](docs/CreateBoletoBoleto.md)
|
247
|
+
- [CreateBoletoBoletoPayer](docs/CreateBoletoBoletoPayer.md)
|
248
|
+
- [CreateBoletoConnection](docs/CreateBoletoConnection.md)
|
240
249
|
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
|
241
250
|
- [CreateBulkPayment](docs/CreateBulkPayment.md)
|
242
251
|
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
|
@@ -275,6 +284,8 @@ Class | Method | HTTP request | Description
|
|
275
284
|
- [InvestmentMetadata](docs/InvestmentMetadata.md)
|
276
285
|
- [InvestmentTransaction](docs/InvestmentTransaction.md)
|
277
286
|
- [InvestmentsList200Response](docs/InvestmentsList200Response.md)
|
287
|
+
- [IssuedBoleto](docs/IssuedBoleto.md)
|
288
|
+
- [IssuedBoletoPayer](docs/IssuedBoletoPayer.md)
|
278
289
|
- [Item](docs/Item.md)
|
279
290
|
- [ItemCreationErrorResponse](docs/ItemCreationErrorResponse.md)
|
280
291
|
- [ItemError](docs/ItemError.md)
|
@@ -309,6 +320,7 @@ Class | Method | HTTP request | Description
|
|
309
320
|
- [PaymentDataParticipant](docs/PaymentDataParticipant.md)
|
310
321
|
- [PaymentInstitution](docs/PaymentInstitution.md)
|
311
322
|
- [PaymentIntent](docs/PaymentIntent.md)
|
323
|
+
- [PaymentIntentErrorDetail](docs/PaymentIntentErrorDetail.md)
|
312
324
|
- [PaymentIntentParameter](docs/PaymentIntentParameter.md)
|
313
325
|
- [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
|
314
326
|
- [PaymentReceipt](docs/PaymentReceipt.md)
|
@@ -320,6 +332,7 @@ Class | Method | HTTP request | Description
|
|
320
332
|
- [PaymentRecipientsList200Response](docs/PaymentRecipientsList200Response.md)
|
321
333
|
- [PaymentRequest](docs/PaymentRequest.md)
|
322
334
|
- [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
|
335
|
+
- [PaymentRequestErrorDetail](docs/PaymentRequestErrorDetail.md)
|
323
336
|
- [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
|
324
337
|
- [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
|
325
338
|
- [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
|
@@ -1,11 +1,11 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=_gqSb9r9oaG5KlX1_tGNMPwMGRBR6qWneKBU4cVg2cg,13557
|
2
|
+
pluggy_sdk/api_client.py,sha256=4N6GnTCuXZvJJ81vYc15LQtmTLO-TnhZdxRWYa1OvIk,27438
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=fnCIH-MWbrOYKzo7zNABul6F5zi1tZwCdeGkp-mbj1o,18485
|
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=vVdVX3R4AbYt0r6TChhsMVAnyL1nf0RA6eZYjkaaBzY,9389
|
8
|
-
pluggy_sdk/api/__init__.py,sha256=
|
8
|
+
pluggy_sdk/api/__init__.py,sha256=w6-OiRjnUPM9FPxcmgsQdoP1W9uLRRa53U3aEEwn2uk,1281
|
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
|
@@ -13,6 +13,7 @@ pluggy_sdk/api/acquirer_sale_api.py,sha256=YZYt2Hy3vA-dIKFouejtQY8BTws3lNrY3NHdX
|
|
13
13
|
pluggy_sdk/api/auth_api.py,sha256=TXqmhFum1h1bqt9BMANyvcwLLaS0M1Y0mIELutv9spo,23150
|
14
14
|
pluggy_sdk/api/benefit_api.py,sha256=WSa3Hp-6Dc1fA0dHUnYP5gu-iXgDD-0NC5yuxBuIouo,21329
|
15
15
|
pluggy_sdk/api/bill_api.py,sha256=_qkNNQIlImQEGpzHko9wxyIrGlNKfc7Aq1MOdGCy5Ac,21228
|
16
|
+
pluggy_sdk/api/boleto_management_api.py,sha256=dMcmNdi-GO-By5kllAwkp80_JJV1cQ7YoZSHl_2apfo,31883
|
16
17
|
pluggy_sdk/api/bulk_payment_api.py,sha256=-Qac97nDXdqWUJlvNIONxJLrbKE7Wt1crK03_ARxbKY,43205
|
17
18
|
pluggy_sdk/api/category_api.py,sha256=ATCtlmkDmbNqS2kJV6f6P3G0_rgwqEip-PgQ9iUm_Nc,42113
|
18
19
|
pluggy_sdk/api/connector_api.py,sha256=Zmo8ZYrYaaa98eAF_DXGlnd7AFS7hK6SURAGhsL3NPM,41410
|
@@ -26,16 +27,16 @@ pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9Bp
|
|
26
27
|
pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
|
27
28
|
pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
|
28
29
|
pluggy_sdk/api/payment_recipient_api.py,sha256=nvV5zoyTMMr3geRBD0ztaSrBe9tkusS9rJSdvG-mq2g,78871
|
29
|
-
pluggy_sdk/api/payment_request_api.py,sha256=
|
30
|
+
pluggy_sdk/api/payment_request_api.py,sha256=Pg1Wv0Jz0-tNyxpd8-0NRbWXgMvu7tnnOgjgFlL2EhQ,116891
|
30
31
|
pluggy_sdk/api/payment_schedule_api.py,sha256=YUmE5fJktDrFHHm-SPphqQJmW-2CaBOlfX7QqZdQCk4,31605
|
31
32
|
pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
|
32
33
|
pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
|
33
34
|
pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
|
34
35
|
pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
|
35
36
|
pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
|
36
|
-
pluggy_sdk/api/transaction_api.py,sha256=
|
37
|
+
pluggy_sdk/api/transaction_api.py,sha256=hJdOkkOB0PEl1eSceLppyaX7Ot1SSSSz7CPWl4JbxRU,41854
|
37
38
|
pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
|
38
|
-
pluggy_sdk/models/__init__.py,sha256=
|
39
|
+
pluggy_sdk/models/__init__.py,sha256=nuszvXM_mxqSPu4M-XlRKXFBr-B8xw29qBpuKjjOoPM,11809
|
39
40
|
pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
|
40
41
|
pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
|
41
42
|
pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
|
@@ -66,6 +67,7 @@ pluggy_sdk/models/bill.py,sha256=e2tOe1aFBZs9VJMxV9pwsT-d4I8A66M7USGP9mWijbI,447
|
|
66
67
|
pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
|
67
68
|
pluggy_sdk/models/bills_list200_response.py,sha256=iGWpb0feuyvZt_9OjJxsrO8bUycaq0n-guzr6yqMNlU,3416
|
68
69
|
pluggy_sdk/models/boleto.py,sha256=yMgFfXUGIa22GJwkuVFozC9Vwl_YYhvJk1Wk_93goRM,5426
|
70
|
+
pluggy_sdk/models/boleto_connection.py,sha256=z6oysDZBpQ_Ff2OIRBvspY3c2CgBvILFv_EUgvdAcPE,3122
|
69
71
|
pluggy_sdk/models/boleto_payer.py,sha256=0zVxArLdsn9lQ68WcabB0oT4tD1QzTyKblN8aZxbjpo,2641
|
70
72
|
pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5QlioE-Z_U,2665
|
71
73
|
pluggy_sdk/models/bulk_payment.py,sha256=_EiKF2iM38AktGvOHGey0FG9_usnL6YPUM7gtTWPeJg,5717
|
@@ -82,14 +84,18 @@ pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3Nq
|
|
82
84
|
pluggy_sdk/models/connector_list_response.py,sha256=PetHjZ1wAJ2k2gacrg9EmM0fnvSZ7YZPWms-GVUbKRg,3386
|
83
85
|
pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
|
84
86
|
pluggy_sdk/models/consent.py,sha256=2iGU-3JCbWzjUsFU1g4UYXz_zm0EziBJgki8XaBz1Kk,5451
|
87
|
+
pluggy_sdk/models/create_boleto.py,sha256=RdxH90W5WtT4CNounAk7_A7Jpgi_a9u4WKmoHwgDf-s,3018
|
88
|
+
pluggy_sdk/models/create_boleto_boleto.py,sha256=1lPWcLArLua3hN6z3WswJSZoPrUlyysQfdUeed9GLro,3439
|
89
|
+
pluggy_sdk/models/create_boleto_boleto_payer.py,sha256=9EvWdoc_hDd2MlrqeRlKjj4rk2t8IcTOC__IWABxojA,3386
|
90
|
+
pluggy_sdk/models/create_boleto_connection.py,sha256=ZQodldN2duex0o-SF_klZZyEtzDVGe-YODjWdQlcw0A,3149
|
85
91
|
pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
|
86
92
|
pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
|
87
93
|
pluggy_sdk/models/create_client_category_rule.py,sha256=CBmaEU87ba_EgxLIcFwb8YWe-FcMdKcaOiu9hGDoGFo,3448
|
88
|
-
pluggy_sdk/models/create_item.py,sha256=
|
94
|
+
pluggy_sdk/models/create_item.py,sha256=iz0JMSwXcC2iemswn6Wq-2-SUG015vDMrQ01OWmVLBM,4843
|
89
95
|
pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
|
90
96
|
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
|
91
97
|
pluggy_sdk/models/create_payment_customer_request_body.py,sha256=YvSSzXEW2yI7M9alWr4fHbPRqNvV4sxTUVp3FkMQSyU,3365
|
92
|
-
pluggy_sdk/models/create_payment_intent.py,sha256=
|
98
|
+
pluggy_sdk/models/create_payment_intent.py,sha256=fa-y9mIq6ubcFtAJMTTSSpKmjUstF2mmO3GvdaMymW4,4719
|
93
99
|
pluggy_sdk/models/create_payment_recipient.py,sha256=B4vmHZB0uhOBPl9GPcvkno02fpIHIKFTM3EQvMoBoS8,4554
|
94
100
|
pluggy_sdk/models/create_payment_request.py,sha256=H2SU4y28MxacJLrypgknHzIpPTp5m6z9VJEBoGcsazU,4852
|
95
101
|
pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
|
@@ -98,7 +104,7 @@ pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQ
|
|
98
104
|
pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
|
99
105
|
pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
|
100
106
|
pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=aSaFeY_pe-TX2kMyPA_sH89SshgqsJ7JJ4trwMP2zwQ,4149
|
101
|
-
pluggy_sdk/models/create_webhook.py,sha256
|
107
|
+
pluggy_sdk/models/create_webhook.py,sha256=Zi59xKJua3OBKdQNjZzJkZlK4gwoXtSDSolCF6kZeVw,4136
|
102
108
|
pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
|
103
109
|
pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
|
104
110
|
pluggy_sdk/models/credit_data.py,sha256=LcdJCDgQEmdm60NPzx-hcq_cRHYic8OCr_zVBVuNcpE,5142
|
@@ -123,10 +129,12 @@ pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM
|
|
123
129
|
pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
|
124
130
|
pluggy_sdk/models/investment_transaction.py,sha256=0NMEFh-yV0zTw1cstAz8x8kq8_oVLIPCh9kjXkxc1Ks,5004
|
125
131
|
pluggy_sdk/models/investments_list200_response.py,sha256=JqUTarakPV6yzY162pLugeFudbwj6pHeCJYGdKVz8Js,3458
|
132
|
+
pluggy_sdk/models/issued_boleto.py,sha256=sOZz3Te2NAyB_tt_VQpw8nq2ntLwH_9T6-3vB21booA,4832
|
133
|
+
pluggy_sdk/models/issued_boleto_payer.py,sha256=WTNrW5i9YP-_NkiWwmIpK02CGClzv8GSaSb5Xt9iulI,4629
|
126
134
|
pluggy_sdk/models/item.py,sha256=z__AH74riALcam8VE0U_GPCZPH7JrQydR1QeEHvlQRg,7295
|
127
135
|
pluggy_sdk/models/item_creation_error_response.py,sha256=_zdN0Go6iU2deVKxRrexeYlDxWxYfWhjyrxisyQbjUI,3607
|
128
136
|
pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
|
129
|
-
pluggy_sdk/models/item_options.py,sha256=
|
137
|
+
pluggy_sdk/models/item_options.py,sha256=PezF-eUzwD5ApIVbI5wo2VV-MncOlt8yNgcDnXa_oh0,3432
|
130
138
|
pluggy_sdk/models/loan.py,sha256=mTbqlJwpxopVEiZYUFn3sc5oi9yXrH8rK43tuBuNlnM,12231
|
131
139
|
pluggy_sdk/models/loan_contracted_fee.py,sha256=k2EHfnbElL7scRmPQSKmzZ3oSxh50Z9wtAPe2Q2Oqzw,4205
|
132
140
|
pluggy_sdk/models/loan_contracted_finance_charge.py,sha256=-2cHDwe9IfcWxtjLaL1Vs0PdWsqMv5RGO_Cx2fo3dj0,3153
|
@@ -161,7 +169,8 @@ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnY
|
|
161
169
|
pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
|
162
170
|
pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
|
163
171
|
pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
|
164
|
-
pluggy_sdk/models/payment_intent.py,sha256=
|
172
|
+
pluggy_sdk/models/payment_intent.py,sha256=t366PXrT_yb1zFVxRmy4hesTyP3hh7YVPAfrIpEFHjc,7574
|
173
|
+
pluggy_sdk/models/payment_intent_error_detail.py,sha256=8rhASOpDfP07LHggptAJ1w5GJJY-s7A3-nNgEr04Jfo,3176
|
165
174
|
pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
|
166
175
|
pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
|
167
176
|
pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
|
@@ -171,8 +180,9 @@ pluggy_sdk/models/payment_recipient.py,sha256=XGpf7503LIg9YADhESE-VGjaFSVWVq0_Dl
|
|
171
180
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
172
181
|
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
173
182
|
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
174
|
-
pluggy_sdk/models/payment_request.py,sha256=
|
183
|
+
pluggy_sdk/models/payment_request.py,sha256=GS9cGDjtcoKOXvoD1Q-xasPSPPOpfq28x5cnoSyYdsU,6499
|
175
184
|
pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
|
185
|
+
pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
|
176
186
|
pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
|
177
187
|
pluggy_sdk/models/payment_request_schedule.py,sha256=gQqGFVYZLe8NguGwzpREBMa0b2KCUhmgudUlSUMazY4,6999
|
178
188
|
pluggy_sdk/models/payment_requests_list200_response.py,sha256=sAsajmYPVezAobFSq0KFFMBcO8ApV-RKl2PrmfXWs1s,3496
|
@@ -206,7 +216,7 @@ pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6t
|
|
206
216
|
pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
|
207
217
|
pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
|
208
218
|
pluggy_sdk/models/transaction.py,sha256=Aokv7FMDJ0ubyX51FKeTMzEVMbLS0MmgQkTfv6yGaPY,6671
|
209
|
-
pluggy_sdk/models/update_item.py,sha256=
|
219
|
+
pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
|
210
220
|
pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
|
211
221
|
pluggy_sdk/models/update_payment_recipient.py,sha256=CvKd2orRdEYgroSy42bkzxqiJ_JjELQhnxwf7R7bx3Y,4187
|
212
222
|
pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
|
@@ -215,7 +225,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
|
|
215
225
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
216
226
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
217
227
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
218
|
-
pluggy_sdk-1.0.0.
|
219
|
-
pluggy_sdk-1.0.0.
|
220
|
-
pluggy_sdk-1.0.0.
|
221
|
-
pluggy_sdk-1.0.0.
|
228
|
+
pluggy_sdk-1.0.0.post37.dist-info/METADATA,sha256=7ArVqDIqL2ryp3pSHcyX_Vw50QdtHwMmD7iUv_hkHI4,24283
|
229
|
+
pluggy_sdk-1.0.0.post37.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
230
|
+
pluggy_sdk-1.0.0.post37.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
231
|
+
pluggy_sdk-1.0.0.post37.dist-info/RECORD,,
|
File without changes
|
File without changes
|