Release v1.0.2 (#4175)
This commit is contained in:
committed by
GitHub
parent
2961fdd721
commit
d9610701d3
@@ -41,6 +41,8 @@ if typing.TYPE_CHECKING:
|
||||
BitwardenSensitiveInformationParameter,
|
||||
BitwardenSensitiveInformationParameterYaml,
|
||||
BlockType,
|
||||
BranchCondition,
|
||||
BranchCriteria,
|
||||
BrowserProfile,
|
||||
BrowserSessionResponse,
|
||||
ClickAction,
|
||||
@@ -60,6 +62,7 @@ if typing.TYPE_CHECKING:
|
||||
CodeBlockParametersItem_Output,
|
||||
CodeBlockParametersItem_Workflow,
|
||||
CodeBlockYaml,
|
||||
ConditionalBlock,
|
||||
ContextParameter,
|
||||
ContextParameterSource,
|
||||
ContextParameterSource_AwsSecret,
|
||||
@@ -133,6 +136,7 @@ if typing.TYPE_CHECKING:
|
||||
ForLoopBlockLoopBlocksItem,
|
||||
ForLoopBlockLoopBlocksItem_Action,
|
||||
ForLoopBlockLoopBlocksItem_Code,
|
||||
ForLoopBlockLoopBlocksItem_Conditional,
|
||||
ForLoopBlockLoopBlocksItem_DownloadToS3,
|
||||
ForLoopBlockLoopBlocksItem_Extraction,
|
||||
ForLoopBlockLoopBlocksItem_FileDownload,
|
||||
@@ -187,6 +191,7 @@ if typing.TYPE_CHECKING:
|
||||
ForLoopBlockYamlLoopBlocksItem_UploadToS3,
|
||||
ForLoopBlockYamlLoopBlocksItem_Validation,
|
||||
ForLoopBlockYamlLoopBlocksItem_Wait,
|
||||
GeoTarget,
|
||||
GetRunResponse,
|
||||
GetRunResponse_AnthropicCua,
|
||||
GetRunResponse_OpenaiCua,
|
||||
@@ -224,7 +229,6 @@ if typing.TYPE_CHECKING:
|
||||
HumanInteractionBlockParametersItem_Output,
|
||||
HumanInteractionBlockParametersItem_Workflow,
|
||||
HumanInteractionBlockYaml,
|
||||
ImprovePromptResponse,
|
||||
InputOrSelectContext,
|
||||
InputTextAction,
|
||||
InputTextActionData,
|
||||
@@ -309,6 +313,7 @@ if typing.TYPE_CHECKING:
|
||||
TaskBlockYamlDataSchema,
|
||||
TaskRunRequest,
|
||||
TaskRunRequestDataExtractionSchema,
|
||||
TaskRunRequestProxyLocation,
|
||||
TaskRunResponse,
|
||||
TaskRunResponseOutput,
|
||||
TaskV2Block,
|
||||
@@ -385,10 +390,12 @@ if typing.TYPE_CHECKING:
|
||||
WaitBlockYaml,
|
||||
Workflow,
|
||||
WorkflowCreateYamlRequest,
|
||||
WorkflowCreateYamlRequestProxyLocation,
|
||||
WorkflowDefinition,
|
||||
WorkflowDefinitionBlocksItem,
|
||||
WorkflowDefinitionBlocksItem_Action,
|
||||
WorkflowDefinitionBlocksItem_Code,
|
||||
WorkflowDefinitionBlocksItem_Conditional,
|
||||
WorkflowDefinitionBlocksItem_DownloadToS3,
|
||||
WorkflowDefinitionBlocksItem_Extraction,
|
||||
WorkflowDefinitionBlocksItem_FileDownload,
|
||||
@@ -459,20 +466,22 @@ if typing.TYPE_CHECKING:
|
||||
WorkflowParameterType,
|
||||
WorkflowParameterYaml,
|
||||
WorkflowParameterYamlDefaultValue,
|
||||
WorkflowProxyLocation,
|
||||
WorkflowRequest,
|
||||
WorkflowRunBlock,
|
||||
WorkflowRunBlockDataSchema,
|
||||
WorkflowRunBlockNavigationPayload,
|
||||
WorkflowRunBlockOutput,
|
||||
WorkflowRunRequest,
|
||||
WorkflowRunRequestProxyLocation,
|
||||
WorkflowRunResponse,
|
||||
WorkflowRunResponseOutput,
|
||||
WorkflowRunTimeline,
|
||||
WorkflowRunTimelineType,
|
||||
WorkflowStatus,
|
||||
)
|
||||
from .errors import BadRequestError, ForbiddenError, NotFoundError, UnprocessableEntityError
|
||||
from . import browser_profiles, prompts, scripts, workflows
|
||||
from .errors import BadRequestError, ConflictError, ForbiddenError, NotFoundError, UnprocessableEntityError
|
||||
from . import scripts, workflows
|
||||
from .client import AsyncSkyvern, Skyvern
|
||||
from .environment import SkyvernEnvironment
|
||||
from .version import __version__
|
||||
@@ -513,6 +522,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"BitwardenSensitiveInformationParameter": ".types",
|
||||
"BitwardenSensitiveInformationParameterYaml": ".types",
|
||||
"BlockType": ".types",
|
||||
"BranchCondition": ".types",
|
||||
"BranchCriteria": ".types",
|
||||
"BrowserProfile": ".types",
|
||||
"BrowserSessionResponse": ".types",
|
||||
"ClickAction": ".types",
|
||||
@@ -532,6 +543,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"CodeBlockParametersItem_Output": ".types",
|
||||
"CodeBlockParametersItem_Workflow": ".types",
|
||||
"CodeBlockYaml": ".types",
|
||||
"ConditionalBlock": ".types",
|
||||
"ConflictError": ".errors",
|
||||
"ContextParameter": ".types",
|
||||
"ContextParameterSource": ".types",
|
||||
"ContextParameterSource_AwsSecret": ".types",
|
||||
@@ -605,6 +618,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"ForLoopBlockLoopBlocksItem": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_Action": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_Code": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_Conditional": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_DownloadToS3": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_Extraction": ".types",
|
||||
"ForLoopBlockLoopBlocksItem_FileDownload": ".types",
|
||||
@@ -660,6 +674,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"ForLoopBlockYamlLoopBlocksItem_Validation": ".types",
|
||||
"ForLoopBlockYamlLoopBlocksItem_Wait": ".types",
|
||||
"ForbiddenError": ".errors",
|
||||
"GeoTarget": ".types",
|
||||
"GetRunResponse": ".types",
|
||||
"GetRunResponse_AnthropicCua": ".types",
|
||||
"GetRunResponse_OpenaiCua": ".types",
|
||||
@@ -697,7 +712,6 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"HumanInteractionBlockParametersItem_Output": ".types",
|
||||
"HumanInteractionBlockParametersItem_Workflow": ".types",
|
||||
"HumanInteractionBlockYaml": ".types",
|
||||
"ImprovePromptResponse": ".types",
|
||||
"InputOrSelectContext": ".types",
|
||||
"InputTextAction": ".types",
|
||||
"InputTextActionData": ".types",
|
||||
@@ -785,6 +799,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"TaskBlockYamlDataSchema": ".types",
|
||||
"TaskRunRequest": ".types",
|
||||
"TaskRunRequestDataExtractionSchema": ".types",
|
||||
"TaskRunRequestProxyLocation": ".types",
|
||||
"TaskRunResponse": ".types",
|
||||
"TaskRunResponseOutput": ".types",
|
||||
"TaskV2Block": ".types",
|
||||
@@ -862,10 +877,12 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"WaitBlockYaml": ".types",
|
||||
"Workflow": ".types",
|
||||
"WorkflowCreateYamlRequest": ".types",
|
||||
"WorkflowCreateYamlRequestProxyLocation": ".types",
|
||||
"WorkflowDefinition": ".types",
|
||||
"WorkflowDefinitionBlocksItem": ".types",
|
||||
"WorkflowDefinitionBlocksItem_Action": ".types",
|
||||
"WorkflowDefinitionBlocksItem_Code": ".types",
|
||||
"WorkflowDefinitionBlocksItem_Conditional": ".types",
|
||||
"WorkflowDefinitionBlocksItem_DownloadToS3": ".types",
|
||||
"WorkflowDefinitionBlocksItem_Extraction": ".types",
|
||||
"WorkflowDefinitionBlocksItem_FileDownload": ".types",
|
||||
@@ -936,20 +953,20 @@ _dynamic_imports: typing.Dict[str, str] = {
|
||||
"WorkflowParameterType": ".types",
|
||||
"WorkflowParameterYaml": ".types",
|
||||
"WorkflowParameterYamlDefaultValue": ".types",
|
||||
"WorkflowProxyLocation": ".types",
|
||||
"WorkflowRequest": ".types",
|
||||
"WorkflowRunBlock": ".types",
|
||||
"WorkflowRunBlockDataSchema": ".types",
|
||||
"WorkflowRunBlockNavigationPayload": ".types",
|
||||
"WorkflowRunBlockOutput": ".types",
|
||||
"WorkflowRunRequest": ".types",
|
||||
"WorkflowRunRequestProxyLocation": ".types",
|
||||
"WorkflowRunResponse": ".types",
|
||||
"WorkflowRunResponseOutput": ".types",
|
||||
"WorkflowRunTimeline": ".types",
|
||||
"WorkflowRunTimelineType": ".types",
|
||||
"WorkflowStatus": ".types",
|
||||
"__version__": ".version",
|
||||
"browser_profiles": ".browser_profiles",
|
||||
"prompts": ".prompts",
|
||||
"scripts": ".scripts",
|
||||
"workflows": ".workflows",
|
||||
}
|
||||
@@ -1013,6 +1030,8 @@ __all__ = [
|
||||
"BitwardenSensitiveInformationParameter",
|
||||
"BitwardenSensitiveInformationParameterYaml",
|
||||
"BlockType",
|
||||
"BranchCondition",
|
||||
"BranchCriteria",
|
||||
"BrowserProfile",
|
||||
"BrowserSessionResponse",
|
||||
"ClickAction",
|
||||
@@ -1032,6 +1051,8 @@ __all__ = [
|
||||
"CodeBlockParametersItem_Output",
|
||||
"CodeBlockParametersItem_Workflow",
|
||||
"CodeBlockYaml",
|
||||
"ConditionalBlock",
|
||||
"ConflictError",
|
||||
"ContextParameter",
|
||||
"ContextParameterSource",
|
||||
"ContextParameterSource_AwsSecret",
|
||||
@@ -1105,6 +1126,7 @@ __all__ = [
|
||||
"ForLoopBlockLoopBlocksItem",
|
||||
"ForLoopBlockLoopBlocksItem_Action",
|
||||
"ForLoopBlockLoopBlocksItem_Code",
|
||||
"ForLoopBlockLoopBlocksItem_Conditional",
|
||||
"ForLoopBlockLoopBlocksItem_DownloadToS3",
|
||||
"ForLoopBlockLoopBlocksItem_Extraction",
|
||||
"ForLoopBlockLoopBlocksItem_FileDownload",
|
||||
@@ -1160,6 +1182,7 @@ __all__ = [
|
||||
"ForLoopBlockYamlLoopBlocksItem_Validation",
|
||||
"ForLoopBlockYamlLoopBlocksItem_Wait",
|
||||
"ForbiddenError",
|
||||
"GeoTarget",
|
||||
"GetRunResponse",
|
||||
"GetRunResponse_AnthropicCua",
|
||||
"GetRunResponse_OpenaiCua",
|
||||
@@ -1197,7 +1220,6 @@ __all__ = [
|
||||
"HumanInteractionBlockParametersItem_Output",
|
||||
"HumanInteractionBlockParametersItem_Workflow",
|
||||
"HumanInteractionBlockYaml",
|
||||
"ImprovePromptResponse",
|
||||
"InputOrSelectContext",
|
||||
"InputTextAction",
|
||||
"InputTextActionData",
|
||||
@@ -1285,6 +1307,7 @@ __all__ = [
|
||||
"TaskBlockYamlDataSchema",
|
||||
"TaskRunRequest",
|
||||
"TaskRunRequestDataExtractionSchema",
|
||||
"TaskRunRequestProxyLocation",
|
||||
"TaskRunResponse",
|
||||
"TaskRunResponseOutput",
|
||||
"TaskV2Block",
|
||||
@@ -1362,10 +1385,12 @@ __all__ = [
|
||||
"WaitBlockYaml",
|
||||
"Workflow",
|
||||
"WorkflowCreateYamlRequest",
|
||||
"WorkflowCreateYamlRequestProxyLocation",
|
||||
"WorkflowDefinition",
|
||||
"WorkflowDefinitionBlocksItem",
|
||||
"WorkflowDefinitionBlocksItem_Action",
|
||||
"WorkflowDefinitionBlocksItem_Code",
|
||||
"WorkflowDefinitionBlocksItem_Conditional",
|
||||
"WorkflowDefinitionBlocksItem_DownloadToS3",
|
||||
"WorkflowDefinitionBlocksItem_Extraction",
|
||||
"WorkflowDefinitionBlocksItem_FileDownload",
|
||||
@@ -1436,20 +1461,20 @@ __all__ = [
|
||||
"WorkflowParameterType",
|
||||
"WorkflowParameterYaml",
|
||||
"WorkflowParameterYamlDefaultValue",
|
||||
"WorkflowProxyLocation",
|
||||
"WorkflowRequest",
|
||||
"WorkflowRunBlock",
|
||||
"WorkflowRunBlockDataSchema",
|
||||
"WorkflowRunBlockNavigationPayload",
|
||||
"WorkflowRunBlockOutput",
|
||||
"WorkflowRunRequest",
|
||||
"WorkflowRunRequestProxyLocation",
|
||||
"WorkflowRunResponse",
|
||||
"WorkflowRunResponseOutput",
|
||||
"WorkflowRunTimeline",
|
||||
"WorkflowRunTimelineType",
|
||||
"WorkflowStatus",
|
||||
"__version__",
|
||||
"browser_profiles",
|
||||
"prompts",
|
||||
"scripts",
|
||||
"workflows",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user