python-terminusgps 36.3.0__py3-none-any.whl → 36.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.
- {python_terminusgps-36.3.0.dist-info → python_terminusgps-36.3.1.dist-info}/METADATA +1 -1
- {python_terminusgps-36.3.0.dist-info → python_terminusgps-36.3.1.dist-info}/RECORD +5 -5
- terminusgps/authorizenet/profiles/customers.py +10 -10
- {python_terminusgps-36.3.0.dist-info → python_terminusgps-36.3.1.dist-info}/WHEEL +0 -0
- {python_terminusgps-36.3.0.dist-info → python_terminusgps-36.3.1.dist-info}/licenses/COPYING +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-terminusgps
|
|
3
|
-
Version: 36.3.
|
|
3
|
+
Version: 36.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://docs.terminusgps.com
|
|
6
6
|
Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
|
|
@@ -7,7 +7,7 @@ terminusgps/authorizenet/utils.py,sha256=FrKqXWrplcgiET1rDTmUaqmN_ze7j93jWgfFeJR
|
|
|
7
7
|
terminusgps/authorizenet/profiles/__init__.py,sha256=IG4XCEEYtHKqXOatlZlob6J3ukAgF7cFR-RXxOSMS1c,161
|
|
8
8
|
terminusgps/authorizenet/profiles/addresses.py,sha256=5GudJStBa4P0Hd7G_hRFH2C-WpICAH_k3MT9YJkicKw,6305
|
|
9
9
|
terminusgps/authorizenet/profiles/base.py,sha256=Pu1NGrvC5Ox2W1oZuVcPqUw3aUoSK191Evexw1U6_3k,3940
|
|
10
|
-
terminusgps/authorizenet/profiles/customers.py,sha256=
|
|
10
|
+
terminusgps/authorizenet/profiles/customers.py,sha256=mKPHSFoDqJqHL1CvTximNVRb1myRwQ9NvMkA2-iswOg,11701
|
|
11
11
|
terminusgps/authorizenet/profiles/payments.py,sha256=nhudGuJ6RzmK0MrhDVuYL2BxvyzKNpliBIfIpFU5Y-4,11038
|
|
12
12
|
terminusgps/authorizenet/profiles/subscriptions.py,sha256=m_jb9GqeD1tLmeqSnaGwJrzPcQOulEkF8K1wCaqKR24,7924
|
|
13
13
|
terminusgps/authorizenet/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -52,7 +52,7 @@ terminusgps/wialon/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
52
52
|
terminusgps/wialon/tests/test_items.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
terminusgps/wialon/tests/test_session.py,sha256=9mBlYchMo9NeqRIZsmxYzrM1zBHorqu4ooxqSNppLpI,1336
|
|
54
54
|
terminusgps/wialon/tests/test_utils.py,sha256=SK4PxJQGECFnzx_EQeRAQfsQ5_3FLaVcis2W9u_ibuI,1730
|
|
55
|
-
python_terminusgps-36.3.
|
|
56
|
-
python_terminusgps-36.3.
|
|
57
|
-
python_terminusgps-36.3.
|
|
58
|
-
python_terminusgps-36.3.
|
|
55
|
+
python_terminusgps-36.3.1.dist-info/METADATA,sha256=nT2MtI0nkBDU3LxZHkQ4WjAxpq_0q0bEEFe3gP4s3Cs,1616
|
|
56
|
+
python_terminusgps-36.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
57
|
+
python_terminusgps-36.3.1.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
58
|
+
python_terminusgps-36.3.1.dist-info/RECORD,,
|
|
@@ -211,12 +211,12 @@ class CustomerProfile(AuthorizenetProfileBase):
|
|
|
211
211
|
"""
|
|
212
212
|
cprofile_obj = apicontractsv1.customerProfileType()
|
|
213
213
|
|
|
214
|
-
if self.
|
|
215
|
-
cprofile_obj.merchantCustomerId = self.
|
|
216
|
-
if self.
|
|
217
|
-
cprofile_obj.email = self.
|
|
218
|
-
if self.
|
|
219
|
-
cprofile_obj.description = self.
|
|
214
|
+
if self._merchant_id:
|
|
215
|
+
cprofile_obj.merchantCustomerId = self._merchant_id
|
|
216
|
+
if self._email:
|
|
217
|
+
cprofile_obj.email = self._email
|
|
218
|
+
if self._desc:
|
|
219
|
+
cprofile_obj.description = self._desc
|
|
220
220
|
|
|
221
221
|
return cprofile_obj
|
|
222
222
|
|
|
@@ -242,10 +242,10 @@ class CustomerProfile(AuthorizenetProfileBase):
|
|
|
242
242
|
|
|
243
243
|
if self.id:
|
|
244
244
|
request.customerProfileId = self.id
|
|
245
|
-
if self.
|
|
246
|
-
request.merchantCustomerId = self.
|
|
247
|
-
if self.
|
|
248
|
-
request.email = self.
|
|
245
|
+
if self._merchant_id:
|
|
246
|
+
request.merchantCustomerId = self._merchant_id
|
|
247
|
+
if self._email:
|
|
248
|
+
request.email = self._email
|
|
249
249
|
|
|
250
250
|
controller = apicontrollers.getCustomerProfileController(request)
|
|
251
251
|
return self.execute_controller(controller)
|
|
File without changes
|
{python_terminusgps-36.3.0.dist-info → python_terminusgps-36.3.1.dist-info}/licenses/COPYING
RENAMED
|
File without changes
|