@unito/integrations-platform-client 0.44.3 → 0.44.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,13 +8,13 @@ This component is a JS client library to communicate with the Integrations Platf
|
|
|
8
8
|
1. Install the library:
|
|
9
9
|
|
|
10
10
|
```sh
|
|
11
|
-
npm install @
|
|
11
|
+
npm install @unito/integrations-platform-client
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
2. Use the library:
|
|
15
15
|
|
|
16
16
|
```typescript
|
|
17
|
-
import IntegrationsPlatform from '@
|
|
17
|
+
import IntegrationsPlatform from '@unito/integrations-platform-client';
|
|
18
18
|
|
|
19
19
|
IntegrationsPlatform.defaults.baseUrl = 'http://enpoint.to.the.server';
|
|
20
20
|
IntegrationsPlatform.defaults.headers = { Authorization: 'Bearer YOUR_TOKEN' };
|