diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionClick.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionClick.g.cs
index 78e19a3..042d3ee 100644
--- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionClick.g.cs
+++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionClick.g.cs
@@ -40,13 +40,13 @@ public sealed partial class ScrapeOptionsActionClick
///
/// Initializes a new instance of the class.
///
- ///
- /// Click on an element
- ///
///
/// Query selector to find the element by
/// Example: #load-more-button
///
+ ///
+ /// Click on an element
+ ///
///
/// Clicks all elements matched by the selector, not just the first one. Does not throw an error if no elements match the selector.
/// Default Value: false
@@ -59,8 +59,8 @@ public ScrapeOptionsActionClick(
global::Firecrawl.ScrapeOptionsActionClickType type,
bool? all)
{
- this.Selector = selector ?? throw new global::System.ArgumentNullException(nameof(selector));
this.Type = type;
+ this.Selector = selector ?? throw new global::System.ArgumentNullException(nameof(selector));
this.All = all;
}
diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionExecuteJavaScript.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionExecuteJavaScript.g.cs
index a704b26..118a86e 100644
--- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionExecuteJavaScript.g.cs
+++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionExecuteJavaScript.g.cs
@@ -33,13 +33,13 @@ public sealed partial class ScrapeOptionsActionExecuteJavaScript
///
/// Initializes a new instance of the class.
///
- ///
- /// Execute JavaScript code on the page
- ///
///
/// JavaScript code to execute
/// Example: document.querySelector('.button').click();
///
+ ///
+ /// Execute JavaScript code on the page
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -47,8 +47,8 @@ public ScrapeOptionsActionExecuteJavaScript(
string script,
global::Firecrawl.ScrapeOptionsActionExecuteJavaScriptType type)
{
- this.Script = script ?? throw new global::System.ArgumentNullException(nameof(script));
this.Type = type;
+ this.Script = script ?? throw new global::System.ArgumentNullException(nameof(script));
}
///
diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionPressAKey.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionPressAKey.g.cs
index cc7a97f..5172e4e 100644
--- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionPressAKey.g.cs
+++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionPressAKey.g.cs
@@ -33,13 +33,13 @@ public sealed partial class ScrapeOptionsActionPressAKey
///
/// Initializes a new instance of the class.
///
- ///
- /// Press a key on the page
- ///
///
/// Key to press
/// Example: Enter
///
+ ///
+ /// Press a key on the page
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -47,8 +47,8 @@ public ScrapeOptionsActionPressAKey(
string key,
global::Firecrawl.ScrapeOptionsActionPressAKeyType type)
{
- this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
this.Type = type;
+ this.Key = key ?? throw new global::System.ArgumentNullException(nameof(key));
}
///
diff --git a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionWriteText.g.cs b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionWriteText.g.cs
index fb9a0b2..0215feb 100644
--- a/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionWriteText.g.cs
+++ b/src/libs/Firecrawl/Generated/Firecrawl.Models.ScrapeOptionsActionWriteText.g.cs
@@ -33,13 +33,13 @@ public sealed partial class ScrapeOptionsActionWriteText
///
/// Initializes a new instance of the class.
///
- ///
- /// Write text into an input field, text area, or contenteditable element. Note: You must first focus the element using a 'click' action before writing. The text will be typed character by character to simulate keyboard input.
- ///
///
/// Text to type
/// Example: Hello, world!
///
+ ///
+ /// Write text into an input field, text area, or contenteditable element. Note: You must first focus the element using a 'click' action before writing. The text will be typed character by character to simulate keyboard input.
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -47,8 +47,8 @@ public ScrapeOptionsActionWriteText(
string text,
global::Firecrawl.ScrapeOptionsActionWriteTextType type)
{
- this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
this.Type = type;
+ this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text));
}
///