pluggy-sdk 1.0.0.post40__py3-none-any.whl → 1.0.0.post42__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.post40"
18
+ __version__ = "1.0.0.post42"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -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.post40/python'
94
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post42/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -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.post40".\
535
+ "SDK Package Version: 1.0.0.post42".\
536
536
  format(env=sys.platform, pyversion=sys.version)
537
537
 
538
538
  def get_host_settings(self) -> List[HostSetting]:
@@ -18,6 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
+ from datetime import datetime
21
22
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr, field_validator
22
23
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
24
  from pluggy_sdk.models.connector_credential import ConnectorCredential
@@ -47,7 +48,10 @@ class Connector(BaseModel):
47
48
  supports_payment_initiation: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports the payment initiation API", alias="supportsPaymentInitiation")
48
49
  supports_scheduled_payments: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports scheduled payments", alias="supportsScheduledPayments")
49
50
  supports_smart_transfers: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports smart transfers", alias="supportsSmartTransfers")
50
- __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation", "supportsScheduledPayments", "supportsSmartTransfers"]
51
+ supports_boleto_management: Optional[StrictBool] = Field(default=None, description="Indicates if the connector supports boleto management", alias="supportsBoletoManagement")
52
+ created_at: Optional[datetime] = Field(default=None, description="Date of creation", alias="createdAt")
53
+ updated_at: Optional[datetime] = Field(default=None, description="Date of last modification", alias="updatedAt")
54
+ __properties: ClassVar[List[str]] = ["id", "name", "institutionUrl", "imageUrl", "primaryColor", "type", "country", "credentials", "hasMFA", "products", "oauth", "oauthUrl", "resetPasswordUrl", "health", "isOpenFinance", "supportsPaymentInitiation", "supportsScheduledPayments", "supportsSmartTransfers", "supportsBoletoManagement", "createdAt", "updatedAt"]
51
55
 
52
56
  @field_validator('products')
53
57
  def products_validate_enum(cls, value):
@@ -138,7 +142,10 @@ class Connector(BaseModel):
138
142
  "isOpenFinance": obj.get("isOpenFinance"),
139
143
  "supportsPaymentInitiation": obj.get("supportsPaymentInitiation"),
140
144
  "supportsScheduledPayments": obj.get("supportsScheduledPayments"),
141
- "supportsSmartTransfers": obj.get("supportsSmartTransfers")
145
+ "supportsSmartTransfers": obj.get("supportsSmartTransfers"),
146
+ "supportsBoletoManagement": obj.get("supportsBoletoManagement"),
147
+ "createdAt": obj.get("createdAt"),
148
+ "updatedAt": obj.get("updatedAt")
142
149
  })
143
150
  return _obj
144
151
 
@@ -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"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post40
3
+ Version: 1.0.0.post42
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
@@ -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.post40
31
+ - Package version: 1.0.0.post42
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.8+
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=BZAm7LHRbQ9AOgyfkZEpxvXYYKeGIZRHnZ0TXgFwDaU,14046
2
- pluggy_sdk/api_client.py,sha256=wv4OkblYI7PD6WocSE847dOVjeXv9qUA-jrx4QhJH8w,27438
1
+ pluggy_sdk/__init__.py,sha256=e4sxq5yVqRCYFSO5xRqklw7jMKMIaDZvKH9rVcBXjuU,14046
2
+ pluggy_sdk/api_client.py,sha256=rNz7WukyV6MJrSy-9TLIHUgO7OMsGpMPN9UjpqwVfFE,27438
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=2bpCfbRItzcq-rp9dBrqyAUoPMxx-0fkIZzq1TXRJdQ,18823
4
+ pluggy_sdk/configuration.py,sha256=2N-oTIwiJaJ0q0aNDDVzQ9gK8FhHk_iTZdqMmj2xZX8,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=ndeprcDlJmzvl82pCi_lgfn6PrMkofM1VCWIGsCeV5c,55263
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
@@ -77,7 +77,7 @@ pluggy_sdk/models/client_category_rule.py,sha256=jN6C9XzoGvd3Ku-Qzls2qlk1bI5c_O2
77
77
  pluggy_sdk/models/company.py,sha256=jbN82UfXw13h4PJTJ_f0xxbBgbodfFKU-5s6VgG6770,2685
78
78
  pluggy_sdk/models/connect_token_request.py,sha256=nBNgl5MmhJBjNgNtHD_Ee-Gvxp-2SbsJc_PLQLPEsG4,3030
79
79
  pluggy_sdk/models/connect_token_response.py,sha256=ycW3-Z7o0k8K7ibtcKQ2FfzFiguScVGQcTLVKWfwyo8,2623
80
- pluggy_sdk/models/connector.py,sha256=HEm1XmMIEbeauS2kbDNvi_6-9lnEGojYhDwoRpCRX6E,7332
80
+ pluggy_sdk/models/connector.py,sha256=VoSMG3RguHi6bkOv6-zdLiQ51mCmIal0Tf7ueL0bkTc,7990
81
81
  pluggy_sdk/models/connector_credential.py,sha256=9omVYSRdUvra1wKToyF6rW8dnhy5vQAfXEaVFzjCau4,4925
82
82
  pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgvbgkEO57w,3081
83
83
  pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
@@ -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=GS9cGDjtcoKOXvoD1Q-xasPSPPOpfq28x5cnoSyYdsU,6499
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
@@ -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.post40.dist-info/METADATA,sha256=srBg7Zma55-23eMX-e52W4C_sDsTF1-DfVphpAuSZJE,24983
235
- pluggy_sdk-1.0.0.post40.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
236
- pluggy_sdk-1.0.0.post40.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
237
- pluggy_sdk-1.0.0.post40.dist-info/RECORD,,
234
+ pluggy_sdk-1.0.0.post42.dist-info/METADATA,sha256=z6yjIDxVGVDuE2Krbnq9yhH0T8F4Xmb6eH5ZzydQP3g,25133
235
+ pluggy_sdk-1.0.0.post42.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
236
+ pluggy_sdk-1.0.0.post42.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
237
+ pluggy_sdk-1.0.0.post42.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.3)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5