pluggy-sdk 1.0.0.post25__py3-none-any.whl → 1.0.0.post26__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 CHANGED
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.0.0.post25"
18
+ __version__ = "1.0.0.post26"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
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.post25/python'
94
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post26/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -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.post25".\
417
+ "SDK Package Version: 1.0.0.post26".\
418
418
  format(env=sys.platform, pyversion=sys.version)
419
419
 
420
420
  def get_host_settings(self):
@@ -32,7 +32,8 @@ class CreateClientCategoryRule(BaseModel):
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
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"]
35
+ match_type: Optional[StrictStr] = Field(default=None, description="Type of match used to identify the rule (exact/contains/startsWith/endsWith), if not provided, defaults to 'exact'", alias="matchType")
36
+ __properties: ClassVar[List[str]] = ["description", "categoryId", "clientId", "transactionType", "accountType", "matchType"]
36
37
 
37
38
  model_config = ConfigDict(
38
39
  populate_by_name=True,
@@ -89,7 +90,8 @@ class CreateClientCategoryRule(BaseModel):
89
90
  "categoryId": obj.get("categoryId"),
90
91
  "clientId": obj.get("clientId"),
91
92
  "transactionType": obj.get("transactionType"),
92
- "accountType": obj.get("accountType")
93
+ "accountType": obj.get("accountType"),
94
+ "matchType": obj.get("matchType")
93
95
  })
94
96
  return _obj
95
97
 
@@ -18,8 +18,8 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
- from typing import Any, ClassVar, Dict, List, Optional
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
23
  from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
24
24
  from pluggy_sdk.models.smart_transfer_preauthorization_parameter import SmartTransferPreauthorizationParameter
25
25
  from typing import Optional, Set
@@ -29,7 +29,7 @@ class CreateSmartTransferPreauthorization(BaseModel):
29
29
  """
30
30
  Create smart transfer preauthorization request data
31
31
  """ # noqa: E501
32
- connector_id: StrictStr = Field(description="Primary identifier of the connector", alias="connectorId")
32
+ connector_id: Union[StrictFloat, StrictInt] = Field(description="Primary identifier of the connector", alias="connectorId")
33
33
  parameters: SmartTransferPreauthorizationParameter
34
34
  recipient_ids: List[StrictStr] = Field(alias="recipientIds")
35
35
  callback_urls: Optional[SmartTransferCallbackUrls] = Field(default=None, alias="callbackUrls")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post25
3
+ Version: 1.0.0.post26
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.post25
22
+ - Package version: 1.0.0.post26
23
23
  - Generator version: 7.10.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=H-uy7v3jdwfRkN4vx3y9XaR7z4OEeS8Gef3KS7a1hL4,12753
2
- pluggy_sdk/api_client.py,sha256=FgZYonD12LD8d20c2FAz9OiE2XKboNXw09QrbEQ4c_A,27431
1
+ pluggy_sdk/__init__.py,sha256=srpfHHEy-VDut0b1KhYH26E1PUvp2FN7ZEOjBg720tI,12753
2
+ pluggy_sdk/api_client.py,sha256=E7gGHGq1sJdL13hG1nkcsay8iKm9JncXzzRPpkBbJe0,27431
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=ffSv7xQWP3l6v4f6QuFizyWdlvMTI0KY98SR9SISWqQ,15910
4
+ pluggy_sdk/configuration.py,sha256=3gpUO29l05giiBHiP2c5U29YyR4JaNgdOH9qGT0PMs0,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=vVdVX3R4AbYt0r6TChhsMVAnyL1nf0RA6eZYjkaaBzY,9389
@@ -84,7 +84,7 @@ pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-
84
84
  pluggy_sdk/models/consent.py,sha256=2iGU-3JCbWzjUsFU1g4UYXz_zm0EziBJgki8XaBz1Kk,5451
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=M6-QIkQTtf4limK-IyEOmOr0O3PNEGcLkjrWUw1Ji7U,3329
87
+ pluggy_sdk/models/create_client_category_rule.py,sha256=3q8GujhhKwMzDxY8j_W6ixwKHmtThDff8drDMrX1iB8,3596
88
88
  pluggy_sdk/models/create_item.py,sha256=UY9M25dLuonvzKeF5aOA_zPvHIXlG68sSYIo8yRJALE,4529
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
@@ -96,7 +96,7 @@ pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQ
96
96
  pluggy_sdk/models/create_smart_account_request.py,sha256=ZxfVt_baOOkWDaVB9ndDnmVMx3zwkVnbSRL9iCMfMSQ,3612
97
97
  pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
98
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
99
+ pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=aSaFeY_pe-TX2kMyPA_sH89SshgqsJ7JJ4trwMP2zwQ,4149
100
100
  pluggy_sdk/models/create_webhook.py,sha256=VmY02j9N6MovorikRvDeAYXN4QmNYsjB0D9Q5TxkyeM,3936
101
101
  pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
102
102
  pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
@@ -214,7 +214,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
214
214
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
215
215
  pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
216
216
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
217
- pluggy_sdk-1.0.0.post25.dist-info/METADATA,sha256=Jg72YYaEQueGvroHvRUsA3zhJ7JHY_J82Grteze6Q3k,22952
218
- pluggy_sdk-1.0.0.post25.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
219
- pluggy_sdk-1.0.0.post25.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
220
- pluggy_sdk-1.0.0.post25.dist-info/RECORD,,
217
+ pluggy_sdk-1.0.0.post26.dist-info/METADATA,sha256=a-KfRpAF_38fN3WqbBJ4sIrZFP2DP2QfIneVxjztmBU,22952
218
+ pluggy_sdk-1.0.0.post26.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
219
+ pluggy_sdk-1.0.0.post26.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
220
+ pluggy_sdk-1.0.0.post26.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.2.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5