pluggy-sdk 1.0.0.post48__py3-none-any.whl → 1.0.0.post50__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.post48"
18
+ __version__ = "1.0.0.post50"
19
19
 
20
20
  # Define package exports
21
21
  __all__ = [
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.post48/python'
94
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post50/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -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.post48".\
535
+ "SDK Package Version: 1.0.0.post50".\
536
536
  format(env=sys.platform, pyversion=sys.version)
537
537
 
538
538
  def get_host_settings(self) -> List[HostSetting]:
@@ -36,7 +36,8 @@ class AutomaticPixPayment(BaseModel):
36
36
  var_date: date = Field(description="Payment scheduled date", alias="date")
37
37
  end_to_end_id: Optional[StrictStr] = Field(default=None, description="Payment end to end identifier", alias="endToEndId")
38
38
  error_detail: Optional[SchedulePaymentErrorDetail] = Field(default=None, alias="errorDetail")
39
- __properties: ClassVar[List[str]] = ["id", "status", "amount", "description", "date", "endToEndId", "errorDetail"]
39
+ client_payment_id: Optional[StrictStr] = Field(default=None, description="External identifier for the payment", alias="clientPaymentId")
40
+ __properties: ClassVar[List[str]] = ["id", "status", "amount", "description", "date", "endToEndId", "errorDetail", "clientPaymentId"]
40
41
 
41
42
  @field_validator('status')
42
43
  def status_validate_enum(cls, value):
@@ -105,7 +106,8 @@ class AutomaticPixPayment(BaseModel):
105
106
  "description": obj.get("description"),
106
107
  "date": obj.get("date"),
107
108
  "endToEndId": obj.get("endToEndId"),
108
- "errorDetail": SchedulePaymentErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
109
+ "errorDetail": SchedulePaymentErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None,
110
+ "clientPaymentId": obj.get("clientPaymentId")
109
111
  })
110
112
  return _obj
111
113
 
@@ -19,21 +19,20 @@ 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, Optional
22
+ from typing import Any, ClassVar, Dict, List
23
23
  from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
27
  class CreatePaymentRecipient(BaseModel):
28
28
  """
29
- Request with information to create a payment recipient, there is two form to create a payment recipient, one with pixKey and other with taxNumber, name, paymentInstitutionId and account
29
+ Request with information to create a payment recipient.
30
30
  """ # noqa: E501
31
- pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient. When sending this fields, the rest of the fields are ignored and use DICT to create the payment recipient.", alias="pixKey")
32
- tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only when the pixKey is not sent.", alias="taxNumber")
33
- name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only this when the pixKey is not sent.")
34
- payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only when the pixKey is not sent.", alias="paymentInstitutionId")
35
- account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the pixKey is not sent.")
36
- __properties: ClassVar[List[str]] = ["pixKey", "taxNumber", "name", "paymentInstitutionId", "account"]
31
+ tax_number: StrictStr = Field(description="Account owner tax number. Can be CPF or CNPJ (only numbers)", alias="taxNumber")
32
+ name: StrictStr = Field(description="Account owner name.")
33
+ payment_institution_id: StrictStr = Field(description="Primary identifier of the institution associated to the payment recipient.", alias="paymentInstitutionId")
34
+ account: PaymentRecipientAccount = Field(description="Recipient's bank account destination.")
35
+ __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account"]
37
36
 
38
37
  model_config = ConfigDict(
39
38
  populate_by_name=True,
@@ -89,7 +88,6 @@ class CreatePaymentRecipient(BaseModel):
89
88
  return cls.model_validate(obj)
90
89
 
91
90
  _obj = cls.model_validate({
92
- "pixKey": obj.get("pixKey"),
93
91
  "taxNumber": obj.get("taxNumber"),
94
92
  "name": obj.get("name"),
95
93
  "paymentInstitutionId": obj.get("paymentInstitutionId"),
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
23
  from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule
24
24
  from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
@@ -36,7 +36,8 @@ class CreatePaymentRequest(BaseModel):
36
36
  customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
37
37
  client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
38
38
  schedule: Optional[CreatePaymentRequestSchedule] = None
39
- __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "schedule"]
39
+ is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be created in sandbox mode. Default: false.", alias="isSandbox")
40
+ __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "schedule", "isSandbox"]
40
41
 
41
42
  model_config = ConfigDict(
42
43
  populate_by_name=True,
@@ -106,7 +107,8 @@ class CreatePaymentRequest(BaseModel):
106
107
  "recipientId": obj.get("recipientId"),
107
108
  "customerId": obj.get("customerId"),
108
109
  "clientPaymentId": obj.get("clientPaymentId"),
109
- "schedule": CreatePaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None
110
+ "schedule": CreatePaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
111
+ "isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
110
112
  })
111
113
  return _obj
