0.0.2 • Published 4 years ago

shopware-admin-api v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Admin Node-API Client for Shopware 6

This code highly bases on the Administration Code and made NodeJs compatible.

Creation of API Client

Using Username and Password

import {createFromPasswordAndLogin} from 'shopware-admin-api';

let api = await createFromPasswordAndLogin('http://myshop.com', 'username', 'password', 1);

Using Integration

import {createFromIntegration} from 'shopware-admin-api';

let api = await createFromIntegration('http://myshop.com', 'client_id', 'client_secret', 1);

Usage

// Create repository
const productRepository = api.create('product');

// Access default context
const context = api.defaultContext();

// Acccess entity definition (contains the schema, required fields etc.)
const definition = api.EntityDefinition;

console.log(definition.get('product'))
console.log(definition.getRequiredFields('product'))

License

MIT

0.0.2

4 years ago

0.0.1

4 years ago