Skip to content

🌿 Fern Regeneration -- August 6, 2025 #53

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: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pipedream"

[tool.poetry]
name = "pipedream"
version = "1.0.3"
version = "1.0.4"
description = ""
readme = "README.md"
authors = []
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
6 changes: 3 additions & 3 deletions 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 All @@ -27,10 +27,10 @@ def __init__(

def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"User-Agent": "pipedream/1.0.3",
"User-Agent": "pipedream/1.0.4",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "pipedream",
"X-Fern-SDK-Version": "1.0.3",
"X-Fern-SDK-Version": "1.0.4",
**(self.get_custom_headers() or {}),
}
if self._project_environment is not None:
Expand Down
4 changes: 2 additions & 2 deletions src/pipedream/types/configurable_prop.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ class ConfigurableProp(UniversalBaseModel):
A configuration or input field for a component.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""

type: typing.Optional[str] = None
type: str
label: typing.Optional[str] = pydantic.Field(default=None)
"""
Value to use as an input label. In cases where `type` is "app", should load the app via `getApp`, etc. and show `app.name` instead.
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_alert.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ConfigurablePropAlert(UniversalBaseModel):
The content of the alert, which can include HTML or plain text.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_any.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ConfigurablePropAny(UniversalBaseModel):
type: typing.Optional[typing.Literal["any"]] = None
name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ConfigurablePropApp(UniversalBaseModel):
The name slug of the app, e.g. 'github', 'slack', etc. This is used to identify the app for which the account is being configured.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_boolean.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ConfigurablePropBoolean(UniversalBaseModel):
type: typing.Optional[typing.Literal["boolean"]] = None
name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_discord.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ConfigurablePropDiscord(UniversalBaseModel):
type: typing.Optional[typing.Literal["$.discord.channel"]] = None
name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_integer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ConfigurablePropInteger(UniversalBaseModel):
The maximum value for this integer prop.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ConfigurablePropObject(UniversalBaseModel):
type: typing.Optional[typing.Literal["object"]] = None
name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ConfigurablePropString(UniversalBaseModel):
If true, this prop is a secret and should not be displayed in plain text.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pipedream/types/configurable_prop_string_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ConfigurablePropStringArray(UniversalBaseModel):
If true, this prop is a secret and should not be displayed in plain text.
"""

name: typing.Optional[str] = pydantic.Field(default=None)
name: str = pydantic.Field()
"""
When building `configuredProps`, make sure to use this field as the key when setting the prop value
"""
Expand Down
Loading