@schally/node-akeneo-api-client 1.0.9 → 1.0.11
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,6 +1,6 @@
|
|
|
1
1
|
# Node Akeneo API Client
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/node-akeneo-api-client)
|
|
3
|
+
[](https://www.npmjs.com/package/@schally/node-akeneo-api-client)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://codecov.io/gh/schallym/node-akeneo-api-client)
|
|
6
6
|
|
|
@@ -19,7 +19,7 @@ A complete and up-to-date Node.js client for the Akeneo PIM REST API. This libra
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npm install node-akeneo-api-client
|
|
22
|
+
npm install @schally/node-akeneo-api-client
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Quick Start
|
|
@@ -27,7 +27,7 @@ npm install node-akeneo-api-client
|
|
|
27
27
|
### Basic Setup
|
|
28
28
|
|
|
29
29
|
```javascript
|
|
30
|
-
const { AkeneoClient } = require('node-akeneo-api-client');
|
|
30
|
+
const { AkeneoClient } = require('@schally/node-akeneo-api-client');
|
|
31
31
|
|
|
32
32
|
// Initialize with classic connection
|
|
33
33
|
const client = new AkeneoClient({
|
|
@@ -114,7 +114,7 @@ try {
|
|
|
114
114
|
This library is written in TypeScript and includes comprehensive type definitions:
|
|
115
115
|
|
|
116
116
|
```typescript
|
|
117
|
-
import { AkeneoClient, Product, Category, Family } from 'node-akeneo-api-client';
|
|
117
|
+
import { AkeneoClient, Product, Category, Family } from '@schally/node-akeneo-api-client';
|
|
118
118
|
|
|
119
119
|
const client = new AkeneoClient({
|
|
120
120
|
baseUrl: 'https://your-akeneo-instance.com',
|