pluggy-sdk 1.0.0.post18__py3-none-any.whl → 1.0.0.post19__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 +6 -2
  3. pluggy_sdk/api/acquirer_anticipation_api.py +6 -2
  4. pluggy_sdk/api/acquirer_receivable_api.py +6 -2
  5. pluggy_sdk/api/acquirer_sale_api.py +6 -2
  6. pluggy_sdk/api/auth_api.py +6 -2
  7. pluggy_sdk/api/benefit_api.py +6 -2
  8. pluggy_sdk/api/bill_api.py +6 -2
  9. pluggy_sdk/api/bulk_payment_api.py +9 -3
  10. pluggy_sdk/api/category_api.py +12 -4
  11. pluggy_sdk/api/connector_api.py +9 -3
  12. pluggy_sdk/api/consent_api.py +6 -2
  13. pluggy_sdk/api/identity_api.py +6 -2
  14. pluggy_sdk/api/income_report_api.py +3 -1
  15. pluggy_sdk/api/investment_api.py +9 -3
  16. pluggy_sdk/api/items_api.py +15 -5
  17. pluggy_sdk/api/loan_api.py +6 -2
  18. pluggy_sdk/api/payment_customer_api.py +15 -5
  19. pluggy_sdk/api/payment_intent_api.py +9 -3
  20. pluggy_sdk/api/payment_recipient_api.py +21 -7
  21. pluggy_sdk/api/payment_request_api.py +30 -10
  22. pluggy_sdk/api/payment_schedule_api.py +9 -3
  23. pluggy_sdk/api/portfolio_yield_api.py +6 -2
  24. pluggy_sdk/api/smart_account_api.py +18 -6
  25. pluggy_sdk/api/smart_transfer_api.py +15 -5
  26. pluggy_sdk/api/transaction_api.py +9 -3
  27. pluggy_sdk/api/webhook_api.py +15 -5
  28. pluggy_sdk/api_client.py +13 -4
  29. pluggy_sdk/configuration.py +1 -1
  30. pluggy_sdk/models/create_item.py +3 -1
  31. {pluggy_sdk-1.0.0.post18.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/METADATA +3 -3
  32. {pluggy_sdk-1.0.0.post18.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/RECORD +34 -34
  33. {pluggy_sdk-1.0.0.post18.dist-info → pluggy_sdk-1.0.0.post19.dist-info}/WHEEL +1 -1
  34. {pluggy_sdk-1.0.0.post18.dist-info → pluggy_sdk-1.0.0.post19.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.post18"
18
+ __version__ = "1.0.0.post19"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -269,7 +269,9 @@ class AccountApi:
269
269
  _query_params: List[Tuple[str, str]] = []
270
270
  _header_params: Dict[str, Optional[str]] = _headers or {}
271
271
  _form_params: List[Tuple[str, str]] = []
272
- _files: Dict[str, Union[str, bytes]] = {}
272
+ _files: Dict[
273
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
274
+ ] = {}
273
275
  _body_params: Optional[bytes] = None
274
276
 
275
277
  # process the path parameters
@@ -540,7 +542,9 @@ class AccountApi:
540
542
  _query_params: List[Tuple[str, str]] = []
541
543
  _header_params: Dict[str, Optional[str]] = _headers or {}
542
544
  _form_params: List[Tuple[str, str]] = []
543
- _files: Dict[str, Union[str, bytes]] = {}
545
+ _files: Dict[
546
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
547
+ ] = {}
544
548
  _body_params: Optional[bytes] = None
545
549
 
546
550
  # process the path parameters
@@ -263,7 +263,9 @@ class AcquirerAnticipationApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -580,7 +582,9 @@ class AcquirerAnticipationApi:
580
582
  _query_params: List[Tuple[str, str]] = []
581
583
  _header_params: Dict[str, Optional[str]] = _headers or {}
582
584
  _form_params: List[Tuple[str, str]] = []
583
- _files: Dict[str, Union[str, bytes]] = {}
585
+ _files: Dict[
586
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
587
+ ] = {}
584
588
  _body_params: Optional[bytes] = None
585
589
 
586
590
  # process the path parameters
@@ -263,7 +263,9 @@ class AcquirerReceivableApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -580,7 +582,9 @@ class AcquirerReceivableApi:
580
582
  _query_params: List[Tuple[str, str]] = []
581
583
  _header_params: Dict[str, Optional[str]] = _headers or {}
582
584
  _form_params: List[Tuple[str, str]] = []
583
- _files: Dict[str, Union[str, bytes]] = {}
585
+ _files: Dict[
586
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
587
+ ] = {}
584
588
  _body_params: Optional[bytes] = None
585
589
 
586
590
  # process the path parameters
@@ -315,7 +315,9 @@ class AcquirerSaleApi:
315
315
  _query_params: List[Tuple[str, str]] = []
316
316
  _header_params: Dict[str, Optional[str]] = _headers or {}
317
317
  _form_params: List[Tuple[str, str]] = []
318
- _files: Dict[str, Union[str, bytes]] = {}
318
+ _files: Dict[
319
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
320
+ ] = {}
319
321
  _body_params: Optional[bytes] = None
320
322
 
321
323
  # process the path parameters
@@ -616,7 +618,9 @@ class AcquirerSaleApi:
616
618
  _query_params: List[Tuple[str, str]] = []
617
619
  _header_params: Dict[str, Optional[str]] = _headers or {}
618
620
  _form_params: List[Tuple[str, str]] = []
619
- _files: Dict[str, Union[str, bytes]] = {}
621
+ _files: Dict[
622
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
623
+ ] = {}
620
624
  _body_params: Optional[bytes] = None
621
625
 
622
626
  # process the path parameters
@@ -264,7 +264,9 @@ class AuthApi:
264
264
  _query_params: List[Tuple[str, str]] = []
265
265
  _header_params: Dict[str, Optional[str]] = _headers or {}
266
266
  _form_params: List[Tuple[str, str]] = []
267
- _files: Dict[str, Union[str, bytes]] = {}
267
+ _files: Dict[
268
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
269
+ ] = {}
268
270
  _body_params: Optional[bytes] = None
269
271
 
270
272
  # process the path parameters
@@ -544,7 +546,9 @@ class AuthApi:
544
546
  _query_params: List[Tuple[str, str]] = []
545
547
  _header_params: Dict[str, Optional[str]] = _headers or {}
546
548
  _form_params: List[Tuple[str, str]] = []
547
- _files: Dict[str, Union[str, bytes]] = {}
549
+ _files: Dict[
550
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
551
+ ] = {}
548
552
  _body_params: Optional[bytes] = None
549
553
 
550
554
  # process the path parameters
@@ -258,7 +258,9 @@ class BenefitApi:
258
258
  _query_params: List[Tuple[str, str]] = []
259
259
  _header_params: Dict[str, Optional[str]] = _headers or {}
260
260
  _form_params: List[Tuple[str, str]] = []
261
- _files: Dict[str, Union[str, bytes]] = {}
261
+ _files: Dict[
262
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
263
+ ] = {}
262
264
  _body_params: Optional[bytes] = None
263
265
 
264
266
  # process the path parameters
@@ -517,7 +519,9 @@ class BenefitApi:
517
519
  _query_params: List[Tuple[str, str]] = []
518
520
  _header_params: Dict[str, Optional[str]] = _headers or {}
519
521
  _form_params: List[Tuple[str, str]] = []
520
- _files: Dict[str, Union[str, bytes]] = {}
522
+ _files: Dict[
523
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
524
+ ] = {}
521
525
  _body_params: Optional[bytes] = None
522
526
 
523
527
  # process the path parameters
@@ -255,7 +255,9 @@ class BillApi:
255
255
  _query_params: List[Tuple[str, str]] = []
256
256
  _header_params: Dict[str, Optional[str]] = _headers or {}
257
257
  _form_params: List[Tuple[str, str]] = []
258
- _files: Dict[str, Union[str, bytes]] = {}
258
+ _files: Dict[
259
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
260
+ ] = {}
259
261
  _body_params: Optional[bytes] = None
260
262
 
261
263
  # process the path parameters
@@ -519,7 +521,9 @@ class BillApi:
519
521
  _query_params: List[Tuple[str, str]] = []
520
522
  _header_params: Dict[str, Optional[str]] = _headers or {}
521
523
  _form_params: List[Tuple[str, str]] = []
522
- _files: Dict[str, Union[str, bytes]] = {}
524
+ _files: Dict[
525
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
526
+ ] = {}
523
527
  _body_params: Optional[bytes] = None
524
528
 
525
529
  # process the path parameters
@@ -260,7 +260,9 @@ class BulkPaymentApi:
260
260
  _query_params: List[Tuple[str, str]] = []
261
261
  _header_params: Dict[str, Optional[str]] = _headers or {}
262
262
  _form_params: List[Tuple[str, str]] = []
263
- _files: Dict[str, Union[str, bytes]] = {}
263
+ _files: Dict[
264
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
265
+ ] = {}
264
266
  _body_params: Optional[bytes] = None
265
267
 
266
268
  # process the path parameters
@@ -535,7 +537,9 @@ class BulkPaymentApi:
535
537
  _query_params: List[Tuple[str, str]] = []
536
538
  _header_params: Dict[str, Optional[str]] = _headers or {}
537
539
  _form_params: List[Tuple[str, str]] = []
538
- _files: Dict[str, Union[str, bytes]] = {}
540
+ _files: Dict[
541
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
542
+ ] = {}
539
543
  _body_params: Optional[bytes] = None
540
544
 
541
545
  # process the path parameters
@@ -807,7 +811,9 @@ class BulkPaymentApi:
807
811
  _query_params: List[Tuple[str, str]] = []
808
812
  _header_params: Dict[str, Optional[str]] = _headers or {}
809
813
  _form_params: List[Tuple[str, str]] = []
810
- _files: Dict[str, Union[str, bytes]] = {}
814
+ _files: Dict[
815
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
816
+ ] = {}
811
817
  _body_params: Optional[bytes] = None
812
818
 
813
819
  # process the path parameters
@@ -258,7 +258,9 @@ class CategoryApi:
258
258
  _query_params: List[Tuple[str, str]] = []
259
259
  _header_params: Dict[str, Optional[str]] = _headers or {}
260
260
  _form_params: List[Tuple[str, str]] = []
261
- _files: Dict[str, Union[str, bytes]] = {}
261
+ _files: Dict[
262
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
263
+ ] = {}
262
264
  _body_params: Optional[bytes] = None
263
265
 
264
266
  # process the path parameters
@@ -522,7 +524,9 @@ class CategoryApi:
522
524
  _query_params: List[Tuple[str, str]] = []
523
525
  _header_params: Dict[str, Optional[str]] = _headers or {}
524
526
  _form_params: List[Tuple[str, str]] = []
525
- _files: Dict[str, Union[str, bytes]] = {}
527
+ _files: Dict[
528
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
529
+ ] = {}
526
530
  _body_params: Optional[bytes] = None
527
531
 
528
532
  # process the path parameters
@@ -787,7 +791,9 @@ class CategoryApi:
787
791
  _query_params: List[Tuple[str, str]] = []
788
792
  _header_params: Dict[str, Optional[str]] = _headers or {}
789
793
  _form_params: List[Tuple[str, str]] = []
790
- _files: Dict[str, Union[str, bytes]] = {}
794
+ _files: Dict[
795
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
796
+ ] = {}
791
797
  _body_params: Optional[bytes] = None
792
798
 
793
799
  # process the path parameters
@@ -1046,7 +1052,9 @@ class CategoryApi:
1046
1052
  _query_params: List[Tuple[str, str]] = []
1047
1053
  _header_params: Dict[str, Optional[str]] = _headers or {}
1048
1054
  _form_params: List[Tuple[str, str]] = []
1049
- _files: Dict[str, Union[str, bytes]] = {}
1055
+ _files: Dict[
1056
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1057
+ ] = {}
1050
1058
  _body_params: Optional[bytes] = None
1051
1059
 
1052
1060
  # process the path parameters
@@ -273,7 +273,9 @@ class ConnectorApi:
273
273
  _query_params: List[Tuple[str, str]] = []
274
274
  _header_params: Dict[str, Optional[str]] = _headers or {}
275
275
  _form_params: List[Tuple[str, str]] = []
276
- _files: Dict[str, Union[str, bytes]] = {}
276
+ _files: Dict[
277
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
278
+ ] = {}
277
279
  _body_params: Optional[bytes] = None
278
280
 
279
281
  # process the path parameters
@@ -616,7 +618,9 @@ class ConnectorApi:
616
618
  _query_params: List[Tuple[str, str]] = []
617
619
  _header_params: Dict[str, Optional[str]] = _headers or {}
618
620
  _form_params: List[Tuple[str, str]] = []
619
- _files: Dict[str, Union[str, bytes]] = {}
621
+ _files: Dict[
622
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
623
+ ] = {}
620
624
  _body_params: Optional[bytes] = None
621
625
 
622
626
  # process the path parameters
@@ -914,7 +918,9 @@ class ConnectorApi:
914
918
  _query_params: List[Tuple[str, str]] = []
915
919
  _header_params: Dict[str, Optional[str]] = _headers or {}
916
920
  _form_params: List[Tuple[str, str]] = []
917
- _files: Dict[str, Union[str, bytes]] = {}
921
+ _files: Dict[
922
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
923
+ ] = {}
918
924
  _body_params: Optional[bytes] = None
919
925
 
920
926
  # process the path parameters
@@ -261,7 +261,9 @@ class ConsentApi:
261
261
  _query_params: List[Tuple[str, str]] = []
262
262
  _header_params: Dict[str, Optional[str]] = _headers or {}
263
263
  _form_params: List[Tuple[str, str]] = []
264
- _files: Dict[str, Union[str, bytes]] = {}
264
+ _files: Dict[
265
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
266
+ ] = {}
265
267
  _body_params: Optional[bytes] = None
266
268
 
267
269
  # process the path parameters
@@ -526,7 +528,9 @@ class ConsentApi:
526
528
  _query_params: List[Tuple[str, str]] = []
527
529
  _header_params: Dict[str, Optional[str]] = _headers or {}
528
530
  _form_params: List[Tuple[str, str]] = []
529
- _files: Dict[str, Union[str, bytes]] = {}
531
+ _files: Dict[
532
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
533
+ ] = {}
530
534
  _body_params: Optional[bytes] = None
531
535
 
532
536
  # process the path parameters
@@ -263,7 +263,9 @@ class IdentityApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -533,7 +535,9 @@ class IdentityApi:
533
535
  _query_params: List[Tuple[str, str]] = []
534
536
  _header_params: Dict[str, Optional[str]] = _headers or {}
535
537
  _form_params: List[Tuple[str, str]] = []
536
- _files: Dict[str, Union[str, bytes]] = {}
538
+ _files: Dict[
539
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
540
+ ] = {}
537
541
  _body_params: Optional[bytes] = None
538
542
 
539
543
  # process the path parameters
@@ -263,7 +263,9 @@ class IncomeReportApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -286,7 +286,9 @@ class InvestmentApi:
286
286
  _query_params: List[Tuple[str, str]] = []
287
287
  _header_params: Dict[str, Optional[str]] = _headers or {}
288
288
  _form_params: List[Tuple[str, str]] = []
289
- _files: Dict[str, Union[str, bytes]] = {}
289
+ _files: Dict[
290
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
291
+ ] = {}
290
292
  _body_params: Optional[bytes] = None
291
293
 
292
294
  # process the path parameters
@@ -592,7 +594,9 @@ class InvestmentApi:
592
594
  _query_params: List[Tuple[str, str]] = []
593
595
  _header_params: Dict[str, Optional[str]] = _headers or {}
594
596
  _form_params: List[Tuple[str, str]] = []
595
- _files: Dict[str, Union[str, bytes]] = {}
597
+ _files: Dict[
598
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
599
+ ] = {}
596
600
  _body_params: Optional[bytes] = None
597
601
 
598
602
  # process the path parameters
@@ -868,7 +872,9 @@ class InvestmentApi:
868
872
  _query_params: List[Tuple[str, str]] = []
869
873
  _header_params: Dict[str, Optional[str]] = _headers or {}
870
874
  _form_params: List[Tuple[str, str]] = []
871
- _files: Dict[str, Union[str, bytes]] = {}
875
+ _files: Dict[
876
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
877
+ ] = {}
872
878
  _body_params: Optional[bytes] = None
873
879
 
874
880
  # process the path parameters
@@ -267,7 +267,9 @@ class ItemsApi:
267
267
  _query_params: List[Tuple[str, str]] = []
268
268
  _header_params: Dict[str, Optional[str]] = _headers or {}
269
269
  _form_params: List[Tuple[str, str]] = []
270
- _files: Dict[str, Union[str, bytes]] = {}
270
+ _files: Dict[
271
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
272
+ ] = {}
271
273
  _body_params: Optional[bytes] = None
272
274
 
273
275
  # process the path parameters
@@ -545,7 +547,9 @@ class ItemsApi:
545
547
  _query_params: List[Tuple[str, str]] = []
546
548
  _header_params: Dict[str, Optional[str]] = _headers or {}
547
549
  _form_params: List[Tuple[str, str]] = []
548
- _files: Dict[str, Union[str, bytes]] = {}
550
+ _files: Dict[
551
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
552
+ ] = {}
549
553
  _body_params: Optional[bytes] = None
550
554
 
551
555
  # process the path parameters
@@ -810,7 +814,9 @@ class ItemsApi:
810
814
  _query_params: List[Tuple[str, str]] = []
811
815
  _header_params: Dict[str, Optional[str]] = _headers or {}
812
816
  _form_params: List[Tuple[str, str]] = []
813
- _files: Dict[str, Union[str, bytes]] = {}
817
+ _files: Dict[
818
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
819
+ ] = {}
814
820
  _body_params: Optional[bytes] = None
815
821
 
816
822
  # process the path parameters
@@ -1088,7 +1094,9 @@ class ItemsApi:
1088
1094
  _query_params: List[Tuple[str, str]] = []
1089
1095
  _header_params: Dict[str, Optional[str]] = _headers or {}
1090
1096
  _form_params: List[Tuple[str, str]] = []
1091
- _files: Dict[str, Union[str, bytes]] = {}
1097
+ _files: Dict[
1098
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1099
+ ] = {}
1092
1100
  _body_params: Optional[bytes] = None
1093
1101
 
1094
1102
  # process the path parameters
@@ -1387,7 +1395,9 @@ class ItemsApi:
1387
1395
  _query_params: List[Tuple[str, str]] = []
1388
1396
  _header_params: Dict[str, Optional[str]] = _headers or {}
1389
1397
  _form_params: List[Tuple[str, str]] = []
1390
- _files: Dict[str, Union[str, bytes]] = {}
1398
+ _files: Dict[
1399
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1400
+ ] = {}
1391
1401
  _body_params: Optional[bytes] = None
1392
1402
 
1393
1403
  # process the path parameters
@@ -255,7 +255,9 @@ class LoanApi:
255
255
  _query_params: List[Tuple[str, str]] = []
256
256
  _header_params: Dict[str, Optional[str]] = _headers or {}
257
257
  _form_params: List[Tuple[str, str]] = []
258
- _files: Dict[str, Union[str, bytes]] = {}
258
+ _files: Dict[
259
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
260
+ ] = {}
259
261
  _body_params: Optional[bytes] = None
260
262
 
261
263
  # process the path parameters
@@ -519,7 +521,9 @@ class LoanApi:
519
521
  _query_params: List[Tuple[str, str]] = []
520
522
  _header_params: Dict[str, Optional[str]] = _headers or {}
521
523
  _form_params: List[Tuple[str, str]] = []
522
- _files: Dict[str, Union[str, bytes]] = {}
524
+ _files: Dict[
525
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
526
+ ] = {}
523
527
  _body_params: Optional[bytes] = None
524
528
 
525
529
  # process the path parameters
@@ -258,7 +258,9 @@ class PaymentCustomerApi:
258
258
  _query_params: List[Tuple[str, str]] = []
259
259
  _header_params: Dict[str, Optional[str]] = _headers or {}
260
260
  _form_params: List[Tuple[str, str]] = []
261
- _files: Dict[str, Union[str, bytes]] = {}
261
+ _files: Dict[
262
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
263
+ ] = {}
262
264
  _body_params: Optional[bytes] = None
263
265
 
264
266
  # process the path parameters
@@ -533,7 +535,9 @@ class PaymentCustomerApi:
533
535
  _query_params: List[Tuple[str, str]] = []
534
536
  _header_params: Dict[str, Optional[str]] = _headers or {}
535
537
  _form_params: List[Tuple[str, str]] = []
536
- _files: Dict[str, Union[str, bytes]] = {}
538
+ _files: Dict[
539
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
540
+ ] = {}
537
541
  _body_params: Optional[bytes] = None
538
542
 
539
543
  # process the path parameters
@@ -795,7 +799,9 @@ class PaymentCustomerApi:
795
799
  _query_params: List[Tuple[str, str]] = []
796
800
  _header_params: Dict[str, Optional[str]] = _headers or {}
797
801
  _form_params: List[Tuple[str, str]] = []
798
- _files: Dict[str, Union[str, bytes]] = {}
802
+ _files: Dict[
803
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
804
+ ] = {}
799
805
  _body_params: Optional[bytes] = None
800
806
 
801
807
  # process the path parameters
@@ -1067,7 +1073,9 @@ class PaymentCustomerApi:
1067
1073
  _query_params: List[Tuple[str, str]] = []
1068
1074
  _header_params: Dict[str, Optional[str]] = _headers or {}
1069
1075
  _form_params: List[Tuple[str, str]] = []
1070
- _files: Dict[str, Union[str, bytes]] = {}
1076
+ _files: Dict[
1077
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1078
+ ] = {}
1071
1079
  _body_params: Optional[bytes] = None
1072
1080
 
1073
1081
  # process the path parameters
@@ -1354,7 +1362,9 @@ class PaymentCustomerApi:
1354
1362
  _query_params: List[Tuple[str, str]] = []
1355
1363
  _header_params: Dict[str, Optional[str]] = _headers or {}
1356
1364
  _form_params: List[Tuple[str, str]] = []
1357
- _files: Dict[str, Union[str, bytes]] = {}
1365
+ _files: Dict[
1366
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1367
+ ] = {}
1358
1368
  _body_params: Optional[bytes] = None
1359
1369
 
1360
1370
  # process the path parameters
@@ -256,7 +256,9 @@ class PaymentIntentApi:
256
256
  _query_params: List[Tuple[str, str]] = []
257
257
  _header_params: Dict[str, Optional[str]] = _headers or {}
258
258
  _form_params: List[Tuple[str, str]] = []
259
- _files: Dict[str, Union[str, bytes]] = {}
259
+ _files: Dict[
260
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
261
+ ] = {}
260
262
  _body_params: Optional[bytes] = None
261
263
 
262
264
  # process the path parameters
@@ -531,7 +533,9 @@ class PaymentIntentApi:
531
533
  _query_params: List[Tuple[str, str]] = []
532
534
  _header_params: Dict[str, Optional[str]] = _headers or {}
533
535
  _form_params: List[Tuple[str, str]] = []
534
- _files: Dict[str, Union[str, bytes]] = {}
536
+ _files: Dict[
537
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
538
+ ] = {}
535
539
  _body_params: Optional[bytes] = None
536
540
 
537
541
  # process the path parameters
@@ -790,7 +794,9 @@ class PaymentIntentApi:
790
794
  _query_params: List[Tuple[str, str]] = []
791
795
  _header_params: Dict[str, Optional[str]] = _headers or {}
792
796
  _form_params: List[Tuple[str, str]] = []
793
- _files: Dict[str, Union[str, bytes]] = {}
797
+ _files: Dict[
798
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
799
+ ] = {}
794
800
  _body_params: Optional[bytes] = None
795
801
 
796
802
  # process the path parameters
@@ -263,7 +263,9 @@ class PaymentRecipientApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -538,7 +540,9 @@ class PaymentRecipientApi:
538
540
  _query_params: List[Tuple[str, str]] = []
539
541
  _header_params: Dict[str, Optional[str]] = _headers or {}
540
542
  _form_params: List[Tuple[str, str]] = []
541
- _files: Dict[str, Union[str, bytes]] = {}
543
+ _files: Dict[
544
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
545
+ ] = {}
542
546
  _body_params: Optional[bytes] = None
543
547
 
544
548
  # process the path parameters
@@ -800,7 +804,9 @@ class PaymentRecipientApi:
800
804
  _query_params: List[Tuple[str, str]] = []
801
805
  _header_params: Dict[str, Optional[str]] = _headers or {}
802
806
  _form_params: List[Tuple[str, str]] = []
803
- _files: Dict[str, Union[str, bytes]] = {}
807
+ _files: Dict[
808
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
809
+ ] = {}
804
810
  _body_params: Optional[bytes] = None
805
811
 
806
812
  # process the path parameters
@@ -1062,7 +1068,9 @@ class PaymentRecipientApi:
1062
1068
  _query_params: List[Tuple[str, str]] = []
1063
1069
  _header_params: Dict[str, Optional[str]] = _headers or {}
1064
1070
  _form_params: List[Tuple[str, str]] = []
1065
- _files: Dict[str, Union[str, bytes]] = {}
1071
+ _files: Dict[
1072
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1073
+ ] = {}
1066
1074
  _body_params: Optional[bytes] = None
1067
1075
 
1068
1076
  # process the path parameters
@@ -1334,7 +1342,9 @@ class PaymentRecipientApi:
1334
1342
  _query_params: List[Tuple[str, str]] = []
1335
1343
  _header_params: Dict[str, Optional[str]] = _headers or {}
1336
1344
  _form_params: List[Tuple[str, str]] = []
1337
- _files: Dict[str, Union[str, bytes]] = {}
1345
+ _files: Dict[
1346
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1347
+ ] = {}
1338
1348
  _body_params: Optional[bytes] = None
1339
1349
 
1340
1350
  # process the path parameters
@@ -1634,7 +1644,9 @@ class PaymentRecipientApi:
1634
1644
  _query_params: List[Tuple[str, str]] = []
1635
1645
  _header_params: Dict[str, Optional[str]] = _headers or {}
1636
1646
  _form_params: List[Tuple[str, str]] = []
1637
- _files: Dict[str, Union[str, bytes]] = {}
1647
+ _files: Dict[
1648
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1649
+ ] = {}
1638
1650
  _body_params: Optional[bytes] = None
1639
1651
 
1640
1652
  # process the path parameters
@@ -1929,7 +1941,9 @@ class PaymentRecipientApi:
1929
1941
  _query_params: List[Tuple[str, str]] = []
1930
1942
  _header_params: Dict[str, Optional[str]] = _headers or {}
1931
1943
  _form_params: List[Tuple[str, str]] = []
1932
- _files: Dict[str, Union[str, bytes]] = {}
1944
+ _files: Dict[
1945
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1946
+ ] = {}
1933
1947
  _body_params: Optional[bytes] = None
1934
1948
 
1935
1949
  # process the path parameters
@@ -261,7 +261,9 @@ class PaymentRequestApi:
261
261
  _query_params: List[Tuple[str, str]] = []
262
262
  _header_params: Dict[str, Optional[str]] = _headers or {}
263
263
  _form_params: List[Tuple[str, str]] = []
264
- _files: Dict[str, Union[str, bytes]] = {}
264
+ _files: Dict[
265
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
266
+ ] = {}
265
267
  _body_params: Optional[bytes] = None
266
268
 
267
269
  # process the path parameters
@@ -533,7 +535,9 @@ class PaymentRequestApi:
533
535
  _query_params: List[Tuple[str, str]] = []
534
536
  _header_params: Dict[str, Optional[str]] = _headers or {}
535
537
  _form_params: List[Tuple[str, str]] = []
536
- _files: Dict[str, Union[str, bytes]] = {}
538
+ _files: Dict[
539
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
540
+ ] = {}
537
541
  _body_params: Optional[bytes] = None
538
542
 
539
543
  # process the path parameters
@@ -805,7 +809,9 @@ class PaymentRequestApi:
805
809
  _query_params: List[Tuple[str, str]] = []
806
810
  _header_params: Dict[str, Optional[str]] = _headers or {}
807
811
  _form_params: List[Tuple[str, str]] = []
808
- _files: Dict[str, Union[str, bytes]] = {}
812
+ _files: Dict[
813
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
814
+ ] = {}
809
815
  _body_params: Optional[bytes] = None
810
816
 
811
817
  # process the path parameters
@@ -1080,7 +1086,9 @@ class PaymentRequestApi:
1080
1086
  _query_params: List[Tuple[str, str]] = []
1081
1087
  _header_params: Dict[str, Optional[str]] = _headers or {}
1082
1088
  _form_params: List[Tuple[str, str]] = []
1083
- _files: Dict[str, Union[str, bytes]] = {}
1089
+ _files: Dict[
1090
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1091
+ ] = {}
1084
1092
  _body_params: Optional[bytes] = None
1085
1093
 
1086
1094
  # process the path parameters
@@ -1339,7 +1347,9 @@ class PaymentRequestApi:
1339
1347
  _query_params: List[Tuple[str, str]] = []
1340
1348
  _header_params: Dict[str, Optional[str]] = _headers or {}
1341
1349
  _form_params: List[Tuple[str, str]] = []
1342
- _files: Dict[str, Union[str, bytes]] = {}
1350
+ _files: Dict[
1351
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1352
+ ] = {}
1343
1353
  _body_params: Optional[bytes] = None
1344
1354
 
1345
1355
  # process the path parameters
@@ -1610,7 +1620,9 @@ class PaymentRequestApi:
1610
1620
  _query_params: List[Tuple[str, str]] = []
1611
1621
  _header_params: Dict[str, Optional[str]] = _headers or {}
1612
1622
  _form_params: List[Tuple[str, str]] = []
1613
- _files: Dict[str, Union[str, bytes]] = {}
1623
+ _files: Dict[
1624
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1625
+ ] = {}
1614
1626
  _body_params: Optional[bytes] = None
1615
1627
 
1616
1628
  # process the path parameters
@@ -1881,7 +1893,9 @@ class PaymentRequestApi:
1881
1893
  _query_params: List[Tuple[str, str]] = []
1882
1894
  _header_params: Dict[str, Optional[str]] = _headers or {}
1883
1895
  _form_params: List[Tuple[str, str]] = []
1884
- _files: Dict[str, Union[str, bytes]] = {}
1896
+ _files: Dict[
1897
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1898
+ ] = {}
1885
1899
  _body_params: Optional[bytes] = None
1886
1900
 
1887
1901
  # process the path parameters
@@ -2144,7 +2158,9 @@ class PaymentRequestApi:
2144
2158
  _query_params: List[Tuple[str, str]] = []
2145
2159
  _header_params: Dict[str, Optional[str]] = _headers or {}
2146
2160
  _form_params: List[Tuple[str, str]] = []
2147
- _files: Dict[str, Union[str, bytes]] = {}
2161
+ _files: Dict[
2162
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
2163
+ ] = {}
2148
2164
  _body_params: Optional[bytes] = None
2149
2165
 
2150
2166
  # process the path parameters
@@ -2416,7 +2432,9 @@ class PaymentRequestApi:
2416
2432
  _query_params: List[Tuple[str, str]] = []
2417
2433
  _header_params: Dict[str, Optional[str]] = _headers or {}
2418
2434
  _form_params: List[Tuple[str, str]] = []
2419
- _files: Dict[str, Union[str, bytes]] = {}
2435
+ _files: Dict[
2436
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
2437
+ ] = {}
2420
2438
  _body_params: Optional[bytes] = None
2421
2439
 
2422
2440
  # process the path parameters
@@ -2677,7 +2695,9 @@ class PaymentRequestApi:
2677
2695
  _query_params: List[Tuple[str, str]] = []
2678
2696
  _header_params: Dict[str, Optional[str]] = _headers or {}
2679
2697
  _form_params: List[Tuple[str, str]] = []
2680
- _files: Dict[str, Union[str, bytes]] = {}
2698
+ _files: Dict[
2699
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
2700
+ ] = {}
2681
2701
  _body_params: Optional[bytes] = None
2682
2702
 
2683
2703
  # process the path parameters
@@ -254,7 +254,9 @@ class PaymentScheduleApi:
254
254
  _query_params: List[Tuple[str, str]] = []
255
255
  _header_params: Dict[str, Optional[str]] = _headers or {}
256
256
  _form_params: List[Tuple[str, str]] = []
257
- _files: Dict[str, Union[str, bytes]] = {}
257
+ _files: Dict[
258
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
259
+ ] = {}
258
260
  _body_params: Optional[bytes] = None
259
261
 
260
262
  # process the path parameters
@@ -519,7 +521,9 @@ class PaymentScheduleApi:
519
521
  _query_params: List[Tuple[str, str]] = []
520
522
  _header_params: Dict[str, Optional[str]] = _headers or {}
521
523
  _form_params: List[Tuple[str, str]] = []
522
- _files: Dict[str, Union[str, bytes]] = {}
524
+ _files: Dict[
525
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
526
+ ] = {}
523
527
  _body_params: Optional[bytes] = None
524
528
 
525
529
  # process the path parameters
@@ -773,7 +777,9 @@ class PaymentScheduleApi:
773
777
  _query_params: List[Tuple[str, str]] = []
774
778
  _header_params: Dict[str, Optional[str]] = _headers or {}
775
779
  _form_params: List[Tuple[str, str]] = []
776
- _files: Dict[str, Union[str, bytes]] = {}
780
+ _files: Dict[
781
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
782
+ ] = {}
777
783
  _body_params: Optional[bytes] = None
778
784
 
779
785
  # process the path parameters
@@ -264,7 +264,9 @@ class PortfolioYieldApi:
264
264
  _query_params: List[Tuple[str, str]] = []
265
265
  _header_params: Dict[str, Optional[str]] = _headers or {}
266
266
  _form_params: List[Tuple[str, str]] = []
267
- _files: Dict[str, Union[str, bytes]] = {}
267
+ _files: Dict[
268
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
269
+ ] = {}
268
270
  _body_params: Optional[bytes] = None
269
271
 
270
272
  # process the path parameters
@@ -532,7 +534,9 @@ class PortfolioYieldApi:
532
534
  _query_params: List[Tuple[str, str]] = []
533
535
  _header_params: Dict[str, Optional[str]] = _headers or {}
534
536
  _form_params: List[Tuple[str, str]] = []
535
- _files: Dict[str, Union[str, bytes]] = {}
537
+ _files: Dict[
538
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
539
+ ] = {}
536
540
  _body_params: Optional[bytes] = None
537
541
 
538
542
  # process the path parameters
@@ -263,7 +263,9 @@ class SmartAccountApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -525,7 +527,9 @@ class SmartAccountApi:
525
527
  _query_params: List[Tuple[str, str]] = []
526
528
  _header_params: Dict[str, Optional[str]] = _headers or {}
527
529
  _form_params: List[Tuple[str, str]] = []
528
- _files: Dict[str, Union[str, bytes]] = {}
530
+ _files: Dict[
531
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
532
+ ] = {}
529
533
  _body_params: Optional[bytes] = None
530
534
 
531
535
  # process the path parameters
@@ -800,7 +804,9 @@ class SmartAccountApi:
800
804
  _query_params: List[Tuple[str, str]] = []
801
805
  _header_params: Dict[str, Optional[str]] = _headers or {}
802
806
  _form_params: List[Tuple[str, str]] = []
803
- _files: Dict[str, Union[str, bytes]] = {}
807
+ _files: Dict[
808
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
809
+ ] = {}
804
810
  _body_params: Optional[bytes] = None
805
811
 
806
812
  # process the path parameters
@@ -1078,7 +1084,9 @@ class SmartAccountApi:
1078
1084
  _query_params: List[Tuple[str, str]] = []
1079
1085
  _header_params: Dict[str, Optional[str]] = _headers or {}
1080
1086
  _form_params: List[Tuple[str, str]] = []
1081
- _files: Dict[str, Union[str, bytes]] = {}
1087
+ _files: Dict[
1088
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1089
+ ] = {}
1082
1090
  _body_params: Optional[bytes] = None
1083
1091
 
1084
1092
  # process the path parameters
@@ -1355,7 +1363,9 @@ class SmartAccountApi:
1355
1363
  _query_params: List[Tuple[str, str]] = []
1356
1364
  _header_params: Dict[str, Optional[str]] = _headers or {}
1357
1365
  _form_params: List[Tuple[str, str]] = []
1358
- _files: Dict[str, Union[str, bytes]] = {}
1366
+ _files: Dict[
1367
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1368
+ ] = {}
1359
1369
  _body_params: Optional[bytes] = None
1360
1370
 
1361
1371
  # process the path parameters
@@ -1642,7 +1652,9 @@ class SmartAccountApi:
1642
1652
  _query_params: List[Tuple[str, str]] = []
1643
1653
  _header_params: Dict[str, Optional[str]] = _headers or {}
1644
1654
  _form_params: List[Tuple[str, str]] = []
1645
- _files: Dict[str, Union[str, bytes]] = {}
1655
+ _files: Dict[
1656
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1657
+ ] = {}
1646
1658
  _body_params: Optional[bytes] = None
1647
1659
 
1648
1660
  # process the path parameters
@@ -272,7 +272,9 @@ class SmartTransferApi:
272
272
  _query_params: List[Tuple[str, str]] = []
273
273
  _header_params: Dict[str, Optional[str]] = _headers or {}
274
274
  _form_params: List[Tuple[str, str]] = []
275
- _files: Dict[str, Union[str, bytes]] = {}
275
+ _files: Dict[
276
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
277
+ ] = {}
276
278
  _body_params: Optional[bytes] = None
277
279
 
278
280
  # process the path parameters
@@ -540,7 +542,9 @@ class SmartTransferApi:
540
542
  _query_params: List[Tuple[str, str]] = []
541
543
  _header_params: Dict[str, Optional[str]] = _headers or {}
542
544
  _form_params: List[Tuple[str, str]] = []
543
- _files: Dict[str, Union[str, bytes]] = {}
545
+ _files: Dict[
546
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
547
+ ] = {}
544
548
  _body_params: Optional[bytes] = None
545
549
 
546
550
  # process the path parameters
@@ -815,7 +819,9 @@ class SmartTransferApi:
815
819
  _query_params: List[Tuple[str, str]] = []
816
820
  _header_params: Dict[str, Optional[str]] = _headers or {}
817
821
  _form_params: List[Tuple[str, str]] = []
818
- _files: Dict[str, Union[str, bytes]] = {}
822
+ _files: Dict[
823
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
824
+ ] = {}
819
825
  _body_params: Optional[bytes] = None
820
826
 
821
827
  # process the path parameters
@@ -1077,7 +1083,9 @@ class SmartTransferApi:
1077
1083
  _query_params: List[Tuple[str, str]] = []
1078
1084
  _header_params: Dict[str, Optional[str]] = _headers or {}
1079
1085
  _form_params: List[Tuple[str, str]] = []
1080
- _files: Dict[str, Union[str, bytes]] = {}
1086
+ _files: Dict[
1087
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1088
+ ] = {}
1081
1089
  _body_params: Optional[bytes] = None
1082
1090
 
1083
1091
  # process the path parameters
@@ -1352,7 +1360,9 @@ class SmartTransferApi:
1352
1360
  _query_params: List[Tuple[str, str]] = []
1353
1361
  _header_params: Dict[str, Optional[str]] = _headers or {}
1354
1362
  _form_params: List[Tuple[str, str]] = []
1355
- _files: Dict[str, Union[str, bytes]] = {}
1363
+ _files: Dict[
1364
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1365
+ ] = {}
1356
1366
  _body_params: Optional[bytes] = None
1357
1367
 
1358
1368
  # process the path parameters
@@ -316,7 +316,9 @@ class TransactionApi:
316
316
  _query_params: List[Tuple[str, str]] = []
317
317
  _header_params: Dict[str, Optional[str]] = _headers or {}
318
318
  _form_params: List[Tuple[str, str]] = []
319
- _files: Dict[str, Union[str, bytes]] = {}
319
+ _files: Dict[
320
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
321
+ ] = {}
320
322
  _body_params: Optional[bytes] = None
321
323
 
322
324
  # process the path parameters
@@ -617,7 +619,9 @@ class TransactionApi:
617
619
  _query_params: List[Tuple[str, str]] = []
618
620
  _header_params: Dict[str, Optional[str]] = _headers or {}
619
621
  _form_params: List[Tuple[str, str]] = []
620
- _files: Dict[str, Union[str, bytes]] = {}
622
+ _files: Dict[
623
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
624
+ ] = {}
621
625
  _body_params: Optional[bytes] = None
622
626
 
623
627
  # process the path parameters
@@ -898,7 +902,9 @@ class TransactionApi:
898
902
  _query_params: List[Tuple[str, str]] = []
899
903
  _header_params: Dict[str, Optional[str]] = _headers or {}
900
904
  _form_params: List[Tuple[str, str]] = []
901
- _files: Dict[str, Union[str, bytes]] = {}
905
+ _files: Dict[
906
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
907
+ ] = {}
902
908
  _body_params: Optional[bytes] = None
903
909
 
904
910
  # process the path parameters
@@ -263,7 +263,9 @@ class WebhookApi:
263
263
  _query_params: List[Tuple[str, str]] = []
264
264
  _header_params: Dict[str, Optional[str]] = _headers or {}
265
265
  _form_params: List[Tuple[str, str]] = []
266
- _files: Dict[str, Union[str, bytes]] = {}
266
+ _files: Dict[
267
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
268
+ ] = {}
267
269
  _body_params: Optional[bytes] = None
268
270
 
269
271
  # process the path parameters
@@ -541,7 +543,9 @@ class WebhookApi:
541
543
  _query_params: List[Tuple[str, str]] = []
542
544
  _header_params: Dict[str, Optional[str]] = _headers or {}
543
545
  _form_params: List[Tuple[str, str]] = []
544
- _files: Dict[str, Union[str, bytes]] = {}
546
+ _files: Dict[
547
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
548
+ ] = {}
545
549
  _body_params: Optional[bytes] = None
546
550
 
547
551
  # process the path parameters
@@ -793,7 +797,9 @@ class WebhookApi:
793
797
  _query_params: List[Tuple[str, str]] = []
794
798
  _header_params: Dict[str, Optional[str]] = _headers or {}
795
799
  _form_params: List[Tuple[str, str]] = []
796
- _files: Dict[str, Union[str, bytes]] = {}
800
+ _files: Dict[
801
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
802
+ ] = {}
797
803
  _body_params: Optional[bytes] = None
798
804
 
799
805
  # process the path parameters
@@ -1056,7 +1062,9 @@ class WebhookApi:
1056
1062
  _query_params: List[Tuple[str, str]] = []
1057
1063
  _header_params: Dict[str, Optional[str]] = _headers or {}
1058
1064
  _form_params: List[Tuple[str, str]] = []
1059
- _files: Dict[str, Union[str, bytes]] = {}
1065
+ _files: Dict[
1066
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1067
+ ] = {}
1060
1068
  _body_params: Optional[bytes] = None
1061
1069
 
1062
1070
  # process the path parameters
@@ -1337,7 +1345,9 @@ class WebhookApi:
1337
1345
  _query_params: List[Tuple[str, str]] = []
1338
1346
  _header_params: Dict[str, Optional[str]] = _headers or {}
1339
1347
  _form_params: List[Tuple[str, str]] = []
1340
- _files: Dict[str, Union[str, bytes]] = {}
1348
+ _files: Dict[
1349
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1350
+ ] = {}
1341
1351
  _body_params: Optional[bytes] = None
1342
1352
 
1343
1353
  # process the path parameters
pluggy_sdk/api_client.py CHANGED
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/1.0.0.post18/python'
94
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post19/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -405,12 +405,12 @@ class ApiClient:
405
405
  data = json.loads(response_text)
406
406
  except ValueError:
407
407
  data = response_text
408
- elif content_type.startswith("application/json"):
408
+ elif re.match(r'^application/(json|[\w!#$&.+-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE):
409
409
  if response_text == "":
410
410
  data = ""
411
411
  else:
412
412
  data = json.loads(response_text)
413
- elif content_type.startswith("text/plain"):
413
+ elif re.match(r'^text/plain\s*(;|$)', content_type, re.IGNORECASE):
414
414
  data = response_text
415
415
  else:
416
416
  raise ApiException(
@@ -536,7 +536,10 @@ class ApiClient:
536
536
 
537
537
  return "&".join(["=".join(map(str, item)) for item in new_params])
538
538
 
539
- def files_parameters(self, files: Dict[str, Union[str, bytes]]):
539
+ def files_parameters(
540
+ self,
541
+ files: Dict[str, Union[str, bytes, List[str], List[bytes], Tuple[str, bytes]]],
542
+ ):
540
543
  """Builds form parameters.
541
544
 
542
545
  :param files: File parameters.
@@ -551,6 +554,12 @@ class ApiClient:
551
554
  elif isinstance(v, bytes):
552
555
  filename = k
553
556
  filedata = v
557
+ elif isinstance(v, tuple):
558
+ filename, filedata = v
559
+ elif isinstance(v, list):
560
+ for file_param in v:
561
+ params.extend(self.files_parameters({k: file_param}))
562
+ continue
554
563
  else:
555
564
  raise ValueError("Unsupported file value")
556
565
  mimetype = (
@@ -414,7 +414,7 @@ conf = pluggy_sdk.Configuration(
414
414
  "OS: {env}\n"\
415
415
  "Python Version: {pyversion}\n"\
416
416
  "Version of the API: 1.0.0\n"\
417
- "SDK Package Version: 1.0.0.post18".\
417
+ "SDK Package Version: 1.0.0.post19".\
418
418
  format(env=sys.platform, pyversion=sys.version)
419
419
 
420
420
  def get_host_settings(self):
@@ -32,8 +32,9 @@ class CreateItem(BaseModel):
32
32
  parameters: CreateItemParameters
33
33
  webhook_url: Optional[StrictStr] = Field(default=None, description="Url to be notified of item changes", alias="webhookUrl")
34
34
  client_user_id: Optional[StrictStr] = Field(default=None, description="Client's identifier for the user, it can be a ID, UUID or even an email.", alias="clientUserId")
35
+ oauth_redirect_uri: Optional[StrictStr] = Field(default=None, description="Redirect URI required for the Oauth flow", alias="oauthRedirectUri")
35
36
  products: Optional[List[StrictStr]] = Field(default=None, description="Products to be collected in the connection")
36
- __properties: ClassVar[List[str]] = ["connectorId", "parameters", "webhookUrl", "clientUserId", "products"]
37
+ __properties: ClassVar[List[str]] = ["connectorId", "parameters", "webhookUrl", "clientUserId", "oauthRedirectUri", "products"]
37
38
 
38
39
  @field_validator('products')
39
40
  def products_validate_enum(cls, value):
@@ -104,6 +105,7 @@ class CreateItem(BaseModel):
104
105
  "parameters": CreateItemParameters.from_dict(obj["parameters"]) if obj.get("parameters") is not None else None,
105
106
  "webhookUrl": obj.get("webhookUrl"),
106
107
  "clientUserId": obj.get("clientUserId"),
108
+ "oauthRedirectUri": obj.get("oauthRedirectUri"),
107
109
  "products": obj.get("products")
108
110
  })
109
111
  return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post18
3
+ Version: 1.0.0.post19
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
@@ -19,8 +19,8 @@ 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.post18
23
- - Generator version: 7.8.0-SNAPSHOT
22
+ - Package version: 1.0.0.post19
23
+ - Generator version: 7.9.0-SNAPSHOT
24
24
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
25
25
  For more information, please visit [https://pluggy.ai](https://pluggy.ai)
26
26
 
@@ -1,40 +1,40 @@
1
- pluggy_sdk/__init__.py,sha256=NxJLkct8abnPqfs-WB2OVJLYL7JPM47gtJdKoVC1vhE,14079
2
- pluggy_sdk/api_client.py,sha256=CBipcIl6QGOOWxD1Qp1blwhAlsjkUkAA7BKqhk7K8cU,27037
1
+ pluggy_sdk/__init__.py,sha256=BRohZfT7LND56wBLsro0eAniLId8zFF8WnglsPE4j4E,14079
2
+ pluggy_sdk/api_client.py,sha256=rcvfHXkfu43k16uIvCxHG7GKxezGNFX7uRGyNMeJ-O4,27426
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=5GT1XxA5TTVKnz0rnAxROOqtmT0Tqybjc-GVn9rJlkU,15910
4
+ pluggy_sdk/configuration.py,sha256=OjyXk5Uu0b4wRH2qQ6u34KtyNmriyjJjY4b-WsOWPN8,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
8
  pluggy_sdk/api/__init__.py,sha256=CX0ISrwWFsMCwTPpqv1FmbXQaekHYNUi0WU-y7cDK98,1549
9
- pluggy_sdk/api/account_api.py,sha256=VEWOlBO1pkFbDvWeM1chS0sGuVU9n9imt1CdZUBRn2M,22173
10
- pluggy_sdk/api/acquirer_anticipation_api.py,sha256=-M4n5ZN3KMDDzoicU-KO0XLey0aqK6WzEAgLUaVUF4U,26332
11
- pluggy_sdk/api/acquirer_receivable_api.py,sha256=eyUak4Kse8R5-aEHz2ZUrzCmSn8qxxTGzXaOZSR_Cso,26246
12
- pluggy_sdk/api/acquirer_sale_api.py,sha256=Uj3mjfZlrzvpWcjc3CRIi6qb5GCzBAm4pZB2zyWm-0c,25995
13
- pluggy_sdk/api/auth_api.py,sha256=lIsv5kgB-jgRviI0r7tuwn3QJ99e7wKlf7nm6fKU4g8,23008
14
- pluggy_sdk/api/benefit_api.py,sha256=A36o4xqcm9Z4oiHFYsiS04iYL2iCQ3zu_bhHe7a1ETM,21187
15
- pluggy_sdk/api/bill_api.py,sha256=h50y5ww0sXD6EAPNg43h3-xpNVI7TBlF0kPRP6vDV8E,21086
16
- pluggy_sdk/api/bulk_payment_api.py,sha256=yrkJ-1SXqZwpOIL35eJQh7h0xnHOAqBR60rUKNINxNk,32997
17
- pluggy_sdk/api/category_api.py,sha256=-B9AiHwqGgRJSlAIM9JVn0-laFU7GkBV5JR-Y_n_CDc,41829
18
- pluggy_sdk/api/connector_api.py,sha256=Z_mimbUiHXulR519ygCCmtflJ8DwL2ROuoDihyheO_I,41197
19
- pluggy_sdk/api/consent_api.py,sha256=QV_vdVUvqNXw7-AS6CRxTLJqt1JrRYcpHQZPo92xyBc,21421
20
- pluggy_sdk/api/identity_api.py,sha256=6nYRKapflVMntOCkGfRy8BRNalRwo6BhAYMlQZQqhfo,21728
21
- pluggy_sdk/api/income_report_api.py,sha256=__xJnXikV9kivyevcFdoNvdEG0rpv4qF3ILPww1RW2A,11656
22
- pluggy_sdk/api/investment_api.py,sha256=lCrtPmQNL9oo4M68f7fbcx5eFS0tTGKczMkqz1zOHnE,36178
23
- pluggy_sdk/api/items_api.py,sha256=IBwjGgrWxu_tyd6merdFlFMKwDF6I7WXSIOniroz7es,54908
24
- pluggy_sdk/api/loan_api.py,sha256=kNEYuAjMLW_EFMW1tUT0c_dhv1uNLbQldmoXd6_f3LE,20966
25
- pluggy_sdk/api/payment_customer_api.py,sha256=BpJ39uZJNQX8bF7Mv125Ynb2OiOhy1xrjA_nwKzjU08,55099
26
- pluggy_sdk/api/payment_intent_api.py,sha256=PnH7T04pHaLSTLFQwkQtKeQfDi4dYealNHQ2eGt8l80,32209
9
+ pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
10
+ pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
11
+ pluggy_sdk/api/acquirer_receivable_api.py,sha256=BzTj0wfP11JDpLpaeREfNo-g7bs7PnRaK6Ab4gqR5a4,26388
12
+ pluggy_sdk/api/acquirer_sale_api.py,sha256=YZYt2Hy3vA-dIKFouejtQY8BTws3lNrY3NHdXMbBQJU,26137
13
+ pluggy_sdk/api/auth_api.py,sha256=TXqmhFum1h1bqt9BMANyvcwLLaS0M1Y0mIELutv9spo,23150
14
+ pluggy_sdk/api/benefit_api.py,sha256=WSa3Hp-6Dc1fA0dHUnYP5gu-iXgDD-0NC5yuxBuIouo,21329
15
+ pluggy_sdk/api/bill_api.py,sha256=_qkNNQIlImQEGpzHko9wxyIrGlNKfc7Aq1MOdGCy5Ac,21228
16
+ pluggy_sdk/api/bulk_payment_api.py,sha256=mhR_6agI-5dw-AaCCDaxJei01ektbrw7V-b-1a2c5xU,33210
17
+ pluggy_sdk/api/category_api.py,sha256=ATCtlmkDmbNqS2kJV6f6P3G0_rgwqEip-PgQ9iUm_Nc,42113
18
+ pluggy_sdk/api/connector_api.py,sha256=Zmo8ZYrYaaa98eAF_DXGlnd7AFS7hK6SURAGhsL3NPM,41410
19
+ pluggy_sdk/api/consent_api.py,sha256=9lhmfKiIerWsEwVLE4TgIxtmQhnLQFPVpWEZRdDQJCc,21563
20
+ pluggy_sdk/api/identity_api.py,sha256=owFRuj7HTT9S8pPKGSY4cNjFJvEd-KobMr3hjytrXCk,21870
21
+ pluggy_sdk/api/income_report_api.py,sha256=HfcWM14chZfmmc8pNcmb68QIomjWFZAMahCAmYrHD9A,11727
22
+ pluggy_sdk/api/investment_api.py,sha256=x_V67FOqUY1h11kl3tB0Ne77qD_o_EgLQB5PKxT0Ock,36391
23
+ pluggy_sdk/api/items_api.py,sha256=ndeprcDlJmzvl82pCi_lgfn6PrMkofM1VCWIGsCeV5c,55263
24
+ pluggy_sdk/api/loan_api.py,sha256=0F4282MRf2XZ6KkRq9zZ9Bjfp4_gr628_Zjc3vnCnNU,21108
25
+ pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9BpctRvDW1w8,55454
26
+ pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
27
27
  pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
28
- pluggy_sdk/api/payment_recipient_api.py,sha256=9TXmijfHs32Hj9tAnRAUSQ3GZcb79uGnz-FyormdYAE,78374
29
- pluggy_sdk/api/payment_request_api.py,sha256=3MVCQSSuOHAQXsF6SqkPSA5YrBpjEutZdQ54HcoiTvk,105862
30
- pluggy_sdk/api/payment_schedule_api.py,sha256=RahFR7HMgfLhRDXI2w2j99boP_YrQ66COfKAl0JEbGM,31392
28
+ pluggy_sdk/api/payment_recipient_api.py,sha256=nvV5zoyTMMr3geRBD0ztaSrBe9tkusS9rJSdvG-mq2g,78871
29
+ pluggy_sdk/api/payment_request_api.py,sha256=KoxSrmt2hXxISTXve_ur8LjAmk4WLlhxI0apRJD4eQo,106572
30
+ pluggy_sdk/api/payment_schedule_api.py,sha256=YUmE5fJktDrFHHm-SPphqQJmW-2CaBOlfX7QqZdQCk4,31605
31
31
  pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
32
- pluggy_sdk/api/portfolio_yield_api.py,sha256=7s_DeSuFUVnR2XWzdi5mFrKDGVz3izgIZsbZfzsBZ08,22446
33
- pluggy_sdk/api/smart_account_api.py,sha256=THih8KrinkShpXBa3hHQnZ_WoLiqOHNQzNr525U79C8,66571
32
+ pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDoCgwRGAOg,22588
33
+ pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
34
34
  pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
35
- pluggy_sdk/api/smart_transfer_api.py,sha256=0I8idVAwbnY4r210kMQtRdxiwERKfU41refzCbSQLfI,55843
36
- pluggy_sdk/api/transaction_api.py,sha256=RZoU3aUqKeqanKGlyuo5DNyRLVWelnwOMNjg1FYBXNc,37742
37
- pluggy_sdk/api/webhook_api.py,sha256=_g7Ca5YYLuED49BRGmG-IiA6I9IUbWF4zqrIgUQRUOw,55840
35
+ pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
36
+ pluggy_sdk/api/transaction_api.py,sha256=P3uIVt77rC4f9ITPJjT9oi8-pFrM6RmpgXP55_unCME,37955
37
+ pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
38
38
  pluggy_sdk/models/__init__.py,sha256=xSSvSWd46sq7IgrSU4EPusqi_rGWk7h3yvi2aNKck_4,12063
39
39
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
40
40
  pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
@@ -85,7 +85,7 @@ pluggy_sdk/models/consent.py,sha256=HgknVqrY7aoUgT4fKol5T6nrf9Fe6vgmIirbYNBqJos,
85
85
  pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
86
86
  pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
87
87
  pluggy_sdk/models/create_client_category_rule.py,sha256=w9dcSd3sLAAbCLoL-FUXHd_0hkclcfFD5fHwMpuITAY,2899
88
- pluggy_sdk/models/create_item.py,sha256=Z5JuvRAFFUSS0IrobbUD6W73MSYqX7e4YwqVDywjM-Y,4442
88
+ pluggy_sdk/models/create_item.py,sha256=Dd3mhOHJEzqFxDG-KH3y_22ajZKJe2-PGEW_TfVsYl4,4671
89
89
  pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
90
90
  pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
91
91
  pluggy_sdk/models/create_payment_customer_request_body.py,sha256=YvSSzXEW2yI7M9alWr4fHbPRqNvV4sxTUVp3FkMQSyU,3365
@@ -207,7 +207,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
207
207
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
208
208
  pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
209
209
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
210
- pluggy_sdk-1.0.0.post18.dist-info/METADATA,sha256=PfrhOOt3x59VKytj3KAbUxmyVYifmiVH9Cf4rHpxwDE,25009
211
- pluggy_sdk-1.0.0.post18.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
212
- pluggy_sdk-1.0.0.post18.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
213
- pluggy_sdk-1.0.0.post18.dist-info/RECORD,,
210
+ pluggy_sdk-1.0.0.post19.dist-info/METADATA,sha256=pMlA-Xqz9aAnHIWgrnZjp8uF2FBY3JqkGK-Xl7Z7Wog,25009
211
+ pluggy_sdk-1.0.0.post19.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
212
+ pluggy_sdk-1.0.0.post19.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
213
+ pluggy_sdk-1.0.0.post19.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5