pluggy-sdk 1.0.0.post17__py3-none-any.whl → 1.0.0.post19__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 (86) hide show
  1. pluggy_sdk/__init__.py +9 -1
  2. pluggy_sdk/api/__init__.py +1 -0
  3. pluggy_sdk/api/account_api.py +6 -2
  4. pluggy_sdk/api/acquirer_anticipation_api.py +6 -2
  5. pluggy_sdk/api/acquirer_receivable_api.py +6 -2
  6. pluggy_sdk/api/acquirer_sale_api.py +6 -2
  7. pluggy_sdk/api/auth_api.py +6 -2
  8. pluggy_sdk/api/benefit_api.py +6 -2
  9. pluggy_sdk/api/bill_api.py +6 -2
  10. pluggy_sdk/api/bulk_payment_api.py +9 -3
  11. pluggy_sdk/api/category_api.py +12 -4
  12. pluggy_sdk/api/connector_api.py +9 -3
  13. pluggy_sdk/api/consent_api.py +6 -2
  14. pluggy_sdk/api/identity_api.py +6 -2
  15. pluggy_sdk/api/income_report_api.py +3 -1
  16. pluggy_sdk/api/investment_api.py +9 -3
  17. pluggy_sdk/api/items_api.py +15 -5
  18. pluggy_sdk/api/loan_api.py +6 -2
  19. pluggy_sdk/api/payment_customer_api.py +15 -5
  20. pluggy_sdk/api/payment_intent_api.py +9 -3
  21. pluggy_sdk/api/payment_recipient_api.py +21 -7
  22. pluggy_sdk/api/payment_request_api.py +30 -10
  23. pluggy_sdk/api/payment_schedule_api.py +9 -3
  24. pluggy_sdk/api/portfolio_yield_api.py +6 -2
  25. pluggy_sdk/api/smart_account_api.py +18 -6
  26. pluggy_sdk/api/smart_transfer_api.py +1406 -0
  27. pluggy_sdk/api/transaction_api.py +9 -3
  28. pluggy_sdk/api/webhook_api.py +15 -5
  29. pluggy_sdk/api_client.py +20 -4
  30. pluggy_sdk/configuration.py +1 -1
  31. pluggy_sdk/models/__init__.py +7 -0
  32. pluggy_sdk/models/accounts_list200_response.py +3 -3
  33. pluggy_sdk/models/acquirer_receivable.py +3 -3
  34. pluggy_sdk/models/acquirer_sale.py +3 -3
  35. pluggy_sdk/models/acquirer_sale_data.py +3 -3
  36. pluggy_sdk/models/aggregated_portfolio_response.py +3 -3
  37. pluggy_sdk/models/benefit_response.py +3 -3
  38. pluggy_sdk/models/benefits_list200_response.py +3 -3
  39. pluggy_sdk/models/bill.py +3 -3
  40. pluggy_sdk/models/bills_list200_response.py +3 -3
  41. pluggy_sdk/models/bulk_payment.py +3 -3
  42. pluggy_sdk/models/bulk_payments_list200_response.py +3 -3
  43. pluggy_sdk/models/connector.py +3 -3
  44. pluggy_sdk/models/connector_credential.py +3 -3
  45. pluggy_sdk/models/connector_list_response.py +3 -3
  46. pluggy_sdk/models/create_item.py +3 -1
  47. pluggy_sdk/models/create_smart_transfer_payment.py +96 -0
  48. pluggy_sdk/models/create_smart_transfer_preauthorization.py +104 -0
  49. pluggy_sdk/models/identity_response.py +12 -12
  50. pluggy_sdk/models/income_reports_response.py +3 -3
  51. pluggy_sdk/models/investment.py +3 -3
  52. pluggy_sdk/models/investments_list200_response.py +3 -3
  53. pluggy_sdk/models/item_creation_error_response.py +3 -3
  54. pluggy_sdk/models/loan.py +12 -12
  55. pluggy_sdk/models/loan_installments.py +3 -3
  56. pluggy_sdk/models/loan_payment_release_over_parcel.py +6 -6
  57. pluggy_sdk/models/loan_payments.py +3 -3
  58. pluggy_sdk/models/loans_list200_response.py +3 -3
  59. pluggy_sdk/models/monthly_portfolio_response.py +3 -3
  60. pluggy_sdk/models/page_response_acquirer_anticipations.py +3 -3
  61. pluggy_sdk/models/page_response_acquirer_receivables.py +3 -3
  62. pluggy_sdk/models/page_response_acquirer_sales.py +3 -3
  63. pluggy_sdk/models/page_response_category_rules.py +3 -3
  64. pluggy_sdk/models/page_response_consents.py +3 -3
  65. pluggy_sdk/models/page_response_investment_transactions.py +3 -3
  66. pluggy_sdk/models/page_response_transactions.py +3 -3
  67. pluggy_sdk/models/parameter_validation_response.py +3 -3
  68. pluggy_sdk/models/payment_customers_list200_response.py +3 -3
  69. pluggy_sdk/models/payment_intents_list200_response.py +3 -3
  70. pluggy_sdk/models/payment_recipients_institution_list200_response.py +3 -3
  71. pluggy_sdk/models/payment_recipients_list200_response.py +3 -3
  72. pluggy_sdk/models/payment_request_receipt_list200_response.py +3 -3
  73. pluggy_sdk/models/payment_requests_list200_response.py +3 -3
  74. pluggy_sdk/models/payment_schedules_list200_response.py +3 -3
  75. pluggy_sdk/models/smart_accounts_list200_response.py +3 -3
  76. pluggy_sdk/models/smart_tranfers_preauthorizations_list200_response.py +102 -0
  77. pluggy_sdk/models/smart_transfer_callback_urls.py +90 -0
  78. pluggy_sdk/models/smart_transfer_payment.py +116 -0
  79. pluggy_sdk/models/smart_transfer_preauthorization.py +128 -0
  80. pluggy_sdk/models/smart_transfer_preauthorization_parameter.py +90 -0
  81. pluggy_sdk/models/status_detail_product.py +3 -3
  82. pluggy_sdk/models/webhooks_list200_response.py +3 -3
  83. {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/METADATA +15 -3
  84. {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/RECORD +86 -78
  85. {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/WHEEL +1 -1
  86. {pluggy_sdk-1.0.0.post17.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,116 @@
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 datetime
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
23
+ from typing import Any, ClassVar, Dict, List, Optional, Union
24
+ from pluggy_sdk.models.payment_receipt import PaymentReceipt
25
+ from typing import Optional, Set
26
+ from typing_extensions import Self
27
+
28
+ class SmartTransferPayment(BaseModel):
29
+ """
30
+ Smart transfer payment
31
+ """ # noqa: E501
32
+ id: StrictStr = Field(description="Payment primary identifier")
33
+ preauthorization_id: StrictStr = Field(description="Payment primary identifier", alias="preauthorizationId")
34
+ status: StrictStr = Field(description="Payment status")
35
+ amount: Union[StrictFloat, StrictInt] = Field(description="Payment amount")
36
+ description: Optional[StrictStr] = Field(default=None, description="Payment description")
37
+ recipient: PaymentReceipt
38
+ client_payment_id: Optional[StrictStr] = Field(default=None, description="Client payment identifier", alias="clientPaymentId")
39
+ created_at: datetime = Field(description="Date when the payemnt was created", alias="createdAt")
40
+ updated_at: datetime = Field(description="Date when the payment was updated", alias="updatedAt")
41
+ __properties: ClassVar[List[str]] = ["id", "preauthorizationId", "status", "amount", "description", "recipient", "clientPaymentId", "createdAt", "updatedAt"]
42
+
43
+ @field_validator('status')
44
+ def status_validate_enum(cls, value):
45
+ """Validates the enum"""
46
+ if value not in set(['PAYMENT_REJECTED', 'ERROR', 'CANCELED', 'CONSENT_REJECTED', 'CONSENT_AUTHORIZED', 'PAYMENT_PENDING', 'PAYMENT_PARTIALLY_ACCEPTED', 'PAYMENT_SETTLEMENT_PROCESSING', 'PAYMENT_SETTLEMENT_DEBTOR_ACCOUNT', 'PAYMENT_COMPLETED']):
47
+ raise ValueError("must be one of enum values ('PAYMENT_REJECTED', 'ERROR', 'CANCELED', 'CONSENT_REJECTED', 'CONSENT_AUTHORIZED', 'PAYMENT_PENDING', 'PAYMENT_PARTIALLY_ACCEPTED', 'PAYMENT_SETTLEMENT_PROCESSING', 'PAYMENT_SETTLEMENT_DEBTOR_ACCOUNT', 'PAYMENT_COMPLETED')")
48
+ return value
49
+
50
+ model_config = ConfigDict(
51
+ populate_by_name=True,
52
+ validate_assignment=True,
53
+ protected_namespaces=(),
54
+ )
55
+
56
+
57
+ def to_str(self) -> str:
58
+ """Returns the string representation of the model using alias"""
59
+ return pprint.pformat(self.model_dump(by_alias=True))
60
+
61
+ def to_json(self) -> str:
62
+ """Returns the JSON representation of the model using alias"""
63
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
64
+ return json.dumps(self.to_dict())
65
+
66
+ @classmethod
67
+ def from_json(cls, json_str: str) -> Optional[Self]:
68
+ """Create an instance of SmartTransferPayment from a JSON string"""
69
+ return cls.from_dict(json.loads(json_str))
70
+
71
+ def to_dict(self) -> Dict[str, Any]:
72
+ """Return the dictionary representation of the model using alias.
73
+
74
+ This has the following differences from calling pydantic's
75
+ `self.model_dump(by_alias=True)`:
76
+
77
+ * `None` is only added to the output dict for nullable fields that
78
+ were set at model initialization. Other fields with value `None`
79
+ are ignored.
80
+ """
81
+ excluded_fields: Set[str] = set([
82
+ ])
83
+
84
+ _dict = self.model_dump(
85
+ by_alias=True,
86
+ exclude=excluded_fields,
87
+ exclude_none=True,
88
+ )
89
+ # override the default output from pydantic by calling `to_dict()` of recipient
90
+ if self.recipient:
91
+ _dict['recipient'] = self.recipient.to_dict()
92
+ return _dict
93
+
94
+ @classmethod
95
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
96
+ """Create an instance of SmartTransferPayment from a dict"""
97
+ if obj is None:
98
+ return None
99
+
100
+ if not isinstance(obj, dict):
101
+ return cls.model_validate(obj)
102
+
103
+ _obj = cls.model_validate({
104
+ "id": obj.get("id"),
105
+ "preauthorizationId": obj.get("preauthorizationId"),
106
+ "status": obj.get("status"),
107
+ "amount": obj.get("amount"),
108
+ "description": obj.get("description"),
109
+ "recipient": PaymentReceipt.from_dict(obj["recipient"]) if obj.get("recipient") is not None else None,
110
+ "clientPaymentId": obj.get("clientPaymentId"),
111
+ "createdAt": obj.get("createdAt"),
112
+ "updatedAt": obj.get("updatedAt")
113
+ })
114
+ return _obj
115
+
116
+
@@ -0,0 +1,128 @@
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 datetime
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
23
+ from typing import Any, ClassVar, Dict, List, Optional
24
+ from pluggy_sdk.models.connector import Connector
25
+ from pluggy_sdk.models.payment_recipient import PaymentRecipient
26
+ from pluggy_sdk.models.smart_transfer_callback_urls import SmartTransferCallbackUrls
27
+ from typing import Optional, Set
28
+ from typing_extensions import Self
29
+
30
+ class SmartTransferPreauthorization(BaseModel):
31
+ """
32
+ Smart transfer preauthorization
33
+ """ # noqa: E501
34
+ id: StrictStr = Field(description="Preauthorization primary identifier")
35
+ status: StrictStr = Field(description="Preauthorization status")
36
+ consent_url: Optional[StrictStr] = Field(default=None, description="Url to give the consent in the institution", alias="consentUrl")
37
+ client_preauthorization_id: Optional[StrictStr] = Field(default=None, description="Client preauthorization identifier", alias="clientPreauthorizationId")
38
+ callback_urls: Optional[SmartTransferCallbackUrls] = Field(default=None, alias="callbackUrls")
39
+ recipients: List[PaymentRecipient]
40
+ connector: Connector
41
+ created_at: datetime = Field(description="Date when the preauthorization was created", alias="createdAt")
42
+ updated_at: datetime = Field(description="Date when the preauthorization was updated", alias="updatedAt")
43
+ __properties: ClassVar[List[str]] = ["id", "status", "consentUrl", "clientPreauthorizationId", "callbackUrls", "recipients", "connector", "createdAt", "updatedAt"]
44
+
45
+ @field_validator('status')
46
+ def status_validate_enum(cls, value):
47
+ """Validates the enum"""
48
+ if value not in set(['CREATED', 'COMPLETED', 'REVOKED', 'REJECTED', 'ERROR']):
49
+ raise ValueError("must be one of enum values ('CREATED', 'COMPLETED', 'REVOKED', 'REJECTED', 'ERROR')")
50
+ return value
51
+
52
+ model_config = ConfigDict(
53
+ populate_by_name=True,
54
+ validate_assignment=True,
55
+ protected_namespaces=(),
56
+ )
57
+
58
+
59
+ def to_str(self) -> str:
60
+ """Returns the string representation of the model using alias"""
61
+ return pprint.pformat(self.model_dump(by_alias=True))
62
+
63
+ def to_json(self) -> str:
64
+ """Returns the JSON representation of the model using alias"""
65
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
66
+ return json.dumps(self.to_dict())
67
+
68
+ @classmethod
69
+ def from_json(cls, json_str: str) -> Optional[Self]:
70
+ """Create an instance of SmartTransferPreauthorization from a JSON string"""
71
+ return cls.from_dict(json.loads(json_str))
72
+
73
+ def to_dict(self) -> Dict[str, Any]:
74
+ """Return the dictionary representation of the model using alias.
75
+
76
+ This has the following differences from calling pydantic's
77
+ `self.model_dump(by_alias=True)`:
78
+
79
+ * `None` is only added to the output dict for nullable fields that
80
+ were set at model initialization. Other fields with value `None`
81
+ are ignored.
82
+ """
83
+ excluded_fields: Set[str] = set([
84
+ ])
85
+
86
+ _dict = self.model_dump(
87
+ by_alias=True,
88
+ exclude=excluded_fields,
89
+ exclude_none=True,
90
+ )
91
+ # override the default output from pydantic by calling `to_dict()` of callback_urls
92
+ if self.callback_urls:
93
+ _dict['callbackUrls'] = self.callback_urls.to_dict()
94
+ # override the default output from pydantic by calling `to_dict()` of each item in recipients (list)
95
+ _items = []
96
+ if self.recipients:
97
+ for _item_recipients in self.recipients:
98
+ if _item_recipients:
99
+ _items.append(_item_recipients.to_dict())
100
+ _dict['recipients'] = _items
101
+ # override the default output from pydantic by calling `to_dict()` of connector
102
+ if self.connector:
103
+ _dict['connector'] = self.connector.to_dict()
104
+ return _dict
105
+
106
+ @classmethod
107
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
108
+ """Create an instance of SmartTransferPreauthorization from a dict"""
109
+ if obj is None:
110
+ return None
111
+
112
+ if not isinstance(obj, dict):
113
+ return cls.model_validate(obj)
114
+
115
+ _obj = cls.model_validate({
116
+ "id": obj.get("id"),
117
+ "status": obj.get("status"),
118
+ "consentUrl": obj.get("consentUrl"),
119
+ "clientPreauthorizationId": obj.get("clientPreauthorizationId"),
120
+ "callbackUrls": SmartTransferCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
121
+ "recipients": [PaymentRecipient.from_dict(_item) for _item in obj["recipients"]] if obj.get("recipients") is not None else None,
122
+ "connector": Connector.from_dict(obj["connector"]) if obj.get("connector") is not None else None,
123
+ "createdAt": obj.get("createdAt"),
124
+ "updatedAt": obj.get("updatedAt")
125
+ })
126
+ return _obj
127
+
128
+
@@ -0,0 +1,90 @@
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, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class SmartTransferPreauthorizationParameter(BaseModel):
27
+ """
28
+ Credentials neccesary to create a smart transfer preauthorization
29
+ """ # noqa: E501
30
+ cpf: StrictStr = Field(description="CPF of the payer")
31
+ cnpj: Optional[StrictStr] = Field(default=None, description="CNPJ of the payer")
32
+ __properties: ClassVar[List[str]] = ["cpf", "cnpj"]
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 SmartTransferPreauthorizationParameter 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 SmartTransferPreauthorizationParameter 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
+ "cpf": obj.get("cpf"),
86
+ "cnpj": obj.get("cnpj")
87
+ })
88
+ return _obj
89
+
90
+
@@ -76,9 +76,9 @@ class StatusDetailProduct(BaseModel):
76
76
  # override the default output from pydantic by calling `to_dict()` of each item in warnings (list)
77
77
  _items = []
78
78
  if self.warnings:
79
- for _item in self.warnings:
80
- if _item:
81
- _items.append(_item.to_dict())
79
+ for _item_warnings in self.warnings:
80
+ if _item_warnings:
81
+ _items.append(_item_warnings.to_dict())
82
82
  _dict['warnings'] = _items
83
83
  return _dict
84
84
 
@@ -76,9 +76,9 @@ class WebhooksList200Response(BaseModel):
76
76
  # override the default output from pydantic by calling `to_dict()` of each item in results (list)
77
77
  _items = []
78
78
  if self.results:
79
- for _item in self.results:
80
- if _item:
81
- _items.append(_item.to_dict())
79
+ for _item_results in self.results:
80
+ if _item_results:
81
+ _items.append(_item_results.to_dict())
82
82
  _dict['results'] = _items
83
83
  return _dict
84
84
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post17
3
+ Version: 1.0.0.post19
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
@@ -19,8 +19,8 @@ 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.post17
23
- - Generator version: 7.8.0-SNAPSHOT
22
+ - Package version: 1.0.0.post19
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)
26
26
 
@@ -187,6 +187,11 @@ Class | Method | HTTP request | Description
187
187
  *SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
188
188
  *SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
189
189
  *SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
190
+ *SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
191
+ *SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
192
+ *SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
193
+ *SmartTransferApi* | [**smart_transfer_preauthorization_create**](docs/SmartTransferApi.md#smart_transfer_preauthorization_create) | **POST** /smart-transfers/preauthorizations | Create preauthorization
194
+ *SmartTransferApi* | [**smart_transfer_preauthorization_retrieve**](docs/SmartTransferApi.md#smart_transfer_preauthorization_retrieve) | **GET** /smart-transfers/preauthorizations/{id} | Retrieve preauthorization
190
195
  *TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List
191
196
  *TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve
192
197
  *TransactionApi* | [**transactions_update**](docs/TransactionApi.md#transactions_update) | **PATCH** /transactions/{id} | Update
@@ -259,6 +264,8 @@ Class | Method | HTTP request | Description
259
264
  - [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
260
265
  - [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
261
266
  - [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
267
+ - [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
268
+ - [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
262
269
  - [CreateWebhook](docs/CreateWebhook.md)
263
270
  - [CredentialSelectOption](docs/CredentialSelectOption.md)
264
271
  - [CreditCardMetadata](docs/CreditCardMetadata.md)
@@ -340,6 +347,11 @@ Class | Method | HTTP request | Description
340
347
  - [SmartAccountBalance](docs/SmartAccountBalance.md)
341
348
  - [SmartAccountTransfer](docs/SmartAccountTransfer.md)
342
349
  - [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)
350
+ - [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
351
+ - [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
352
+ - [SmartTransferPayment](docs/SmartTransferPayment.md)
353
+ - [SmartTransferPreauthorization](docs/SmartTransferPreauthorization.md)
354
+ - [SmartTransferPreauthorizationParameter](docs/SmartTransferPreauthorizationParameter.md)
343
355
  - [StatusDetail](docs/StatusDetail.md)
344
356
  - [StatusDetailProduct](docs/StatusDetailProduct.md)
345
357
  - [StatusDetailProductWarning](docs/StatusDetailProductWarning.md)