payrex-python 0.1.4__tar.gz → 1.0.0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: payrex-python
3
- Version: 0.1.4
3
+ Version: 1.0.0
4
4
  Summary: PayRex Python Library
5
5
  Home-page: https://github.com/payrexhq/payrex-python
6
6
  Author: PayRex
@@ -12,18 +12,21 @@ from payrex.http_client import HttpClient
12
12
 
13
13
  from payrex.entities.payment_intent_entity import PaymentIntentEntity
14
14
  from payrex.entities.checkout_session_entity import CheckoutSessionEntity
15
+ from payrex.entities.customer_entity import CustomerEntity
16
+ from payrex.entities.billing_statement_entity import BillingStatementEntity
17
+ from payrex.entities.billing_statement_line_item_entity import BillingStatementLineItemEntity
18
+ from payrex.entities.deleted_entity import DeletedEntity
15
19
  from payrex.entities.event_entity import EventEntity
16
20
  from payrex.entities.listing_entity import ListingEntity
17
- from payrex.entities.merchant_entity import MerchantEntity
18
- from payrex.entities.payment_method_entity import PaymentMethodEntity
19
21
  from payrex.entities.refund_entity import RefundEntity
20
22
  from payrex.entities.webhook_entity import WebhookEntity
21
23
 
22
24
  from payrex.services.base_service import BaseService
23
25
  from payrex.services.checkout_session_service import CheckoutSessionService
24
- from payrex.services.merchant_service import MerchantService
26
+ from payrex.services.customer_service import CustomerService
27
+ from payrex.services.billing_statement_service import BillingStatementService
28
+ from payrex.services.billing_statement_line_item_service import BillingStatementLineItemService
25
29
  from payrex.services.payment_intent_service import PaymentIntentService
26
- from payrex.services.payment_method_service import PaymentMethodService
27
30
  from payrex.services.refund_service import RefundService
28
31
  from payrex.services.webhook_service import WebhookService
29
32
  from payrex.services.service_factory import ServiceFactory
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: payrex-python
3
- Version: 0.1.4
3
+ Version: 1.0.0
4
4
  Summary: PayRex Python Library
5
5
  Home-page: https://github.com/payrexhq/payrex-python
6
6
  Author: PayRex
@@ -3,7 +3,7 @@ from pathlib import Path
3
3
 
4
4
  setup(
5
5
  name='payrex-python',
6
- version='0.1.4',
6
+ version='1.0.0',
7
7
  author='PayRex',
8
8
  author_email='support@payrexhq.com',
9
9
  description='PayRex Python Library',
File without changes
File without changes
File without changes