112
114
 
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
23
  from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
24
24
  from typing import Optional, Set
@@ -31,7 +31,8 @@ class CreatePixQrPaymentRequest(BaseModel):
31
31
  pix_qr_code: StrictStr = Field(description="Pix QR code", alias="pixQrCode")
32
32
  callback_urls: Optional[PaymentRequestCallbackUrls] = Field(default=None, alias="callbackUrls")
33
33
  customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
34
- __properties: ClassVar[List[str]] = ["pixQrCode", "callbackUrls", "customerId"]
34
+ is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be created in sandbox mode. Default: false.", alias="isSandbox")
35
+ __properties: ClassVar[List[str]] = ["pixQrCode", "callbackUrls", "customerId", "isSandbox"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -89,7 +90,8 @@ class CreatePixQrPaymentRequest(BaseModel):
89
90
  _obj = cls.model_validate({
90
91
  "pixQrCode": obj.get("pixQrCode"),
91
92
  "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
92
- "customerId": obj.get("customerId")
93
+ "customerId": obj.get("customerId"),
94
+ "isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
93
95
  })
94
96
  return _obj
95
97
 
@@ -19,7 +19,7 @@ import re # noqa: F401
19
19
  import json
20
20
 
21
21
  from datetime import datetime
22
- from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr, field_validator
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_intent_automatic_pix import PaymentIntentAutomaticPix
@@ -49,7 +49,8 @@ class PaymentRequest(BaseModel):
49
49
  automatic_pix: Optional[PaymentIntentAutomaticPix] = Field(default=None, alias="automaticPix")
50
50
  schedule: Optional[PaymentRequestSchedule] = None
51
51
  error_detail: Optional[PaymentRequestErrorDetail] = Field(default=None, alias="errorDetail")
52
- __properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "automaticPix", "schedule", "errorDetail"]
52
+ is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request is in sandbox mode. Default: false.", alias="isSandbox")
53
+ __properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "automaticPix", "schedule", "errorDetail", "isSandbox"]
53
54
 
54
55
  @field_validator('status')
55
56
  def status_validate_enum(cls, value):
@@ -139,7 +140,8 @@ class PaymentRequest(BaseModel):
139
140
  "boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None,
140
141
  "automaticPix": PaymentIntentAutomaticPix.from_dict(obj["automaticPix"]) if obj.get("automaticPix") is not None else None,
141
142
  "schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
142
- "errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
143
+ "errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None,
144
+ "isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
143
145
  })
144
146
  return _obj
145
147
 
@@ -31,7 +31,8 @@ class ScheduleAutomaticPixPaymentRequest(BaseModel):
31
31
  amount: Union[StrictFloat, StrictInt] = Field(description="Transaction value")
32
32
  description: Optional[StrictStr] = Field(default=None, description="Transaction description")
33
33
  var_date: date = Field(description="The payment date, which must fall between D+2 and D+10. Date format must be YYYY-MM-DD (for example: 2025-06-16)", alias="date")
34
- __properties: ClassVar[List[str]] = ["amount", "description", "date"]
34
+ client_payment_id: Optional[StrictStr] = Field(default=None, description="External identifier for the payment", alias="clientPaymentId")
35
+ __properties: ClassVar[List[str]] = ["amount", "description", "date", "clientPaymentId"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -86,7 +87,8 @@ class ScheduleAutomaticPixPaymentRequest(BaseModel):
86
87
  _obj = cls.model_validate({
87
88
  "amount": obj.get("amount"),
88
89
  "description": obj.get("description"),
89
- "date": obj.get("date")
90
+ "date": obj.get("date"),
91
+ "clientPaymentId": obj.get("clientPaymentId")
90
92
  })
91
93
  return _obj
92
94
 
@@ -28,12 +28,11 @@ class UpdatePaymentRecipient(BaseModel):
28
28
  """
29
29
  Request with information to update a payment recipient
30
30
  """ # noqa: E501
31
- pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient.", alias="pixKey")
32
- tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only if the recipient doesn't have a pixKey.", alias="taxNumber")
33
- name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only if the recipient doesn't have a pixKey.")
34
- payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only if the recipient doesn't have a pixKey.", alias="paymentInstitutionId")
35
- account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the recipient doesn't have a pixKey.")
36
- __properties: ClassVar[List[str]] = ["pixKey", "taxNumber", "name", "paymentInstitutionId", "account"]
31
+ tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers)", alias="taxNumber")
32
+ name: Optional[StrictStr] = Field(default=None, description="Account owner name.")
33
+ payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient.", alias="paymentInstitutionId")
34
+ account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination.")
35
+ __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account"]
37
36
 
