Socket
Socket
Sign inDemoInstall

@intuned/sdk-dev-types

Package Overview
Dependencies
Maintainers
0
Versions
212
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intuned/sdk-dev-types - npm Package Compare versions

Comparing version 1.0.13-excel-links.0 to 1.0.13-spreadsheets.1

21

ai-extractors/index.d.ts

@@ -42,3 +42,3 @@ import { Locator, Page } from "@intuned/playwright-core";

export declare function extractStructuredDataFromFile(
file: ImageFile | PdfFile,
file: ImageFile | PdfFile | SpreadsheetFile,
options: {

@@ -115,2 +115,17 @@ label: string;

/**
* Represents a Spreadsheet file source. For now, only Excel spreadsheets are supported.
*
* @interface
* @property type - The type of the file, which is always "spreadsheet".
* @property sheetName - The name of the sheet to extract data from.
* @property source - The source of the file data.
* @property config - Optional. Configurations on how the spreadsheet should be processed when it is converted to a document.
*/
export interface SpreadsheetFile {
type: "spreadsheet";
sheetName: string;
source: FileBufferSource | FileUrlSource | FileBase64Source;
}
/**
* Extracts tables from a file (ImageFile or PdfFile).

@@ -142,3 +157,3 @@ *

export declare function extractTablesFromFile(
file: ImageFile | PdfFile,
file: ImageFile | PdfFile | SpreadsheetFile,
options: {

@@ -188,3 +203,3 @@ label: string;

export declare function extractMarkdownFromFile(
file: ImageFile | PdfFile,
file: ImageFile | PdfFile | SpreadsheetFile,
options: {

@@ -191,0 +206,0 @@ label: string;

2

package.json
{
"name": "@intuned/sdk-dev-types",
"version": "1.0.13-excel-links.0",
"version": "1.0.13-spreadsheets.1",
"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