pluggy-sdk 1.0.0.post5__py3-none-any.whl → 1.0.0.post7__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.post5"
18
+ __version__ = "1.0.0.post7"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -154,6 +154,7 @@ from pluggy_sdk.models.payment_data import PaymentData
154
154
  from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
155
155
  from pluggy_sdk.models.payment_institution import PaymentInstitution
156
156
  from pluggy_sdk.models.payment_intent import PaymentIntent
157
+ from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
157
158
  from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
158
159
  from pluggy_sdk.models.payment_receipt import PaymentReceipt
159
160
  from pluggy_sdk.models.payment_receipt_bank_account import PaymentReceiptBankAccount
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.post5/python'
92
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post7/python'
93
93
  self.client_side_validation = configuration.client_side_validation
94
94
 
95
95
  def __enter__(self):
@@ -400,7 +400,7 @@ conf = pluggy_sdk.Configuration(
400
400
  "OS: {env}\n"\
401
401
  "Python Version: {pyversion}\n"\
402
402
  "Version of the API: 1.0.0\n"\
403
- "SDK Package Version: 1.0.0.post5".\
403
+ "SDK Package Version: 1.0.0.post7".\
404
404
  format(env=sys.platform, pyversion=sys.version)
405
405
 
406
406
  def get_host_settings(self):
@@ -116,6 +116,7 @@ from pluggy_sdk.models.payment_data import PaymentData
116
116
  from pluggy_sdk.models.payment_data_participant import PaymentDataParticipant
117
117
  from pluggy_sdk.models.payment_institution import PaymentInstitution
118
118
  from pluggy_sdk.models.payment_intent import PaymentIntent
119
+ from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
119
120
  from pluggy_sdk.models.payment_intents_list200_response import PaymentIntentsList200Response
120
121
  from pluggy_sdk.models.payment_receipt import PaymentReceipt
121
122
  from pluggy_sdk.models.payment_receipt_bank_account import PaymentReceiptBankAccount
@@ -45,8 +45,8 @@ class BulkPayment(BaseModel):
45
45
  @field_validator('status')
46
46
  def status_validate_enum(cls, value):
47
47
  """Validates the enum"""
48
- if value not in set(['CREATED', 'PAYMENT_IN_PROGRESS', 'TOP_UP_IN_PROGRESS', 'COMPLETED', 'ERROR']):
49
- raise ValueError("must be one of enum values ('CREATED', 'PAYMENT_IN_PROGRESS', 'TOP_UP_IN_PROGRESS', 'COMPLETED', 'ERROR')")
48
+ if value not in set(['CREATED', 'PAYMENT_IN_PROGRESS', 'TOP_UP_IN_PROGRESS', 'COMPLETED', 'PARTIALLY_COMPLETED', 'ERROR']):
49
+ raise ValueError("must be one of enum values ('CREATED', 'PAYMENT_IN_PROGRESS', 'TOP_UP_IN_PROGRESS', 'COMPLETED', 'PARTIALLY_COMPLETED', 'ERROR')")
50
50
  return value
51
51
 
52
52
  model_config = ConfigDict(
@@ -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, StrictFloat, StrictInt, StrictStr, field_validator
22
22
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -29,9 +29,20 @@ class CreatePaymentIntent(BaseModel):
29
29
  """ # noqa: E501
30
30
  payment_request_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the payment request associated to the payment intent", alias="paymentRequestId")
31
31
  bulk_payment_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the bulk payment associated to the payment intent", alias="bulkPaymentId")
32
- connector_id: Union[StrictFloat, StrictInt] = Field(description="Primary identifier of the connector associated to the payment intent", alias="connectorId")
33
- parameters: Dict[str, StrictStr] = Field(description="Key-Value credentials neccesary to create an item")
34
- __properties: ClassVar[List[str]] = ["paymentRequestId", "bulkPaymentId", "connectorId", "parameters"]
32
+ parameters: Optional[Dict[str, Any]] = None
33
+ connector_id: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Primary identifier of the connector associated to the payment intent", alias="connectorId")
34
+ payment_method: Optional[StrictStr] = Field(default=None, description="Payment method can be PIS (Payment Initiation) or PIX (PIX QR flow), if PIX selected only `bulkPaymentId` is required, if PIS selected only `paymentRequestId` or `bulkPaymentId` are required with `connectorId`, `parameters` and `paymentMethod`", alias="paymentMethod")
35
+ __properties: ClassVar[List[str]] = ["paymentRequestId", "bulkPaymentId", "parameters", "connectorId", "paymentMethod"]
36
+
37
+ @field_validator('payment_method')
38
+ def payment_method_validate_enum(cls, value):
39
+ """Validates the enum"""
40
+ if value is None:
41
+ return value
42
+
43
+ if value not in set(['PIS', 'PIX']):
44
+ raise ValueError("must be one of enum values ('PIS', 'PIX')")
45
+ return value
35
46
 
36
47
  model_config = ConfigDict(
37
48
  populate_by_name=True,
@@ -72,6 +83,9 @@ class CreatePaymentIntent(BaseModel):
72
83
  exclude=excluded_fields,
73
84
  exclude_none=True,
74
85
  )
86
+ # override the default output from pydantic by calling `to_dict()` of parameters
87
+ if self.parameters:
88
+ _dict['parameters'] = self.parameters.to_dict()
75
89
  return _dict
76
90
 
77
91
  @classmethod
@@ -86,8 +100,9 @@ class CreatePaymentIntent(BaseModel):
86
100
  _obj = cls.model_validate({
87
101
  "paymentRequestId": obj.get("paymentRequestId"),
88
102
  "bulkPaymentId": obj.get("bulkPaymentId"),
103
+ "parameters": PaymentIntentParameter.from_dict(obj["parameters"]) if obj.get("parameters") is not None else None,
89
104
  "connectorId": obj.get("connectorId"),
90
- "parameters": obj.get("parameters")
105
+ "paymentMethod": obj.get("paymentMethod")
91
106
  })
92
107
  return _obj
93
108
 
@@ -26,14 +26,15 @@ 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, there is two form to create a payment recipient, one with pixKey and other with taxNumber, name, paymentInstitutionId and account
30
30
  """ # noqa: E501
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
31
+ tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only when the pixKey is not sent.", alias="taxNumber")
32
+ name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only this when the pixKey is not sent.")
33
+ payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only when the pixKey is not sent.", alias="paymentInstitutionId")
34
+ account: Optional[PaymentRecipientAccount] = None
35
35
  is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
36
- __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "isDefault"]
36
+ 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", "isDefault", "pixKey"]
37
38
 
38
39
  model_config = ConfigDict(
39
40
  populate_by_name=True,
@@ -93,7 +94,8 @@ class CreatePaymentRecipient(BaseModel):
93
94
  "name": obj.get("name"),
94
95
  "paymentInstitutionId": obj.get("paymentInstitutionId"),
95
96
  "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
96
- "isDefault": obj.get("isDefault")
97
+ "isDefault": obj.get("isDefault"),
98
+ "pixKey": obj.get("pixKey")
97
99
  })
