Skip to content

Releases: themost-framework/client

2.16.3

07 Jul 07:06
53e8718
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.16.0...2.16.3

2.16.0

30 Jun 07:59
6211477
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.15.0...2.16.0

2.15.0

25 Apr 10:06
6e22452
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.14.3...2.15.0

2.14.3

02 Apr 10:44
a4b0701
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.14.1...2.14.3

2.14.1

01 Apr 06:27
a60db70
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.14.0...2.14.1

2.14.0

31 Mar 20:20
0f5c7db
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.13.0...2.14.0

2.13.0

23 Jan 08:43
658491f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.12.0...2.13.0

2.12.0

08 Dec 06:52
06f688d
Compare
Choose a tag to compare

What's Changed

@themost/client@2.12.0 implements a cross environment data service for using @themost/client across different environments like node.js or browser.

import { BasicDataContext } from '@themost/client/common';

const context = new BasicDataContext("http://localhost:8080/api/", {
            useResponseConversion: true
        });
const items = await context
  .model("Products")
  .asQueryable()
  .select(({ id, name, category, model, price }) => ({
    id,
    name,
    category,
    model,
    price,
  }))
  .where((x: { price: number, category: string }) => {
    return x.price > 500 && x.category === "Laptops";
  })
  .orderByDescending((x: { price: number, category: string }) => x.price)
  .take(10).getItems();

Full Changelog: 2.11.0...2.12.0

2.11.0

07 Nov 09:17
43626d8
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.10.0...2.11.0

2.10.0

04 Nov 06:07
5bbb77e
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.9.6...2.10.0