feathers-solr
Advanced tools
Comparing version 3.0.12 to 3.0.13
import { AdapterBase, AdapterParams, AdapterServiceOptions, PaginationOptions, AdapterQuery } from '@feathersjs/adapter-commons'; | ||
import type { NullableId, Id, Paginated } from '@feathersjs/feathers'; | ||
import type { HttpClient } from './httpClient'; | ||
import type { HttpClient, RequestOptions } from './httpClient'; | ||
export interface SolrAdapterOptions extends AdapterServiceOptions { | ||
@@ -17,5 +17,3 @@ host: string; | ||
createUUID?: boolean; | ||
requestOptions?: { | ||
timeout: 10; | ||
}; | ||
requestOptions?: RequestOptions['requestOptions']; | ||
escapeFn?: (key: string, value: any) => { | ||
@@ -22,0 +20,0 @@ key: string; |
@@ -18,5 +18,5 @@ /// <reference types="node" /> | ||
} | ||
interface RequestOptions { | ||
export interface RequestOptions { | ||
url: string; | ||
requestOptions: http.RequestOptions | https.RequestOptions; | ||
requestOptions?: http.RequestOptions | https.RequestOptions; | ||
data?: any; | ||
@@ -23,0 +23,0 @@ logger?: any; |
{ | ||
"name": "feathers-solr", | ||
"description": "A service plugin for Solr", | ||
"version": "3.0.12", | ||
"version": "3.0.13", | ||
"keywords": [ | ||
@@ -56,5 +56,5 @@ "feathers", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^18.15.7", | ||
"@typescript-eslint/eslint-plugin": "^5.56.0", | ||
"@typescript-eslint/parser": "^5.56.0", | ||
"@types/node": "^18.15.10", | ||
"@typescript-eslint/eslint-plugin": "^5.57.0", | ||
"@typescript-eslint/parser": "^5.57.0", | ||
"eslint": "^8.36.0", | ||
@@ -61,0 +61,0 @@ "eslint-plugin-import": "^2.27.5", |
# feathers-solr | ||
[![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI) | ||
[![Coverage Status](https://coveralls.io/repos/github/sajov/feathers-solr/badge.svg?branch=v3.0.0-pre.1)](https://coveralls.io/github/sajov/feathers-solr?branch=master) | ||
[![Coverage Status](https://coveralls.io/repos/github/sajov/feathers-solr/badge.svg?branch=master)](https://coveralls.io/github/sajov/feathers-solr?branch=master) | ||
[![Known Vulnerabilities](https://snyk.io/test/npm/feathers-solr/badge.svg)](https://snyk.io/test/npm/feathers-solr) | ||
@@ -6,0 +6,0 @@ [![Download Status](https://img.shields.io/npm/dm/feathers-solr.svg?style=flat-square)](https://www.npmjs.com/package/feathers-solr) |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
55632
2
550