xn-model 0.11.2__py3-none-any.whl → 0.11.3__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.
x_model/__init__.py CHANGED
@@ -21,11 +21,12 @@ async def init_db(dsn: str, models: ModuleType, create_tables: bool = False) ->
21
21
 
22
22
 
23
23
  class FailReason(IntEnum):
24
- path = 8
24
+ body = 8
25
25
  query = 9
26
- body = 10
27
- method = 11
26
+ path = 10
27
+ host = 11
28
28
  protocol = 12
29
+ method = 13
29
30
 
30
31
 
31
32
  class HTTPException(BaseHTTPException):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xn-model
3
- Version: 0.11.2
3
+ Version: 0.11.3
4
4
  Summary: Base model for xn-api
5
5
  Author-email: Mike Artemiev <mixartemev@gmail.com>
6
6
  License: MIT
@@ -10,12 +10,11 @@ Keywords: tortoise,model,crud,generator,api,admin
10
10
  Requires-Python: >=3.12
11
11
  Description-Content-Type: text/markdown
12
12
  Requires-Dist: tortoise-orm[accel,asyncpg]
13
- Requires-Dist: python-dotenv
14
13
  Provides-Extra: dev
15
14
  Requires-Dist: pytest ; extra == 'dev'
15
+ Requires-Dist: python-dotenv ; extra == 'dev'
16
16
  Requires-Dist: build ; extra == 'dev'
17
17
  Requires-Dist: twine ; extra == 'dev'
18
- Requires-Dist: setuptools-scm ; extra == 'dev'
19
18
 
20
19
  ## INSTALL
21
20
  ```bash
@@ -0,0 +1,9 @@
1
+ x_model/__init__.py,sha256=leq1K2Lq0zlTY2s5sdhDiGEyfNZPySCOJi0xB5xUSG0,1231
2
+ x_model/field.py,sha256=S461M94ryQG7yu8lreXtWnZo3YdCP97xhbcCJ3BzXsY,2751
3
+ x_model/func.py,sha256=E7jDoHJGaFpKvxbHnT_lyBxUZeMo-GRd5gv9dLw7B9s,289
4
+ x_model/models.py,sha256=VL6JE-oGU0xzolhEGD8Lp7xDV7LVNGS0klMsUOXPJi0,7029
5
+ x_model/pydantic.py,sha256=OjNCp4ZFGvUIxZSbDCmXISl9mOjI_UnWi5JMVntSqjM,590
6
+ xn_model-0.11.3.dist-info/METADATA,sha256=opjpi9JEK4UFyEqN8Eeak1AKBEkCenCNsMgEIBVW8D8,972
7
+ xn_model-0.11.3.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
8
+ xn_model-0.11.3.dist-info/top_level.txt,sha256=QCYyfv5AA_8jPPtCpShkBXzQRUCGuuW7Ro0mqysDE8E,8
9
+ xn_model-0.11.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.2.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,9 +0,0 @@
1
- x_model/__init__.py,sha256=o2sQtkN15QxBtAIfmR0Pxf8UrdkKVRXL6nDecjgwEyU,1217
2
- x_model/field.py,sha256=S461M94ryQG7yu8lreXtWnZo3YdCP97xhbcCJ3BzXsY,2751
3
- x_model/func.py,sha256=E7jDoHJGaFpKvxbHnT_lyBxUZeMo-GRd5gv9dLw7B9s,289
4
- x_model/model.py,sha256=VL6JE-oGU0xzolhEGD8Lp7xDV7LVNGS0klMsUOXPJi0,7029
5
- x_model/pydantic.py,sha256=OjNCp4ZFGvUIxZSbDCmXISl9mOjI_UnWi5JMVntSqjM,590
6
- xn_model-0.11.2.dist-info/METADATA,sha256=cePVGXEv8i744IcjtkecY1y4f05RnN5-dbzus8lkopo,1002
7
- xn_model-0.11.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
8
- xn_model-0.11.2.dist-info/top_level.txt,sha256=QCYyfv5AA_8jPPtCpShkBXzQRUCGuuW7Ro0mqysDE8E,8
9
- xn_model-0.11.2.dist-info/RECORD,,
File without changes