@juspay/neurolink 9.55.3 → 9.55.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/browser/neurolink.min.js +280 -279
- package/dist/lib/processors/document/ExcelProcessor.js +22 -4
- package/dist/lib/server/voice/voiceWebSocketHandler.js +389 -367
- package/dist/lib/types/processor.d.ts +31 -0
- package/dist/lib/types/server.d.ts +10 -0
- package/dist/processors/document/ExcelProcessor.js +22 -4
- package/dist/server/voice/voiceWebSocketHandler.js +389 -367
- package/dist/types/processor.d.ts +31 -0
- package/dist/types/server.d.ts +10 -0
- package/package.json +3 -3
|
@@ -543,6 +543,37 @@ export type ProcessedYaml = ProcessedFileBase & {
|
|
|
543
543
|
/** YAML content converted to JSON string for AI consumption */
|
|
544
544
|
asJson: string | null;
|
|
545
545
|
};
|
|
546
|
+
/**
|
|
547
|
+
* Structural types for exceljs objects.
|
|
548
|
+
* Defined here so the optional exceljs package is not required at typecheck time.
|
|
549
|
+
*/
|
|
550
|
+
export type ExcelJSCell = {
|
|
551
|
+
value: CellValue;
|
|
552
|
+
};
|
|
553
|
+
export type ExcelJSRow = {
|
|
554
|
+
values: (CellValue | undefined)[];
|
|
555
|
+
eachCell: (opts: {
|
|
556
|
+
includeEmpty: boolean;
|
|
557
|
+
}, callback: (cell: ExcelJSCell, colNumber: number) => void) => void;
|
|
558
|
+
};
|
|
559
|
+
export type ExcelJSWorksheet = {
|
|
560
|
+
name: string;
|
|
561
|
+
rowCount: number;
|
|
562
|
+
eachRow: {
|
|
563
|
+
(callback: (row: ExcelJSRow, rowNumber: number) => void): void;
|
|
564
|
+
(opts: {
|
|
565
|
+
includeEmpty: boolean;
|
|
566
|
+
}, callback: (row: ExcelJSRow, rowNumber: number) => void): void;
|
|
567
|
+
};
|
|
568
|
+
getRow: (rowNumber: number) => ExcelJSRow;
|
|
569
|
+
};
|
|
570
|
+
export type ExcelJSWorkbook = {
|
|
571
|
+
worksheets: ExcelJSWorksheet[];
|
|
572
|
+
getWorksheet: (name: string) => ExcelJSWorksheet | undefined;
|
|
573
|
+
xlsx: {
|
|
574
|
+
load: (buffer: ArrayBuffer) => Promise<void>;
|
|
575
|
+
};
|
|
576
|
+
};
|
|
546
577
|
/**
|
|
547
578
|
* Single worksheet extracted from an Excel file.
|
|
548
579
|
*/
|
package/dist/types/server.d.ts
CHANGED
|
@@ -1109,3 +1109,13 @@ export type SonioxMessage = {
|
|
|
1109
1109
|
export type ClientControlMessage = {
|
|
1110
1110
|
type?: string;
|
|
1111
1111
|
};
|
|
1112
|
+
/**
|
|
1113
|
+
* Structural type for Picovoice Cobra VAD instance.
|
|
1114
|
+
* Defined here so the optional `@picovoice/cobra-node` package
|
|
1115
|
+
* is not required at typecheck time.
|
|
1116
|
+
*/
|
|
1117
|
+
export type CobraInstance = {
|
|
1118
|
+
frameLength: number;
|
|
1119
|
+
process: (pcm: Int16Array) => number;
|
|
1120
|
+
release: () => void;
|
|
1121
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.55.
|
|
3
|
+
"version": "9.55.5",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
6
6
|
"author": {
|
|
@@ -224,14 +224,12 @@
|
|
|
224
224
|
"@opentelemetry/sdk-metrics": "^2.6.1",
|
|
225
225
|
"@opentelemetry/sdk-trace-base": "^2.6.0",
|
|
226
226
|
"@opentelemetry/semantic-conventions": "^1.40.0",
|
|
227
|
-
"@picovoice/cobra-node": "^3.0.2",
|
|
228
227
|
"adm-zip": "^0.5.16",
|
|
229
228
|
"ai": "^6.0.134",
|
|
230
229
|
"chalk": "^5.6.2",
|
|
231
230
|
"croner": "^9.1.0",
|
|
232
231
|
"csv-parser": "^3.2.0",
|
|
233
232
|
"dotenv": "^17.3.1",
|
|
234
|
-
"exceljs": "^4.4.0",
|
|
235
233
|
"fluent-ffmpeg": "^2.1.3",
|
|
236
234
|
"google-auth-library": "^10.6.1",
|
|
237
235
|
"hono": "^4.12.3",
|
|
@@ -272,7 +270,9 @@
|
|
|
272
270
|
"optionalDependencies": {
|
|
273
271
|
"@aws-sdk/client-sagemaker": "^3.1000.0",
|
|
274
272
|
"@langfuse/otel": "^5.0.1",
|
|
273
|
+
"@picovoice/cobra-node": "^3.0.2",
|
|
275
274
|
"bullmq": "^5.52.2",
|
|
275
|
+
"exceljs": "^4.4.0",
|
|
276
276
|
"pdf-parse": "^2.4.5",
|
|
277
277
|
"pdf-to-img": "^5.0.0",
|
|
278
278
|
"@fastify/cors": "^11.2.0",
|