diff --git a/src/libs/Forem/Generated/Forem.ArticlesClient.CreateArticle.g.cs b/src/libs/Forem/Generated/Forem.ArticlesClient.CreateArticle.g.cs
index 5f2fad5..f12ece2 100644
--- a/src/libs/Forem/Generated/Forem.ArticlesClient.CreateArticle.g.cs
+++ b/src/libs/Forem/Generated/Forem.ArticlesClient.CreateArticle.g.cs
@@ -25,6 +25,7 @@ partial void ProcessCreateArticleResponse(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task CreateArticleAsync(
+
global::Forem.Article request,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/libs/Forem/Generated/Forem.ArticlesClient.UpdateArticle.g.cs b/src/libs/Forem/Generated/Forem.ArticlesClient.UpdateArticle.g.cs
index 5572bca..1031a56 100644
--- a/src/libs/Forem/Generated/Forem.ArticlesClient.UpdateArticle.g.cs
+++ b/src/libs/Forem/Generated/Forem.ArticlesClient.UpdateArticle.g.cs
@@ -29,6 +29,7 @@ partial void ProcessUpdateArticleResponse(
///
public async global::System.Threading.Tasks.Task UpdateArticleAsync(
int id,
+
global::Forem.Article request,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/libs/Forem/Generated/Forem.DisplayAdsClient.CreateDisplayAds.g.cs b/src/libs/Forem/Generated/Forem.DisplayAdsClient.CreateDisplayAds.g.cs
index 5522cd7..00a7bfa 100644
--- a/src/libs/Forem/Generated/Forem.DisplayAdsClient.CreateDisplayAds.g.cs
+++ b/src/libs/Forem/Generated/Forem.DisplayAdsClient.CreateDisplayAds.g.cs
@@ -29,6 +29,7 @@ partial void ProcessCreateDisplayAdsResponseContent(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task CreateDisplayAdsAsync(
+
object request,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/libs/Forem/Generated/Forem.DisplayAdsClient.PutDisplayAdsById.g.cs b/src/libs/Forem/Generated/Forem.DisplayAdsClient.PutDisplayAdsById.g.cs
index 6dc2f29..9cba0a2 100644
--- a/src/libs/Forem/Generated/Forem.DisplayAdsClient.PutDisplayAdsById.g.cs
+++ b/src/libs/Forem/Generated/Forem.DisplayAdsClient.PutDisplayAdsById.g.cs
@@ -33,6 +33,7 @@ partial void ProcessPutDisplayAdsByIdResponseContent(
///
public async global::System.Threading.Tasks.Task PutDisplayAdsByIdAsync(
int id,
+
object request,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/libs/Forem/Generated/Forem.IArticlesClient.CreateArticle.g.cs b/src/libs/Forem/Generated/Forem.IArticlesClient.CreateArticle.g.cs
index 664abb3..34843cc 100644
--- a/src/libs/Forem/Generated/Forem.IArticlesClient.CreateArticle.g.cs
+++ b/src/libs/Forem/Generated/Forem.IArticlesClient.CreateArticle.g.cs
@@ -13,6 +13,7 @@ public partial interface IArticlesClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreateArticleAsync(
+
global::Forem.Article request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.IArticlesClient.UpdateArticle.g.cs b/src/libs/Forem/Generated/Forem.IArticlesClient.UpdateArticle.g.cs
index 49e3eb9..a5781b2 100644
--- a/src/libs/Forem/Generated/Forem.IArticlesClient.UpdateArticle.g.cs
+++ b/src/libs/Forem/Generated/Forem.IArticlesClient.UpdateArticle.g.cs
@@ -15,6 +15,7 @@ public partial interface IArticlesClient
///
global::System.Threading.Tasks.Task UpdateArticleAsync(
int id,
+
global::Forem.Article request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.IDisplayAdsClient.CreateDisplayAds.g.cs b/src/libs/Forem/Generated/Forem.IDisplayAdsClient.CreateDisplayAds.g.cs
index 55a4e32..99d3dcb 100644
--- a/src/libs/Forem/Generated/Forem.IDisplayAdsClient.CreateDisplayAds.g.cs
+++ b/src/libs/Forem/Generated/Forem.IDisplayAdsClient.CreateDisplayAds.g.cs
@@ -12,6 +12,7 @@ public partial interface IDisplayAdsClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreateDisplayAdsAsync(
+
object request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.IDisplayAdsClient.PutDisplayAdsById.g.cs b/src/libs/Forem/Generated/Forem.IDisplayAdsClient.PutDisplayAdsById.g.cs
index 9727e68..e3624dd 100644
--- a/src/libs/Forem/Generated/Forem.IDisplayAdsClient.PutDisplayAdsById.g.cs
+++ b/src/libs/Forem/Generated/Forem.IDisplayAdsClient.PutDisplayAdsById.g.cs
@@ -14,6 +14,7 @@ public partial interface IDisplayAdsClient
///
global::System.Threading.Tasks.Task PutDisplayAdsByIdAsync(
int id,
+
object request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.IPagesClient.CreatePages.g.cs b/src/libs/Forem/Generated/Forem.IPagesClient.CreatePages.g.cs
index 42822a3..bfa16b0 100644
--- a/src/libs/Forem/Generated/Forem.IPagesClient.CreatePages.g.cs
+++ b/src/libs/Forem/Generated/Forem.IPagesClient.CreatePages.g.cs
@@ -12,6 +12,7 @@ public partial interface IPagesClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task CreatePagesAsync(
+
global::Forem.Request3 request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.IPagesClient.PutPagesById.g.cs b/src/libs/Forem/Generated/Forem.IPagesClient.PutPagesById.g.cs
index 60413b3..d10c626 100644
--- a/src/libs/Forem/Generated/Forem.IPagesClient.PutPagesById.g.cs
+++ b/src/libs/Forem/Generated/Forem.IPagesClient.PutPagesById.g.cs
@@ -14,6 +14,7 @@ public partial interface IPagesClient
///
global::System.Threading.Tasks.Task PutPagesByIdAsync(
int id,
+
global::Forem.Page request,
global::System.Threading.CancellationToken cancellationToken = default);
@@ -52,11 +53,11 @@ public partial interface IPagesClient
string title,
string slug,
string description,
- global::Forem.PageTemplate template,
string? bodyMarkdown = default,
string? bodyJson = default,
bool? isTopLevelPath = default,
object? socialImage = default,
+ global::Forem.PageTemplate template = global::Forem.PageTemplate.Contained,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
\ No newline at end of file
diff --git a/src/libs/Forem/Generated/Forem.IUsersClient.PostAdminUsersCreate.g.cs b/src/libs/Forem/Generated/Forem.IUsersClient.PostAdminUsersCreate.g.cs
index e58a979..febef0e 100644
--- a/src/libs/Forem/Generated/Forem.IUsersClient.PostAdminUsersCreate.g.cs
+++ b/src/libs/Forem/Generated/Forem.IUsersClient.PostAdminUsersCreate.g.cs
@@ -13,6 +13,7 @@ public partial interface IUsersClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task PostAdminUsersCreateAsync(
+
global::Forem.UserInviteParam request,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/Forem/Generated/Forem.PagesClient.CreatePages.g.cs b/src/libs/Forem/Generated/Forem.PagesClient.CreatePages.g.cs
index 92fbcfa..75db71c 100644
--- a/src/libs/Forem/Generated/Forem.PagesClient.CreatePages.g.cs
+++ b/src/libs/Forem/Generated/Forem.PagesClient.CreatePages.g.cs
@@ -24,6 +24,7 @@ partial void ProcessCreatePagesResponse(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task CreatePagesAsync(
+
global::Forem.Request3 request,
global::System.Threading.CancellationToken cancellationToken = default)
{
diff --git a/src/libs/Forem/Generated/Forem.PagesClient.PutPagesById.g.cs b/src/libs/Forem/Generated/Forem.PagesClient.PutPagesById.g.cs
index 5b9c2f5..487955a 100644
--- a/src/libs/Forem/Generated/Forem.PagesClient.PutPagesById.g.cs
+++ b/src/libs/Forem/Generated/Forem.PagesClient.PutPagesById.g.cs
@@ -33,6 +33,7 @@ partial void ProcessPutPagesByIdResponseContent(
///
public async global::System.Threading.Tasks.Task PutPagesByIdAsync(
int id,
+
global::Forem.Page request,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -273,11 +274,11 @@ partial void ProcessPutPagesByIdResponseContent(
string title,
string slug,
string description,
- global::Forem.PageTemplate template,
string? bodyMarkdown = default,
string? bodyJson = default,
bool? isTopLevelPath = default,
object? socialImage = default,
+ global::Forem.PageTemplate template = global::Forem.PageTemplate.Contained,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __request = new global::Forem.Page
diff --git a/src/libs/Forem/Generated/Forem.UsersClient.PostAdminUsersCreate.g.cs b/src/libs/Forem/Generated/Forem.UsersClient.PostAdminUsersCreate.g.cs
index 6b293c8..203f6bd 100644
--- a/src/libs/Forem/Generated/Forem.UsersClient.PostAdminUsersCreate.g.cs
+++ b/src/libs/Forem/Generated/Forem.UsersClient.PostAdminUsersCreate.g.cs
@@ -25,6 +25,7 @@ partial void ProcessPostAdminUsersCreateResponse(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task PostAdminUsersCreateAsync(
+
global::Forem.UserInviteParam request,
global::System.Threading.CancellationToken cancellationToken = default)
{