xync-schema 0.6.58__tar.gz → 0.6.59__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.6.58/xync_schema.egg-info → xync_schema-0.6.59}/PKG-INFO +1 -1
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema/models.py +2 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema/pydantic.py +1 -1
- {xync_schema-0.6.58 → xync_schema-0.6.59/xync_schema.egg-info}/PKG-INFO +1 -1
- {xync_schema-0.6.58 → xync_schema-0.6.59}/.env.sample +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/.gitignore +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/.pre-commit-config.yaml +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/README.md +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/makefile +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/pyproject.toml +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/setup.cfg +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/tests/__init__.py +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/tests/test_db.py +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema/__init__.py +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema/enums.py +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema.egg-info/SOURCES.txt +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema.egg-info/dependency_links.txt +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema.egg-info/requires.txt +0 -0
- {xync_schema-0.6.58 → xync_schema-0.6.59}/xync_schema.egg-info/top_level.txt +0 -0
|
@@ -409,6 +409,8 @@ class Order(Model):
|
|
|
409
409
|
fiat_id: int | None
|
|
410
410
|
taker: fields.ForeignKeyRelation[Agent] = fields.ForeignKeyField("models.Agent", "orders")
|
|
411
411
|
taker_id: int
|
|
412
|
+
maker_topic: int = fields.IntField()
|
|
413
|
+
taker_topic: int = fields.IntField()
|
|
412
414
|
status: OrderStatus = fields.IntEnumField(OrderStatus)
|
|
413
415
|
created_at: datetime | None = DatetimeSecField(auto_now_add=True)
|
|
414
416
|
payed_at: datetime | None = DatetimeSecField(null=True)
|
|
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
|