maleo-foundation 0.2.25__py3-none-any.whl → 0.2.27__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 +2 -2
- maleo_foundation/expanded_types/{query.py → repository.py} +16 -16
- {maleo_foundation-0.2.25.dist-info → maleo_foundation-0.2.27.dist-info}/METADATA +1 -1
- {maleo_foundation-0.2.25.dist-info → maleo_foundation-0.2.27.dist-info}/RECORD +6 -6
- {maleo_foundation-0.2.25.dist-info → maleo_foundation-0.2.27.dist-info}/WHEEL +0 -0
- {maleo_foundation-0.2.25.dist-info → maleo_foundation-0.2.27.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
from .general import BaseGeneralExpandedTypes
|
3
|
-
from .
|
3
|
+
from .repository import ExpandedRepositoryTypes
|
4
4
|
from .service import ExpandedServiceTypes
|
5
5
|
from .client import ExpandedClientTypes
|
6
6
|
|
7
7
|
class BaseExpandedTypes:
|
8
8
|
General = BaseGeneralExpandedTypes
|
9
|
-
|
9
|
+
Repository = ExpandedRepositoryTypes
|
10
10
|
Service = ExpandedServiceTypes
|
11
11
|
Client = ExpandedClientTypes
|
@@ -3,16 +3,16 @@ from maleo_foundation.models.transfers.parameters.general \
|
|
3
3
|
import BaseGeneralParametersTransfers
|
4
4
|
from maleo_foundation.models.transfers.parameters.service \
|
5
5
|
import BaseServiceParametersTransfers
|
6
|
-
from maleo_foundation.models.transfers.results.service.
|
7
|
-
import
|
6
|
+
from maleo_foundation.models.transfers.results.service.repository \
|
7
|
+
import BaseServiceRepositoryResultsTransfers
|
8
8
|
|
9
|
-
class
|
9
|
+
class ExpandedRepositoryTypes:
|
10
10
|
#* Unpaginated multiple data
|
11
11
|
GetUnpaginatedMultipleParameter = BaseServiceParametersTransfers.GetUnpaginatedMultiple
|
12
12
|
GetUnpaginatedMultipleResult = Union[
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
BaseServiceRepositoryResultsTransfers.Fail,
|
14
|
+
BaseServiceRepositoryResultsTransfers.NoData,
|
15
|
+
BaseServiceRepositoryResultsTransfers.UnpaginatedMultipleData
|
16
16
|
]
|
17
17
|
SyncGetUnpaginatedMultipleFunction = Callable[
|
18
18
|
[GetUnpaginatedMultipleParameter],
|
@@ -26,9 +26,9 @@ class ExpandedQueryTypes:
|
|
26
26
|
#* Paginated multiple data
|
27
27
|
GetPaginatedMultipleParameter = BaseServiceParametersTransfers.GetPaginatedMultiple
|
28
28
|
GetPaginatedMultipleResult = Union[
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
BaseServiceRepositoryResultsTransfers.Fail,
|
30
|
+
BaseServiceRepositoryResultsTransfers.NoData,
|
31
|
+
BaseServiceRepositoryResultsTransfers.PaginatedMultipleData
|
32
32
|
]
|
33
33
|
SyncGetPaginatedMultipleFunction = Callable[
|
34
34
|
[GetPaginatedMultipleParameter],
|
@@ -42,9 +42,9 @@ class ExpandedQueryTypes:
|
|
42
42
|
#* Single data
|
43
43
|
GetSingleParameter = BaseGeneralParametersTransfers.GetSingle
|
44
44
|
GetSingleResult = Union[
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
BaseServiceRepositoryResultsTransfers.Fail,
|
46
|
+
BaseServiceRepositoryResultsTransfers.NoData,
|
47
|
+
BaseServiceRepositoryResultsTransfers.SingleData
|
48
48
|
]
|
49
49
|
SyncGetSingleFunction = Callable[
|
50
50
|
[GetSingleParameter],
|
@@ -57,12 +57,12 @@ class ExpandedQueryTypes:
|
|
57
57
|
|
58
58
|
#* Create or Update
|
59
59
|
CreateOrUpdateResult = Union[
|
60
|
-
|
61
|
-
|
60
|
+
BaseServiceRepositoryResultsTransfers.Fail,
|
61
|
+
BaseServiceRepositoryResultsTransfers.SingleData
|
62
62
|
]
|
63
63
|
|
64
64
|
#* Status update
|
65
65
|
StatusUpdateResult = Union[
|
66
|
-
|
67
|
-
|
66
|
+
BaseServiceRepositoryResultsTransfers.Fail,
|
67
|
+
BaseServiceRepositoryResultsTransfers.SingleData
|
68
68
|
]
|
@@ -18,12 +18,12 @@ maleo_foundation/client/services/hash/__init__.py,sha256=A4Olb-RpeNFQEfToU9t8LfZ
|
|
18
18
|
maleo_foundation/client/services/hash/bcrypt.py,sha256=Lc2FGR2oQj5yuq4mHer5NnFjhw-IuPuBp_EijLsOaCk,2231
|
19
19
|
maleo_foundation/client/services/hash/hmac.py,sha256=-L0sTv5tcmfu-UyBD_InpxFJ2w738M76HYmeRg30Yao,2358
|
20
20
|
maleo_foundation/client/services/hash/sha256.py,sha256=af08036kkEZ61IY_ktxwHmQnAACd6hWXYA_ZC9S1-tg,2142
|
21
|
-
maleo_foundation/expanded_types/__init__.py,sha256=
|
21
|
+
maleo_foundation/expanded_types/__init__.py,sha256=Jz2NoY9609QIM84UonmJU-10CMUR9t9fkk9ZFLnU7Js,384
|
22
22
|
maleo_foundation/expanded_types/client.py,sha256=WvT911cDsfWtCCYVaDeQ90ba_eCYnzC-CRSXCHtLIuo,2414
|
23
23
|
maleo_foundation/expanded_types/general.py,sha256=_nSG5jgMgA1ntjBdVjQqkg0h1WNytLsIqkUrsKDmrfU,832
|
24
24
|
maleo_foundation/expanded_types/hash.py,sha256=QOH_HczGY7CRUZJ5gC84RunCAiUzNSt7DYXI7uqtwkM,416
|
25
25
|
maleo_foundation/expanded_types/key.py,sha256=qopQcO6V82RxiCtixe--IBce5MRT4buOun4RSA-LLm0,573
|
26
|
-
maleo_foundation/expanded_types/
|
26
|
+
maleo_foundation/expanded_types/repository.py,sha256=hemtQGDqSQO8N4_y7pktXqBlrcDacs4EiUZ3hFk4n2o,2482
|
27
27
|
maleo_foundation/expanded_types/service.py,sha256=9LxwJHSBTgqOGD2CiV3gsRp1EbLB793jrTNGgCtrbjk,2434
|
28
28
|
maleo_foundation/expanded_types/signature.py,sha256=RgMU7MHADfVwSlGezjBcHXJiPwfnJb5ovuJ93qFRps0,451
|
29
29
|
maleo_foundation/expanded_types/token.py,sha256=xsy2F8Mzba1sPztBHL9J3DWv79QP8P3vqPwXahEG5mA,427
|
@@ -114,7 +114,7 @@ maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg
|
|
114
114
|
maleo_foundation/utils/loaders/credential/google.py,sha256=SKsqPuFnAiCcYLf24CxKnMybhVHpgqnq1gGSlThqjts,994
|
115
115
|
maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
|
116
116
|
maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
|
117
|
-
maleo_foundation-0.2.
|
118
|
-
maleo_foundation-0.2.
|
119
|
-
maleo_foundation-0.2.
|
120
|
-
maleo_foundation-0.2.
|
117
|
+
maleo_foundation-0.2.27.dist-info/METADATA,sha256=dCd2rxF1U22s3I1YrELXJJGWpMfhz9tuZEU729v4_a4,3598
|
118
|
+
maleo_foundation-0.2.27.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
119
|
+
maleo_foundation-0.2.27.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
|
120
|
+
maleo_foundation-0.2.27.dist-info/RECORD,,
|
File without changes
|
File without changes
|