Socket
Socket
Sign inDemoInstall

meilisearch

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meilisearch - npm Package Compare versions

Comparing version 0.11.1 to 0.11.2

6

dist/types/types.d.ts

@@ -1,2 +0,2 @@

// Type definitions for meilisearch 0.11.1
// Type definitions for meilisearch 0.11.2
// Project: https://github.com/meilisearch/meilisearch-js

@@ -37,3 +37,3 @@ // Definitions by: cvermand <charlotte@meilisearch.com> <https://github.com/meilisearch>

}
export declare type FacetFilter = string | FacetFilter[];
export declare type FacetFilter = (string | string[])[];
export interface SearchParams {

@@ -47,3 +47,3 @@ offset?: number;

filters?: string;
facetFilters?: FacetFilter[];
facetFilters?: string | FacetFilter | FacetFilter[];
facetsDistribution?: string[];

@@ -50,0 +50,0 @@ matches?: boolean;

{
"name": "meilisearch",
"version": "0.11.1",
"version": "0.11.2",
"description": "The MeiliSearch JS client for Node.js and the browser.",

@@ -73,3 +73,3 @@ "keywords": [

"eslint-plugin-import": "2",
"eslint-plugin-jsdoc": "^27.0.2",
"eslint-plugin-jsdoc": "^28.5.1",
"eslint-plugin-node": "11",

@@ -82,3 +82,3 @@ "eslint-plugin-promise": "4",

"kleur": "^4.0.0",
"lint-staged": "10.2.10",
"lint-staged": "10.2.11",
"prettier": "^2.0.2",

@@ -85,0 +85,0 @@ "pretty-bytes": "^5.3.0",

@@ -165,2 +165,3 @@ <p align="center">

- `v0.12.X`
- `v0.11.X`

@@ -335,3 +336,3 @@

You must do a PR modifying the file `package.json` with the right version.<br>
You must do a PR modifying the file [`package.json`](/package.json) with the right version.

@@ -342,11 +343,4 @@ ```javascript

Once the changes are merged on `master`, in your terminal, you must be on the `master` branch and push a new tag with the right version:
Once the changes are merged on `master`, you can publish the current draft release via the [GitHub interface](https://github.com/meilisearch/meilisearch-js/releases).
```bash
$ git checkout master
$ git pull origin master
$ git tag vX.X.X
$ git push --tag origin master
```
A GitHub Action will be triggered and push the package on [npm](https://www.npmjs.com/package/meilisearch).

@@ -353,0 +347,0 @@

@@ -54,3 +54,3 @@ // Type definitions for meilisearch

export type FacetFilter = string | FacetFilter[]
export type FacetFilter = (string | string[])[]

@@ -65,3 +65,3 @@ export interface SearchParams {

filters?: string
facetFilters?: FacetFilter[]
facetFilters?: string | FacetFilter | FacetFilter[]
facetsDistribution?: string[]

@@ -68,0 +68,0 @@ matches?: boolean

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc