Skip to content

Releases: mindenit/answers-kit

v0.1.4

03 Apr 20:45

Choose a tag to compare

Changes

  • Added a utility for enhanced URL params handling.

v0.1.3

11 Feb 12:41

Choose a tag to compare

Features

Add missing exports.

Breaking changes

Drop CJS support.

v0.1.2

02 Feb 23:09

Choose a tag to compare

Features

Added findOne method for universities, faculties and subjects modules:

// Get a university
const university = await kit.universities.findOne(1);

// Get a faculty
const faculty = await kit.faculty.findOne(1);

// Get a subject
const subject = await kit.subjects.findOne(1);

Breaking Changes

Simplified findOne method in tests module:

// Before
const test = await kit.tests.findOne({ id: 1 });

// After
const test = await kit.tests.findOne(1)

v0.1.1

24 Jan 21:20

Choose a tag to compare

Changes

  • Add AnswersError export;
  • Improve package's bundle size.

v0.1.0

23 Jan 21:21

Choose a tag to compare

chore: v0.1.0 release