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
@@ -276,11 +276,12 @@ class SmartAccountApi:
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
@@ -537,11 +538,12 @@ class SmartAccountApi:
537
538
 
538
539
 
539
540
  # set the HTTP header `Accept`
540
- _header_params['Accept'] = self.api_client.select_header_accept(
541
- [
542
- 'application/json'
543
- ]
544
- )
541
+ if 'Accept' not in _header_params:
542
+ _header_params['Accept'] = self.api_client.select_header_accept(
543
+ [
544
+ 'application/json'
545
+ ]
546
+ )
545
547
 
546
548
  # set the HTTP header `Content-Type`
547
549
  if _content_type:
@@ -811,11 +813,12 @@ class SmartAccountApi:
811
813
 
812
814
 
813
815
  # set the HTTP header `Accept`
814
- _header_params['Accept'] = self.api_client.select_header_accept(
815
- [
816
- 'application/json'
817
- ]
818
- )
816
+ if 'Accept' not in _header_params:
817
+ _header_params['Accept'] = self.api_client.select_header_accept(
818
+ [
819
+ 'application/json'
820
+ ]
821
+ )
819
822
 
820
823
 
821
824
  # authentication setting
@@ -1090,11 +1093,12 @@ class SmartAccountApi:
1090
1093
 
1091
1094
 
1092
1095
  # set the HTTP header `Accept`
1093
- _header_params['Accept'] = self.api_client.select_header_accept(
1094
- [
1095
- 'application/json'
1096
- ]
1097
- )
1096
+ if 'Accept' not in _header_params:
1097
+ _header_params['Accept'] = self.api_client.select_header_accept(
1098
+ [
1099
+ 'application/json'
1100
+ ]
1101
+ )
1098
1102
 
1099
1103
 
1100
1104
  # authentication setting
@@ -1366,11 +1370,12 @@ class SmartAccountApi:
1366
1370
 
1367
1371
 
1368
1372
  # set the HTTP header `Accept`
1369
- _header_params['Accept'] = self.api_client.select_header_accept(
1370
- [
1371
- 'application/json'
1372
- ]
1373
- )
1373
+ if 'Accept' not in _header_params:
1374
+ _header_params['Accept'] = self.api_client.select_header_accept(
1375
+ [
1376
+ 'application/json'
1377
+ ]
1378
+ )
1374
1379
 
1375
1380
  # set the HTTP header `Content-Type`
1376
1381
  if _content_type:
@@ -1656,11 +1661,12 @@ class SmartAccountApi:
1656
1661
 
1657
1662
 
1658
1663
  # set the HTTP header `Accept`
1659
- _header_params['Accept'] = self.api_client.select_header_accept(
1660
- [
1661
- 'application/json'
1662
- ]
1663
- )
1664
+ if 'Accept' not in _header_params:
1665
+ _header_params['Accept'] = self.api_client.select_header_accept(
1666
+ [
1667
+ 'application/json'
1668
+ ]
1669
+ )
1664
1670
 
1665
1671
 
1666
1672
  # authentication setting
@@ -365,11 +365,12 @@ class TransactionApi:
365
365
 
366
366
 
367
367
  # set the HTTP header `Accept`
368
- _header_params['Accept'] = self.api_client.select_header_accept(
369
- [
370
- 'application/json'
371
- ]
372
- )
368
+ if 'Accept' not in _header_params:
369
+ _header_params['Accept'] = self.api_client.select_header_accept(
370
+ [
371
+ 'application/json'
372
+ ]
373
+ )
373
374
 
374
375
 
375
376
  # authentication setting
@@ -629,11 +630,12 @@ class TransactionApi:
629
630
 
630
631
 
631
632
  # set the HTTP header `Accept`
632
- _header_params['Accept'] = self.api_client.select_header_accept(
633
- [
634
- 'application/json'
635
- ]
636
- )
633
+ if 'Accept' not in _header_params:
634
+ _header_params['Accept'] = self.api_client.select_header_accept(
635
+ [
636
+ 'application/json'
637
+ ]
638
+ )
637
639
 
638
640
 
639
641
  # authentication setting
