maleo-foundation 0.0.66__py3-none-any.whl → 0.0.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.
- maleo_foundation/expanded_types/__init__.py +3 -1
- maleo_foundation/expanded_types/general.py +6 -0
- maleo_foundation/extended_types.py +2 -6
- {maleo_foundation-0.0.66.dist-info → maleo_foundation-0.0.67.dist-info}/METADATA +1 -1
- {maleo_foundation-0.0.66.dist-info → maleo_foundation-0.0.67.dist-info}/RECORD +7 -6
- {maleo_foundation-0.0.66.dist-info → maleo_foundation-0.0.67.dist-info}/WHEEL +0 -0
- {maleo_foundation-0.0.66.dist-info → maleo_foundation-0.0.67.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
from .general import BaseGeneralExpandedTypes
|
|
2
3
|
from .query import ExpandedQueryTypes
|
|
3
4
|
from .service import ExpandedServiceTypes
|
|
4
5
|
from .client import ExpandedClientTypes
|
|
5
6
|
|
|
6
|
-
class
|
|
7
|
+
class BaseExpandedTypes:
|
|
8
|
+
General = BaseGeneralExpandedTypes
|
|
7
9
|
Query = ExpandedQueryTypes
|
|
8
10
|
Service = ExpandedServiceTypes
|
|
9
11
|
Client = ExpandedClientTypes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
from typing import Callable
|
|
2
|
+
from maleo_foundation.models.transfers.parameters.general import BaseGeneralParametersTransfers
|
|
3
|
+
|
|
4
|
+
class BaseGeneralExpandedTypes:
|
|
5
|
+
#* Expansion processor related types
|
|
6
|
+
FieldExpansionProcessor = Callable[[BaseGeneralParametersTransfers.FieldExpansionProcessor], None]
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import List
|
|
2
2
|
from maleo_foundation.models.schemas.general import BaseGeneralSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.general import BaseGeneralParametersTransfers
|
|
4
3
|
|
|
5
4
|
class ExtendedTypes:
|
|
6
5
|
#* DateFilter-related types
|
|
7
6
|
ListOfDateFilters = List[BaseGeneralSchemas.DateFilter]
|
|
8
7
|
|
|
9
8
|
#* SortColumn-related types
|
|
10
|
-
ListOfSortColumns = List[BaseGeneralSchemas.SortColumn]
|
|
11
|
-
|
|
12
|
-
#* Expansion processor related types
|
|
13
|
-
FieldExpansionProcessor = Callable[[BaseGeneralParametersTransfers.FieldExpansionProcessor], None]
|
|
9
|
+
ListOfSortColumns = List[BaseGeneralSchemas.SortColumn]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
maleo_foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
maleo_foundation/constants.py,sha256=aBmEfWlBqZxi0k-n6h2NM1YRLOjMnheEiLyQcjP-zCQ,1164
|
|
3
3
|
maleo_foundation/enums.py,sha256=uXA5fLFeDXwlspUjU4DXSB68dfanxEwIJhsAMZXhsYo,2359
|
|
4
|
-
maleo_foundation/extended_types.py,sha256=
|
|
4
|
+
maleo_foundation/extended_types.py,sha256=pIKt-_9tby4rmune3fmWcCW_mohaNRh_1lywBmdc-L4,301
|
|
5
5
|
maleo_foundation/types.py,sha256=1VhIaxr9Ef_bl4mkEnBfA-K8Jxm-KEQqXl-VYwRDNns,1710
|
|
6
6
|
maleo_foundation/clients/__init__.py,sha256=W8vydJYeDEi6gdmOZSBFSSDsfZJtb8C05CHErZgsZ30,188
|
|
7
7
|
maleo_foundation/clients/general/__init__.py,sha256=l9eQrBeLW4aXtGU5aK3i6fD-msVR4526W7D9V8WCXIg,91
|
|
@@ -18,8 +18,9 @@ maleo_foundation/db/engine.py,sha256=kw2SMMiWy5KARquh4TLk7v6HwlHW97lUIUvqdFbhNxk
|
|
|
18
18
|
maleo_foundation/db/manager.py,sha256=czs-6czNvKHZ7zWRX1nPpKJcdsadyX8R2DnZlA_6mlk,500
|
|
19
19
|
maleo_foundation/db/session.py,sha256=tI13DJ6rLo8FOpSIFZrmD4dbuxY_c0RTjwEGb76ZOo0,2681
|
|
20
20
|
maleo_foundation/db/table.py,sha256=Dk5GXeO0gbBBPN2PJtZhlUx2x3vMbT4dxTBc3YLBbuc,1199
|
|
21
|
-
maleo_foundation/expanded_types/__init__.py,sha256=
|
|
21
|
+
maleo_foundation/expanded_types/__init__.py,sha256=lm_r7rxlLA0sgSTGQBMR9ZbZbVDpD7Te-UYb3oRVi1g,364
|
|
22
22
|
maleo_foundation/expanded_types/client.py,sha256=To0kRXp3QTmuSu5rWKaCiTsMK9qkYiyYKYbHfw-y1fY,2396
|
|
23
|
+
maleo_foundation/expanded_types/general.py,sha256=DPFFrQQzTZEZkvZ8iLTT74944kmcwaV8XLbpmPT9zyI,300
|
|
23
24
|
maleo_foundation/expanded_types/query.py,sha256=0yUG-JIVsanzB7KAkrRz_OsrhP6J0bRqD9Q3l3atQnk,2384
|
|
24
25
|
maleo_foundation/expanded_types/service.py,sha256=q8jpKdbCbLWwH1UPQavKpVE14rC5rveduk2cFWzuhGw,2416
|
|
25
26
|
maleo_foundation/middlewares/__init__.py,sha256=bqE2EIFC3rWcR2AwFPR0fk2kSFfeTRzgA24GbnuT5RA,3697
|
|
@@ -53,7 +54,7 @@ maleo_foundation/utils/logger.py,sha256=978P57JOhGR-WIu7xdPXBIwd3JrfLLA8WerVzxhE
|
|
|
53
54
|
maleo_foundation/utils/query.py,sha256=ODQ3adOYQNj5E2cRW9ytbjBz56nEDcnfq8mQ6YZbCCM,4375
|
|
54
55
|
maleo_foundation/utils/formatter/__init__.py,sha256=iKf5YCbEdg1qKnFHyKqqcQbqAqEeRUf8mhI3v3dQoj8,78
|
|
55
56
|
maleo_foundation/utils/formatter/case.py,sha256=TmvvlfzGdC_omMTB5vAa40TZBxQ3hnr-SYeo0M52Rlg,1352
|
|
56
|
-
maleo_foundation-0.0.
|
|
57
|
-
maleo_foundation-0.0.
|
|
58
|
-
maleo_foundation-0.0.
|
|
59
|
-
maleo_foundation-0.0.
|
|
57
|
+
maleo_foundation-0.0.67.dist-info/METADATA,sha256=px6aoKIydoi2_fbbiXVTUSIfTlm3ldMpze_l-h7l4fU,3160
|
|
58
|
+
maleo_foundation-0.0.67.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
59
|
+
maleo_foundation-0.0.67.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
|
|
60
|
+
maleo_foundation-0.0.67.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|