jararaca 0.3.13__py3-none-any.whl → 0.3.15__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 jararaca might be problematic. Click here for more details.

@@ -26,7 +26,7 @@ from uuid import UUID
26
26
  from fastapi import Request, Response, UploadFile
27
27
  from fastapi.params import Body, Cookie, Depends, Form, Header, Path, Query
28
28
  from fastapi.security.http import HTTPBase
29
- from pydantic import BaseModel, PlainValidator
29
+ from pydantic import BaseModel, PlainValidator, RootModel
30
30
  from pydantic_core import PydanticUndefined
31
31
 
32
32
  from jararaca.microservice import Microservice
@@ -314,6 +314,26 @@ def get_field_type_for_ts(field_type: Any, context_suffix: str = "") -> Any:
314
314
  field_type: The Python type to convert
315
315
  context_suffix: Suffix for split models (e.g., "Input", "Output")
316
316
  """
317
+ # Handle RootModel types - use the wrapped type directly
318
+ if inspect.isclass(field_type) and issubclass(field_type, RootModel):
319
+ # For concrete RootModel subclasses, get the wrapped type from annotations
320
+ if (
321
+ hasattr(field_type, "__annotations__")
322
+ and "root" in field_type.__annotations__
323
+ ):
324
+ wrapped_type = field_type.__annotations__["root"]
325
+ return get_field_type_for_ts(wrapped_type, context_suffix)
326
+
327
+ # For parameterized RootModel[T] types, get the type from pydantic metadata
328
+ if hasattr(field_type, "__pydantic_generic_metadata__"):
329
+ metadata = field_type.__pydantic_generic_metadata__
330
+ if metadata.get("origin") is RootModel and metadata.get("args"):
331
+ # Get the first (and only) type argument
332
+ wrapped_type = metadata["args"][0]
333
+ return get_field_type_for_ts(wrapped_type, context_suffix)
334
+
335
+ return "unknown"
336
+
317
337
  if field_type is Response:
318
338
  return "unknown"
319
339
  if field_type is Any:
@@ -680,7 +700,7 @@ def write_microservice_to_typescript_interface(
680
700
 
681
701
  // noinspection JSUnusedGlobalSymbols
682
702
 
683
- import { HttpService, HttpBackend, HttpBackendRequest, ResponseType, createClassQueryHooks , createClassMutationHooks, createClassInfiniteQueryHooks, paginationModelByFirstArgPaginationFilter } from "@jararaca/core";
703
+ import { HttpService, HttpBackend, HttpBackendRequest, ResponseType, createClassQueryHooks , createClassMutationHooks, createClassInfiniteQueryHooks, paginationModelByFirstArgPaginationFilter, recursiveCamelToSnakeCase } from "@jararaca/core";
684
704
 
685
705
  function makeFormData(data: Record<string, any>): FormData {
686
706
  const formData = new FormData();
@@ -703,7 +723,9 @@ function* genFormDataValue(value: any): any {
703
723
  } else if (typeof value === "object" && value.constructor === Object) {
704
724
  // Stringify plain objects as JSON
705
725
  // formData.append(key, JSON.stringify(value));
706
- yield JSON.stringify(value);
726
+ yield JSON.stringify(
727
+ recursiveCamelToSnakeCase(value)
728
+ );
707
729
  } else {
708
730
  // For primitives (string, number, boolean), append as-is
709
731
  yield value;
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jararaca
3
- Version: 0.3.13
3
+ Version: 0.3.15
4
4
  Summary: A simple and fast API framework for Python
5
5
  Home-page: https://github.com/LuscasLeo/jararaca
6
6
  Author: Lucas S
@@ -1,6 +1,6 @@
1
1
  LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
2
  README.md,sha256=2qMM__t_MoLKZr4IY9tXjo-Jn6LKjuHMb1qbyXpgL08,3401
3
- pyproject.toml,sha256=2-YSpMDgBFSW37MDYlZYmX9p5hTXQaydhNsqs0H0POk,2057
3
+ pyproject.toml,sha256=4sMQr0CTEGoATHQgo-Y4RcOjN1L138gvIV0fXzzKO98,2057
4
4
  jararaca/__init__.py,sha256=qWLfavFIGRC3dfcTmiNP3kDh1Iih9wPMTTUOtLjtT_M,22186
5
5
  jararaca/__main__.py,sha256=-O3vsB5lHdqNFjUtoELDF81IYFtR-DSiiFMzRaiSsv4,67
6
6
  jararaca/broker_backend/__init__.py,sha256=GzEIuHR1xzgCJD4FE3harNjoaYzxHMHoEL0_clUaC-k,3528
@@ -70,12 +70,12 @@ jararaca/tools/app_config/decorators.py,sha256=-ckkMZ1dswOmECdo1rFrZ15UAku--txaN
70
70
  jararaca/tools/app_config/interceptor.py,sha256=HV8h4AxqUc_ACs5do4BSVlyxlRXzx7HqJtoVO9tfRnQ,2611
71
71
  jararaca/tools/typescript/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
72
  jararaca/tools/typescript/decorators.py,sha256=y1zBq8mBZ8CBXlZ0nKy2RyIgCvP9kp4elACbaC6dptQ,2946
73
- jararaca/tools/typescript/interface_parser.py,sha256=hJzP-XCwVQ7kjJHBj9VGq8mrSdNQjO0VlYFIPVf4ukI,53997
73
+ jararaca/tools/typescript/interface_parser.py,sha256=mugBTspKaQEw7QR-rp5FKKu3wB-jQ3Nl6h_lBIoh2So,55054
74
74
  jararaca/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  jararaca/utils/rabbitmq_utils.py,sha256=ytdAFUyv-OBkaVnxezuJaJoLrmN7giZgtKeet_IsMBs,10918
76
76
  jararaca/utils/retry.py,sha256=DzPX_fXUvTqej6BQ8Mt2dvLo9nNlTBm7Kx2pFZ26P2Q,4668
77
- jararaca-0.3.13.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
78
- jararaca-0.3.13.dist-info/METADATA,sha256=oLyzVkVe28eyKh5Ro_nRruvfgzY2J5k9JAtUGp-z8zQ,5033
79
- jararaca-0.3.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
80
- jararaca-0.3.13.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
81
- jararaca-0.3.13.dist-info/RECORD,,
77
+ jararaca-0.3.15.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
78
+ jararaca-0.3.15.dist-info/METADATA,sha256=eK7SFeVokWvgcoDnSOGLgA0PQuyW4OsMuegVCnGsCoY,5033
79
+ jararaca-0.3.15.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
80
+ jararaca-0.3.15.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
81
+ jararaca-0.3.15.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "jararaca"
3
- version = "0.3.13"
3
+ version = "0.3.15"
4
4
  description = "A simple and fast API framework for Python"
5
5
  authors = ["Lucas S <me@luscasleo.dev>"]
6
6
  readme = "README.md"