xync-schema 0.0.9.dev6__tar.gz → 0.0.9.dev7__tar.gz
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-0.0.9.dev6/xync_schema.egg-info → xync_schema-0.0.9.dev7}/PKG-INFO +1 -1
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema/enums.py +16 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema/models.py +8 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7/xync_schema.egg-info}/PKG-INFO +1 -1
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/.env.sample +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/.gitignore +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/.pre-commit-config.yaml +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/README.md +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/makefile +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/pyproject.toml +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/setup.cfg +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/tests/__init__.py +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/tests/test_db.py +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema/__init__.py +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema/xtype.py +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema.egg-info/SOURCES.txt +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema.egg-info/dependency_links.txt +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema.egg-info/requires.txt +0 -0
- {xync_schema-0.0.9.dev6 → xync_schema-0.0.9.dev7}/xync_schema.egg-info/top_level.txt +0 -0
|
@@ -95,6 +95,22 @@ class FileType(IntEnum):
|
|
|
95
95
|
jpeg = 10
|
|
96
96
|
|
|
97
97
|
|
|
98
|
+
class SynonymType(IntEnum):
|
|
99
|
+
name = 1
|
|
100
|
+
ppo = 2
|
|
101
|
+
from_party = 3
|
|
102
|
+
to_party = 4
|
|
103
|
+
slip_req = 5
|
|
104
|
+
slip_send = 6
|
|
105
|
+
abuser = 7
|
|
106
|
+
scale = 8
|
|
107
|
+
mtl_like = 9
|
|
108
|
+
bank_only = 10
|
|
109
|
+
no_bank = 11
|
|
110
|
+
cred_in_chat = 12
|
|
111
|
+
slavic = 13
|
|
112
|
+
|
|
113
|
+
|
|
98
114
|
class Party(IntEnum):
|
|
99
115
|
fst = 1
|
|
100
116
|
lk = 2 # lk-photo/1-family/comment
|
|
@@ -57,6 +57,7 @@ from xync_schema.enums import (
|
|
|
57
57
|
DepType,
|
|
58
58
|
Party,
|
|
59
59
|
Slip,
|
|
60
|
+
SynonymType,
|
|
60
61
|
)
|
|
61
62
|
|
|
62
63
|
|
|
@@ -77,6 +78,7 @@ class Cur(Model):
|
|
|
77
78
|
exs: ManyToManyRelation["Ex"] = ManyToManyField("models.Ex", through="curex")
|
|
78
79
|
pairs: BackwardFKRelation["Pair"]
|
|
79
80
|
countries: BackwardFKRelation[Country]
|
|
81
|
+
synonyms: ManyToManyRelation["Synonym"]
|
|
80
82
|
|
|
81
83
|
_name = {"ticker"}
|
|
82
84
|
|
|
@@ -378,6 +380,12 @@ class CondParsed(Model, TsTrait):
|
|
|
378
380
|
scale: int = SmallIntField(null=True)
|
|
379
381
|
|
|
380
382
|
|
|
383
|
+
class Synonym(BaseModel):
|
|
384
|
+
typ: SynonymType = IntEnumField(SynonymType, db_index=True)
|
|
385
|
+
txt: str = CharField(255, unique=True)
|
|
386
|
+
curs: ManyToManyRelation[Cur] = ManyToManyField("models.Cur", "synonym_cur", related_name="synonyms")
|
|
387
|
+
|
|
388
|
+
|
|
381
389
|
class CondSim(BaseModel):
|
|
382
390
|
cond: OneToOneRelation[Cond] = OneToOneField("models.Cond", "sim", primary_key=True)
|
|
383
391
|
cond_id: int # new
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|