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.
- pluggy_sdk/__init__.py +4 -1
- pluggy_sdk/api/__init__.py +3 -0
- pluggy_sdk/api/account_api.py +12 -10
- pluggy_sdk/api/acquirer_anticipation_api.py +12 -10
- pluggy_sdk/api/acquirer_receivable_api.py +12 -10
- pluggy_sdk/api/acquirer_sale_api.py +12 -10
- pluggy_sdk/api/auth_api.py +12 -10
- pluggy_sdk/api/benefit_api.py +12 -10
- pluggy_sdk/api/bill_api.py +12 -10
- pluggy_sdk/api/bulk_payment_api.py +18 -15
- pluggy_sdk/api/category_api.py +24 -20
- pluggy_sdk/api/connector_api.py +18 -15
- pluggy_sdk/api/consent_api.py +12 -10
- pluggy_sdk/api/identity_api.py +12 -10
- pluggy_sdk/api/income_report_api.py +6 -5
- pluggy_sdk/api/investment_api.py +18 -15
- pluggy_sdk/api/items_api.py +30 -25
- pluggy_sdk/api/loan_api.py +12 -10
- pluggy_sdk/api/payment_customer_api.py +30 -25
- pluggy_sdk/api/payment_intent_api.py +18 -15
- pluggy_sdk/api/payment_receipts_api.py +842 -0
- pluggy_sdk/api/payment_recipient_api.py +42 -35
- pluggy_sdk/api/payment_request_api.py +134 -1187
- pluggy_sdk/api/payment_schedule_api.py +817 -0
- pluggy_sdk/api/portfolio_yield_api.py +12 -10
- pluggy_sdk/api/smart_account_api.py +24 -590
- pluggy_sdk/api/smart_account_transfer_api.py +610 -0
- pluggy_sdk/api/transaction_api.py +18 -15
- pluggy_sdk/api/webhook_api.py +30 -25
- pluggy_sdk/api_client.py +2 -2
- pluggy_sdk/configuration.py +17 -3
- pluggy_sdk/models/benefit_loan.py +6 -6
- pluggy_sdk/models/benefit_loan_client.py +3 -3
- pluggy_sdk/models/connector.py +6 -2
- pluggy_sdk/models/item.py +3 -1
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/METADATA +11 -9
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/RECORD +39 -36
- {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post16.dist-info}/WHEEL +1 -1
- {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 PaymentRecipientApi:
|
|
276
276
|
|
277
277
|
|
278
278
|
# set the HTTP header `Accept`
|
279
|
-
|
280
|
-
[
|
281
|
-
|
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:
|
@@ -550,11 +551,12 @@ class PaymentRecipientApi:
|
|
550
551
|
|
551
552
|
|
552
553
|
# set the HTTP header `Accept`
|
553
|
-
|
554
|
-
[
|
555
|
-
|
556
|
-
|
557
|
-
|
554
|
+
if 'Accept' not in _header_params:
|
555
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
556
|
+
[
|
557
|
+
'application/json'
|
558
|
+
]
|
559
|
+
)
|
558
560
|
|
559
561
|
|
560
562
|
# authentication setting
|
@@ -811,11 +813,12 @@ class PaymentRecipientApi:
|
|
811
813
|
|
812
814
|
|
813
815
|
# set the HTTP header `Accept`
|
814
|
-
|
815
|
-
[
|
816
|
-
|
817
|
-
|
818
|
-
|
816
|
+
if 'Accept' not in _header_params:
|
817
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
818
|
+
[
|
819
|
+
'application/json'
|
820
|
+
]
|
821
|
+
)
|
819
822
|
|
820
823
|
|
821
824
|
# authentication setting
|
@@ -1072,11 +1075,12 @@ class PaymentRecipientApi:
|
|
1072
1075
|
|
1073
1076
|
|
1074
1077
|
# set the HTTP header `Accept`
|
1075
|
-
|
1076
|
-
[
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1078
|
+
if 'Accept' not in _header_params:
|
1079
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1080
|
+
[
|
1081
|
+
'application/json'
|
1082
|
+
]
|
1083
|
+
)
|
1080
1084
|
|
1081
1085
|
|
1082
1086
|
# authentication setting
|
@@ -1345,11 +1349,12 @@ class PaymentRecipientApi:
|
|
1345
1349
|
|
1346
1350
|
|
1347
1351
|
# set the HTTP header `Accept`
|
1348
|
-
|
1349
|
-
[
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1352
|
+
if 'Accept' not in _header_params:
|
1353
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1354
|
+
[
|
1355
|
+
'application/json'
|
1356
|
+
]
|
1357
|
+
)
|
1353
1358
|
|
1354
1359
|
# set the HTTP header `Content-Type`
|
1355
1360
|
if _content_type:
|
@@ -1652,11 +1657,12 @@ class PaymentRecipientApi:
|
|
1652
1657
|
|
1653
1658
|
|
1654
1659
|
# set the HTTP header `Accept`
|
1655
|
-
|
1656
|
-
[
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
+
if 'Accept' not in _header_params:
|
1661
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1662
|
+
[
|
1663
|
+
'application/json'
|
1664
|
+
]
|
1665
|
+
)
|
1660
1666
|
|
1661
1667
|
|
1662
1668
|
# authentication setting
|
@@ -1946,11 +1952,12 @@ class PaymentRecipientApi:
|
|
1946
1952
|
|
1947
1953
|
|
1948
1954
|
# set the HTTP header `Accept`
|
1949
|
-
|
1950
|
-
[
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1955
|
+
if 'Accept' not in _header_params:
|
1956
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1957
|
+
[
|
1958
|
+
'application/json'
|
1959
|
+
]
|
1960
|
+
)
|
1954
1961
|
|
1955
1962
|
|
1956
1963
|
# authentication setting
|