exa-js 1.9.3 → 1.10.1

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 CHANGED
@@ -510,7 +510,7 @@ interface components {
510
510
  metadata?: {
511
511
  [key: string]: string;
512
512
  };
513
- /** @description The size of the file in megabytes. Maximum size is 50 MB. */
513
+ /** @description The size of the file in bytes. Maximum size is 50 MB. */
514
514
  size: number;
515
515
  /** @description The title of the import */
516
516
  title?: string;
@@ -638,6 +638,13 @@ interface components {
638
638
  *
639
639
  * Enrichments automatically search for and extract specific information (like contact details, funding data, employee counts, etc.) from each item added to your Webset. */
640
640
  enrichments?: components["schemas"]["CreateEnrichmentParameters"][];
641
+ /** @description Global exclusion sources (existing imports or websets) that apply to all operations within this Webset. Any results found within these sources will be omitted across all search and import operations. */
642
+ exclude?: {
643
+ /** @description The ID of the source to exclude. */
644
+ id: string;
645
+ /** @enum {string} */
646
+ source: WebsetExcludeSource;
647
+ }[];
641
648
  /** @description The external identifier for the webset.
642
649
  *
643
650
  * You can use this to reference the Webset by your own internal identifiers. */
@@ -675,7 +682,7 @@ interface components {
675
682
  /** @description The ID of the source to exclude. */
676
683
  id: string;
677
684
  /** @enum {string} */
678
- source: WebsetSearchExcludeSource;
685
+ source: WebsetExcludeSource;
679
686
  }[];
680
687
  /** @description Natural language search query describing what you are looking for.
681
688
  *
@@ -726,7 +733,7 @@ interface components {
726
733
  /** @description The ID of the source to exclude. */
727
734
  id: string;
728
735
  /** @enum {string} */
729
- source: WebsetSearchExcludeSource;
736
+ source: WebsetExcludeSource;
730
737
  }[];
731
738
  /** @description Set of key-value pairs you want to associate with this object. */
732
739
  metadata?: {
@@ -1941,7 +1948,7 @@ interface components {
1941
1948
  exclude: {
1942
1949
  id: string;
1943
1950
  /** @enum {string} */
1944
- source: WebsetSearchExcludeSource;
1951
+ source: WebsetExcludeSource;
1945
1952
  }[];
1946
1953
  /** @description The unique identifier for the search */
1947
1954
  id: string;
@@ -2209,7 +2216,7 @@ declare enum WebsetItemEvaluationSatisfied {
2209
2216
  no = "no",
2210
2217
  unclear = "unclear"
2211
2218
  }
2212
- declare enum WebsetSearchExcludeSource {
2219
+ declare enum WebsetExcludeSource {
2213
2220
  import = "import",
2214
2221
  webset = "webset"
2215
2222
  }
@@ -2877,7 +2884,7 @@ type RegularSearchOptions = BaseSearchOptions & {
2877
2884
  */
2878
2885
  moderation?: boolean;
2879
2886
  useAutoprompt?: boolean;
2880
- type?: "keyword" | "neural" | "auto" | "hybrid" | "fast";
2887
+ type?: "keyword" | "neural" | "auto" | "hybrid" | "fast" | "deep";
2881
2888
  };
2882
2889
  /**
2883
2890
  * Options for finding similar links.
@@ -2895,7 +2902,7 @@ type ExtrasOptions = {
2895
2902
  * Search options for performing a search query.
2896
2903
  * @typedef {Object} ContentsOptions
2897
2904
  * @property {TextContentsOptions | boolean} [text] - Options for retrieving text contents.
2898
- * @property {HighlightsContentsOptions | boolean} [highlights] - Options for retrieving highlights.
2905
+ * @property {HighlightsContentsOptions | boolean} [highlights] - Options for retrieving highlights. NOTE: For search type "deep", only "true" is allowed. "query", "numSentences" and "highlightsPerUrl" will not be respected;
2899
2906
  * @property {SummaryContentsOptions | boolean} [summary] - Options for retrieving summary.
2900
2907
  * @property {LivecrawlOptions} [livecrawl] - Options for livecrawling contents. Default is "never" for neural/auto search, "fallback" for keyword search.
2901
2908
  * @property {number} [livecrawlTimeout] - The timeout for livecrawling. Max and default is 10000ms.
@@ -2933,6 +2940,8 @@ type TextContentsOptions = {
2933
2940
  };
2934
2941
  /**
2935
2942
  * Options for retrieving highlights from page.
2943
+ * NOTE: For search type "deep", these options will not be respected. Highlights will be generated with respect
2944
+ * to your initial query, and may vary in quantity and length.
2936
2945
  * @typedef {Object} HighlightsContentsOptions
2937
2946
  * @property {string} [query] - The query string to use for highlights search.
2938
2947
  * @property {number} [numSentences] - The number of sentences to return for each highlight.
@@ -3311,4 +3320,4 @@ declare class Exa {
3311
3320
  private parseSSEStream;
3312
3321
  }
3313
3322
 
3314
- export { type AnswerOptions, type AnswerOptionsTyped, type AnswerResponse, type AnswerResponseTyped, type AnswerStreamChunk, type AnswerStreamResponse, type ArticleEntity, type BaseSearchOptions, type CompanyEntity, type ContentsOptions, type ContentsResultComponent, type ContextOptions, type CostDollars, type CostDollarsContents, type CostDollarsSeearch, type CreateCriterionParameters, type CreateEnrichmentParameters, CreateEnrichmentParametersFormat, type CreateImportParameters, CreateImportParametersFormat, type CreateImportResponse, type CreateImportWithCsvParameters, type CreateMonitorParameters, type CreateWebhookParameters, type CreateWebsetParameters, type CreateWebsetSearchParameters, type CsvDataInput, type CustomEntity, type Default, type EnrichmentResult, type Entity, type Event, EventType, EventsClient, Exa, ExaError, type ExtrasOptions, type ExtrasResponse, type FindSimilarOptions, type GetWebsetResponse, type HighlightsContentsOptions, type HighlightsResponse, HttpStatusCode, type Import, ImportFailedReason, ImportFormat, ImportObject, ImportStatus, ImportsClient, type JSONSchema, type ListEventsResponse, type ListImportsResponse, type ListMonitorRunsResponse, type ListMonitorsOptions, type ListMonitorsResponse, type ListResearchRequest, type ListResearchResponse, type ListWebhookAttemptsResponse, type ListWebhooksResponse, type ListWebsetItemResponse, type ListWebsetItemsOptions, type ListWebsetsResponse, type LivecrawlOptions, type Monitor, type MonitorBehavior, type MonitorCadence, MonitorObject, type MonitorRun, MonitorRunObject, MonitorRunStatus, MonitorRunType, MonitorStatus, type PersonEntity, type PreviewWebsetParameters, type PreviewWebsetResponse, type RegularSearchOptions, type Research, type ResearchCreateParamsTyped, type ResearchCreateRequest, type ResearchCreateResponse, type ResearchDefinitionEvent, type ResearchEvent, type ResearchOperation, type ResearchOutputEvent, type ResearchPaperEntity, type ResearchPlanDefinitionEvent, type ResearchPlanOperationEvent, type ResearchPlanOutputEvent, type ResearchStatus, type ResearchStreamEvent, type ResearchStreamEventTyped, type ResearchTaskDefinitionEvent, type ResearchTaskOperationEvent, type ResearchTaskOutputEvent, type ResearchTyped, type SearchResponse, type SearchResult, type Status, type SubpagesResponse, type SummaryContentsOptions, type SummaryContentsOptionsTyped, type SummaryResponse, type TextContentsOptions, type TextResponse, type UpdateEnrichmentParameters, type UpdateImport, type UpdateMonitor, UpdateMonitorStatus, type UpdateWebhookParameters, type UpdateWebsetRequest, type WaitUntilCompletedOptions, type Webhook, type WebhookAttempt, WebhookStatus, type Webset, type WebsetEnrichment, WebsetEnrichmentFormat, WebsetEnrichmentStatus, WebsetEnrichmentsClient, type WebsetHeadersLike, WebsetImportSource, type WebsetItem, type WebsetItemArticleProperties, type WebsetItemCompanyProperties, type WebsetItemCustomProperties, type WebsetItemEvaluation, WebsetItemEvaluationSatisfied, type WebsetItemPersonProperties, type WebsetItemResearchPaperProperties, WebsetItemSource, WebsetItemsClient, WebsetMonitorsClient, type WebsetSearch, WebsetSearchBehavior, WebsetSearchCanceledReason, WebsetSearchExcludeSource, WebsetSearchScopeSource, WebsetSearchStatus, WebsetSearchesClient, WebsetStatus, WebsetWebhooksClient, WebsetsClient, Exa as default };
3323
+ export { type AnswerOptions, type AnswerOptionsTyped, type AnswerResponse, type AnswerResponseTyped, type AnswerStreamChunk, type AnswerStreamResponse, type ArticleEntity, type BaseSearchOptions, type CompanyEntity, type ContentsOptions, type ContentsResultComponent, type ContextOptions, type CostDollars, type CostDollarsContents, type CostDollarsSeearch, type CreateCriterionParameters, type CreateEnrichmentParameters, CreateEnrichmentParametersFormat, type CreateImportParameters, CreateImportParametersFormat, type CreateImportResponse, type CreateImportWithCsvParameters, type CreateMonitorParameters, type CreateWebhookParameters, type CreateWebsetParameters, type CreateWebsetSearchParameters, type CsvDataInput, type CustomEntity, type Default, type EnrichmentResult, type Entity, type Event, EventType, EventsClient, Exa, ExaError, type ExtrasOptions, type ExtrasResponse, type FindSimilarOptions, type GetWebsetResponse, type HighlightsContentsOptions, type HighlightsResponse, HttpStatusCode, type Import, ImportFailedReason, ImportFormat, ImportObject, ImportStatus, ImportsClient, type JSONSchema, type ListEventsResponse, type ListImportsResponse, type ListMonitorRunsResponse, type ListMonitorsOptions, type ListMonitorsResponse, type ListResearchRequest, type ListResearchResponse, type ListWebhookAttemptsResponse, type ListWebhooksResponse, type ListWebsetItemResponse, type ListWebsetItemsOptions, type ListWebsetsResponse, type LivecrawlOptions, type Monitor, type MonitorBehavior, type MonitorCadence, MonitorObject, type MonitorRun, MonitorRunObject, MonitorRunStatus, MonitorRunType, MonitorStatus, type PersonEntity, type PreviewWebsetParameters, type PreviewWebsetResponse, type RegularSearchOptions, type Research, type ResearchCreateParamsTyped, type ResearchCreateRequest, type ResearchCreateResponse, type ResearchDefinitionEvent, type ResearchEvent, type ResearchOperation, type ResearchOutputEvent, type ResearchPaperEntity, type ResearchPlanDefinitionEvent, type ResearchPlanOperationEvent, type ResearchPlanOutputEvent, type ResearchStatus, type ResearchStreamEvent, type ResearchStreamEventTyped, type ResearchTaskDefinitionEvent, type ResearchTaskOperationEvent, type ResearchTaskOutputEvent, type ResearchTyped, type SearchResponse, type SearchResult, type Status, type SubpagesResponse, type SummaryContentsOptions, type SummaryContentsOptionsTyped, type SummaryResponse, type TextContentsOptions, type TextResponse, type UpdateEnrichmentParameters, type UpdateImport, type UpdateMonitor, UpdateMonitorStatus, type UpdateWebhookParameters, type UpdateWebsetRequest, type WaitUntilCompletedOptions, type Webhook, type WebhookAttempt, WebhookStatus, type Webset, type WebsetEnrichment, WebsetEnrichmentFormat, WebsetEnrichmentStatus, WebsetEnrichmentsClient, WebsetExcludeSource, type WebsetHeadersLike, WebsetImportSource, type WebsetItem, type WebsetItemArticleProperties, type WebsetItemCompanyProperties, type WebsetItemCustomProperties, type WebsetItemEvaluation, WebsetItemEvaluationSatisfied, type WebsetItemPersonProperties, type WebsetItemResearchPaperProperties, WebsetItemSource, WebsetItemsClient, WebsetMonitorsClient, type WebsetSearch, WebsetSearchBehavior, WebsetSearchCanceledReason, WebsetSearchScopeSource, WebsetSearchStatus, WebsetSearchesClient, WebsetStatus, WebsetWebhooksClient, WebsetsClient, Exa as default };
package/dist/index.d.ts CHANGED
@@ -510,7 +510,7 @@ interface components {
510
510
  metadata?: {
511
511
  [key: string]: string;
512
512
  };
513
- /** @description The size of the file in megabytes. Maximum size is 50 MB. */
513
+ /** @description The size of the file in bytes. Maximum size is 50 MB. */
514
514
  size: number;
515
515
  /** @description The title of the import */
516
516
  title?: string;
@@ -638,6 +638,13 @@ interface components {
638
638
  *
639
639
  * Enrichments automatically search for and extract specific information (like contact details, funding data, employee counts, etc.) from each item added to your Webset. */
640
640
  enrichments?: components["schemas"]["CreateEnrichmentParameters"][];
641
+ /** @description Global exclusion sources (existing imports or websets) that apply to all operations within this Webset. Any results found within these sources will be omitted across all search and import operations. */
642
+ exclude?: {
643
+ /** @description The ID of the source to exclude. */
644
+ id: string;
645
+ /** @enum {string} */
646
+ source: WebsetExcludeSource;
647
+ }[];
641
648
  /** @description The external identifier for the webset.
642
649
  *
643
650
  * You can use this to reference the Webset by your own internal identifiers. */
@@ -675,7 +682,7 @@ interface components {
675
682
  /** @description The ID of the source to exclude. */
676
683
  id: string;
677
684
  /** @enum {string} */
678
- source: WebsetSearchExcludeSource;
685
+ source: WebsetExcludeSource;
679
686
  }[];
680
687
  /** @description Natural language search query describing what you are looking for.
681
688
  *
@@ -726,7 +733,7 @@ interface components {
726
733
  /** @description The ID of the source to exclude. */
727
734
  id: string;
728
735
  /** @enum {string} */
729
- source: WebsetSearchExcludeSource;
736
+ source: WebsetExcludeSource;
730
737
  }[];
731
738
  /** @description Set of key-value pairs you want to associate with this object. */
732
739
  metadata?: {
@@ -1941,7 +1948,7 @@ interface components {
1941
1948
  exclude: {
1942
1949
  id: string;
1943
1950
  /** @enum {string} */
1944
- source: WebsetSearchExcludeSource;
1951
+ source: WebsetExcludeSource;
1945
1952
  }[];
1946
1953
  /** @description The unique identifier for the search */
1947
1954
  id: string;
@@ -2209,7 +2216,7 @@ declare enum WebsetItemEvaluationSatisfied {
2209
2216
  no = "no",
2210
2217
  unclear = "unclear"
2211
2218
  }
2212
- declare enum WebsetSearchExcludeSource {
2219
+ declare enum WebsetExcludeSource {
2213
2220
  import = "import",
2214
2221
  webset = "webset"
2215
2222
  }
@@ -2877,7 +2884,7 @@ type RegularSearchOptions = BaseSearchOptions & {
2877
2884
  */
2878
2885
  moderation?: boolean;
2879
2886
  useAutoprompt?: boolean;
2880
- type?: "keyword" | "neural" | "auto" | "hybrid" | "fast";
2887
+ type?: "keyword" | "neural" | "auto" | "hybrid" | "fast" | "deep";
2881
2888
  };
2882
2889
  /**
2883
2890
  * Options for finding similar links.
@@ -2895,7 +2902,7 @@ type ExtrasOptions = {
2895
2902
  * Search options for performing a search query.
2896
2903
  * @typedef {Object} ContentsOptions
2897
2904
  * @property {TextContentsOptions | boolean} [text] - Options for retrieving text contents.
2898
- * @property {HighlightsContentsOptions | boolean} [highlights] - Options for retrieving highlights.
2905
+ * @property {HighlightsContentsOptions | boolean} [highlights] - Options for retrieving highlights. NOTE: For search type "deep", only "true" is allowed. "query", "numSentences" and "highlightsPerUrl" will not be respected;
2899
2906
  * @property {SummaryContentsOptions | boolean} [summary] - Options for retrieving summary.
2900
2907
  * @property {LivecrawlOptions} [livecrawl] - Options for livecrawling contents. Default is "never" for neural/auto search, "fallback" for keyword search.
2901
2908
  * @property {number} [livecrawlTimeout] - The timeout for livecrawling. Max and default is 10000ms.
@@ -2933,6 +2940,8 @@ type TextContentsOptions = {
2933
2940
  };
2934
2941
  /**
2935
2942
  * Options for retrieving highlights from page.
2943
+ * NOTE: For search type "deep", these options will not be respected. Highlights will be generated with respect
2944
+ * to your initial query, and may vary in quantity and length.
2936
2945
  * @typedef {Object} HighlightsContentsOptions
2937
2946
  * @property {string} [query] - The query string to use for highlights search.
2938
2947
  * @property {number} [numSentences] - The number of sentences to return for each highlight.
@@ -3311,4 +3320,4 @@ declare class Exa {
3311
3320
  private parseSSEStream;
3312
3321
  }
3313
3322
 
3314
- export { type AnswerOptions, type AnswerOptionsTyped, type AnswerResponse, type AnswerResponseTyped, type AnswerStreamChunk, type AnswerStreamResponse, type ArticleEntity, type BaseSearchOptions, type CompanyEntity, type ContentsOptions, type ContentsResultComponent, type ContextOptions, type CostDollars, type CostDollarsContents, type CostDollarsSeearch, type CreateCriterionParameters, type CreateEnrichmentParameters, CreateEnrichmentParametersFormat, type CreateImportParameters, CreateImportParametersFormat, type CreateImportResponse, type CreateImportWithCsvParameters, type CreateMonitorParameters, type CreateWebhookParameters, type CreateWebsetParameters, type CreateWebsetSearchParameters, type CsvDataInput, type CustomEntity, type Default, type EnrichmentResult, type Entity, type Event, EventType, EventsClient, Exa, ExaError, type ExtrasOptions, type ExtrasResponse, type FindSimilarOptions, type GetWebsetResponse, type HighlightsContentsOptions, type HighlightsResponse, HttpStatusCode, type Import, ImportFailedReason, ImportFormat, ImportObject, ImportStatus, ImportsClient, type JSONSchema, type ListEventsResponse, type ListImportsResponse, type ListMonitorRunsResponse, type ListMonitorsOptions, type ListMonitorsResponse, type ListResearchRequest, type ListResearchResponse, type ListWebhookAttemptsResponse, type ListWebhooksResponse, type ListWebsetItemResponse, type ListWebsetItemsOptions, type ListWebsetsResponse, type LivecrawlOptions, type Monitor, type MonitorBehavior, type MonitorCadence, MonitorObject, type MonitorRun, MonitorRunObject, MonitorRunStatus, MonitorRunType, MonitorStatus, type PersonEntity, type PreviewWebsetParameters, type PreviewWebsetResponse, type RegularSearchOptions, type Research, type ResearchCreateParamsTyped, type ResearchCreateRequest, type ResearchCreateResponse, type ResearchDefinitionEvent, type ResearchEvent, type ResearchOperation, type ResearchOutputEvent, type ResearchPaperEntity, type ResearchPlanDefinitionEvent, type ResearchPlanOperationEvent, type ResearchPlanOutputEvent, type ResearchStatus, type ResearchStreamEvent, type ResearchStreamEventTyped, type ResearchTaskDefinitionEvent, type ResearchTaskOperationEvent, type ResearchTaskOutputEvent, type ResearchTyped, type SearchResponse, type SearchResult, type Status, type SubpagesResponse, type SummaryContentsOptions, type SummaryContentsOptionsTyped, type SummaryResponse, type TextContentsOptions, type TextResponse, type UpdateEnrichmentParameters, type UpdateImport, type UpdateMonitor, UpdateMonitorStatus, type UpdateWebhookParameters, type UpdateWebsetRequest, type WaitUntilCompletedOptions, type Webhook, type WebhookAttempt, WebhookStatus, type Webset, type WebsetEnrichment, WebsetEnrichmentFormat, WebsetEnrichmentStatus, WebsetEnrichmentsClient, type WebsetHeadersLike, WebsetImportSource, type WebsetItem, type WebsetItemArticleProperties, type WebsetItemCompanyProperties, type WebsetItemCustomProperties, type WebsetItemEvaluation, WebsetItemEvaluationSatisfied, type WebsetItemPersonProperties, type WebsetItemResearchPaperProperties, WebsetItemSource, WebsetItemsClient, WebsetMonitorsClient, type WebsetSearch, WebsetSearchBehavior, WebsetSearchCanceledReason, WebsetSearchExcludeSource, WebsetSearchScopeSource, WebsetSearchStatus, WebsetSearchesClient, WebsetStatus, WebsetWebhooksClient, WebsetsClient, Exa as default };
3323
+ export { type AnswerOptions, type AnswerOptionsTyped, type AnswerResponse, type AnswerResponseTyped, type AnswerStreamChunk, type AnswerStreamResponse, type ArticleEntity, type BaseSearchOptions, type CompanyEntity, type ContentsOptions, type ContentsResultComponent, type ContextOptions, type CostDollars, type CostDollarsContents, type CostDollarsSeearch, type CreateCriterionParameters, type CreateEnrichmentParameters, CreateEnrichmentParametersFormat, type CreateImportParameters, CreateImportParametersFormat, type CreateImportResponse, type CreateImportWithCsvParameters, type CreateMonitorParameters, type CreateWebhookParameters, type CreateWebsetParameters, type CreateWebsetSearchParameters, type CsvDataInput, type CustomEntity, type Default, type EnrichmentResult, type Entity, type Event, EventType, EventsClient, Exa, ExaError, type ExtrasOptions, type ExtrasResponse, type FindSimilarOptions, type GetWebsetResponse, type HighlightsContentsOptions, type HighlightsResponse, HttpStatusCode, type Import, ImportFailedReason, ImportFormat, ImportObject, ImportStatus, ImportsClient, type JSONSchema, type ListEventsResponse, type ListImportsResponse, type ListMonitorRunsResponse, type ListMonitorsOptions, type ListMonitorsResponse, type ListResearchRequest, type ListResearchResponse, type ListWebhookAttemptsResponse, type ListWebhooksResponse, type ListWebsetItemResponse, type ListWebsetItemsOptions, type ListWebsetsResponse, type LivecrawlOptions, type Monitor, type MonitorBehavior, type MonitorCadence, MonitorObject, type MonitorRun, MonitorRunObject, MonitorRunStatus, MonitorRunType, MonitorStatus, type PersonEntity, type PreviewWebsetParameters, type PreviewWebsetResponse, type RegularSearchOptions, type Research, type ResearchCreateParamsTyped, type ResearchCreateRequest, type ResearchCreateResponse, type ResearchDefinitionEvent, type ResearchEvent, type ResearchOperation, type ResearchOutputEvent, type ResearchPaperEntity, type ResearchPlanDefinitionEvent, type ResearchPlanOperationEvent, type ResearchPlanOutputEvent, type ResearchStatus, type ResearchStreamEvent, type ResearchStreamEventTyped, type ResearchTaskDefinitionEvent, type ResearchTaskOperationEvent, type ResearchTaskOutputEvent, type ResearchTyped, type SearchResponse, type SearchResult, type Status, type SubpagesResponse, type SummaryContentsOptions, type SummaryContentsOptionsTyped, type SummaryResponse, type TextContentsOptions, type TextResponse, type UpdateEnrichmentParameters, type UpdateImport, type UpdateMonitor, UpdateMonitorStatus, type UpdateWebhookParameters, type UpdateWebsetRequest, type WaitUntilCompletedOptions, type Webhook, type WebhookAttempt, WebhookStatus, type Webset, type WebsetEnrichment, WebsetEnrichmentFormat, WebsetEnrichmentStatus, WebsetEnrichmentsClient, WebsetExcludeSource, type WebsetHeadersLike, WebsetImportSource, type WebsetItem, type WebsetItemArticleProperties, type WebsetItemCompanyProperties, type WebsetItemCustomProperties, type WebsetItemEvaluation, WebsetItemEvaluationSatisfied, type WebsetItemPersonProperties, type WebsetItemResearchPaperProperties, WebsetItemSource, WebsetItemsClient, WebsetMonitorsClient, type WebsetSearch, WebsetSearchBehavior, WebsetSearchCanceledReason, WebsetSearchScopeSource, WebsetSearchStatus, WebsetSearchesClient, WebsetStatus, WebsetWebhooksClient, WebsetsClient, Exa as default };
package/dist/index.js CHANGED
@@ -52,6 +52,7 @@ __export(index_exports, {
52
52
  WebsetEnrichmentFormat: () => WebsetEnrichmentFormat,
53
53
  WebsetEnrichmentStatus: () => WebsetEnrichmentStatus,
54
54
  WebsetEnrichmentsClient: () => WebsetEnrichmentsClient,
55
+ WebsetExcludeSource: () => WebsetExcludeSource,
55
56
  WebsetImportSource: () => WebsetImportSource,
56
57
  WebsetItemEvaluationSatisfied: () => WebsetItemEvaluationSatisfied,
57
58
  WebsetItemSource: () => WebsetItemSource,
@@ -59,7 +60,6 @@ __export(index_exports, {
59
60
  WebsetMonitorsClient: () => WebsetMonitorsClient,
60
61
  WebsetSearchBehavior: () => WebsetSearchBehavior,
61
62
  WebsetSearchCanceledReason: () => WebsetSearchCanceledReason,
62
- WebsetSearchExcludeSource: () => WebsetSearchExcludeSource,
63
63
  WebsetSearchScopeSource: () => WebsetSearchScopeSource,
64
64
  WebsetSearchStatus: () => WebsetSearchStatus,
65
65
  WebsetSearchesClient: () => WebsetSearchesClient,
@@ -74,7 +74,7 @@ var import_cross_fetch = __toESM(require("cross-fetch"));
74
74
  // package.json
75
75
  var package_default = {
76
76
  name: "exa-js",
77
- version: "1.9.3",
77
+ version: "1.10.1",
78
78
  description: "Exa SDK for Node.js and the browser",
79
79
  publishConfig: {
80
80
  access: "public"
@@ -629,11 +629,11 @@ var WebsetItemEvaluationSatisfied = /* @__PURE__ */ ((WebsetItemEvaluationSatisf
629
629
  WebsetItemEvaluationSatisfied2["unclear"] = "unclear";
630
630
  return WebsetItemEvaluationSatisfied2;
631
631
  })(WebsetItemEvaluationSatisfied || {});
632
- var WebsetSearchExcludeSource = /* @__PURE__ */ ((WebsetSearchExcludeSource2) => {
633
- WebsetSearchExcludeSource2["import"] = "import";
634
- WebsetSearchExcludeSource2["webset"] = "webset";
635
- return WebsetSearchExcludeSource2;
636
- })(WebsetSearchExcludeSource || {});
632
+ var WebsetExcludeSource = /* @__PURE__ */ ((WebsetExcludeSource2) => {
633
+ WebsetExcludeSource2["import"] = "import";
634
+ WebsetExcludeSource2["webset"] = "webset";
635
+ return WebsetExcludeSource2;
636
+ })(WebsetExcludeSource || {});
637
637
  var WebsetSearchScopeSource = /* @__PURE__ */ ((WebsetSearchScopeSource2) => {
638
638
  WebsetSearchScopeSource2["import"] = "import";
639
639
  WebsetSearchScopeSource2["webset"] = "webset";
@@ -1775,6 +1775,7 @@ var index_default = Exa2;
1775
1775
  WebsetEnrichmentFormat,
1776
1776
  WebsetEnrichmentStatus,
1777
1777
  WebsetEnrichmentsClient,
1778
+ WebsetExcludeSource,
1778
1779
  WebsetImportSource,
1779
1780
  WebsetItemEvaluationSatisfied,
1780
1781
  WebsetItemSource,
@@ -1782,7 +1783,6 @@ var index_default = Exa2;
1782
1783
  WebsetMonitorsClient,
1783
1784
  WebsetSearchBehavior,
1784
1785
  WebsetSearchCanceledReason,
1785
- WebsetSearchExcludeSource,
1786
1786
  WebsetSearchScopeSource,
1787
1787
  WebsetSearchStatus,
1788
1788
  WebsetSearchesClient,