xync-schema 0.6.39__tar.gz → 0.6.40__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xync-schema
3
- Version: 0.6.39
3
+ Version: 0.6.40
4
4
  Summary: XyncNet project database model schema
5
5
  Author-email: Mike Artemiev <mixartemev@gmail.com>
6
6
  License: EULA
@@ -131,7 +131,7 @@ exs = {
131
131
  ExType.main,
132
132
  "https://assets.coingecko.com/markets/images/52/large/binance.jpg",
133
133
  "binance.com",
134
- "binance.com",
134
+ "p2p.binance.com",
135
135
  "accounts.binance.com/login",
136
136
  ),
137
137
  "BingX": (
@@ -289,7 +289,8 @@ class Pmex(BaseModel): # existence pm in ex with no cur tie
289
289
  pm_id: int
290
290
  ex: fields.ForeignKeyRelation[Ex] = fields.ForeignKeyField("models.Ex", "pmexs")
291
291
  ex_id: int
292
- exid: str = fields.CharField(31)
292
+ exid: str = fields.IntField()
293
+ name: str = fields.CharField(63)
293
294
 
294
295
  class Meta:
295
296
  unique_together = (("ex_id", "exid"),)
@@ -479,6 +480,9 @@ class TestEx(Model):
479
480
  table_description = "Test Exs"
480
481
  unique_together = (("action", "ex"),)
481
482
 
483
+ class PydanticMeta(Model.PydanticMeta):
484
+ max_recursion: int = 2
485
+
482
486
 
483
487
  # class Vpn(Model):
484
488
  # user: fields.OneToOneRelation[User] = fields.OneToOneField("models.User", related_name="vpn")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xync-schema
3
- Version: 0.6.39
3
+ Version: 0.6.40
4
4
  Summary: XyncNet project database model schema
5
5
  Author-email: Mike Artemiev <mixartemev@gmail.com>
6
6
  License: EULA
File without changes
File without changes
File without changes
File without changes
File without changes