diff --git a/docs/DnsInfoCreate200Response.md b/docs/DnsInfoCreate200Response.md index dccc77f..3302fbc 100644 --- a/docs/DnsInfoCreate200Response.md +++ b/docs/DnsInfoCreate200Response.md @@ -11,8 +11,8 @@ Name | Type | Description | Notes **all_dns_score** | **float** | | **found** | **float** | | **total** | **float** | | -**missing_dns** | **List[object]** | | -**other_missing_dns** | **List[object]** | | +**missing_dns** | **List[str]** | | +**other_missing_dns** | **List[str]** | | **found_dns** | **object** | | **error** | **List[str]** | | diff --git a/openapi.yaml b/openapi.yaml index c242d03..31ed6bc 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -196,11 +196,11 @@ paths: missing_dns: type: array items: - type: object + type: string other_missing_dns: type: array items: - type: object + type: string found_dns: type: object error: diff --git a/workplace_client/models/dns_info_create200_response.py b/workplace_client/models/dns_info_create200_response.py index 1347194..f95d267 100644 --- a/workplace_client/models/dns_info_create200_response.py +++ b/workplace_client/models/dns_info_create200_response.py @@ -33,8 +33,8 @@ class DnsInfoCreate200Response(BaseModel): all_dns_score: Union[StrictFloat, StrictInt] found: Union[StrictFloat, StrictInt] total: Union[StrictFloat, StrictInt] - missing_dns: List[Dict[str, Any]] - other_missing_dns: List[Dict[str, Any]] + missing_dns: List[StrictStr] + other_missing_dns: List[StrictStr] found_dns: Dict[str, Any] error: List[StrictStr] __properties: ClassVar[List[str]] = ["score", "message", "domain", "all_dns_score", "found", "total", "missing_dns", "other_missing_dns", "found_dns", "error"]