python-terminusgps 47.3.0__py3-none-any.whl → 47.3.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-terminusgps
3
- Version: 47.3.0
3
+ Version: 47.3.1
4
4
  Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
5
5
  Project-URL: Documentation, https://terminusgps.github.io/python-terminusgps
6
6
  Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
@@ -7,7 +7,7 @@ terminusgps/authorizenet/constants.py,sha256=nz3XX2jp9icsJhbSTKi9X-TQDr6jrs35opS
7
7
  terminusgps/authorizenet/service.py,sha256=jjYo1vLgTZSXVNeBY6uKSma94AgEj3Q5xOAT5wUB6ko,4260
8
8
  terminusgps/authorizenet/api/__init__.py,sha256=VXR4Yco1yz5R-R7vgaH2zTP9VFqzfvvGy_XJVjyb3i0,154
9
9
  terminusgps/authorizenet/api/address_profiles.py,sha256=VouUN6dIxlnuE3qEiacFqqDBi_VtwvSbsELqTqFZ0BE,4746
10
- terminusgps/authorizenet/api/customer_profiles.py,sha256=0UjD-SqjmUpjWl1dO2AEgdV_5g6mwTSDeJa2NlueUsE,6431
10
+ terminusgps/authorizenet/api/customer_profiles.py,sha256=1SBUxHgsyImKgl_hJpZU7TJfAEHU2KD8-Lwlc1VDRuE,6511
11
11
  terminusgps/authorizenet/api/payment_profiles.py,sha256=s-telQZXdq6bu5TxWVYv5xBNHWq81ve_hQVrRlqoBb0,8089
12
12
  terminusgps/authorizenet/api/subscriptions.py,sha256=VAXKjOHLOfifrixObK6XbiJCmPobkYBzXJQrjtos9LE,4542
13
13
  terminusgps/authorizenet/api/transactions.py,sha256=zwbUXGxI1wkTXSPG4L4O5Y2fdNgxOrNaak1jwcC9PeM,8531
@@ -26,7 +26,7 @@ terminusgps/wialon/items/route.py,sha256=9hmRBEFRJF3lKukv_y3blZxqxv75YgFCcRALrU6
26
26
  terminusgps/wialon/items/unit.py,sha256=B5iuGEghu89SL8KzYLUytYNRa8cogsVtf-bJ_RybPTA,5522
27
27
  terminusgps/wialon/items/unit_group.py,sha256=MIR0x5IlTjcnwx8Y9wXLNTql-wwVVj7NCe7dL2vOw4c,2131
28
28
  terminusgps/wialon/items/user.py,sha256=CRSICiJ-qzybEO_gXuKyzW5oa2RQeIp0SzX9ARcdME4,5151
29
- python_terminusgps-47.3.0.dist-info/METADATA,sha256=MnjxES0u0JmuRabrDTpVnN-mNi4tdQQQ4UiXjPSDyys,938
30
- python_terminusgps-47.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
31
- python_terminusgps-47.3.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
32
- python_terminusgps-47.3.0.dist-info/RECORD,,
29
+ python_terminusgps-47.3.1.dist-info/METADATA,sha256=QSdb6bOXj7fkX8N1C1CjwFLkkCgfub5J0tjahKVMCOw,938
30
+ python_terminusgps-47.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
31
+ python_terminusgps-47.3.1.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
32
+ python_terminusgps-47.3.1.dist-info/RECORD,,
@@ -4,10 +4,12 @@ from lxml.objectify import ObjectifiedElement
4
4
 
5
5
  __all__ = [
6
6
  "create_customer_profile",
7
+ "delete_customer_profile",
7
8
  "get_customer_profile",
9
+ "get_customer_profile_by_email",
10
+ "get_customer_profile_by_merchant_id",
8
11
  "get_customer_profile_ids",
9
12
  "update_customer_profile",
10
- "delete_customer_profile",
11
13
  ]
12
14
 
13
15