-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added authorization methods to client interfaces.
- Loading branch information
Showing
70 changed files
with
659 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...s/Snapshots/Anthropic/NewtonsoftJson/_#G.IApi.Authorizations.ApiKeyInHeader.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.ApiKeyInHeader.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using ApiKey authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingApiKeyInHeader( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...s/Snapshots/Anthropic/SystemTextJson/_#G.IApi.Authorizations.ApiKeyInHeader.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.ApiKeyInHeader.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using ApiKey authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingApiKeyInHeader( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
.../Snapshots/AssemblyAi/NewtonsoftJson/_#G.IApi.Authorizations.ApiKeyInHeader.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.ApiKeyInHeader.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using ApiKey authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingApiKeyInHeader( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
.../Snapshots/AssemblyAi/SystemTextJson/_#G.IApi.Authorizations.ApiKeyInHeader.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.ApiKeyInHeader.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using ApiKey authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingApiKeyInHeader( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...napshotTests/Snapshots/Cohere/NewtonsoftJson/_#G.IApi.Authorizations.Bearer.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.Bearer.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using bearer authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingBearer( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...napshotTests/Snapshots/Cohere/SystemTextJson/_#G.IApi.Authorizations.Bearer.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.Bearer.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using bearer authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingBearer( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...apshotTests/Snapshots/Dedoose/NewtonsoftJson/_#G.IApi.Authorizations.Bearer.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.Bearer.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using bearer authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingBearer( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...apshotTests/Snapshots/Dedoose/SystemTextJson/_#G.IApi.Authorizations.Bearer.g.verified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//HintName: G.IApi.Authorizations.Bearer.g.cs | ||
|
||
#nullable enable | ||
|
||
namespace G | ||
{ | ||
public partial interface IApi | ||
{ | ||
/// <summary> | ||
/// Authorize using bearer authentication. | ||
/// </summary> | ||
/// <param name="apiKey"></param> | ||
public void AuthorizeUsingBearer( | ||
string apiKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.