@ariary/ariary 2.0.8 → 2.0.9

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 +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,15 +5,17 @@ Complete SDK for managing payments and notifications with Ariari.
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install ariari-ariari
8
+ npm install @ariary/ariary
9
9
  ```
10
10
 
11
11
  ## Configuration
12
12
 
13
13
  ```typescript
14
- import Ariari from 'ariari-ariari';
14
+ import { Ariari } from '@ariary/ariary';
15
15
 
16
- Ariari.config({
16
+ import { setConfig } from '@ariary/ariary/config';
17
+
18
+ setConfig({
17
19
  projectId: 'your-project-id',
18
20
  secretId: 'your-secret-id'
19
21
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ariary/ariary",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "SDK officiel pour l'API de paiement Ariary",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",