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 @@ -15,6 +15,10 @@ public enum SearchRepoResponseVariant4GitAccountProvider
/// <summary>
///
/// </summary>
CursorOrigin,
/// <summary>
///
/// </summary>
Github,
/// <summary>
///
Expand Down Expand Up @@ -47,6 +51,7 @@ public static string ToValueString(this SearchRepoResponseVariant4GitAccountProv
return value switch
{
SearchRepoResponseVariant4GitAccountProvider.Bitbucket => "bitbucket",
SearchRepoResponseVariant4GitAccountProvider.CursorOrigin => "cursor-origin",
SearchRepoResponseVariant4GitAccountProvider.Github => "github",
SearchRepoResponseVariant4GitAccountProvider.GithubCustomHost => "github-custom-host",
SearchRepoResponseVariant4GitAccountProvider.GithubLimited => "github-limited",
Expand All @@ -63,6 +68,7 @@ public static string ToValueString(this SearchRepoResponseVariant4GitAccountProv
return value switch
{
"bitbucket" => SearchRepoResponseVariant4GitAccountProvider.Bitbucket,
"cursor-origin" => SearchRepoResponseVariant4GitAccountProvider.CursorOrigin,
"github" => SearchRepoResponseVariant4GitAccountProvider.Github,
"github-custom-host" => SearchRepoResponseVariant4GitAccountProvider.GithubCustomHost,
"github-limited" => SearchRepoResponseVariant4GitAccountProvider.GithubLimited,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ public enum SearchRepoResponseVariant4RepoProvider
/// <summary>
///
/// </summary>
CursorOrigin,
/// <summary>
///
/// </summary>
Github,
/// <summary>
///
Expand Down Expand Up @@ -47,6 +51,7 @@ public static string ToValueString(this SearchRepoResponseVariant4RepoProvider v
return value switch
{
SearchRepoResponseVariant4RepoProvider.Bitbucket => "bitbucket",
SearchRepoResponseVariant4RepoProvider.CursorOrigin => "cursor-origin",
SearchRepoResponseVariant4RepoProvider.Github => "github",
SearchRepoResponseVariant4RepoProvider.GithubCustomHost => "github-custom-host",
SearchRepoResponseVariant4RepoProvider.GithubLimited => "github-limited",
Expand All @@ -63,6 +68,7 @@ public static string ToValueString(this SearchRepoResponseVariant4RepoProvider v
return value switch
{
"bitbucket" => SearchRepoResponseVariant4RepoProvider.Bitbucket,
"cursor-origin" => SearchRepoResponseVariant4RepoProvider.CursorOrigin,
"github" => SearchRepoResponseVariant4RepoProvider.Github,
"github-custom-host" => SearchRepoResponseVariant4RepoProvider.GithubCustomHost,
"github-limited" => SearchRepoResponseVariant4RepoProvider.GithubLimited,
Expand Down
2 changes: 2 additions & 0 deletions src/libs/Vercel/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65246,6 +65246,7 @@
"type": "string",
"enum": [
"bitbucket",
"cursor-origin",
"github",
"github-custom-host",
"github-limited",
Expand Down Expand Up @@ -65288,6 +65289,7 @@
"type": "string",
"enum": [
"bitbucket",
"cursor-origin",
"github",
"github-custom-host",
"github-limited",
Expand Down