1.2.2 • Published 2 years ago

@plasma-platform/service-items v1.2.2

Weekly downloads
29
License
CC-BY-4.0
Repository
gitlab
Last release
2 years ago

version nextVersion downloads license dependency


Full documentation install: npm i @plasma-platform/service-items -S

Short documentation

Table of Contents

ServiceItems

Items API

createNewItem

Create new item

Parameters

Examples

(async () => {
  const service = new Service(url, token);
  const request = await service.createNewItem(params);
})();

Returns Promise<any>

getItemById

Get item by id

Parameters

Examples

(async () => {
  const service = new Service(url);
  const request = await service.getItemById(id);
})();

Returns Promise<any>

getItems

Get items

Parameters

Examples

(async () => {
  const service = new Service(url);
  const request = await service.getItems({ids: [1,2]});
})();

Returns Promise<object> object of items list

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.0-alpha.0

4 years ago