python-terminusgps 37.6.3__py3-none-any.whl → 37.6.4__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.
Potentially problematic release.
This version of python-terminusgps might be problematic. Click here for more details.
- {python_terminusgps-37.6.3.dist-info → python_terminusgps-37.6.4.dist-info}/METADATA +1 -1
- {python_terminusgps-37.6.3.dist-info → python_terminusgps-37.6.4.dist-info}/RECORD +5 -5
- terminusgps/authorizenet/profiles/payments.py +1 -1
- {python_terminusgps-37.6.3.dist-info → python_terminusgps-37.6.4.dist-info}/WHEEL +0 -0
- {python_terminusgps-37.6.3.dist-info → python_terminusgps-37.6.4.dist-info}/licenses/COPYING +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-terminusgps
|
|
3
|
-
Version: 37.6.
|
|
3
|
+
Version: 37.6.4
|
|
4
4
|
Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
|
|
5
5
|
Project-URL: Documentation, https://docs.terminusgps.com
|
|
6
6
|
Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
|
|
@@ -8,7 +8,7 @@ terminusgps/authorizenet/profiles/__init__.py,sha256=IG4XCEEYtHKqXOatlZlob6J3ukA
|
|
|
8
8
|
terminusgps/authorizenet/profiles/addresses.py,sha256=MwJQzq3IrjYCLJzOglLfJIcMvH5osDu1MzN6_XGO0Tc,6376
|
|
9
9
|
terminusgps/authorizenet/profiles/base.py,sha256=Pu1NGrvC5Ox2W1oZuVcPqUw3aUoSK191Evexw1U6_3k,3940
|
|
10
10
|
terminusgps/authorizenet/profiles/customers.py,sha256=0BJoTwaRBe6qGJhM_No6pinrnDjDyWYbtcig0nrCqN8,11799
|
|
11
|
-
terminusgps/authorizenet/profiles/payments.py,sha256=
|
|
11
|
+
terminusgps/authorizenet/profiles/payments.py,sha256=ncuHtnkqm7nJZnKrGuLGm9n7CMPI-fqAzr2G5PKcvoE,11313
|
|
12
12
|
terminusgps/authorizenet/profiles/subscriptions.py,sha256=TKTGeYCNSiDMAQGwMnFOL7E_SKt3GsiwgtIfGJE3yHc,10256
|
|
13
13
|
terminusgps/authorizenet/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
terminusgps/authorizenet/tests/test_auth.py,sha256=qwACQK6R4mu7i6IoSlY015X2ABB9jkTJE9JcHpfiZaQ,1601
|
|
@@ -50,7 +50,7 @@ terminusgps/wialon/items/route.py,sha256=2dEUK9o8nwutPE03W-5GUcZrjGvbwLoExVnFV9L
|
|
|
50
50
|
terminusgps/wialon/items/unit.py,sha256=P828NaWkTQncNre3n4h7AedeSxUXPKSxQFpBiliZCBk,12133
|
|
51
51
|
terminusgps/wialon/items/unit_group.py,sha256=HhYMZ9b7UATXeEgHkXN9r5-M_w82fabjDYADCUwBtxQ,4442
|
|
52
52
|
terminusgps/wialon/items/user.py,sha256=pR6OTrm6f7Zo0J8eLvKtWVsdhGi430OxMsMMthGh8YE,5382
|
|
53
|
-
python_terminusgps-37.6.
|
|
54
|
-
python_terminusgps-37.6.
|
|
55
|
-
python_terminusgps-37.6.
|
|
56
|
-
python_terminusgps-37.6.
|
|
53
|
+
python_terminusgps-37.6.4.dist-info/METADATA,sha256=LfBGguF0Gzls00Jhxb8L1DuuaEAsB7gQcWstHtg52ts,1329
|
|
54
|
+
python_terminusgps-37.6.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
55
|
+
python_terminusgps-37.6.4.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
56
|
+
python_terminusgps-37.6.4.dist-info/RECORD,,
|
|
@@ -23,7 +23,7 @@ class PaymentProfile(AuthorizenetSubProfileBase):
|
|
|
23
23
|
.find(f"{ANET_XMLNS}creditCard")
|
|
24
24
|
.find(f"{ANET_XMLNS}cardNumber")
|
|
25
25
|
) # returns string like: "XXXX<last_4>"
|
|
26
|
-
return int(
|
|
26
|
+
return int(cc_num.text[-4:]) if cc_num is not None else None
|
|
27
27
|
|
|
28
28
|
def create(
|
|
29
29
|
self,
|
|
File without changes
|
{python_terminusgps-37.6.3.dist-info → python_terminusgps-37.6.4.dist-info}/licenses/COPYING
RENAMED
|
File without changes
|