maleo-foundation 0.2.4__py3-none-any.whl → 0.2.5__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/models/transfers/results/client/service.py +6 -5
- {maleo_foundation-0.2.4.dist-info → maleo_foundation-0.2.5.dist-info}/METADATA +1 -1
- {maleo_foundation-0.2.4.dist-info → maleo_foundation-0.2.5.dist-info}/RECORD +5 -5
- {maleo_foundation-0.2.4.dist-info → maleo_foundation-0.2.5.dist-info}/WHEEL +0 -0
- {maleo_foundation-0.2.4.dist-info → maleo_foundation-0.2.5.dist-info}/top_level.txt +0 -0
@@ -20,10 +20,11 @@ class BaseClientServiceResultsTransfers:
|
|
20
20
|
def calculate_pagination_component(cls, values: dict) -> dict:
|
21
21
|
"""Extracts pagination components (page, limit, total_data) before validation."""
|
22
22
|
pagination = values.get("pagination")
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
23
|
+
if pagination is None:
|
24
|
+
raise ValueError("Pagination field did not exists")
|
25
|
+
pagination = BaseGeneralSchemas.ExtendedPagination.model_validate(pagination)
|
26
|
+
values["page"] = pagination.page
|
27
|
+
values["limit"] = pagination.limit
|
28
|
+
values["total_data"] = pagination.total_data
|
28
29
|
|
29
30
|
return values
|
@@ -80,7 +80,7 @@ maleo_foundation/models/transfers/results/key.py,sha256=H5U8LBodcpCCJmPRw7zkO6sD
|
|
80
80
|
maleo_foundation/models/transfers/results/signature.py,sha256=lj89dDcQNotM0uWqkz_uXUplGoKXgE4NbaXJfN2m0GI,663
|
81
81
|
maleo_foundation/models/transfers/results/token.py,sha256=4V3UjfrKY1CnCMGlJgwLW-7brHb1_5I7ndY3k0zuL7o,629
|
82
82
|
maleo_foundation/models/transfers/results/client/__init__.py,sha256=xBRuY0NUIPpQEGQ2qoBnqLZGX4W1YSrQ0VnDf5OYJBo,290
|
83
|
-
maleo_foundation/models/transfers/results/client/service.py,sha256=
|
83
|
+
maleo_foundation/models/transfers/results/client/service.py,sha256=d5fDb9Agnb_szdxZliT8Nbj_uPMoJidQBGpyg-JG6ik,1264
|
84
84
|
maleo_foundation/models/transfers/results/client/controllers/__init__.py,sha256=x5pcJ33rsG8SqecwL1g762DFoySisTLbZqOqKqKoaKU,173
|
85
85
|
maleo_foundation/models/transfers/results/client/controllers/http.py,sha256=vhjfjchvlTq347mLY2mcE84n_xYMpLkALi_ecQNOAGY,1499
|
86
86
|
maleo_foundation/models/transfers/results/encryption/__init__.py,sha256=Uo8lKBcjlvtCjgPk4sz44GY_fjG3QooatbVYBDFwF8g,307
|
@@ -107,7 +107,7 @@ maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg
|
|
107
107
|
maleo_foundation/utils/loaders/credential/google.py,sha256=deksZXT5wPhEsSMHbZ3x05WHXxCjLDt76Ns-1Tmhp7g,948
|
108
108
|
maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
|
109
109
|
maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
|
110
|
-
maleo_foundation-0.2.
|
111
|
-
maleo_foundation-0.2.
|
112
|
-
maleo_foundation-0.2.
|
113
|
-
maleo_foundation-0.2.
|
110
|
+
maleo_foundation-0.2.5.dist-info/METADATA,sha256=pV3QopFDva0YAQo7fJjcA6x1ndS-EsLiw1Y-ulqSw2A,3418
|
111
|
+
maleo_foundation-0.2.5.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
112
|
+
maleo_foundation-0.2.5.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
|
113
|
+
maleo_foundation-0.2.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|