Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/DnsInfoCreate200Response.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]** | |

Expand Down
4 changes: 2 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions workplace_client/models/dns_info_create200_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down