pluggy-sdk 1.0.0.post49__py3-none-any.whl → 1.0.0.post50__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 +1 -1
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/create_payment_recipient.py +7 -9
- pluggy_sdk/models/create_payment_request.py +5 -3
- pluggy_sdk/models/create_pix_qr_payment_request.py +5 -3
- pluggy_sdk/models/payment_request.py +5 -3
- pluggy_sdk/models/update_payment_recipient.py +5 -7
- pluggy_sdk/models/update_payment_request.py +5 -3
- {pluggy_sdk-1.0.0.post49.dist-info → pluggy_sdk-1.0.0.post50.dist-info}/METADATA +2 -2
- {pluggy_sdk-1.0.0.post49.dist-info → pluggy_sdk-1.0.0.post50.dist-info}/RECORD +13 -13
- {pluggy_sdk-1.0.0.post49.dist-info → pluggy_sdk-1.0.0.post50.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post49.dist-info → pluggy_sdk-1.0.0.post50.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
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.
|
94
|
+
self.user_agent = 'OpenAPI-Generator/1.0.0.post50/python'
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
96
96
|
|
97
97
|
def __enter__(self):
|
pluggy_sdk/configuration.py
CHANGED
@@ -532,7 +532,7 @@ conf = pluggy_sdk.Configuration(
|
|
532
532
|
"OS: {env}\n"\
|
533
533
|
"Python Version: {pyversion}\n"\
|
534
534
|
"Version of the API: 1.0.0\n"\
|
535
|
-
"SDK Package Version: 1.0.0.
|
535
|
+
"SDK Package Version: 1.0.0.post50".\
|
536
536
|
format(env=sys.platform, pyversion=sys.version)
|
537
537
|
|
538
538
|
def get_host_settings(self) -> List[HostSetting]:
|
@@ -19,21 +19,20 @@ import re # noqa: F401
|
|
19
19
|
import json
|
20
20
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
22
|
+
from typing import Any, ClassVar, Dict, List
|
23
23
|
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
24
24
|
from typing import Optional, Set
|
25
25
|
from typing_extensions import Self
|
26
26
|
|
27
27
|
class CreatePaymentRecipient(BaseModel):
|
28
28
|
"""
|
29
|
-
Request with information to create a payment recipient
|
29
|
+
Request with information to create a payment recipient.
|
30
30
|
""" # noqa: E501
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
__properties: ClassVar[List[str]] = ["pixKey", "taxNumber", "name", "paymentInstitutionId", "account"]
|
31
|
+
tax_number: StrictStr = Field(description="Account owner tax number. Can be CPF or CNPJ (only numbers)", alias="taxNumber")
|
32
|
+
name: StrictStr = Field(description="Account owner name.")
|
33
|
+
payment_institution_id: StrictStr = Field(description="Primary identifier of the institution associated to the payment recipient.", alias="paymentInstitutionId")
|
34
|
+
account: PaymentRecipientAccount = Field(description="Recipient's bank account destination.")
|
35
|
+
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account"]
|
37
36
|
|
38
37
|
model_config = ConfigDict(
|
39
38
|
populate_by_name=True,
|
@@ -89,7 +88,6 @@ class CreatePaymentRecipient(BaseModel):
|
|
89
88
|
return cls.model_validate(obj)
|
90
89
|
|
91
90
|
_obj = cls.model_validate({
|
92
|
-
"pixKey": obj.get("pixKey"),
|
93
91
|
"taxNumber": obj.get("taxNumber"),
|
94
92
|
"name": obj.get("name"),
|
95
93
|
"paymentInstitutionId": obj.get("paymentInstitutionId"),
|
@@ -18,7 +18,7 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
23
23
|
from pluggy_sdk.models.create_payment_request_schedule import CreatePaymentRequestSchedule
|
24
24
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
@@ -36,7 +36,8 @@ class CreatePaymentRequest(BaseModel):
|
|
36
36
|
customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
|
37
37
|
client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
|
38
38
|
schedule: Optional[CreatePaymentRequestSchedule] = None
|
39
|
-
|
39
|
+
is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be created in sandbox mode. Default: false.", alias="isSandbox")
|
40
|
+
__properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "schedule", "isSandbox"]
|
40
41
|
|
41
42
|
model_config = ConfigDict(
|
42
43
|
populate_by_name=True,
|
@@ -106,7 +107,8 @@ class CreatePaymentRequest(BaseModel):
|
|
106
107
|
"recipientId": obj.get("recipientId"),
|
107
108
|
"customerId": obj.get("customerId"),
|
108
109
|
"clientPaymentId": obj.get("clientPaymentId"),
|
109
|
-
"schedule": CreatePaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None
|
110
|
+
"schedule": CreatePaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
|
111
|
+
"isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
|
110
112
|
})
|
111
113
|
return _obj
|
112
114
|
|
@@ -18,7 +18,7 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
24
24
|
from typing import Optional, Set
|
@@ -31,7 +31,8 @@ class CreatePixQrPaymentRequest(BaseModel):
|
|
31
31
|
pix_qr_code: StrictStr = Field(description="Pix QR code", alias="pixQrCode")
|
32
32
|
callback_urls: Optional[PaymentRequestCallbackUrls] = Field(default=None, alias="callbackUrls")
|
33
33
|
customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
|
34
|
-
|
34
|
+
is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be created in sandbox mode. Default: false.", alias="isSandbox")
|
35
|
+
__properties: ClassVar[List[str]] = ["pixQrCode", "callbackUrls", "customerId", "isSandbox"]
|
35
36
|
|
36
37
|
model_config = ConfigDict(
|
37
38
|
populate_by_name=True,
|
@@ -89,7 +90,8 @@ class CreatePixQrPaymentRequest(BaseModel):
|
|
89
90
|
_obj = cls.model_validate({
|
90
91
|
"pixQrCode": obj.get("pixQrCode"),
|
91
92
|
"callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
|
92
|
-
"customerId": obj.get("customerId")
|
93
|
+
"customerId": obj.get("customerId"),
|
94
|
+
"isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
|
93
95
|
})
|
94
96
|
return _obj
|
95
97
|
|
@@ -19,7 +19,7 @@ import re # noqa: F401
|
|
19
19
|
import json
|
20
20
|
|
21
21
|
from datetime import datetime
|
22
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
|
22
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr, field_validator
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
24
24
|
from pluggy_sdk.models.boleto import Boleto
|
25
25
|
from pluggy_sdk.models.payment_intent_automatic_pix import PaymentIntentAutomaticPix
|
@@ -49,7 +49,8 @@ class PaymentRequest(BaseModel):
|
|
49
49
|
automatic_pix: Optional[PaymentIntentAutomaticPix] = Field(default=None, alias="automaticPix")
|
50
50
|
schedule: Optional[PaymentRequestSchedule] = None
|
51
51
|
error_detail: Optional[PaymentRequestErrorDetail] = Field(default=None, alias="errorDetail")
|
52
|
-
|
52
|
+
is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request is in sandbox mode. Default: false.", alias="isSandbox")
|
53
|
+
__properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "automaticPix", "schedule", "errorDetail", "isSandbox"]
|
53
54
|
|
54
55
|
@field_validator('status')
|
55
56
|
def status_validate_enum(cls, value):
|
@@ -139,7 +140,8 @@ class PaymentRequest(BaseModel):
|
|
139
140
|
"boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None,
|
140
141
|
"automaticPix": PaymentIntentAutomaticPix.from_dict(obj["automaticPix"]) if obj.get("automaticPix") is not None else None,
|
141
142
|
"schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
|
142
|
-
"errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
|
143
|
+
"errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None,
|
144
|
+
"isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
|
143
145
|
})
|
144
146
|
return _obj
|
145
147
|
|
@@ -28,12 +28,11 @@ class UpdatePaymentRecipient(BaseModel):
|
|
28
28
|
"""
|
29
29
|
Request with information to update a payment recipient
|
30
30
|
""" # noqa: E501
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
__properties: ClassVar[List[str]] = ["pixKey", "taxNumber", "name", "paymentInstitutionId", "account"]
|
31
|
+
tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers)", alias="taxNumber")
|
32
|
+
name: Optional[StrictStr] = Field(default=None, description="Account owner name.")
|
33
|
+
payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient.", alias="paymentInstitutionId")
|
34
|
+
account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination.")
|
35
|
+
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account"]
|
37
36
|
|
38
37
|
model_config = ConfigDict(
|
39
38
|
populate_by_name=True,
|
@@ -89,7 +88,6 @@ class UpdatePaymentRecipient(BaseModel):
|
|
89
88
|
return cls.model_validate(obj)
|
90
89
|
|
91
90
|
_obj = cls.model_validate({
|
92
|
-
"pixKey": obj.get("pixKey"),
|
93
91
|
"taxNumber": obj.get("taxNumber"),
|
94
92
|
"name": obj.get("name"),
|
95
93
|
"paymentInstitutionId": obj.get("paymentInstitutionId"),
|
@@ -18,7 +18,7 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
23
23
|
from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
|
24
24
|
from typing import Optional, Set
|
@@ -34,7 +34,8 @@ class UpdatePaymentRequest(BaseModel):
|
|
34
34
|
recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
|
35
35
|
customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
|
36
36
|
client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
|
37
|
-
|
37
|
+
is_sandbox: Optional[StrictBool] = Field(default=False, description="Indicates if this payment request should be updated as sandbox. Default: false.", alias="isSandbox")
|
38
|
+
__properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "isSandbox"]
|
38
39
|
|
39
40
|
model_config = ConfigDict(
|
40
41
|
populate_by_name=True,
|
@@ -95,7 +96,8 @@ class UpdatePaymentRequest(BaseModel):
|
|
95
96
|
"callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
|
96
97
|
"recipientId": obj.get("recipientId"),
|
97
98
|
"customerId": obj.get("customerId"),
|
98
|
-
"clientPaymentId": obj.get("clientPaymentId")
|
99
|
+
"clientPaymentId": obj.get("clientPaymentId"),
|
100
|
+
"isSandbox": obj.get("isSandbox") if obj.get("isSandbox") is not None else False
|
99
101
|
})
|
100
102
|
return _obj
|
101
103
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pluggy_sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post50
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -23,7 +23,7 @@ Pluggy's main API to review data and execute connectors
|
|
23
23
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
24
24
|
|
25
25
|
- API version: 1.0.0
|
26
|
-
- Package version: 1.0.0.
|
26
|
+
- Package version: 1.0.0.post50
|
27
27
|
- Generator version: 7.14.0
|
28
28
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
29
29
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=y_EzpqfGwls7ubr2IzPkSfetTg0JgKpKr0J-hLjImVk,22277
|
2
|
+
pluggy_sdk/api_client.py,sha256=FxL0IMxAm4_5ARrNta9bz_cwGUq5f20cmAezHBRWGBo,27672
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=6oNVEOC3Gtlh1uGKNrkkWqSCuXv0CNDycbr33LhU2Lw,18823
|
5
5
|
pluggy_sdk/exceptions.py,sha256=i3cDTqzBiyuMq9VdCqE6CVVf09vq_TDYL9uOVvFoZis,6452
|
6
6
|
pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pluggy_sdk/rest.py,sha256=GHVGUFTXDukPvnXQi5AUNhTb1Ko-ZdZdvJQLnovZlbs,9445
|
@@ -104,10 +104,10 @@ pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrK
|
|
104
104
|
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=jM5YueP_je65I8koHuKY7c6ssz0KQgTaiRrS3XMDz7o,3479
|
105
105
|
pluggy_sdk/models/create_payment_customer_request_body.py,sha256=xwJ5ZA645R7Dm14BCpnLVxNH77pRGEOpKZ4pETlPFBg,3389
|
106
106
|
pluggy_sdk/models/create_payment_intent.py,sha256=3sqYR4sW5aODMZEeYjjOeEegT7MIUsj4nTYnTqdpzgg,4360
|
107
|
-
pluggy_sdk/models/create_payment_recipient.py,sha256=
|
108
|
-
pluggy_sdk/models/create_payment_request.py,sha256=
|
107
|
+
pluggy_sdk/models/create_payment_recipient.py,sha256=drs2LJxLTAf9GsqCYug6_nEPsyQM-Eg1m4DFKIy7t_o,3487
|
108
|
+
pluggy_sdk/models/create_payment_request.py,sha256=1quzeNg0kgf3MNbAvJ8sXZbGn_lQ728bCkCaQO9gDTA,4883
|
109
109
|
pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
|
110
|
-
pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=
|
110
|
+
pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=HlCLe5IVXHzzkhAYfar3UcSwQ7DcQrwNUUx1TV_esq0,3652
|
111
111
|
pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQaGgeHhSNuIozC_OTcF7g,4030
|
112
112
|
pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
|
113
113
|
pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
|
@@ -192,7 +192,7 @@ pluggy_sdk/models/payment_recipient.py,sha256=PKpjebsFXZBMQphfF0bragOYzn4ym2V504
|
|
192
192
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
193
193
|
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
194
194
|
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
195
|
-
pluggy_sdk/models/payment_request.py,sha256=
|
195
|
+
pluggy_sdk/models/payment_request.py,sha256=QK5OyiUnevkjKTgobqtFz0QS7JxaI9XrPF0C5Qgr3k0,7773
|
196
196
|
pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
|
197
197
|
pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
|
198
198
|
pluggy_sdk/models/payment_request_get_automatic_pix_schedules200_response.py,sha256=gJiw37o8rVZkivwqFC3F_zy6iKrhfeJcoLulSptdxZQ,3599
|
@@ -234,14 +234,14 @@ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGv
|
|
234
234
|
pluggy_sdk/models/transaction.py,sha256=cEBiOxkkW3t1KRSwgOCwyhjNnOKW_Wv3KTaAAGMjU_Y,6914
|
235
235
|
pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
|
236
236
|
pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
|
237
|
-
pluggy_sdk/models/update_payment_recipient.py,sha256=
|
238
|
-
pluggy_sdk/models/update_payment_request.py,sha256=
|
237
|
+
pluggy_sdk/models/update_payment_recipient.py,sha256=eTJjDlN0dkjf2VaB3IC6ZZIJ9ZMlmx1pKA1ih35vRLs,3592
|
238
|
+
pluggy_sdk/models/update_payment_request.py,sha256=X96TN-SyqigwgckrTseqPPaJpUzbxMQpM1QpDw5gZ1o,4229
|
239
239
|
pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
|
240
240
|
pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
|
241
241
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
242
242
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
243
243
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
244
|
-
pluggy_sdk-1.0.0.
|
245
|
-
pluggy_sdk-1.0.0.
|
246
|
-
pluggy_sdk-1.0.0.
|
247
|
-
pluggy_sdk-1.0.0.
|
244
|
+
pluggy_sdk-1.0.0.post50.dist-info/METADATA,sha256=ypQ7wifE8X-IeudLxY0nA62WJPfzjBGVBtU3oDEFEKQ,23515
|
245
|
+
pluggy_sdk-1.0.0.post50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
246
|
+
pluggy_sdk-1.0.0.post50.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
247
|
+
pluggy_sdk-1.0.0.post50.dist-info/RECORD,,
|
File without changes
|
File without changes
|