pluggy-sdk 1.0.0.post17__py3-none-any.whl → 1.0.0.post18__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 +9 -1
- pluggy_sdk/api/__init__.py +1 -0
- pluggy_sdk/api/smart_transfer_api.py +1396 -0
- pluggy_sdk/api_client.py +8 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +7 -0
- pluggy_sdk/models/accounts_list200_response.py +3 -3
- pluggy_sdk/models/acquirer_receivable.py +3 -3
- pluggy_sdk/models/acquirer_sale.py +3 -3
- pluggy_sdk/models/acquirer_sale_data.py +3 -3
- pluggy_sdk/models/aggregated_portfolio_response.py +3 -3
- pluggy_sdk/models/benefit_response.py +3 -3
- pluggy_sdk/models/benefits_list200_response.py +3 -3
- pluggy_sdk/models/bill.py +3 -3
- pluggy_sdk/models/bills_list200_response.py +3 -3
- pluggy_sdk/models/bulk_payment.py +3 -3
- pluggy_sdk/models/bulk_payments_list200_response.py +3 -3
- pluggy_sdk/models/connector.py +3 -3
- pluggy_sdk/models/connector_credential.py +3 -3
- pluggy_sdk/models/connector_list_response.py +3 -3
- pluggy_sdk/models/create_smart_transfer_payment.py +96 -0
- pluggy_sdk/models/create_smart_transfer_preauthorization.py +104 -0
- pluggy_sdk/models/identity_response.py +12 -12
- pluggy_sdk/models/income_reports_response.py +3 -3
- pluggy_sdk/models/investment.py +3 -3
- pluggy_sdk/models/investments_list200_response.py +3 -3
- pluggy_sdk/models/item_creation_error_response.py +3 -3
- pluggy_sdk/models/loan.py +12 -12
- pluggy_sdk/models/loan_installments.py +3 -3
- pluggy_sdk/models/loan_payment_release_over_parcel.py +6 -6
- pluggy_sdk/models/loan_payments.py +3 -3
- pluggy_sdk/models/loans_list200_response.py +3 -3
- pluggy_sdk/models/monthly_portfolio_response.py +3 -3
- pluggy_sdk/models/page_response_acquirer_anticipations.py +3 -3
- pluggy_sdk/models/page_response_acquirer_receivables.py +3 -3
- pluggy_sdk/models/page_response_acquirer_sales.py +3 -3
- pluggy_sdk/models/page_response_category_rules.py +3 -3
- pluggy_sdk/models/page_response_consents.py +3 -3
- pluggy_sdk/models/page_response_investment_transactions.py +3 -3
- pluggy_sdk/models/page_response_transactions.py +3 -3
- pluggy_sdk/models/parameter_validation_response.py +3 -3
- pluggy_sdk/models/payment_customers_list200_response.py +3 -3
- pluggy_sdk/models/payment_intents_list200_response.py +3 -3
- pluggy_sdk/models/payment_recipients_institution_list200_response.py +3 -3
- pluggy_sdk/models/payment_recipients_list200_response.py +3 -3
- pluggy_sdk/models/payment_request_receipt_list200_response.py +3 -3
- pluggy_sdk/models/payment_requests_list200_response.py +3 -3
- pluggy_sdk/models/payment_schedules_list200_response.py +3 -3
- pluggy_sdk/models/smart_accounts_list200_response.py +3 -3
- pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py +102 -0
- pluggy_sdk/models/smart_transfer_callback_urls.py +90 -0
- pluggy_sdk/models/smart_transfer_payment.py +116 -0
- pluggy_sdk/models/smart_transfer_preauthorization.py +128 -0
- pluggy_sdk/models/smart_transfer_preauthorization_parameter.py +90 -0
- pluggy_sdk/models/status_detail_product.py +3 -3
- pluggy_sdk/models/webhooks_list200_response.py +3 -3
- {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post18.dist-info}/METADATA +14 -2
- {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post18.dist-info}/RECORD +60 -52
- {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post18.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post18.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,128 @@
|
|
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 datetime import datetime
|
22
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
23
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
24
|
+
from pluggy_sdk.models.connector import Connector
|
25
|
+
from pluggy_sdk.models.payment_recipient import PaymentRecipient
|
26
|
+
from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
|
27
|
+
from typing import Optional, Set
|
28
|
+
from typing_extensions import Self
|
29
|
+
|
30
|
+
class SmartTransferPreauthorization(BaseModel):
|
31
|
+
"""
|
32
|
+
Smart transfer preauthorization
|
33
|
+
""" # noqa: E501
|
34
|
+
id: StrictStr = Field(description="Preauthorization primary identifier")
|
35
|
+
status: StrictStr = Field(description="Preauthorization status")
|
36
|
+
consent_url: Optional[StrictStr] = Field(default=None, description="Url to give the consent in the institution", alias="consentUrl")
|
37
|
+
client_preauthorization_id: Optional[StrictStr] = Field(default=None, description="Client preauthorization identifier", alias="clientPreauthorizationId")
|
38
|
+
callback_urls: Optional[SmartTransferCallbackUrls] = Field(default=None, alias="callbackUrls")
|
39
|
+
recipients: List[PaymentRecipient]
|
40
|
+
connector: Connector
|
41
|
+
created_at: datetime = Field(description="Date when the preauthorization was created", alias="createdAt")
|
42
|
+
updated_at: datetime = Field(description="Date when the preauthorization was updated", alias="updatedAt")
|
43
|
+
__properties: ClassVar[List[str]] = ["id", "status", "consentUrl", "clientPreauthorizationId", "callbackUrls", "recipients", "connector", "createdAt", "updatedAt"]
|
44
|
+
|
45
|
+
@field_validator('status')
|
46
|
+
def status_validate_enum(cls, value):
|
47
|
+
"""Validates the enum"""
|
48
|
+
if value not in set(['CREATED', 'COMPLETED', 'REVOKED', 'REJECTED', 'ERROR']):
|
49
|
+
raise ValueError("must be one of enum values ('CREATED', 'COMPLETED', 'REVOKED', 'REJECTED', 'ERROR')")
|
50
|
+
return value
|
51
|
+
|
52
|
+
model_config = ConfigDict(
|
53
|
+
populate_by_name=True,
|
54
|
+
validate_assignment=True,
|
55
|
+
protected_namespaces=(),
|
56
|
+
)
|
57
|
+
|
58
|
+
|
59
|
+
def to_str(self) -> str:
|
60
|
+
"""Returns the string representation of the model using alias"""
|
61
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
62
|
+
|
63
|
+
def to_json(self) -> str:
|
64
|
+
"""Returns the JSON representation of the model using alias"""
|
65
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
66
|
+
return json.dumps(self.to_dict())
|
67
|
+
|
68
|
+
@classmethod
|
69
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
70
|
+
"""Create an instance of SmartTransferPreauthorization from a JSON string"""
|
71
|
+
return cls.from_dict(json.loads(json_str))
|
72
|
+
|
73
|
+
def to_dict(self) -> Dict[str, Any]:
|
74
|
+
"""Return the dictionary representation of the model using alias.
|
75
|
+
|
76
|
+
This has the following differences from calling pydantic's
|
77
|
+
`self.model_dump(by_alias=True)`:
|
78
|
+
|
79
|
+
* `None` is only added to the output dict for nullable fields that
|
80
|
+
were set at model initialization. Other fields with value `None`
|
81
|
+
are ignored.
|
82
|
+
"""
|
83
|
+
excluded_fields: Set[str] = set([
|
84
|
+
])
|
85
|
+
|
86
|
+
_dict = self.model_dump(
|
87
|
+
by_alias=True,
|
88
|
+
exclude=excluded_fields,
|
89
|
+
exclude_none=True,
|
90
|
+
)
|
91
|
+
# override the default output from pydantic by calling `to_dict()` of callback_urls
|
92
|
+
if self.callback_urls:
|
93
|
+
_dict['callbackUrls'] = self.callback_urls.to_dict()
|
94
|
+
# override the default output from pydantic by calling `to_dict()` of each item in recipients (list)
|
95
|
+
_items = []
|
96
|
+
if self.recipients:
|
97
|
+
for _item_recipients in self.recipients:
|
98
|
+
if _item_recipients:
|
99
|
+
_items.append(_item_recipients.to_dict())
|
100
|
+
_dict['recipients'] = _items
|
101
|
+
# override the default output from pydantic by calling `to_dict()` of connector
|
102
|
+
if self.connector:
|
103
|
+
_dict['connector'] = self.connector.to_dict()
|
104
|
+
return _dict
|
105
|
+
|
106
|
+
@classmethod
|
107
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
108
|
+
"""Create an instance of SmartTransferPreauthorization from a dict"""
|
109
|
+
if obj is None:
|
110
|
+
return None
|
111
|
+
|
112
|
+
if not isinstance(obj, dict):
|
113
|
+
return cls.model_validate(obj)
|
114
|
+
|
115
|
+
_obj = cls.model_validate({
|
116
|
+
"id": obj.get("id"),
|
117
|
+
"status": obj.get("status"),
|
118
|
+
"consentUrl": obj.get("consentUrl"),
|
119
|
+
"clientPreauthorizationId": obj.get("clientPreauthorizationId"),
|
120
|
+
"callbackUrls": SmartTransferCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
|
121
|
+
"recipients": [PaymentRecipient.from_dict(_item) for _item in obj["recipients"]] if obj.get("recipients") is not None else None,
|
122
|
+
"connector": Connector.from_dict(obj["connector"]) if obj.get("connector") is not None else None,
|
123
|
+
"createdAt": obj.get("createdAt"),
|
124
|
+
"updatedAt": obj.get("updatedAt")
|
125
|
+
})
|
126
|
+
return _obj
|
127
|
+
|
128
|
+
|
@@ -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 SmartTransferPreauthorizationParameter(BaseModel):
|
27
|
+
"""
|
28
|
+
Credentials neccesary to create a smart transfer preauthorization
|
29
|
+
""" # noqa: E501
|
30
|
+
cpf: StrictStr = Field(description="CPF of the payer")
|
31
|
+
cnpj: Optional[StrictStr] = Field(default=None, description="CNPJ of the payer")
|
32
|
+
__properties: ClassVar[List[str]] = ["cpf", "cnpj"]
|
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 SmartTransferPreauthorizationParameter 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 SmartTransferPreauthorizationParameter 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
|
+
"cpf": obj.get("cpf"),
|
86
|
+
"cnpj": obj.get("cnpj")
|
87
|
+
})
|
88
|
+
return _obj
|
89
|
+
|
90
|
+
|
@@ -76,9 +76,9 @@ class StatusDetailProduct(BaseModel):
|
|
76
76
|
# override the default output from pydantic by calling `to_dict()` of each item in warnings (list)
|
77
77
|
_items = []
|
78
78
|
if self.warnings:
|
79
|
-
for
|
80
|
-
if
|
81
|
-
_items.append(
|
79
|
+
for _item_warnings in self.warnings:
|
80
|
+
if _item_warnings:
|
81
|
+
_items.append(_item_warnings.to_dict())
|
82
82
|
_dict['warnings'] = _items
|
83
83
|
return _dict
|
84
84
|
|
@@ -76,9 +76,9 @@ class WebhooksList200Response(BaseModel):
|
|
76
76
|
# override the default output from pydantic by calling `to_dict()` of each item in results (list)
|
77
77
|
_items = []
|
78
78
|
if self.results:
|
79
|
-
for
|
80
|
-
if
|
81
|
-
_items.append(
|
79
|
+
for _item_results in self.results:
|
80
|
+
if _item_results:
|
81
|
+
_items.append(_item_results.to_dict())
|
82
82
|
_dict['results'] = _items
|
83
83
|
return _dict
|
84
84
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post18
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -19,7 +19,7 @@ Pluggy's main API to review data and execute connectors
|
|
19
19
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
20
20
|
|
21
21
|
- API version: 1.0.0
|
22
|
-
- Package version: 1.0.0.
|
22
|
+
- Package version: 1.0.0.post18
|
23
23
|
- Generator version: 7.8.0-SNAPSHOT
|
24
24
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
25
25
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -187,6 +187,11 @@ Class | Method | HTTP request | Description
|
|
187
187
|
*SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
|
188
188
|
*SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
|
189
189
|
*SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
|
190
|
+
*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
|
191
|
+
*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
|
192
|
+
*SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
|
193
|
+
*SmartTransferApi* | [**smart_transfer_preauthorization_create**](docs/SmartTransferApi.md#smart_transfer_preauthorization_create) | **POST** /smart-transfers/preauthorizations | Create preauthorization
|
194
|
+
*SmartTransferApi* | [**smart_transfer_preauthorization_retrieve**](docs/SmartTransferApi.md#smart_transfer_preauthorization_retrieve) | **GET** /smart-transfers/preauthorizations/{id} | Retrieve preauthorization
|
190
195
|
*TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List
|
191
196
|
*TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve
|
192
197
|
*TransactionApi* | [**transactions_update**](docs/TransactionApi.md#transactions_update) | **PATCH** /transactions/{id} | Update
|
@@ -259,6 +264,8 @@ Class | Method | HTTP request | Description
|
|
259
264
|
- [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
|
260
265
|
- [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
|
261
266
|
- [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
|
267
|
+
- [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
|
268
|
+
- [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
|
262
269
|
- [CreateWebhook](docs/CreateWebhook.md)
|
263
270
|
- [CredentialSelectOption](docs/CredentialSelectOption.md)
|
264
271
|
- [CreditCardMetadata](docs/CreditCardMetadata.md)
|
@@ -340,6 +347,11 @@ Class | Method | HTTP request | Description
|
|
340
347
|
- [SmartAccountBalance](docs/SmartAccountBalance.md)
|
341
348
|
- [SmartAccountTransfer](docs/SmartAccountTransfer.md)
|
342
349
|
- [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)
|
350
|
+
- [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
|
351
|
+
- [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
|
352
|
+
- [SmartTransferPayment](docs/SmartTransferPayment.md)
|
353
|
+
- [SmartTransferPreauthorization](docs/SmartTransferPreauthorization.md)
|
354
|
+
- [SmartTransferPreauthorizationParameter](docs/SmartTransferPreauthorizationParameter.md)
|
343
355
|
- [StatusDetail](docs/StatusDetail.md)
|
344
356
|
- [StatusDetailProduct](docs/StatusDetailProduct.md)
|
345
357
|
- [StatusDetailProductWarning](docs/StatusDetailProductWarning.md)
|
@@ -1,11 +1,11 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=NxJLkct8abnPqfs-WB2OVJLYL7JPM47gtJdKoVC1vhE,14079
|
2
|
+
pluggy_sdk/api_client.py,sha256=CBipcIl6QGOOWxD1Qp1blwhAlsjkUkAA7BKqhk7K8cU,27037
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=5GT1XxA5TTVKnz0rnAxROOqtmT0Tqybjc-GVn9rJlkU,15910
|
5
5
|
pluggy_sdk/exceptions.py,sha256=nnh92yDlGdY1-zRsb0vQLebe4oyhrO63RXCYBhbrhoU,5953
|
6
6
|
pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pluggy_sdk/rest.py,sha256=bul9ovAN4BXJwh9yRpC8xb9pZva6xIKmUD72sIQa2yM,9385
|
8
|
-
pluggy_sdk/api/__init__.py,sha256=
|
8
|
+
pluggy_sdk/api/__init__.py,sha256=CX0ISrwWFsMCwTPpqv1FmbXQaekHYNUi0WU-y7cDK98,1549
|
9
9
|
pluggy_sdk/api/account_api.py,sha256=VEWOlBO1pkFbDvWeM1chS0sGuVU9n9imt1CdZUBRn2M,22173
|
10
10
|
pluggy_sdk/api/acquirer_anticipation_api.py,sha256=-M4n5ZN3KMDDzoicU-KO0XLey0aqK6WzEAgLUaVUF4U,26332
|
11
11
|
pluggy_sdk/api/acquirer_receivable_api.py,sha256=eyUak4Kse8R5-aEHz2ZUrzCmSn8qxxTGzXaOZSR_Cso,26246
|
@@ -32,53 +32,54 @@ pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd
|
|
32
32
|
pluggy_sdk/api/portfolio_yield_api.py,sha256=7s_DeSuFUVnR2XWzdi5mFrKDGVz3izgIZsbZfzsBZ08,22446
|
33
33
|
pluggy_sdk/api/smart_account_api.py,sha256=THih8KrinkShpXBa3hHQnZ_WoLiqOHNQzNr525U79C8,66571
|
34
34
|
pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
|
35
|
+
pluggy_sdk/api/smart_transfer_api.py,sha256=0I8idVAwbnY4r210kMQtRdxiwERKfU41refzCbSQLfI,55843
|
35
36
|
pluggy_sdk/api/transaction_api.py,sha256=RZoU3aUqKeqanKGlyuo5DNyRLVWelnwOMNjg1FYBXNc,37742
|
36
37
|
pluggy_sdk/api/webhook_api.py,sha256=_g7Ca5YYLuED49BRGmG-IiA6I9IUbWF4zqrIgUQRUOw,55840
|
37
|
-
pluggy_sdk/models/__init__.py,sha256=
|
38
|
+
pluggy_sdk/models/__init__.py,sha256=xSSvSWd46sq7IgrSU4EPusqi_rGWk7h3yvi2aNKck_4,12063
|
38
39
|
pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
|
39
|
-
pluggy_sdk/models/accounts_list200_response.py,sha256=
|
40
|
+
pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
|
40
41
|
pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
|
41
42
|
pluggy_sdk/models/acquirer_anticipation_data.py,sha256=sNX04XqIYXT39eI1D81gX-46ZWnLVv2kUY2YhtWuTXY,3392
|
42
43
|
pluggy_sdk/models/acquirer_data.py,sha256=r-kjKmEdlf6LSJMRtvu8cqFruJYr-6pEGICnM7YTIlA,4470
|
43
|
-
pluggy_sdk/models/acquirer_receivable.py,sha256=
|
44
|
+
pluggy_sdk/models/acquirer_receivable.py,sha256=wuUAPbSVd_c4mTcr7eAE7eizi-xCuxPO6OD5HGDACBk,6393
|
44
45
|
pluggy_sdk/models/acquirer_receivable_data.py,sha256=uk1fQL_q7LXVvAPoAazUKv-LYqAoPng6bwWacsbNwuQ,3912
|
45
46
|
pluggy_sdk/models/acquirer_receivable_data_establishment.py,sha256=PD6uckhWZRvboxLarlKQxjxj2PM7euUZ7loYWoR1oVA,3449
|
46
47
|
pluggy_sdk/models/acquirer_receivable_destination_account.py,sha256=bej3wke-6yx80dLRneXBUiDl7LRlzKGA976SV32pieI,2921
|
47
48
|
pluggy_sdk/models/acquirer_receivable_related_sale.py,sha256=iExYetycjRfF6G9JIJwPODdFJABnva9Mp3r4r5QzS2g,3604
|
48
|
-
pluggy_sdk/models/acquirer_sale.py,sha256=
|
49
|
-
pluggy_sdk/models/acquirer_sale_data.py,sha256=
|
49
|
+
pluggy_sdk/models/acquirer_sale.py,sha256=gSv_RVQoXfmzumaZutAi60fZD1o0pXoJw9g1MHskd00,7607
|
50
|
+
pluggy_sdk/models/acquirer_sale_data.py,sha256=AnKlF37NVg9Wa7x6HHXS6QpP8hYtnN8btNkskL3nBLk,6313
|
50
51
|
pluggy_sdk/models/acquirer_sale_installment.py,sha256=jMYYgd2yxUR6wqMdvGKQEZWjEQ1hAPVlY635OD3XLHQ,3083
|
51
52
|
pluggy_sdk/models/acquirer_sale_installment_data.py,sha256=4qn7D-pZxq0m08Cs9Nl7PbMhSUjSki9qqv8X5Q4Cmkc,3209
|
52
53
|
pluggy_sdk/models/address.py,sha256=CkRbeQlr-XFGX2g16xzn58dw7n2L-yy97sURcJWeEEw,3935
|
53
54
|
pluggy_sdk/models/aggregated_portfolio.py,sha256=LGYla8DycMpb9oP7TLzM8aVB968nQkphRRiBKZs1ZbI,5014
|
54
|
-
pluggy_sdk/models/aggregated_portfolio_response.py,sha256=
|
55
|
+
pluggy_sdk/models/aggregated_portfolio_response.py,sha256=Rrkl6ZvS6kpQYHYVy9yn-JfBa_ZuGarVeNMEvxeIC00,3614
|
55
56
|
pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-mcxFh5h9jdw,2800
|
56
57
|
pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
|
57
58
|
pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
|
58
59
|
pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
|
59
60
|
pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
|
60
61
|
pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
|
61
|
-
pluggy_sdk/models/benefit_response.py,sha256=
|
62
|
+
pluggy_sdk/models/benefit_response.py,sha256=nr8yRQcnMA6j6yjuFawU4dPC0iNOpvzVZ-UQ-eMO2OU,5350
|
62
63
|
pluggy_sdk/models/benefit_response_paying_institution.py,sha256=sur_yb6li6GoQqbt49OsD9FbPNx-kQ077fVMtuFOG5M,3044
|
63
|
-
pluggy_sdk/models/benefits_list200_response.py,sha256=
|
64
|
-
pluggy_sdk/models/bill.py,sha256=
|
64
|
+
pluggy_sdk/models/benefits_list200_response.py,sha256=2nvqxafhuuXbl2rq9lXOLcVtBYeoz9OTpvFunVevGOc,3464
|
65
|
+
pluggy_sdk/models/bill.py,sha256=e2tOe1aFBZs9VJMxV9pwsT-d4I8A66M7USGP9mWijbI,4476
|
65
66
|
pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
|
66
|
-
pluggy_sdk/models/bills_list200_response.py,sha256=
|
67
|
+
pluggy_sdk/models/bills_list200_response.py,sha256=iGWpb0feuyvZt_9OjJxsrO8bUycaq0n-guzr6yqMNlU,3416
|
67
68
|
pluggy_sdk/models/boleto.py,sha256=tD6vJcN_wJC4cKAiEPsvlltmh_jN3BWPTlkAY8ab6ak,5378
|
68
69
|
pluggy_sdk/models/boleto_payer.py,sha256=0zVxArLdsn9lQ68WcabB0oT4tD1QzTyKblN8aZxbjpo,2641
|
69
70
|
pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5QlioE-Z_U,2665
|
70
|
-
pluggy_sdk/models/bulk_payment.py,sha256=
|
71
|
-
pluggy_sdk/models/bulk_payments_list200_response.py,sha256=
|
71
|
+
pluggy_sdk/models/bulk_payment.py,sha256=_EiKF2iM38AktGvOHGey0FG9_usnL6YPUM7gtTWPeJg,5717
|
72
|
+
pluggy_sdk/models/bulk_payments_list200_response.py,sha256=9Ur4ZTPH5Q7sGwQ19XAd9iZi_uQll5-Jujmbj4qWtu4,3469
|
72
73
|
pluggy_sdk/models/category.py,sha256=oFSunhtg1GY2iJKhbio0ZtPeiFAwvOY-mknLELuQkYw,3297
|
73
74
|
pluggy_sdk/models/client_category_rule.py,sha256=MiJA4luKDsgTCfSV1jZj-MclCk46WF7kTt48uhSy_TY,3070
|
74
75
|
pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
|
75
76
|
pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
|
76
77
|
pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
|
77
|
-
pluggy_sdk/models/connector.py,sha256=
|
78
|
-
pluggy_sdk/models/connector_credential.py,sha256=
|
78
|
+
pluggy_sdk/models/connector.py,sha256=2bUgGKbePvOvaX07Xguj3WxWBMiT4_lLXlHiuzi1SG0,7474
|
79
|
+
pluggy_sdk/models/connector_credential.py,sha256=9omVYSRdUvra1wKToyF6rW8dnhy5vQAfXEaVFzjCau4,4925
|
79
80
|
pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
|
80
81
|
pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
|
81
|
-
pluggy_sdk/models/connector_list_response.py,sha256=
|
82
|
+
pluggy_sdk/models/connector_list_response.py,sha256=PetHjZ1wAJ2k2gacrg9EmM0fnvSZ7YZPWms-GVUbKRg,3386
|
82
83
|
pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
|
83
84
|
pluggy_sdk/models/consent.py,sha256=HgknVqrY7aoUgT4fKol5T6nrf9Fe6vgmIirbYNBqJos,5593
|
84
85
|
pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
|
@@ -94,6 +95,8 @@ pluggy_sdk/models/create_payment_request.py,sha256=p1Lwwhl07cSxfyxUVtLexshtGAoSI
|
|
94
95
|
pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
|
95
96
|
pluggy_sdk/models/create_smart_account_request.py,sha256=ZxfVt_baOOkWDaVB9ndDnmVMx3zwkVnbSRL9iCMfMSQ,3612
|
96
97
|
pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
|
98
|
+
pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
|
99
|
+
pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=2_XTI-V4ndH1qpYXn_azD0AioBTjpXcYYXiTwyt5K34,4098
|
97
100
|
pluggy_sdk/models/create_webhook.py,sha256=WmTF6jyUKisYewt2smFPoN6Di4zR5iZNX1_sjO4Lbfs,3632
|
98
101
|
pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
|
99
102
|
pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
|
@@ -105,67 +108,67 @@ pluggy_sdk/models/email.py,sha256=X7c8gC0n13Y-aKyOdVoIEnnyi-7jMlFBmKJyYeiezpc,29
|
|
105
108
|
pluggy_sdk/models/global_error_response.py,sha256=JP7wgaEYQN4wp35fB74XTYsh_AdviIcuaUexrymj1S8,3025
|
106
109
|
pluggy_sdk/models/i_count_response.py,sha256=P6qECWikHU8-UiQWI-nzBkD1VUJK3HRKk6eD4-LccXQ,2554
|
107
110
|
pluggy_sdk/models/identity_relation.py,sha256=d_jRZfiYsJOeO5AOpfa8iAiupzGSmXZVxk_bS6xZVDE,3269
|
108
|
-
pluggy_sdk/models/identity_response.py,sha256=
|
111
|
+
pluggy_sdk/models/identity_response.py,sha256=5AajIMbyzm2o0fTdwJ3V6PBrlDEv7rJl2FVVGwR3gvY,7275
|
109
112
|
pluggy_sdk/models/income_report.py,sha256=MscdLVudpzaySJ__mKCBVD0vJcHoOKVIYyFJ6xaNS5U,2788
|
110
|
-
pluggy_sdk/models/income_reports_response.py,sha256=
|
111
|
-
pluggy_sdk/models/investment.py,sha256=
|
113
|
+
pluggy_sdk/models/income_reports_response.py,sha256=cXTY6QSoXZ5gSzJD2rz992dQRHk01QImadetCVg_fy8,3538
|
114
|
+
pluggy_sdk/models/investment.py,sha256=Wgrcn1BupoR-_2GRYHI5w_r7iuJJhQ-hNFPxaypXu7E,11148
|
112
115
|
pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM4bo3re18OCk,5224
|
113
116
|
pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
|
114
117
|
pluggy_sdk/models/investment_transaction.py,sha256=sxdtNZ0ppU34lOqWDnK5r6zFmVOItVIaGv0dCcd-8yk,4733
|
115
|
-
pluggy_sdk/models/investments_list200_response.py,sha256=
|
118
|
+
pluggy_sdk/models/investments_list200_response.py,sha256=JqUTarakPV6yzY162pLugeFudbwj6pHeCJYGdKVz8Js,3458
|
116
119
|
pluggy_sdk/models/item.py,sha256=OL8dL0CvZbuTsZQ6kR6freAXTx88_etba9IesxRFqGM,7437
|
117
|
-
pluggy_sdk/models/item_creation_error_response.py,sha256=
|
120
|
+
pluggy_sdk/models/item_creation_error_response.py,sha256=_zdN0Go6iU2deVKxRrexeYlDxWxYfWhjyrxisyQbjUI,3607
|
118
121
|
pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
|
119
122
|
pluggy_sdk/models/item_options.py,sha256=cTRMzwsK1JUQvTAsKeENOy7qEyt4NJ01zSf8wZ62sgo,2882
|
120
|
-
pluggy_sdk/models/loan.py,sha256=
|
123
|
+
pluggy_sdk/models/loan.py,sha256=mTbqlJwpxopVEiZYUFn3sc5oi9yXrH8rK43tuBuNlnM,12231
|
121
124
|
pluggy_sdk/models/loan_contracted_fee.py,sha256=k2EHfnbElL7scRmPQSKmzZ3oSxh50Z9wtAPe2Q2Oqzw,4205
|
122
125
|
pluggy_sdk/models/loan_contracted_finance_charge.py,sha256=-2cHDwe9IfcWxtjLaL1Vs0PdWsqMv5RGO_Cx2fo3dj0,3153
|
123
126
|
pluggy_sdk/models/loan_installment_balloon_payment.py,sha256=W9WH53-m8pz1AArlHri8-pbxNREo92quYLglTUeWCVk,3202
|
124
127
|
pluggy_sdk/models/loan_installment_balloon_payment_amount.py,sha256=n2W97p1QrZmrcseGJfkQCFMMCtSp37bMElyWVylfL4c,2936
|
125
|
-
pluggy_sdk/models/loan_installments.py,sha256=
|
128
|
+
pluggy_sdk/models/loan_installments.py,sha256=00rPPxX9QM7F2mzmjVj7oMG-iLMOlfjWeNcgjPlsOnc,6244
|
126
129
|
pluggy_sdk/models/loan_interest_rate.py,sha256=z2sL9_0Q8io4p3wwF6jjmOJ9Yt9gNcZr5YHwxVrTNKQ,6278
|
127
130
|
pluggy_sdk/models/loan_payment_release.py,sha256=Q9TSd4bHl9vu6W4mJatkYeiblmUCKI2LgUzmvMLRPjA,4233
|
128
|
-
pluggy_sdk/models/loan_payment_release_over_parcel.py,sha256=
|
131
|
+
pluggy_sdk/models/loan_payment_release_over_parcel.py,sha256=qAVv_xJnxRy6ThCgVoVP_Db3zqo5D-NPcXGMZ2mB0tg,3958
|
129
132
|
pluggy_sdk/models/loan_payment_release_over_parcel_charge.py,sha256=BieU1pled7qC_5zKW3xwX-_Z4N1gBl3CJOmWkrRYETo,3230
|
130
133
|
pluggy_sdk/models/loan_payment_release_over_parcel_fee.py,sha256=o9F2FuGgy-Ht93XrFqLbdHxB34RYb6qH0e-yGnkJi6A,2988
|
131
|
-
pluggy_sdk/models/loan_payments.py,sha256=
|
134
|
+
pluggy_sdk/models/loan_payments.py,sha256=tt1Fb4HxZWT5rHF1o88yRdVlXUd4qsLevM8blZtC19Y,3404
|
132
135
|
pluggy_sdk/models/loan_warranty.py,sha256=d5fioDjaxbCJwm71mBzIqGhlnV16PpGwmSwwbegzOS8,3493
|
133
|
-
pluggy_sdk/models/loans_list200_response.py,sha256=
|
136
|
+
pluggy_sdk/models/loans_list200_response.py,sha256=IlMx-0kbUxx6YiFc7YMXDCABX0HaiXOXceINurMkolw,3404
|
134
137
|
pluggy_sdk/models/merchant.py,sha256=Fq34vFzqnRy_ayQfJP8gVcNJlfc3PSg0wnuHFNr9HWE,3225
|
135
138
|
pluggy_sdk/models/monthly.py,sha256=tudXeIGL9JslMcDQwQAyKuHU_FfwEW1BRuy3jS8euCw,3734
|
136
139
|
pluggy_sdk/models/monthly_portfolio.py,sha256=Q6anY9WVhr7ISpzD9wje5KJRQRo5pcBkuNePRuOUg_k,3967
|
137
|
-
pluggy_sdk/models/monthly_portfolio_response.py,sha256=
|
140
|
+
pluggy_sdk/models/monthly_portfolio_response.py,sha256=0E90y0KN-tpf-47D1Vx4lSuqzGgUiITLwcT2aoAMSlc,3625
|
138
141
|
pluggy_sdk/models/not_authenticated_response.py,sha256=8xqADcfaba8G0ctU78DnIeywPVwbUDHjEEk6WdqQSK4,2665
|
139
|
-
pluggy_sdk/models/page_response_acquirer_anticipations.py,sha256=
|
140
|
-
pluggy_sdk/models/page_response_acquirer_receivables.py,sha256=
|
141
|
-
pluggy_sdk/models/page_response_acquirer_sales.py,sha256=
|
142
|
-
pluggy_sdk/models/page_response_category_rules.py,sha256=
|
143
|
-
pluggy_sdk/models/page_response_consents.py,sha256=
|
144
|
-
pluggy_sdk/models/page_response_investment_transactions.py,sha256=
|
145
|
-
pluggy_sdk/models/page_response_transactions.py,sha256=
|
142
|
+
pluggy_sdk/models/page_response_acquirer_anticipations.py,sha256=5gQYI_1BuIp0FDKWsNkSJsCDnykcEqEZZdlLh3gzeiM,3359
|
143
|
+
pluggy_sdk/models/page_response_acquirer_receivables.py,sha256=7Xblwq7stTBhAI2IOlraMC4fuHMclbxKzEbe9Q52D0A,3345
|
144
|
+
pluggy_sdk/models/page_response_acquirer_sales.py,sha256=exZgBz69kxYWUDzkn_i7n4uHDl32m8qzgJ0i80gp7wM,3303
|
145
|
+
pluggy_sdk/models/page_response_category_rules.py,sha256=zBL0x1-GY1llYRDHPEmffZC2wi7-ND_6fCqyqvSJgkg,3328
|
146
|
+
pluggy_sdk/models/page_response_consents.py,sha256=5hW5lV-1TdWvTj1IBREOIjCq38X0hsAsEbBhKEbWW3c,3267
|
147
|
+
pluggy_sdk/models/page_response_investment_transactions.py,sha256=1tmgkQZST-uBq4iCsHe65ayl6IizSq5EbklIbzAOa1k,3366
|
148
|
+
pluggy_sdk/models/page_response_transactions.py,sha256=uVDrbsOwMG0IhlyU9Ri4OS5kkiOL6jT02eGA9_rdOPc,3295
|
146
149
|
pluggy_sdk/models/parameter_validation_error.py,sha256=LHjLtSC2E0jlaDeljJONx2ljhUFDk3-sUgrZ_sGCHDs,2631
|
147
|
-
pluggy_sdk/models/parameter_validation_response.py,sha256=
|
150
|
+
pluggy_sdk/models/parameter_validation_response.py,sha256=oy9I3j23NItavWkK1GxNJ8qu8snAeH0WygExjXQeLn4,3273
|
148
151
|
pluggy_sdk/models/payment_customer.py,sha256=ex6-H5-hXd04Q39gJVPIYvnAVXp8bhQjg3-9fi2HBaY,3413
|
149
|
-
pluggy_sdk/models/payment_customers_list200_response.py,sha256=
|
152
|
+
pluggy_sdk/models/payment_customers_list200_response.py,sha256=X4IXDtLhs4g-ts7unv4sX50wtECDa6YH0rFXsuyyf60,3505
|
150
153
|
pluggy_sdk/models/payment_data.py,sha256=uD2IjAS_sp_sr5ag9727MPUO7rPro4xfWVBQlHY2LfQ,4087
|
151
154
|
pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
|
152
155
|
pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
|
153
156
|
pluggy_sdk/models/payment_intent.py,sha256=wSEOFlU1bvqe-g4ir7XsRBfgjksbqIxWAS54vCgI2VM,6981
|
154
157
|
pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
|
155
|
-
pluggy_sdk/models/payment_intents_list200_response.py,sha256=
|
158
|
+
pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
|
156
159
|
pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
|
157
160
|
pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
|
158
161
|
pluggy_sdk/models/payment_receipt_person.py,sha256=9eHiWC33eisDSZJgHW6ho_xD2ekaMuzq8AdvVEt5dUE,3246
|
159
162
|
pluggy_sdk/models/payment_recipient.py,sha256=XGpf7503LIg9YADhESE-VGjaFSVWVq0_Dlgb6MUoeDw,4534
|
160
163
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
161
|
-
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=
|
162
|
-
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=
|
164
|
+
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
165
|
+
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
163
166
|
pluggy_sdk/models/payment_request.py,sha256=5Bmj4lcoIpuAV1kTLd4tGCAnuvrFgaby_hmMyWUrGjA,5986
|
164
167
|
pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
|
165
|
-
pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=
|
168
|
+
pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
|
166
169
|
pluggy_sdk/models/payment_request_schedule.py,sha256=gQqGFVYZLe8NguGwzpREBMa0b2KCUhmgudUlSUMazY4,6999
|
167
|
-
pluggy_sdk/models/payment_requests_list200_response.py,sha256=
|
168
|
-
pluggy_sdk/models/payment_schedules_list200_response.py,sha256=
|
170
|
+
pluggy_sdk/models/payment_requests_list200_response.py,sha256=sAsajmYPVezAobFSq0KFFMBcO8ApV-RKl2PrmfXWs1s,3496
|
171
|
+
pluggy_sdk/models/payment_schedules_list200_response.py,sha256=b8e5Q46P2lmKv2MUqdAhgcEZ5OJ13_-OLnFp60D9S9w,3529
|
169
172
|
pluggy_sdk/models/payroll_loan.py,sha256=rX7FRaG_yWmfhM3IOLmq_9uLSa-oZ1PO1-uFkWHtWiI,6158
|
170
173
|
pluggy_sdk/models/payroll_loan_client.py,sha256=_5zEk1OsZcUdWYVTrU04qfI98CJnceuuJr1k08qXRYk,3756
|
171
174
|
pluggy_sdk/models/payroll_loan_response.py,sha256=0LjS2R5BYHjhaaWAMTdQ5VRz3ugdQlwoec8piEeaf6U,6339
|
@@ -185,9 +188,14 @@ pluggy_sdk/models/smart_account.py,sha256=JU7cckNNPuBwkkIEcWTjf516pYcorqkTxTh71C
|
|
185
188
|
pluggy_sdk/models/smart_account_address.py,sha256=iSFjlo01nqtRtfsD24h0gABxmUamPfHcW3hzCiCCM5s,4266
|
186
189
|
pluggy_sdk/models/smart_account_balance.py,sha256=FhPmk52iCQfrhTItJl6XQdV7fFIkxQed3H1vrp8o5o8,3217
|
187
190
|
pluggy_sdk/models/smart_account_transfer.py,sha256=UaOK1DFUJXotRZTpF3fhdEtIVrOXka0ItWp7NtWBsC4,5111
|
188
|
-
pluggy_sdk/models/smart_accounts_list200_response.py,sha256=
|
191
|
+
pluggy_sdk/models/smart_accounts_list200_response.py,sha256=7Qgcc6VUha7fGm4w2MMTkGtLGeGLWAjkzBzKRzicyxQ,3478
|
192
|
+
pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py,sha256=2GsrZjFOR9IYZHyvE1BHcGPZsvH1-EPkGX1TFBKPSnk,3618
|
193
|
+
pluggy_sdk/models/smart_transfer_callback_urls.py,sha256=pvgQt9jvPknZczpXDb80rTdxdLRkrKbTd-Z8xTYQh1w,2880
|
194
|
+
pluggy_sdk/models/smart_transfer_payment.py,sha256=KVzD6ETAFMG-n9K9StFUrbArl5AFGyUvr5cN79OIJt8,4806
|
195
|
+
pluggy_sdk/models/smart_transfer_preauthorization.py,sha256=M2JABKmnBAeU2tjJ32_NiDdzPUBzY1GRnzSDc66WC30,5387
|
196
|
+
pluggy_sdk/models/smart_transfer_preauthorization_parameter.py,sha256=ZhP5Q_7gZoc-gghrqdWaDfXjhKxo6518FOIuMwVrEyE,2759
|
189
197
|
pluggy_sdk/models/status_detail.py,sha256=k8td6igNro4YcAtwz86ouk1QZnhQPXDsn0NC86kLI5Y,6906
|
190
|
-
pluggy_sdk/models/status_detail_product.py,sha256=
|
198
|
+
pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
|
191
199
|
pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
|
192
200
|
pluggy_sdk/models/transaction.py,sha256=a9B3D6fwMZJcJxNEtWPF7IhQT-f5SfuUJfqmL0nMCJI,6919
|
193
201
|
pluggy_sdk/models/update_item.py,sha256=OKSiocu9_yk9tTbBdBWYlFHMbDPTlYCxhkVtEInsELI,4234
|
@@ -197,9 +205,9 @@ pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2
|
|
197
205
|
pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
|
198
206
|
pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
|
199
207
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
200
|
-
pluggy_sdk/models/webhooks_list200_response.py,sha256=
|
208
|
+
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
201
209
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
202
|
-
pluggy_sdk-1.0.0.
|
203
|
-
pluggy_sdk-1.0.0.
|
204
|
-
pluggy_sdk-1.0.0.
|
205
|
-
pluggy_sdk-1.0.0.
|
210
|
+
pluggy_sdk-1.0.0.post18.dist-info/METADATA,sha256=PfrhOOt3x59VKytj3KAbUxmyVYifmiVH9Cf4rHpxwDE,25009
|
211
|
+
pluggy_sdk-1.0.0.post18.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
212
|
+
pluggy_sdk-1.0.0.post18.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
213
|
+
pluggy_sdk-1.0.0.post18.dist-info/RECORD,,
|
File without changes
|