valyu-js 2.7.3 → 2.7.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/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ interface SearchResult {
|
|
|
17
17
|
publication_date?: string;
|
|
18
18
|
id?: string;
|
|
19
19
|
image_url?: Record<string, string>;
|
|
20
|
+
abstract?: string;
|
|
20
21
|
}
|
|
21
22
|
interface SearchOptions {
|
|
22
23
|
searchType?: SearchType;
|
|
@@ -327,11 +328,9 @@ interface ChartDataSeries {
|
|
|
327
328
|
interface ImageMetadata {
|
|
328
329
|
image_id: string;
|
|
329
330
|
image_type: ImageType;
|
|
330
|
-
deepresearch_id: string;
|
|
331
331
|
title: string;
|
|
332
332
|
description?: string;
|
|
333
333
|
image_url: string;
|
|
334
|
-
s3_key: string;
|
|
335
334
|
created_at: number;
|
|
336
335
|
chart_type?: ChartType;
|
|
337
336
|
x_axis_label?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ interface SearchResult {
|
|
|
17
17
|
publication_date?: string;
|
|
18
18
|
id?: string;
|
|
19
19
|
image_url?: Record<string, string>;
|
|
20
|
+
abstract?: string;
|
|
20
21
|
}
|
|
21
22
|
interface SearchOptions {
|
|
22
23
|
searchType?: SearchType;
|
|
@@ -327,11 +328,9 @@ interface ChartDataSeries {
|
|
|
327
328
|
interface ImageMetadata {
|
|
328
329
|
image_id: string;
|
|
329
330
|
image_type: ImageType;
|
|
330
|
-
deepresearch_id: string;
|
|
331
331
|
title: string;
|
|
332
332
|
description?: string;
|
|
333
333
|
image_url: string;
|
|
334
|
-
s3_key: string;
|
|
335
334
|
created_at: number;
|
|
336
335
|
chart_type?: ChartType;
|
|
337
336
|
x_axis_label?: string;
|