pluggy-sdk 1.0.0.post15__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.
- pluggy_sdk/__init__.py +4 -1
- pluggy_sdk/api/__init__.py +3 -0
- pluggy_sdk/api/payment_receipts_api.py +842 -0
- pluggy_sdk/api/payment_request_api.py +0 -1064
- pluggy_sdk/api/payment_schedule_api.py +817 -0
- pluggy_sdk/api/smart_account_api.py +0 -572
- pluggy_sdk/api/smart_account_transfer_api.py +610 -0
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/item.py +3 -1
- {pluggy_sdk-1.0.0.post15.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/METADATA +10 -8
- {pluggy_sdk-1.0.0.post15.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/RECORD +14 -11
- {pluggy_sdk-1.0.0.post15.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post15.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
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,7 +19,7 @@ Pluggy's main API to review data and execute connectors
|
|
19
19
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
20
20
|
|
21
21
|
- API version: 1.0.0
|
22
|
-
- Package version: 1.0.0.
|
22
|
+
- Package version: 1.0.0.post16
|
23
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)
|
@@ -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
|
-
*
|
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,11 +1,11 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
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=
|
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=
|
8
|
+
pluggy_sdk/api/__init__.py,sha256=CvDFS6hQLPk-UvV11SXYB5SYjgQofzRnXpS1flGnBGA,1631
|
9
9
|
pluggy_sdk/api/account_api.py,sha256=VEWOlBO1pkFbDvWeM1chS0sGuVU9n9imt1CdZUBRn2M,22173
|
10
10
|
pluggy_sdk/api/acquirer_anticipation_api.py,sha256=-M4n5ZN3KMDDzoicU-KO0XLey0aqK6WzEAgLUaVUF4U,26332
|
11
11
|
pluggy_sdk/api/acquirer_receivable_api.py,sha256=eyUak4Kse8R5-aEHz2ZUrzCmSn8qxxTGzXaOZSR_Cso,26246
|
@@ -24,11 +24,14 @@ pluggy_sdk/api/items_api.py,sha256=IBwjGgrWxu_tyd6merdFlFMKwDF6I7WXSIOniroz7es,5
|
|
24
24
|
pluggy_sdk/api/loan_api.py,sha256=kNEYuAjMLW_EFMW1tUT0c_dhv1uNLbQldmoXd6_f3LE,20966
|
25
25
|
pluggy_sdk/api/payment_customer_api.py,sha256=BpJ39uZJNQX8bF7Mv125Ynb2OiOhy1xrjA_nwKzjU08,55099
|
26
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
|
27
28
|
pluggy_sdk/api/payment_recipient_api.py,sha256=9TXmijfHs32Hj9tAnRAUSQ3GZcb79uGnz-FyormdYAE,78374
|
28
|
-
pluggy_sdk/api/payment_request_api.py,sha256=
|
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
32
|
pluggy_sdk/api/portfolio_yield_api.py,sha256=7s_DeSuFUVnR2XWzdi5mFrKDGVz3izgIZsbZfzsBZ08,22446
|
31
|
-
pluggy_sdk/api/smart_account_api.py,sha256=
|
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
|
32
35
|
pluggy_sdk/api/transaction_api.py,sha256=RZoU3aUqKeqanKGlyuo5DNyRLVWelnwOMNjg1FYBXNc,37742
|
33
36
|
pluggy_sdk/api/webhook_api.py,sha256=_g7Ca5YYLuED49BRGmG-IiA6I9IUbWF4zqrIgUQRUOw,55840
|
34
37
|
pluggy_sdk/models/__init__.py,sha256=v4eVO5kef0i_hya7pF0lvR5WWBfcUgtxQnJot0VfSLE,11383
|
@@ -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=
|
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.
|
200
|
-
pluggy_sdk-1.0.0.
|
201
|
-
pluggy_sdk-1.0.0.
|
202
|
-
pluggy_sdk-1.0.0.
|
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,,
|
File without changes
|