pluggy-sdk 1.0.0.post21__py3-none-any.whl → 1.0.0.post22__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/client_category_rule.py +6 -2
- pluggy_sdk/models/create_client_category_rule.py +7 -3
- {pluggy_sdk-1.0.0.post21.dist-info → pluggy_sdk-1.0.0.post22.dist-info}/METADATA +2 -2
- {pluggy_sdk-1.0.0.post21.dist-info → pluggy_sdk-1.0.0.post22.dist-info}/RECORD +9 -9
- {pluggy_sdk-1.0.0.post21.dist-info → pluggy_sdk-1.0.0.post22.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post21.dist-info → pluggy_sdk-1.0.0.post22.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.post22/python'
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
96
96
|
|
97
97
|
def __enter__(self):
|
pluggy_sdk/configuration.py
CHANGED
@@ -414,7 +414,7 @@ conf = pluggy_sdk.Configuration(
|
|
414
414
|
"OS: {env}\n"\
|
415
415
|
"Python Version: {pyversion}\n"\
|
416
416
|
"Version of the API: 1.0.0\n"\
|
417
|
-
"SDK Package Version: 1.0.0.
|
417
|
+
"SDK Package Version: 1.0.0.post22".\
|
418
418
|
format(env=sys.platform, pyversion=sys.version)
|
419
419
|
|
420
420
|
def get_host_settings(self):
|
@@ -31,7 +31,9 @@ class ClientCategoryRule(BaseModel):
|
|
31
31
|
category_id: Optional[StrictStr] = Field(default=None, description="Identifier of the category", alias="categoryId")
|
32
32
|
category: StrictStr = Field(description="Description of the category")
|
33
33
|
client_id: Optional[StrictStr] = Field(default=None, description="Identifier of the client", alias="clientId")
|
34
|
-
|
34
|
+
transaction_type: Optional[StrictStr] = Field(default=None, description="Transaction type (DEBIT/CREDIT)", alias="transactionType")
|
35
|
+
account_type: Optional[StrictStr] = Field(default=None, description="Account type (CHECKING_ACCOUNT/CREDIT_CARD)", alias="accountType")
|
36
|
+
__properties: ClassVar[List[str]] = ["description", "categoryId", "category", "clientId", "transactionType", "accountType"]
|
35
37
|
|
36
38
|
model_config = ConfigDict(
|
37
39
|
populate_by_name=True,
|
@@ -87,7 +89,9 @@ class ClientCategoryRule(BaseModel):
|
|
87
89
|
"description": obj.get("description"),
|
88
90
|
"categoryId": obj.get("categoryId"),
|
89
91
|
"category": obj.get("category"),
|
90
|
-
"clientId": obj.get("clientId")
|
92
|
+
"clientId": obj.get("clientId"),
|
93
|
+
"transactionType": obj.get("transactionType"),
|
94
|
+
"accountType": obj.get("accountType")
|
91
95
|
})
|
92
96
|
return _obj
|
93
97
|
|
@@ -19,7 +19,7 @@ import re # noqa: F401
|
|
19
19
|
import json
|
20
20
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from typing import Optional, Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
@@ -30,7 +30,9 @@ class CreateClientCategoryRule(BaseModel):
|
|
30
30
|
description: StrictStr = Field(description="Description of the transaction rule.")
|
31
31
|
category_id: StrictStr = Field(description="Identifier of the category", alias="categoryId")
|
32
32
|
client_id: StrictStr = Field(description="Identifier of the client", alias="clientId")
|
33
|
-
|
33
|
+
transaction_type: Optional[StrictStr] = Field(default=None, description="Transaction type (DEBIT/CREDIT)", alias="transactionType")
|
34
|
+
account_type: Optional[StrictStr] = Field(default=None, description="Account type (CHECKING_ACCOUNT/CREDIT_CARD)", alias="accountType")
|
35
|
+
__properties: ClassVar[List[str]] = ["description", "categoryId", "clientId", "transactionType", "accountType"]
|
34
36
|
|
35
37
|
model_config = ConfigDict(
|
36
38
|
populate_by_name=True,
|
@@ -85,7 +87,9 @@ class CreateClientCategoryRule(BaseModel):
|
|
85
87
|
_obj = cls.model_validate({
|
86
88
|
"description": obj.get("description"),
|
87
89
|
"categoryId": obj.get("categoryId"),
|
88
|
-
"clientId": obj.get("clientId")
|
90
|
+
"clientId": obj.get("clientId"),
|
91
|
+
"transactionType": obj.get("transactionType"),
|
92
|
+
"accountType": obj.get("accountType")
|
89
93
|
})
|
90
94
|
return _obj
|
91
95
|
|
@@ -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.post22
|
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.post22
|
23
23
|
- Generator version: 7.9.0-SNAPSHOT
|
24
24
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
25
25
|
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=0fgiLHxmFhXHqfHWbfdgfjGutLiMcHz1dYvnpQqfKBU,14822
|
2
|
+
pluggy_sdk/api_client.py,sha256=mAyHgZf_vhLyqXNnUPBGO91gk_Fw-6XuXRjH9F1nG1I,27426
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=z3ytMDzckYESIkaY7_ujkHDbS_3Hu2iEh8SnP2TTZBU,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
|
@@ -71,7 +71,7 @@ pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5Q
|
|
71
71
|
pluggy_sdk/models/bulk_payment.py,sha256=_EiKF2iM38AktGvOHGey0FG9_usnL6YPUM7gtTWPeJg,5717
|
72
72
|
pluggy_sdk/models/bulk_payments_list200_response.py,sha256=9Ur4ZTPH5Q7sGwQ19XAd9iZi_uQll5-Jujmbj4qWtu4,3469
|
73
73
|
pluggy_sdk/models/category.py,sha256=oFSunhtg1GY2iJKhbio0ZtPeiFAwvOY-mknLELuQkYw,3297
|
74
|
-
pluggy_sdk/models/client_category_rule.py,sha256=
|
74
|
+
pluggy_sdk/models/client_category_rule.py,sha256=jN6C9XzoGvd3Ku-Qzls2qlk1bI5c_O2JXAaaA9HvxBA,3490
|
75
75
|
pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
|
76
76
|
pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
|
77
77
|
pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
|
@@ -84,7 +84,7 @@ pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-
|
|
84
84
|
pluggy_sdk/models/consent.py,sha256=HgknVqrY7aoUgT4fKol5T6nrf9Fe6vgmIirbYNBqJos,5593
|
85
85
|
pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
|
86
86
|
pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
|
87
|
-
pluggy_sdk/models/create_client_category_rule.py,sha256=
|
87
|
+
pluggy_sdk/models/create_client_category_rule.py,sha256=M6-QIkQTtf4limK-IyEOmOr0O3PNEGcLkjrWUw1Ji7U,3329
|
88
88
|
pluggy_sdk/models/create_item.py,sha256=Dd3mhOHJEzqFxDG-KH3y_22ajZKJe2-PGEW_TfVsYl4,4671
|
89
89
|
pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
|
90
90
|
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
|
@@ -213,7 +213,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
|
|
213
213
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
214
214
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
215
215
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
216
|
-
pluggy_sdk-1.0.0.
|
217
|
-
pluggy_sdk-1.0.0.
|
218
|
-
pluggy_sdk-1.0.0.
|
219
|
-
pluggy_sdk-1.0.0.
|
216
|
+
pluggy_sdk-1.0.0.post22.dist-info/METADATA,sha256=CA-y6n-keEntoKZbV7v_V6AWMq57NXr8r7j0Da4xEbM,25764
|
217
|
+
pluggy_sdk-1.0.0.post22.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
218
|
+
pluggy_sdk-1.0.0.post22.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
219
|
+
pluggy_sdk-1.0.0.post22.dist-info/RECORD,,
|
File without changes
|
File without changes
|