Skip to content

Commit 9d2ed68

Browse files
committed
Add support of phandling multiple OpenAPI data types defined in an array
1 parent ebbf9ae commit 9d2ed68

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/openapi_test_client/libraries/api/api_functions/utils/param_type.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,15 @@ def resolve_type_annotation(
101101
:param _is_array: Indicates that this parameter is a list type
102102
"""
103103

104-
def resolve(param_type: str, param_format: str | None = None) -> Any:
104+
def resolve(param_type: str | Sequence[str], param_format: str | None = None) -> Any:
105105
"""Resolve type annotation
106106
107107
NOTE: Some OpenAPI spec use a wrong param type value (eg. string v.s. str).
108108
We handle these scenarios accordingly
109109
"""
110+
if isinstance(param_type, (list | tuple | set)):
111+
return generate_union_type([resolve(t, param_format=param_format) for t in param_type])
112+
110113
if param_type in STR_PARAM_TYPES:
111114
if param_format:
112115
return annotate_type(str, Format(param_format))

src/openapi_test_client/libraries/api/types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(self, obj: dict[str, Any]):
7171
)
7272

7373
@property
74-
def type(self) -> str:
74+
def type(self) -> str | list[str, ...]:
7575
return self["type"]
7676

7777
@property

0 commit comments

Comments
 (0)