Skip to content

Commit

Permalink
Merge pull request #304 from intercom/readme-fix
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
hypeofpipe committed Feb 9, 2022
2 parents bff2e03 + 0605529 commit a3c534b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The Node SDK has been updated to support latest API version (2.4). The update al
yarn add intercom-client
```

**This client is intended for server side use only. Please use the [Intercom Javascript SDK](https://developers.intercom.com/v2.4/docs/intercom-javascript) for client-side operations.**
**This client is intended for server side use only. Please use the [Intercom Javascript SDK](https://developers.intercom.com/installing-intercom/docs/intercom-for-web) for client-side operations.**

## Testing

Expand Down Expand Up @@ -901,7 +901,7 @@ const article = await client.helpCenter.collections.update({
id: '123',
name: 'Thanks for everything',
description: 'English description',
translated_content: {
translatedContent: {
fr: {
name: 'Allez les verts',
description: 'French description',
Expand Down Expand Up @@ -934,7 +934,7 @@ const response = client.helpCenter.collections.list({
```typescript
const collection = await client.helpCenter.sections.create({
name: 'Thanks for everything',
parent_id: '1234',
parentId: '1234',
translatedContent: {
fr: {
name: 'Allez les verts',
Expand All @@ -956,8 +956,8 @@ const response = await client.helpCenter.sections.find({ id: '123' });
const article = await client.helpCenter.sections.update({
id: '123',
name: 'Thanks for everything',
parent_id: '456',
translated_content: {
parentId: '456',
translatedContent: {
fr: {
name: 'Allez les verts',
description: 'French description',
Expand Down

0 comments on commit a3c534b

Please sign in to comment.