@spreeloop/orange_money 1.0.0 → 1.0.2

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 +5 -2
package/README.md CHANGED
@@ -56,7 +56,7 @@ npm run test
56
56
  Payment instance.
57
57
 
58
58
  ```typescript
59
- import {OrangeMoneyPaymentV2} from @spreeloop/orange_money;
59
+ import {OrangeMoneyPayment} from @spreeloop/orange_money;
60
60
 
61
61
  // Creates payment configuration
62
62
  const config = {
@@ -73,7 +73,7 @@ const config = {
73
73
  logger: console;
74
74
  };
75
75
 
76
- const payment = OrangeMoneyPaymentV2.createPayment(config);
76
+ const payment = OrangeMoneyPayment.createPayment(config);
77
77
  ```
78
78
 
79
79
  - ### Generate access-token
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@spreeloop/orange_money",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A orange money api integration package",
5
- "git repository": "https://github.com/spreeloop/core-ts/orange_money",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/spreeloop/core-ts/tree/master/orange_money"
8
+ },
6
9
  "author": "Spreeloop",
7
10
  "scripts": {
8
11
  "lint": "eslint --max-warnings=0 --ext .js,.ts .",