Skip to content

Commit 6f3212c

Browse files
SDK regeneration (#280)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent a865c7c commit 6f3212c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Intercom Python Library
22

33
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fintercom%2Fpython-intercom)
4-
[![pypi](https://img.shields.io/pypi/v/intercom-python)](https://pypi.python.org/pypi/intercom-python)
4+
[![pypi](https://img.shields.io/pypi/v/python-intercom)](https://pypi.python.org/pypi/python-intercom)
55

66
The Intercom Python library provides convenient access to the Intercom API from Python.
77

88
## Installation
99

1010
```sh
11-
pip install intercom-python
11+
pip install python-intercom
1212
```
1313

1414
## Reference

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
2-
name = "intercom-python"
2+
name = "python-intercom"
33

44
[tool.poetry]
5-
name = "intercom-python"
6-
version = "v4.0.0a0"
5+
name = "python-intercom"
6+
version = "4.0.0a2"
77
description = ""
88
readme = "README.md"
99
authors = []

src/intercom/core/client_wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def __init__(
2020

2121
def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
23-
"User-Agent": "intercom-python/v4.0.0a0",
23+
"User-Agent": "python-intercom/4.0.0a2",
2424
"X-Fern-Language": "Python",
25-
"X-Fern-SDK-Name": "intercom-python",
26-
"X-Fern-SDK-Version": "v4.0.0a0",
25+
"X-Fern-SDK-Name": "python-intercom",
26+
"X-Fern-SDK-Version": "4.0.0a2",
2727
}
2828
headers["Authorization"] = f"Bearer {self._get_token()}"
2929
return headers

src/intercom/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from importlib import metadata
22

3-
__version__ = metadata.version("intercom-python")
3+
__version__ = metadata.version("python-intercom")

0 commit comments

Comments
 (0)