python-terminusgps 41.0.0__py3-none-any.whl → 41.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-terminusgps
3
- Version: 41.0.0
3
+ Version: 41.0.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
@@ -29,13 +29,13 @@ terminusgps/wialon/validators.py,sha256=o5__H9HHnGYth8QAKErJG5rEub7FnT8ue0S3IQ8b
29
29
  terminusgps/wialon/items/__init__.py,sha256=d-KG8d9r2qLBkTueZQmBcab8OMZgZNEJAkhRsSqG7SM,246
30
30
  terminusgps/wialon/items/account.py,sha256=OSTTbw-nBFqzL1AnGYQ7-Gaymr-S5wx1a0uDzOFlxCM,7888
31
31
  terminusgps/wialon/items/base.py,sha256=Q8r6JYDQ8Jqccv1TcdSsGw7i7tIgEmoiqn8F3-yczfI,8629
32
- terminusgps/wialon/items/resource.py,sha256=YSxcy5JTcC30qlAibjOBrX_mpg72kn-KIRlC62eTMBA,4517
32
+ terminusgps/wialon/items/resource.py,sha256=eW33Jt5gnkeUKXUhf3TIfufgD2IfVc9qmJy8-pF4apA,4516
33
33
  terminusgps/wialon/items/retranslator.py,sha256=nJvYsvRCyb8hIx2qmUUcXfYeNiBUMW018xnOfv2w-Fg,1753
34
34
  terminusgps/wialon/items/route.py,sha256=xixlex6bUeFHXucVQdbfQUSLxI1Rhwk6slhoFP2odp0,1307
35
35
  terminusgps/wialon/items/unit.py,sha256=kfiqysdPxiU_8fHomKZEz3Ypbkaoc5HevOzpqr7R7rI,5189
36
- terminusgps/wialon/items/unit_group.py,sha256=j1s2F72_jBevKNYNQmDm5Vi1o5R1RzJbYDDXg1vUF2Q,2134
36
+ terminusgps/wialon/items/unit_group.py,sha256=L7-PAVCj8Bf50fa04Ials4VHg8LOWkw6hwNhtSyMksE,2133
37
37
  terminusgps/wialon/items/user.py,sha256=hZlFeXCgOAdivl_Anjp_We6Cy5U8IxWNDAgm5MFZfp0,5194
38
- python_terminusgps-41.0.0.dist-info/METADATA,sha256=dwd7pXLHXiJOnnjpQXSxdfXpavoPdQdNBHUqd7rbpe8,976
39
- python_terminusgps-41.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
- python_terminusgps-41.0.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
41
- python_terminusgps-41.0.0.dist-info/RECORD,,
38
+ python_terminusgps-41.0.1.dist-info/METADATA,sha256=PAD08KI7bPW2nNpxQL59gR3Gd6iVmwgR7Ev6lzd9H6M,976
39
+ python_terminusgps-41.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
+ python_terminusgps-41.0.1.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
41
+ python_terminusgps-41.0.1.dist-info/RECORD,,
@@ -30,7 +30,7 @@ class WialonResource(WialonObject):
30
30
  raise ValueError(f"'creator_id' must be a digit, got '{creator_id}'.")
31
31
  response = self.session.wialon_api.core_create_resource(
32
32
  **{
33
- "creator_id": int(creator_id),
33
+ "creatorId": int(creator_id),
34
34
  "name": name,
35
35
  "dataFlags": flags.DataFlag.RESOURCE_BASE,
36
36
  "skipCreatorCheck": int(skip_creator_check),
@@ -25,7 +25,7 @@ class WialonUnitGroup(WialonObject):
25
25
  raise ValueError(f"'creator_id' must be a digit, got '{creator_id}'.")
26
26
  response = self.session.wialon_api.core_create_unit_group(
27
27
  **{
28
- "creator_id": int(creator_id),
28
+ "creatorId": int(creator_id),
29
29
  "name": name,
30
30
  "dataFlags": flags.DataFlag.UNIT_BASE,
31
31
  }