|
|
@ -60,9 +60,9 @@ def get_path_param_names(path: str) -> Set[str]: |
|
|
|
return set(re.findall("{(.*?)}", path)) |
|
|
|
|
|
|
|
|
|
|
|
def create_response_field( |
|
|
|
def create_model_field( |
|
|
|
name: str, |
|
|
|
type_: Type[Any], |
|
|
|
type_: Any, |
|
|
|
class_validators: Optional[Dict[str, Validator]] = None, |
|
|
|
default: Optional[Any] = Undefined, |
|
|
|
required: Union[bool, UndefinedType] = Undefined, |
|
|
@ -71,9 +71,6 @@ def create_response_field( |
|
|
|
alias: Optional[str] = None, |
|
|
|
mode: Literal["validation", "serialization"] = "validation", |
|
|
|
) -> ModelField: |
|
|
|
""" |
|
|
|
Create a new response field. Raises if type_ is invalid. |
|
|
|
""" |
|
|
|
class_validators = class_validators or {} |
|
|
|
if PYDANTIC_V2: |
|
|
|
field_info = field_info or FieldInfo( |
|
|
@ -135,7 +132,7 @@ def create_cloned_field( |
|
|
|
use_type.__fields__[f.name] = create_cloned_field( |
|
|
|
f, cloned_types=cloned_types |
|
|
|
) |
|
|
|
new_field = create_response_field(name=field.name, type_=use_type) |
|
|
|
new_field = create_model_field(name=field.name, type_=use_type) |
|
|
|
new_field.has_alias = field.has_alias # type: ignore[attr-defined] |
|
|
|
new_field.alias = field.alias # type: ignore[misc] |
|
|
|
new_field.class_validators = field.class_validators # type: ignore[attr-defined] |
|
|
|