valyu-js 2.5.1 → 2.5.2
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -211,6 +211,7 @@ interface DeepResearchSearchConfig {
|
|
|
211
211
|
startDate?: string;
|
|
212
212
|
endDate?: string;
|
|
213
213
|
category?: string;
|
|
214
|
+
countryCode?: CountryCode;
|
|
214
215
|
}
|
|
215
216
|
interface DeepResearchCreateOptions {
|
|
216
217
|
query?: string;
|
|
@@ -402,6 +403,7 @@ interface DeepResearchBatch {
|
|
|
402
403
|
start_date?: string;
|
|
403
404
|
end_date?: string;
|
|
404
405
|
category?: string;
|
|
406
|
+
country_code?: CountryCode;
|
|
405
407
|
};
|
|
406
408
|
created_at: string;
|
|
407
409
|
completed_at?: string;
|
|
@@ -444,6 +446,7 @@ interface CreateBatchResponse {
|
|
|
444
446
|
start_date?: string;
|
|
445
447
|
end_date?: string;
|
|
446
448
|
category?: string;
|
|
449
|
+
country_code?: CountryCode;
|
|
447
450
|
};
|
|
448
451
|
created_at?: string;
|
|
449
452
|
completed_at?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -211,6 +211,7 @@ interface DeepResearchSearchConfig {
|
|
|
211
211
|
startDate?: string;
|
|
212
212
|
endDate?: string;
|
|
213
213
|
category?: string;
|
|
214
|
+
countryCode?: CountryCode;
|
|
214
215
|
}
|
|
215
216
|
interface DeepResearchCreateOptions {
|
|
216
217
|
query?: string;
|
|
@@ -402,6 +403,7 @@ interface DeepResearchBatch {
|
|
|
402
403
|
start_date?: string;
|
|
403
404
|
end_date?: string;
|
|
404
405
|
category?: string;
|
|
406
|
+
country_code?: CountryCode;
|
|
405
407
|
};
|
|
406
408
|
created_at: string;
|
|
407
409
|
completed_at?: string;
|
|
@@ -444,6 +446,7 @@ interface CreateBatchResponse {
|
|
|
444
446
|
start_date?: string;
|
|
445
447
|
end_date?: string;
|
|
446
448
|
category?: string;
|
|
449
|
+
country_code?: CountryCode;
|
|
447
450
|
};
|
|
448
451
|
created_at?: string;
|
|
449
452
|
completed_at?: string;
|