exa-js 1.8.2 → 1.8.6
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 +21 -9
- package/dist/index.d.ts +21 -9
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -913,6 +913,7 @@ var Exa2 = class {
|
|
|
913
913
|
extras,
|
|
914
914
|
livecrawl,
|
|
915
915
|
livecrawlTimeout,
|
|
916
|
+
context,
|
|
916
917
|
...rest
|
|
917
918
|
} = options;
|
|
918
919
|
const contentsOptions = {};
|
|
@@ -929,6 +930,7 @@ var Exa2 = class {
|
|
|
929
930
|
if (livecrawl !== void 0) contentsOptions.livecrawl = livecrawl;
|
|
930
931
|
if (livecrawlTimeout !== void 0)
|
|
931
932
|
contentsOptions.livecrawlTimeout = livecrawlTimeout;
|
|
933
|
+
if (context !== void 0) contentsOptions.context = context;
|
|
932
934
|
return {
|
|
933
935
|
contentsOptions,
|
|
934
936
|
restOptions: rest
|