@@ -911,11 +913,12 @@ class TransactionApi:
911
913
 
912
914
 
913
915
  # set the HTTP header `Accept`
914
- _header_params['Accept'] = self.api_client.select_header_accept(
915
- [
916
- 'application/json'
917
- ]
918
- )
916
+ if 'Accept' not in _header_params:
917
+ _header_params['Accept'] = self.api_client.select_header_accept(
918
+ [
919
+ 'application/json'
920
+ ]
921
+ )
919
922
 
920
923
  # set the HTTP header `Content-Type`
921
924
  if _content_type:
@@ -276,11 +276,12 @@ class WebhookApi:
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
  # set the HTTP header `Content-Type`
286
287
  if _content_type:
@@ -553,11 +554,12 @@ class WebhookApi:
553
554
 
554
555
 
555
556
  # set the HTTP header `Accept`
556
- _header_params['Accept'] = self.api_client.select_header_accept(
557
- [
558
- 'application/json'
559
- ]
560
- )
557
+ if 'Accept' not in _header_params:
558
+ _header_params['Accept'] = self.api_client.select_header_accept(
559
+ [
560
+ 'application/json'
561
+ ]
562
+ )
561
563
 
562
564
 
563
565
  # authentication setting
@@ -802,11 +804,12 @@ class WebhookApi:
802
804
 
803
805
 
804
806
  # set the HTTP header `Accept`
805
- _header_params['Accept'] = self.api_client.select_header_accept(
806
- [
807
- 'application/json'
808
- ]
809
- )
807
+ if 'Accept' not in _header_params:
808
+ _header_params['Accept'] = self.api_client.select_header_accept(
809
+ [
810
+ 'application/json'
811
+ ]
812
+ )
810
813
 
811
814
 
812
815
  # authentication setting
@@ -1066,11 +1069,12 @@ class WebhookApi:
1066
1069
 
1067
1070
 
1068
1071
  # set the HTTP header `Accept`
1069
- _header_params['Accept'] = self.api_client.select_header_accept(
1070
- [
1071
- 'application/json'
1072
- ]
1073
- )
1072
+ if 'Accept' not in _header_params:
1073
+ _header_params['Accept'] = self.api_client.select_header_accept(
1074
+ [
1075
+ 'application/json'
1076
+ ]
1077
+ )
1074
1078
 
1075
1079
 
1076
1080
  # authentication setting
@@ -1348,11 +1352,12 @@ class WebhookApi:
1348
1352
 
1349
1353
 
1350
1354
  # set the HTTP header `Accept`
1351
- _header_params['Accept'] = self.api_client.select_header_accept(
1352
- [
1353
- 'application/json'
1354
- ]
1355
- )
1355
+ if 'Accept' not in _header_params:
1356
+ _header_params['Accept'] = self.api_client.select_header_accept(
1357
+ [
1358
+ 'application/json'
1359
+ ]
1360
+ )
1356
1361
 
1357
1362
  # set the HTTP header `Content-Type`
1358
1363
  if _content_type:
pluggy_sdk/api_client.py CHANGED
@@ -89,7 +89,7 @@ class ApiClient:
89
89
  self.default_headers[header_name] = header_value
90
90
  self.cookie = cookie
91
91
  # Set default User-Agent.
92
- self.user_agent = 'OpenAPI-Generator/1.0.0.post14/python'
92
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post15/python'
93
93
  self.client_side_validation = configuration.client_side_validation
94
94
 
95
95
  def __enter__(self):
@@ -228,7 +228,7 @@ class ApiClient:
228
228
  body = self.sanitize_for_serialization(body)
229
229
 
230
230
  # request url
231
- if _host is None:
231
+ if _host is None or self.configuration.ignore_operation_servers:
232
232
  url = self.configuration.host + resource_path
233
233
  else:
234
234
  # use server/host defined in path or operation instead
