3.3.3
Merged pull requests:
- Added
error.kinveyRequestId
as a property to error objects. This property is set to theX-Kinvey-Request-Id
header value of a Kinvey API response. It isundefined
by default. #84 - Added a global get/set default timeout property on the client. The library sets the default timeout to a value of 60 seconds. You can change this value by passing a default timeout when you initialize the SDK. #85
Kinvey.initialize({
appKey: '<appKey>',
appSecret: '<appSecret>',
defaultTimeout: 30000 // 30 seconds in ms
});
- Delta fetch requests now works with queries. #83
- Fixed a check with
instanceof
in Mobile Identity Connect that caused aTypeError
to be thrown. #87 - Entities will now be persisted when calling
store.sync
on a data store instance. #88 - Fixed issues that caused inconsistencies with Error objects. #89
- Sort, limit, and skip now work correctly when querying the local cache. #90