@primexperts.co/pulse-agent 2.1.0 → 2.2.0
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @primexperts/pulse-agent
|
|
1
|
+
# @primexperts.co/pulse-agent
|
|
2
2
|
|
|
3
3
|
Embeddable floating Pulse chat widget for client websites.
|
|
4
4
|
|
|
@@ -13,13 +13,13 @@ Embeddable floating Pulse chat widget for client websites.
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install @primexperts/pulse-agent@latest
|
|
16
|
+
npm install @primexperts.co/pulse-agent@latest
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
21
|
```ts
|
|
22
|
-
import { createPulseAgent } from '@primexperts/pulse-agent';
|
|
22
|
+
import { createPulseAgent } from '@primexperts.co/pulse-agent';
|
|
23
23
|
|
|
24
24
|
const agent = createPulseAgent({
|
|
25
25
|
slug: 'client-abc',
|
|
@@ -35,7 +35,7 @@ agent.open();
|
|
|
35
35
|
## Browser/CDN Usage (No Bundler)
|
|
36
36
|
|
|
37
37
|
```html
|
|
38
|
-
<script src="https://unpkg.com/@primexperts/pulse-agent@latest/dist/browser/pulse-agent.global.js"></script>
|
|
38
|
+
<script src="https://unpkg.com/@primexperts.co/pulse-agent@latest/dist/browser/pulse-agent.global.js"></script>
|
|
39
39
|
<script>
|
|
40
40
|
const agent = window.PulseAgent.createPulseAgent({
|
|
41
41
|
slug: 'client-abc',
|