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
9 changes: 5 additions & 4 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
"exported_filename": "pipedream.py"
}
},
"originGitCommit": "ba238238cabee8772c6de87a362090b7248aa9ae",
"originGitCommitIsDirty": true,
"invokedBy": "manual",
"sdkVersion": "1.1.13"
"originGitCommit": "b399bbbdcc0ed7ed414d0fcc795c5c6b6dea46eb",
"originGitCommitIsDirty": false,
"invokedBy": "ci",
"ciProvider": "github",
"sdkVersion": "2.0.1"
}
261 changes: 130 additions & 131 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "pipedream"
version = "2.0.0"
version = "2.0.1"
description = ""
readme = "README.md"
authors = []
Expand Down
4 changes: 2 additions & 2 deletions src/pipedream/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ def get_headers(self) -> typing.Dict[str, str]:
import platform

headers: typing.Dict[str, str] = {
"User-Agent": "pipedream/2.0.0",
"User-Agent": "pipedream/2.0.1",
"X-Fern-Language": "Python",
"X-Fern-Runtime": f"python/{platform.python_version()}",
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
"X-Fern-SDK-Name": "pipedream",
"X-Fern-SDK-Version": "2.0.0",
"X-Fern-SDK-Version": "2.0.1",
**(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 @@ -28,7 +28,6 @@

ConfigurableProp = typing.Union[
ConfigurablePropAlert,
ConfigurablePropAny,
ConfigurablePropApp,
ConfigurablePropBoolean,
ConfigurablePropDataStore,
Expand All @@ -47,7 +46,8 @@
ConfigurablePropDiscordChannel,
ConfigurablePropDiscordChannelArray,
ConfigurablePropInteger,
ConfigurablePropObject,
ConfigurablePropString,
ConfigurablePropStringArray,
ConfigurablePropObject,
ConfigurablePropAny,
]
4 changes: 2 additions & 2 deletions src/pipedream/types/configured_prop_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
from .configured_prop_value_string_array import ConfiguredPropValueStringArray

ConfiguredPropValue = typing.Union[
ConfiguredPropValueAny,
ConfiguredPropValueApp,
ConfiguredPropValueBoolean,
ConfiguredPropValueInteger,
ConfiguredPropValueObject,
ConfiguredPropValueSql,
ConfiguredPropValueString,
ConfiguredPropValueStringArray,
ConfiguredPropValueObject,
ConfiguredPropValueAny,
]
Loading