xync-schema 0.6.68__tar.gz → 0.6.69__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.2
2
2
  Name: xync-schema
3
- Version: 0.6.68
3
+ Version: 0.6.69
4
4
  Summary: XyncNet project database model schema
5
5
  Author-email: Mike Artemiev <mixartemev@gmail.com>
6
6
  License: EULA
@@ -112,8 +112,9 @@ class ExAction(IntEnum):
112
112
  coins = 22 # Список торгуемых монет (с ограничениям по валютам, если есть)
113
113
  pairs = 23 # Список пар валюта/монет
114
114
  ads = 24 # Список объяв по покупке/продаже, валюте, монете, платежному методу (buy/sell, cur, coin, pm)
115
- cur_mins = 42 # Минимальные объемы валют в объявлении
116
- coin_mins = 43 # Минимальные объемы монет в объявлении
115
+ ad = 42 # Объява по id
116
+ cur_mins = 43 # Минимальные объемы валют в объявлении
117
+ coin_mins = 44 # Минимальные объемы монет в объявлении
117
118
  """ Agent: Fiat """
118
119
  my_fiats = 25 # Список реквизитов моих платежных методов
119
120
  fiat_new = 26 # Создание реквизита моего платежного метода
@@ -81,11 +81,12 @@ class FiatPydIn(BaseModel):
81
81
  # fiat_id: int
82
82
 
83
83
 
84
- class AdPydIn(BaseModel):
85
- # unq
86
- id: int
87
- # df
84
+ class BaseAd(BaseModel):
85
+ id: int | None = None
88
86
  price: float
87
+
88
+
89
+ class AdPydIn(BaseAd):
89
90
  min_fiat: float
90
91
  max_fiat: float | None = None
91
92
  detail: str | None = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: xync-schema
3
- Version: 0.6.68
3
+ Version: 0.6.69
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