1.9.0 • Published 3 months ago

@emilgroup/tenant-sdk v1.9.0

Weekly downloads
-
License
Unlicense
Repository
-
Last release
3 months ago

Emil Tenant SDK

This TypeScript/JavaScript client utilizes axios. The generated module can be used with client-based applications (i.e. React).

Language level

  • ES5 - you must have a Promises/A+ library installed
  • ES6

Module system

  • CommonJS
  • ES6 module system

Although this package can be used in both TypeScript and JavaScript, it is intended to be used with TypeScript. The definition should be automatically resolved via package.json. (Reference). For more information, you can go to Emil Api documentation.

Consuming

Navigate to the folder of your consuming project and run one of the following commands:

npm install @emilgroup/tenant-sdk@1.9.0 --save

or

yarn add @emilgroup/tenant-sdk@1.9.0

And then you can import UsersApi.

import { UsersApi } from '@emilgroup/tenant-sdk'

const usersApi = new UsersApi();

To use authentication protected endpoints, you have to first authorize. To do so, use the authorize function in UsersApi:

async function listUsers(): Promise<Void> {
    try {
        const usersApi = new UsersApi();

        await usersApi.authorize('username', 'password');

        const { data: { items } } = await usersApi.listUsers();

        console.log(items);
    } catch(error) {
      // process error
  }
}
1.9.0

3 months ago

1.8.0

3 months ago

1.7.0

5 months ago

1.5.1

6 months ago

1.5.0

7 months ago

1.4.0

8 months ago

1.3.0

10 months ago

1.2.2

11 months ago

1.2.1

12 months ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago