Socket
Socket
Sign inDemoInstall

@intuned/runner-types

Package Overview
Dependencies
Maintainers
4
Versions
245
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intuned/runner-types - npm Package Compare versions

Comparing version 0.11.0-beta to 0.11.0

21

index.d.ts

@@ -270,3 +270,5 @@ declare module '@intuned/runner' {

export interface SearchPdfConfigs {
contextWindow: number;
contextWindow?: number;
matchCase?: boolean;
wholeWord?: boolean;
}

@@ -525,2 +527,19 @@ export type SearchPdfResult = {

function extractFromPdfImproved(entityName: string, sourceInput: Source, fileExtractionPropertiesInput: FileExtractionProperties): Promise<any>;
export class FileHelpers {
static searchPdf(...params: Parameters<typeof searchPdf>): Promise<{
context: string;
page: number;
found: true;
} | {
found: false;
}>;
static extractFromPdf(...extractFromPdfParams: Parameters<typeof extractFromPdf>): Promise<any>;
static pdfPageToText(...pdfPageToTextParams: Parameters<typeof pdfPageToText>): Promise<{
results: {
text: string;
pageNumber: number;
}[];
totalPages: number;
}>;
}

@@ -527,0 +546,0 @@ export {

2

package.json
{
"name": "@intuned/runner-types",
"version": "0.11.0-beta",
"version": "0.11.0",
"description": "intuned runner types",

@@ -5,0 +5,0 @@ "author": "Intuned Team",

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