Skip to content

Bug fixes

Compare
Choose a tag to compare
@nhathiwala nhathiwala released this 18 Nov 06:38
· 20 commits to master since this release

[1.0.3] - Bug fixes

  • [Bug] queryId from QuerySnapshot was made nullable.

[1.0.2] - Added support for Facet Values & Insights

  • [Added] Facet values AlgoliaFacetValueSnapshot: Now you can get list of all facet value to implement advance filtering options.

  • [Added] Insights implementation.

    // Create an Event
      AlgoliaEvent event = AlgoliaEvent(
        eventType: AlgoliaEventType.view,
        eventName: 'View contact',
        index: 'contacts',
        userToken: 'userId123',
      );
     // Push Event
    await algolia.instance.pushEvents([event]);
  • [Added] queryId to query snapshot when click analytics is enabled.

  • [Bug] Fixed null error in query snapshot.

  • [Improved] Improved concurrency of snapshot interface by making constructor base multiple mapped value to a getter parameters.