pluggy-sdk 1.0.0.post23__py3-none-any.whl → 1.0.0.post24__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 CHANGED
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.0.0.post23"
18
+ __version__ = "1.0.0.post24"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -151,6 +151,7 @@ from pluggy_sdk.models.parameter_validation_response import ParameterValidationR
151
151
  from pluggy_sdk.models.payment_customer import PaymentCustomer
152
152
  from pluggy_sdk.models.payment_customers_list200_response import PaymentCustomersList200Response
153
153
  from pluggy_sdk.models.payment_data import PaymentData
154
+ from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMetadata
154
155
  from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
155
156
  from pluggy_sdk.models.payment_institution import PaymentInstitution
156
157
  from pluggy_sdk.models.payment_intent import PaymentIntent
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.post23/python'
94
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post24/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -410,7 +410,7 @@ class ApiClient:
410
410
  data = ""
411
411
  else:
412
412
  data = json.loads(response_text)
413
- elif re.match(r'^text/plain\s*(;|$)', content_type, re.IGNORECASE):
413
+ elif re.match(r'^text\/[a-z.+-]+\s*(;|$)', content_type, re.IGNORECASE):
414
414
  data = response_text
415
415
  else:
416
416
  raise ApiException(
@@ -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.post23".\
417
+ "SDK Package Version: 1.0.0.post24".\
418
418
  format(env=sys.platform, pyversion=sys.version)
419
419
 
420
420
  def get_host_settings(self):
@@ -114,6 +114,7 @@ from pluggy_sdk.models.parameter_validation_response import ParameterValidationR
114
114
  from pluggy_sdk.models.payment_customer import PaymentCustomer
115
115
  from pluggy_sdk.models.payment_customers_list200_response import PaymentCustomersList200Response
116
116
  from pluggy_sdk.models.payment_data import PaymentData
117
+ from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMetadata
117
118
  from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
118
119
  from pluggy_sdk.models.payment_institution import PaymentInstitution
119
120
  from pluggy_sdk.models.payment_intent import PaymentIntent
@@ -20,6 +20,7 @@ import json
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
+ from pluggy_sdk.models.payment_data_boleto_metadata import PaymentDataBoletoMetadata
23
24
  from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
24
25
  from typing import Optional, Set
25
26
  from typing_extensions import Self
@@ -33,8 +34,9 @@ class PaymentData(BaseModel):
33
34
  reason: Optional[StrictStr] = Field(default=None, description="User's motive submitted while making the transfer")
34
35
  reference_number: Optional[StrictStr] = Field(default=None, description="Reference number for the transfer/payment", alias="referenceNumber")
35
36
  receiver_reference_id: Optional[StrictStr] = Field(default=None, description="String submitted by the receiver associated with the payment when generating the payment request.", alias="receiverReferenceId")
36
- payment_method: Optional[StrictStr] = Field(default=None, description="Type of transfer. TED, DOC, PIX or TEV", alias="paymentMethod")
37
- __properties: ClassVar[List[str]] = ["payer", "receiver", "reason", "referenceNumber", "receiverReferenceId", "paymentMethod"]
37
+ payment_method: Optional[StrictStr] = Field(default=None, description="Type of transfer. TED, DOC, PIX, TEV or BOLETO", alias="paymentMethod")
38
+ boleto_metadata: Optional[PaymentDataBoletoMetadata] = Field(default=None, alias="boletoMetadata")
39
+ __properties: ClassVar[List[str]] = ["payer", "receiver", "reason", "referenceNumber", "receiverReferenceId", "paymentMethod", "boletoMetadata"]
38
40
 
39
41
  model_config = ConfigDict(
40
42
  populate_by_name=True,
@@ -81,6 +83,9 @@ class PaymentData(BaseModel):
81
83
  # override the default output from pydantic by calling `to_dict()` of receiver
82
84
  if self.receiver:
83
85
  _dict['receiver'] = self.receiver.to_dict()
86
+ # override the default output from pydantic by calling `to_dict()` of boleto_metadata
87
+ if self.boleto_metadata:
88
+ _dict['boletoMetadata'] = self.boleto_metadata.to_dict()
84
89
  return _dict
85
90
 
86
91
  @classmethod
@@ -98,7 +103,8 @@ class PaymentData(BaseModel):
98
103
  "reason": obj.get("reason"),
99
104
  "referenceNumber": obj.get("referenceNumber"),
100
105
  "receiverReferenceId": obj.get("receiverReferenceId"),
101
- "paymentMethod": obj.get("paymentMethod")
106
+ "paymentMethod": obj.get("paymentMethod"),
107
+ "boletoMetadata": PaymentDataBoletoMetadata.from_dict(obj["boletoMetadata"]) if obj.get("boletoMetadata") is not None else None
102
108
  })
