Skip to content

Releases: Newt-Inc/newt-client-js

v3.2.4

23 Jan 13:51
Compare
Choose a tag to compare

Fixes

  • Fix the type of getFirstContent. #59

v3.2.3

10 Jan 00:23
Compare
Choose a tag to compare

Security Fixes

  • bump qs from 6.10.1 to 6.10.3 #57
  • bump json5 from 2.2.0 to 2.2.3 #58

v3.2.2

28 Oct 01:10
Compare
Choose a tag to compare

Security Fixes

  • bump minimatch from 3.0.4 to 3.1.2 #56

v3.2.1

26 Oct 01:07
Compare
Choose a tag to compare

Types

  • Add customOrder to Content. #54
  • Export the type of Media. #54

v3.2.0

25 Oct 08:23
Compare
Choose a tag to compare

Features

  • Add adapter option for createClient. #53

v3.1.1

29 Jul 08:13
Compare
Choose a tag to compare

Security Fixes

  • bump terser from 5.10.0 to 5.14.2 #51

v3.1.0

26 May 23:51
Compare
Choose a tag to compare

Features

  • Add getFirstContent method. #47

Fixes

  • Fix the error message of getContents. #49

v3.0.2

11 Apr 07:48
Compare
Choose a tag to compare

Types

  • Export the type of Client. #45

v3.0.1

11 Apr 02:07
Compare
Choose a tag to compare

Fixes

  • Format error data. #41
  • Fixed types returned by getApp. #43

v3.0.0

05 Apr 08:56
Compare
Choose a tag to compare

Breaking Changes

  • Changed to encode query parameters. #35
// before
client
  .getContents({
    appUid: 'YOUR_APP_UID',
    modelUid: 'YOUR_MODEL_UID',
    query: {
      title: { match: encodeURIComponent('アップデート') },
    }
  })

// after
client
  .getContents({
    appUid: 'YOUR_APP_UID',
    modelUid: 'YOUR_MODEL_UID',
    query: {
      title: { match: 'アップデート' },
    }
  })

Bug Fixes

  • Fixed fix:eslint command. #32
  • Fixed to remove model and owner properties from the _sys object. #37

Security Fixes

  • bump minimist from 1.2.5 to 1.2.6. #34

Prettier

  • Updated Prettier rules. #39