@@ -33,6 +33,9 @@ class Configuration:
33
33
  """This class contains various settings of the API client.
34
34
 
35
35
  :param host: Base url.
36
+ :param ignore_operation_servers
37
+ Boolean to ignore operation servers for the API client.
38
+ Config will use `host` as the base url regardless of the operation servers.
36
39
  :param api_key: Dict to store API key(s).
37
40
  Each entry in the dict specifies an API key.
38
41
  The dict key is the name of the security scheme in the OAS specification.
@@ -55,6 +58,7 @@ class Configuration:
55
58
  values before.
56
59
  :param ssl_ca_cert: str - the path to a file of concatenated CA certificates
57
60
  in PEM format.
61
+ :param retries: Number of retries for API requests.
58
62
 
59
63
  :Example:
60
64
 
@@ -86,7 +90,11 @@ conf = pluggy_sdk.Configuration(
86
90
  access_token=None,
87
91
  server_index=None, server_variables=None,
88
92
  server_operation_index=None, server_operation_variables=None,
93
+ ignore_operation_servers=False,
89
94
  ssl_ca_cert=None,
95
+ retries=None,
96
+ *,
97
+ debug: Optional[bool] = None
90
98
  ) -> None:
91
99
  """Constructor
92
100
  """
@@ -101,6 +109,9 @@ conf = pluggy_sdk.Configuration(
101
109
  self.server_operation_variables = server_operation_variables or {}
102
110
  """Default server variables
103
111
  """
112
+ self.ignore_operation_servers = ignore_operation_servers
113
+ """Ignore operation servers
114
+ """
104
115
  self.temp_folder_path = None
105
116
  """Temp file folder for downloading files
106
117
  """
@@ -144,7 +155,10 @@ conf = pluggy_sdk.Configuration(
144
155
  self.logger_file = None
145
156
  """Debug file location
146
157
  """
147
- self.debug = False
158
+ if debug is not None:
159
+ self.debug = debug
160
+ else:
161
+ self.__debug = False
148
162
  """Debug switch
149
163
  """
150
164
 
@@ -187,7 +201,7 @@ conf = pluggy_sdk.Configuration(
187
201
  self.safe_chars_for_path_param = ''
188
202
  """Safe chars for path_param
189
203
  """
190
- self.retries = None
204
+ self.retries = retries
191
205
  """Adding retries to override urllib3 default value 3
192
206
  """
193
207
  # Enable client side validation
@@ -400,7 +414,7 @@ conf = pluggy_sdk.Configuration(
400
414
  "OS: {env}\n"\
401
415
  "Python Version: {pyversion}\n"\
402
416
  "Version of the API: 1.0.0\n"\
403
- "SDK Package Version: 1.0.0.post14".\
417
+ "SDK Package Version: 1.0.0.post15".\
404
418
  format(env=sys.platform, pyversion=sys.version)
405
419
 
406
420
  def get_host_settings(self):
@@ -29,10 +29,10 @@ class BenefitLoan(BaseModel):
29
29
  """
30
30
  Information related to a benefit loan
