Skip to content

Commit 1873eeb

Browse files
author
Colm Doyle
committed
Merge branch 'master' into optional-fields-346
2 parents 353a2e8 + 794c443 commit 1873eeb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ yarn add intercom-client
2626
Import Intercom:
2727

2828
```typescript
29-
import { Client } from './dist/index';
29+
import { Client } from 'intercom-client';
3030
```
3131

3232
Create a client using access tokens:
@@ -68,7 +68,7 @@ If you are using the european instance of intercom and would like to call it dir
6868
```typescript
6969
const client = new Client({ tokenAuth: { token: 'my_token' } });
7070
client.useRequestOpts({
71-
baseUrl: 'https://api.eu.intercom.io',
71+
baseURL: 'https://api.eu.intercom.io',
7272
});
7373
```
7474

test/integration/companies.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('Companies', () => {
6969
page: 1,
7070
perPage: 35,
7171
order: Order.DESC,
72-
tagId: '2084335',
72+
tagId: '7882526',
7373
});
7474

7575
assert.notEqual(response, undefined);

0 commit comments

Comments
 (0)