pluggy-sdk 1.0.0.post14__py3-none-any.whl → 1.0.0.post16__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 (39) hide show
  1. pluggy_sdk/__init__.py +4 -1
  2. pluggy_sdk/api/__init__.py +3 -0
  3. pluggy_sdk/api/account_api.py +12 -10
  4. pluggy_sdk/api/acquirer_anticipation_api.py +12 -10
  5. pluggy_sdk/api/acquirer_receivable_api.py +12 -10
  6. pluggy_sdk/api/acquirer_sale_api.py +12 -10
  7. pluggy_sdk/api/auth_api.py +12 -10
  8. pluggy_sdk/api/benefit_api.py +12 -10
  9. pluggy_sdk/api/bill_api.py +12 -10
  10. pluggy_sdk/api/bulk_payment_api.py +18 -15
  11. pluggy_sdk/api/category_api.py +24 -20
  12. pluggy_sdk/api/connector_api.py +18 -15
  13. pluggy_sdk/api/consent_api.py +12 -10
  14. pluggy_sdk/api/identity_api.py +12 -10
  15. pluggy_sdk/api/income_report_api.py +6 -5
  16. pluggy_sdk/api/investment_api.py +18 -15
  17. pluggy_sdk/api/items_api.py +30 -25
  18. pluggy_sdk/api/loan_api.py +12 -10
  19. pluggy_sdk/api/payment_customer_api.py +30 -25
  20. pluggy_sdk/api/payment_intent_api.py +18 -15
  21. pluggy_sdk/api/payment_receipts_api.py +842 -0
  22. pluggy_sdk/api/payment_recipient_api.py +42 -35
  23. pluggy_sdk/api/payment_request_api.py +134 -1187
  24. pluggy_sdk/api/payment_schedule_api.py +817 -0
  25. pluggy_sdk/api/portfolio_yield_api.py +12 -10
  26. pluggy_sdk/api/smart_account_api.py +24 -590
  27. pluggy_sdk/api/smart_account_transfer_api.py +610 -0
  28. pluggy_sdk/api/transaction_api.py +18 -15
  29. pluggy_sdk/api/webhook_api.py +30 -25
  30. pluggy_sdk/api_client.py +2 -2
  31. pluggy_sdk/configuration.py +17 -3
  32. pluggy_sdk/models/benefit_loan.py +6 -6
  33. pluggy_sdk/models/benefit_loan_client.py +3 -3
  34. pluggy_sdk/models/connector.py +6 -2
  35. pluggy_sdk/models/item.py +3 -1
  36. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/METADATA +11 -9
  37. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/RECORD +39 -36
  38. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/WHEEL +1 -1
  39. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/top_level.txt +0 -0
@@ -276,11 +276,12 @@ class WebhookApi:
276
276
 
277
277
 
278
278
  # set the HTTP header `Accept`
279
- _header_params['Accept'] = self.api_client.select_header_accept(
280
- [
281
- 'application/json'
282
- ]
283
- )
279
+ if 'Accept' not in _header_params:
280
+ _header_params['Accept'] = self.api_client.select_header_accept(
281
+ [
282
+ 'application/json'
283
+ ]
284
+ )
284
285
 
285
286
  # set the HTTP header `Content-Type`
286
287
  if _content_type:
@@ -553,11 +554,12 @@ class WebhookApi:
553
554
 
554
555
 
555
556
  # set the HTTP header `Accept`
556
- _header_params['Accept'] = self.api_client.select_header_accept(
557
- [
558
- 'application/json'
559
- ]
560
- )
557
+ if 'Accept' not in _header_params:
558
+ _header_params['Accept'] = self.api_client.select_header_accept(
559
+ [
560
+ 'application/json'
561
+ ]
562
+ )
561
563
 
562
564
 
563
565
  # authentication setting
@@ -802,11 +804,12 @@ class WebhookApi:
802
804
 
803
805
 
804
806
  # set the HTTP header `Accept`
805
- _header_params['Accept'] = self.api_client.select_header_accept(
806
- [
807
- 'application/json'
808
- ]
809
- )
807
+ if 'Accept' not in _header_params:
808
+ _header_params['Accept'] = self.api_client.select_header_accept(
809
+ [
810
+ 'application/json'
811
+ ]
812
+ )
810
813
 
811
814
 
812
815
  # authentication setting
@@ -1066,11 +1069,12 @@ class WebhookApi:
1066
1069
 
1067
1070
 
1068
1071
  # set the HTTP header `Accept`
1069
- _header_params['Accept'] = self.api_client.select_header_accept(
1070
- [
1071
- 'application/json'
1072
- ]
1073
- )
1072
+ if 'Accept' not in _header_params:
1073
+ _header_params['Accept'] = self.api_client.select_header_accept(
1074
+ [
1075
+ 'application/json'
1076
+ ]
1077
+ )
1074
1078
 
