Skip to content

v1.4.0

Compare
Choose a tag to compare
@rap1ds rap1ds released this 17 Apr 07:37
· 347 commits to master since this release

Added

  • sdkType property to the type handler configuration. This property
    replaces the deprecated type
    property. #94
  • appType property to the type handler configuration. This property
    replaces the deprecated customType
    property. #94
  • canHandle property to the type handler configuration. The value is
    expected to be a predicate function (i.e. function that returns
    truthy or falsy values). If canHandle returns truthy value, the
    writer function will called. This allows users to fully customize
    how they use read and writer the data types to and from
    SDK. #94
  • Added information about the canHandle function in the "Your own
    types"
    document. #94

Deprecated

  • type property in type handler configuration. Use sdkType instead.
  • customType property in type handler configuration. Use appType instead.