98
100
  return _obj
99
101
 
@@ -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 PaymentIntentParameter(BaseModel):
27
+ """
28
+ Credentials neccesary to create a payment intent
29
+ """ # noqa: E501
30
+ cpf: StrictStr = Field(description="CPF of the payer")
31
+ cnpj: Optional[StrictStr] = Field(default=None, description="CNPJ of the payer")
32
+ __properties: ClassVar[List[str]] = ["cpf", "cnpj"]
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 PaymentIntentParameter 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 PaymentIntentParameter 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
+ "cpf": obj.get("cpf"),
86
+ "cnpj": obj.get("cnpj")
87
+ })
88
+ return _obj
89
+
90
+
@@ -30,12 +30,13 @@ class PaymentRecipient(BaseModel):
30
30
  Response with information related to a payment recipient
31
31
  """ # noqa: E501
32
32
  id: StrictStr = Field(description="Primary identifier")
33
- tax_number: StrictStr = Field(description="Account owner tax number. Can be CPF or CNPJ (only numbers)", alias="taxNumber")
34
- name: StrictStr = Field(description="Account owner name")
35
- payment_institution: Optional[PaymentInstitution] = Field(default=None, alias="paymentInstitution")
36
- is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
33
+ tax_number: StrictStr = Field(description="Account owner tax number. Can be CPF or CNPJ (only numbers).", alias="taxNumber")
34
+ name: StrictStr = Field(description="Account owner name.")
35
+ payment_institution: PaymentInstitution = Field(alias="paymentInstitution")
36
+ is_default: StrictBool = Field(description="Indicates if the recipient is the default one", alias="isDefault")
37
37
  account: PaymentRecipientAccount
38
- __properties: ClassVar[List[str]] = ["id", "taxNumber", "name", "paymentInstitution", "isDefault", "account"]
38
+ pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
39
+ __properties: ClassVar[List[str]] = ["id", "taxNumber", "name", "paymentInstitution", "isDefault", "account", "pixKey"]
39
40
 
40
41
  model_config = ConfigDict(
41
42
  populate_by_name=True,
@@ -99,7 +100,8 @@ class PaymentRecipient(BaseModel):
99
100
  "name": obj.get("name"),
100
101
  "paymentInstitution": PaymentInstitution.from_dict(obj["paymentInstitution"]) if obj.get("paymentInstitution") is not None else None,
101
102
  "isDefault": obj.get("isDefault"),
102
- "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None
103
+ "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
104
+ "pixKey": obj.get("pixKey")
103
105
  })
104
106
  return _obj
105
107
 
@@ -39,7 +39,8 @@ class PaymentRequest(BaseModel):
39
39
  callback_urls: Optional[PaymentRequestCallbackUrls] = Field(default=None, alias="callbackUrls")
40
40
  recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
41
41
  payment_url: StrictStr = Field(description="URL to begin the payment intent creation flow for this payment request", alias="paymentUrl")
42
- __properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl"]
42
+ pix_qr_code: Optional[StrictStr] = Field(default=None, description="Pix QR code generated by the payment receiver", alias="pixQrCode")
43
+ __properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode"]
43
44
 
44
45
  @field_validator('status')
45
46
  def status_validate_enum(cls, value):
@@ -111,7 +112,8 @@ class PaymentRequest(BaseModel):
111
112
  "updatedAt": obj.get("updatedAt"),
112
113
  "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
113
114
  "recipientId": obj.get("recipientId"),
114
- "paymentUrl": obj.get("paymentUrl")
115
+ "paymentUrl": obj.get("paymentUrl"),
116
+ "pixQrCode": obj.get("pixQrCode")
115
117
  })
116
118
  return _obj
117
119
 
@@ -28,12 +28,13 @@ class UpdatePaymentRecipient(BaseModel):
28
28
  """
