pluggy-sdk 1.0.0.post36__py3-none-any.whl → 1.0.0.post38__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 +12 -1
- pluggy_sdk/api/__init__.py +1 -0
- pluggy_sdk/api/boleto_management_api.py +1375 -0
- pluggy_sdk/api/payment_recipient_api.py +1 -18
- pluggy_sdk/api/transaction_api.py +46 -3
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/__init__.py +10 -0
- pluggy_sdk/models/boleto_connection.py +95 -0
- pluggy_sdk/models/create_boleto.py +94 -0
- pluggy_sdk/models/create_boleto_boleto.py +100 -0
- pluggy_sdk/models/create_boleto_boleto_payer.py +98 -0
- pluggy_sdk/models/create_boleto_connection.py +91 -0
- pluggy_sdk/models/create_boleto_connection_from_item.py +88 -0
- pluggy_sdk/models/create_item.py +1 -1
- pluggy_sdk/models/create_or_update_payment_customer.py +1 -1
- pluggy_sdk/models/create_payment_customer_request_body.py +1 -1
- pluggy_sdk/models/create_payment_recipient.py +2 -4
- pluggy_sdk/models/create_webhook.py +2 -2
- pluggy_sdk/models/investment.py +1 -11
- pluggy_sdk/models/issued_boleto.py +121 -0
- pluggy_sdk/models/issued_boleto_payer.py +126 -0
- pluggy_sdk/models/item_options.py +1 -1
- pluggy_sdk/models/payment_intent.py +8 -2
- pluggy_sdk/models/payment_intent_error_detail.py +94 -0
- pluggy_sdk/models/payment_request.py +8 -2
- pluggy_sdk/models/payment_request_error_detail.py +90 -0
- pluggy_sdk/models/update_item.py +1 -1
- pluggy_sdk/models/update_payment_recipient.py +2 -4
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/METADATA +17 -2
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/RECORD +33 -22
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/WHEEL +0 -0
- {pluggy_sdk-1.0.0.post36.dist-info → pluggy_sdk-1.0.0.post38.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,94 @@
|
|
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, StrictStr
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
+
from typing import Optional, Set
|
24
|
+
from typing_extensions import Self
|
25
|
+
|
26
|
+
class PaymentIntentErrorDetail(BaseModel):
|
27
|
+
"""
|
28
|
+
Error details when payment intent fails
|
29
|
+
""" # noqa: E501
|
30
|
+
code: Optional[StrictStr] = Field(default=None, description="Error code")
|
31
|
+
provider_code: Optional[StrictStr] = Field(default=None, description="Provider error code", alias="providerCode")
|
32
|
+
provider_title: Optional[StrictStr] = Field(default=None, description="Provider error title", alias="providerTitle")
|
33
|
+
provider_detail: Optional[StrictStr] = Field(default=None, description="Provider detailed error description", alias="providerDetail")
|
34
|
+
__properties: ClassVar[List[str]] = ["code", "providerCode", "providerTitle", "providerDetail"]
|
35
|
+
|
36
|
+
model_config = ConfigDict(
|
37
|
+
populate_by_name=True,
|
38
|
+
validate_assignment=True,
|
39
|
+
protected_namespaces=(),
|
40
|
+
)
|
41
|
+
|
42
|
+
|
43
|
+
def to_str(self) -> str:
|
44
|
+
"""Returns the string representation of the model using alias"""
|
45
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
46
|
+
|
47
|
+
def to_json(self) -> str:
|
48
|
+
"""Returns the JSON representation of the model using alias"""
|
49
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
50
|
+
return json.dumps(self.to_dict())
|
51
|
+
|
52
|
+
@classmethod
|
53
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
54
|
+
"""Create an instance of PaymentIntentErrorDetail from a JSON string"""
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
56
|
+
|
57
|
+
def to_dict(self) -> Dict[str, Any]:
|
58
|
+
"""Return the dictionary representation of the model using alias.
|
59
|
+
|
60
|
+
This has the following differences from calling pydantic's
|
61
|
+
`self.model_dump(by_alias=True)`:
|
62
|
+
|
63
|
+
* `None` is only added to the output dict for nullable fields that
|
64
|
+
were set at model initialization. Other fields with value `None`
|
65
|
+
are ignored.
|
66
|
+
"""
|
67
|
+
excluded_fields: Set[str] = set([
|
68
|
+
])
|
69
|
+
|
70
|
+
_dict = self.model_dump(
|
71
|
+
by_alias=True,
|
72
|
+
exclude=excluded_fields,
|
73
|
+
exclude_none=True,
|
74
|
+
)
|
75
|
+
return _dict
|
76
|
+
|
77
|
+
@classmethod
|
78
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
79
|
+
"""Create an instance of PaymentIntentErrorDetail from a dict"""
|
80
|
+
if obj is None:
|
81
|
+
return None
|
82
|
+
|
83
|
+
if not isinstance(obj, dict):
|
84
|
+
return cls.model_validate(obj)
|
85
|
+
|
86
|
+
_obj = cls.model_validate({
|
87
|
+
"code": obj.get("code"),
|
88
|
+
"providerCode": obj.get("providerCode"),
|
89
|
+
"providerTitle": obj.get("providerTitle"),
|
90
|
+
"providerDetail": obj.get("providerDetail")
|
91
|
+
})
|
92
|
+
return _obj
|
93
|
+
|
94
|
+
|
@@ -23,6 +23,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, Stric
|
|
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_request_callback_urls import PaymentRequestCallbackUrls
|
26
|
+
from pluggy_sdk.models.payment_request_error_detail import PaymentRequestErrorDetail
|
26
27
|
from pluggy_sdk.models.payment_request_schedule import PaymentRequestSchedule
|
27
28
|
from typing import Optional, Set
|
28
29
|
from typing_extensions import Self
|
@@ -44,7 +45,8 @@ class PaymentRequest(BaseModel):
|
|
44
45
|
pix_qr_code: Optional[StrictStr] = Field(default=None, description="Pix QR code generated by the payment receiver", alias="pixQrCode")
|
45
46
|
boleto: Optional[Boleto] = None
|
46
47
|
schedule: Optional[PaymentRequestSchedule] = None
|
47
|
-
|
48
|
+
error_detail: Optional[PaymentRequestErrorDetail] = Field(default=None, alias="errorDetail")
|
49
|
+
__properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "schedule", "errorDetail"]
|
48
50
|
|
49
51
|
@field_validator('status')
|
50
52
|
def status_validate_enum(cls, value):
|
@@ -101,6 +103,9 @@ class PaymentRequest(BaseModel):
|
|
101
103
|
# override the default output from pydantic by calling `to_dict()` of schedule
|
102
104
|
if self.schedule:
|
103
105
|
_dict['schedule'] = self.schedule.to_dict()
|
106
|
+
# override the default output from pydantic by calling `to_dict()` of error_detail
|
107
|
+
if self.error_detail:
|
108
|
+
_dict['errorDetail'] = self.error_detail.to_dict()
|
104
109
|
return _dict
|
105
110
|
|
106
111
|
@classmethod
|
@@ -125,7 +130,8 @@ class PaymentRequest(BaseModel):
|
|
125
130
|
"paymentUrl": obj.get("paymentUrl"),
|
126
131
|
"pixQrCode": obj.get("pixQrCode"),
|
127
132
|
"boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None,
|
128
|
-
"schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None
|
133
|
+
"schedule": PaymentRequestSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
|
134
|
+
"errorDetail": PaymentRequestErrorDetail.from_dict(obj["errorDetail"]) if obj.get("errorDetail") is not None else None
|
129
135
|
})
|
130
136
|
return _obj
|
131
137
|
|
@@ -0,0 +1,90 @@
|
|
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, StrictStr
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
+
from typing import Optional, Set
|
24
|
+
from typing_extensions import Self
|
25
|
+
|
26
|
+
class PaymentRequestErrorDetail(BaseModel):
|
27
|
+
"""
|
28
|
+
Error details when payment request fails
|
29
|
+
""" # noqa: E501
|
30
|
+
code: Optional[StrictStr] = Field(default=None, description="Error code")
|
31
|
+
provider_message: Optional[StrictStr] = Field(default=None, description="Error message returned by the institution", alias="providerMessage")
|
32
|
+
__properties: ClassVar[List[str]] = ["code", "providerMessage"]
|
33
|
+
|
34
|
+
model_config = ConfigDict(
|
35
|
+
populate_by_name=True,
|
36
|
+
validate_assignment=True,
|
37
|
+
protected_namespaces=(),
|
38
|
+
)
|
39
|
+
|
40
|
+
|
41
|
+
def to_str(self) -> str:
|
42
|
+
"""Returns the string representation of the model using alias"""
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
44
|
+
|
45
|
+
def to_json(self) -> str:
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
48
|
+
return json.dumps(self.to_dict())
|
49
|
+
|
50
|
+
@classmethod
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
52
|
+
"""Create an instance of PaymentRequestErrorDetail from a JSON string"""
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
54
|
+
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
57
|
+
|
58
|
+
This has the following differences from calling pydantic's
|
59
|
+
`self.model_dump(by_alias=True)`:
|
60
|
+
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
62
|
+
were set at model initialization. Other fields with value `None`
|
63
|
+
are ignored.
|
64
|
+
"""
|
65
|
+
excluded_fields: Set[str] = set([
|
66
|
+
])
|
67
|
+
|
68
|
+
_dict = self.model_dump(
|
69
|
+
by_alias=True,
|
70
|
+
exclude=excluded_fields,
|
71
|
+
exclude_none=True,
|
72
|
+
)
|
73
|
+
return _dict
|
74
|
+
|
75
|
+
@classmethod
|
76
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
77
|
+
"""Create an instance of PaymentRequestErrorDetail from a dict"""
|
78
|
+
if obj is None:
|
79
|
+
return None
|
80
|
+
|
81
|
+
if not isinstance(obj, dict):
|
82
|
+
return cls.model_validate(obj)
|
83
|
+
|
84
|
+
_obj = cls.model_validate({
|
85
|
+
"code": obj.get("code"),
|
86
|
+
"providerMessage": obj.get("providerMessage")
|
87
|
+
})
|
88
|
+
return _obj
|
89
|
+
|
90
|
+
|
pluggy_sdk/models/update_item.py
CHANGED
@@ -29,7 +29,7 @@ class UpdateItem(BaseModel):
|
|
29
29
|
Update Item Request
|
30
30
|
""" # noqa: E501
|
31
31
|
parameters: Optional[UpdateItemParameters] = None
|
32
|
-
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")
|
32
|
+
client_user_id: Optional[StrictStr] = Field(default=None, description="Client's external identifier for the user, it can be a ID, UUID or even an email. This is free for clients to use.", alias="clientUserId")
|
33
33
|
webhook_url: Optional[StrictStr] = Field(default=None, description="Url to be notified of item changes", alias="webhookUrl")
|
34
34
|
products: Optional[List[StrictStr]] = Field(default=None, description="Products to be collected in the connection")
|
35
35
|
__properties: ClassVar[List[str]] = ["parameters", "clientUserId", "webhookUrl", "products"]
|
@@ -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,
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from pluggy_sdk.models.payment_recipient_account import PaymentRecipientAccount
|
24
24
|
from typing import Optional, Set
|
@@ -32,9 +32,8 @@ class UpdatePaymentRecipient(BaseModel):
|
|
32
32
|
name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only if the recipient doesn't have a pixKey.")
|
33
33
|
payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only if the recipient doesn't have a pixKey.", alias="paymentInstitutionId")
|
34
34
|
account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the recipient doesn't have a pixKey.")
|
35
|
-
is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
|
36
35
|
pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
|
37
|
-
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "
|
36
|
+
__properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "pixKey"]
|
38
37
|
|
39
38
|
model_config = ConfigDict(
|
40
39
|
populate_by_name=True,
|
@@ -94,7 +93,6 @@ class UpdatePaymentRecipient(BaseModel):
|
|
94
93
|
"name": obj.get("name"),
|
95
94
|
"paymentInstitutionId": obj.get("paymentInstitutionId"),
|
96
95
|
"account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
|
97
|
-
"isDefault": obj.get("isDefault"),
|
98
96
|
"pixKey": obj.get("pixKey")
|
99
97
|
})
|
100
98
|
return _obj
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post38
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -28,7 +28,7 @@ Pluggy's main API to review data and execute connectors
|
|
28
28
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
29
29
|
|
30
30
|
- API version: 1.0.0
|
31
|
-
- Package version: 1.0.0.
|
31
|
+
- Package version: 1.0.0.post38
|
32
32
|
- Generator version: 7.12.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
@@ -129,6 +129,11 @@ Class | Method | HTTP request | Description
|
|
129
129
|
*BenefitApi* | [**benefits_list**](docs/BenefitApi.md#benefits_list) | **GET** /benefits | List
|
130
130
|
*BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
|
131
131
|
*BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
|
132
|
+
*BoletoManagementApi* | [**boleto_cancel**](docs/BoletoManagementApi.md#boleto_cancel) | **POST** /boletos/{id}/cancel | Cancel Boleto
|
133
|
+
*BoletoManagementApi* | [**boleto_connection_create**](docs/BoletoManagementApi.md#boleto_connection_create) | **POST** /boleto-connections | Connect boleto credentials
|
134
|
+
*BoletoManagementApi* | [**boleto_connection_create_from_item**](docs/BoletoManagementApi.md#boleto_connection_create_from_item) | **POST** /boleto-connections/from-item | Create boleto connection from Item
|
135
|
+
*BoletoManagementApi* | [**boleto_create**](docs/BoletoManagementApi.md#boleto_create) | **POST** /boletos | Issue Boleto
|
136
|
+
*BoletoManagementApi* | [**boleto_get**](docs/BoletoManagementApi.md#boleto_get) | **GET** /boletos/{id} | Get Boleto
|
132
137
|
*BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create
|
133
138
|
*BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete
|
134
139
|
*BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve
|
@@ -221,6 +226,7 @@ Class | Method | HTTP request | Description
|
|
221
226
|
- [BillFinanceCharge](docs/BillFinanceCharge.md)
|
222
227
|
- [BillsList200Response](docs/BillsList200Response.md)
|
223
228
|
- [Boleto](docs/Boleto.md)
|
229
|
+
- [BoletoConnection](docs/BoletoConnection.md)
|
224
230
|
- [BoletoPayer](docs/BoletoPayer.md)
|
225
231
|
- [BoletoRecipient](docs/BoletoRecipient.md)
|
226
232
|
- [BulkPayment](docs/BulkPayment.md)
|
@@ -238,6 +244,11 @@ Class | Method | HTTP request | Description
|
|
238
244
|
- [ConnectorListResponse](docs/ConnectorListResponse.md)
|
239
245
|
- [ConnectorUserAction](docs/ConnectorUserAction.md)
|
240
246
|
- [Consent](docs/Consent.md)
|
247
|
+
- [CreateBoleto](docs/CreateBoleto.md)
|
248
|
+
- [CreateBoletoBoleto](docs/CreateBoletoBoleto.md)
|
249
|
+
- [CreateBoletoBoletoPayer](docs/CreateBoletoBoletoPayer.md)
|
250
|
+
- [CreateBoletoConnection](docs/CreateBoletoConnection.md)
|
251
|
+
- [CreateBoletoConnectionFromItem](docs/CreateBoletoConnectionFromItem.md)
|
241
252
|
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
|
242
253
|
- [CreateBulkPayment](docs/CreateBulkPayment.md)
|
243
254
|
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
|
@@ -276,6 +287,8 @@ Class | Method | HTTP request | Description
|
|
276
287
|
- [InvestmentMetadata](docs/InvestmentMetadata.md)
|
277
288
|
- [InvestmentTransaction](docs/InvestmentTransaction.md)
|
278
289
|
- [InvestmentsList200Response](docs/InvestmentsList200Response.md)
|
290
|
+
- [IssuedBoleto](docs/IssuedBoleto.md)
|
291
|
+
- [IssuedBoletoPayer](docs/IssuedBoletoPayer.md)
|
279
292
|
- [Item](docs/Item.md)
|
280
293
|
- [ItemCreationErrorResponse](docs/ItemCreationErrorResponse.md)
|
281
294
|
- [ItemError](docs/ItemError.md)
|
@@ -310,6 +323,7 @@ Class | Method | HTTP request | Description
|
|
310
323
|
- [PaymentDataParticipant](docs/PaymentDataParticipant.md)
|
311
324
|
- [PaymentInstitution](docs/PaymentInstitution.md)
|
312
325
|
- [PaymentIntent](docs/PaymentIntent.md)
|
326
|
+
- [PaymentIntentErrorDetail](docs/PaymentIntentErrorDetail.md)
|
313
327
|
- [PaymentIntentParameter](docs/PaymentIntentParameter.md)
|
314
328
|
- [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
|
315
329
|
- [PaymentReceipt](docs/PaymentReceipt.md)
|
@@ -321,6 +335,7 @@ Class | Method | HTTP request | Description
|
|
321
335
|
- [PaymentRecipientsList200Response](docs/PaymentRecipientsList200Response.md)
|
322
336
|
- [PaymentRequest](docs/PaymentRequest.md)
|
323
337
|
- [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
|
338
|
+
- [PaymentRequestErrorDetail](docs/PaymentRequestErrorDetail.md)
|
324
339
|
- [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
|
325
340
|
- [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
|
326
341
|
- [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
|
@@ -1,11 +1,11 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=hIUm8x7Q-Elh9SOU51c6D7evQEKe2nlUyKrebT9u7oU,13653
|
2
|
+
pluggy_sdk/api_client.py,sha256=TC6xHnw21wHXDa51rFvtgQZRDAZx_gr_ijcYJOtLBSA,27438
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=aedbUYLrOUVupxyBvhwgydifmYK7zItEEofL4PzUH5o,18485
|
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=vVdVX3R4AbYt0r6TChhsMVAnyL1nf0RA6eZYjkaaBzY,9389
|
8
|
-
pluggy_sdk/api/__init__.py,sha256=
|
8
|
+
pluggy_sdk/api/__init__.py,sha256=w6-OiRjnUPM9FPxcmgsQdoP1W9uLRRa53U3aEEwn2uk,1281
|
9
9
|
pluggy_sdk/api/account_api.py,sha256=mq0js0NSfiGeRHIFR6FSwO7Ng8bUAKNn88Ai58vr5zQ,22315
|
10
10
|
pluggy_sdk/api/acquirer_anticipation_api.py,sha256=bk4FXqDIxttRyIL1ms2GXPR5mFJtc9SbVnD_v5gaGE4,26474
|
11
11
|
pluggy_sdk/api/acquirer_receivable_api.py,sha256=BzTj0wfP11JDpLpaeREfNo-g7bs7PnRaK6Ab4gqR5a4,26388
|
@@ -13,6 +13,7 @@ pluggy_sdk/api/acquirer_sale_api.py,sha256=YZYt2Hy3vA-dIKFouejtQY8BTws3lNrY3NHdX
|
|
13
13
|
pluggy_sdk/api/auth_api.py,sha256=TXqmhFum1h1bqt9BMANyvcwLLaS0M1Y0mIELutv9spo,23150
|
14
14
|
pluggy_sdk/api/benefit_api.py,sha256=WSa3Hp-6Dc1fA0dHUnYP5gu-iXgDD-0NC5yuxBuIouo,21329
|
15
15
|
pluggy_sdk/api/bill_api.py,sha256=_qkNNQIlImQEGpzHko9wxyIrGlNKfc7Aq1MOdGCy5Ac,21228
|
16
|
+
pluggy_sdk/api/boleto_management_api.py,sha256=MRgO-66KatFI8A7pTVVkAds8sDJqNowg2Tb5mLnS3sI,52583
|
16
17
|
pluggy_sdk/api/bulk_payment_api.py,sha256=-Qac97nDXdqWUJlvNIONxJLrbKE7Wt1crK03_ARxbKY,43205
|
17
18
|
pluggy_sdk/api/category_api.py,sha256=ATCtlmkDmbNqS2kJV6f6P3G0_rgwqEip-PgQ9iUm_Nc,42113
|
18
19
|
pluggy_sdk/api/connector_api.py,sha256=Zmo8ZYrYaaa98eAF_DXGlnd7AFS7hK6SURAGhsL3NPM,41410
|
@@ -25,7 +26,7 @@ pluggy_sdk/api/loan_api.py,sha256=0F4282MRf2XZ6KkRq9zZ9Bjfp4_gr628_Zjc3vnCnNU,21
|
|
25
26
|
pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9BpctRvDW1w8,55454
|
26
27
|
pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
|
27
28
|
pluggy_sdk/api/payment_receipts_api.py,sha256=kIf-vRlUK9yr6Udt8Xfvv3_8kL9c1_w8J8fyrWt3ylU,32644
|
28
|
-
pluggy_sdk/api/payment_recipient_api.py,sha256=
|
29
|
+
pluggy_sdk/api/payment_recipient_api.py,sha256=WbprFZ_w1CXt9QAJPGWlbpPm5zhqFpD88mD_B9QR3ug,77923
|
29
30
|
pluggy_sdk/api/payment_request_api.py,sha256=Pg1Wv0Jz0-tNyxpd8-0NRbWXgMvu7tnnOgjgFlL2EhQ,116891
|
30
31
|
pluggy_sdk/api/payment_schedule_api.py,sha256=YUmE5fJktDrFHHm-SPphqQJmW-2CaBOlfX7QqZdQCk4,31605
|
31
32
|
pluggy_sdk/api/payroll_loan_api.py,sha256=UqHuWdWa6PYAFBLdeRQTw0tMhv-yuhdN8Jk1qd7h8SQ,21180
|
@@ -33,9 +34,9 @@ pluggy_sdk/api/portfolio_yield_api.py,sha256=MuqWrp6say2ZrwnucEszvH0dvpYZeB_IJDo
|
|
33
34
|
pluggy_sdk/api/smart_account_api.py,sha256=jH2o0d7KgTGGf0R-DsEYDlEjxqhpiN1g_LNumXvAIMk,66997
|
34
35
|
pluggy_sdk/api/smart_account_transfer_api.py,sha256=H-uScNzIIlUzymh8GHKLoypler5ThLOuMezqLMksh1Y,24070
|
35
36
|
pluggy_sdk/api/smart_transfer_api.py,sha256=txy3I7VsD8wlmzPAmKgva7szkTi_2ne3RDMo6zrcj-0,56198
|
36
|
-
pluggy_sdk/api/transaction_api.py,sha256=
|
37
|
+
pluggy_sdk/api/transaction_api.py,sha256=hJdOkkOB0PEl1eSceLppyaX7Ot1SSSSz7CPWl4JbxRU,41854
|
37
38
|
pluggy_sdk/api/webhook_api.py,sha256=PmwRiQPIvl5vdDqNFdVKJLdBMGMyoccEHYmrxf7A4G4,56195
|
38
|
-
pluggy_sdk/models/__init__.py,sha256=
|
39
|
+
pluggy_sdk/models/__init__.py,sha256=l9z3gRtVDoWAEg4l1H4SC6M6KrtMaVD2JCZwMLQl1OQ,11905
|
39
40
|
pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
|
40
41
|
pluggy_sdk/models/accounts_list200_response.py,sha256=B4SakmOjxyOmTHYtTMmYKJo2nnKScnvqCN348JP98aE,3441
|
41
42
|
pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
|
@@ -66,6 +67,7 @@ pluggy_sdk/models/bill.py,sha256=e2tOe1aFBZs9VJMxV9pwsT-d4I8A66M7USGP9mWijbI,447
|
|
66
67
|
pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
|
67
68
|
pluggy_sdk/models/bills_list200_response.py,sha256=iGWpb0feuyvZt_9OjJxsrO8bUycaq0n-guzr6yqMNlU,3416
|
68
69
|
pluggy_sdk/models/boleto.py,sha256=yMgFfXUGIa22GJwkuVFozC9Vwl_YYhvJk1Wk_93goRM,5426
|
70
|
+
pluggy_sdk/models/boleto_connection.py,sha256=z6oysDZBpQ_Ff2OIRBvspY3c2CgBvILFv_EUgvdAcPE,3122
|
69
71
|
pluggy_sdk/models/boleto_payer.py,sha256=0zVxArLdsn9lQ68WcabB0oT4tD1QzTyKblN8aZxbjpo,2641
|
70
72
|
pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5QlioE-Z_U,2665
|
71
73
|
pluggy_sdk/models/bulk_payment.py,sha256=_EiKF2iM38AktGvOHGey0FG9_usnL6YPUM7gtTWPeJg,5717
|
@@ -82,15 +84,20 @@ pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3Nq
|
|
82
84
|
pluggy_sdk/models/connector_list_response.py,sha256=PetHjZ1wAJ2k2gacrg9EmM0fnvSZ7YZPWms-GVUbKRg,3386
|
83
85
|
pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
|
84
86
|
pluggy_sdk/models/consent.py,sha256=2iGU-3JCbWzjUsFU1g4UYXz_zm0EziBJgki8XaBz1Kk,5451
|
87
|
+
pluggy_sdk/models/create_boleto.py,sha256=RdxH90W5WtT4CNounAk7_A7Jpgi_a9u4WKmoHwgDf-s,3018
|
88
|
+
pluggy_sdk/models/create_boleto_boleto.py,sha256=1lPWcLArLua3hN6z3WswJSZoPrUlyysQfdUeed9GLro,3439
|
89
|
+
pluggy_sdk/models/create_boleto_boleto_payer.py,sha256=9EvWdoc_hDd2MlrqeRlKjj4rk2t8IcTOC__IWABxojA,3386
|
90
|
+
pluggy_sdk/models/create_boleto_connection.py,sha256=ZQodldN2duex0o-SF_klZZyEtzDVGe-YODjWdQlcw0A,3149
|
91
|
+
pluggy_sdk/models/create_boleto_connection_from_item.py,sha256=d5Xq1K6m3uE1FNOZHjTZl_1vl7FPOUzDbEjpngNlh_g,2617
|
85
92
|
pluggy_sdk/models/create_boleto_payment_request.py,sha256=j7aLjY1Pllj67K0BifGj43CZCBpIqfjI8xAPD1QoQgo,3577
|
86
93
|
pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
|
87
94
|
pluggy_sdk/models/create_client_category_rule.py,sha256=CBmaEU87ba_EgxLIcFwb8YWe-FcMdKcaOiu9hGDoGFo,3448
|
88
|
-
pluggy_sdk/models/create_item.py,sha256=
|
95
|
+
pluggy_sdk/models/create_item.py,sha256=iz0JMSwXcC2iemswn6Wq-2-SUG015vDMrQ01OWmVLBM,4843
|
89
96
|
pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
|
90
|
-
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=
|
91
|
-
pluggy_sdk/models/create_payment_customer_request_body.py,sha256=
|
97
|
+
pluggy_sdk/models/create_or_update_payment_customer.py,sha256=jM5YueP_je65I8koHuKY7c6ssz0KQgTaiRrS3XMDz7o,3479
|
98
|
+
pluggy_sdk/models/create_payment_customer_request_body.py,sha256=xwJ5ZA645R7Dm14BCpnLVxNH77pRGEOpKZ4pETlPFBg,3389
|
92
99
|
pluggy_sdk/models/create_payment_intent.py,sha256=fa-y9mIq6ubcFtAJMTTSSpKmjUstF2mmO3GvdaMymW4,4719
|
93
|
-
pluggy_sdk/models/create_payment_recipient.py,sha256=
|
100
|
+
pluggy_sdk/models/create_payment_recipient.py,sha256=HE23GlpKT0WlEKJ1btg98rBb7E-dx3WQuB38E8FmoIo,4343
|
94
101
|
pluggy_sdk/models/create_payment_request.py,sha256=H2SU4y28MxacJLrypgknHzIpPTp5m6z9VJEBoGcsazU,4852
|
95
102
|
pluggy_sdk/models/create_payment_request_schedule.py,sha256=Aj70mok-7IYtwhCRFg6_FeawrEiIl34mwcGb0yX6PcY,7159
|
96
103
|
pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
|
@@ -98,7 +105,7 @@ pluggy_sdk/models/create_smart_account_request.py,sha256=Z0fL0SDXZHhP1zONXhHLxIQ
|
|
98
105
|
pluggy_sdk/models/create_smart_account_transfer_request.py,sha256=cqYBbTfssI6jbZ4bxulvBsofin6d3k0qYcamSSIqzVE,3122
|
99
106
|
pluggy_sdk/models/create_smart_transfer_payment.py,sha256=YqZQ7gg7oPFIlTwDCVH9wglNGETeOkxbiAeZT38e5nk,3397
|
100
107
|
pluggy_sdk/models/create_smart_transfer_preauthorization.py,sha256=aSaFeY_pe-TX2kMyPA_sH89SshgqsJ7JJ4trwMP2zwQ,4149
|
101
|
-
pluggy_sdk/models/create_webhook.py,sha256=
|
108
|
+
pluggy_sdk/models/create_webhook.py,sha256=9diD0I9ji_B6sYlEbTbFyYz_dYVJtkcpad9XGX9qctE,4172
|
102
109
|
pluggy_sdk/models/credential_select_option.py,sha256=aniQKmQU7mGKMqJj78dGmS_ZxTw19mIaB6HX3CdyxOI,2676
|
103
110
|
pluggy_sdk/models/credit_card_metadata.py,sha256=EpVcejr4hL5oJpvvqLRFUNBv5kcAR36FkQKbrONJ3XU,4102
|
104
111
|
pluggy_sdk/models/credit_data.py,sha256=LcdJCDgQEmdm60NPzx-hcq_cRHYic8OCr_zVBVuNcpE,5142
|
@@ -118,15 +125,17 @@ pluggy_sdk/models/identity_response_qualifications_informed_income.py,sha256=L0Q
|
|
118
125
|
pluggy_sdk/models/identity_response_qualifications_informed_patrimony.py,sha256=DxOFOA6Mw8fjoj8FXmXemFop_58-6rbAOxVjkcBvvtA,2797
|
119
126
|
pluggy_sdk/models/income_report.py,sha256=MscdLVudpzaySJ__mKCBVD0vJcHoOKVIYyFJ6xaNS5U,2788
|
120
127
|
pluggy_sdk/models/income_reports_response.py,sha256=cXTY6QSoXZ5gSzJD2rz992dQRHk01QImadetCVg_fy8,3538
|
121
|
-
pluggy_sdk/models/investment.py,sha256=
|
128
|
+
pluggy_sdk/models/investment.py,sha256=6ZFQE3_JTw2b5hyKwqvNSuu_9j_dWpFM0UYgJ5WgQEA,10214
|
122
129
|
pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM4bo3re18OCk,5224
|
123
130
|
pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
|
124
131
|
pluggy_sdk/models/investment_transaction.py,sha256=0NMEFh-yV0zTw1cstAz8x8kq8_oVLIPCh9kjXkxc1Ks,5004
|
125
132
|
pluggy_sdk/models/investments_list200_response.py,sha256=JqUTarakPV6yzY162pLugeFudbwj6pHeCJYGdKVz8Js,3458
|
133
|
+
pluggy_sdk/models/issued_boleto.py,sha256=sOZz3Te2NAyB_tt_VQpw8nq2ntLwH_9T6-3vB21booA,4832
|
134
|
+
pluggy_sdk/models/issued_boleto_payer.py,sha256=rbeI6pMo1lHqsHr3DnTza0eJJYh2qdLa9Ki7J6lcJAk,5424
|
126
135
|
pluggy_sdk/models/item.py,sha256=z__AH74riALcam8VE0U_GPCZPH7JrQydR1QeEHvlQRg,7295
|
127
136
|
pluggy_sdk/models/item_creation_error_response.py,sha256=_zdN0Go6iU2deVKxRrexeYlDxWxYfWhjyrxisyQbjUI,3607
|
128
137
|
pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
|
129
|
-
pluggy_sdk/models/item_options.py,sha256=
|
138
|
+
pluggy_sdk/models/item_options.py,sha256=PezF-eUzwD5ApIVbI5wo2VV-MncOlt8yNgcDnXa_oh0,3432
|
130
139
|
pluggy_sdk/models/loan.py,sha256=mTbqlJwpxopVEiZYUFn3sc5oi9yXrH8rK43tuBuNlnM,12231
|
131
140
|
pluggy_sdk/models/loan_contracted_fee.py,sha256=k2EHfnbElL7scRmPQSKmzZ3oSxh50Z9wtAPe2Q2Oqzw,4205
|
132
141
|
pluggy_sdk/models/loan_contracted_finance_charge.py,sha256=-2cHDwe9IfcWxtjLaL1Vs0PdWsqMv5RGO_Cx2fo3dj0,3153
|
@@ -161,7 +170,8 @@ pluggy_sdk/models/payment_data.py,sha256=xT9rS82U9wioBqQ3xB-JReHETlXlH2S5iCrUrnY
|
|
161
170
|
pluggy_sdk/models/payment_data_boleto_metadata.py,sha256=sH38_U3Sz5--5nCekrRU-4lXWtLcQixJZ-TE64ntFMA,3752
|
162
171
|
pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
|
163
172
|
pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
|
164
|
-
pluggy_sdk/models/payment_intent.py,sha256=
|
173
|
+
pluggy_sdk/models/payment_intent.py,sha256=t366PXrT_yb1zFVxRmy4hesTyP3hh7YVPAfrIpEFHjc,7574
|
174
|
+
pluggy_sdk/models/payment_intent_error_detail.py,sha256=8rhASOpDfP07LHggptAJ1w5GJJY-s7A3-nNgEr04Jfo,3176
|
165
175
|
pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
|
166
176
|
pluggy_sdk/models/payment_intents_list200_response.py,sha256=rF5a74kWPnDx8eVHkzK_Yezp8iPrHDU3s9vKFs1p2fA,3487
|
167
177
|
pluggy_sdk/models/payment_receipt.py,sha256=sVfVy75EBqzbrTzc2wFTStUIjIvDf8NbTHEOLfUNzRI,4933
|
@@ -171,8 +181,9 @@ pluggy_sdk/models/payment_recipient.py,sha256=XGpf7503LIg9YADhESE-VGjaFSVWVq0_Dl
|
|
171
181
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
172
182
|
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
173
183
|
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
174
|
-
pluggy_sdk/models/payment_request.py,sha256=
|
184
|
+
pluggy_sdk/models/payment_request.py,sha256=GS9cGDjtcoKOXvoD1Q-xasPSPPOpfq28x5cnoSyYdsU,6499
|
175
185
|
pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
|
186
|
+
pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
|
176
187
|
pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
|
177
188
|
pluggy_sdk/models/payment_request_schedule.py,sha256=gQqGFVYZLe8NguGwzpREBMa0b2KCUhmgudUlSUMazY4,6999
|
178
189
|
pluggy_sdk/models/payment_requests_list200_response.py,sha256=sAsajmYPVezAobFSq0KFFMBcO8ApV-RKl2PrmfXWs1s,3496
|
@@ -206,16 +217,16 @@ pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6t
|
|
206
217
|
pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
|
207
218
|
pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
|
208
219
|
pluggy_sdk/models/transaction.py,sha256=Aokv7FMDJ0ubyX51FKeTMzEVMbLS0MmgQkTfv6yGaPY,6671
|
209
|
-
pluggy_sdk/models/update_item.py,sha256=
|
220
|
+
pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
|
210
221
|
pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
|
211
|
-
pluggy_sdk/models/update_payment_recipient.py,sha256=
|
222
|
+
pluggy_sdk/models/update_payment_recipient.py,sha256=eVnwQqnLsZVqx58FrWriIiVynNnLbHzwizdm2yLZbAE,3976
|
212
223
|
pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
|
213
224
|
pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
|
214
225
|
pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
|
215
226
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
216
227
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
217
228
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
218
|
-
pluggy_sdk-1.0.0.
|
219
|
-
pluggy_sdk-1.0.0.
|
220
|
-
pluggy_sdk-1.0.0.
|
221
|
-
pluggy_sdk-1.0.0.
|
229
|
+
pluggy_sdk-1.0.0.post38.dist-info/METADATA,sha256=B5NUMSRf9EnJiNLq8FadwYgedmMAHPIojSdasAH-isA,24684
|
230
|
+
pluggy_sdk-1.0.0.post38.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
231
|
+
pluggy_sdk-1.0.0.post38.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
232
|
+
pluggy_sdk-1.0.0.post38.dist-info/RECORD,,
|
File without changes
|
File without changes
|