New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@enterprise_search/clients

Package Overview
Dependencies
Maintainers
0
Versions
202
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enterprise_search/clients - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

4

dist/src/searchResult.d.ts

@@ -5,3 +5,3 @@ import { JSONObject } from "@itsmworkbench/utils";

export type SearchResultMaker = (line: any) => SearchResult | undefined;
export declare const composeSearchResultMakers: (makers: SearchResultMaker[]) => SearchResultMaker;
export declare const composeSearchResultMakers: (makers: (SearchResultMaker | undefined)[]) => SearchResultMaker;
export type CommonSearchResult = {

@@ -12,3 +12,3 @@ id: string;

index: string;
status: string;
status?: string;
content: string;

@@ -15,0 +15,0 @@ summary: string;

@@ -6,3 +6,3 @@ "use strict";

for (const maker of makers) {
const item = maker(source);
const item = maker?.(source);
if (item)

@@ -9,0 +9,0 @@ return item;

{
"name": "@enterprise_search/clients",
"description": "interfaces for the clients",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index",

@@ -26,4 +26,4 @@ "types": "dist/index",

"@itsmworkbench/utils": "0.3.6",
"@enterprise_search/indexing": "0.0.3",
"@enterprise_search/indexconfig": "0.0.3",
"@enterprise_search/indexing": "0.0.4",
"@enterprise_search/indexconfig": "0.0.4",
"debug": "^4.3.4"

@@ -30,0 +30,0 @@ },

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