arifa-client 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,7 +20,7 @@ yarn add arifa-client
20
20
  #### Import and Initialize
21
21
 
22
22
  ```js
23
- import { ArifaClient } from "arifa-client";
23
+ import ArifaClient from "arifa-client";
24
24
 
25
25
  const client = new ArifaClient({
26
26
  apiKey: "YOUR_API_KEY",
@@ -104,7 +104,7 @@ if (client.connected()) {
104
104
  ## ## ArifaClient Usage Example
105
105
 
106
106
  ```jsx
107
- import { ArifaClient } from "arifa-client";
107
+ import ArifaClient from "arifa-client";
108
108
 
109
109
  // Initialize client
110
110
  const client = new ArifaClient({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arifa-client",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "JavaScript/TypeScript client SDK for Arifa Realtime Notification Service",
5
5
  "main": "dist/arifa-client.iife.js",
6
6
  "module": "dist/arifa-client.esm.js",