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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions nuon/api/accounts/complete_user_journey.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
def _get_kwargs(
journey_name: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "post",
"url": "/v1/account/user-journeys/{journey_name}/complete".format(
Expand Down
1 change: 1 addition & 0 deletions nuon/api/accounts/get_current_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


def _get_kwargs() -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "get",
"url": "/v1/account",
Expand Down
1 change: 1 addition & 0 deletions nuon/api/accounts/get_user_journeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


def _get_kwargs() -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "get",
"url": "/v1/account/user-journeys",
Expand Down
1 change: 1 addition & 0 deletions nuon/api/accounts/reset_user_journey.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
def _get_kwargs(
journey_name: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "post",
"url": "/v1/account/user-journeys/{journey_name}/reset".format(
Expand Down
8 changes: 8 additions & 0 deletions nuon/api/actions/create_action_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ def sync_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""create action config

Create an action workflow configuration.

Args:
app_id (str):
action_id (str):
Expand Down Expand Up @@ -130,6 +132,8 @@ def sync(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""create action config

Create an action workflow configuration.

Args:
app_id (str):
action_id (str):
Expand Down Expand Up @@ -160,6 +164,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""create action config

Create an action workflow configuration.

Args:
app_id (str):
action_id (str):
Expand Down Expand Up @@ -193,6 +199,8 @@ async def asyncio(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""create action config

Create an action workflow configuration.

Args:
app_id (str):
action_id (str):
Expand Down
8 changes: 8 additions & 0 deletions nuon/api/actions/create_action_workflow_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ def sync_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""create action workflow config

Create an action workflow configuration.

Args:
action_workflow_id (str):
body (ServiceCreateActionWorkflowConfigRequest):
Expand Down Expand Up @@ -124,6 +126,8 @@ def sync(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""create action workflow config

Create an action workflow configuration.

Args:
action_workflow_id (str):
body (ServiceCreateActionWorkflowConfigRequest):
Expand Down Expand Up @@ -151,6 +155,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""create action workflow config

Create an action workflow configuration.

Args:
action_workflow_id (str):
body (ServiceCreateActionWorkflowConfigRequest):
Expand Down Expand Up @@ -181,6 +187,8 @@ async def asyncio(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""create action workflow config

Create an action workflow configuration.

Args:
action_workflow_id (str):
body (ServiceCreateActionWorkflowConfigRequest):
Expand Down
8 changes: 8 additions & 0 deletions nuon/api/actions/create_app_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ def sync_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""create an app action

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionRequest):
Expand Down Expand Up @@ -124,6 +126,8 @@ def sync(
) -> AppActionWorkflow | StderrErrResponse | None:
"""create an app action

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionRequest):
Expand Down Expand Up @@ -151,6 +155,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""create an app action

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionRequest):
Expand Down Expand Up @@ -181,6 +187,8 @@ async def asyncio(
) -> AppActionWorkflow | StderrErrResponse | None:
"""create an app action

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionRequest):
Expand Down
8 changes: 8 additions & 0 deletions nuon/api/actions/create_app_action_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ def sync_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""create an app action workflow

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionWorkflowRequest):
Expand Down Expand Up @@ -124,6 +126,8 @@ def sync(
) -> AppActionWorkflow | StderrErrResponse | None:
"""create an app action workflow

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionWorkflowRequest):
Expand Down Expand Up @@ -151,6 +155,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""create an app action workflow

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionWorkflowRequest):
Expand Down Expand Up @@ -181,6 +187,8 @@ async def asyncio(
) -> AppActionWorkflow | StderrErrResponse | None:
"""create an app action workflow

Create an action workflow for an app.

Args:
app_id (str):
body (ServiceCreateAppActionWorkflowRequest):
Expand Down
9 changes: 9 additions & 0 deletions nuon/api/actions/delete_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
def _get_kwargs(
action_id: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "delete",
"url": "/v1/actions/{action_id}".format(
Expand Down Expand Up @@ -79,6 +80,8 @@ def sync_detailed(
) -> Response[StderrErrResponse | bool]:
"""delete an action

Delete an action workflow.

Args:
action_id (str):

Expand Down Expand Up @@ -108,6 +111,8 @@ def sync(
) -> StderrErrResponse | bool | None:
"""delete an action

Delete an action workflow.

Args:
action_id (str):

Expand All @@ -132,6 +137,8 @@ async def asyncio_detailed(
) -> Response[StderrErrResponse | bool]:
"""delete an action

Delete an action workflow.

Args:
action_id (str):

Expand Down Expand Up @@ -159,6 +166,8 @@ async def asyncio(
) -> StderrErrResponse | bool | None:
"""delete an action

Delete an action workflow.

Args:
action_id (str):

Expand Down
9 changes: 9 additions & 0 deletions nuon/api/actions/delete_action_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
def _get_kwargs(
action_workflow_id: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "delete",
"url": "/v1/action-workflows/{action_workflow_id}".format(
Expand Down Expand Up @@ -79,6 +80,8 @@ def sync_detailed(
) -> Response[StderrErrResponse | bool]:
"""delete an action workflow

Delete an action workflow.

Args:
action_workflow_id (str):

Expand Down Expand Up @@ -108,6 +111,8 @@ def sync(
) -> StderrErrResponse | bool | None:
"""delete an action workflow

Delete an action workflow.

Args:
action_workflow_id (str):

Expand All @@ -132,6 +137,8 @@ async def asyncio_detailed(
) -> Response[StderrErrResponse | bool]:
"""delete an action workflow

Delete an action workflow.

Args:
action_workflow_id (str):

Expand Down Expand Up @@ -159,6 +166,8 @@ async def asyncio(
) -> StderrErrResponse | bool | None:
"""delete an action workflow

Delete an action workflow.

Args:
action_workflow_id (str):

Expand Down
1 change: 1 addition & 0 deletions nuon/api/actions/get_action_latest_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
app_id: str,
action_id: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "get",
"url": "/v1/apps/{app_id}/actions/{action_id}/latest-config".format(
Expand Down
9 changes: 9 additions & 0 deletions nuon/api/actions/get_action_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
def _get_kwargs(
action_workflow_id: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "get",
"url": "/v1/action-workflows/{action_workflow_id}".format(
Expand Down Expand Up @@ -81,6 +82,8 @@ def sync_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""get an app action workflow by action workflow id

Return an app action workflow by id.

Args:
action_workflow_id (str):

Expand Down Expand Up @@ -110,6 +113,8 @@ def sync(
) -> AppActionWorkflow | StderrErrResponse | None:
"""get an app action workflow by action workflow id

Return an app action workflow by id.

Args:
action_workflow_id (str):

Expand All @@ -134,6 +139,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflow | StderrErrResponse]:
"""get an app action workflow by action workflow id

Return an app action workflow by id.

Args:
action_workflow_id (str):

Expand Down Expand Up @@ -161,6 +168,8 @@ async def asyncio(
) -> AppActionWorkflow | StderrErrResponse | None:
"""get an app action workflow by action workflow id

Return an app action workflow by id.

Args:
action_workflow_id (str):

Expand Down
9 changes: 9 additions & 0 deletions nuon/api/actions/get_action_workflow_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
def _get_kwargs(
action_workflow_config_id: str,
) -> dict[str, Any]:

_kwargs: dict[str, Any] = {
"method": "get",
"url": "/v1/action-workflows/configs/{action_workflow_config_id}".format(
Expand Down Expand Up @@ -81,6 +82,8 @@ def sync_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""get an app action workflow config

Return an action workflow configuration by id.

Args:
action_workflow_config_id (str):

Expand Down Expand Up @@ -110,6 +113,8 @@ def sync(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""get an app action workflow config

Return an action workflow configuration by id.

Args:
action_workflow_config_id (str):

Expand All @@ -134,6 +139,8 @@ async def asyncio_detailed(
) -> Response[AppActionWorkflowConfig | StderrErrResponse]:
"""get an app action workflow config

Return an action workflow configuration by id.

Args:
action_workflow_config_id (str):

Expand Down Expand Up @@ -161,6 +168,8 @@ async def asyncio(
) -> AppActionWorkflowConfig | StderrErrResponse | None:
"""get an app action workflow config

Return an action workflow configuration by id.

Args:
action_workflow_config_id (str):

Expand Down
Loading
Loading