Regenerate Fern Python SDK (#3928)
This commit is contained in:
committed by
GitHub
parent
3c4df39fee
commit
8482ff4a75
@@ -8,6 +8,7 @@ from importlib import import_module
|
||||
if typing.TYPE_CHECKING:
|
||||
from .types import (
|
||||
ActAction,
|
||||
ActActionData,
|
||||
Action,
|
||||
ActionBlock,
|
||||
ActionBlockDataSchema,
|
||||
@@ -43,6 +44,7 @@ if typing.TYPE_CHECKING:
|
||||
BrowserSessionResponse,
|
||||
ClickAction,
|
||||
ClickActionData,
|
||||
ClickContext,
|
||||
CodeBlock,
|
||||
CodeBlockParametersItem,
|
||||
CodeBlockParametersItem_AwsSecret,
|
||||
@@ -125,6 +127,7 @@ if typing.TYPE_CHECKING:
|
||||
FileType,
|
||||
FileUploadBlock,
|
||||
FileUploadBlockYaml,
|
||||
Folder,
|
||||
ForLoopBlock,
|
||||
ForLoopBlockLoopBlocksItem,
|
||||
ForLoopBlockLoopBlocksItem_Action,
|
||||
@@ -265,18 +268,17 @@ if typing.TYPE_CHECKING:
|
||||
PdfParserBlockYaml,
|
||||
ProxyLocation,
|
||||
RunEngine,
|
||||
RunSdkActionRequestAction,
|
||||
RunSdkActionRequestAction_AiAct,
|
||||
RunSdkActionRequestAction_AiClick,
|
||||
RunSdkActionRequestAction_AiInputText,
|
||||
RunSdkActionRequestAction_AiSelectOption,
|
||||
RunSdkActionRequestAction_Extract,
|
||||
RunSdkActionResponse,
|
||||
RunSdkActionResponseResult,
|
||||
RunStatus,
|
||||
Script,
|
||||
ScriptFileCreate,
|
||||
ScriptRunResponse,
|
||||
SdkAction,
|
||||
SdkAction_AiAct,
|
||||
SdkAction_AiClick,
|
||||
SdkAction_AiInputText,
|
||||
SdkAction_AiSelectOption,
|
||||
SdkAction_Extract,
|
||||
SelectOption,
|
||||
SelectOptionAction,
|
||||
SelectOptionActionData,
|
||||
@@ -463,12 +465,13 @@ if typing.TYPE_CHECKING:
|
||||
WorkflowStatus,
|
||||
)
|
||||
from .errors import BadRequestError, ForbiddenError, NotFoundError, UnprocessableEntityError
|
||||
from . import scripts
|
||||
from . import scripts, workflows
|
||||
from .client import AsyncSkyvern, Skyvern
|
||||
from .environment import SkyvernEnvironment
|
||||
from .version import __version__
|
||||
_dynamic_imports: typing.Dict[str, str] = {
|
||||
"ActAction": ".types",
|
||||
"ActActionData": ".types",
|
||||
"Action": ".types",
|
||||
"ActionBlock": ".types",
|
||||
"ActionBlockDataSchema": ".types",
|
||||
@@ -506,6 +509,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"BrowserSessionResponse": ".types",
|
||||
"ClickAction": ".types",
|
||||
"ClickActionData": ".types",
|
||||
"ClickContext": ".types",
|
||||
"CodeBlock": ".types",
|
||||
"CodeBlockParametersItem": ".types",
|
||||
"CodeBlockParametersItem_AwsSecret": ".types",
|
||||
@@ -588,6 +592,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"FileType": ".types",
|
||||
"FileUploadBlock": ".types",
|
||||
"FileUploadBlockYaml": ".types",
|
||||
"Folder": ".types",
|
||||
"ForLoopBlock": ".types",
|
||||
"ForLoopBlockLoopBlocksItem": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_Action": ".types",
|
||||
@@ -730,18 +735,17 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"PdfParserBlockYaml": ".types",
|
||||
"ProxyLocation": ".types",
|
||||
"RunEngine": ".types",
|
||||
"RunSdkActionRequestAction": ".types",
|
||||
"RunSdkActionRequestAction_AiAct": ".types",
|
||||
"RunSdkActionRequestAction_AiClick": ".types",
|
||||
"RunSdkActionRequestAction_AiInputText": ".types",
|
||||
"RunSdkActionRequestAction_AiSelectOption": ".types",
|
||||
"RunSdkActionRequestAction_Extract": ".types",
|
||||
"RunSdkActionResponse": ".types",
|
||||
"RunSdkActionResponseResult": ".types",
|
||||
"RunStatus": ".types",
|
||||
"Script": ".types",
|
||||
"ScriptFileCreate": ".types",
|
||||
"ScriptRunResponse": ".types",
|
||||
"SdkAction": ".types",
|
||||
"SdkAction_AiAct": ".types",
|
||||
"SdkAction_AiClick": ".types",
|
||||
"SdkAction_AiInputText": ".types",
|
||||
"SdkAction_AiSelectOption": ".types",
|
||||
"SdkAction_Extract": ".types",
|
||||
"SelectOption": ".types",
|
||||
"SelectOptionAction": ".types",
|
||||
"SelectOptionActionData": ".types",
|
||||
@@ -931,6 +935,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"WorkflowStatus": ".types",
|
||||
"__version__": ".version",
|
||||
"scripts": ".scripts",
|
||||
"workflows": ".workflows",
|
||||
}
|
||||
|
||||
|
||||
@@ -957,6 +962,7 @@ def __dir__():
|
||||
|
||||
__all__ = [
|
||||
"ActAction",
|
||||
"ActActionData",
|
||||
"Action",
|
||||
"ActionBlock",
|
||||
"ActionBlockDataSchema",
|
||||
@@ -994,6 +1000,7 @@ __all__ = [
|
||||
"BrowserSessionResponse",
|
||||
"ClickAction",
|
||||
"ClickActionData",
|
||||
"ClickContext",
|
||||
"CodeBlock",
|
||||
"CodeBlockParametersItem",
|
||||
"CodeBlockParametersItem_AwsSecret",
|
||||
@@ -1076,6 +1083,7 @@ __all__ = [
|
||||
"FileType",
|
||||
"FileUploadBlock",
|
||||
"FileUploadBlockYaml",
|
||||
"Folder",
|
||||
"ForLoopBlock",
|
||||
"ForLoopBlockLoopBlocksItem",
|
||||
"ForLoopBlockLoopBlocksItem_Action",
|
||||
@@ -1218,18 +1226,17 @@ __all__ = [
|
||||
"PdfParserBlockYaml",
|
||||
"ProxyLocation",
|
||||
"RunEngine",
|
||||
"RunSdkActionRequestAction",
|
||||
"RunSdkActionRequestAction_AiAct",
|
||||
"RunSdkActionRequestAction_AiClick",
|
||||
"RunSdkActionRequestAction_AiInputText",
|
||||
"RunSdkActionRequestAction_AiSelectOption",
|
||||
"RunSdkActionRequestAction_Extract",
|
||||
"RunSdkActionResponse",
|
||||
"RunSdkActionResponseResult",
|
||||
"RunStatus",
|
||||
"Script",
|
||||
"ScriptFileCreate",
|
||||
"ScriptRunResponse",
|
||||
"SdkAction",
|
||||
"SdkAction_AiAct",
|
||||
"SdkAction_AiClick",
|
||||
"SdkAction_AiInputText",
|
||||
"SdkAction_AiSelectOption",
|
||||
"SdkAction_Extract",
|
||||
"SelectOption",
|
||||
"SelectOptionAction",
|
||||
"SelectOptionActionData",
|
||||
@@ -1419,4 +1426,5 @@ __all__ = [
|
||||
"WorkflowStatus",
|
||||
"__version__",
|
||||
"scripts",
|
||||
"workflows",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user