Skip to content

🌿 Fern Regeneration -- July 16, 2025 #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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: 2 additions & 0 deletions src/pipedream/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
ListAppsResponse,
PageInfo,
ProjectEnvironment,
ProjectId,
ProjectInfoResponse,
ProjectInfoResponseAppsItem,
PropOption,
Expand Down Expand Up @@ -133,6 +134,7 @@
"Pipedream",
"PipedreamEnvironment",
"ProjectEnvironment",
"ProjectId",
"ProjectInfoResponse",
"ProjectInfoResponseAppsItem",
"PropOption",
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import typing

import httpx
from .types.project_environment import ProjectEnvironment
from ._.types.project_environment import ProjectEnvironment
from .accounts.client import AccountsClient, AsyncAccountsClient
from .actions.client import ActionsClient, AsyncActionsClient
from .app_categories.client import AppCategoriesClient, AsyncAppCategoriesClient
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import typing

import httpx
from ..types.project_environment import ProjectEnvironment
from .._.types.project_environment import ProjectEnvironment
from .http_client import AsyncHttpClient, HttpClient


Expand Down
2 changes: 2 additions & 0 deletions src/pipedream/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
from .list_apps_response import ListAppsResponse
from .page_info import PageInfo
from .project_environment import ProjectEnvironment
from .project_id import ProjectId
from .project_info_response import ProjectInfoResponse
from .project_info_response_apps_item import ProjectInfoResponseAppsItem
from .prop_option import PropOption
Expand Down Expand Up @@ -108,6 +109,7 @@
"ListAppsResponse",
"PageInfo",
"ProjectEnvironment",
"ProjectId",
"ProjectInfoResponse",
"ProjectInfoResponseAppsItem",
"PropOption",
Expand Down
3 changes: 3 additions & 0 deletions src/pipedream/types/project_id.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.

ProjectId = str
Loading