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
pluggy_sdk/api/items_api.py
CHANGED
@@ -280,11 +280,12 @@ class ItemsApi:
|
|
280
280
|
|
281
281
|
|
282
282
|
# set the HTTP header `Accept`
|
283
|
-
|
284
|
-
[
|
285
|
-
|
286
|
-
|
287
|
-
|
283
|
+
if 'Accept' not in _header_params:
|
284
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
285
|
+
[
|
286
|
+
'application/json'
|
287
|
+
]
|
288
|
+
)
|
288
289
|
|
289
290
|
# set the HTTP header `Content-Type`
|
290
291
|
if _content_type:
|
@@ -557,11 +558,12 @@ class ItemsApi:
|
|
557
558
|
|
558
559
|
|
559
560
|
# set the HTTP header `Accept`
|
560
|
-
|
561
|
-
[
|
562
|
-
|
563
|
-
|
564
|
-
|
561
|
+
if 'Accept' not in _header_params:
|
562
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
563
|
+
[
|
564
|
+
'application/json'
|
565
|
+
]
|
566
|
+
)
|
565
567
|
|
566
568
|
|
567
569
|
# authentication setting
|
@@ -821,11 +823,12 @@ class ItemsApi:
|
|
821
823
|
|
822
824
|
|
823
825
|
# set the HTTP header `Accept`
|
824
|
-
|
825
|
-
[
|
826
|
-
|
827
|
-
|
828
|
-
|
826
|
+
if 'Accept' not in _header_params:
|
827
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
828
|
+
[
|
829
|
+
'application/json'
|
830
|
+
]
|
831
|
+
)
|
829
832
|
|
830
833
|
|
831
834
|
# authentication setting
|
@@ -1100,11 +1103,12 @@ class ItemsApi:
|
|
1100
1103
|
|
1101
1104
|
|
1102
1105
|
# set the HTTP header `Accept`
|
1103
|
-
|
1104
|
-
[
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1106
|
+
if 'Accept' not in _header_params:
|
1107
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1108
|
+
[
|
1109
|
+
'application/json'
|
1110
|
+
]
|
1111
|
+
)
|
1108
1112
|
|
1109
1113
|
# set the HTTP header `Content-Type`
|
1110
1114
|
if _content_type:
|
@@ -1398,11 +1402,12 @@ class ItemsApi:
|
|
1398
1402
|
|
1399
1403
|
|
1400
1404
|
# set the HTTP header `Accept`
|
1401
|
-
|
1402
|
-
[
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1405
|
+
if 'Accept' not in _header_params:
|
1406
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1407
|
+
[
|
1408
|
+
'application/json'
|
1409
|
+
]
|
1410
|
+
)
|
1406
1411
|
|
1407
1412
|
# set the HTTP header `Content-Type`
|
1408
1413
|
if _content_type:
|
pluggy_sdk/api/loan_api.py
CHANGED
@@ -270,11 +270,12 @@ class LoanApi:
|
|
270
270
|
|
271
271
|
|
272
272
|
# set the HTTP header `Accept`
|
273
|
-
|
274
|
-
[
|
275
|
-
|
276
|
-
|
277
|
-
|
273
|
+
if 'Accept' not in _header_params:
|
274
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
275
|
+
[
|
276
|
+
'application/json'
|
277
|
+
]
|
278
|
+
)
|
278
279
|
|
279
280
|
|
280
281
|
# authentication setting
|
@@ -531,11 +532,12 @@ class LoanApi:
|
|
531
532
|
|
532
533
|
|
533
534
|
# set the HTTP header `Accept`
|
534
|
-
|
535
|
-
[
|
536
|
-
|
537
|
-
|
538
|
-
|
535
|
+
if 'Accept' not in _header_params:
|
536
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
537
|
+
[
|
538
|
+
'application/json'
|
539
|
+
]
|
540
|
+
)
|
539
541
|
|
540
542
|
|
541
543
|
# authentication setting
|
@@ -271,11 +271,12 @@ class PaymentCustomerApi:
|
|
271
271
|
|
272
272
|
|
273
273
|
# set the HTTP header `Accept`
|
274
|
-
|
275
|
-
[
|
276
|
-
|
277
|
-
|
278
|
-
|
274
|
+
if 'Accept' not in _header_params:
|
275
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
276
|
+
[
|
277
|
+
'application/json'
|
278
|
+
]
|
279
|
+
)
|
279
280
|
|
280
281
|
# set the HTTP header `Content-Type`
|
281
282
|
if _content_type:
|
@@ -545,11 +546,12 @@ class PaymentCustomerApi:
|
|
545
546
|
|
546
547
|
|
547
548
|
# set the HTTP header `Accept`
|
548
|
-
|
549
|
-
[
|
550
|
-
|
551
|
-
|
552
|
-
|
549
|
+
if 'Accept' not in _header_params:
|
550
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
551
|
+
[
|
552
|
+
'application/json'
|
553
|
+
]
|
554
|
+
)
|
553
555
|
|
554
556
|
|
555
557
|
# authentication setting
|
@@ -806,11 +808,12 @@ class PaymentCustomerApi:
|
|
806
808
|
|
807
809
|
|
808
810
|
# set the HTTP header `Accept`
|
809
|
-
|
810
|
-
[
|
811
|
-
|
812
|
-
|
813
|
-
|
811
|
+
if 'Accept' not in _header_params:
|
812
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
813
|
+
[
|
814
|
+
'application/json'
|
815
|
+
]
|
816
|
+
)
|
814
817
|
|
815
818
|
|
816
819
|
# authentication setting
|
@@ -1079,11 +1082,12 @@ class PaymentCustomerApi:
|
|
1079
1082
|
|
1080
1083
|
|
1081
1084
|
# set the HTTP header `Accept`
|
1082
|
-
|
1083
|
-
[
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1085
|
+
if 'Accept' not in _header_params:
|
1086
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1087
|
+
[
|
1088
|
+
'application/json'
|
1089
|
+
]
|
1090
|
+
)
|
1087
1091
|
|
1088
1092
|
# set the HTTP header `Content-Type`
|
1089
1093
|
if _content_type:
|
@@ -1369,11 +1373,12 @@ class PaymentCustomerApi:
|
|
1369
1373
|
|
1370
1374
|
|
1371
1375
|
# set the HTTP header `Accept`
|
1372
|
-
|
1373
|
-
[
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1376
|
+
if 'Accept' not in _header_params:
|
1377
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1378
|
+
[
|
1379
|
+
'application/json'
|
1380
|
+
]
|
1381
|
+
)
|
1377
1382
|
|
1378
1383
|
|
1379
1384
|
# authentication setting
|
@@ -269,11 +269,12 @@ class PaymentIntentApi:
|
|
269
269
|
|
270
270
|
|
271
271
|
# set the HTTP header `Accept`
|
272
|
-
|
273
|
-
[
|
274
|
-
|
275
|
-
|
276
|
-
|
272
|
+
if 'Accept' not in _header_params:
|
273
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
274
|
+
[
|
275
|
+
'application/json'
|
276
|
+
]
|
277
|
+
)
|
277
278
|
|
278
279
|
# set the HTTP header `Content-Type`
|
279
280
|
if _content_type:
|
@@ -543,11 +544,12 @@ class PaymentIntentApi:
|
|
543
544
|
|
544
545
|
|
545
546
|
# set the HTTP header `Accept`
|
546
|
-
|
547
|
-
[
|
548
|
-
|
549
|
-
|
550
|
-
|
547
|
+
if 'Accept' not in _header_params:
|
548
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
549
|
+
[
|
550
|
+
'application/json'
|
551
|
+
]
|
552
|
+
)
|
551
553
|
|
552
554
|
|
553
555
|
# authentication setting
|
@@ -803,11 +805,12 @@ class PaymentIntentApi:
|
|
803
805
|
|
804
806
|
|
805
807
|
# set the HTTP header `Accept`
|
806
|
-
|
807
|
-
[
|
808
|
-
|
809
|
-
|
810
|
-
|
808
|
+
if 'Accept' not in _header_params:
|
809
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
810
|
+
[
|
811
|
+
'application/json'
|
812
|
+
]
|
813
|
+
)
|
811
814
|
|
812
815
|
|
813
816
|
# authentication setting
|