pluggy-sdk 1.0.0.post13__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.
- pluggy_sdk/__init__.py +8 -8
- 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_recipient_api.py +42 -35
- pluggy_sdk/api/payment_request_api.py +75 -64
- pluggy_sdk/api/portfolio_yield_api.py +12 -10
- pluggy_sdk/api/smart_account_api.py +36 -30
- 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/__init__.py +7 -7
- pluggy_sdk/models/benefit_loan.py +121 -0
- pluggy_sdk/models/benefit_loan_client.py +102 -0
- pluggy_sdk/models/benefit_response.py +10 -10
- pluggy_sdk/models/connector.py +6 -2
- pluggy_sdk/models/custom.py +100 -0
- pluggy_sdk/models/daily.py +101 -0
- pluggy_sdk/models/monthly.py +103 -0
- pluggy_sdk/models/payment_request_schedule.py +48 -48
- pluggy_sdk/models/single.py +98 -0
- pluggy_sdk/models/weekly.py +110 -0
- {pluggy_sdk-1.0.0.post13.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/METADATA +13 -13
- {pluggy_sdk-1.0.0.post13.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/RECORD +42 -35
- {pluggy_sdk-1.0.0.post13.dist-info → pluggy_sdk-1.0.0.post15.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post13.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.
|
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
|
@@ -76,6 +76,8 @@ from pluggy_sdk.models.asset_distribution import AssetDistribution
|
|
76
76
|
from pluggy_sdk.models.auth_request import AuthRequest
|
77
77
|
from pluggy_sdk.models.auth_response import AuthResponse
|
78
78
|
from pluggy_sdk.models.bank_data import BankData
|
79
|
+
from pluggy_sdk.models.benefit_loan import BenefitLoan
|
80
|
+
from pluggy_sdk.models.benefit_loan_client import BenefitLoanClient
|
79
81
|
from pluggy_sdk.models.benefit_response import BenefitResponse
|
80
82
|
from pluggy_sdk.models.benefit_response_paying_institution import BenefitResponsePayingInstitution
|
81
83
|
from pluggy_sdk.models.benefits_list200_response import BenefitsList200Response
|
@@ -87,6 +89,7 @@ from pluggy_sdk.models.boleto_payer import BoletoPayer
|
|
87
89
|
from pluggy_sdk.models.boleto_recipient import BoletoRecipient
|
88
90
|
from pluggy_sdk.models.bulk_payment import BulkPayment
|
89
91
|
from pluggy_sdk.models.bulk_payments_list200_response import BulkPaymentsList200Response
|
92
|
+
from pluggy_sdk.models.custom import CUSTOM
|
90
93
|
from pluggy_sdk.models.category import Category
|
91
94
|
from pluggy_sdk.models.client_category_rule import ClientCategoryRule
|
92
95
|
from pluggy_sdk.models.company import Company
|
@@ -116,6 +119,7 @@ from pluggy_sdk.models.create_webhook import CreateWebhook
|
|
116
119
|
from pluggy_sdk.models.credential_select_option import CredentialSelectOption
|
117
120
|
from pluggy_sdk.models.credit_card_metadata import CreditCardMetadata
|
118
121
|
from pluggy_sdk.models.credit_data import CreditData
|
122
|
+
from pluggy_sdk.models.daily import DAILY
|
119
123
|
from pluggy_sdk.models.document import Document
|
120
124
|
from pluggy_sdk.models.email import Email
|
121
125
|
from pluggy_sdk.models.global_error_response import GlobalErrorResponse
|
@@ -147,6 +151,7 @@ from pluggy_sdk.models.loan_payment_release_over_parcel_fee import LoanPaymentRe
|
|
147
151
|
from pluggy_sdk.models.loan_payments import LoanPayments
|
148
152
|
from pluggy_sdk.models.loan_warranty import LoanWarranty
|
149
153
|
from pluggy_sdk.models.loans_list200_response import LoansList200Response
|
154
|
+
from pluggy_sdk.models.monthly import MONTHLY
|
150
155
|
from pluggy_sdk.models.merchant import Merchant
|
151
156
|
from pluggy_sdk.models.monthly_portfolio import MonthlyPortfolio
|
152
157
|
from pluggy_sdk.models.monthly_portfolio_response import MonthlyPortfolioResponse
|
@@ -181,17 +186,11 @@ from pluggy_sdk.models.payment_request_receipt_list200_response import PaymentRe
|
|
181
186
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
182
187
|
from pluggy_sdk.models.payment_requests_list200_response import PaymentRequestsList200Response
|
183
188
|
from pluggy_sdk.models.payment_schedules_list200_response import PaymentSchedulesList200Response
|
184
|
-
from pluggy_sdk.models.payroll_loan import PayrollLoan
|
185
|
-
from pluggy_sdk.models.payroll_loan_client import PayrollLoanClient
|
186
189
|
from pluggy_sdk.models.percentage_over_index import PercentageOverIndex
|
187
190
|
from pluggy_sdk.models.phone_number import PhoneNumber
|
188
191
|
from pluggy_sdk.models.pix_data import PixData
|
192
|
+
from pluggy_sdk.models.single import SINGLE
|
189
193
|
from pluggy_sdk.models.schedule_payment import SchedulePayment
|
190
|
-
from pluggy_sdk.models.schedule_type_custom import ScheduleTypeCustom
|
191
|
-
from pluggy_sdk.models.schedule_type_daily import ScheduleTypeDaily
|
192
|
-
from pluggy_sdk.models.schedule_type_monthly import ScheduleTypeMonthly
|
193
|
-
from pluggy_sdk.models.schedule_type_single import ScheduleTypeSingle
|
194
|
-
from pluggy_sdk.models.schedule_type_weekly import ScheduleTypeWeekly
|
195
194
|
from pluggy_sdk.models.smart_account import SmartAccount
|
196
195
|
from pluggy_sdk.models.smart_account_address import SmartAccountAddress
|
197
196
|
from pluggy_sdk.models.smart_account_balance import SmartAccountBalance
|
@@ -206,6 +205,7 @@ from pluggy_sdk.models.update_item_parameters import UpdateItemParameters
|
|
206
205
|
from pluggy_sdk.models.update_payment_recipient import UpdatePaymentRecipient
|
207
206
|
from pluggy_sdk.models.update_payment_request import UpdatePaymentRequest
|
208
207
|
from pluggy_sdk.models.update_transaction import UpdateTransaction
|
208
|
+
from pluggy_sdk.models.weekly import WEEKLY
|
209
209
|
from pluggy_sdk.models.webhook import Webhook
|
210
210
|
from pluggy_sdk.models.webhook_creation_error_response import WebhookCreationErrorResponse
|
211
211
|
from pluggy_sdk.models.webhooks_list200_response import WebhooksList200Response
|
pluggy_sdk/api/account_api.py
CHANGED
@@ -288,11 +288,12 @@ class AccountApi:
|
|
288
288
|
|
289
289
|
|
290
290
|
# set the HTTP header `Accept`
|
291
|
-
|
292
|
-
[
|
293
|
-
|
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
|
-
|
556
|
-
[
|
557
|
-
|
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
|
-
|
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
|
|
286
287
|
# authentication setting
|
@@ -628,11 +629,12 @@ class AcquirerAnticipationApi:
|
|
628
629
|
|
629
630
|
|
630
631
|
# set the HTTP header `Accept`
|
631
|
-
|
632
|
-
[
|
633
|
-
|
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
|
-
|
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
|
|
286
287
|
# authentication setting
|
@@ -628,11 +629,12 @@ class AcquirerReceivableApi:
|
|
628
629
|
|
629
630
|
|
630
631
|
# set the HTTP header `Accept`
|
631
|
-
|
632
|
-
[
|
633
|
-
|
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
|
-
|
368
|
-
[
|
369
|
-
|
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
|
-
|
632
|
-
[
|
633
|
-
|
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
|
pluggy_sdk/api/auth_api.py
CHANGED
@@ -277,11 +277,12 @@ class AuthApi:
|
|
277
277
|
|
278
278
|
|
279
279
|
# set the HTTP header `Accept`
|
280
|
-
|
281
|
-
[
|
282
|
-
|
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
|
-
|
560
|
-
[
|
561
|
-
|
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:
|
pluggy_sdk/api/benefit_api.py
CHANGED
@@ -271,11 +271,12 @@ class BenefitApi:
|
|
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
|
|
281
282
|
# authentication setting
|
@@ -531,11 +532,12 @@ class BenefitApi:
|
|
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
|
pluggy_sdk/api/bill_api.py
CHANGED
@@ -270,11 +270,12 @@ class BillApi:
|
|
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 BillApi:
|
|
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
|
@@ -273,11 +273,12 @@ class BulkPaymentApi:
|
|
273
273
|
|
274
274
|
|
275
275
|
# set the HTTP header `Accept`
|
276
|
-
|
277
|
-
[
|
278
|
-
|
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
|
-
|
551
|
-
[
|
552
|
-
|
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
|
-
|
828
|
-
[
|
829
|
-
|
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
|
pluggy_sdk/api/category_api.py
CHANGED
@@ -273,11 +273,12 @@ class CategoryApi:
|
|
273
273
|
|
274
274
|
|
275
275
|
# set the HTTP header `Accept`
|
276
|
-
|
277
|
-
[
|
278
|
-
|
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
|
-
|
538
|
-
[
|
539
|
-
|
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
|
-
|
802
|
-
[
|
803
|
-
|
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
|
-
|
1058
|
-
[
|
1059
|
-
|
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
|
pluggy_sdk/api/connector_api.py
CHANGED
@@ -290,11 +290,12 @@ class ConnectorApi:
|
|
290
290
|
|
291
291
|
|
292
292
|
# set the HTTP header `Accept`
|
293
|
-
|
294
|
-
[
|
295
|
-
|
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
|
-
|
658
|
-
[
|
659
|
-
|
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
|
-
|
931
|
-
[
|
932
|
-
|
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:
|
pluggy_sdk/api/consent_api.py
CHANGED
@@ -274,11 +274,12 @@ class ConsentApi:
|
|
274
274
|
|
275
275
|
|
276
276
|
# set the HTTP header `Accept`
|
277
|
-
|
278
|
-
[
|
279
|
-
|
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
|
-
|
544
|
-
[
|
545
|
-
|
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
|
pluggy_sdk/api/identity_api.py
CHANGED
@@ -278,11 +278,12 @@ class IdentityApi:
|
|
278
278
|
|
279
279
|
|
280
280
|
# set the HTTP header `Accept`
|
281
|
-
|
282
|
-
[
|
283
|
-
|
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
|
-
|
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
|
@@ -278,11 +278,12 @@ class IncomeReportApi:
|
|
278
278
|
|
279
279
|
|
280
280
|
# set the HTTP header `Accept`
|
281
|
-
|
282
|
-
[
|
283
|
-
|
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
|
pluggy_sdk/api/investment_api.py
CHANGED
@@ -307,11 +307,12 @@ class InvestmentApi:
|
|
307
307
|
|
308
308
|
|
309
309
|
# set the HTTP header `Accept`
|
310
|
-
|
311
|
-
[
|
312
|
-
|
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
|
-
|
622
|
-
[
|
623
|
-
|
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
|
-
|
883
|
-
[
|
884
|
-
|
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
|