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 skyflow/generated/rest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
EntityTypes,
ErrorResponse,
ErrorResponseError,
ErrorString,
GooglerpcStatus,
ProtobufAny,
RedactionEnumRedaction,
ReidentifyFileResponse,
ReidentifyFileResponseOutput,
ReidentifyFileResponseOutputType,
ReidentifyFileResponseStatus,
ReidentifyStringResponse,
RequestActionType,
Expand Down Expand Up @@ -176,6 +176,7 @@
"EntityTypes",
"ErrorResponse",
"ErrorResponseError",
"ErrorString",
"GooglerpcStatus",
"InternalServerError",
"NotFoundError",
Expand All @@ -189,7 +190,6 @@
"ReidentifyFileRequestFormat",
"ReidentifyFileResponse",
"ReidentifyFileResponseOutput",
"ReidentifyFileResponseOutputType",
"ReidentifyFileResponseStatus",
"ReidentifyStringRequestFormat",
"ReidentifyStringResponse",
Expand Down
2 changes: 1 addition & 1 deletion skyflow/generated/rest/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "skyflow_vault",
"X-Fern-SDK-Version": "0.0.323",
"X-Fern-SDK-Version": "0.0.252",
**(self.get_custom_headers() or {}),
}
headers["Authorization"] = f"Bearer {self._get_token()}"
Expand Down
4 changes: 2 additions & 2 deletions skyflow/generated/rest/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
from .entity_types import EntityTypes
from .error_response import ErrorResponse
from .error_response_error import ErrorResponseError
from .error_string import ErrorString
from .googlerpc_status import GooglerpcStatus
from .protobuf_any import ProtobufAny
from .redaction_enum_redaction import RedactionEnumRedaction
from .reidentify_file_response import ReidentifyFileResponse
from .reidentify_file_response_output import ReidentifyFileResponseOutput
from .reidentify_file_response_output_type import ReidentifyFileResponseOutputType
from .reidentify_file_response_status import ReidentifyFileResponseStatus
from .reidentify_string_response import ReidentifyStringResponse
from .request_action_type import RequestActionType
Expand Down Expand Up @@ -106,12 +106,12 @@
"EntityTypes",
"ErrorResponse",
"ErrorResponseError",
"ErrorString",
"GooglerpcStatus",
"ProtobufAny",
"RedactionEnumRedaction",
"ReidentifyFileResponse",
"ReidentifyFileResponseOutput",
"ReidentifyFileResponseOutputType",
"ReidentifyFileResponseStatus",
"ReidentifyStringResponse",
"RequestActionType",
Expand Down
2 changes: 1 addition & 1 deletion skyflow/generated/rest/types/deidentify_status_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DeidentifyStatusResponse(UniversalBaseModel):
How the input file was specified.
"""

output_type: DeidentifyStatusResponseOutputType = pydantic.Field()
output_type: typing.Optional[DeidentifyStatusResponseOutputType] = pydantic.Field(default=None)
"""
How the output file is specified.
"""
Expand Down
3 changes: 3 additions & 0 deletions skyflow/generated/rest/types/error_string.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file was auto-generated by Fern from our API Definition.

ErrorString = str
3 changes: 1 addition & 2 deletions skyflow/generated/rest/types/reidentify_file_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
from .reidentify_file_response_output import ReidentifyFileResponseOutput
from .reidentify_file_response_output_type import ReidentifyFileResponseOutputType
from .reidentify_file_response_status import ReidentifyFileResponseStatus


Expand All @@ -19,7 +18,7 @@ class ReidentifyFileResponse(UniversalBaseModel):
Status of the re-identify operation.
"""

output_type: ReidentifyFileResponseOutputType = pydantic.Field()
output_type: typing.Literal["BASE64"] = pydantic.Field(default="BASE64")
"""
Format of the output file.
"""
Expand Down
Loading