31
31
  """ # noqa: E501
32
- contract_code: StrictStr = Field(description="Contract code given by the contracting institution", alias="contractCode")
32
+ contract_code: Optional[StrictStr] = Field(default=None, description="Contract code given by the contracting institution", alias="contractCode")
33
+ hiscon_contract_code: StrictStr = Field(description="Contract code given in the hiscon file", alias="hisconContractCode")
33
34
  cnpj_original_contract_creditor: Optional[StrictStr] = Field(default=None, description="CNPJ of the original creditor of the contract", alias="cnpjOriginalContractCreditor")
34
- nominal_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Nominal interest rate", alias="nominalInterestRate")
35
- efective_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Effective interest rate", alias="efectiveInterestRate")
35
+ effective_interest_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Effective interest rate", alias="effectiveInterestRate")
36
36
  cet_annual_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="CET annual rate", alias="cetAnnualRate")
37
37
  cet_month_rate: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="CET monthly rate", alias="cetMonthRate")
38
38
  currency_code: Optional[StrictStr] = Field(default=None, description="Code referencing the currency of the loan", alias="currencyCode")
@@ -44,7 +44,7 @@ class BenefitLoan(BaseModel):
44
44
  cnpj_correspondent_banking: Optional[StrictStr] = Field(default=None, description="CNPJ of the correspondent banking", alias="cnpjCorrespondentBanking")
45
45
  operation_hiring_date: Optional[datetime] = Field(default=None, description="Operation hiring date", alias="operationHiringDate")
46
46
  client: BenefitLoanClient
47
- __properties: ClassVar[List[str]] = ["contractCode", "cnpjOriginalContractCreditor", "nominalInterestRate", "efectiveInterestRate", "cetAnnualRate", "cetMonthRate", "currencyCode", "amortizationRegime", "installmentsQuantity", "installmentsValue", "dueDateFirstInstallment", "dueDateLastInstallment", "cnpjCorrespondentBanking", "operationHiringDate", "client"]
47
+ __properties: ClassVar[List[str]] = ["contractCode", "hisconContractCode", "cnpjOriginalContractCreditor", "effectiveInterestRate", "cetAnnualRate", "cetMonthRate", "currencyCode", "amortizationRegime", "installmentsQuantity", "installmentsValue", "dueDateFirstInstallment", "dueDateLastInstallment", "cnpjCorrespondentBanking", "operationHiringDate", "client"]
48
48
 
49
49
  model_config = ConfigDict(
50
50
  populate_by_name=True,
@@ -101,9 +101,9 @@ class BenefitLoan(BaseModel):
101
101
 
102
102
  _obj = cls.model_validate({
103
103
  "contractCode": obj.get("contractCode"),
104
+ "hisconContractCode": obj.get("hisconContractCode"),
104
105
  "cnpjOriginalContractCreditor": obj.get("cnpjOriginalContractCreditor"),
105
- "nominalInterestRate": obj.get("nominalInterestRate"),
106
- "efectiveInterestRate": obj.get("efectiveInterestRate"),
106
+ "effectiveInterestRate": obj.get("effectiveInterestRate"),
107
107
  "cetAnnualRate": obj.get("cetAnnualRate"),
108
108
  "cetMonthRate": obj.get("cetMonthRate"),
109
109
  "currencyCode": obj.get("currencyCode"),
@@ -30,12 +30,12 @@ class BenefitLoanClient(BaseModel):
30
30
  name: Optional[StrictStr] = Field(default=None, description="Client name")
31
31
  document: Optional[StrictStr] = Field(default=None, description="Client CPF")
32
32
  phone: Optional[StrictStr] = Field(default=None, description="Client phone")
33
- addres_street: Optional[StrictStr] = Field(default=None, description="Client email", alias="addresStreet")
33
+ address_street: Optional[StrictStr] = Field(default=None, description="Client email", alias="addressStreet")
34
34
  address_number: Optional[StrictStr] = Field(default=None, description="Client address number", alias="addressNumber")
35
35
  address_city: Optional[StrictStr] = Field(default=None, description="Client address city", alias="addressCity")
36
36
  address_zip_code: Optional[StrictStr] = Field(default=None, description="Client address zip code", alias="addressZipCode")
37
37
  address_state: Optional[StrictStr] = Field(default=None, description="Client address state", alias="addressState")
38
- __properties: ClassVar[List[str]] = ["name", "document", "phone", "addresStreet", "addressNumber", "addressCity", "addressZipCode", "addressState"]
38
+ __properties: ClassVar[List[str]] = ["name", "document", "phone", "addressStreet", "addressNumber", "addressCity", "addressZipCode", "addressState"]
39
39
 
40
40
  model_config = ConfigDict(
41
41
  populate_by_name=True,
@@ -91,7 +91,7 @@ class BenefitLoanClient(BaseModel):
91
91
  "name": obj.get("name"),
92
92
  "document": obj.get("document"),
93
93
  "phone": obj.get("phone"),
94
- "addresStreet": obj.get("addresStreet"),
94
+ "addressStreet": obj.get("addressStreet"),
95
95
  "addressNumber": obj.get("addressNumber"),
96
96
  "addressCity": obj.get("addressCity"),
97
97
  "addressZipCode": obj.get("addressZipCode"),
@@ -45,7 +45,9 @@ class Connector(BaseModel):
45
45
  health: Optional[ConnectorHealth] = None
46
46
  is_open_finance: Optional[StrictBool] = Field(default=None, description="Indicates if the connector uses the regulated Open Finance APIs", alias="isOpenFinance")
47
47
  supports_payment_initiation: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports the payment initiation API", alias="supportsPaymentInitiation")
48
- __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation"]
48
+ supports_scheduled_payments: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports scheduled payments", alias="supportsScheduledPayments")
49
+ supports_smart_transfers: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports smart transfers", alias="supportsSmartTransfers")
50
+ __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation", "supportsScheduledPayments", "supportsSmartTransfers"]
49
51
 
50
52
  @field_validator('products')
51
53
  def products_validate_enum(cls, value):
@@ -134,7 +136,9 @@ class Connector(BaseModel):
134
136
  "resetPasswordUrl": obj.get("resetPasswordUrl"),
135
137
  "health": ConnectorHealth.from_dict(obj["health"]) if obj.get("health") is not None else None,
136
138
  "isOpenFinance": obj.get("isOpenFinance"),
137
- "supportsPaymentInitiation": obj.get("supportsPaymentInitiation")
139
+ "supportsPaymentInitiation": obj.get("supportsPaymentInitiation"),
140
+ "supportsScheduledPayments": obj.get("supportsScheduledPayments"),
141
+ "supportsSmartTransfers": obj.get("supportsSmartTransfers")
138
142
  })
139
143
  return _obj
140
144
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post14
3
+ Version: 1.0.0.post15
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.post14
23
- - Generator version: 7.7.0-SNAPSHOT
22
+ - Package version: 1.0.0.post15
23
+ - Generator version: 7.8.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,36 +1,36 @@
1
- pluggy_sdk/__init__.py,sha256=W95FLtsgQuD8TzrKa0hD9R5kYspPe0Ny4pFe-rZkO0s,13269
2
- pluggy_sdk/api_client.py,sha256=sZEfjv3edhLEkh1NZKB0TAArpvji3s4xxmew4wigFxE,26720
1
+ pluggy_sdk/__init__.py,sha256=Q_yRmCglV-_GMKOjrqV6a7KQm7ZfkaDnEWbAmfqqtcc,13269
2
+ pluggy_sdk/api_client.py,sha256=zFqsVQIY11VS8xHCKPpZVGQBbrpHlZt9MnSjL_4aC_Q,26767
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=MPe6YTOSgWuilINAOzfi4JScLV4NODG5Bva8IWUo7Rk,15331
4
+ pluggy_sdk/configuration.py,sha256=8OKiGAPbaiIUa1Czra0Z2yvNPOejtwc9p5S-HCSzCtE,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=D_RNRreA40nKOqIPQZnJY_MyKxoGbS-lw34DVFrcTZk,1419
9
- pluggy_sdk/api/account_api.py,sha256=WsxWuibe2G4IG2-_KVDKQ4D4NAlnnhrdrWo5h3csO9g,22047
10
- pluggy_sdk/api/acquirer_anticipation_api.py,sha256=atMj8leyJ2xpFTsZ0t1kR4BXxwfbgUPE2Mdt8lN1yW0,26206
11
- pluggy_sdk/api/acquirer_receivable_api.py,sha256=wCGsZ_4TM6TlG4NFbDhQfYlpmeFyxc92AyixW3C-IC0,26120
12
- pluggy_sdk/api/acquirer_sale_api.py,sha256=APMdSUQMTSSGzUljDCv6En1YsYutLWW158CDd7_Uc9Y,25869
13
- pluggy_sdk/api/auth_api.py,sha256=Cc96penvTCY8BwuYrxcKTSKr4V4iV4R9_d7aznMj2Mo,22882
14
- pluggy_sdk/api/benefit_api.py,sha256=pq0eo6qkBtxZVFPBFSD-WVYuVVWo-7jk6iawYuaWIjQ,21061
15
- pluggy_sdk/api/bill_api.py,sha256=QbcdCx12Xevz-BFp81r09YgTf2ll9amiZttx84V_jp4,20960
16
- pluggy_sdk/api/bulk_payment_api.py,sha256=fn2xqKXEIJQk5P3foNE-6mTXFiVPCuotimhSnlvXJyY,32808
17
- pluggy_sdk/api/category_api.py,sha256=HBD42oXK1HWA0QHNxVna6HYst525exzy_HE5p8ZSNnc,41577
18
- pluggy_sdk/api/connector_api.py,sha256=XDOWte1nwrBOnJ7u3PMI0991K-L0u-kJ_thZbn_ZGmc,41008
19
- pluggy_sdk/api/consent_api.py,sha256=9PUU_pIyUL0BnRR8K3y2S_AM1IE_9TOrg6SThpikQbw,21295
20
- pluggy_sdk/api/identity_api.py,sha256=Mp85wNmruJHbxNb6l0JLBoUL644UHojY1nFpg9D02A8,21602
21
- pluggy_sdk/api/income_report_api.py,sha256=CIUYSQvHZqaZzF3HfTOa3ZUvYeAFmcsgUc3FFKdf-O4,11593
22
- pluggy_sdk/api/investment_api.py,sha256=szPkEkFWMHT7-IGVh0rVO35vSo39aDoF5AovewvnOzA,35989
23
- pluggy_sdk/api/items_api.py,sha256=5GyZ1p3Nip7oXcHH7MNKgIy_0ws3uo3S1xgjyesYDg4,54593
24
- pluggy_sdk/api/loan_api.py,sha256=-SD37ZzfB9S2SaqyUl0Gg3Plko7olxmu04jcB2mA7Vg,20840
25
- pluggy_sdk/api/payment_customer_api.py,sha256=qUiuhizeTkXMuISJTiaAVaTMycn_d1zNvAmc0uv2Vew,54784
26
- pluggy_sdk/api/payment_intent_api.py,sha256=jcf5dDrmMjSz90cQ9H-u1NaIHW0aATLs6nQyyRID1tc,32020
27
- pluggy_sdk/api/payment_recipient_api.py,sha256=icivhir7nkhkcnR-LLKsuJJGRydeGSEiDSeP-eX8LnU,77933
28
- pluggy_sdk/api/payment_request_api.py,sha256=NFJ4eioioo5HysQPY_sICft-QOzyeF5CC_6afCvLLWs,115339
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
27
+ pluggy_sdk/api/payment_recipient_api.py,sha256=9TXmijfHs32Hj9tAnRAUSQ3GZcb79uGnz-FyormdYAE,78374
28
+ pluggy_sdk/api/payment_request_api.py,sha256=Z_7tNBvYobxik_SmxLW-KLmOoL0Fvbh27oO0hSJVoxQ,116032
29
29
  pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
30
- pluggy_sdk/api/portfolio_yield_api.py,sha256=R_Cz-1G0s7qOUltG-VOXi8GSCNceM1j4lmu9V7zM0jM,22320
31
- pluggy_sdk/api/smart_account_api.py,sha256=yDx88F6Lep1iepL4pN9o305Ko9mUOB20a-U0Rkz282U,66193
32
- pluggy_sdk/api/transaction_api.py,sha256=EOqLMWbyLTz93FlzhvHF68DcJ4BAgJ6_81K1mmy4Qr0,37553
33
- pluggy_sdk/api/webhook_api.py,sha256=IRqHT_F6VVrMxE3JkXeXidNQnjORmC89xZLTzgpwZNQ,55525
30
+ pluggy_sdk/api/portfolio_yield_api.py,sha256=7s_DeSuFUVnR2XWzdi5mFrKDGVz3izgIZsbZfzsBZ08,22446
31
+ pluggy_sdk/api/smart_account_api.py,sha256=THih8KrinkShpXBa3hHQnZ_WoLiqOHNQzNr525U79C8,66571
32
+ pluggy_sdk/api/transaction_api.py,sha256=RZoU3aUqKeqanKGlyuo5DNyRLVWelnwOMNjg1FYBXNc,37742
33
+ pluggy_sdk/api/webhook_api.py,sha256=_g7Ca5YYLuED49BRGmG-IiA6I9IUbWF4zqrIgUQRUOw,55840
34
34
  pluggy_sdk/models/__init__.py,sha256=v4eVO5kef0i_hya7pF0lvR5WWBfcUgtxQnJot0VfSLE,11383
35
35
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
36
36
  pluggy_sdk/models/accounts_list200_response.py,sha256=P-3r6PIEv0uV5gkeOVD5pcQOu2M-c2wi2zkMLN9hxdI,3417
@@ -53,8 +53,8 @@ pluggy_sdk/models/asset_distribution.py,sha256=v_K-fNtviugnJLfSAYSgzoit0JIDQoq-m
53
53
  pluggy_sdk/models/auth_request.py,sha256=CegRciH-OX64aMnj6WYuzEj58w87amkUxzrVLDaSo7U,2726
54
54
  pluggy_sdk/models/auth_response.py,sha256=x5hEPWBfbOye7m35QGiBo7TWz1JAaPZ0n0jNnN2F5As,2577
55
55
  pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZE,3243
56
- pluggy_sdk/models/benefit_loan.py,sha256=ojAmaDDAk_SS5ySuVP2H0C5SpNN4FhMWXLSOaHSeFqQ,6158
57
- pluggy_sdk/models/benefit_loan_client.py,sha256=03tOGl75FA3qNc36ya002_LUBY5YOBDbQFotx8tJ0P8,3756
56
+ pluggy_sdk/models/benefit_loan.py,sha256=Z8LkjzzgtQArTWrn86yHZEUE3G2YpMXicoxDzCkDJbs,6155
57
+ pluggy_sdk/models/benefit_loan_client.py,sha256=YwIDPQE4Ma9mQybgRSiQPfMXGQL8iULpc-rosBLuQro,3761
58
58
  pluggy_sdk/models/benefit_response.py,sha256=Xtlg_Y87Ie9al_PQTv_Cc2UPttnqBJkBxxNozl3XBxo,5332
59
59
  pluggy_sdk/models/benefit_response_paying_institution.py,sha256=sur_yb6li6GoQqbt49OsD9FbPNx-kQ077fVMtuFOG5M,3044
60
60
  pluggy_sdk/models/benefits_list200_response.py,sha256=Q9O4rOyzNtGebcpxcE2W8XXBwUiBkgdrCJpa5NOH0wA,3440
@@ -71,7 +71,7 @@ pluggy_sdk/models/client_category_rule.py,sha256=MiJA4luKDsgTCfSV1jZj-MclCk46WF7
71
71
  pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
72
72
  pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
73
73
  pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
74
- pluggy_sdk/models/connector.py,sha256=QtR3K3eJQIXew-vzkhgUwZhVZD3cDNX2oiyBBTDM_qA,6878
74
+ pluggy_sdk/models/connector.py,sha256=X6guhp1yIGKbHK44UyqqkQHzd1IcsVhXR4j8zGBAnrY,7438
75
75
  pluggy_sdk/models/connector_credential.py,sha256=n9roD8qlX3VHOpug-zM7tXNizzIwp36PyBtf4J--39Q,4901
76
76
  pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
77
77
  pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
@@ -196,7 +196,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
196
196
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
197
197
  pluggy_sdk/models/webhooks_list200_response.py,sha256=DITv0Fg0S1Jl8k9sSdKKwhWmzp0TmMmrJjQqgo36yL0,3360
198
198
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
199
- pluggy_sdk-1.0.0.post14.dist-info/METADATA,sha256=8Eo-ZGq2XDHEN0nKqMVCf_sRqOl3-AavhFPd6VtZWOI,23072
200
- pluggy_sdk-1.0.0.post14.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
201
- pluggy_sdk-1.0.0.post14.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
202
- pluggy_sdk-1.0.0.post14.dist-info/RECORD,,
199
+ pluggy_sdk-1.0.0.post15.dist-info/METADATA,sha256=k4UvYJXGv-CPiVHkYsZAwSrtlacNGSM3rlpxpnjEwro,23072
200
+ pluggy_sdk-1.0.0.post15.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
201
+ pluggy_sdk-1.0.0.post15.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
202
+ pluggy_sdk-1.0.0.post15.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.1)
2
+ Generator: setuptools (70.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5