pluggy-sdk 1.0.0.post44__py3-none-any.whl → 1.0.0.post49__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.
Files changed (28) hide show
  1. pluggy_sdk/__init__.py +21 -1
  2. pluggy_sdk/api/__init__.py +1 -0
  3. pluggy_sdk/api/automatic_pix_api.py +1965 -0
  4. pluggy_sdk/api/payment_customer_api.py +68 -0
  5. pluggy_sdk/api/payment_recipient_api.py +52 -1
  6. pluggy_sdk/api/payment_request_api.py +123 -1
  7. pluggy_sdk/api_client.py +1 -1
  8. pluggy_sdk/configuration.py +1 -1
  9. pluggy_sdk/models/__init__.py +9 -0
  10. pluggy_sdk/models/additional_card.py +88 -0
  11. pluggy_sdk/models/automatic_pix_first_payment.py +93 -0
  12. pluggy_sdk/models/automatic_pix_payment.py +114 -0
  13. pluggy_sdk/models/create_automatic_pix_payment_request.py +128 -0
  14. pluggy_sdk/models/create_payment_recipient.py +4 -4
  15. pluggy_sdk/models/credit_data.py +22 -2
  16. pluggy_sdk/models/disaggregated_credit_limit.py +110 -0
  17. pluggy_sdk/models/payment_intent.py +2 -2
  18. pluggy_sdk/models/payment_intent_automatic_pix.py +114 -0
  19. pluggy_sdk/models/payment_intent_parameter.py +4 -2
  20. pluggy_sdk/models/payment_request.py +10 -4
  21. pluggy_sdk/models/payment_request_get_automatic_pix_schedules200_response.py +102 -0
  22. pluggy_sdk/models/retry_automatic_pix_payment_request.py +89 -0
  23. pluggy_sdk/models/schedule_automatic_pix_payment_request.py +95 -0
  24. pluggy_sdk/models/update_payment_recipient.py +4 -4
  25. {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/METADATA +24 -13
  26. {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/RECORD +28 -18
  27. {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/WHEEL +1 -1
  28. {pluggy_sdk-1.0.0.post44.dist-info → pluggy_sdk-1.0.0.post49.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,8 @@ class PaymentIntentParameter(BaseModel):
29
29
  """ # noqa: E501
30
30
  cpf: StrictStr = Field(description="CPF of the payer")
31
31
  cnpj: Optional[StrictStr] = Field(default=None, description="CNPJ of the payer")
32
- __properties: ClassVar[List[str]] = ["cpf", "cnpj"]
32
+ name: Optional[StrictStr] = Field(default=None, description="Name of the payer. Only required for automatic pix payment requests.")
33
+ __properties: ClassVar[List[str]] = ["cpf", "cnpj", "name"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -83,7 +84,8 @@ class PaymentIntentParameter(BaseModel):
83
84
 
84
85
  _obj = cls.model_validate({
85
86
  "cpf": obj.get("cpf"),
86
- "cnpj": obj.get("cnpj")
87
+ "cnpj": obj.get("cnpj"),
88
+ "name": obj.get("name")
87
89
  })
88
90
  return _obj
89
91
 
@@ -22,6 +22,7 @@ from datetime import datetime
22
22
  from pydantic import BaseModel, ConfigDict, Field, 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
+ from pluggy_sdk.models.payment_intent_automatic_pix import PaymentIntentAutomaticPix
25
26
  from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
26
27
  from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
27
28
  from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
@@ -33,7 +34,7 @@ class PaymentRequest(BaseModel):
33
34
  Response with information related to a payment request
34
35
  """ # noqa: E501
35
36
  id: StrictStr = Field(description="Primary identifier")
36
- amount: Union[StrictFloat, StrictInt] = Field(description="Requested amount")
37
+ amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Requested amount. For automatic pix it won't be returned")
37
38
  fees: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Fees charged for the payment request. This includes both Pluggy's fees and any customer-specific fees. Fees are calculated based on the payment method (PIX or Boleto) and the client's pricing configuration. For sandbox accounts, fees are set to 0.")
38
39
  description: Optional[StrictStr] = Field(default=None, description="Payment description")
39
40
  status: StrictStr = Field(description="Payment request status")
@@ -45,15 +46,16 @@ class PaymentRequest(BaseModel):
45
46
  payment_url: StrictStr = Field(description="URL to begin the payment intent creation flow for this payment request", alias="paymentUrl")
46
47
  pix_qr_code: Optional[StrictStr] = Field(default=None, description="Pix QR code generated by the payment receiver", alias="pixQrCode")
47
48
  boleto: Optional[Boleto] = None
49
+ automatic_pix: Optional[PaymentIntentAutomaticPix] = Field(default=None, alias="automaticPix")
48
50
  schedule: Optional[PaymentRequestSchedule] = None
49
51
  error_detail: Optional[PaymentRequestErrorDetail] = Field(default=None, alias="errorDetail")
50
- __properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "schedule", "errorDetail"]
52
+ __properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "automaticPix", "schedule", "errorDetail"]
51
53
 
52
54
  @field_validator('status')
53
55
  def status_validate_enum(cls, value):
54
56
  """Validates the enum"""
55
- if value not in set(['CREATED', 'IN_PROGRESS', 'COMPLETED', 'SCHEDULED', 'WAITING_PAYER_AUTHORIZATION', 'ERROR', 'REFUND_IN_PROGRESS', 'REFUNDED', 'REFUND_ERROR']):
56
- raise ValueError("must be one of enum values ('CREATED', 'IN_PROGRESS', 'COMPLETED', 'SCHEDULED', 'WAITING_PAYER_AUTHORIZATION', 'ERROR', 'REFUND_IN_PROGRESS', 'REFUNDED', 'REFUND_ERROR')")
57
+ if value not in set(['CREATED', 'IN_PROGRESS', 'COMPLETED', 'SCHEDULED', 'WAITING_PAYER_AUTHORIZATION', 'ERROR', 'REFUND_IN_PROGRESS', 'REFUNDED', 'REFUND_ERROR', 'CANCELED']):
58
+ raise ValueError("must be one of enum values ('CREATED', 'IN_PROGRESS', 'COMPLETED', 'SCHEDULED', 'WAITING_PAYER_AUTHORIZATION', 'ERROR', 'REFUND_IN_PROGRESS', 'REFUNDED', 'REFUND_ERROR', 'CANCELED')")
57
59
  return value
58
60
 
59
61
  model_config = ConfigDict(
@@ -101,6 +103,9 @@ class PaymentRequest(BaseModel):
101
103
  # override the default output from pydantic by calling `to_dict()` of boleto
102
104
  if self.boleto:
103
105
  _dict['boleto'] = self.boleto.to_dict()
106
+ # override the default output from pydantic by calling `to_dict()` of automatic_pix
107
+ if self.automatic_pix:
108
+ _dict['automaticPix'] = self.automatic_pix.to_dict()
104
109
  # override the default output from pydantic by calling `to_dict()` of schedule
105
110
  if self.schedule:
106
111
  _dict['schedule'] = self.schedule.to_dict()
@@ -132,6 +137,7 @@ class PaymentRequest(BaseModel):
132
137
  "paymentUrl": obj.get("paymentUrl"),
133
138
  "pixQrCode": obj.get("pixQrCode"),
134
139
  "boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None,
140
+ "automaticPix": PaymentIntentAutomaticPix.from_dict(obj["automaticPix"]) if obj.get("automaticPix") is not None else None,
135
141
  "schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
136
142
  "errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
137
143
  })
@@ -0,0 +1,102 @@
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, StrictFloat, StrictInt
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from pluggy_sdk.models.automatic_pix_payment import AutomaticPixPayment
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class PaymentRequestGetAutomaticPixSchedules200Response(BaseModel):
28
+ """
29
+ PaymentRequestGetAutomaticPixSchedules200Response
30
+ """ # noqa: E501
31
+ page: Optional[Union[StrictFloat, StrictInt]] = None
32
+ total: Optional[Union[StrictFloat, StrictInt]] = None
33
+ total_pages: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="totalPages")
34
+ results: Optional[List[AutomaticPixPayment]] = Field(default=None, description="List of automatic PIX payments")
35
+ __properties: ClassVar[List[str]] = ["page", "total", "totalPages", "results"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of PaymentRequestGetAutomaticPixSchedules200Response from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # override the default output from pydantic by calling `to_dict()` of each item in results (list)
77
+ _items = []
78
+ if self.results:
79
+ for _item_results in self.results:
80
+ if _item_results:
81
+ _items.append(_item_results.to_dict())
82
+ _dict['results'] = _items
83
+ return _dict
84
+
85
+ @classmethod
86
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
87
+ """Create an instance of PaymentRequestGetAutomaticPixSchedules200Response from a dict"""
88
+ if obj is None:
89
+ return None
90
+
91
+ if not isinstance(obj, dict):
92
+ return cls.model_validate(obj)
93
+
94
+ _obj = cls.model_validate({
95
+ "page": obj.get("page"),
96
+ "total": obj.get("total"),
97
+ "totalPages": obj.get("totalPages"),
98
+ "results": [AutomaticPixPayment.from_dict(_item) for _item in obj["results"]] if obj.get("results") is not None else None
99
+ })
100
+ return _obj
101
+
102
+
@@ -0,0 +1,89 @@
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 date
22
+ from pydantic import BaseModel, ConfigDict, Field
23
+ from typing import Any, ClassVar, Dict, List
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class RetryAutomaticPixPaymentRequest(BaseModel):
28
+ """
29
+ Request to retry an automatic PIX payment
30
+ """ # noqa: E501
31
+ var_date: date = Field(description="The date to retry the payment within a 7-day window. Date format must be YYYY-MM-DD (for example: 2025-06-16)", alias="date")
32
+ __properties: ClassVar[List[str]] = ["date"]
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 RetryAutomaticPixPaymentRequest 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 RetryAutomaticPixPaymentRequest 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
+ "date": obj.get("date")
86
+ })
87
+ return _obj
88
+
89
+
@@ -0,0 +1,95 @@
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 date
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
23
+ from typing import Any, ClassVar, Dict, List, Optional, Union
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class ScheduleAutomaticPixPaymentRequest(BaseModel):
28
+ """
29
+ Request to schedule an Automatic PIX payment
30
+ """ # noqa: E501
31
+ amount: Union[StrictFloat, StrictInt] = Field(description="Transaction value")
32
+ description: Optional[StrictStr] = Field(default=None, description="Transaction description")
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
+ 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"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of ScheduleAutomaticPixPaymentRequest from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ return _dict
77
+
78
+ @classmethod
79
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
80
+ """Create an instance of ScheduleAutomaticPixPaymentRequest from a dict"""
81
+ if obj is None:
82
+ return None
83
+
84
+ if not isinstance(obj, dict):
85
+ return cls.model_validate(obj)
86
+
87
+ _obj = cls.model_validate({
88
+ "amount": obj.get("amount"),
89
+ "description": obj.get("description"),
90
+ "date": obj.get("date"),
91
+ "clientPaymentId": obj.get("clientPaymentId")
92
+ })
93
+ return _obj
94
+
95
+
@@ -28,12 +28,12 @@ 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")
31
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")
32
33
  name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only if the recipient doesn't have a pixKey.")
