valyu-js 2.7.12 → 2.7.13
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/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -231,7 +231,7 @@ type DeepResearchStatus = "queued" | "running" | "awaiting_input" | "paused" | "
|
|
|
231
231
|
type DeepResearchOutputFormat = "markdown" | "pdf" | "toon" | Record<string, any>;
|
|
232
232
|
type DeepResearchOutputType = "markdown" | "json" | "toon";
|
|
233
233
|
type ImageType = "chart" | "ai_generated" | "screenshot";
|
|
234
|
-
type ChartType = "line" | "bar" | "area";
|
|
234
|
+
type ChartType = "line" | "bar" | "area" | "pie" | "doughnut" | "radar" | "scatter" | "horizontalBar" | "heatmap" | "boxplot" | "stackedBar" | "stackedArea" | "histogram" | "waterfall" | "timeline" | "bubble";
|
|
235
235
|
interface FileAttachment {
|
|
236
236
|
data: string;
|
|
237
237
|
filename: string;
|
|
@@ -342,10 +342,14 @@ interface Progress {
|
|
|
342
342
|
interface ChartDataPoint {
|
|
343
343
|
x: string | number;
|
|
344
344
|
y: number;
|
|
345
|
+
y2?: number;
|
|
346
|
+
z?: number;
|
|
347
|
+
values?: number[];
|
|
345
348
|
}
|
|
346
349
|
interface ChartDataSeries {
|
|
347
350
|
name: string;
|
|
348
351
|
data: ChartDataPoint[];
|
|
352
|
+
line_style?: "solid" | "dashed" | "dotted";
|
|
349
353
|
}
|
|
350
354
|
interface ImageMetadata {
|
|
351
355
|
image_id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -231,7 +231,7 @@ type DeepResearchStatus = "queued" | "running" | "awaiting_input" | "paused" | "
|
|
|
231
231
|
type DeepResearchOutputFormat = "markdown" | "pdf" | "toon" | Record<string, any>;
|
|
232
232
|
type DeepResearchOutputType = "markdown" | "json" | "toon";
|
|
233
233
|
type ImageType = "chart" | "ai_generated" | "screenshot";
|
|
234
|
-
type ChartType = "line" | "bar" | "area";
|
|
234
|
+
type ChartType = "line" | "bar" | "area" | "pie" | "doughnut" | "radar" | "scatter" | "horizontalBar" | "heatmap" | "boxplot" | "stackedBar" | "stackedArea" | "histogram" | "waterfall" | "timeline" | "bubble";
|
|
235
235
|
interface FileAttachment {
|
|
236
236
|
data: string;
|
|
237
237
|
filename: string;
|
|
@@ -342,10 +342,14 @@ interface Progress {
|
|
|
342
342
|
interface ChartDataPoint {
|
|
343
343
|
x: string | number;
|
|
344
344
|
y: number;
|
|
345
|
+
y2?: number;
|
|
346
|
+
z?: number;
|
|
347
|
+
values?: number[];
|
|
345
348
|
}
|
|
346
349
|
interface ChartDataSeries {
|
|
347
350
|
name: string;
|
|
348
351
|
data: ChartDataPoint[];
|
|
352
|
+
line_style?: "solid" | "dashed" | "dotted";
|
|
349
353
|
}
|
|
350
354
|
interface ImageMetadata {
|
|
351
355
|
image_id: string;
|