diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.CrawlUrlsRequestWebhookEvent.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.CrawlUrlsRequestWebhookEvent.g.cs index b7ee13c..5995374 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.CrawlUrlsRequestWebhookEvent.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.CrawlUrlsRequestWebhookEvent.g.cs @@ -15,11 +15,11 @@ public enum CrawlUrlsRequestWebhookEvent /// /// /// - Page, + Failed, /// /// /// - Failed, + Page, /// /// /// @@ -39,8 +39,8 @@ public static string ToValueString(this CrawlUrlsRequestWebhookEvent value) return value switch { CrawlUrlsRequestWebhookEvent.Completed => "completed", - CrawlUrlsRequestWebhookEvent.Page => "page", CrawlUrlsRequestWebhookEvent.Failed => "failed", + CrawlUrlsRequestWebhookEvent.Page => "page", CrawlUrlsRequestWebhookEvent.Started => "started", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -53,8 +53,8 @@ public static string ToValueString(this CrawlUrlsRequestWebhookEvent value) return value switch { "completed" => CrawlUrlsRequestWebhookEvent.Completed, - "page" => CrawlUrlsRequestWebhookEvent.Page, "failed" => CrawlUrlsRequestWebhookEvent.Failed, + "page" => CrawlUrlsRequestWebhookEvent.Page, "started" => CrawlUrlsRequestWebhookEvent.Started, _ => null, }; diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ExtractStatusResponseStatus.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ExtractStatusResponseStatus.g.cs index 39c803c..652834d 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ExtractStatusResponseStatus.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ExtractStatusResponseStatus.g.cs @@ -11,11 +11,11 @@ public enum ExtractStatusResponseStatus /// /// /// - Completed, + Cancelled, /// /// /// - Processing, + Completed, /// /// /// @@ -23,7 +23,7 @@ public enum ExtractStatusResponseStatus /// /// /// - Cancelled, + Processing, } /// @@ -38,10 +38,10 @@ public static string ToValueString(this ExtractStatusResponseStatus value) { return value switch { + ExtractStatusResponseStatus.Cancelled => "cancelled", ExtractStatusResponseStatus.Completed => "completed", - ExtractStatusResponseStatus.Processing => "processing", ExtractStatusResponseStatus.Failed => "failed", - ExtractStatusResponseStatus.Cancelled => "cancelled", + ExtractStatusResponseStatus.Processing => "processing", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -52,10 +52,10 @@ public static string ToValueString(this ExtractStatusResponseStatus value) { return value switch { + "cancelled" => ExtractStatusResponseStatus.Cancelled, "completed" => ExtractStatusResponseStatus.Completed, - "processing" => ExtractStatusResponseStatus.Processing, "failed" => ExtractStatusResponseStatus.Failed, - "cancelled" => ExtractStatusResponseStatus.Cancelled, + "processing" => ExtractStatusResponseStatus.Processing, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.GetDeepResearchStatusResponseDataStatus.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.GetDeepResearchStatusResponseDataStatus.g.cs index b1231c6..307326b 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.GetDeepResearchStatusResponseDataStatus.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.GetDeepResearchStatusResponseDataStatus.g.cs @@ -11,15 +11,15 @@ public enum GetDeepResearchStatusResponseDataStatus /// /// /// - Processing, + Completed, /// /// /// - Completed, + Failed, /// /// /// - Failed, + Processing, } /// @@ -34,9 +34,9 @@ public static string ToValueString(this GetDeepResearchStatusResponseDataStatus { return value switch { - GetDeepResearchStatusResponseDataStatus.Processing => "processing", GetDeepResearchStatusResponseDataStatus.Completed => "completed", GetDeepResearchStatusResponseDataStatus.Failed => "failed", + GetDeepResearchStatusResponseDataStatus.Processing => "processing", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -47,9 +47,9 @@ public static string ToValueString(this GetDeepResearchStatusResponseDataStatus { return value switch { - "processing" => GetDeepResearchStatusResponseDataStatus.Processing, "completed" => GetDeepResearchStatusResponseDataStatus.Completed, "failed" => GetDeepResearchStatusResponseDataStatus.Failed, + "processing" => GetDeepResearchStatusResponseDataStatus.Processing, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.GetLLMsTxtStatusResponseStatus.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.GetLLMsTxtStatusResponseStatus.g.cs index fc23f12..1462902 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.GetLLMsTxtStatusResponseStatus.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.GetLLMsTxtStatusResponseStatus.g.cs @@ -11,15 +11,15 @@ public enum GetLLMsTxtStatusResponseStatus /// /// /// - Processing, + Completed, /// /// /// - Completed, + Failed, /// /// /// - Failed, + Processing, } /// @@ -34,9 +34,9 @@ public static string ToValueString(this GetLLMsTxtStatusResponseStatus value) { return value switch { - GetLLMsTxtStatusResponseStatus.Processing => "processing", GetLLMsTxtStatusResponseStatus.Completed => "completed", GetLLMsTxtStatusResponseStatus.Failed => "failed", + GetLLMsTxtStatusResponseStatus.Processing => "processing", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -47,9 +47,9 @@ public static string ToValueString(this GetLLMsTxtStatusResponseStatus value) { return value switch { - "processing" => GetLLMsTxtStatusResponseStatus.Processing, "completed" => GetLLMsTxtStatusResponseStatus.Completed, "failed" => GetLLMsTxtStatusResponseStatus.Failed, + "processing" => GetLLMsTxtStatusResponseStatus.Processing, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeAndExtractFromUrlsRequestWebhookEvent.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeAndExtractFromUrlsRequestWebhookEvent.g.cs index 429b0af..6e3aabe 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeAndExtractFromUrlsRequestWebhookEvent.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeAndExtractFromUrlsRequestWebhookEvent.g.cs @@ -15,11 +15,11 @@ public enum ScrapeAndExtractFromUrlsRequestWebhookEvent /// /// /// - Page, + Failed, /// /// /// - Failed, + Page, /// /// /// @@ -39,8 +39,8 @@ public static string ToValueString(this ScrapeAndExtractFromUrlsRequestWebhookEv return value switch { ScrapeAndExtractFromUrlsRequestWebhookEvent.Completed => "completed", - ScrapeAndExtractFromUrlsRequestWebhookEvent.Page => "page", ScrapeAndExtractFromUrlsRequestWebhookEvent.Failed => "failed", + ScrapeAndExtractFromUrlsRequestWebhookEvent.Page => "page", ScrapeAndExtractFromUrlsRequestWebhookEvent.Started => "started", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -53,8 +53,8 @@ public static string ToValueString(this ScrapeAndExtractFromUrlsRequestWebhookEv return value switch { "completed" => ScrapeAndExtractFromUrlsRequestWebhookEvent.Completed, - "page" => ScrapeAndExtractFromUrlsRequestWebhookEvent.Page, "failed" => ScrapeAndExtractFromUrlsRequestWebhookEvent.Failed, + "page" => ScrapeAndExtractFromUrlsRequestWebhookEvent.Page, "started" => ScrapeAndExtractFromUrlsRequestWebhookEvent.Started, _ => null, }; diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionScrollDirection.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionScrollDirection.g.cs index 5235b51..e16d746 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionScrollDirection.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionScrollDirection.g.cs @@ -12,11 +12,11 @@ public enum ScrapeOptionsActionScrollDirection /// /// /// - Up, + Down, /// /// /// - Down, + Up, } /// @@ -31,8 +31,8 @@ public static string ToValueString(this ScrapeOptionsActionScrollDirection value { return value switch { - ScrapeOptionsActionScrollDirection.Up => "up", ScrapeOptionsActionScrollDirection.Down => "down", + ScrapeOptionsActionScrollDirection.Up => "up", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -43,8 +43,8 @@ public static string ToValueString(this ScrapeOptionsActionScrollDirection value { return value switch { - "up" => ScrapeOptionsActionScrollDirection.Up, "down" => ScrapeOptionsActionScrollDirection.Down, + "up" => ScrapeOptionsActionScrollDirection.Up, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsFormat.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsFormat.g.cs index c79c92d..798666c 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsFormat.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsFormat.g.cs @@ -11,39 +11,39 @@ public enum ScrapeOptionsFormat /// /// /// - Markdown, + Branding, /// /// /// - Html, + ChangeTracking, /// /// /// - RawHtml, + Html, /// /// /// - Links, + Json, /// /// /// - Screenshot, + Links, /// /// /// - Screenshot_fullPage, + Markdown, /// /// /// - Json, + RawHtml, /// /// /// - ChangeTracking, + Screenshot, /// /// /// - Branding, + Screenshot_fullPage, } /// @@ -58,15 +58,15 @@ public static string ToValueString(this ScrapeOptionsFormat value) { return value switch { - ScrapeOptionsFormat.Markdown => "markdown", + ScrapeOptionsFormat.Branding => "branding", + ScrapeOptionsFormat.ChangeTracking => "changeTracking", ScrapeOptionsFormat.Html => "html", - ScrapeOptionsFormat.RawHtml => "rawHtml", + ScrapeOptionsFormat.Json => "json", ScrapeOptionsFormat.Links => "links", + ScrapeOptionsFormat.Markdown => "markdown", + ScrapeOptionsFormat.RawHtml => "rawHtml", ScrapeOptionsFormat.Screenshot => "screenshot", ScrapeOptionsFormat.Screenshot_fullPage => "screenshot@fullPage", - ScrapeOptionsFormat.Json => "json", - ScrapeOptionsFormat.ChangeTracking => "changeTracking", - ScrapeOptionsFormat.Branding => "branding", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -77,15 +77,15 @@ public static string ToValueString(this ScrapeOptionsFormat value) { return value switch { - "markdown" => ScrapeOptionsFormat.Markdown, + "branding" => ScrapeOptionsFormat.Branding, + "changeTracking" => ScrapeOptionsFormat.ChangeTracking, "html" => ScrapeOptionsFormat.Html, - "rawHtml" => ScrapeOptionsFormat.RawHtml, + "json" => ScrapeOptionsFormat.Json, "links" => ScrapeOptionsFormat.Links, + "markdown" => ScrapeOptionsFormat.Markdown, + "rawHtml" => ScrapeOptionsFormat.RawHtml, "screenshot" => ScrapeOptionsFormat.Screenshot, "screenshot@fullPage" => ScrapeOptionsFormat.Screenshot_fullPage, - "json" => ScrapeOptionsFormat.Json, - "changeTracking" => ScrapeOptionsFormat.ChangeTracking, - "branding" => ScrapeOptionsFormat.Branding, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsProxy.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsProxy.g.cs index 065bbbe..25c2e4d 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsProxy.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsProxy.g.cs @@ -12,6 +12,10 @@ namespace Firecrawl /// public enum ScrapeOptionsProxy { + /// + /// Firecrawl will automatically retry scraping with enhanced proxies if the basic proxy fails. If the retry with enhanced is successful, 5 credits will be billed for the scrape. If the first attempt with basic is successful, only the regular cost will be billed. + /// + Auto, /// /// Proxies for scraping sites with none to basic anti-bot solutions. Fast and usually works. /// @@ -20,10 +24,6 @@ public enum ScrapeOptionsProxy /// Enhanced proxies for scraping sites with advanced anti-bot solutions. Slower, but more reliable on certain sites. Costs up to 5 credits per request. /// Enhanced, - /// - /// Firecrawl will automatically retry scraping with enhanced proxies if the basic proxy fails. If the retry with enhanced is successful, 5 credits will be billed for the scrape. If the first attempt with basic is successful, only the regular cost will be billed. - /// - Auto, } /// @@ -38,9 +38,9 @@ public static string ToValueString(this ScrapeOptionsProxy value) { return value switch { + ScrapeOptionsProxy.Auto => "auto", ScrapeOptionsProxy.Basic => "basic", ScrapeOptionsProxy.Enhanced => "enhanced", - ScrapeOptionsProxy.Auto => "auto", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -51,9 +51,9 @@ public static string ToValueString(this ScrapeOptionsProxy value) { return value switch { + "auto" => ScrapeOptionsProxy.Auto, "basic" => ScrapeOptionsProxy.Basic, "enhanced" => ScrapeOptionsProxy.Enhanced, - "auto" => ScrapeOptionsProxy.Auto, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingChangeStatus.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingChangeStatus.g.cs index 0158ba6..f3e0a29 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingChangeStatus.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingChangeStatus.g.cs @@ -11,19 +11,19 @@ public enum ScrapeResponseDataChangeTrackingChangeStatus /// /// /// - New, + Changed, /// /// /// - Same, + New, /// /// /// - Changed, + Removed, /// /// /// - Removed, + Same, } /// @@ -38,10 +38,10 @@ public static string ToValueString(this ScrapeResponseDataChangeTrackingChangeSt { return value switch { - ScrapeResponseDataChangeTrackingChangeStatus.New => "new", - ScrapeResponseDataChangeTrackingChangeStatus.Same => "same", ScrapeResponseDataChangeTrackingChangeStatus.Changed => "changed", + ScrapeResponseDataChangeTrackingChangeStatus.New => "new", ScrapeResponseDataChangeTrackingChangeStatus.Removed => "removed", + ScrapeResponseDataChangeTrackingChangeStatus.Same => "same", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -52,10 +52,10 @@ public static string ToValueString(this ScrapeResponseDataChangeTrackingChangeSt { return value switch { - "new" => ScrapeResponseDataChangeTrackingChangeStatus.New, - "same" => ScrapeResponseDataChangeTrackingChangeStatus.Same, "changed" => ScrapeResponseDataChangeTrackingChangeStatus.Changed, + "new" => ScrapeResponseDataChangeTrackingChangeStatus.New, "removed" => ScrapeResponseDataChangeTrackingChangeStatus.Removed, + "same" => ScrapeResponseDataChangeTrackingChangeStatus.Same, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingVisibility.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingVisibility.g.cs index 622316f..428252f 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingVisibility.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeResponseDataChangeTrackingVisibility.g.cs @@ -11,11 +11,11 @@ public enum ScrapeResponseDataChangeTrackingVisibility /// /// /// - Visible, + Hidden, /// /// /// - Hidden, + Visible, } /// @@ -30,8 +30,8 @@ public static string ToValueString(this ScrapeResponseDataChangeTrackingVisibili { return value switch { - ScrapeResponseDataChangeTrackingVisibility.Visible => "visible", ScrapeResponseDataChangeTrackingVisibility.Hidden => "hidden", + ScrapeResponseDataChangeTrackingVisibility.Visible => "visible", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -42,8 +42,8 @@ public static string ToValueString(this ScrapeResponseDataChangeTrackingVisibili { return value switch { - "visible" => ScrapeResponseDataChangeTrackingVisibility.Visible, "hidden" => ScrapeResponseDataChangeTrackingVisibility.Hidden, + "visible" => ScrapeResponseDataChangeTrackingVisibility.Visible, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.SearchAndScrapeRequestScrapeOptionsFormat.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.SearchAndScrapeRequestScrapeOptionsFormat.g.cs index 494de14..8085fcc 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.SearchAndScrapeRequestScrapeOptionsFormat.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.SearchAndScrapeRequestScrapeOptionsFormat.g.cs @@ -11,7 +11,7 @@ public enum SearchAndScrapeRequestScrapeOptionsFormat /// /// /// - Markdown, + Branding, /// /// /// @@ -19,7 +19,7 @@ public enum SearchAndScrapeRequestScrapeOptionsFormat /// /// /// - RawHtml, + Json, /// /// /// @@ -27,19 +27,19 @@ public enum SearchAndScrapeRequestScrapeOptionsFormat /// /// /// - Screenshot, + Markdown, /// /// /// - Screenshot_fullPage, + RawHtml, /// /// /// - Json, + Screenshot, /// /// /// - Branding, + Screenshot_fullPage, } /// @@ -54,14 +54,14 @@ public static string ToValueString(this SearchAndScrapeRequestScrapeOptionsForma { return value switch { - SearchAndScrapeRequestScrapeOptionsFormat.Markdown => "markdown", + SearchAndScrapeRequestScrapeOptionsFormat.Branding => "branding", SearchAndScrapeRequestScrapeOptionsFormat.Html => "html", - SearchAndScrapeRequestScrapeOptionsFormat.RawHtml => "rawHtml", + SearchAndScrapeRequestScrapeOptionsFormat.Json => "json", SearchAndScrapeRequestScrapeOptionsFormat.Links => "links", + SearchAndScrapeRequestScrapeOptionsFormat.Markdown => "markdown", + SearchAndScrapeRequestScrapeOptionsFormat.RawHtml => "rawHtml", SearchAndScrapeRequestScrapeOptionsFormat.Screenshot => "screenshot", SearchAndScrapeRequestScrapeOptionsFormat.Screenshot_fullPage => "screenshot@fullPage", - SearchAndScrapeRequestScrapeOptionsFormat.Json => "json", - SearchAndScrapeRequestScrapeOptionsFormat.Branding => "branding", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -72,14 +72,14 @@ public static string ToValueString(this SearchAndScrapeRequestScrapeOptionsForma { return value switch { - "markdown" => SearchAndScrapeRequestScrapeOptionsFormat.Markdown, + "branding" => SearchAndScrapeRequestScrapeOptionsFormat.Branding, "html" => SearchAndScrapeRequestScrapeOptionsFormat.Html, - "rawHtml" => SearchAndScrapeRequestScrapeOptionsFormat.RawHtml, + "json" => SearchAndScrapeRequestScrapeOptionsFormat.Json, "links" => SearchAndScrapeRequestScrapeOptionsFormat.Links, + "markdown" => SearchAndScrapeRequestScrapeOptionsFormat.Markdown, + "rawHtml" => SearchAndScrapeRequestScrapeOptionsFormat.RawHtml, "screenshot" => SearchAndScrapeRequestScrapeOptionsFormat.Screenshot, "screenshot@fullPage" => SearchAndScrapeRequestScrapeOptionsFormat.Screenshot_fullPage, - "json" => SearchAndScrapeRequestScrapeOptionsFormat.Json, - "branding" => SearchAndScrapeRequestScrapeOptionsFormat.Branding, _ => null, }; } diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.StartDeepResearchRequestFormat.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.StartDeepResearchRequestFormat.g.cs index b2aa166..7198a3a 100644 --- a/src/libs/Firecrawl/Generated/Firecrawl.Models.StartDeepResearchRequestFormat.g.cs +++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.StartDeepResearchRequestFormat.g.cs @@ -11,7 +11,7 @@ public enum StartDeepResearchRequestFormat /// /// /// - Markdown, + Branding, /// /// /// @@ -19,7 +19,7 @@ public enum StartDeepResearchRequestFormat /// /// /// - Branding, + Markdown, } /// @@ -34,9 +34,9 @@ public static string ToValueString(this StartDeepResearchRequestFormat value) { return value switch { - StartDeepResearchRequestFormat.Markdown => "markdown", - StartDeepResearchRequestFormat.Json => "json", StartDeepResearchRequestFormat.Branding => "branding", + StartDeepResearchRequestFormat.Json => "json", + StartDeepResearchRequestFormat.Markdown => "markdown", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -47,9 +47,9 @@ public static string ToValueString(this StartDeepResearchRequestFormat value) { return value switch { - "markdown" => StartDeepResearchRequestFormat.Markdown, - "json" => StartDeepResearchRequestFormat.Json, "branding" => StartDeepResearchRequestFormat.Branding, + "json" => StartDeepResearchRequestFormat.Json, + "markdown" => StartDeepResearchRequestFormat.Markdown, _ => null, }; }