pluggy-sdk 1.0.0.post14__py3-none-any.whl → 1.0.0.post15__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 (34) hide show
  1. pluggy_sdk/__init__.py +1 -1
  2. pluggy_sdk/api/account_api.py +12 -10
  3. pluggy_sdk/api/acquirer_anticipation_api.py +12 -10
  4. pluggy_sdk/api/acquirer_receivable_api.py +12 -10
  5. pluggy_sdk/api/acquirer_sale_api.py +12 -10
  6. pluggy_sdk/api/auth_api.py +12 -10
  7. pluggy_sdk/api/benefit_api.py +12 -10
  8. pluggy_sdk/api/bill_api.py +12 -10
  9. pluggy_sdk/api/bulk_payment_api.py +18 -15
  10. pluggy_sdk/api/category_api.py +24 -20
  11. pluggy_sdk/api/connector_api.py +18 -15
  12. pluggy_sdk/api/consent_api.py +12 -10
  13. pluggy_sdk/api/identity_api.py +12 -10
  14. pluggy_sdk/api/income_report_api.py +6 -5
  15. pluggy_sdk/api/investment_api.py +18 -15
  16. pluggy_sdk/api/items_api.py +30 -25
  17. pluggy_sdk/api/loan_api.py +12 -10
  18. pluggy_sdk/api/payment_customer_api.py +30 -25
  19. pluggy_sdk/api/payment_intent_api.py +18 -15
  20. pluggy_sdk/api/payment_recipient_api.py +42 -35
  21. pluggy_sdk/api/payment_request_api.py +66 -55
  22. pluggy_sdk/api/portfolio_yield_api.py +12 -10
  23. pluggy_sdk/api/smart_account_api.py +36 -30
  24. pluggy_sdk/api/transaction_api.py +18 -15
  25. pluggy_sdk/api/webhook_api.py +30 -25
  26. pluggy_sdk/api_client.py +2 -2
  27. pluggy_sdk/configuration.py +17 -3
  28. pluggy_sdk/models/benefit_loan.py +6 -6
  29. pluggy_sdk/models/benefit_loan_client.py +3 -3
  30. pluggy_sdk/models/connector.py +6 -2
  31. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/METADATA +3 -3
  32. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/RECORD +34 -34
  33. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/WHEEL +1 -1
  34. {pluggy_sdk-1.0.0.post14.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py CHANGED
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.0.0.post14"
18
+ __version__ = "1.0.0.post15"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -288,11 +288,12 @@ class AccountApi:
288
288
 
289
289
 
290
290
  # set the HTTP header `Accept`
291
- _header_params['Accept'] = self.api_client.select_header_accept(
292
- [
293
- 'application/json'
294
- ]
295
- )
291
+ if 'Accept' not in _header_params:
292
+ _header_params['Accept'] = self.api_client.select_header_accept(
293
+ [
294
+ 'application/json'
295
+ ]
296
+ )
296
297
 
297
298
 
298
299
  # authentication setting
@@ -552,11 +553,12 @@ class AccountApi:
552
553
 
553
554
 
554
555
  # set the HTTP header `Accept`
555
- _header_params['Accept'] = self.api_client.select_header_accept(
556
- [
557
- 'application/json'
558
- ]
559
- )
556
+ if 'Accept' not in _header_params:
557
+ _header_params['Accept'] = self.api_client.select_header_accept(
558
+ [
559
+ 'application/json'
560
+ ]
561
+ )
560
562
 
561
563
 
562
564
  # authentication setting
@@ -276,11 +276,12 @@ class AcquirerAnticipationApi:
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
 
286
287
  # authentication setting
@@ -628,11 +629,12 @@ class AcquirerAnticipationApi:
628
629
 
629
630
 
630
631
  # set the HTTP header `Accept`
631
- _header_params['Accept'] = self.api_client.select_header_accept(
632
- [
633
- 'application/json'
634
- ]
635
- )
632
+ if 'Accept' not in _header_params:
633
+ _header_params['Accept'] = self.api_client.select_header_accept(
634
+ [
635
+ 'application/json'
636
+ ]
637
+ )
636
638
 
637
639
 
638
640
  # authentication setting
@@ -276,11 +276,12 @@ class AcquirerReceivableApi:
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
 
286
287
  # authentication setting
@@ -628,11 +629,12 @@ class AcquirerReceivableApi:
628
629
 
629
630
 
630
631
  # set the HTTP header `Accept`
631
- _header_params['Accept'] = self.api_client.select_header_accept(
632
- [
633
- 'application/json'
634
- ]
635
- )
632
+ if 'Accept' not in _header_params:
633
+ _header_params['Accept'] = self.api_client.select_header_accept(
634
+ [
635
+ 'application/json'
636
+ ]
637
+ )
636
638
 
637
639
 
638
640
  # authentication setting
@@ -364,11 +364,12 @@ class AcquirerSaleApi:
364
364
 
365
365
 
366
366
  # set the HTTP header `Accept`
367
- _header_params['Accept'] = self.api_client.select_header_accept(
368
- [
369
- 'application/json'
370
- ]
371
- )
367
+ if 'Accept' not in _header_params:
368
+ _header_params['Accept'] = self.api_client.select_header_accept(
369
+ [
370
+ 'application/json'
371
+ ]
372
+ )
372
373
 
373
374
 
374
375
  # authentication setting
@@ -628,11 +629,12 @@ class AcquirerSaleApi:
628
629
 
629
630
 
630
631
  # set the HTTP header `Accept`
631
- _header_params['Accept'] = self.api_client.select_header_accept(
632
- [
633
- 'application/json'
634
- ]
635
- )
632
+ if 'Accept' not in _header_params:
633
+ _header_params['Accept'] = self.api_client.select_header_accept(
634
+ [
635
+ 'application/json'
636
+ ]
637
+ )
636
638
 
637
639
 
638
640
  # authentication setting
@@ -277,11 +277,12 @@ class AuthApi:
277
277
 
278
278
 
279
279
  # set the HTTP header `Accept`
280
- _header_params['Accept'] = self.api_client.select_header_accept(
281
- [
282
- 'application/json'
283
- ]
284
- )
280
+ if 'Accept' not in _header_params:
281
+ _header_params['Accept'] = self.api_client.select_header_accept(
282
+ [
283
+ 'application/json'
284
+ ]
285
+ )
285
286
 
286
287
  # set the HTTP header `Content-Type`
287
288
  if _content_type:
@@ -556,11 +557,12 @@ class AuthApi:
556
557
 
557
558
 
558
559
  # set the HTTP header `Accept`
559
- _header_params['Accept'] = self.api_client.select_header_accept(
560
- [
561
- 'application/json'
562
- ]
563
- )
560
+ if 'Accept' not in _header_params:
561
+ _header_params['Accept'] = self.api_client.select_header_accept(
562
+ [
563
+ 'application/json'
564
+ ]
565
+ )
564
566
 
565
567
  # set the HTTP header `Content-Type`
566
568
  if _content_type:
@@ -271,11 +271,12 @@ class BenefitApi:
271
271
 
272
272
 
273
273
  # set the HTTP header `Accept`
274
- _header_params['Accept'] = self.api_client.select_header_accept(
275
- [
276
- 'application/json'
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
 
281
282
  # authentication setting
@@ -531,11 +532,12 @@ class BenefitApi:
531
532
 
532
533
 
533
534
  # set the HTTP header `Accept`
534
- _header_params['Accept'] = self.api_client.select_header_accept(
535
- [
536
- 'application/json'
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
@@ -270,11 +270,12 @@ class BillApi:
270
270
 
271
271
 
272
272
  # set the HTTP header `Accept`
273
- _header_params['Accept'] = self.api_client.select_header_accept(
274
- [
275
- 'application/json'
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 BillApi:
531
532
 
532
533
 
533
534
  # set the HTTP header `Accept`
534
- _header_params['Accept'] = self.api_client.select_header_accept(
535
- [
536
- 'application/json'
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
@@ -273,11 +273,12 @@ class BulkPaymentApi:
273
273
 
274
274
 
275
275
  # set the HTTP header `Accept`
276
- _header_params['Accept'] = self.api_client.select_header_accept(
277
- [
278
- 'application/json'
279
- ]
280
- )
276
+ if 'Accept' not in _header_params:
277
+ _header_params['Accept'] = self.api_client.select_header_accept(
278
+ [
279
+ 'application/json'
280
+ ]
281
+ )
281
282
 
282
283
  # set the HTTP header `Content-Type`
283
284
  if _content_type:
@@ -547,11 +548,12 @@ class BulkPaymentApi:
547
548
 
548
549
 
549
550
  # set the HTTP header `Accept`
550
- _header_params['Accept'] = self.api_client.select_header_accept(
551
- [
552
- 'application/json'
553
- ]
554
- )
551
+ if 'Accept' not in _header_params:
552
+ _header_params['Accept'] = self.api_client.select_header_accept(
553
+ [
554
+ 'application/json'
555
+ ]
556
+ )
555
557
 
556
558
 
557
559
  # authentication setting
@@ -824,11 +826,12 @@ class BulkPaymentApi:
824
826
 
825
827
 
826
828
  # set the HTTP header `Accept`
827
- _header_params['Accept'] = self.api_client.select_header_accept(
828
- [
829
- 'application/json'
830
- ]
831
- )
829
+ if 'Accept' not in _header_params:
830
+ _header_params['Accept'] = self.api_client.select_header_accept(
831
+ [
832
+ 'application/json'
833
+ ]
834
+ )
832
835
 
833
836
 
834
837
  # authentication setting
@@ -273,11 +273,12 @@ class CategoryApi:
273
273
 
274
274
 
275
275
  # set the HTTP header `Accept`
276
- _header_params['Accept'] = self.api_client.select_header_accept(
277
- [
278
- 'application/json'
279
- ]
280
- )
276
+ if 'Accept' not in _header_params:
277
+ _header_params['Accept'] = self.api_client.select_header_accept(
278
+ [
279
+ 'application/json'
280
+ ]
281
+ )
281
282
 
282
283
 
283
284
  # authentication setting
@@ -534,11 +535,12 @@ class CategoryApi:
534
535
 
535
536
 
536
537
  # set the HTTP header `Accept`
537
- _header_params['Accept'] = self.api_client.select_header_accept(
538
- [
539
- 'application/json'
540
- ]
541
- )
538
+ if 'Accept' not in _header_params:
539
+ _header_params['Accept'] = self.api_client.select_header_accept(
540
+ [
541
+ 'application/json'
542
+ ]
543
+ )
542
544
 
543
545
 
544
546
  # authentication setting
@@ -798,11 +800,12 @@ class CategoryApi:
798
800
 
799
801
 
800
802
  # set the HTTP header `Accept`
801
- _header_params['Accept'] = self.api_client.select_header_accept(
802
- [
803
- 'application/json'
804
- ]
805
- )
803
+ if 'Accept' not in _header_params:
804
+ _header_params['Accept'] = self.api_client.select_header_accept(
805
+ [
806
+ 'application/json'
807
+ ]
808
+ )
806
809
 
807
810
  # set the HTTP header `Content-Type`
808
811
  if _content_type:
@@ -1054,11 +1057,12 @@ class CategoryApi:
1054
1057
 
1055
1058
 
1056
1059
  # set the HTTP header `Accept`
1057
- _header_params['Accept'] = self.api_client.select_header_accept(
1058
- [
1059
- 'application/json'
1060
- ]
1061
- )
1060
+ if 'Accept' not in _header_params:
1061
+ _header_params['Accept'] = self.api_client.select_header_accept(
1062
+ [
1063
+ 'application/json'
1064
+ ]
1065
+ )
1062
1066
 
1063
1067
 
1064
1068
  # authentication setting
@@ -290,11 +290,12 @@ class ConnectorApi:
290
290
 
291
291
 
292
292
  # set the HTTP header `Accept`
293
- _header_params['Accept'] = self.api_client.select_header_accept(
294
- [
295
- 'application/json'
296
- ]
297
- )
293
+ if 'Accept' not in _header_params:
294
+ _header_params['Accept'] = self.api_client.select_header_accept(
295
+ [
296
+ 'application/json'
297
+ ]
298
+ )
298
299
 
299
300
 
300
301
  # authentication setting
@@ -654,11 +655,12 @@ class ConnectorApi:
654
655
 
655
656
 
656
657
  # set the HTTP header `Accept`
657
- _header_params['Accept'] = self.api_client.select_header_accept(
658
- [
659
- 'application/json'
660
- ]
661
- )
658
+ if 'Accept' not in _header_params:
659
+ _header_params['Accept'] = self.api_client.select_header_accept(
660
+ [
661
+ 'application/json'
662
+ ]
663
+ )
662
664
 
663
665
 
664
666
  # authentication setting
@@ -927,11 +929,12 @@ class ConnectorApi:
927
929
 
928
930
 
929
931
  # set the HTTP header `Accept`
930
- _header_params['Accept'] = self.api_client.select_header_accept(
931
- [
932
- 'application/json'
933
- ]
934
- )
932
+ if 'Accept' not in _header_params:
933
+ _header_params['Accept'] = self.api_client.select_header_accept(
934
+ [
935
+ 'application/json'
936
+ ]
937
+ )
935
938
 
936
939
  # set the HTTP header `Content-Type`
937
940
  if _content_type:
@@ -274,11 +274,12 @@ class ConsentApi:
274
274
 
275
275
 
276
276
  # set the HTTP header `Accept`
277
- _header_params['Accept'] = self.api_client.select_header_accept(
278
- [
279
- 'application/json'
280
- ]
281
- )
277
+ if 'Accept' not in _header_params:
278
+ _header_params['Accept'] = self.api_client.select_header_accept(
279
+ [
280
+ 'application/json'
281
+ ]
282
+ )
282
283
 
283
284
 
284
285
  # authentication setting
@@ -540,11 +541,12 @@ class ConsentApi:
540
541
 
541
542
 
542
543
  # set the HTTP header `Accept`
543
- _header_params['Accept'] = self.api_client.select_header_accept(
544
- [
545
- 'application/json'
546
- ]
547
- )
544
+ if 'Accept' not in _header_params:
545
+ _header_params['Accept'] = self.api_client.select_header_accept(
546
+ [
547
+ 'application/json'
548
+ ]
549
+ )
548
550
 
549
551
 
550
552
  # authentication setting
@@ -278,11 +278,12 @@ class IdentityApi:
278
278
 
279
279
 
280
280
  # set the HTTP header `Accept`
281
- _header_params['Accept'] = self.api_client.select_header_accept(
282
- [
283
- 'application/json'
284
- ]
285
- )
281
+ if 'Accept' not in _header_params:
282
+ _header_params['Accept'] = self.api_client.select_header_accept(
283
+ [
284
+ 'application/json'
285
+ ]
286
+ )
286
287
 
287
288
 
288
289
  # authentication setting
@@ -545,11 +546,12 @@ class IdentityApi:
545
546
 
546
547
 
547
548
  # set the HTTP header `Accept`
548
- _header_params['Accept'] = self.api_client.select_header_accept(
549
- [
550
- 'application/json'
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
@@ -278,11 +278,12 @@ class IncomeReportApi:
278
278
 
279
279
 
280
280
  # set the HTTP header `Accept`
281
- _header_params['Accept'] = self.api_client.select_header_accept(
282
- [
283
- 'application/json'
284
- ]
285
- )
281
+ if 'Accept' not in _header_params:
282
+ _header_params['Accept'] = self.api_client.select_header_accept(
283
+ [
284
+ 'application/json'
285
+ ]
286
+ )
286
287
 
287
288
 
288
289
  # authentication setting
@@ -307,11 +307,12 @@ class InvestmentApi:
307
307
 
308
308
 
309
309
  # set the HTTP header `Accept`
310
- _header_params['Accept'] = self.api_client.select_header_accept(
311
- [
312
- 'application/json'
313
- ]
314
- )
310
+ if 'Accept' not in _header_params:
311
+ _header_params['Accept'] = self.api_client.select_header_accept(
312
+ [
313
+ 'application/json'
314
+ ]
315
+ )
315
316
 
316
317
 
317
318
  # authentication setting
@@ -618,11 +619,12 @@ class InvestmentApi:
618
619
 
619
620
 
620
621
  # set the HTTP header `Accept`
621
- _header_params['Accept'] = self.api_client.select_header_accept(
622
- [
623
- 'application/json'
624
- ]
625
- )
622
+ if 'Accept' not in _header_params:
623
+ _header_params['Accept'] = self.api_client.select_header_accept(
624
+ [
625
+ 'application/json'
626
+ ]
627
+ )
626
628
 
627
629
 
628
630
  # authentication setting
@@ -879,11 +881,12 @@ class InvestmentApi:
879
881
 
880
882
 
881
883
  # set the HTTP header `Accept`
882
- _header_params['Accept'] = self.api_client.select_header_accept(
883
- [
884
- 'application/json'
885
- ]
886
- )
884
+ if 'Accept' not in _header_params:
885
+ _header_params['Accept'] = self.api_client.select_header_accept(
886
+ [
887
+ 'application/json'
888
+ ]
889
+ )
887
890
 
888
891
 
889
892
  # authentication setting