internal 0.1.66__py3-none-any.whl → 0.1.67__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.

Potentially problematic release.


This version of internal might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: internal
3
- Version: 0.1.66
3
+ Version: 0.1.67
4
4
  Summary:
5
5
  Author: Ray
6
6
  Author-email: ray@cruisys.com
@@ -18,9 +18,7 @@ internal/interface/base_interface.py,sha256=R5MmO5oa5-ORPV_adkegLVCwsVio2zFOuQFG
18
18
  internal/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  internal/model/base_model.py,sha256=gNbixWuGiK8Tbe78wHuLneZ8p3fwMwQRKurBDrGoh6s,1874
20
20
  internal/model/operate.py,sha256=Yuq7oyM2xmBy_X9021SgrpnpYQW6D_bgydI9PRFuQVQ,1619
21
- internal/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- internal/schema/base_schema.py,sha256=PwMFPG1uNeO01wNxmamj9RlAfbPIYiQo3pduPywOg8w,435
23
21
  internal/utils.py,sha256=0SubS0iUhDvjSX1F4TykasA5-enYJzt2VH-f7_0BnjI,1509
24
- internal-0.1.66.dist-info/METADATA,sha256=dX_NsChgtsCptuzTE0guY7kKK0o_pDAa0ae3k07fIB0,625
25
- internal-0.1.66.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
26
- internal-0.1.66.dist-info/RECORD,,
22
+ internal-0.1.67.dist-info/METADATA,sha256=ApZdDxptzpXCWzIBVy8P9GlpjHuc6hlGI7JzKZmUet0,625
23
+ internal-0.1.67.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
24
+ internal-0.1.67.dist-info/RECORD,,
File without changes
@@ -1,20 +0,0 @@
1
- from typing import Optional, List, Union
2
-
3
- from pydantic import BaseModel
4
-
5
-
6
- class InternalBaseSchema(BaseModel):
7
- pass
8
-
9
-
10
- class InternalPaginationBaseSchema(BaseModel):
11
- page_no: int
12
- page_size: int
13
- total_num: int
14
- page_data: Optional[List[InternalBaseSchema]] = []
15
-
16
-
17
- class InternalBaseResponse(BaseModel):
18
- code: str
19
- message: str
20
- data: Optional[Union[InternalBaseSchema, InternalPaginationBaseSchema]] = None