python-terminusgps 41.1.0__py3-none-any.whl → 41.2.0__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-terminusgps
3
- Version: 41.1.0
3
+ Version: 41.2.0
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
@@ -22,7 +22,7 @@ terminusgps/django/forms/renderer.py,sha256=QSLQ94Ff7ZaV1jD6wAL-ltvdKIblED8Wsv5E
22
22
  terminusgps/django/forms/widgets.py,sha256=No4hPQ-BK5rrotaQ5iJEjWo8quYIPNf_1C2y4OAIxro,2037
23
23
  terminusgps/wialon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  terminusgps/wialon/constants.py,sha256=p2BhopeE6lXzjzdzb4ZKOz0rhJQIMUbXLrBy1Yzf57s,13730
25
- terminusgps/wialon/factory.py,sha256=QscZvWbGi6e2wRZA9KzwLSHNJ5SNhR-L-x3d0nn2reI,1964
25
+ terminusgps/wialon/factory.py,sha256=owo2vak98XvMDhKevDE20pld2-IXZk2VtTkaHmth-6k,2013
26
26
  terminusgps/wialon/flags.py,sha256=M50EdhxQ8IMnJnU0mrHK7-h8Asc6tvNiTOOfd1dBW6A,12815
27
27
  terminusgps/wialon/session.py,sha256=jQbPmQy6z7ghhgflRemybn8_uoCnCJzuTcbovLHFpI4,5795
28
28
  terminusgps/wialon/utils.py,sha256=GH1l9IgO2cAp2_lI3K3R6MDy3BlFUiOQF4YFzqMx8l4,8891
@@ -36,7 +36,7 @@ terminusgps/wialon/items/route.py,sha256=xixlex6bUeFHXucVQdbfQUSLxI1Rhwk6slhoFP2
36
36
  terminusgps/wialon/items/unit.py,sha256=kfiqysdPxiU_8fHomKZEz3Ypbkaoc5HevOzpqr7R7rI,5189
37
37
  terminusgps/wialon/items/unit_group.py,sha256=L7-PAVCj8Bf50fa04Ials4VHg8LOWkw6hwNhtSyMksE,2133
38
38
  terminusgps/wialon/items/user.py,sha256=hZlFeXCgOAdivl_Anjp_We6Cy5U8IxWNDAgm5MFZfp0,5194
39
- python_terminusgps-41.1.0.dist-info/METADATA,sha256=VC70vy2AaXS1KSj9GNIYSCkZYMMZhsqRUEIyyLcrm0w,976
40
- python_terminusgps-41.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
41
- python_terminusgps-41.1.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
42
- python_terminusgps-41.1.0.dist-info/RECORD,,
39
+ python_terminusgps-41.2.0.dist-info/METADATA,sha256=xhBTSSSzCvaeC0HHM-S9Pbg-H95jRJQL1_8gbajdg9c,976
40
+ python_terminusgps-41.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
41
+ python_terminusgps-41.2.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
42
+ python_terminusgps-41.2.0.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  from terminusgps.wialon.items import (
2
+ WialonAccount,
2
3
  WialonResource,
3
4
  WialonRetranslator,
4
5
  WialonRoute,
@@ -10,13 +11,14 @@ from terminusgps.wialon.items.base import WialonObject
10
11
  from terminusgps.wialon.session import WialonSession
11
12
 
12
13
  WIALON_ITEM_MAP = {
14
+ "account": WialonAccount,
13
15
  "avl_hw": None,
14
16
  "avl_resource": WialonResource,
15
17
  "avl_retranslator": WialonRetranslator,
18
+ "avl_route": WialonRoute,
16
19
  "avl_unit": WialonUnit,
17
20
  "avl_unit_group": WialonUnitGroup,
18
21
  "user": WialonUser,
19
- "avl_route": WialonRoute,
20
22
  }
21
23
 
22
24