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 @@ -35,7 +35,7 @@ public partial interface ISubpackageOAuthClient
/// Create an authorization code for the PKCE flow to generate a user-controlled API key
/// </summary>
/// <param name="callbackUrl">
/// The callback URL to redirect to after authorization. Note, only https URLs on ports 443 and 3000 are allowed.
/// The callback URL to redirect to after authorization. Supports https URLs and localhost/127.0.0.1 URLs on any port for local CLI tools.
/// </param>
/// <param name="codeChallenge">
/// PKCE code challenge for enhanced security
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace OpenRouter
public sealed partial class CreateAuthKeysCodeRequest
{
/// <summary>
/// The callback URL to redirect to after authorization. Note, only https URLs on ports 443 and 3000 are allowed.
/// The callback URL to redirect to after authorization. Supports https URLs and localhost/127.0.0.1 URLs on any port for local CLI tools.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("callback_url")]
[global::System.Text.Json.Serialization.JsonRequired]
Expand Down Expand Up @@ -63,7 +63,7 @@ public sealed partial class CreateAuthKeysCodeRequest
/// Initializes a new instance of the <see cref="CreateAuthKeysCodeRequest" /> class.
/// </summary>
/// <param name="callbackUrl">
/// The callback URL to redirect to after authorization. Note, only https URLs on ports 443 and 3000 are allowed.
/// The callback URL to redirect to after authorization. Supports https URLs and localhost/127.0.0.1 URLs on any port for local CLI tools.
/// </param>
/// <param name="codeChallenge">
/// PKCE code challenge for enhanced security
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ partial void ProcessCreateAuthKeysCodeResponseContent(
/// Create an authorization code for the PKCE flow to generate a user-controlled API key
/// </summary>
/// <param name="callbackUrl">
/// The callback URL to redirect to after authorization. Note, only https URLs on ports 443 and 3000 are allowed.
/// The callback URL to redirect to after authorization. Supports https URLs and localhost/127.0.0.1 URLs on any port for local CLI tools.
/// </param>
/// <param name="codeChallenge">
/// PKCE code challenge for enhanced security
Expand Down
2 changes: 1 addition & 1 deletion src/libs/OpenRouter/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
"callback_url": {
"type": "string",
"format": "uri",
"description": "The callback URL to redirect to after authorization. Note, only https URLs on ports 443 and 3000 are allowed."
"description": "The callback URL to redirect to after authorization. Supports https URLs and localhost/127.0.0.1 URLs on any port for local CLI tools."
},
"code_challenge": {
"type": "string",
Expand Down