103
109
  return _obj
104
110
 
@@ -0,0 +1,98 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pluggy API
5
+
6
+ Pluggy's main API to review data and execute connectors
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: hello@pluggy.ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class PaymentDataBoletoMetadata(BaseModel):
27
+ """
28
+ Information of the boleto associated with the payment
29
+ """ # noqa: E501
30
+ digitable_line: Optional[StrictStr] = Field(default=None, description="Boleto identifier", alias="digitableLine")
31
+ barcode: Optional[StrictStr] = Field(default=None, description="Boleto barcode number")
32
+ base_amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Boleto original amount without considering penalties / interests / discounts", alias="baseAmount")
33
+ interest_amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Boleto interest amount", alias="interestAmount")
34
+ penalty_amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Boleto penalty amount", alias="penaltyAmount")
35
+ discount_amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Boleto discount amount", alias="discountAmount")
36
+ __properties: ClassVar[List[str]] = ["digitableLine", "barcode", "baseAmount", "interestAmount", "penaltyAmount", "discountAmount"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of PaymentDataBoletoMetadata from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ """
69
+ excluded_fields: Set[str] = set([
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ return _dict
78
+
79
+ @classmethod
80
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
81
+ """Create an instance of PaymentDataBoletoMetadata from a dict"""
82
+ if obj is None:
83
+ return None
84
+
85
+ if not isinstance(obj, dict):
86
+ return cls.model_validate(obj)
87
+
88
+ _obj = cls.model_validate({
89
+ "digitableLine": obj.get("digitableLine"),
90
+ "barcode": obj.get("barcode"),
91
+ "baseAmount": obj.get("baseAmount"),
92
+ "interestAmount": obj.get("interestAmount"),
93
+ "penaltyAmount": obj.get("penaltyAmount"),
94
+ "discountAmount": obj.get("discountAmount")
95
+ })
96
+ return _obj
97
+
98
+
@@ -33,10 +33,10 @@ class StatusDetail(BaseModel):
33
33
  transactions: Optional[StatusDetailProduct] = None
34
34
  investments: Optional[StatusDetailProduct] = None
35
35
  identity: Optional[StatusDetailProduct] = None
36
- investment_transactions: Optional[StatusDetailProduct] = Field(default=None, alias="investmentTransactions")
36
+ investments_transactions: Optional[StatusDetailProduct] = Field(default=None, alias="investmentsTransactions")
37
37
  payment_data: Optional[StatusDetailProduct] = Field(default=None, alias="paymentData")
38
38
  loans: Optional[StatusDetailProduct] = None
39
- __properties: ClassVar[List[str]] = ["accounts", "creditCards", "transactions", "investments", "identity", "investmentTransactions", "paymentData", "loans"]
39
+ __properties: ClassVar[List[str]] = ["accounts", "creditCards", "transactions", "investments", "identity", "investmentsTransactions", "paymentData", "loans"]
40
40
 
41
41
  model_config = ConfigDict(
42
42
  populate_by_name=True,
@@ -92,9 +92,9 @@ class StatusDetail(BaseModel):
92
92
  # override the default output from pydantic by calling `to_dict()` of identity
93
93
  if self.identity:
94
94
  _dict['identity'] = self.identity.to_dict()
95
- # override the default output from pydantic by calling `to_dict()` of investment_transactions
96
- if self.investment_transactions:
97
- _dict['investmentTransactions'] = self.investment_transactions.to_dict()
95
+ # override the default output from pydantic by calling `to_dict()` of investments_transactions
96
+ if self.investments_transactions:
97
+ _dict['investmentsTransactions'] = self.investments_transactions.to_dict()
98
98
  # override the default output from pydantic by calling `to_dict()` of payment_data
99
99
  if self.payment_data:
100
100
  _dict['paymentData'] = self.payment_data.to_dict()
@@ -118,7 +118,7 @@ class StatusDetail(BaseModel):
118
118
  "transactions": StatusDetailProduct.from_dict(obj["transactions"]) if obj.get("transactions") is not None else None,
119
119
  "investments": StatusDetailProduct.from_dict(obj["investments"]) if obj.get("investments") is not None else None,
120
120
  "identity": StatusDetailProduct.from_dict(obj["identity"]) if obj.get("identity") is not None else None,
121
- "investmentTransactions": StatusDetailProduct.from_dict(obj["investmentTransactions"]) if obj.get("investmentTransactions") is not None else None,
121
+ "investmentsTransactions": StatusDetailProduct.from_dict(obj["investmentsTransactions"]) if obj.get("investmentsTransactions") is not None else None,
122
122
  "paymentData": StatusDetailProduct.from_dict(obj["paymentData"]) if obj.get("paymentData") is not None else None,
123
123
  "loans": StatusDetailProduct.from_dict(obj["loans"]) if obj.get("loans") is not None else None
124
124
  })
pluggy_sdk/rest.py CHANGED
@@ -226,7 +226,7 @@ class RESTClientObject:
226
226
  headers=headers,
227
227
  preload_content=False
228
228
  )
229
- elif headers['Content-Type'] == 'text/plain' and isinstance(body, bool):
229
+ elif headers['Content-Type'].startswith('text/') and isinstance(body, bool):
230
230
  request_body = "true" if body else "false"
231
231
  r = self.pool_manager.request(
232
232
  method,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post23
3
+ Version: 1.0.0.post24
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.post23
23
- - Generator version: 7.9.0-SNAPSHOT
22
+ - Package version: 1.0.0.post24
23
+ - Generator version: 7.10.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
 
@@ -295,6 +295,7 @@ Class | Method | HTTP request | Description
295
295
  - [PaymentCustomer](docs/PaymentCustomer.md)
296
296
  - [PaymentCustomersList200Response](docs/PaymentCustomersList200Response.md)
297
297
  - [PaymentData](docs/PaymentData.md)
298
+ - [PaymentDataBoletoMetadata](docs/PaymentDataBoletoMetadata.md)
298
299
  - [PaymentDataParticipant](docs/PaymentDataParticipant.md)
299
300
  - [PaymentInstitution](docs/PaymentInstitution.md)
300
301
  - [PaymentIntent](docs/PaymentIntent.md)
@@ -1,10 +1,10 @@
1
- pluggy_sdk/__init__.py,sha256=wsbd360PDSUXovH-0DYX_KilcLMhIWcOsZ31DGQVyW0,12668
2
- pluggy_sdk/api_client.py,sha256=a5b36GAC0gT7FUFbJrPVK7p-R-pkIK6Q5Ef0So2IOW8,27426
1
+ pluggy_sdk/__init__.py,sha256=dQV6J6CKuZLRW_hJmLF_B7G5G8DMe4hOyP1qYHKv-nk,12753
2
+ pluggy_sdk/api_client.py,sha256=md0b5ZJJ4_r764_uIdKFGDmuCFLvHVoNZsnLIyq-4QI,27431
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=svs3YwhudKI8VFViJMzcxf2RsCAZ7IVpDROXchvdIg8,15910
4
+ pluggy_sdk/configuration.py,sha256=vtsBpCo7li3KREgptoUkuhiNhWO2JNUjya88DAXu2Vw,15910
5
5
  pluggy_sdk/exceptions.py,sha256=nnh92yDlGdY1-zRsb0vQLebe4oyhrO63RXCYBhbrhoU,5953
6
6
  pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- pluggy_sdk/rest.py,sha256=bul9ovAN4BXJwh9yRpC8xb9pZva6xIKmUD72sIQa2yM,9385
7
+ pluggy_sdk/rest.py,sha256=vVdVX3R4AbYt0r6TChhsMVAnyL1nf0RA6eZYjkaaBzY,9389
8
8
  pluggy_sdk/api/__init__.py,sha256=4umr7Tt4Qe6X3s1rlm6bQdDSlVkKc2hxkzYnylxx3nM,1212
9
9
  pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
10
10
  pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
@@ -35,7 +35,7 @@ pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5T
35
35
  pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
36
36
  pluggy_sdk/api/transaction_api.py,sha256=P3uIVt77rC4f9ITPJjT9oi8-pFrM6RmpgXP55_unCME,37955
37
37
  pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
38
- pluggy_sdk/models/__init__.py,sha256=M0ane6PRzQj7-Qx6W2voHHWPRDwjvTu6vgQ2WmLZbLQ,10989
38
+ pluggy_sdk/models/__init__.py,sha256=WSe6V3mGYIW9twpSaOm_D7mVSxufkh8VJzoJax3pHAM,11074
39
39
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
40
40
  pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
41
41
  pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
@@ -156,7 +156,8 @@ pluggy_sdk/models/parameter_validation_error.py,sha256=LHjLtSC2E0jlaDeljJONx2ljh
156
156
  pluggy_sdk/models/parameter_validation_response.py,sha256=oy9I3j23NItavWkK1GxNJ8qu8snAeH0WygExjXQeLn4,3273
157
157
  pluggy_sdk/models/payment_customer.py,sha256=ex6-H5-hXd04Q39gJVPIYvnAVXp8bhQjg3-9fi2HBaY,3413
158
158
  pluggy_sdk/models/payment_customers_list200_response.py,sha256=X4IXDtLhs4g-ts7unv4sX50wtECDa6YH0rFXsuyyf60,3505
159
- pluggy_sdk/models/payment_data.py,sha256=uD2IjAS_sp_sr5ag9727MPUO7rPro4xfWVBQlHY2LfQ,4087
159
+ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnYW2eE,4638
160
+ pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
160
161
  pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
161
162
  pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
162
163
  pluggy_sdk/models/payment_intent.py,sha256=wSEOFlU1bvqe-g4ir7XsRBfgjksbqIxWAS54vCgI2VM,6981
@@ -200,7 +201,7 @@ pluggy_sdk/models/smart_transfer_callback_urls.py,sha256=pvgQt9jvPknZczpXDb80rTd
200
201
  pluggy_sdk/models/smart_transfer_payment.py,sha256=KVzD6ETAFMG-n9K9StFUrbArl5AFGyUvr5cN79OIJt8,4806
201
202
  pluggy_sdk/models/smart_transfer_preauthorization.py,sha256=M2JABKmnBAeU2tjJ32_NiDdzPUBzY1GRnzSDc66WC30,5387
202
203
  pluggy_sdk/models/smart_transfer_preauthorization_parameter.py,sha256=ZhP5Q_7gZoc-gghrqdWaDfXjhKxo6518FOIuMwVrEyE,2759
203
- pluggy_sdk/models/status_detail.py,sha256=BxXlcpBJ6kaY40A61CZx7dNWXfVVZhe-WOJQJG68KfY,5718
204
+ pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6tTOEHA,5728
204
205
  pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
205
206
  pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
206
207
  pluggy_sdk/models/transaction.py,sha256=Aokv7FMDJ0ubyX51FKeTMzEVMbLS0MmgQkTfv6yGaPY,6671
@@ -213,7 +214,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
213
214
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
214
215
  pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
215
216
  pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
216
- pluggy_sdk-1.0.0.post23.dist-info/METADATA,sha256=PNGDJJYjmlM5OhvSHjs6hkNNl5l6R09L3dgYqtXxJF4,22885
217
- pluggy_sdk-1.0.0.post23.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
218
- pluggy_sdk-1.0.0.post23.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
219
- pluggy_sdk-1.0.0.post23.dist-info/RECORD,,
217
+ pluggy_sdk-1.0.0.post24.dist-info/METADATA,sha256=3XxDAhwENeMyRFGeXvDrRr8Pao5t5HaSGVFj-TrVZFo,22952
218
+ pluggy_sdk-1.0.0.post24.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
219
+ pluggy_sdk-1.0.0.post24.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
220
+ pluggy_sdk-1.0.0.post24.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5