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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.2.0.dev0
2 changes: 1 addition & 1 deletion kuflow-rest/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.2.0.dev0
2 changes: 1 addition & 1 deletion kuflow-rest/kuflow_rest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@


__all__ = ["Deserializer", "KuBotTokenCredential", "KuFlowRestClient", "Model", "Serializer"]
__version__ = "2.1.0"
__version__ = "2.2.0.dev0"
2 changes: 1 addition & 1 deletion kuflow-rest/kuflow_rest/_generated/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
#
# --------------------------------------------------------------------------

VERSION = "2.1.0"
VERSION = "2.2.0.dev0"
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async def find_process_items(
process_id: Optional[List[str]] = None,
type: Optional[List[Union[str, _models.ProcessItemType]]] = None,
task_state: Optional[List[Union[str, _models.ProcessItemTaskState]]] = None,
task_definition_code: Optional[List[str]] = None,
process_item_definition_code: Optional[List[str]] = None,
tenant_id: Optional[List[str]] = None,
**kwargs: Any,
) -> _models.ProcessItemPage:
Expand Down Expand Up @@ -128,9 +128,9 @@ async def find_process_items(
:paramtype type: list[str or ~kuflow.rest.models.ProcessItemType]
:keyword task_state: Filter by an array of task states. Default value is None.
:paramtype task_state: list[str or ~kuflow.rest.models.ProcessItemTaskState]
:keyword task_definition_code: Filter by an array of task definition codes. Default value is
None.
:paramtype task_definition_code: list[str]
:keyword process_item_definition_code: Filter by an array of task definition codes. Default
value is None.
:paramtype process_item_definition_code: list[str]
:keyword tenant_id: Filter by tenantId. Default value is None.
:paramtype tenant_id: list[str]
:return: ProcessItemPage
Expand All @@ -157,7 +157,7 @@ async def find_process_items(
process_id=process_id,
type=type,
task_state=task_state,
task_definition_code=task_definition_code,
process_item_definition_code=process_item_definition_code,
tenant_id=tenant_id,
headers=_headers,
params=_params,
Expand Down
8 changes: 4 additions & 4 deletions kuflow-rest/kuflow_rest/_generated/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@
from ._models import Process
from ._models import ProcessChangeInitiatorParams
from ._models import ProcessCreateParams
from ._models import ProcessDefinitionSummary
from ._models import ProcessDefinitionRef
from ._models import ProcessEntityUpdateParams
from ._models import ProcessItem
from ._models import ProcessItemCreateParams
from ._models import ProcessItemDefinitionRef
from ._models import ProcessItemMessage
from ._models import ProcessItemMessageCreateParams
from ._models import ProcessItemMessagePageItem
Expand All @@ -76,7 +77,6 @@
from ._models import RobotPage
from ._models import RobotPageItem
from ._models import RobotSourceFile
from ._models import TaskDefinitionSummary
from ._models import Tenant
from ._models import TenantPage
from ._models import TenantPageItem
Expand Down Expand Up @@ -136,10 +136,11 @@
"Process",
"ProcessChangeInitiatorParams",
"ProcessCreateParams",
"ProcessDefinitionSummary",
"ProcessDefinitionRef",
"ProcessEntityUpdateParams",
"ProcessItem",
"ProcessItemCreateParams",
"ProcessItemDefinitionRef",
"ProcessItemMessage",
"ProcessItemMessageCreateParams",
"ProcessItemMessagePageItem",
Expand All @@ -160,7 +161,6 @@
"RobotPage",
"RobotPageItem",
"RobotSourceFile",
"TaskDefinitionSummary",
"Tenant",
"TenantPage",
"TenantPageItem",
Expand Down
7 changes: 4 additions & 3 deletions kuflow-rest/kuflow_rest/_generated/models/_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ class ProcessItemType(str, Enum, metaclass=CaseInsensitiveEnumMeta):

TASK = "TASK"
MESSAGE = "MESSAGE"
THREAD = "THREAD"


class ProcessState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
Expand All @@ -95,8 +96,8 @@ class ProcessState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
class RobotAssetArchitecture(str, Enum, metaclass=CaseInsensitiveEnumMeta):
"""Robot asset platform architecture."""

X86_BIT32 = "X86_32"
X86_BIT64 = "X86_64"
X86_32 = "X86_32"
X86_64 = "X86_64"


class RobotAssetPlatform(str, Enum, metaclass=CaseInsensitiveEnumMeta):
Expand All @@ -112,7 +113,7 @@ class RobotAssetType(str, Enum, metaclass=CaseInsensitiveEnumMeta):

PYTHON = "PYTHON"
PYTHON_PIP = "PYTHON_PIP"
NODE_JS = "NODEJS"
NODEJS = "NODEJS"


class RobotFilterContext(str, Enum, metaclass=CaseInsensitiveEnumMeta):
Expand Down
Loading