python-terminusgps 28.1.1__py3-none-any.whl → 28.1.3__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: 28.1.1
3
+ Version: 28.1.3
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
@@ -9,7 +9,7 @@ terminusgps/authorizenet/profiles/addresses.py,sha256=7yrOrb9kIsiiazgWbeH8v_YUBi
9
9
  terminusgps/authorizenet/profiles/base.py,sha256=TOUHr22QRQBLErdysOkfcpJBusTjrUTqOmWEyNvMacA,2240
10
10
  terminusgps/authorizenet/profiles/customers.py,sha256=-F8IsQEn2CyHpfxyVZjKayHSuVe4ENNUj_ck7SE8LO0,8568
11
11
  terminusgps/authorizenet/profiles/payments.py,sha256=ohhZrs9MB7GkCi7jQvPVvELNKnR9BwzMd607jJmT4n4,11316
12
- terminusgps/authorizenet/profiles/subscriptions.py,sha256=rozRvzCfC2C_kXuFvnzFMtBzSH6yK-NpVCVLNb9VYEg,12432
12
+ terminusgps/authorizenet/profiles/subscriptions.py,sha256=DgfvkmXNK7swYtUW2eR-8wkwcWb2iqdbt3iU32I1YBM,12534
13
13
  terminusgps/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  terminusgps/aws/secrets.py,sha256=MxQEmmBLpMUQ2tYAsHdCYf-7RZ84LiogdKcTsACX5dw,361
15
15
  terminusgps/twilio/__init__.py,sha256=dYo41F2jft_eHDWSUtSpKGSRG1bewq_qClqilUJZkYM,33
@@ -29,7 +29,7 @@ terminusgps/wialon/items/route.py,sha256=8SzlqNmpYVdt-ZAY--B_KHoDIHgN0Zb7KBsBWAz
29
29
  terminusgps/wialon/items/unit.py,sha256=i7sQiRu3N0XxyTHVN2RnmjYy9X48KdnZLSB18ic37w8,9363
30
30
  terminusgps/wialon/items/unit_group.py,sha256=YsYh34l2DjSKcv5SIZkEVi5FSjveGB1gxU2fwdLyvl4,4101
31
31
  terminusgps/wialon/items/user.py,sha256=PFYBie04F16YE2B5364PLxkmlTmQr4sZXpItvRBxsDc,7143
32
- python_terminusgps-28.1.1.dist-info/METADATA,sha256=jgQyCC6vELOiPxqQqv2GhhDvxjxKj0QNXTcO8tVakqQ,946
33
- python_terminusgps-28.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
- python_terminusgps-28.1.1.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
35
- python_terminusgps-28.1.1.dist-info/RECORD,,
32
+ python_terminusgps-28.1.3.dist-info/METADATA,sha256=psu-poF-L9IC6WnMQ7j7SdeuqIMYBjQ1YMPCNoBwxjg,946
33
+ python_terminusgps-28.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
+ python_terminusgps-28.1.3.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
35
+ python_terminusgps-28.1.3.dist-info/RECORD,,
@@ -158,7 +158,9 @@ class SubscriptionProfile(ControllerExecutionMixin):
158
158
  def status(self) -> str | None:
159
159
  """Current status of the subscription."""
160
160
  response: dict | None = self._authorizenet_get_subscription_status()
161
- return str(response.status) if response else None
161
+ return (
162
+ str(response.status) if response and response.status is not None else None
163
+ )
162
164
 
163
165
  @property
164
166
  def transactions(self) -> list | None:
@@ -205,7 +207,7 @@ class SubscriptionProfile(ControllerExecutionMixin):
205
207
 
206
208
  request = apicontractsv1.ARBGetSubscriptionRequest(
207
209
  merchantAuthentication=self.merchantAuthentication,
208
- subscriptionId=self.id,
210
+ subscriptionId=str(self.id),
209
211
  includeTransactions=str(include_transactions).lower(),
210
212
  )
211
213
  controller = apicontrollers.ARBGetSubscriptionController(request)
@@ -226,7 +228,8 @@ class SubscriptionProfile(ControllerExecutionMixin):
226
228
  assert self.id, "'id' was not set."
227
229
 
228
230
  request = apicontractsv1.ARBGetSubscriptionStatusRequest(
229
- merchantAuthentication=self.merchantAuthentication, subscriptionId=self.id
231
+ merchantAuthentication=self.merchantAuthentication,
232
+ subscriptionId=str(self.id),
230
233
  )
231
234
  controller = apicontrollers.ARBGetSubscriptionStatusController(request)
232
235
  return self.execute_controller(controller)
@@ -249,7 +252,7 @@ class SubscriptionProfile(ControllerExecutionMixin):
249
252
 
250
253
  request = apicontractsv1.ARBUpdateSubscriptionRequest(
251
254
  merchantAuthentication=self.merchantAuthentication,
252
- subscriptionId=self.id,
255
+ subscriptionId=str(self.id),
253
256
  subscription=subscription,
254
257
  )
255
258
  controller = apicontrollers.ARBUpdateSubscriptionController(request)
@@ -270,7 +273,8 @@ class SubscriptionProfile(ControllerExecutionMixin):
270
273
  assert self.id, "'id' was not set."
271
274
 
272
275
  request = apicontractsv1.ARBCancelSubscriptionRequest(
273
- merchantAuthentication=self.merchantAuthentication, subscriptionId=self.id
276
+ merchantAuthentication=self.merchantAuthentication,
277
+ subscriptionId=str(self.id),
274
278
  )
275
279
  controller = apicontrollers.ARBCancelSubscriptionController(request)
276
280
  return self.execute_controller(controller)