29
29
  Request with information to update a payment recipient
30
30
  """ # noqa: E501
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")
31
+ tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only if the recipient doesn't have a pixKey.", alias="taxNumber")
32
+ name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only if the recipient doesn't have a pixKey.")
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] = None
35
35
  is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
36
- __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "isDefault"]
36
+ 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", "isDefault", "pixKey"]
37
38
 
38
39
  model_config = ConfigDict(
39
40
  populate_by_name=True,
@@ -93,7 +94,8 @@ class UpdatePaymentRecipient(BaseModel):
93
94
  "name": obj.get("name"),
94
95
  "paymentInstitutionId": obj.get("paymentInstitutionId"),
95
96
  "account": PaymentRecipientAccount.from_dict(obj["account"]) if obj.get("account") is not None else None,
96
- "isDefault": obj.get("isDefault")
97
+ "isDefault": obj.get("isDefault"),
98
+ "pixKey": obj.get("pixKey")
97
99
  })
98
100
  return _obj
99
101
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post5
3
+ Version: 1.0.0.post7
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.post5
23
- - Generator version: 7.5.0-SNAPSHOT
22
+ - Package version: 1.0.0.post7
23
+ - Generator version: 7.6.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
 
@@ -290,6 +290,7 @@ Class | Method | HTTP request | Description
290
290
  - [PaymentDataParticipant](docs/PaymentDataParticipant.md)
291
291
  - [PaymentInstitution](docs/PaymentInstitution.md)
292
292
  - [PaymentIntent](docs/PaymentIntent.md)
293
+ - [PaymentIntentParameter](docs/PaymentIntentParameter.md)
293
294
  - [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
294
295
  - [PaymentReceipt](docs/PaymentReceipt.md)
295
296
  - [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)
@@ -1,7 +1,7 @@
1
- pluggy_sdk/__init__.py,sha256=El_n5JhhnXKyBcgRDJjwfgPx_VdXsJ46FLnf9jSeazo,11722
2
- pluggy_sdk/api_client.py,sha256=MUKhZ2889Ccac4KvxG5Lx6tmROYXgdbxw2wpxKq9yTE,26305
1
+ pluggy_sdk/__init__.py,sha256=A3jUrNn0kzLHawHiGdyhvuLbJh34JFrVp705NDEjmc4,11800
2
+ pluggy_sdk/api_client.py,sha256=dbPz0OD3no5i9H-a4cGW4QHBlu6ZXXTdH4QcTGbZzJ4,26305
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=J-nTvLfQGv6v5YIizqTHgHznLbKlu8kUHUjq3hz_NgM,15330
4
+ pluggy_sdk/configuration.py,sha256=CiSvRKCd1j4qdFFonLXRvXvqLfGMDFFGvTQUa67iUj8,15330
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
@@ -28,7 +28,7 @@ pluggy_sdk/api/portfolio_yield_api.py,sha256=R_Cz-1G0s7qOUltG-VOXi8GSCNceM1j4lmu
28
28
  pluggy_sdk/api/smart_account_api.py,sha256=CNu4T-0xcPwMckHzrFgYLVqWU9kFMB7FnJpDah4ryZk,43323
29
29
  pluggy_sdk/api/transaction_api.py,sha256=EOqLMWbyLTz93FlzhvHF68DcJ4BAgJ6_81K1mmy4Qr0,37553
30
30
  pluggy_sdk/api/webhook_api.py,sha256=IRqHT_F6VVrMxE3JkXeXidNQnjORmC89xZLTzgpwZNQ,55525
31
- pluggy_sdk/models/__init__.py,sha256=bAf02Dh6CU59SST8sEJ1BvolvwZu0AnQ8gztq9iqO7A,9937
31
+ pluggy_sdk/models/__init__.py,sha256=gXGur8PMx8j_eh6fpOCPS8XHOiE4IBx3z6PAmwWkr8k,10015
32
32
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
33
33
  pluggy_sdk/models/accounts_list200_response.py,sha256=P-3r6PIEv0uV5gkeOVD5pcQOu2M-c2wi2zkMLN9hxdI,3417
34
34
  pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
@@ -53,7 +53,7 @@ pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZ
53
53
  pluggy_sdk/models/bill.py,sha256=Y8OyTNUp7oBeEHG-xH0lq7PLA_NlnCw9kx5runjMjyk,4428
54
54
  pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
55
55
  pluggy_sdk/models/bills_list200_response.py,sha256=PkG522y0madvJU4vmp7RZJxlrXmGWtwBXcHyeZACe5s,3392
56
- pluggy_sdk/models/bulk_payment.py,sha256=LoZV3XJbr1IP1p-w2fdaFPzgZqS4wX_Af_QbWrWbQms,5558
56
+ pluggy_sdk/models/bulk_payment.py,sha256=fr_kFz1fgekFyCe1b1fZQwlzRNQ7i4gUrPNyR7515dE,5604
57
57
  pluggy_sdk/models/bulk_payments_list200_response.py,sha256=bPR8YYGBL1p5vcPpa4co2lSPeRyJeRebthD_mI0NCbA,3445
58
58
  pluggy_sdk/models/category.py,sha256=oFSunhtg1GY2iJKhbio0ZtPeiFAwvOY-mknLELuQkYw,3297
59
59
  pluggy_sdk/models/client_category_rule.py,sha256=MiJA4luKDsgTCfSV1jZj-MclCk46WF7kTt48uhSy_TY,3070
@@ -72,8 +72,8 @@ pluggy_sdk/models/create_item.py,sha256=6CAefEt0OufD63Lz_I-rE8NKcTGwawkng-OU2Nc3
72
72
  pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
73
73
  pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
74
74
  pluggy_sdk/models/create_payment_customer_request_body.py,sha256=YvSSzXEW2yI7M9alWr4fHbPRqNvV4sxTUVp3FkMQSyU,3365
75
- pluggy_sdk/models/create_payment_intent.py,sha256=FvZP4dBNKOdTcsyISv6E65nwiM5hmcx7O7MRH0Pj5Yw,3396
76
- pluggy_sdk/models/create_payment_recipient.py,sha256=c7GDSljWAtCzWhSSRzWK6eWjdtNLtXiZN20OrqR0osU,3644
75
+ pluggy_sdk/models/create_payment_intent.py,sha256=hmZ-iYKOzj6RrjIOL8p4kffyv93I1bXKR4SpZec7m54,4360
76
+ pluggy_sdk/models/create_payment_recipient.py,sha256=JW8Wu-ZfDrEo_yASIgSE7m99tAVl8mUyTSQWENPKb-I,4172
77
77
  pluggy_sdk/models/create_payment_request.py,sha256=EaPPkdarRJYiIqUEmNzVaZhfLrE9guH9kVzBACEyEXg,3912
78
78
  pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
79
79
  pluggy_sdk/models/create_smart_account_request.py,sha256=ZxfVt_baOOkWDaVB9ndDnmVMx3zwkVnbSRL9iCMfMSQ,3612
@@ -130,15 +130,16 @@ pluggy_sdk/models/payment_data.py,sha256=uD2IjAS_sp_sr5ag9727MPUO7rPro4xfWVBQlHY
130
130
  pluggy_sdk/models/payment_data_participant.py,sha256=uJjbYf8efeEvRp0QOIiQp7QQrYKeJpAQs-XI9ViKvOk,3793
131
131
  pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
132
132
  pluggy_sdk/models/payment_intent.py,sha256=lETC3q4RuPG1Zj1y5go1gJPH-t10nW232Rl_UNR4UCs,6691
133
+ pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
133
134
  pluggy_sdk/models/payment_intents_list200_response.py,sha256=jcMQcYmIdwGLhct3dkgvwbhqhb9-5Fe9dsnIZpPGM3c,3463
134
135
  pluggy_sdk/models/payment_receipt.py,sha256=NAVIj2yvh30JDOml9i7_qNiRPXd-9SVrG69vho_Jujs,4472
135
136
  pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
136
137
  pluggy_sdk/models/payment_receipt_person.py,sha256=9eHiWC33eisDSZJgHW6ho_xD2ekaMuzq8AdvVEt5dUE,3246
137
- pluggy_sdk/models/payment_recipient.py,sha256=wR92hiJGd6fJvhjKfOhQT5sj_i_lGJs45gWUgbxoWJA,4022
138
+ pluggy_sdk/models/payment_recipient.py,sha256=bOJvgLFpzPsiEV_atDrFb9jaGLA9sc8fF94C5gBWRjc,4159
138
139
  pluggy_sdk/models/payment_recipient_account.py,sha256=eSnsoBv382LhyjMu172GXsZsBb1M1Ig0iim1dmAPCX0,3177
139
140
  pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=a-gty_usP5fMRajNCL7zIPBO1WqWa1zwIhJgCDXMTF0,3544
140
141
  pluggy_sdk/models/payment_recipients_list200_response.py,sha256=9r8qMLzGDumoGG0HWfmQbhNC4kGjzBLZPz_6-YNzb08,3490
141
- pluggy_sdk/models/payment_request.py,sha256=G47p5apa0yRDJaSm6hLUFjJDJ7IBTGGK61Gng3_0Rl0,4817
142
+ pluggy_sdk/models/payment_request.py,sha256=TJKlKc-fh5Q2sxyZlfE8YSF9-T6i3iIV-xeG3sY-6TI,5016
142
143
  pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
143
144
  pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=SCi20HZ0moUygGcGOHomevunrWJfQb3D6wTg_YjB6pI,3496
144
145
  pluggy_sdk/models/payment_requests_list200_response.py,sha256=0lAdZH19ZAeWYPdsQ-E0bREOZ0iDon7h96kI8xUTmYc,3472
@@ -155,13 +156,13 @@ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGv
155
156
  pluggy_sdk/models/transaction.py,sha256=a9B3D6fwMZJcJxNEtWPF7IhQT-f5SfuUJfqmL0nMCJI,6919
156
157
  pluggy_sdk/models/update_item.py,sha256=zlSVOxAgzCERzCjaIViapLzbi8nCAfz2LndU9dumkFM,4136
157
158
  pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
158
- pluggy_sdk/models/update_payment_recipient.py,sha256=FxsjtkDXjK7_cHXo0zT664YdnkXwlucjMqJaRgIZMFc,3733
159
+ pluggy_sdk/models/update_payment_recipient.py,sha256=xTeosGiNsvMQWUX-bJHoEfkrp6ybki_ZBUGsE3WkycM,4069
159
160
  pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
160
161
  pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
161
162
  pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
162
163
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
163
164
  pluggy_sdk/models/webhooks_list200_response.py,sha256=DITv0Fg0S1Jl8k9sSdKKwhWmzp0TmMmrJjQqgo36yL0,3360
164
- pluggy_sdk-1.0.0.post5.dist-info/METADATA,sha256=sAbDFtudT_urXeOYSYGj78SNr_tqePlHfDw9P_e2-DU,20825
165
- pluggy_sdk-1.0.0.post5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
166
- pluggy_sdk-1.0.0.post5.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
167
- pluggy_sdk-1.0.0.post5.dist-info/RECORD,,
165
+ pluggy_sdk-1.0.0.post7.dist-info/METADATA,sha256=Y60disyTWI7kQhB276D202a1pYp2Fh2h_UYRSwQdbCc,20885
166
+ pluggy_sdk-1.0.0.post7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
167
+ pluggy_sdk-1.0.0.post7.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
168
+ pluggy_sdk-1.0.0.post7.dist-info/RECORD,,