33
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")
34
35
  account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the recipient doesn't have a pixKey.")
35
- pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
36
- __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "pixKey"]
36
+ __properties: ClassVar[List[str]] = ["pixKey", "taxNumber", "name", "paymentInstitutionId", "account"]
37
37
 
38
38
  model_config = ConfigDict(
39
39
  populate_by_name=True,
@@ -89,11 +89,11 @@ class UpdatePaymentRecipient(BaseModel):
89
89
  return cls.model_validate(obj)
90
90
 
91
91
  _obj = cls.model_validate({
92
+ "pixKey": obj.get("pixKey"),
92
93
  "taxNumber": obj.get("taxNumber"),
93
94
  "name": obj.get("name"),
94
95
  "paymentInstitutionId": obj.get("paymentInstitutionId"),
95
- "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
96
- "pixKey": obj.get("pixKey")
96
+ "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None
97
97
  })
98
98
  return _obj
99
99
 
@@ -1,26 +1,21 @@
1
1
  Metadata-Version: 2.4
2
- Name: pluggy-sdk
3
- Version: 1.0.0.post44
2
+ Name: pluggy_sdk
3
+ Version: 1.0.0.post49
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
7
- Author-email: hello@pluggy.ai
8
- License: MIT
7
+ Author-email: Pluggy <hello@pluggy.ai>
8
+ License-Expression: MIT
9
+ Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
9
10
  Keywords: OpenAPI,OpenAPI-Generator,Pluggy API
11
+ Requires-Python: >=3.9
10
12
  Description-Content-Type: text/markdown
11
13
  Requires-Dist: urllib3<3.0.0,>=2.1.0
12
14
  Requires-Dist: python-dateutil>=2.8.2
13
15
  Requires-Dist: pydantic>=2
14
16
  Requires-Dist: typing-extensions>=4.7.1
15
17
  Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: description
18
- Dynamic: description-content-type
19
18
  Dynamic: home-page
20
- Dynamic: keywords
21
- Dynamic: license
22
- Dynamic: requires-dist
23
- Dynamic: summary
24
19
 
25
20
  # pluggy-sdk
26
21
  Pluggy's main API to review data and execute connectors
@@ -28,8 +23,8 @@ Pluggy's main API to review data and execute connectors
28
23
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
29
24
 
30
25
  - API version: 1.0.0
31
- - Package version: 1.0.0.post44
32
- - Generator version: 7.14.0-SNAPSHOT
26
+ - Package version: 1.0.0.post49
27
+ - Generator version: 7.14.0
33
28
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
34
29
  For more information, please visit [https://pluggy.ai](https://pluggy.ai)
35
30
 
@@ -125,6 +120,13 @@ Class | Method | HTTP request | Description
125
120
  *AccountApi* | [**accounts_retrieve**](docs/AccountApi.md#accounts_retrieve) | **GET** /accounts/{id} | Retrieve
126
121
  *AuthApi* | [**auth_create**](docs/AuthApi.md#auth_create) | **POST** /auth | Create API Key
127
122
  *AuthApi* | [**connect_token_create**](docs/AuthApi.md#connect_token_create) | **POST** /connect_token | Create Connect Token
123
+ *AutomaticPIXApi* | [**cancel_automatic_pix_schedule**](docs/AutomaticPIXApi.md#cancel_automatic_pix_schedule) | **POST** /payments/requests/{id}/automatic-pix/schedules/{scheduleId}/cancel | Cancel an Automatic PIX schedule
124
+ *AutomaticPIXApi* | [**payment_request_cancel_automatic_pix_consent**](docs/AutomaticPIXApi.md#payment_request_cancel_automatic_pix_consent) | **POST** /payments/requests/{id}/automatic-pix/cancel | Cancel an automatic PIX consent
125
+ *AutomaticPIXApi* | [**payment_request_create_automatic_pix**](docs/AutomaticPIXApi.md#payment_request_create_automatic_pix) | **POST** /payments/requests/automatic-pix | Create Automatic PIX payment request
126
+ *AutomaticPIXApi* | [**payment_request_create_automatic_pix_schedule**](docs/AutomaticPIXApi.md#payment_request_create_automatic_pix_schedule) | **POST** /payments/requests/{id}/automatic-pix/schedule | Schedule Automatic PIX payment
127
+ *AutomaticPIXApi* | [**payment_request_get_automatic_pix_schedule**](docs/AutomaticPIXApi.md#payment_request_get_automatic_pix_schedule) | **GET** /payments/requests/{requestId}/automatic-pix/schedules/{paymentId} | Get an automatic PIX scheduled payment
128
+ *AutomaticPIXApi* | [**payment_request_get_automatic_pix_schedules**](docs/AutomaticPIXApi.md#payment_request_get_automatic_pix_schedules) | **GET** /payments/requests/{id}/automatic-pix/schedules | List Automatic PIX scheduled payments
129
+ *AutomaticPIXApi* | [**retry_automatic_pix_schedule**](docs/AutomaticPIXApi.md#retry_automatic_pix_schedule) | **POST** /payments/requests/{id}/automatic-pix/schedules/{scheduleId}/retry | Retry an Automatic PIX schedule
128
130
  *BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
129
131
  *BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
130
132
  *BoletoManagementApi* | [**boleto_cancel**](docs/BoletoManagementApi.md#boleto_cancel) | **POST** /boletos/{id}/cancel | Cancel Boleto
@@ -197,9 +199,12 @@ Class | Method | HTTP request | Description
197
199
 
198
200
  - [Account](docs/Account.md)
199
201
  - [AccountsList200Response](docs/AccountsList200Response.md)
202
+ - [AdditionalCard](docs/AdditionalCard.md)
200
203
  - [Address](docs/Address.md)
201
204
  - [AuthRequest](docs/AuthRequest.md)
202
205
  - [AuthResponse](docs/AuthResponse.md)
206
+ - [AutomaticPixFirstPayment](docs/AutomaticPixFirstPayment.md)
207
+ - [AutomaticPixPayment](docs/AutomaticPixPayment.md)
203
208
  - [BankData](docs/BankData.md)
204
209
  - [Bill](docs/Bill.md)
205
210
  - [BillFinanceCharge](docs/BillFinanceCharge.md)
@@ -221,6 +226,7 @@ Class | Method | HTTP request | Description
221
226
  - [ConnectorListResponse](docs/ConnectorListResponse.md)
222
227
  - [ConnectorUserAction](docs/ConnectorUserAction.md)
223
228
  - [Consent](docs/Consent.md)
229
+ - [CreateAutomaticPixPaymentRequest](docs/CreateAutomaticPixPaymentRequest.md)
224
230
  - [CreateBoleto](docs/CreateBoleto.md)
225
231
  - [CreateBoletoBoleto](docs/CreateBoletoBoleto.md)
226
232
  - [CreateBoletoBoletoFine](docs/CreateBoletoBoletoFine.md)
@@ -245,6 +251,7 @@ Class | Method | HTTP request | Description
245
251
  - [CreditCardMetadata](docs/CreditCardMetadata.md)
246
252
  - [CreditData](docs/CreditData.md)
247
253
  - [DAILY](docs/DAILY.md)
254
+ - [DisaggregatedCreditLimit](docs/DisaggregatedCreditLimit.md)
248
255
  - [Document](docs/Document.md)
249
256
  - [Email](docs/Email.md)
250
257
  - [GlobalErrorResponse](docs/GlobalErrorResponse.md)
@@ -300,6 +307,7 @@ Class | Method | HTTP request | Description
300
307
  - [PaymentDataParticipant](docs/PaymentDataParticipant.md)
301
308
  - [PaymentInstitution](docs/PaymentInstitution.md)
302
309
  - [PaymentIntent](docs/PaymentIntent.md)
310
+ - [PaymentIntentAutomaticPix](docs/PaymentIntentAutomaticPix.md)
303
311
  - [PaymentIntentErrorDetail](docs/PaymentIntentErrorDetail.md)
304
312
  - [PaymentIntentParameter](docs/PaymentIntentParameter.md)
305
313
  - [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
@@ -310,12 +318,15 @@ Class | Method | HTTP request | Description
310
318
  - [PaymentRequest](docs/PaymentRequest.md)
311
319
  - [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
312
320
  - [PaymentRequestErrorDetail](docs/PaymentRequestErrorDetail.md)
321
+ - [PaymentRequestGetAutomaticPixSchedules200Response](docs/PaymentRequestGetAutomaticPixSchedules200Response.md)
313
322
  - [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
314
323
  - [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
315
324
  - [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)
316
325
  - [PhoneNumber](docs/PhoneNumber.md)
317
326
  - [PixData](docs/PixData.md)
327
+ - [RetryAutomaticPixPaymentRequest](docs/RetryAutomaticPixPaymentRequest.md)
318
328
  - [SINGLE](docs/SINGLE.md)
329
+ - [ScheduleAutomaticPixPaymentRequest](docs/ScheduleAutomaticPixPaymentRequest.md)
319
330
  - [SchedulePayment](docs/SchedulePayment.md)
320
331
  - [SchedulePaymentErrorDetail](docs/SchedulePaymentErrorDetail.md)
321
332
  - [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
@@ -1,16 +1,17 @@
1
- pluggy_sdk/__init__.py,sha256=KIMUpD2-CV4z_OaB4Cm2Pa0Qxmxx_dEx9MpkAO1bSk8,20741
2
- pluggy_sdk/api_client.py,sha256=xhHw71QPRSgx7LQyMbC6AKUWgLF_Bwacsz9AYo6fk2M,27672
1
+ pluggy_sdk/__init__.py,sha256=ha5CktfvcYYfCdgfE-J3LCwwhrq2SDY528w92rUA0NQ,22277
2
+ pluggy_sdk/api_client.py,sha256=jOnI0-GFCBYV47YAI0lpaIMIBgVo_jS27qgx0rSsl_I,27672
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=GQMDdbX-v3AL7uffoUgod0vrpmeRSHr03mo6gtCwvrU,18823
4
+ pluggy_sdk/configuration.py,sha256=dn5moFDorOOxeaU0amx_ZEfEBosnXWLPAP8ckP1aMQ0,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
8
- pluggy_sdk/api/__init__.py,sha256=iBE38lzf4luNVrfA7NRRaKaoqo2t3OFiX7CpIkZUJuo,1111
8
+ pluggy_sdk/api/__init__.py,sha256=hAbUzC6f14A_d_iRRwb716KVOu9m_0xwz_KIjORM7hM,1172
9
9
  pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
10
10
  pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
11
11
  pluggy_sdk/api/acquirer_receivable_api.py,sha256=BzTj0wfP11JDpLpaeREfNo-g7bs7PnRaK6Ab4gqR5a4,26388
12
12
  pluggy_sdk/api/acquirer_sale_api.py,sha256=YZYt2Hy3vA-dIKFouejtQY8BTws3lNrY3NHdXMbBQJU,26137
13
13
  pluggy_sdk/api/auth_api.py,sha256=TXqmhFum1h1bqt9BMANyvcwLLaS0M1Y0mIELutv9spo,23150
14
+ pluggy_sdk/api/automatic_pix_api.py,sha256=sgt_R2dCA--wz9ycUaAU-ZI6VxEQWK8gDQMAZzaT8LA,80362
14
15
  pluggy_sdk/api/benefit_api.py,sha256=WSa3Hp-6Dc1fA0dHUnYP5gu-iXgDD-0NC5yuxBuIouo,21329
15
16
  pluggy_sdk/api/bill_api.py,sha256=_qkNNQIlImQEGpzHko9wxyIrGlNKfc7Aq1MOdGCy5Ac,21228
16
17
  pluggy_sdk/api/boleto_management_api.py,sha256=MRgO-66KatFI8A7pTVVkAds8sDJqNowg2Tb5mLnS3sI,52583
@@ -23,11 +24,11 @@ pluggy_sdk/api/income_report_api.py,sha256=HfcWM14chZfmmc8pNcmb68QIomjWFZAMahCAm
23
24
  pluggy_sdk/api/investment_api.py,sha256=x_V67FOqUY1h11kl3tB0Ne77qD_o_EgLQB5PKxT0Ock,36391
24
25
  pluggy_sdk/api/items_api.py,sha256=C07LVqlD5ky7aGDgFClbVRTQZQ6PAqGk4t142mgpLeA,65687
25
26
  pluggy_sdk/api/loan_api.py,sha256=0F4282MRf2XZ6KkRq9zZ9Bjfp4_gr628_Zjc3vnCnNU,21108
26
- pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9BpctRvDW1w8,55454
27
+ pluggy_sdk/api/payment_customer_api.py,sha256=FcKRwch2eHAG1O55NtC9Ud5o3STdLfG-BPIZFNODI2w,58434
27
28
  pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
28
29
  pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
29
- pluggy_sdk/api/payment_recipient_api.py,sha256=WbprFZ_w1CXt9QAJPGWlbpPm5zhqFpD88mD_B9QR3ug,77923
30
- pluggy_sdk/api/payment_request_api.py,sha256=yAfXrUPtUZR2ktqDSPwIlm_FkUE7PW_Ab5nDAtj5xaM,63808
30
+ pluggy_sdk/api/payment_recipient_api.py,sha256=apBgAw0w_WkiyQaJ93O1DXznM0ukoeTaYxt3VuEWkG4,80633
31
+ pluggy_sdk/api/payment_request_api.py,sha256=wyH0rPmPMBxWlLcUlgRl935HuN_2xqTZEKOsSe-GHts,70563
31
32
  pluggy_sdk/api/payment_schedule_api.py,sha256=d9uRuUcdhoOHBKIUoNwNbFfI8413D2F_Qk4bva5GumY,31563
32
33
  pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
33
34
  pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
@@ -36,7 +37,7 @@ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5T
36
37
  pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
37
38
  pluggy_sdk/api/transaction_api.py,sha256=hJdOkkOB0PEl1eSceLppyaX7Ot1SSSSz7CPWl4JbxRU,41854
38
39
  pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
39
- pluggy_sdk/models/__init__.py,sha256=hIRg1ILVlSdtixtyOkhgvjlcrihx1IJgrft3E5Jji2E,10753
40
+ pluggy_sdk/models/__init__.py,sha256=7c8jDHc6Hcwy-KqSSCoZtUmSB2G46FLMyr1Yz-H7vvs,11574
40
41
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
41
42
  pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
42
43
  pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
@@ -51,12 +52,15 @@ pluggy_sdk/models/acquirer_sale.py,sha256=gSv_RVQoXfmzumaZutAi60fZD1o0pXoJw9g1MH
51
52
  pluggy_sdk/models/acquirer_sale_data.py,sha256=AnKlF37NVg9Wa7x6HHXS6QpP8hYtnN8btNkskL3nBLk,6313
52
53
  pluggy_sdk/models/acquirer_sale_installment.py,sha256=jMYYgd2yxUR6wqMdvGKQEZWjEQ1hAPVlY635OD3XLHQ,3083
53
54
  pluggy_sdk/models/acquirer_sale_installment_data.py,sha256=4qn7D-pZxq0m08Cs9Nl7PbMhSUjSki9qqv8X5Q4Cmkc,3209
55
+ pluggy_sdk/models/additional_card.py,sha256=lRnCjOtGVWWIB1wmSkcByPx2osJOZcC8Cau6yZ4JZ18,2541
54
56
  pluggy_sdk/models/address.py,sha256=CkRbeQlr-XFGX2g16xzn58dw7n2L-yy97sURcJWeEEw,3935
55
57
  pluggy_sdk/models/aggregated_portfolio.py,sha256=LGYla8DycMpb9oP7TLzM8aVB968nQkphRRiBKZs1ZbI,5014
56
58
  pluggy_sdk/models/aggregated_portfolio_response.py,sha256=Rrkl6ZvS6kpQYHYVy9yn-JfBa_ZuGarVeNMEvxeIC00,3614
57
59
  pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-mcxFh5h9jdw,2800
58
60
  pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
59
61
  pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
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=Fy676SA0_sEDzEHh19ASMCXhM0eUNDQxTzm5U2fbau8,4394
60
64
  pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
61
65
  pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
62
66
  pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
@@ -84,6 +88,7 @@ pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3Nq
84
88
  pluggy_sdk/models/connector_list_response.py,sha256=PetHjZ1wAJ2k2gacrg9EmM0fnvSZ7YZPWms-GVUbKRg,3386
85
89
  pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
86
90
  pluggy_sdk/models/consent.py,sha256=2iGU-3JCbWzjUsFU1g4UYXz_zm0EziBJgki8XaBz1Kk,5451
91
+ pluggy_sdk/models/create_automatic_pix_payment_request.py,sha256=tJ_gWWbYc_LsIja1OyGigl-D-Rkt9-HnwmEYdnzlWe0,6990
87
92
  pluggy_sdk/models/create_boleto.py,sha256=RdxH90W5WtT4CNounAk7_A7Jpgi_a9u4WKmoHwgDf-s,3018
88
93
  pluggy_sdk/models/create_boleto_boleto.py,sha256=Hcl29eZ2u_53s-kgOJhEKybaNVVXfOreYr7sqayU_so,4297
89
94
  pluggy_sdk/models/create_boleto_boleto_fine.py,sha256=EzNMpnTjd_b_PFPB3HSjSaBX0iFHyStZOwC4_-TJEvE,3061
@@ -99,7 +104,7 @@ pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrK
99
104
  pluggy_sdk/models/create_or_update_payment_customer.py,sha256=jM5YueP_je65I8koHuKY7c6ssz0KQgTaiRrS3XMDz7o,3479
100
105
  pluggy_sdk/models/create_payment_customer_request_body.py,sha256=xwJ5ZA645R7Dm14BCpnLVxNH77pRGEOpKZ4pETlPFBg,3389
101
106
  pluggy_sdk/models/create_payment_intent.py,sha256=3sqYR4sW5aODMZEeYjjOeEegT7MIUsj4nTYnTqdpzgg,4360
102
- pluggy_sdk/models/create_payment_recipient.py,sha256=EhERKrgFbAV90H74SMqp4topDd3eVJWnjNP7Ac3XwAc,4066
107
+ pluggy_sdk/models/create_payment_recipient.py,sha256=nXY9EpAyE9hAq0cbmotdRGQtkgR-HVsdoTtMtC5BCXg,4174
103
108
  pluggy_sdk/models/create_payment_request.py,sha256=ACMxL0Y77vJU8dMosDD6ww3EiZ5BSJKJH9n4cuQcyBc,4585
104
109
  pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
105
110
  pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
@@ -110,9 +115,10 @@ pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=aSaFeY_pe-TX2
110
115
  pluggy_sdk/models/create_webhook.py,sha256=9diD0I9ji_B6sYlEbTbFyYz_dYVJtkcpad9XGX9qctE,4172
111
116
  pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
112
117
  pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
113
- pluggy_sdk/models/credit_data.py,sha256=LcdJCDgQEmdm60NPzx-hcq_cRHYic8OCr_zVBVuNcpE,5142
118
+ pluggy_sdk/models/credit_data.py,sha256=WmE3D4LHdQDFNelf6yH-U9q1DzhiR2lEgdtdhp3CuCw,6886
114
119
  pluggy_sdk/models/custom.py,sha256=zjjIW93-oGUgaHiVfAimPHPyfFIeRf47c4i-5TpmujE,3138
115
120
  pluggy_sdk/models/daily.py,sha256=_5HI2mqTi-LTPyLJyu6bSDGVqw6Y-58keirwFiOcLhk,3350
121
+ pluggy_sdk/models/disaggregated_credit_limit.py,sha256=iTn9lVLt8sqqp0pYuJaYvwzfSogsUJlhUUiM3QfYEig,5333
116
122
  pluggy_sdk/models/document.py,sha256=kVgB5z4IAsO8snka8yeAABtoEm5KWlx3TtzbW2SuaXE,3003
117
123
  pluggy_sdk/models/email.py,sha256=X7c8gC0n13Y-aKyOdVoIEnnyi-7jMlFBmKJyYeiezpc,2965
118
124
  pluggy_sdk/models/global_error_response.py,sha256=JP7wgaEYQN4wp35fB74XTYsh_AdviIcuaUexrymj1S8,3025
@@ -174,9 +180,10 @@ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnY
174
180
  pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
175
181
  pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
176
182
  pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
177
- pluggy_sdk/models/payment_intent.py,sha256=5m20XwAcCYDJ3mTf0JbuygdXa4iYchm1hpGVYbACmpU,7058
183
+ pluggy_sdk/models/payment_intent.py,sha256=H5TJyk54JE_anphHBVRrLwDbmpoz7iJtuGBqrLHHRgQ,7080
184
+ pluggy_sdk/models/payment_intent_automatic_pix.py,sha256=WIkEeCOBcZouV_6e2J6h3eH1HzXRTyzKXoWAdVZXobc,5481
178
185
  pluggy_sdk/models/payment_intent_error_detail.py,sha256=8rhASOpDfP07LHggptAJ1w5GJJY-s7A3-nNgEr04Jfo,3176
179
- pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
186
+ pluggy_sdk/models/payment_intent_parameter.py,sha256=le4bOATOPUHtLASw-Pa-rMTj-9mtjcsl-PdTdRmryog,2875
180
187
  pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
181
188
  pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
182
189
  pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
@@ -185,9 +192,10 @@ pluggy_sdk/models/payment_recipient.py,sha256=PKpjebsFXZBMQphfF0bragOYzn4ym2V504
185
192
  pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
186
193
  pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
187
194
  pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
188
- pluggy_sdk/models/payment_request.py,sha256=gRCPSDWGSKFlmzM7XF_O21CSoa3few7OlcMOaC2YhGQ,6879
195
+ pluggy_sdk/models/payment_request.py,sha256=KDq3-lshodGizZaPxijXWjcliu-3KuvTJ9pPNOcvVGc,7490
189
196
  pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
190
197
  pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
198
+ pluggy_sdk/models/payment_request_get_automatic_pix_schedules200_response.py,sha256=gJiw37o8rVZkivwqFC3F_zy6iKrhfeJcoLulSptdxZQ,3599
191
199
  pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
192
200
  pluggy_sdk/models/payment_request_schedule.py,sha256=gQqGFVYZLe8NguGwzpREBMa0b2KCUhmgudUlSUMazY4,6999
193
201
  pluggy_sdk/models/payment_requests_list200_response.py,sha256=sAsajmYPVezAobFSq0KFFMBcO8ApV-RKl2PrmfXWs1s,3496
@@ -200,6 +208,8 @@ pluggy_sdk/models/payroll_loans_list200_response.py,sha256=zG54rlfMAINvraIn48n-1
200
208
  pluggy_sdk/models/percentage_over_index.py,sha256=UMM-sXy36J5X_kfVCCy3glXjEGUXJzZxKQM0Ipt05uE,2861
201
209
  pluggy_sdk/models/phone_number.py,sha256=KtNMYqBE9K7Of-gVId3wV9gN9vf1XGbDnv3R_s-QGco,3087
202
210
  pluggy_sdk/models/pix_data.py,sha256=zygIaWicGwI93-q181yHzPVxKBZ7wpuhN70b_KvPm0c,2602
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=Vlv2TEy55KGJpKyz63BbLc06DfWHG2P-Xj34cu1vRUc,3283
203
213
  pluggy_sdk/models/schedule_payment.py,sha256=jeZhxuQtaZpy3azrv3WDZszkKfur_m_djAvOK8YOKDY,4040
204
214
  pluggy_sdk/models/schedule_payment_error_detail.py,sha256=9bqhCPmKOkIKXE6nnjN72PQ28QE9-jJtQZKB8fET-AA,2975
205
215
  pluggy_sdk/models/schedule_type_custom.py,sha256=OIPS53NFeFbQ3rFR030CEdP1E0XY2bJUP4iHc8Iv-q4,3174
@@ -224,14 +234,14 @@ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGv
224
234
  pluggy_sdk/models/transaction.py,sha256=cEBiOxkkW3t1KRSwgOCwyhjNnOKW_Wv3KTaAAGMjU_Y,6914
225
235
  pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
226
236
  pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
227
- pluggy_sdk/models/update_payment_recipient.py,sha256=eVnwQqnLsZVqx58FrWriIiVynNnLbHzwizdm2yLZbAE,3976
237
+ pluggy_sdk/models/update_payment_recipient.py,sha256=4rV6-GUfqZVlVPutMxZ4htOsfelN_cbMuVyTvYFNxAY,3977
228
238
  pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
229
239
  pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
230
240
  pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
231
241
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
232
242
  pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
233
243
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
234
- pluggy_sdk-1.0.0.post44.dist-info/METADATA,sha256=13A7idqoC8fgFUcKcFnCBFrWINgGzDAvR8vkos5Xslg,21306
235
- pluggy_sdk-1.0.0.post44.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
236
- pluggy_sdk-1.0.0.post44.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
237
- pluggy_sdk-1.0.0.post44.dist-info/RECORD,,
244
+ pluggy_sdk-1.0.0.post49.dist-info/METADATA,sha256=4SqNDZy_Xwn6M9a6KwvytHYnIzpP7Qp-8t84SGMFpck,23515
245
+ pluggy_sdk-1.0.0.post49.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
246
+ pluggy_sdk-1.0.0.post49.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
247
+ pluggy_sdk-1.0.0.post49.dist-info/RECORD,,