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
@@ -0,0 +1,60 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Cancel Table Sheet Scorecard<br/>
/// Cancel active queued or running scorecard work for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="request"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.CancelTableSheetScorecardResponse> CancelTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,

global::PromptLayer.CancelTableSheetScorecardRequest request,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Cancel Table Sheet Scorecard<br/>
/// Cancel active queued or running scorecard work for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="request"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.CancelTableSheetScorecardResponse>> CancelTableSheetScorecardAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,

global::PromptLayer.CancelTableSheetScorecardRequest request,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Cancel Table Sheet Scorecard<br/>
/// Cancel active queued or running scorecard work for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="rowIndices"></param>
/// <param name="stepIds"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.CancelTableSheetScorecardResponse> CancelTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::System.Collections.Generic.IList<int>? rowIndices = default,
global::System.Collections.Generic.IList<global::System.Guid>? stepIds = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Configure Table Sheet Scorecard<br/>
/// Create or update the active scorecard for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="request"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.ConfigureTableSheetScorecardResponse> ConfigureTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,

global::PromptLayer.ConfigureTableSheetScorecardRequest request,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Configure Table Sheet Scorecard<br/>
/// Create or update the active scorecard for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="request"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.ConfigureTableSheetScorecardResponse>> ConfigureTableSheetScorecardAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,

global::PromptLayer.ConfigureTableSheetScorecardRequest request,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Configure Table Sheet Scorecard<br/>
/// Create or update the active scorecard for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="name"></param>
/// <param name="evaluatedColumnIds">
/// Default Value: []
/// </param>
/// <param name="steps">
/// Default Value: []
/// </param>
/// <param name="aggregation"></param>
/// <param name="displayConfig"></param>
/// <param name="baselineConfig"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.ConfigureTableSheetScorecardResponse> ConfigureTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
string name,
object aggregation,
global::System.Collections.Generic.IList<string>? evaluatedColumnIds = default,
global::System.Collections.Generic.IList<object>? steps = default,
object? displayConfig = default,
object? baselineConfig = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Delete Table Sheet Scorecard<br/>
/// Soft-delete the active scorecard for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.DeleteTableSheetScorecardResponse> DeleteTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Delete Table Sheet Scorecard<br/>
/// Soft-delete the active scorecard for a table sheet.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.DeleteTableSheetScorecardResponse>> DeleteTableSheetScorecardAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Get Table Sheet Scorecard<br/>
/// Get the active scorecard for a table sheet, including latest and display calculation metadata.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.TableSheetScorecardGetResponse> GetTableSheetScorecardAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Get Table Sheet Scorecard<br/>
/// Get the active scorecard for a table sheet, including latest and display calculation metadata.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.TableSheetScorecardGetResponse>> GetTableSheetScorecardAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Get Table Sheet Scorecard Calculation<br/>
/// Get details for a single scorecard calculation.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="calculationId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.GetTableSheetScorecardCalculationResponse> GetTableSheetScorecardCalculationAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::System.Guid calculationId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Get Table Sheet Scorecard Calculation<br/>
/// Get details for a single scorecard calculation.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="calculationId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.GetTableSheetScorecardCalculationResponse>> GetTableSheetScorecardCalculationAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::System.Guid calculationId,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// Get Table Sheet Scorecard Row<br/>
/// Get row-level scorecard breakdown for a single row index.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="rowIndex"></param>
/// <param name="calculationId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.GetTableSheetScorecardRowResponse> GetTableSheetScorecardRowAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
int rowIndex,
global::System.Guid? calculationId = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Get Table Sheet Scorecard Row<br/>
/// Get row-level scorecard breakdown for a single row index.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="rowIndex"></param>
/// <param name="calculationId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.GetTableSheetScorecardRowResponse>> GetTableSheetScorecardRowAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
int rowIndex,
global::System.Guid? calculationId = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
#nullable enable

namespace PromptLayer
{
public partial interface ITablesClient
{
/// <summary>
/// List Table Sheet Scorecard Rows<br/>
/// List row-level scorecard summaries for a calculation.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="calculationId"></param>
/// <param name="verdict"></param>
/// <param name="cursor"></param>
/// <param name="limit">
/// Default Value: 50
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.ListTableSheetScorecardRowsResponse> ListTableSheetScorecardRowsAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::System.Guid? calculationId = default,
global::PromptLayer.ListTableSheetScorecardRowsVerdict? verdict = default,
int? cursor = default,
int? limit = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// List Table Sheet Scorecard Rows<br/>
/// List row-level scorecard summaries for a calculation.
/// </summary>
/// <param name="tableId"></param>
/// <param name="sheetId"></param>
/// <param name="calculationId"></param>
/// <param name="verdict"></param>
/// <param name="cursor"></param>
/// <param name="limit">
/// Default Value: 50
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::PromptLayer.ApiException"></exception>
global::System.Threading.Tasks.Task<global::PromptLayer.AutoSDKHttpResponse<global::PromptLayer.ListTableSheetScorecardRowsResponse>> ListTableSheetScorecardRowsAsResponseAsync(
global::System.Guid tableId,
global::System.Guid sheetId,
global::System.Guid? calculationId = default,
global::PromptLayer.ListTableSheetScorecardRowsVerdict? verdict = default,
int? cursor = default,
int? limit = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Loading