Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public partial interface ISearchClient
/// Default Value: false
/// </param>
/// <param name="scrapeOptions">
/// Options for scraping search results
/// Options for scraping search results<br/>
/// Default Value: {}
/// </param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public sealed partial class ScrapeOptionsChangeTrackingOptions
public string? Prompt { get; set; }

/// <summary>
/// Tag to use for change tracking. Tags can separate change tracking history into separate "branches", where change tracking with a specific tagwill only compare to scrapes made in the same tag. If not provided, the default tag (null) will be used.
/// Tag to use for change tracking. Tags can separate change tracking history into separate "branches", where change tracking with a specific tagwill only compare to scrapes made in the same tag. If not provided, the default tag (null) will be used.<br/>
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("tag")]
public string? Tag { get; set; }
Expand All @@ -51,7 +52,8 @@ public sealed partial class ScrapeOptionsChangeTrackingOptions
/// Prompt to use for change tracking when using 'json' mode. If not provided, the default prompt will be used.
/// </param>
/// <param name="tag">
/// Tag to use for change tracking. Tags can separate change tracking history into separate "branches", where change tracking with a specific tagwill only compare to scrapes made in the same tag. If not provided, the default tag (null) will be used.
/// Tag to use for change tracking. Tags can separate change tracking history into separate "branches", where change tracking with a specific tagwill only compare to scrapes made in the same tag. If not provided, the default tag (null) will be used.<br/>
/// Default Value: openapi-json-null-sentinel-value-2BF93600-0FE4-4250-987A-E5DDB203E464
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public sealed partial class SearchAndScrapeRequest
public bool? IgnoreInvalidURLs { get; set; }

/// <summary>
/// Options for scraping search results
/// Options for scraping search results<br/>
/// Default Value: {}
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("scrapeOptions")]
public global::Firecrawl.SearchAndScrapeRequestScrapeOptions? ScrapeOptions { get; set; }
Expand Down Expand Up @@ -85,7 +86,8 @@ public sealed partial class SearchAndScrapeRequest
/// Default Value: false
/// </param>
/// <param name="scrapeOptions">
/// Options for scraping search results
/// Options for scraping search results<br/>
/// Default Value: {}
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
namespace Firecrawl
{
/// <summary>
/// Options for scraping search results
/// Options for scraping search results<br/>
/// Default Value: {}
/// </summary>
public sealed partial class SearchAndScrapeRequestScrapeOptions
{
/// <summary>
/// Formats to include in the output
/// Formats to include in the output<br/>
/// Default Value: []
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("formats")]
public global::System.Collections.Generic.IList<global::Firecrawl.SearchAndScrapeRequestScrapeOptionsFormat>? Formats { get; set; }
Expand All @@ -24,7 +26,8 @@ public sealed partial class SearchAndScrapeRequestScrapeOptions
/// Initializes a new instance of the <see cref="SearchAndScrapeRequestScrapeOptions" /> class.
/// </summary>
/// <param name="formats">
/// Formats to include in the output
/// Formats to include in the output<br/>
/// Default Value: []
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ partial void ProcessSearchAndScrapeResponseContent(
/// Default Value: false
/// </param>
/// <param name="scrapeOptions">
/// Options for scraping search results
/// Options for scraping search results<br/>
/// Default Value: {}
/// </param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
Expand Down
Loading