nlbone 0.8.2__py3-none-any.whl → 0.8.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.
- nlbone/interfaces/api/additional_filed/assembler.py +2 -0
- nlbone/utils/read_files.py +13 -0
- {nlbone-0.8.2.dist-info → nlbone-0.8.3.dist-info}/METADATA +1 -1
- {nlbone-0.8.2.dist-info → nlbone-0.8.3.dist-info}/RECORD +7 -6
- {nlbone-0.8.2.dist-info → nlbone-0.8.3.dist-info}/WHEEL +0 -0
- {nlbone-0.8.2.dist-info → nlbone-0.8.3.dist-info}/entry_points.txt +0 -0
- {nlbone-0.8.2.dist-info → nlbone-0.8.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -14,6 +14,7 @@ def assemble_response(
|
|
|
14
14
|
session,
|
|
15
15
|
base_schema: type[BaseModel] | None,
|
|
16
16
|
scope_map: dict[str, set[str]] = None,
|
|
17
|
+
**kwargs,
|
|
17
18
|
) -> Dict[str, Any]:
|
|
18
19
|
base = {f: getattr(obj, f, None) for f in reg.default_fields - set(reg.rules.keys())}
|
|
19
20
|
if base_schema:
|
|
@@ -24,6 +25,7 @@ def assemble_response(
|
|
|
24
25
|
"entity": obj,
|
|
25
26
|
"db": session,
|
|
26
27
|
"pricing_service": Container.pricing_service(),
|
|
28
|
+
**kwargs,
|
|
27
29
|
}
|
|
28
30
|
roots = {name.split(".", 1)[0] for name in selected_rules.keys()}
|
|
29
31
|
for root in roots:
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import json
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def load_json_file(file_path: str) -> dict:
|
|
6
|
+
path = Path(file_path)
|
|
7
|
+
|
|
8
|
+
if not path.exists():
|
|
9
|
+
raise FileNotFoundError(f"No file found at {file_path}")
|
|
10
|
+
|
|
11
|
+
with path.open(mode='r', encoding='utf-8') as file:
|
|
12
|
+
return json.load(file)
|
|
13
|
+
|
|
@@ -75,7 +75,7 @@ nlbone/interfaces/api/exceptions.py,sha256=IggZxV9q6l4jqw-G7SWEmuyXnWgbNXJJT-rmn
|
|
|
75
75
|
nlbone/interfaces/api/routers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
76
|
nlbone/interfaces/api/schemas.py,sha256=34Tz2EeXyf12rFL9iyYWaB2ftuaXUebQQQxSO9ouV94,133
|
|
77
77
|
nlbone/interfaces/api/additional_filed/__init__.py,sha256=BWemliLSQV9iq1vdUaF733q0FOSipSWBOQk9eYj732Q,318
|
|
78
|
-
nlbone/interfaces/api/additional_filed/assembler.py,sha256=
|
|
78
|
+
nlbone/interfaces/api/additional_filed/assembler.py,sha256=E_TGxorIQ-hC5FiCup5WQ0MmbSGfNaypEf5Plc-rjJs,1988
|
|
79
79
|
nlbone/interfaces/api/additional_filed/field_registry.py,sha256=IhIvzHWOMtKv8iTdFu7LzQboi4SFTLOyJqKdYPY8xFE,5418
|
|
80
80
|
nlbone/interfaces/api/additional_filed/resolver.py,sha256=jv1TIBBHN4LBIMwHGipcy4iq0uP0r6udyaqvhRzb8Bk,4655
|
|
81
81
|
nlbone/interfaces/api/additional_filed/default_field_rules/__init__.py,sha256=LUSAOO3xRUt5ptlraIx7H-7dSkdr1D-WprmnqXRB16g,48
|
|
@@ -113,10 +113,11 @@ nlbone/utils/flatten_dict.py,sha256=nkx8gAcJkjCKG3I5y9clqtjGMZCWyUWRhgD2R8zGEqM,
|
|
|
113
113
|
nlbone/utils/flatten_sqlalchemy_result.py,sha256=JGwQEauoJVjhzvXrOtqabj3wQ7zp2-OPwhuh44sUdUE,625
|
|
114
114
|
nlbone/utils/http.py,sha256=llb4aPDL-Uvrht3c_VwJdngdKeT4WsCu1pXSoeI7vWA,1114
|
|
115
115
|
nlbone/utils/normalize_mobile.py,sha256=sGH4tV9gX-6eVKozviNWJhm1DN1J28Nj-ERldCYkS_E,732
|
|
116
|
+
nlbone/utils/read_files.py,sha256=mx8dfvtaaARQFRp_U7OOiERg-GT62h09_lpTzIQsVhs,291
|
|
116
117
|
nlbone/utils/redactor.py,sha256=-V4HrHmHwPi3Kez587Ek1uJlgK35qGSrwBOvcbw8Jas,1279
|
|
117
118
|
nlbone/utils/time.py,sha256=DjjyQ9GLsfXoT6NK8RDW2rOlJg3e6sF04Jw6PBUrSvg,1268
|
|
118
|
-
nlbone-0.8.
|
|
119
|
-
nlbone-0.8.
|
|
120
|
-
nlbone-0.8.
|
|
121
|
-
nlbone-0.8.
|
|
122
|
-
nlbone-0.8.
|
|
119
|
+
nlbone-0.8.3.dist-info/METADATA,sha256=b7l7LGRljEWHWYG8N-qglOOfhmjfsOQfoJOpAA6_Og8,2294
|
|
120
|
+
nlbone-0.8.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
121
|
+
nlbone-0.8.3.dist-info/entry_points.txt,sha256=CpIL45t5nbhl1dGQPhfIIDfqqak3teK0SxPGBBr7YCk,59
|
|
122
|
+
nlbone-0.8.3.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
nlbone-0.8.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|