python-terminusgps 1.9.3__py3-none-any.whl → 1.9.5__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: 1.9.3
3
+ Version: 1.9.5
4
4
  Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
5
5
  Project-URL: Documentation, https://app.terminusgps.com/docs/apps/python-terminusgps/index.html
6
6
  Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
@@ -5,7 +5,7 @@ terminusgps/authorizenet/auth.py,sha256=yznomWGTRbFiTDiugsRw1HqxJAV4aJKZFN3Bzdt_
5
5
  terminusgps/authorizenet/profiles/addresses.py,sha256=ir3GPdsSQtezQnM6IgavHj6Ii8uhOWGswIp_8KiN5OE,3377
6
6
  terminusgps/authorizenet/profiles/base.py,sha256=LIPDK78HqzYanoZF_gtbmLBEB_YF_MM7CNWvharPrMk,1974
7
7
  terminusgps/authorizenet/profiles/customers.py,sha256=vAD-bxUcNvAoIEQDdnu3QESiHPAjEV1g1i5l0tY5lVk,4536
8
- terminusgps/authorizenet/profiles/payments.py,sha256=AaM85xA0KLgkJERpgXvTe4o3ygikkgTidB2Q0HKzC4E,5449
8
+ terminusgps/authorizenet/profiles/payments.py,sha256=En45JWqozaHn_1UHIf4G6V3nJvSHFaPit7ByV37kObo,5451
9
9
  terminusgps/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  terminusgps/aws/secrets.py,sha256=kgRA77rs0mD4berWRLkPtJLOe4Grf--o5f8NzwQqXCk,360
11
11
  terminusgps/wialon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -22,7 +22,7 @@ terminusgps/wialon/items/route.py,sha256=qOHPN_rejwiGqvwWzlwmUIAIyc3lKavCalf8ki6
22
22
  terminusgps/wialon/items/unit.py,sha256=wzcLa0adMTKX6rtO4Vz6ntaxgY50rLk2KK_VBXlW_lQ,4680
23
23
  terminusgps/wialon/items/unit_group.py,sha256=1yc7ldPIgGbtiTj0djRDWmt6Q9K_VT9sxOaioasbbLY,5212
24
24
  terminusgps/wialon/items/user.py,sha256=bkcMw_YiocaMuhP_pBfB7apjAZwnsOzGScnGkn8Ybbw,6107
25
- python_terminusgps-1.9.3.dist-info/METADATA,sha256=3HltAE0xwU_Io8dLDoHS2o8vaaOzL7ROx8TGCyFA72I,882
26
- python_terminusgps-1.9.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
27
- python_terminusgps-1.9.3.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
28
- python_terminusgps-1.9.3.dist-info/RECORD,,
25
+ python_terminusgps-1.9.5.dist-info/METADATA,sha256=Bcxr4BtJFA4R5rFR0289gCbAQFmM4V6SmkCXJCK19wo,882
26
+ python_terminusgps-1.9.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
27
+ python_terminusgps-1.9.5.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
28
+ python_terminusgps-1.9.5.dist-info/RECORD,,
@@ -3,8 +3,8 @@ from authorizenet.apicontractsv1 import (
3
3
  customerAddressType,
4
4
  deleteCustomerPaymentProfileRequest,
5
5
  getCustomerPaymentProfileRequest,
6
- paymentProfile,
7
6
  paymentType,
7
+ customerPaymentProfileType,
8
8
  validateCustomerPaymentProfileRequest,
9
9
  updateCustomerPaymentProfileRequest,
10
10
  )
@@ -52,13 +52,13 @@ class PaymentProfile(AuthorizenetCustomerProfileBase):
52
52
  ) -> int:
53
53
  """Executes a :py:obj:`~authorizenet.apicontractsv1.createCustomerPaymentProfileRequest` using the Authorize.NET API."""
54
54
  request = createCustomerPaymentProfileRequest(
55
- merchantAuthentication=self.merchantAuthentication,
56
55
  customerProfileId=self.customerProfileId,
57
- paymentProfile=paymentProfile(
58
- billTo=billing_addr, payment=payment, default=self.default
56
+ defaultPaymentProfile=self.default,
57
+ merchantAuthentication=self.merchantAuthentication,
58
+ paymentProfile=customerPaymentProfileType(
59
+ billTo=billing_addr, payment=payment
59
60
  ),
60
61
  validationMode=self.validationMode,
61
- defaultPaymentProfile=self.default,
62
62
  )
63
63
  controller = createCustomerPaymentProfileController(request)
64
64
  response = self.execute_controller(controller)