1075
1079
 
1076
1080
  # authentication setting
@@ -1348,11 +1352,12 @@ class WebhookApi:
1348
1352
 
1349
1353
 
1350
1354
  # set the HTTP header `Accept`
1351
- _header_params['Accept'] = self.api_client.select_header_accept(
1352
- [
1353
- 'application/json'
1354
- ]
1355
- )
1355
+ if 'Accept' not in _header_params:
1356
+ _header_params['Accept'] = self.api_client.select_header_accept(
1357
+ [
1358
+ 'application/json'
1359
+ ]
1360
+ )
1356
1361
 
1357
1362
  # set the HTTP header `Content-Type`
1358
1363
  if _content_type:
pluggy_sdk/api_client.py CHANGED
@@ -89,7 +89,7 @@ class ApiClient:
89
89
  self.default_headers[header_name] = header_value
90
90
  self.cookie = cookie
91
91
  # Set default User-Agent.
92
- self.user_agent = 'OpenAPI-Generator/1.0.0.post14/python'
92
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post16/python'
93
93
  self.client_side_validation = configuration.client_side_validation
94
94
 
95
95
  def __enter__(self):
@@ -228,7 +228,7 @@ class ApiClient:
228
228
  body = self.sanitize_for_serialization(body)
229
229
 
230
230
  # request url
231
- if _host is None:
231
+ if _host is None or self.configuration.ignore_operation_servers:
232
232
  url = self.configuration.host + resource_path
233
233
  else:
234
234
  # use server/host defined in path or operation instead
@@ -33,6 +33,9 @@ class Configuration:
33
33
  """This class contains various settings of the API client.
34
34
 
35
35
  :param host: Base url.
36
+ :param ignore_operation_servers
37
+ Boolean to ignore operation servers for the API client.
38
+ Config will use `host` as the base url regardless of the operation servers.
36
39
  :param api_key: Dict to store API key(s).
37
40
  Each entry in the dict specifies an API key.
38
41
  The dict key is the name of the security scheme in the OAS specification.
@@ -55,6 +58,7 @@ class Configuration:
55
58
  values before.
56
59
  :param ssl_ca_cert: str - the path to a file of concatenated CA certificates
57
60
  in PEM format.
61
+ :param retries: Number of retries for API requests.
58
62
 
59
63
  :Example:
60
64
 
@@ -86,7 +90,11 @@ conf = pluggy_sdk.Configuration(
86
90
  access_token=None,
87
91
  server_index=None, server_variables=None,
88
92
  server_operation_index=None, server_operation_variables=None,
93
+ ignore_operation_servers=False,
89
94
  ssl_ca_cert=None,
95
+ retries=None,
96
+ *,
97
+ debug: Optional[bool] = None
90
98
  ) -> None:
91
99
  """Constructor
92
100
  """
@@ -101,6 +109,9 @@ conf = pluggy_sdk.Configuration(
101
109
  self.server_operation_variables = server_operation_variables or {}
102
110
  """Default server variables
103
111
  """
112
+ self.ignore_operation_servers = ignore_operation_servers
113
+ """Ignore operation servers
114
+ """
104
115
  self.temp_folder_path = None
105
116
  """Temp file folder for downloading files
106
117
  """
@@ -144,7 +155,10 @@ conf = pluggy_sdk.Configuration(
144
155
  self.logger_file = None
145
156
  """Debug file location
146
157
  """
147
- self.debug = False
158
+ if debug is not None:
159
+ self.debug = debug
160
+ else:
161
+ self.__debug = False
148
162
  """Debug switch
149
163
  """
150
164
 
@@ -187,7 +201,7 @@ conf = pluggy_sdk.Configuration(
187
201
  self.safe_chars_for_path_param = ''
188
202
  """Safe chars for path_param
189
203
  """
190
- self.retries = None
204
+ self.retries = retries
191
205
  """Adding retries to override urllib3 default value 3
192
206
  """
193
207
  # Enable client side validation
@@ -400,7 +414,7 @@ conf = pluggy_sdk.Configuration(
400
414
  "OS: {env}\n"\
401
415
  "Python Version: {pyversion}\n"\
402
416
  "Version of the API: 1.0.0\n"\
403
- "SDK Package Version: 1.0.0.post14".\
417
+ "SDK Package Version: 1.0.0.post16".\
404
418
  format(env=sys.platform, pyversion=sys.version)
405
419
 
406
420
  def get_host_settings(self):
@@ -29,10 +29,10 @@ class BenefitLoan(BaseModel):
29
29
  """
