pluggy-sdk 1.0.0.post39__py3-none-any.whl → 1.0.0.post41__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/items_api.py +267 -0
- pluggy_sdk/api_client.py +1 -1
- pluggy_sdk/configuration.py +1 -1
- pluggy_sdk/models/payment_request.py +3 -1
- pluggy_sdk/models/transaction.py +4 -2
- {pluggy_sdk-1.0.0.post39.dist-info → pluggy_sdk-1.0.0.post41.dist-info}/METADATA +6 -5
- {pluggy_sdk-1.0.0.post39.dist-info → pluggy_sdk-1.0.0.post41.dist-info}/RECORD +10 -10
- {pluggy_sdk-1.0.0.post39.dist-info → pluggy_sdk-1.0.0.post41.dist-info}/WHEEL +1 -1
- {pluggy_sdk-1.0.0.post39.dist-info → pluggy_sdk-1.0.0.post41.dist-info}/top_level.txt +0 -0
pluggy_sdk/__init__.py
CHANGED
pluggy_sdk/api/items_api.py
CHANGED
@@ -593,6 +593,273 @@ class ItemsApi:
|
|
593
593
|
|
594
594
|
|
595
595
|
|
596
|
+
@validate_call
|
597
|
+
def items_disable_autosync(
|
598
|
+
self,
|
599
|
+
id: Annotated[StrictStr, Field(description="Item primary identifier")],
|
600
|
+
_request_timeout: Union[
|
601
|
+
None,
|
602
|
+
Annotated[StrictFloat, Field(gt=0)],
|
603
|
+
Tuple[
|
604
|
+
Annotated[StrictFloat, Field(gt=0)],
|
605
|
+
Annotated[StrictFloat, Field(gt=0)]
|
606
|
+
]
|
607
|
+
] = None,
|
608
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
609
|
+
_content_type: Optional[StrictStr] = None,
|
610
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
611
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
612
|
+
) -> Item:
|
613
|
+
"""Disable item auto sync
|
614
|
+
|
615
|
+
When client disables auto sync, the item will not be updated automatically anymore, until the client force an item update.
|
616
|
+
|
617
|
+
:param id: Item primary identifier (required)
|
618
|
+
:type id: str
|
619
|
+
:param _request_timeout: timeout setting for this request. If one
|
620
|
+
number provided, it will be total request
|
621
|
+
timeout. It can also be a pair (tuple) of
|
622
|
+
(connection, read) timeouts.
|
623
|
+
:type _request_timeout: int, tuple(int, int), optional
|
624
|
+
:param _request_auth: set to override the auth_settings for an a single
|
625
|
+
request; this effectively ignores the
|
626
|
+
authentication in the spec for a single request.
|
627
|
+
:type _request_auth: dict, optional
|
628
|
+
:param _content_type: force content-type for the request.
|
629
|
+
:type _content_type: str, Optional
|
630
|
+
:param _headers: set to override the headers for a single
|
631
|
+
request; this effectively ignores the headers
|
632
|
+
in the spec for a single request.
|
633
|
+
:type _headers: dict, optional
|
634
|
+
:param _host_index: set to override the host_index for a single
|
635
|
+
request; this effectively ignores the host_index
|
636
|
+
in the spec for a single request.
|
637
|
+
:type _host_index: int, optional
|
638
|
+
:return: Returns the result object.
|
639
|
+
""" # noqa: E501
|
640
|
+
|
641
|
+
_param = self._items_disable_autosync_serialize(
|
642
|
+
id=id,
|
643
|
+
_request_auth=_request_auth,
|
644
|
+
_content_type=_content_type,
|
645
|
+
_headers=_headers,
|
646
|
+
_host_index=_host_index
|
647
|
+
)
|
648
|
+
|
649
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
650
|
+
'200': "Item",
|
651
|
+
'404': "GlobalErrorResponse",
|
652
|
+
'500': "GlobalErrorResponse",
|
653
|
+
}
|
654
|
+
response_data = self.api_client.call_api(
|
655
|
+
*_param,
|
656
|
+
_request_timeout=_request_timeout
|
657
|
+
)
|
658
|
+
response_data.read()
|
659
|
+
return self.api_client.response_deserialize(
|
660
|
+
response_data=response_data,
|
661
|
+
response_types_map=_response_types_map,
|
662
|
+
).data
|
663
|
+
|
664
|
+
|
665
|
+
@validate_call
|
666
|
+
def items_disable_autosync_with_http_info(
|
667
|
+
self,
|
668
|
+
id: Annotated[StrictStr, Field(description="Item primary identifier")],
|
669
|
+
_request_timeout: Union[
|
670
|
+
None,
|
671
|
+
Annotated[StrictFloat, Field(gt=0)],
|
672
|
+
Tuple[
|
673
|
+
Annotated[StrictFloat, Field(gt=0)],
|
674
|
+
Annotated[StrictFloat, Field(gt=0)]
|
675
|
+
]
|
676
|
+
] = None,
|
677
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
678
|
+
_content_type: Optional[StrictStr] = None,
|
679
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
680
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
681
|
+
) -> ApiResponse[Item]:
|
682
|
+
"""Disable item auto sync
|
683
|
+
|
684
|
+
When client disables auto sync, the item will not be updated automatically anymore, until the client force an item update.
|
685
|
+
|
686
|
+
:param id: Item primary identifier (required)
|
687
|
+
:type id: str
|
688
|
+
:param _request_timeout: timeout setting for this request. If one
|
689
|
+
number provided, it will be total request
|
690
|
+
timeout. It can also be a pair (tuple) of
|
691
|
+
(connection, read) timeouts.
|
692
|
+
:type _request_timeout: int, tuple(int, int), optional
|
693
|
+
:param _request_auth: set to override the auth_settings for an a single
|
694
|
+
request; this effectively ignores the
|
695
|
+
authentication in the spec for a single request.
|
696
|
+
:type _request_auth: dict, optional
|
697
|
+
:param _content_type: force content-type for the request.
|
698
|
+
:type _content_type: str, Optional
|
699
|
+
:param _headers: set to override the headers for a single
|
700
|
+
request; this effectively ignores the headers
|
701
|
+
in the spec for a single request.
|
702
|
+
:type _headers: dict, optional
|
703
|
+
:param _host_index: set to override the host_index for a single
|
704
|
+
request; this effectively ignores the host_index
|
705
|
+
in the spec for a single request.
|
706
|
+
:type _host_index: int, optional
|
707
|
+
:return: Returns the result object.
|
708
|
+
""" # noqa: E501
|
709
|
+
|
710
|
+
_param = self._items_disable_autosync_serialize(
|
711
|
+
id=id,
|
712
|
+
_request_auth=_request_auth,
|
713
|
+
_content_type=_content_type,
|
714
|
+
_headers=_headers,
|
715
|
+
_host_index=_host_index
|
716
|
+
)
|
717
|
+
|
718
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
719
|
+
'200': "Item",
|
720
|
+
'404': "GlobalErrorResponse",
|
721
|
+
'500': "GlobalErrorResponse",
|
722
|
+
}
|
723
|
+
response_data = self.api_client.call_api(
|
724
|
+
*_param,
|
725
|
+
_request_timeout=_request_timeout
|
726
|
+
)
|
727
|
+
response_data.read()
|
728
|
+
return self.api_client.response_deserialize(
|
729
|
+
response_data=response_data,
|
730
|
+
response_types_map=_response_types_map,
|
731
|
+
)
|
732
|
+
|
733
|
+
|
734
|
+
@validate_call
|
735
|
+
def items_disable_autosync_without_preload_content(
|
736
|
+
self,
|
737
|
+
id: Annotated[StrictStr, Field(description="Item primary identifier")],
|
738
|
+
_request_timeout: Union[
|
739
|
+
None,
|
740
|
+
Annotated[StrictFloat, Field(gt=0)],
|
741
|
+
Tuple[
|
742
|
+
Annotated[StrictFloat, Field(gt=0)],
|
743
|
+
Annotated[StrictFloat, Field(gt=0)]
|
744
|
+
]
|
745
|
+
] = None,
|
746
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
747
|
+
_content_type: Optional[StrictStr] = None,
|
748
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
749
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
750
|
+
) -> RESTResponseType:
|
751
|
+
"""Disable item auto sync
|
752
|
+
|
753
|
+
When client disables auto sync, the item will not be updated automatically anymore, until the client force an item update.
|
754
|
+
|
755
|
+
:param id: Item primary identifier (required)
|
756
|
+
:type id: str
|
757
|
+
:param _request_timeout: timeout setting for this request. If one
|
758
|
+
number provided, it will be total request
|
759
|
+
timeout. It can also be a pair (tuple) of
|
760
|
+
(connection, read) timeouts.
|
761
|
+
:type _request_timeout: int, tuple(int, int), optional
|
762
|
+
:param _request_auth: set to override the auth_settings for an a single
|
763
|
+
request; this effectively ignores the
|
764
|
+
authentication in the spec for a single request.
|
765
|
+
:type _request_auth: dict, optional
|
766
|
+
:param _content_type: force content-type for the request.
|
767
|
+
:type _content_type: str, Optional
|
768
|
+
:param _headers: set to override the headers for a single
|
769
|
+
request; this effectively ignores the headers
|
770
|
+
in the spec for a single request.
|
771
|
+
:type _headers: dict, optional
|
772
|
+
:param _host_index: set to override the host_index for a single
|
773
|
+
request; this effectively ignores the host_index
|
774
|
+
in the spec for a single request.
|
775
|
+
:type _host_index: int, optional
|
776
|
+
:return: Returns the result object.
|
777
|
+
""" # noqa: E501
|
778
|
+
|
779
|
+
_param = self._items_disable_autosync_serialize(
|
780
|
+
id=id,
|
781
|
+
_request_auth=_request_auth,
|
782
|
+
_content_type=_content_type,
|
783
|
+
_headers=_headers,
|
784
|
+
_host_index=_host_index
|
785
|
+
)
|
786
|
+
|
787
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
788
|
+
'200': "Item",
|
789
|
+
'404': "GlobalErrorResponse",
|
790
|
+
'500': "GlobalErrorResponse",
|
791
|
+
}
|
792
|
+
response_data = self.api_client.call_api(
|
793
|
+
*_param,
|
794
|
+
_request_timeout=_request_timeout
|
795
|
+
)
|
796
|
+
return response_data.response
|
797
|
+
|
798
|
+
|
799
|
+
def _items_disable_autosync_serialize(
|
800
|
+
self,
|
801
|
+
id,
|
802
|
+
_request_auth,
|
803
|
+
_content_type,
|
804
|
+
_headers,
|
805
|
+
_host_index,
|
806
|
+
) -> RequestSerialized:
|
807
|
+
|
808
|
+
_host = None
|
809
|
+
|
810
|
+
_collection_formats: Dict[str, str] = {
|
811
|
+
}
|
812
|
+
|
813
|
+
_path_params: Dict[str, str] = {}
|
814
|
+
_query_params: List[Tuple[str, str]] = []
|
815
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
816
|
+
_form_params: List[Tuple[str, str]] = []
|
817
|
+
_files: Dict[
|
818
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
819
|
+
] = {}
|
820
|
+
_body_params: Optional[bytes] = None
|
821
|
+
|
822
|
+
# process the path parameters
|
823
|
+
if id is not None:
|
824
|
+
_path_params['id'] = id
|
825
|
+
# process the query parameters
|
826
|
+
# process the header parameters
|
827
|
+
# process the form parameters
|
828
|
+
# process the body parameter
|
829
|
+
|
830
|
+
|
831
|
+
# set the HTTP header `Accept`
|
832
|
+
if 'Accept' not in _header_params:
|
833
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
834
|
+
[
|
835
|
+
'application/json'
|
836
|
+
]
|
837
|
+
)
|
838
|
+
|
839
|
+
|
840
|
+
# authentication setting
|
841
|
+
_auth_settings: List[str] = [
|
842
|
+
'default'
|
843
|
+
]
|
844
|
+
|
845
|
+
return self.api_client.param_serialize(
|
846
|
+
method='PATCH',
|
847
|
+
resource_path='/items/{id}/disable-auto-sync',
|
848
|
+
path_params=_path_params,
|
849
|
+
query_params=_query_params,
|
850
|
+
header_params=_header_params,
|
851
|
+
body=_body_params,
|
852
|
+
post_params=_form_params,
|
853
|
+
files=_files,
|
854
|
+
auth_settings=_auth_settings,
|
855
|
+
collection_formats=_collection_formats,
|
856
|
+
_host=_host,
|
857
|
+
_request_auth=_request_auth
|
858
|
+
)
|
859
|
+
|
860
|
+
|
861
|
+
|
862
|
+
|
596
863
|
@validate_call
|
597
864
|
def items_retrieve(
|
598
865
|
self,
|
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.post41/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.post41".\
|
536
536
|
format(env=sys.platform, pyversion=sys.version)
|
537
537
|
|
538
538
|
def get_host_settings(self) -> List[HostSetting]:
|
@@ -34,6 +34,7 @@ class PaymentRequest(BaseModel):
|
|
34
34
|
""" # noqa: E501
|
35
35
|
id: StrictStr = Field(description="Primary identifier")
|
36
36
|
amount: Union[StrictFloat, StrictInt] = Field(description="Requested amount")
|
37
|
+
fees: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Fees charged for the payment request. This includes both Pluggy's fees and any customer-specific fees. Fees are calculated based on the payment method (PIX or Boleto) and the client's pricing configuration. For sandbox accounts, fees are set to 0.")
|
37
38
|
description: Optional[StrictStr] = Field(default=None, description="Payment description")
|
38
39
|
status: StrictStr = Field(description="Payment request status")
|
39
40
|
client_payment_id: Optional[StrictStr] = Field(default=None, description="Client payment identifier", alias="clientPaymentId")
|
@@ -46,7 +47,7 @@ class PaymentRequest(BaseModel):
|
|
46
47
|
boleto: Optional[Boleto] = None
|
47
48
|
schedule: Optional[PaymentRequestSchedule] = None
|
48
49
|
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"]
|
50
|
+
__properties: ClassVar[List[str]] = ["id", "amount", "fees", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto", "schedule", "errorDetail"]
|
50
51
|
|
51
52
|
@field_validator('status')
|
52
53
|
def status_validate_enum(cls, value):
|
@@ -120,6 +121,7 @@ class PaymentRequest(BaseModel):
|
|
120
121
|
_obj = cls.model_validate({
|
121
122
|
"id": obj.get("id"),
|
122
123
|
"amount": obj.get("amount"),
|
124
|
+
"fees": obj.get("fees"),
|
123
125
|
"description": obj.get("description"),
|
124
126
|
"status": obj.get("status"),
|
125
127
|
"clientPaymentId": obj.get("clientPaymentId"),
|
pluggy_sdk/models/transaction.py
CHANGED
@@ -47,7 +47,8 @@ class Transaction(BaseModel):
|
|
47
47
|
credit_card_metadata: Optional[CreditCardMetadata] = Field(default=None, alias="creditCardMetadata")
|
48
48
|
merchant: Optional[Merchant] = None
|
49
49
|
operation_type: Optional[StrictStr] = Field(default=None, description="Type of operation classified by the institution.", alias="operationType")
|
50
|
-
|
50
|
+
provider_id: Optional[StrictStr] = Field(default=None, description="Provider's identifier for the transaction. Only returned for Open Finance connectors.", alias="providerId")
|
51
|
+
__properties: ClassVar[List[str]] = ["id", "description", "currencyCode", "amount", "amountInAccountCurrency", "date", "type", "balance", "providerCode", "status", "category", "categoryId", "paymentData", "creditCardMetadata", "merchant", "operationType", "providerId"]
|
51
52
|
|
52
53
|
@field_validator('type')
|
53
54
|
def type_validate_enum(cls, value):
|
@@ -134,7 +135,8 @@ class Transaction(BaseModel):
|
|
134
135
|
"paymentData": PaymentData.from_dict(obj["paymentData"]) if obj.get("paymentData") is not None else None,
|
135
136
|
"creditCardMetadata": CreditCardMetadata.from_dict(obj["creditCardMetadata"]) if obj.get("creditCardMetadata") is not None else None,
|
136
137
|
"merchant": Merchant.from_dict(obj["merchant"]) if obj.get("merchant") is not None else None,
|
137
|
-
"operationType": obj.get("operationType")
|
138
|
+
"operationType": obj.get("operationType"),
|
139
|
+
"providerId": obj.get("providerId")
|
138
140
|
})
|
139
141
|
return _obj
|
140
142
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: pluggy-sdk
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.post41
|
4
4
|
Summary: Pluggy API
|
5
5
|
Home-page: https://github.com/diraol/pluggy-python
|
6
6
|
Author: Pluggy
|
@@ -8,7 +8,7 @@ Author-email: hello@pluggy.ai
|
|
8
8
|
License: MIT
|
9
9
|
Keywords: OpenAPI,OpenAPI-Generator,Pluggy API
|
10
10
|
Description-Content-Type: text/markdown
|
11
|
-
Requires-Dist: urllib3<3.0.0,>=1.
|
11
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
12
12
|
Requires-Dist: python-dateutil>=2.8.2
|
13
13
|
Requires-Dist: pydantic>=2
|
14
14
|
Requires-Dist: typing-extensions>=4.7.1
|
@@ -28,14 +28,14 @@ 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.post41
|
32
32
|
- Generator version: 7.13.0-SNAPSHOT
|
33
33
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
34
34
|
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
|
35
35
|
|
36
36
|
## Requirements.
|
37
37
|
|
38
|
-
Python 3.
|
38
|
+
Python 3.9+
|
39
39
|
|
40
40
|
## Installation & Usage
|
41
41
|
### pip install
|
@@ -154,6 +154,7 @@ Class | Method | HTTP request | Description
|
|
154
154
|
*InvestmentApi* | [**investments_retrieve**](docs/InvestmentApi.md#investments_retrieve) | **GET** /investments/{id} | Retrieve
|
155
155
|
*ItemsApi* | [**items_create**](docs/ItemsApi.md#items_create) | **POST** /items | Create
|
156
156
|
*ItemsApi* | [**items_delete**](docs/ItemsApi.md#items_delete) | **DELETE** /items/{id} | Delete
|
157
|
+
*ItemsApi* | [**items_disable_autosync**](docs/ItemsApi.md#items_disable_autosync) | **PATCH** /items/{id}/disable-auto-sync | Disable item auto sync
|
157
158
|
*ItemsApi* | [**items_retrieve**](docs/ItemsApi.md#items_retrieve) | **GET** /items/{id} | Retrieve
|
158
159
|
*ItemsApi* | [**items_send_mfa**](docs/ItemsApi.md#items_send_mfa) | **POST** /items/{id}/mfa | Send MFA
|
159
160
|
*ItemsApi* | [**items_update**](docs/ItemsApi.md#items_update) | **PATCH** /items/{id} | Update
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pluggy_sdk/__init__.py,sha256=
|
2
|
-
pluggy_sdk/api_client.py,sha256=
|
1
|
+
pluggy_sdk/__init__.py,sha256=bXdHUF0ihqSp3CO_-nHHsSgAJQpTXkl_rUQA4IW_LFA,14046
|
2
|
+
pluggy_sdk/api_client.py,sha256=1aqUgyrX848qMQVikce4InHLHeQcUzPNDtfq2_7k8f0,27438
|
3
3
|
pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
-
pluggy_sdk/configuration.py,sha256=
|
4
|
+
pluggy_sdk/configuration.py,sha256=ZkWwLUUybZUnvzNwM7o_gR22MogOtt-Hcxtw77NfA-s,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
|
@@ -21,7 +21,7 @@ pluggy_sdk/api/consent_api.py,sha256=9lhmfKiIerWsEwVLE4TgIxtmQhnLQFPVpWEZRdDQJCc
|
|
21
21
|
pluggy_sdk/api/identity_api.py,sha256=owFRuj7HTT9S8pPKGSY4cNjFJvEd-KobMr3hjytrXCk,21870
|
22
22
|
pluggy_sdk/api/income_report_api.py,sha256=HfcWM14chZfmmc8pNcmb68QIomjWFZAMahCAmYrHD9A,11727
|
23
23
|
pluggy_sdk/api/investment_api.py,sha256=x_V67FOqUY1h11kl3tB0Ne77qD_o_EgLQB5PKxT0Ock,36391
|
24
|
-
pluggy_sdk/api/items_api.py,sha256=
|
24
|
+
pluggy_sdk/api/items_api.py,sha256=C07LVqlD5ky7aGDgFClbVRTQZQ6PAqGk4t142mgpLeA,65687
|
25
25
|
pluggy_sdk/api/loan_api.py,sha256=0F4282MRf2XZ6KkRq9zZ9Bjfp4_gr628_Zjc3vnCnNU,21108
|
26
26
|
pluggy_sdk/api/payment_customer_api.py,sha256=2oxLDZt8BvDhg1P942AQaQUNsGBgvFL9BpctRvDW1w8,55454
|
27
27
|
pluggy_sdk/api/payment_intent_api.py,sha256=xb5TAryR7WH6uMFH8-M1jeQonnnYxJ1TPkw2lZ3P_E0,32422
|
@@ -185,7 +185,7 @@ pluggy_sdk/models/payment_recipient.py,sha256=XGpf7503LIg9YADhESE-VGjaFSVWVq0_Dl
|
|
185
185
|
pluggy_sdk/models/payment_recipient_account.py,sha256=JPC0a_b2MdP6-gU9wPNXFnzHurIPX_yq3IN2eAcHYKU,2896
|
186
186
|
pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=U1EEixkgvgQUKt9A8t9aAQOgd2S46zWV2MoW5OsCOHo,3568
|
187
187
|
pluggy_sdk/models/payment_recipients_list200_response.py,sha256=JdkbcYK97ZUEeEHHff0GITMN4ccTBh-EARcEcT9-E1k,3514
|
188
|
-
pluggy_sdk/models/payment_request.py,sha256=
|
188
|
+
pluggy_sdk/models/payment_request.py,sha256=gRCPSDWGSKFlmzM7XF_O21CSoa3few7OlcMOaC2YhGQ,6879
|
189
189
|
pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
|
190
190
|
pluggy_sdk/models/payment_request_error_detail.py,sha256=b-ne2J1YOJNEI8oEXSkGyvsIX4nZOMGvxcVjNTzkBPU,2811
|
191
191
|
pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=s8EfLcT-3_lxzdbHegn-e3FZGiXkque6XqJebM9pacs,3520
|
@@ -221,7 +221,7 @@ pluggy_sdk/models/smart_transfer_preauthorization_parameter.py,sha256=ZhP5Q_7gZo
|
|
221
221
|
pluggy_sdk/models/status_detail.py,sha256=KBztEwpbCqrhNTvntJrRB7QDQHBq2XHtKKNT6tTOEHA,5728
|
222
222
|
pluggy_sdk/models/status_detail_product.py,sha256=u4ywakAifpyDli36JZAUGurLRdN9W4B3EJZ9dutUdd8,3651
|
223
223
|
pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGvnWhOhLpMYvpUcr8rplVVs,2955
|
224
|
-
pluggy_sdk/models/transaction.py,sha256=
|
224
|
+
pluggy_sdk/models/transaction.py,sha256=cEBiOxkkW3t1KRSwgOCwyhjNnOKW_Wv3KTaAAGMjU_Y,6914
|
225
225
|
pluggy_sdk/models/update_item.py,sha256=3YeJaipa-omyCB3Ux0Mig5fnt_7UrXyiI6yrtZt6wCA,4134
|
226
226
|
pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
|
227
227
|
pluggy_sdk/models/update_payment_recipient.py,sha256=eVnwQqnLsZVqx58FrWriIiVynNnLbHzwizdm2yLZbAE,3976
|
@@ -231,7 +231,7 @@ pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,
|
|
231
231
|
pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
|
232
232
|
pluggy_sdk/models/webhooks_list200_response.py,sha256=_C8cwBIpZZrODNt-BS_pwAyBjZPxls6ffsy8vqYA6RU,3384
|
233
233
|
pluggy_sdk/models/weekly.py,sha256=rEjJdwn52bBC5sNRUoWsMQ2uoaX7tDz68R5OOgBF1uw,4096
|
234
|
-
pluggy_sdk-1.0.0.
|
235
|
-
pluggy_sdk-1.0.0.
|
236
|
-
pluggy_sdk-1.0.0.
|
237
|
-
pluggy_sdk-1.0.0.
|
234
|
+
pluggy_sdk-1.0.0.post41.dist-info/METADATA,sha256=T7hGeK-ANLjktrFffMlkpi6lV1SJLBhDMhPTXvp_2MI,25133
|
235
|
+
pluggy_sdk-1.0.0.post41.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
236
|
+
pluggy_sdk-1.0.0.post41.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
|
237
|
+
pluggy_sdk-1.0.0.post41.dist-info/RECORD,,
|
File without changes
|