python-terminusgps 49.2.0__py3-none-any.whl → 49.3.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: 49.2.0
3
+ Version: 49.3.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://terminusgps.github.io/python-terminusgps
6
6
  Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
@@ -3,7 +3,7 @@ terminusgps/default_settings.py,sha256=QizHKYUN9637Hs5eqi70S-Qj4Hvvu2Ds-a1mWcJ9n
3
3
  terminusgps/mixins.py,sha256=6moOXJaFSvJ2Ul7P5jaEiXjVH4sOHGtWw4SVBy8BIg4,1020
4
4
  terminusgps/validators.py,sha256=ZO3ychuBfpGTLsXFU_PFVMkMOyE1fJIsQh2hYsGDjKM,9508
5
5
  terminusgps/authorizenet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- terminusgps/authorizenet/constants.py,sha256=nz3XX2jp9icsJhbSTKi9X-TQDr6jrs35opSWpYuwePc,2757
6
+ terminusgps/authorizenet/constants.py,sha256=AfRP-Ta-bZW3LPagGuSqHlXUdANofgL6WaWwoi14As4,3371
7
7
  terminusgps/authorizenet/service.py,sha256=jjYo1vLgTZSXVNeBY6uKSma94AgEj3Q5xOAT5wUB6ko,4260
8
8
  terminusgps/authorizenet/api/__init__.py,sha256=VXR4Yco1yz5R-R7vgaH2zTP9VFqzfvvGy_XJVjyb3i0,154
9
9
  terminusgps/authorizenet/api/address_profiles.py,sha256=VouUN6dIxlnuE3qEiacFqqDBi_VtwvSbsELqTqFZ0BE,4746
@@ -29,7 +29,7 @@ terminusgps/wialon/items/route.py,sha256=9hmRBEFRJF3lKukv_y3blZxqxv75YgFCcRALrU6
29
29
  terminusgps/wialon/items/unit.py,sha256=B5iuGEghu89SL8KzYLUytYNRa8cogsVtf-bJ_RybPTA,5522
30
30
  terminusgps/wialon/items/unit_group.py,sha256=MIR0x5IlTjcnwx8Y9wXLNTql-wwVVj7NCe7dL2vOw4c,2131
31
31
  terminusgps/wialon/items/user.py,sha256=CRSICiJ-qzybEO_gXuKyzW5oa2RQeIp0SzX9ARcdME4,5151
32
- python_terminusgps-49.2.0.dist-info/METADATA,sha256=bSQ_yumWgA0nf3ou8jpZhmRe-MwgMJ5faCVSGqKVLJE,973
33
- python_terminusgps-49.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
- python_terminusgps-49.2.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
35
- python_terminusgps-49.2.0.dist-info/RECORD,,
32
+ python_terminusgps-49.3.0.dist-info/METADATA,sha256=kHNXYx-CE88YYRDWnfvvW6rYKqxRjZQhKi_6IvNPxZI,973
33
+ python_terminusgps-49.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
+ python_terminusgps-49.3.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
35
+ python_terminusgps-49.3.0.dist-info/RECORD,,
@@ -4,6 +4,24 @@ from django.db import models
4
4
  from django.utils.translation import gettext_lazy as _
5
5
 
6
6
 
7
+ class BankAccountType(models.TextChoices):
8
+ CHECKING = "checking", _("Checking account")
9
+ """Checking account."""
10
+ SAVINGS = "savings", _("Savings account")
11
+ """Savings account."""
12
+ BUSINESS_CHECKING = "businessChecking", _("Business checking account")
13
+ """Business checking account."""
14
+
15
+
16
+ class ECheckType(models.TextChoices):
17
+ PPD = "PPD", _("Prearranged Payment and Deposit Entry")
18
+ """Prearranged Payment and Deposit Entry."""
19
+ TEL = "TEL", _("Telephone-Initiated Entry")
20
+ """Telephone-Initiated Entry."""
21
+ WEB = "WEB", _("Web-Initiated Entry")
22
+ """Web-Initiated Entry."""
23
+
24
+
7
25
  class CreditCardType(models.TextChoices):
8
26
  AMEX = apicontractsv1.cardTypeEnum.AmericanExpress, _("American Express")
9
27
  """American express card."""