Skip to content

Commit 80b82db

Browse files
Ambiguate RemoteData data field type (#64)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 92a2bfd commit 80b82db

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "MergePythonClient"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = ""
55
readme = "README.md"
66
authors = []

src/merge/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2121
headers: typing.Dict[str, str] = {
2222
"X-Fern-Language": "Python",
2323
"X-Fern-SDK-Name": "MergePythonClient",
24-
"X-Fern-SDK-Version": "1.0.3",
24+
"X-Fern-SDK-Version": "1.0.4",
2525
}
2626
if self._account_token is not None:
2727
headers["X-Account-Token"] = self._account_token

src/merge/resources/accounting/types/remote_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class RemoteData(pydantic.BaseModel):
1515
path: str
16-
data: typing.Optional[typing.Dict[str, typing.Any]]
16+
data: typing.Optional[typing.Any]
1717

1818
def json(self, **kwargs: typing.Any) -> str:
1919
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}

src/merge/resources/ats/types/remote_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class RemoteData(pydantic.BaseModel):
1515
path: str
16-
data: typing.Optional[typing.Dict[str, typing.Any]]
16+
data: typing.Optional[typing.Any]
1717

1818
def json(self, **kwargs: typing.Any) -> str:
1919
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}

src/merge/resources/crm/types/remote_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class RemoteData(pydantic.BaseModel):
1515
path: str
16-
data: typing.Optional[typing.Dict[str, typing.Any]]
16+
data: typing.Optional[typing.Any]
1717

1818
def json(self, **kwargs: typing.Any) -> str:
1919
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}

src/merge/resources/ticketing/types/remote_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class RemoteData(pydantic.BaseModel):
1515
path: str
16-
data: typing.Optional[typing.Dict[str, typing.Any]]
16+
data: typing.Optional[typing.Any]
1717

1818
def json(self, **kwargs: typing.Any) -> str:
1919
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}

0 commit comments

Comments
 (0)