38
37
  model_config = ConfigDict(
39
38
  populate_by_name=True,
@@ -89,7 +88,6 @@ class UpdatePaymentRecipient(BaseModel):
89
88
  return cls.model_validate(obj)
90
89
 
91
90
  _obj = cls.model_validate({
92
- "pixKey": obj.get("pixKey"),
93
91
  "taxNumber": obj.get("taxNumber"),
94
92
  "name": obj.get("name"),
95
93
  "paymentInstitutionId": obj.get("paymentInstitutionId"),
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
23
  from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
24
24
  from typing import Optional, Set
@@ -34,7 +34,8 @@ class UpdatePaymentRequest(BaseModel):
34
34
  recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
35
35
  customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
36
36
  client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
37
- __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId"]
37
+ is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be updated as sandbox. Default: false.", alias="isSandbox")
38
+ __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "isSandbox"]
38
39
 
39
40
  model_config = ConfigDict(
40
41
  populate_by_name=True,
@@ -95,7 +96,8 @@ class UpdatePaymentRequest(BaseModel):
95
96
  "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
96
97
  "recipientId": obj.get("recipientId"),
97
98
  "customerId": obj.get("customerId"),
98
- "clientPaymentId": obj.get("clientPaymentId")
99
+ "clientPaymentId": obj.get("clientPaymentId"),
100
+ "isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
99
101
  })
100
102
  return _obj
101
103
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pluggy_sdk
3
- Version: 1.0.0.post48
3
+ Version: 1.0.0.post50
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
@@ -23,7 +23,7 @@ Pluggy's main API to review data and execute connectors
23
23
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
24
24
 
25
25
  - API version: 1.0.0
26
- - Package version: 1.0.0.post48
26
+ - Package version: 1.0.0.post50
27
27
  - Generator version: 7.14.0
28
28
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
29
29
  For more information, please visit [https://pluggy.ai](https://pluggy.ai)
@@ -1,7 +1,7 @@
1
- pluggy_sdk/__init__.py,sha256=CJO3EjvwuuA2_oDaIjvNkzX9VYQFmaQIp5vH8KrE7bk,22277
2
- pluggy_sdk/api_client.py,sha256=uBPc1YJBy7yBIeU3mwK3lGdOWa4Dcq-wTYsSXzOxjnk,27672
1
+ pluggy_sdk/__init__.py,sha256=y_EzpqfGwls7ubr2IzPkSfetTg0JgKpKr0J-hLjImVk,22277
2
+ pluggy_sdk/api_client.py,sha256=FxL0IMxAm4_5ARrNta9bz_cwGUq5f20cmAezHBRWGBo,27672
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=p1RItV1_z9_kMQf2KxFT2cNIV0rPi2rY-WgjiPIjx14,18823
4
+ pluggy_sdk/configuration.py,sha256=6oNVEOC3Gtlh1uGKNrkkWqSCuXv0CNDycbr33LhU2Lw,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
@@ -60,7 +60,7 @@ pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-m
60
60
  pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
61
61
  pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
62
62
  pluggy_sdk/models/automatic_pix_first_payment.py,sha256=MfMoBRP0EsrOL_x9Z_AYKPZmYYOl8MCG5Bt-z-ciJYU,3288
63
- pluggy_sdk/models/automatic_pix_payment.py,sha256=gFcQbi7-L-Qp2Uj0gxzTiSKHd3zPUJ6EaqqQBOKPRzM,4175
63
+ pluggy_sdk/models/automatic_pix_payment.py,sha256=Fy676SA0_sEDzEHh19ASMCXhM0eUNDQxTzm5U2fbau8,4394
64
64
  pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
65
65
  pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
66
66
  pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
@@ -104,10 +104,10 @@ pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrK
104
104
  pluggy_sdk/models/create_or_update_payment_customer.py,sha256=jM5YueP_je65I8koHuKY7c6ssz0KQgTaiRrS3XMDz7o,3479
105
105
  pluggy_sdk/models/create_payment_customer_request_body.py,sha256=xwJ5ZA645R7Dm14BCpnLVxNH77pRGEOpKZ4pETlPFBg,3389
106
106
  pluggy_sdk/models/create_payment_intent.py,sha256=3sqYR4sW5aODMZEeYjjOeEegT7MIUsj4nTYnTqdpzgg,4360
107
- pluggy_sdk/models/create_payment_recipient.py,sha256=nXY9EpAyE9hAq0cbmotdRGQtkgR-HVsdoTtMtC5BCXg,4174
108
- pluggy_sdk/models/create_payment_request.py,sha256=ACMxL0Y77vJU8dMosDD6ww3EiZ5BSJKJH9n4cuQcyBc,4585
107
+ pluggy_sdk/models/create_payment_recipient.py,sha256=drs2LJxLTAf9GsqCYug6_nEPsyQM-Eg1m4DFKIy7t_o,3487
108
+ pluggy_sdk/models/create_payment_request.py,sha256=1quzeNg0kgf3MNbAvJ8sXZbGn_lQ728bCkCaQO9gDTA,4883
109
109
  pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
110
- pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
110
+ pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=HlCLe5IVXHzzkhAYfar3UcSwQ7DcQrwNUUx1TV_esq0,3652
111
111
  pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQaGgeHhSNuIozC_OTcF7g,4030
112
112
  pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
113
113
  pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
@@ -192,7 +192,7 @@ pluggy_sdk/models/payment_recipient.py,sha256=PKpjebsFXZBMQphfF0bragOYzn4ym2V504
192
192
  pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
193
193
  pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
194
194
  pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
195
- pluggy_sdk/models/payment_request.py,sha256=KDq3-lshodGizZaPxijXWjcliu-3KuvTJ9pPNOcvVGc,7490
195
+ pluggy_sdk/models/payment_request.py,sha256=QK5OyiUnevkjKTgobqtFz0QS7JxaI9XrPF0C5Qgr3k0,7773
196
196
  pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
197
197
  pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
198
198
  pluggy_sdk/models/payment_request_get_automatic_pix_schedules200_response.py,sha256=gJiw37o8rVZkivwqFC3F_zy6iKrhfeJcoLulSptdxZQ,3599
@@ -209,7 +209,7 @@ pluggy_sdk/models/percentage_over_index.py,sha256=UMM-sXy36J5X_kfVCCy3glXjEGUXJz
209
209
  pluggy_sdk/models/phone_number.py,sha256=KtNMYqBE9K7Of-gVId3wV9gN9vf1XGbDnv3R_s-QGco,3087
210
210
  pluggy_sdk/models/pix_data.py,sha256=zygIaWicGwI93-q181yHzPVxKBZ7wpuhN70b_KvPm0c,2602
211
211
  pluggy_sdk/models/retry_automatic_pix_payment_request.py,sha256=996dVxR8OGZQrekRCP_EviUPxY87zDtDtba0NrrPOWM,2699
212
- pluggy_sdk/models/schedule_automatic_pix_payment_request.py,sha256=zXcCWHrtagzvcsIhGOFRtRZzNEOC6bYE5ryKBMRewKc,3064
212
+ pluggy_sdk/models/schedule_automatic_pix_payment_request.py,sha256=Vlv2TEy55KGJpKyz63BbLc06DfWHG2P-Xj34cu1vRUc,3283
213
213
  pluggy_sdk/models/schedule_payment.py,sha256=jeZhxuQtaZpy3azrv3WDZszkKfur_m_djAvOK8YOKDY,4040
214
214
  pluggy_sdk/models/schedule_payment_error_detail.py,sha256=9bqhCPmKOkIKXE6nnjN72PQ28QE9-jJtQZKB8fET-AA,2975
215
215
  pluggy_sdk/models/schedule_type_custom.py,sha256=OIPS53NFeFbQ3rFR030CEdP1E0XY2bJUP4iHc8Iv-q4,3174
@@ -234,14 +234,14 @@ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGv
234
234
  pluggy_sdk/models/transaction.py,sha256=cEBiOxkkW3t1KRSwgOCwyhjNnOKW_Wv3KTaAAGMjU_Y,6914
235
235
  pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
236
236
  pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
237
- pluggy_sdk/models/update_payment_recipient.py,sha256=4rV6-GUfqZVlVPutMxZ4htOsfelN_cbMuVyTvYFNxAY,3977
238
- pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
237
+ pluggy_sdk/models/update_payment_recipient.py,sha256=eTJjDlN0dkjf2VaB3IC6ZZIJ9ZMlmx1pKA1ih35vRLs,3592
238
+ pluggy_sdk/models/update_payment_request.py,sha256=X96TN-SyqigwgckrTseqPPaJpUzbxMQpM1QpDw5gZ1o,4229
239
239
  pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
240
240
  pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
241
241
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
242
242
  pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
243
243
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
244
- pluggy_sdk-1.0.0.post48.dist-info/METADATA,sha256=EZ3YF1fT_5sM6ScDxgGEGIGCqkQgwiGxLYi9f9739kU,23515
245
- pluggy_sdk-1.0.0.post48.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
246
- pluggy_sdk-1.0.0.post48.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
247
- pluggy_sdk-1.0.0.post48.dist-info/RECORD,,
244
+ pluggy_sdk-1.0.0.post50.dist-info/METADATA,sha256=ypQ7wifE8X-IeudLxY0nA62WJPfzjBGVBtU3oDEFEKQ,23515
245
+ pluggy_sdk-1.0.0.post50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
246
+ pluggy_sdk-1.0.0.post50.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
247
+ pluggy_sdk-1.0.0.post50.dist-info/RECORD,,