30
30
  Information related to a benefit loan
31
31
  """ # noqa: E501
32
- contract_code: StrictStr = Field(description="Contract code given by the contracting institution", alias="contractCode")
32
+ contract_code: Optional[StrictStr] = Field(default=None, description="Contract code given by the contracting institution", alias="contractCode")
33
+ hiscon_contract_code: StrictStr = Field(description="Contract code given in the hiscon file", alias="hisconContractCode")
33
34
  cnpj_original_contract_creditor: Optional[StrictStr] = Field(default=None, description="CNPJ of the original creditor of the contract", alias="cnpjOriginalContractCreditor")
34
- nominal_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Nominal interest rate", alias="nominalInterestRate")
35
- efective_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Effective interest rate", alias="efectiveInterestRate")
35
+ effective_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Effective interest rate", alias="effectiveInterestRate")
36
36
  cet_annual_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="CET annual rate", alias="cetAnnualRate")
37
37
  cet_month_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="CET monthly rate", alias="cetMonthRate")
38
38
  currency_code: Optional[StrictStr] = Field(default=None, description="Code referencing the currency of the loan", alias="currencyCode")
@@ -44,7 +44,7 @@ class BenefitLoan(BaseModel):
44
44
  cnpj_correspondent_banking: Optional[StrictStr] = Field(default=None, description="CNPJ of the correspondent banking", alias="cnpjCorrespondentBanking")
45
45
  operation_hiring_date: Optional[datetime] = Field(default=None, description="Operation hiring date", alias="operationHiringDate")
46
46
  client: BenefitLoanClient
47
- __properties: ClassVar[List[str]] = ["contractCode", "cnpjOriginalContractCreditor", "nominalInterestRate", "efectiveInterestRate", "cetAnnualRate", "cetMonthRate", "currencyCode", "amortizationRegime", "installmentsQuantity", "installmentsValue", "dueDateFirstInstallment", "dueDateLastInstallment", "cnpjCorrespondentBanking", "operationHiringDate", "client"]
47
+ __properties: ClassVar[List[str]] = ["contractCode", "hisconContractCode", "cnpjOriginalContractCreditor", "effectiveInterestRate", "cetAnnualRate", "cetMonthRate", "currencyCode", "amortizationRegime", "installmentsQuantity", "installmentsValue", "dueDateFirstInstallment", "dueDateLastInstallment", "cnpjCorrespondentBanking", "operationHiringDate", "client"]
48
48
 
49
49
  model_config = ConfigDict(
50
50
  populate_by_name=True,
@@ -101,9 +101,9 @@ class BenefitLoan(BaseModel):
101
101
 
102
102
  _obj = cls.model_validate({
103
103
  "contractCode": obj.get("contractCode"),
104
+ "hisconContractCode": obj.get("hisconContractCode"),
104
105
  "cnpjOriginalContractCreditor": obj.get("cnpjOriginalContractCreditor"),
105
- "nominalInterestRate": obj.get("nominalInterestRate"),
106
- "efectiveInterestRate": obj.get("efectiveInterestRate"),
106
+ "effectiveInterestRate": obj.get("effectiveInterestRate"),
107
107
  "cetAnnualRate": obj.get("cetAnnualRate"),
108
108
  "cetMonthRate": obj.get("cetMonthRate"),
109
109
  "currencyCode": obj.get("currencyCode"),
@@ -30,12 +30,12 @@ class BenefitLoanClient(BaseModel):
30
30
  name: Optional[StrictStr] = Field(default=None, description="Client name")
31
31
  document: Optional[StrictStr] = Field(default=None, description="Client CPF")
32
32
  phone: Optional[StrictStr] = Field(default=None, description="Client phone")
33
- addres_street: Optional[StrictStr] = Field(default=None, description="Client email", alias="addresStreet")
33
+ address_street: Optional[StrictStr] = Field(default=None, description="Client email", alias="addressStreet")
34
34
  address_number: Optional[StrictStr] = Field(default=None, description="Client address number", alias="addressNumber")
35
35
  address_city: Optional[StrictStr] = Field(default=None, description="Client address city", alias="addressCity")
36
36
  address_zip_code: Optional[StrictStr] = Field(default=None, description="Client address zip code", alias="addressZipCode")
37
37
  address_state: Optional[StrictStr] = Field(default=None, description="Client address state", alias="addressState")
38
- __properties: ClassVar[List[str]] = ["name", "document", "phone", "addresStreet", "addressNumber", "addressCity", "addressZipCode", "addressState"]
38
+ __properties: ClassVar[List[str]] = ["name", "document", "phone", "addressStreet", "addressNumber", "addressCity", "addressZipCode", "addressState"]
39
39
 
40
40
  model_config = ConfigDict(
41
41
  populate_by_name=True,
@@ -91,7 +91,7 @@ class BenefitLoanClient(BaseModel):
91
91
  "name": obj.get("name"),
92
92
  "document": obj.get("document"),
93
93
  "phone": obj.get("phone"),
94
- "addresStreet": obj.get("addresStreet"),
94
+ "addressStreet": obj.get("addressStreet"),
95
95
  "addressNumber": obj.get("addressNumber"),
96
96
  "addressCity": obj.get("addressCity"),
97
97
  "addressZipCode": obj.get("addressZipCode"),
@@ -45,7 +45,9 @@ class Connector(BaseModel):
45
45
  health: Optional[ConnectorHealth] = None
46
46
  is_open_finance: Optional[StrictBool] = Field(default=None, description="Indicates if the connector uses the regulated Open Finance APIs", alias="isOpenFinance")
47
47
  supports_payment_initiation: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports the payment initiation API", alias="supportsPaymentInitiation")
48
- __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation"]
48
+ supports_scheduled_payments: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports scheduled payments", alias="supportsScheduledPayments")
49
+ supports_smart_transfers: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports smart transfers", alias="supportsSmartTransfers")
50
+ __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation", "supportsScheduledPayments", "supportsSmartTransfers"]
49
51
 
50
52
  @field_validator('products')
51
53
  def products_validate_enum(cls, value):
@@ -134,7 +136,9 @@ class Connector(BaseModel):
134
136
  "resetPasswordUrl": obj.get("resetPasswordUrl"),
135
137
  "health": ConnectorHealth.from_dict(obj["health"]) if obj.get("health") is not None else None,
136
138
  "isOpenFinance": obj.get("isOpenFinance"),
137
- "supportsPaymentInitiation": obj.get("supportsPaymentInitiation")
139
+ "supportsPaymentInitiation": obj.get("supportsPaymentInitiation"),
140
+ "supportsScheduledPayments": obj.get("supportsScheduledPayments"),
141
+ "supportsSmartTransfers": obj.get("supportsSmartTransfers")
138
142
  })
139
143
  return _obj
140
144
 
pluggy_sdk/models/item.py CHANGED
@@ -47,8 +47,9 @@ class Item(BaseModel):
47
47
  status_detail: Optional[StatusDetail] = Field(default=None, alias="statusDetail")
48
48
  next_auto_sync_at: Optional[datetime] = Field(default=None, description="Date of next auto-sync, or null if auto-sync is disabled for this Item", alias="nextAutoSyncAt")
49
49
  consecutive_failed_login_attempts: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Consecutives execution that ends up with a LOGIN_ERROR status", alias="consecutiveFailedLoginAttempts")
50
+ consent_expires_at: Optional[datetime] = Field(default=None, description="Consent expiration date", alias="consentExpiresAt")
50
51
  products: Optional[List[StrictStr]] = Field(default=None, description="Products collected by the item")
51
- __properties: ClassVar[List[str]] = ["id", "connector", "status", "executionStatus", "error", "parameter", "userAction", "webhookUrl", "createdAt", "updatedAt", "lastUpdatedAt", "statusDetail", "nextAutoSyncAt", "consecutiveFailedLoginAttempts", "products"]
52
+ __properties: ClassVar[List[str]] = ["id", "connector", "status", "executionStatus", "error", "parameter", "userAction", "webhookUrl", "createdAt", "updatedAt", "lastUpdatedAt", "statusDetail", "nextAutoSyncAt", "consecutiveFailedLoginAttempts", "consentExpiresAt", "products"]
52
53
 
53
54
  @field_validator('products')
54
55
  def products_validate_enum(cls, value):
@@ -141,6 +142,7 @@ class Item(BaseModel):
141
142
  "statusDetail": StatusDetail.from_dict(obj["statusDetail"]) if obj.get("statusDetail") is not None else None,
142
143
  "nextAutoSyncAt": obj.get("nextAutoSyncAt"),
143
144
  "consecutiveFailedLoginAttempts": obj.get("consecutiveFailedLoginAttempts"),
145
+ "consentExpiresAt": obj.get("consentExpiresAt"),
144
146
  "products": obj.get("products")
145
147
  })
146
148
  return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post14
3
+ Version: 1.0.0.post16
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.post14
23
- - Generator version: 7.7.0-SNAPSHOT
22
+ - Package version: 1.0.0.post16
23
+ - Generator version: 7.8.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
 
@@ -159,6 +159,9 @@ Class | Method | HTTP request | Description
159
159
  *PaymentIntentApi* | [**payment_intent_create**](docs/PaymentIntentApi.md#payment_intent_create) | **POST** /payments/intents | Create
160
160
  *PaymentIntentApi* | [**payment_intent_retrieve**](docs/PaymentIntentApi.md#payment_intent_retrieve) | **GET** /payments/intents/{id} | Retrieve
161
161
  *PaymentIntentApi* | [**payment_intents_list**](docs/PaymentIntentApi.md#payment_intents_list) | **GET** /payments/intents | List
162
+ *PaymentReceiptsApi* | [**payment_request_receipt_create**](docs/PaymentReceiptsApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
163
+ *PaymentReceiptsApi* | [**payment_request_receipt_list**](docs/PaymentReceiptsApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
164
+ *PaymentReceiptsApi* | [**payment_request_receipt_retrieve**](docs/PaymentReceiptsApi.md#payment_request_receipt_retrieve) | **GET** /payments/requests/{payment-request-id}/receipts/{payment-receipt-id} | Retrieve Payment Receipt
162
165
  *PaymentRecipientApi* | [**payment_recipient_create**](docs/PaymentRecipientApi.md#payment_recipient_create) | **POST** /payments/recipients | Create
163
166
  *PaymentRecipientApi* | [**payment_recipient_delete**](docs/PaymentRecipientApi.md#payment_recipient_delete) | **DELETE** /payments/recipients/{id} | Delete
164
167
  *PaymentRecipientApi* | [**payment_recipient_institutions_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_institutions_retrieve) | **GET** /payments/recipients/institutions/{id} | Retrieve Institution
@@ -170,20 +173,19 @@ Class | Method | HTTP request | Description
170
173
  *PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
171
174
  *PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
172
175
  *PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
173
- *PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
174
- *PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
175
- *PaymentRequestApi* | [**payment_request_receipt_retrieve**](docs/PaymentRequestApi.md#payment_request_receipt_retrieve) | **GET** /payments/requests/{payment-request-id}/receipts/{payment-receipt-id} | Retrieve Payment Receipt
176
176
  *PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
177
177
  *PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
178
178
  *PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
179
- *PaymentRequestApi* | [**payment_schedules_list**](docs/PaymentRequestApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | Schedule List
179
+ *PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
180
+ *PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule Authorization
181
+ *PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | Schedule List
180
182
  *PortfolioYieldApi* | [**aggregated_portfolio_find_by_item**](docs/PortfolioYieldApi.md#aggregated_portfolio_find_by_item) | **GET** /portfolio/{itemId} | Find aggregated portfolio yield by item
181
183
  *PortfolioYieldApi* | [**monthly_portfolio_find_by_item**](docs/PortfolioYieldApi.md#monthly_portfolio_find_by_item) | **GET** /portfolio/{itemId}/monthly | Find monthly portfolio yield by item
184
+ *SmartAccountTransferApi* | [**smart_account_transfer**](docs/SmartAccountTransferApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
185
+ *SmartAccountTransferApi* | [**smart_account_transfer_create**](docs/SmartAccountTransferApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
182
186
  *SmartAccountApi* | [**smart_account_balance_retrieve**](docs/SmartAccountApi.md#smart_account_balance_retrieve) | **GET** /payments/smart-accounts/{id}/balance | Retrieve Balance
183
187
  *SmartAccountApi* | [**smart_account_create**](docs/SmartAccountApi.md#smart_account_create) | **POST** /payments/smart-accounts | Create
184
188
  *SmartAccountApi* | [**smart_account_retrieve**](docs/SmartAccountApi.md#smart_account_retrieve) | **GET** /payments/smart-accounts/{id} | Retrieve
185
- *SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
186
- *SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
187
189
  *SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
188
190
  *TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List
189
191
  *TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve
@@ -1,36 +1,39 @@
1
- pluggy_sdk/__init__.py,sha256=W95FLtsgQuD8TzrKa0hD9R5kYspPe0Ny4pFe-rZkO0s,13269
2
- pluggy_sdk/api_client.py,sha256=sZEfjv3edhLEkh1NZKB0TAArpvji3s4xxmew4wigFxE,26720
1
+ pluggy_sdk/__init__.py,sha256=9FtjZqRoBNY5IiPALnRXF7gM7C0sJlTfxFuSbLSRRJw,13481
2
+ pluggy_sdk/api_client.py,sha256=1AaNoBfjihHemDorPY0Zd1DIWBDnW4hINKMa4GHDDNE,26767
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=MPe6YTOSgWuilINAOzfi4JScLV4NODG5Bva8IWUo7Rk,15331
4
+ pluggy_sdk/configuration.py,sha256=_1dbvQ2AyZuMGwlg_uZL3nmIwgm6hvu0QZOLHEFtp0M,15910
5
5
  pluggy_sdk/exceptions.py,sha256=nnh92yDlGdY1-zRsb0vQLebe4oyhrO63RXCYBhbrhoU,5953
6
6
  pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pluggy_sdk/rest.py,sha256=bul9ovAN4BXJwh9yRpC8xb9pZva6xIKmUD72sIQa2yM,9385
8
- pluggy_sdk/api/__init__.py,sha256=D_RNRreA40nKOqIPQZnJY_MyKxoGbS-lw34DVFrcTZk,1419
9
- pluggy_sdk/api/account_api.py,sha256=WsxWuibe2G4IG2-_KVDKQ4D4NAlnnhrdrWo5h3csO9g,22047
10
- pluggy_sdk/api/acquirer_anticipation_api.py,sha256=atMj8leyJ2xpFTsZ0t1kR4BXxwfbgUPE2Mdt8lN1yW0,26206
11
- pluggy_sdk/api/acquirer_receivable_api.py,sha256=wCGsZ_4TM6TlG4NFbDhQfYlpmeFyxc92AyixW3C-IC0,26120
12
- pluggy_sdk/api/acquirer_sale_api.py,sha256=APMdSUQMTSSGzUljDCv6En1YsYutLWW158CDd7_Uc9Y,25869
13
- pluggy_sdk/api/auth_api.py,sha256=Cc96penvTCY8BwuYrxcKTSKr4V4iV4R9_d7aznMj2Mo,22882
14
- pluggy_sdk/api/benefit_api.py,sha256=pq0eo6qkBtxZVFPBFSD-WVYuVVWo-7jk6iawYuaWIjQ,21061
15
- pluggy_sdk/api/bill_api.py,sha256=QbcdCx12Xevz-BFp81r09YgTf2ll9amiZttx84V_jp4,20960
16
- pluggy_sdk/api/bulk_payment_api.py,sha256=fn2xqKXEIJQk5P3foNE-6mTXFiVPCuotimhSnlvXJyY,32808
17
- pluggy_sdk/api/category_api.py,sha256=HBD42oXK1HWA0QHNxVna6HYst525exzy_HE5p8ZSNnc,41577
18
- pluggy_sdk/api/connector_api.py,sha256=XDOWte1nwrBOnJ7u3PMI0991K-L0u-kJ_thZbn_ZGmc,41008
19
- pluggy_sdk/api/consent_api.py,sha256=9PUU_pIyUL0BnRR8K3y2S_AM1IE_9TOrg6SThpikQbw,21295
20
- pluggy_sdk/api/identity_api.py,sha256=Mp85wNmruJHbxNb6l0JLBoUL644UHojY1nFpg9D02A8,21602
21
- pluggy_sdk/api/income_report_api.py,sha256=CIUYSQvHZqaZzF3HfTOa3ZUvYeAFmcsgUc3FFKdf-O4,11593
22
- pluggy_sdk/api/investment_api.py,sha256=szPkEkFWMHT7-IGVh0rVO35vSo39aDoF5AovewvnOzA,35989
23
- pluggy_sdk/api/items_api.py,sha256=5GyZ1p3Nip7oXcHH7MNKgIy_0ws3uo3S1xgjyesYDg4,54593
24
- pluggy_sdk/api/loan_api.py,sha256=-SD37ZzfB9S2SaqyUl0Gg3Plko7olxmu04jcB2mA7Vg,20840
25
- pluggy_sdk/api/payment_customer_api.py,sha256=qUiuhizeTkXMuISJTiaAVaTMycn_d1zNvAmc0uv2Vew,54784
26
- pluggy_sdk/api/payment_intent_api.py,sha256=jcf5dDrmMjSz90cQ9H-u1NaIHW0aATLs6nQyyRID1tc,32020
27
- pluggy_sdk/api/payment_recipient_api.py,sha256=icivhir7nkhkcnR-LLKsuJJGRydeGSEiDSeP-eX8LnU,77933
28
- pluggy_sdk/api/payment_request_api.py,sha256=NFJ4eioioo5HysQPY_sICft-QOzyeF5CC_6afCvLLWs,115339
8
+ pluggy_sdk/api/__init__.py,sha256=CvDFS6hQLPk-UvV11SXYB5SYjgQofzRnXpS1flGnBGA,1631
9
+ pluggy_sdk/api/account_api.py,sha256=VEWOlBO1pkFbDvWeM1chS0sGuVU9n9imt1CdZUBRn2M,22173
10
+ pluggy_sdk/api/acquirer_anticipation_api.py,sha256=-M4n5ZN3KMDDzoicU-KO0XLey0aqK6WzEAgLUaVUF4U,26332
11
+ pluggy_sdk/api/acquirer_receivable_api.py,sha256=eyUak4Kse8R5-aEHz2ZUrzCmSn8qxxTGzXaOZSR_Cso,26246
12
+ pluggy_sdk/api/acquirer_sale_api.py,sha256=Uj3mjfZlrzvpWcjc3CRIi6qb5GCzBAm4pZB2zyWm-0c,25995
13
+ pluggy_sdk/api/auth_api.py,sha256=lIsv5kgB-jgRviI0r7tuwn3QJ99e7wKlf7nm6fKU4g8,23008
14
+ pluggy_sdk/api/benefit_api.py,sha256=A36o4xqcm9Z4oiHFYsiS04iYL2iCQ3zu_bhHe7a1ETM,21187
15
+ pluggy_sdk/api/bill_api.py,sha256=h50y5ww0sXD6EAPNg43h3-xpNVI7TBlF0kPRP6vDV8E,21086
16
+ pluggy_sdk/api/bulk_payment_api.py,sha256=yrkJ-1SXqZwpOIL35eJQh7h0xnHOAqBR60rUKNINxNk,32997
17
+ pluggy_sdk/api/category_api.py,sha256=-B9AiHwqGgRJSlAIM9JVn0-laFU7GkBV5JR-Y_n_CDc,41829
18
+ pluggy_sdk/api/connector_api.py,sha256=Z_mimbUiHXulR519ygCCmtflJ8DwL2ROuoDihyheO_I,41197
19
+ pluggy_sdk/api/consent_api.py,sha256=QV_vdVUvqNXw7-AS6CRxTLJqt1JrRYcpHQZPo92xyBc,21421
20
+ pluggy_sdk/api/identity_api.py,sha256=6nYRKapflVMntOCkGfRy8BRNalRwo6BhAYMlQZQqhfo,21728
21
+ pluggy_sdk/api/income_report_api.py,sha256=__xJnXikV9kivyevcFdoNvdEG0rpv4qF3ILPww1RW2A,11656
22
+ pluggy_sdk/api/investment_api.py,sha256=lCrtPmQNL9oo4M68f7fbcx5eFS0tTGKczMkqz1zOHnE,36178
23
+ pluggy_sdk/api/items_api.py,sha256=IBwjGgrWxu_tyd6merdFlFMKwDF6I7WXSIOniroz7es,54908
24
+ pluggy_sdk/api/loan_api.py,sha256=kNEYuAjMLW_EFMW1tUT0c_dhv1uNLbQldmoXd6_f3LE,20966
25
+ pluggy_sdk/api/payment_customer_api.py,sha256=BpJ39uZJNQX8bF7Mv125Ynb2OiOhy1xrjA_nwKzjU08,55099
26
+ pluggy_sdk/api/payment_intent_api.py,sha256=PnH7T04pHaLSTLFQwkQtKeQfDi4dYealNHQ2eGt8l80,32209
27
+ pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
28
+ pluggy_sdk/api/payment_recipient_api.py,sha256=9TXmijfHs32Hj9tAnRAUSQ3GZcb79uGnz-FyormdYAE,78374
29
+ pluggy_sdk/api/payment_request_api.py,sha256=Rhi5NulgJR49mg5yTW2a7Wgd2Pv3QkF6sgq1b0Azkmc,74287
30
+ pluggy_sdk/api/payment_schedule_api.py,sha256=asK2dGcBF4Czx_2i6SZHUcBjGszu-ziSF2Xxw_qP5bE,31389
29
31
  pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
30
- pluggy_sdk/api/portfolio_yield_api.py,sha256=R_Cz-1G0s7qOUltG-VOXi8GSCNceM1j4lmu9V7zM0jM,22320
31
- pluggy_sdk/api/smart_account_api.py,sha256=yDx88F6Lep1iepL4pN9o305Ko9mUOB20a-U0Rkz282U,66193
32
- pluggy_sdk/api/transaction_api.py,sha256=EOqLMWbyLTz93FlzhvHF68DcJ4BAgJ6_81K1mmy4Qr0,37553
33
- pluggy_sdk/api/webhook_api.py,sha256=IRqHT_F6VVrMxE3JkXeXidNQnjORmC89xZLTzgpwZNQ,55525
32
+ pluggy_sdk/api/portfolio_yield_api.py,sha256=7s_DeSuFUVnR2XWzdi5mFrKDGVz3izgIZsbZfzsBZ08,22446
33
+ pluggy_sdk/api/smart_account_api.py,sha256=ssIPAcWy_KjGcw-bC8Vr_m3nVrfG92VALXlMIxboxao,43575
34
+ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
35
+ pluggy_sdk/api/transaction_api.py,sha256=RZoU3aUqKeqanKGlyuo5DNyRLVWelnwOMNjg1FYBXNc,37742
36
+ pluggy_sdk/api/webhook_api.py,sha256=_g7Ca5YYLuED49BRGmG-IiA6I9IUbWF4zqrIgUQRUOw,55840
34
37
  pluggy_sdk/models/__init__.py,sha256=v4eVO5kef0i_hya7pF0lvR5WWBfcUgtxQnJot0VfSLE,11383
35
38
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
36
39
  pluggy_sdk/models/accounts_list200_response.py,sha256=P-3r6PIEv0uV5gkeOVD5pcQOu2M-c2wi2zkMLN9hxdI,3417
@@ -53,8 +56,8 @@ pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-m
53
56
  pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
54
57
  pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
55
58
  pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
56
- pluggy_sdk/models/benefit_loan.py,sha256=ojAmaDDAk_SS5ySuVP2H0C5SpNN4FhMWXLSOaHSeFqQ,6158
57
- pluggy_sdk/models/benefit_loan_client.py,sha256=03tOGl75FA3qNc36ya002_LUBY5YOBDbQFotx8tJ0P8,3756
59
+ pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
60
+ pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
58
61
  pluggy_sdk/models/benefit_response.py,sha256=Xtlg_Y87Ie9al_PQTv_Cc2UPttnqBJkBxxNozl3XBxo,5332
59
62
  pluggy_sdk/models/benefit_response_paying_institution.py,sha256=sur_yb6li6GoQqbt49OsD9FbPNx-kQ077fVMtuFOG5M,3044
60
63
  pluggy_sdk/models/benefits_list200_response.py,sha256=Q9O4rOyzNtGebcpxcE2W8XXBwUiBkgdrCJpa5NOH0wA,3440
@@ -71,7 +74,7 @@ pluggy_sdk/models/client_category_rule.py,sha256=MiJA4luKDsgTCfSV1jZj-MclCk46WF7
71
74
  pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
72
75
  pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
73
76
  pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
74
- pluggy_sdk/models/connector.py,sha256=QtR3K3eJQIXew-vzkhgUwZhVZD3cDNX2oiyBBTDM_qA,6878
77
+ pluggy_sdk/models/connector.py,sha256=X6guhp1yIGKbHK44UyqqkQHzd1IcsVhXR4j8zGBAnrY,7438
75
78
  pluggy_sdk/models/connector_credential.py,sha256=n9roD8qlX3VHOpug-zM7tXNizzIwp36PyBtf4J--39Q,4901
76
79
  pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
77
80
  pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
@@ -110,7 +113,7 @@ pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM
110
113
  pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
111
114
  pluggy_sdk/models/investment_transaction.py,sha256=sxdtNZ0ppU34lOqWDnK5r6zFmVOItVIaGv0dCcd-8yk,4733
112
115
  pluggy_sdk/models/investments_list200_response.py,sha256=m2PraWmNbGIMbw_9Jw7-IKSGwyuiH8u95lo_VGKdM8I,3434
113
- pluggy_sdk/models/item.py,sha256=Qa-gl-ikLarijDjvIt4V9faNyuWZlnqu9e1nHgG7Fp4,7226
116
+ pluggy_sdk/models/item.py,sha256=OL8dL0CvZbuTsZQ6kR6freAXTx88_etba9IesxRFqGM,7437
114
117
  pluggy_sdk/models/item_creation_error_response.py,sha256=n_AF0t3rg1XK9H1P_LHDalrUBK6uAQeR5aEpEe1vNOc,3586
115
118
  pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
116
119
  pluggy_sdk/models/item_options.py,sha256=cTRMzwsK1JUQvTAsKeENOy7qEyt4NJ01zSf8wZ62sgo,2882
@@ -196,7 +199,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
196
199
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
197
200
  pluggy_sdk/models/webhooks_list200_response.py,sha256=DITv0Fg0S1Jl8k9sSdKKwhWmzp0TmMmrJjQqgo36yL0,3360
198
201
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
199
- pluggy_sdk-1.0.0.post14.dist-info/METADATA,sha256=8Eo-ZGq2XDHEN0nKqMVCf_sRqOl3-AavhFPd6VtZWOI,23072
200
- pluggy_sdk-1.0.0.post14.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
201
- pluggy_sdk-1.0.0.post14.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
202
- pluggy_sdk-1.0.0.post14.dist-info/RECORD,,
202
+ pluggy_sdk-1.0.0.post16.dist-info/METADATA,sha256=95cjZpVpvDbUukoVF2JMEXGgPO6hshAGVlZJmOFaZpg,23541
203
+ pluggy_sdk-1.0.0.post16.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
204
+ pluggy_sdk-1.0.0.post16.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
205
+ pluggy_sdk-1.0.0.post16.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.1)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5