xync-schema 0.6.73.dev10__py3-none-any.whl → 0.6.73.dev12__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.
- xync_schema/enums.py +3 -0
- xync_schema/models.py +1 -1
- {xync_schema-0.6.73.dev10.dist-info → xync_schema-0.6.73.dev12.dist-info}/METADATA +1 -1
- xync_schema-0.6.73.dev12.dist-info/RECORD +8 -0
- {xync_schema-0.6.73.dev10.dist-info → xync_schema-0.6.73.dev12.dist-info}/WHEEL +1 -1
- xync_schema-0.6.73.dev10.dist-info/RECORD +0 -8
- {xync_schema-0.6.73.dev10.dist-info → xync_schema-0.6.73.dev12.dist-info}/top_level.txt +0 -0
xync_schema/enums.py
CHANGED
|
@@ -126,6 +126,9 @@ class ExAction(IntEnum):
|
|
|
126
126
|
coins = 22 # Список торгуемых монет (с ограничениям по валютам, если есть)
|
|
127
127
|
pairs = 23 # Список пар валюта/монет
|
|
128
128
|
ads = 24 # Список объяв по покупке/продаже, валюте, монете, платежному методу (buy/sell, cur, coin, pm)
|
|
129
|
+
set_coins = 44 # обновление монет биржи в бд
|
|
130
|
+
set_pmcurs = 45 # обновление валют и платежек биржи в бд
|
|
131
|
+
set_pairs = 46 # обновление пар биржи в бд
|
|
129
132
|
ad = 42 # Чужая объява по id
|
|
130
133
|
""" Agent: Fiat """
|
|
131
134
|
my_fiats = 25 # Список реквизитов моих платежных методов
|
xync_schema/models.py
CHANGED
|
@@ -351,7 +351,7 @@ class Ad(Model, TsTrait):
|
|
|
351
351
|
class Pm(Model):
|
|
352
352
|
# name: str = fields.CharField(63) # mv to pmex cause it diffs on each ex
|
|
353
353
|
norm: str | None = fields.CharField(63)
|
|
354
|
-
acronym: str | None = fields.CharField(7,
|
|
354
|
+
acronym: str | None = fields.CharField(7, null=True)
|
|
355
355
|
country: fields.ForeignKeyRelation[Country] = fields.ForeignKeyField("models.Country", "pms", null=True)
|
|
356
356
|
alias: str | None = fields.CharField(63, null=True)
|
|
357
357
|
extra: str | None = fields.CharField(63, null=True)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
xync_schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
xync_schema/enums.py,sha256=oFio3N8hgKe1Fhw_-vm-kJE61hi4kRMX1fmWHlYuwqw,12696
|
|
3
|
+
xync_schema/models.py,sha256=Q_PNe8OQ4q52ttB9QALZw_V1j3BNr-JPcpV3M5hmvmk,27004
|
|
4
|
+
xync_schema/types.py,sha256=e55yfU8Z5iXgUFa50ZqNhIgM9mxmPsWK0vshB_mZoU0,2673
|
|
5
|
+
xync_schema-0.6.73.dev12.dist-info/METADATA,sha256=DsXpV14fakzp2AAkrlxoYB_42XwOdKRo_YKDjfLoG1c,3991
|
|
6
|
+
xync_schema-0.6.73.dev12.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
|
7
|
+
xync_schema-0.6.73.dev12.dist-info/top_level.txt,sha256=jN8IBDfVY8b85Byyk8v0Gyj_0yLB8FO56WV4EvcXWY4,12
|
|
8
|
+
xync_schema-0.6.73.dev12.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
xync_schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
xync_schema/enums.py,sha256=wK74m_xD27XbbXx4adIidyxswE3fqnH7YkaVwtCxSjA,12460
|
|
3
|
-
xync_schema/models.py,sha256=tsxSCaHHHfNIVazrN5RmzeVhx192ZHuN_y4d76bcBm8,27017
|
|
4
|
-
xync_schema/types.py,sha256=e55yfU8Z5iXgUFa50ZqNhIgM9mxmPsWK0vshB_mZoU0,2673
|
|
5
|
-
xync_schema-0.6.73.dev10.dist-info/METADATA,sha256=c1OkKL0fZv9SPrrIyMyuhCQcUiOWD9NcRv6kghJk8gA,3991
|
|
6
|
-
xync_schema-0.6.73.dev10.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
7
|
-
xync_schema-0.6.73.dev10.dist-info/top_level.txt,sha256=jN8IBDfVY8b85Byyk8v0Gyj_0yLB8FO56WV4EvcXWY4,12
|
|
8
|
-
xync_schema-0.6.73.dev10.dist-info/RECORD,,
|
|
File without changes
|