pluggy-sdk 1.0.0.post41__py3-none-any.whl → 1.0.0.post42__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 +1 -1
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/connector.py +9 -2
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post42.dist-info}/METADATA +2 -2
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post42.dist-info}/RECORD +8 -8
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post42.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post41.dist-info → pluggy_sdk-1.0.0.post42.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
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.post42/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.post42".\
|
536
536
|
format(env=sys.platform, pyversion=sys.version)
|
537
537
|
|
538
538
|
def get_host_settings(self) -> List[HostSetting]:
|
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
|
|
@@ -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.post42
|
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.post42
|
32
32
|
- Generator version: 7.13.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=e4sxq5yVqRCYFSO5xRqklw7jMKMIaDZvKH9rVcBXjuU,14046
|
2
|
+
pluggy_sdk/api_client.py,sha256=rNz7WukyV6MJrSy-9TLIHUgO7OMsGpMPN9UjpqwVfFE,27438
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=2N-oTIwiJaJ0q0aNDDVzQ9gK8FhHk_iTZdqMmj2xZX8,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
|
@@ -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
|
@@ -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.post42.dist-info/METADATA,sha256=z6yjIDxVGVDuE2Krbnq9yhH0T8F4Xmb6eH5ZzydQP3g,25133
|
235
|
+
pluggy_sdk-1.0.0.post42.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
236
|
+
pluggy_sdk-1.0.0.post42.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
237
|
+
pluggy_sdk-1.0.0.post42.dist-info/RECORD,,
|
File without changes
|
File without changes
|