diff --git a/src/libs/PromptLayer/Generated/PromptLayer.IPromptLayerClient.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.IPromptLayerClient.g.cs
index 98eb91c..27c3cba 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.IPromptLayerClient.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.IPromptLayerClient.g.cs
@@ -119,6 +119,11 @@ public partial interface IPromptLayerClient : global::System.IDisposable
///
public SkillCollectionsClient SkillCollections { get; }
+ ///
+ ///
+ ///
+ public SmartTablesClient SmartTables { get; }
+
///
///
///
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.AddTableSheetRows.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.AddTableSheetRows.g.cs
new file mode 100644
index 0000000..840eba6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.AddTableSheetRows.g.cs
@@ -0,0 +1,65 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Add Rows
+ /// Append one or more rows to a sheet. Text column values can be set immediately; non-text column cells are created with `stale` status and must be triggered via a recalculation.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task AddTableSheetRowsAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.AddTableSheetRowsRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Add Rows
+ /// Append one or more rows to a sheet. Text column values can be set immediately; non-text column cells are created with `stale` status and must be triggered via a recalculation.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> AddTableSheetRowsAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.AddTableSheetRowsRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Add Rows
+ /// Append one or more rows to a sheet. Text column values can be set immediately; non-text column cells are created with `stale` status and must be triggered via a recalculation.
+ ///
+ ///
+ ///
+ ///
+ /// Number of rows to append (1–100).
+ /// Default Value: 1
+ ///
+ ///
+ /// Per-row initial values for text columns. Each element is a map of column_id → value.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task AddTableSheetRowsAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ int? count = default,
+ global::System.Collections.Generic.IList? values = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTable.g.cs
new file mode 100644
index 0000000..6e62ff0
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTable.g.cs
@@ -0,0 +1,52 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Create Table
+ /// Create a new Table. A default sheet with one text column is created automatically.
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableAsync(
+
+ global::PromptLayer.CreateTableRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Table
+ /// Create a new Table. A default sheet with one text column is created automatically.
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateTableAsResponseAsync(
+
+ global::PromptLayer.CreateTableRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Table
+ /// Create a new Table. A default sheet with one text column is created automatically.
+ ///
+ ///
+ /// Table title. Defaults to a unique 'Untitled Table' name if omitted.
+ ///
+ ///
+ /// Folder to place the table in.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableAsync(
+ string? title = default,
+ int? folderId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheet.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheet.g.cs
new file mode 100644
index 0000000..5f778b3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheet.g.cs
@@ -0,0 +1,66 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Create Sheet
+ /// Create a new sheet in a table by importing data from a file (CSV or JSON, base64-encoded) or from request log history.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetAsync(
+ global::System.Guid tableId,
+
+ global::PromptLayer.CreateTableSheetRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Sheet
+ /// Create a new sheet in a table by importing data from a file (CSV or JSON, base64-encoded) or from request log history.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateTableSheetAsResponseAsync(
+ global::System.Guid tableId,
+
+ global::PromptLayer.CreateTableSheetRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Sheet
+ /// Create a new sheet in a table by importing data from a file (CSV or JSON, base64-encoded) or from request log history.
+ ///
+ ///
+ ///
+ /// Sheet title. Defaults to the source file name or 'Request Logs'.
+ ///
+ ///
+ /// Display position within the table (0-based). Defaults to appending at the end.
+ ///
+ ///
+ /// Optional idempotency key for the import operation.
+ ///
+ ///
+ /// Data source for the sheet.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetAsync(
+ global::System.Guid tableId,
+ global::PromptLayer.OneOf source,
+ string? title = default,
+ int? index = default,
+ string? operationId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculation.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculation.g.cs
new file mode 100644
index 0000000..4f4bedb
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculation.g.cs
@@ -0,0 +1,40 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Recalculate Cell
+ /// Trigger recalculation for a single cell.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetCellRecalculationAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Recalculate Cell
+ /// Trigger recalculation for a single cell.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateTableSheetCellRecalculationAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculationsBatch.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculationsBatch.g.cs
new file mode 100644
index 0000000..c975ed2
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetCellRecalculationsBatch.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Recalculate Cells (Batch)
+ /// Trigger recalculation for a batch of cells identified by ID.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetCellRecalculationsBatchAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Recalculate Cells (Batch)
+ /// Trigger recalculation for a batch of cells identified by ID.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateTableSheetCellRecalculationsBatchAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Recalculate Cells (Batch)
+ /// Trigger recalculation for a batch of cells identified by ID.
+ ///
+ ///
+ ///
+ ///
+ /// List of cell IDs to recalculate.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetCellRecalculationsBatchAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Collections.Generic.IList cellIds,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs
new file mode 100644
index 0000000..b5cfdc7
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs
@@ -0,0 +1,68 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Create Column
+ /// Add a new column to a sheet. Non-text columns will generate cells for all existing rows.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetColumnAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.CreateTableSheetColumnRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Column
+ /// Add a new column to a sheet. Non-text columns will generate cells for all existing rows.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateTableSheetColumnAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.CreateTableSheetColumnRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create Column
+ /// Add a new column to a sheet. Non-text columns will generate cells for all existing rows.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Type-specific column configuration.
+ ///
+ ///
+ /// Column dependency edges for non-text columns.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateTableSheetColumnAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ string title,
+ global::PromptLayer.CreateTableSheetColumnRequestType type,
+ object? config = default,
+ global::System.Collections.Generic.IList? dependencies = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTable.g.cs
new file mode 100644
index 0000000..38a27f6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTable.g.cs
@@ -0,0 +1,30 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Get Table
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetTableAsync(
+ global::System.Guid tableId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get Table
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> GetTableAsResponseAsync(
+ global::System.Guid tableId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheet.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheet.g.cs
new file mode 100644
index 0000000..c555cd6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheet.g.cs
@@ -0,0 +1,34 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Get Sheet
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetTableSheetAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get Sheet
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> GetTableSheetAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetCell.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetCell.g.cs
new file mode 100644
index 0000000..6664138
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetCell.g.cs
@@ -0,0 +1,40 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Get Cell
+ /// Retrieve a single cell by ID. For prompt-template column cells, the response includes a `request_metrics` object with price, latency, and token usage when available.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetTableSheetCellAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get Cell
+ /// Retrieve a single cell by ID. For prompt-template column cells, the response includes a `request_metrics` object with price, latency, and token usage when available.
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> GetTableSheetCellAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetOperation.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetOperation.g.cs
new file mode 100644
index 0000000..e99934c
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.GetTableSheetOperation.g.cs
@@ -0,0 +1,36 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Get Sheet Import Operation
+ /// Poll the status of an asynchronous sheet import operation.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task GetTableSheetOperationAsync(
+ global::System.Guid tableId,
+ string operationId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Get Sheet Import Operation
+ /// Poll the status of an asynchronous sheet import operation.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> GetTableSheetOperationAsResponseAsync(
+ global::System.Guid tableId,
+ string operationId,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetColumns.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetColumns.g.cs
new file mode 100644
index 0000000..59735de
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetColumns.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// List Columns
+ /// List columns in a sheet, ordered by position rank. By default, system-managed metadata columns such as price and latency columns are excluded; pass `include_system_columns=true` to include them.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ ///
+ /// Default Value: 100
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task ListTableSheetColumnsAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ bool? includeSystemColumns = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// List Columns
+ /// List columns in a sheet, ordered by position rank. By default, system-managed metadata columns such as price and latency columns are excluded; pass `include_system_columns=true` to include them.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ ///
+ /// Default Value: 100
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> ListTableSheetColumnsAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ bool? includeSystemColumns = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetRows.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetRows.g.cs
new file mode 100644
index 0000000..36b44e6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheetRows.g.cs
@@ -0,0 +1,88 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// List Rows
+ /// List rows in a sheet, each containing a map of column_id to cell. For prompt-template column cells, each cell can include a `request_metrics` object with price, latency, and token usage when available. Pass `include_columns=true` on the first page to receive column metadata alongside rows.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ ///
+ /// Default Value: 100
+ ///
+ ///
+ /// Default Value: asc
+ ///
+ ///
+ /// Include column metadata in the response. Defaults to true on the first page.
+ ///
+ ///
+ /// Default Value: true
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task ListTableSheetRowsAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ bool? includeSystemColumns = default,
+ bool? includeExecutionMetadataAggregates = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTableSheetRowsOrder? order = default,
+ bool? includeColumns = default,
+ bool? includeRowCount = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// List Rows
+ /// List rows in a sheet, each containing a map of column_id to cell. For prompt-template column cells, each cell can include a `request_metrics` object with price, latency, and token usage when available. Pass `include_columns=true` on the first page to receive column metadata alongside rows.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ /// Default Value: false
+ ///
+ ///
+ ///
+ /// Default Value: 100
+ ///
+ ///
+ /// Default Value: asc
+ ///
+ ///
+ /// Include column metadata in the response. Defaults to true on the first page.
+ ///
+ ///
+ /// Default Value: true
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> ListTableSheetRowsAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ bool? includeSystemColumns = default,
+ bool? includeExecutionMetadataAggregates = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTableSheetRowsOrder? order = default,
+ bool? includeColumns = default,
+ bool? includeRowCount = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheets.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheets.g.cs
new file mode 100644
index 0000000..f79e978
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTableSheets.g.cs
@@ -0,0 +1,64 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// List Sheets
+ /// List all sheets in a table, ordered by their index.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: 20
+ ///
+ ///
+ /// Default Value: asc
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task ListTableSheetsAsync(
+ global::System.Guid tableId,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTableSheetsOrder? order = default,
+ int? promptId = default,
+ int? promptVersionId = default,
+ int? promptLabelId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// List Sheets
+ /// List all sheets in a table, ordered by their index.
+ ///
+ ///
+ ///
+ ///
+ /// Default Value: 20
+ ///
+ ///
+ /// Default Value: asc
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> ListTableSheetsAsResponseAsync(
+ global::System.Guid tableId,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTableSheetsOrder? order = default,
+ int? promptId = default,
+ int? promptVersionId = default,
+ int? promptLabelId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTables.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTables.g.cs
new file mode 100644
index 0000000..4ba1594
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.ListTables.g.cs
@@ -0,0 +1,84 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// List Tables
+ /// List Tables in the workspace. Supports cursor-based pagination and optional filtering by folder or prompt column.
+ ///
+ ///
+ /// Filter by folder ID.
+ ///
+ ///
+ /// Filter by title (case-insensitive contains match).
+ ///
+ ///
+ /// Pagination cursor from a previous response.
+ ///
+ ///
+ /// Default Value: 20
+ ///
+ ///
+ /// Default Value: desc
+ ///
+ ///
+ /// Filter to tables containing a column referencing this prompt.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task ListTablesAsync(
+ int? folderId = default,
+ string? name = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTablesOrder? order = default,
+ int? promptId = default,
+ int? promptVersionId = default,
+ int? promptLabelId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// List Tables
+ /// List Tables in the workspace. Supports cursor-based pagination and optional filtering by folder or prompt column.
+ ///
+ ///
+ /// Filter by folder ID.
+ ///
+ ///
+ /// Filter by title (case-insensitive contains match).
+ ///
+ ///
+ /// Pagination cursor from a previous response.
+ ///
+ ///
+ /// Default Value: 20
+ ///
+ ///
+ /// Default Value: desc
+ ///
+ ///
+ /// Filter to tables containing a column referencing this prompt.
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> ListTablesAsResponseAsync(
+ int? folderId = default,
+ string? name = default,
+ string? cursor = default,
+ int? limit = default,
+ global::PromptLayer.ListTablesOrder? order = default,
+ int? promptId = default,
+ int? promptVersionId = default,
+ int? promptLabelId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTable.g.cs
new file mode 100644
index 0000000..4a904a6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTable.g.cs
@@ -0,0 +1,51 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Update Table
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableAsync(
+ global::System.Guid tableId,
+
+ global::PromptLayer.UpdateTableRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Table
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> UpdateTableAsResponseAsync(
+ global::System.Guid tableId,
+
+ global::PromptLayer.UpdateTableRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Table
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableAsync(
+ global::System.Guid tableId,
+ string? title = default,
+ int? folderId = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheet.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheet.g.cs
new file mode 100644
index 0000000..e988ec2
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheet.g.cs
@@ -0,0 +1,59 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Update Sheet
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.UpdateTableSheetRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Sheet
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> UpdateTableSheetAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+
+ global::PromptLayer.UpdateTableSheetRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Sheet
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// New display position within the table (0-based).
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ string? title = default,
+ int? index = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetCell.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetCell.g.cs
new file mode 100644
index 0000000..258ad92
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetCell.g.cs
@@ -0,0 +1,70 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Update Cell
+ /// Edit the value of a text column cell. Only cells in `text` type columns can be edited directly; computed cells are recalculated automatically.
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetCellAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+
+ global::PromptLayer.UpdateTableSheetCellRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Cell
+ /// Edit the value of a text column cell. Only cells in `text` type columns can be edited directly; computed cells are recalculated automatically.
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> UpdateTableSheetCellAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+
+ global::PromptLayer.UpdateTableSheetCellRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Cell
+ /// Edit the value of a text column cell. Only cells in `text` type columns can be edited directly; computed cells are recalculated automatically.
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Human-readable display value.
+ ///
+ ///
+ /// Structured value to store.
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetCellAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid cellId,
+ string? displayValue = default,
+ object? value = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetColumn.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetColumn.g.cs
new file mode 100644
index 0000000..93e1af4
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.UpdateTableSheetColumn.g.cs
@@ -0,0 +1,68 @@
+#nullable enable
+
+namespace PromptLayer
+{
+ public partial interface ISmartTablesClient
+ {
+ ///
+ /// Update Column
+ /// Update a column's title, config, or dependencies. Returns `requires_recalculation: true` when the change invalidates existing cell values.
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetColumnAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid columnId,
+
+ global::PromptLayer.UpdateTableSheetColumnRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Column
+ /// Update a column's title, config, or dependencies. Returns `requires_recalculation: true` when the change invalidates existing cell values.
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> UpdateTableSheetColumnAsResponseAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid columnId,
+
+ global::PromptLayer.UpdateTableSheetColumnRequest request,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Update Column
+ /// Update a column's title, config, or dependencies. Returns `requires_recalculation: true` when the change invalidates existing cell values.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task UpdateTableSheetColumnAsync(
+ global::System.Guid tableId,
+ global::System.Guid sheetId,
+ global::System.Guid columnId,
+ string? title = default,
+ object? config = default,
+ global::System.Collections.Generic.IList? dependencies = default,
+ global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.g.cs
new file mode 100644
index 0000000..fc0f1f6
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.g.cs
@@ -0,0 +1,48 @@
+
+#nullable enable
+
+namespace PromptLayer
+{
+ ///
+ /// If no httpClient is provided, a new one will be created.
+ /// If no baseUri is provided, the default baseUri from OpenAPI spec will be used.
+ ///
+ public partial interface ISmartTablesClient : global::System.IDisposable
+ {
+ ///
+ /// The HttpClient instance.
+ ///
+ public global::System.Net.Http.HttpClient HttpClient { get; }
+
+ ///
+ /// The base URL for the API.
+ ///
+ public System.Uri? BaseUri { get; }
+
+ ///
+ /// The authorizations to use for the requests.
+ ///
+ public global::System.Collections.Generic.List Authorizations { get; }
+
+ ///
+ /// Gets or sets a value indicating whether the response content should be read as a string.
+ /// True by default in debug builds, false otherwise.
+ /// When false, successful responses are deserialized directly from the response stream for better performance.
+ /// Error responses are always read as strings regardless of this setting,
+ /// ensuring is populated.
+ ///
+ public bool ReadResponseAsString { get; set; }
+ ///
+ /// Client-wide request defaults such as headers, query parameters, retries, and timeout.
+ ///
+ public global::PromptLayer.AutoSDKClientOptions Options { get; }
+
+
+ ///
+ ///
+ ///
+ global::System.Text.Json.Serialization.JsonSerializerContext JsonSerializerContext { get; set; }
+
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatus.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatus.g.cs
new file mode 100644
index 0000000..b203b43
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatus.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CellStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CellStatus Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CellStatusExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CellStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CellStatus);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CellStatus value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CellStatusExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatusNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatusNullable.g.cs
new file mode 100644
index 0000000..b1cac37
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CellStatusNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CellStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CellStatus? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CellStatusExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CellStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CellStatus?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CellStatus? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.CellStatusExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnType.g.cs
new file mode 100644
index 0000000..148c55f
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ColumnTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ColumnType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ColumnTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ColumnType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ColumnType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ColumnType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.ColumnTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs
new file mode 100644
index 0000000..4e52227
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ColumnTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ColumnType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ColumnTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ColumnType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ColumnType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ColumnType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.ColumnTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs
new file mode 100644
index 0000000..3a5a6f7
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetColumnRequestTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetColumnRequestType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetColumnRequestTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetColumnRequestType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetColumnRequestType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetColumnRequestType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetColumnRequestTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullable.g.cs
new file mode 100644
index 0000000..c8294f3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetColumnRequestTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetColumnRequestType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetColumnRequestTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetColumnRequestType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetColumnRequestType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetColumnRequestType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetColumnRequestTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceType.g.cs
new file mode 100644
index 0000000..fbc9ed3
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetRequestSourceFileSourceTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetRequestSourceFileSourceType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetRequestSourceFileSourceTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetRequestSourceFileSourceType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetRequestSourceFileSourceType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetRequestSourceFileSourceType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetRequestSourceFileSourceTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullable.g.cs
new file mode 100644
index 0000000..91658bb
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetRequestSourceFileSourceTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetRequestSourceFileSourceTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetRequestSourceFileSourceType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetRequestSourceFileSourceType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetRequestSourceFileSourceTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceType.g.cs
new file mode 100644
index 0000000..14b9864
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceType.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetRequestSourceRequestLogsSourceTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceTypeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceTypeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullable.g.cs
new file mode 100644
index 0000000..b50c325
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class CreateTableSheetRequestSourceRequestLogsSourceTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceTypeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceTypeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKey.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKey.g.cs
new file mode 100644
index 0000000..5223c1c
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKey.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ExecutionMetadataMetricAggregateMetricKeyJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ExecutionMetadataMetricAggregateMetricKeyExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.ExecutionMetadataMetricAggregateMetricKeyExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullable.g.cs
new file mode 100644
index 0000000..871a18d
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ExecutionMetadataMetricAggregateMetricKeyNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ExecutionMetadataMetricAggregateMetricKeyExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.ExecutionMetadataMetricAggregateMetricKeyExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrder.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrder.g.cs
new file mode 100644
index 0000000..9778f5d
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrder.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTableSheetRowsOrderJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTableSheetRowsOrder Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTableSheetRowsOrderExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTableSheetRowsOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTableSheetRowsOrder);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTableSheetRowsOrder value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.ListTableSheetRowsOrderExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrderNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrderNullable.g.cs
new file mode 100644
index 0000000..c2ae342
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetRowsOrderNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTableSheetRowsOrderNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTableSheetRowsOrder? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTableSheetRowsOrderExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTableSheetRowsOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTableSheetRowsOrder?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTableSheetRowsOrder? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.ListTableSheetRowsOrderExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrder.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrder.g.cs
new file mode 100644
index 0000000..019575b
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrder.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTableSheetsOrderJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTableSheetsOrder Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTableSheetsOrderExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTableSheetsOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTableSheetsOrder);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTableSheetsOrder value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.ListTableSheetsOrderExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrderNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrderNullable.g.cs
new file mode 100644
index 0000000..9c83a2e
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTableSheetsOrderNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTableSheetsOrderNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTableSheetsOrder? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTableSheetsOrderExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTableSheetsOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTableSheetsOrder?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTableSheetsOrder? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.ListTableSheetsOrderExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrder.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrder.g.cs
new file mode 100644
index 0000000..7d39db7
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrder.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTablesOrderJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTablesOrder Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTablesOrderExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTablesOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTablesOrder);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTablesOrder value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.ListTablesOrderExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrderNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrderNullable.g.cs
new file mode 100644
index 0000000..15696a2
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ListTablesOrderNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class ListTablesOrderNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.ListTablesOrder? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.ListTablesOrderExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.ListTablesOrder)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.ListTablesOrder?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.ListTablesOrder? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.ListTablesOrderExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSource.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSource.g.cs
new file mode 100644
index 0000000..c6d7cca
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSource.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TableImportOperationSourceJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TableImportOperationSource Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.TableImportOperationSourceExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TableImportOperationSource)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TableImportOperationSource);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TableImportOperationSource value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TableImportOperationSourceExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSourceNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSourceNullable.g.cs
new file mode 100644
index 0000000..7bd3605
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationSourceNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TableImportOperationSourceNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TableImportOperationSource? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.TableImportOperationSourceExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TableImportOperationSource)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TableImportOperationSource?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TableImportOperationSource? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.TableImportOperationSourceExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatus.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatus.g.cs
new file mode 100644
index 0000000..525f103
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatus.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TableImportOperationStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TableImportOperationStatus Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.TableImportOperationStatusExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TableImportOperationStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TableImportOperationStatus);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TableImportOperationStatus value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::PromptLayer.TableImportOperationStatusExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatusNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatusNullable.g.cs
new file mode 100644
index 0000000..7327489
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableImportOperationStatusNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace PromptLayer.JsonConverters
+{
+ ///
+ public sealed class TableImportOperationStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::PromptLayer.TableImportOperationStatus? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::PromptLayer.TableImportOperationStatusExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::PromptLayer.TableImportOperationStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::PromptLayer.TableImportOperationStatus?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::PromptLayer.TableImportOperationStatus? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::PromptLayer.TableImportOperationStatusExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
index 2a054dd..d924381 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
@@ -329,6 +329,26 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.ColumnTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ColumnTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CellStatusJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CellStatusNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationSourceJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationSourceNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationStatusJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationStatusNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -341,6 +361,18 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionLanguageNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeNullableJsonConverter),
@@ -449,6 +481,18 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.ListToolRegistriesSortOrderNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.ListTablesOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTablesOrderNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetsOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetsOrderNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetRowsOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetRowsOrderNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.GetReportResponseStatusJsonConverter),
typeof(global::PromptLayer.JsonConverters.GetReportResponseStatusNullableJsonConverter),
@@ -549,6 +593,8 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter>),
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter>),
@@ -693,6 +739,22 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.UnixTimestampJsonConverter),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_a2e389e01f671d8d")]
@@ -1107,6 +1169,22 @@ namespace PromptLayer
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTraceToDatasetRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTraceToDatasetResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTraceToDatasetResponseMode), TypeInfoPropertyName = "AddTraceToDatasetResponseMode2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.Table))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableDetail))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.Sheet))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.Column))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ColumnType), TypeInfoPropertyName = "ColumnType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.Cell))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CellStatus), TypeInfoPropertyName = "CellStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.SmartTableRequestMetrics))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableImportOperation))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableImportOperationSource), TypeInfoPropertyName = "TableImportOperationSource2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TableImportOperationStatus), TypeInfoPropertyName = "TableImportOperationStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ExecutionMetadataMetricAggregate))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey), TypeInfoPropertyName = "ExecutionMetadataMetricAggregateMetricKey2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ExecutionMetadataAggregates))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ExecutionMetadataAggregatesSheet))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreatePromptLabelRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackGroupRequest))]
@@ -1118,6 +1196,26 @@ namespace PromptLayer
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecution))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionType), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryRequestExecutionLanguage), TypeInfoPropertyName = "CreateToolRegistryRequestExecutionLanguage2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf), TypeInfoPropertyName = "OneOfCreateTableSheetRequestSourceFileSourceCreateTableSheetRequestSourceRequestLogsSource2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceFileSource))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceFileSourceType), TypeInfoPropertyName = "CreateTableSheetRequestSourceFileSourceType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType), TypeInfoPropertyName = "CreateTableSheetRequestSourceRequestLogsSourceType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetColumnRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetColumnRequestType), TypeInfoPropertyName = "CreateTableSheetColumnRequestType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetColumnRequestDependencie))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetColumnRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetColumnRequestDependencie))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTableSheetRowsRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetCellRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolVersionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolVersionRequestExecution))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolVersionRequestExecutionType), TypeInfoPropertyName = "CreateToolVersionRequestExecutionType2")]
@@ -1153,48 +1251,12 @@ namespace PromptLayer
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetRequestSearchSuggestionsField), TypeInfoPropertyName = "GetRequestSearchSuggestionsField2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListToolRegistriesSortBy), TypeInfoPropertyName = "ListToolRegistriesSortBy2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListToolRegistriesSortOrder), TypeInfoPropertyName = "ListToolRegistriesSortOrder2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTablesOrder), TypeInfoPropertyName = "ListTablesOrder2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetsOrder), TypeInfoPropertyName = "ListTableSheetsOrder2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetRowsOrder), TypeInfoPropertyName = "ListTableSheetRowsOrder2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf), TypeInfoPropertyName = "OneOfHTTPValidationErrorErrorResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreatePromptLabelResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackGroupResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackScoreResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DeleteReportsByNameResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateEvaluationPipelineResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseReport))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStatus), TypeInfoPropertyName = "GetReportResponseStatus2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStats))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStatsStatusCounts))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseReportColumn))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScore))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreScoreType), TypeInfoPropertyName = "GetReportScoreResponseScoreScoreType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListDatasetsResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListEvaluationsResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AnyOf), TypeInfoPropertyName = "AnyOfBadRequestErrorValidationError2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf, object>), TypeInfoPropertyName = "OneOfDictionaryStringGetWorkflowVersionExecutionResultsResponseVariant12Object2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf, object>), TypeInfoPropertyName = "OneOfDictionaryStringGetWorkflowVersionExecutionResultsResponseVariant14Object2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1522,6 +1584,26 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.ColumnTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ColumnTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CellStatusJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CellStatusNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationSourceJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationSourceNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationStatusJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.TableImportOperationStatusNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter),
@@ -1534,6 +1616,18 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionLanguageNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeJsonConverter),
typeof(global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeNullableJsonConverter),
@@ -1642,6 +1736,18 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.ListToolRegistriesSortOrderNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.ListTablesOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTablesOrderNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetsOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetsOrderNullableJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetRowsOrderJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.ListTableSheetRowsOrderNullableJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.GetReportResponseStatusJsonConverter),
typeof(global::PromptLayer.JsonConverters.GetReportResponseStatusNullableJsonConverter),
@@ -1742,6 +1848,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.AnyOfJsonConverter>),
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter>),
@@ -1886,6 +1994,22 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::PromptLayer.JsonConverters.OneOfJsonConverter),
+
typeof(global::PromptLayer.JsonConverters.UnixTimestampJsonConverter),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_a2e389e01f671d8d")]
@@ -1893,6 +2017,45 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>?), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_47a8c666c2b64908")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf?), TypeInfoPropertyName = "GetReportScoreResponseScoreDetailsVariant4_819979ee8daaec57")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>), TypeInfoPropertyName = "ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem_13c51ceff6c2844e")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackGroupResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TrackScoreResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.DeleteReportsByNameResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateEvaluationPipelineResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddReportColumnResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.RunReportResponse5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseReport))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStatus), TypeInfoPropertyName = "GetReportResponseStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStats))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseStatsStatusCounts))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportResponseReportColumn))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScore))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreScoreType), TypeInfoPropertyName = "GetReportScoreResponseScoreScoreType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListDatasetsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListEvaluationsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AnyOf), TypeInfoPropertyName = "AnyOfBadRequestErrorValidationError2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf, object>), TypeInfoPropertyName = "OneOfDictionaryStringGetWorkflowVersionExecutionResultsResponseVariant12Object2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf, object>), TypeInfoPropertyName = "OneOfDictionaryStringGetWorkflowVersionExecutionResultsResponseVariant14Object2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListWorkflowsResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
@@ -1915,6 +2078,33 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolRegistryResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetToolRegistryResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetToolRegistryResponseToolRegistry))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTablesResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetTableResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetTableSheetOperationResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetTableSheetResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetColumnsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetColumnResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetColumnResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetRowsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.ListTableSheetRowsResponseDataItem))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTableSheetRowsResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AddTableSheetRowsResponseRow))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.GetTableSheetCellResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.UpdateTableSheetCellResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateTableSheetCellRecalculationResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.CreateToolVersionResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TestExecuteToolResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.TestExecuteToolResponseResult))]
@@ -1986,6 +2176,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.AnyOf>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::PromptLayer.OneOf>))]
@@ -1998,6 +2191,12 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2198,12 +2397,28 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.EvaluationRowCellTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ColumnTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ColumnTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CellStatusJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CellStatusNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TableImportOperationSourceJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TableImportOperationSourceNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TableImportOperationStatusJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TableImportOperationStatusNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ExecutionMetadataMetricAggregateMetricKeyNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AddReportColumnRequestColumnTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionTypeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionLanguageJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolRegistryRequestExecutionLanguageNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceFileSourceTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetRequestSourceRequestLogsSourceTypeNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CreateToolVersionRequestExecutionLanguageJsonConverter());
@@ -2258,6 +2473,12 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.ListToolRegistriesSortByNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.ListToolRegistriesSortOrderJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.ListToolRegistriesSortOrderNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTablesOrderJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTablesOrderNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTableSheetsOrderJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTableSheetsOrderNullableJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTableSheetRowsOrderJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.ListTableSheetRowsOrderNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.GetReportResponseStatusJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.GetReportResponseStatusNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.GetReportScoreResponseScoreScoreTypeJsonConverter());
@@ -2308,6 +2529,7 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.AnyOfJsonConverter>());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter>());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter>());
@@ -2380,6 +2602,14 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.UnixTimestampJsonConverter());
return options;
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
index cec1c3a..5b5729a 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
@@ -1652,475 +1652,739 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.CreatePromptLabelRequest? Type406 { get; set; }
+ public global::PromptLayer.Table? Type406 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type407 { get; set; }
+ public global::PromptLayer.TableDetail? Type407 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupRequest? Type408 { get; set; }
+ public global::PromptLayer.Sheet? Type408 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreRequest? Type409 { get; set; }
+ public global::PromptLayer.Column? Type409 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequest? Type410 { get; set; }
+ public global::PromptLayer.ColumnType? Type410 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnRequestColumnType? Type411 { get; set; }
+ public global::PromptLayer.Cell? Type411 { get; set; }
///
///
///
- public global::PromptLayer.RunReportRequest? Type412 { get; set; }
+ public global::PromptLayer.CellStatus? Type412 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequest? Type413 { get; set; }
+ public global::PromptLayer.SmartTableRequestMetrics? Type413 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecution? Type414 { get; set; }
+ public global::PromptLayer.TableImportOperation? Type414 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type415 { get; set; }
+ public global::PromptLayer.TableImportOperationSource? Type415 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type416 { get; set; }
+ public global::PromptLayer.TableImportOperationStatus? Type416 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequest? Type417 { get; set; }
+ public global::PromptLayer.ExecutionMetadataMetricAggregate? Type417 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecution? Type418 { get; set; }
+ public global::PromptLayer.ExecutionMetadataMetricAggregateMetricKey? Type418 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionType? Type419 { get; set; }
+ public global::PromptLayer.ExecutionMetadataAggregates? Type419 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type420 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type420 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequest? Type421 { get; set; }
+ public global::PromptLayer.ExecutionMetadataAggregatesSheet? Type421 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecution? Type422 { get; set; }
+ public global::PromptLayer.CreatePromptLabelRequest? Type422 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionType? Type423 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchRequest? Type423 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type424 { get; set; }
+ public global::PromptLayer.TrackGroupRequest? Type424 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsStatus? Type425 { get; set; }
+ public global::PromptLayer.TrackScoreRequest? Type425 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortBy? Type426 { get; set; }
+ public global::PromptLayer.AddReportColumnRequest? Type426 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortOrder? Type427 { get; set; }
+ public global::PromptLayer.AddReportColumnRequestColumnType? Type427 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsStatus? Type428 { get; set; }
+ public global::PromptLayer.RunReportRequest? Type428 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortBy? Type429 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequest? Type429 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortOrder? Type430 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecution? Type430 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? Type431 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionType? Type431 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type432 { get; set; }
+ public global::PromptLayer.CreateToolRegistryRequestExecutionLanguage? Type432 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type433 { get; set; }
+ public global::PromptLayer.CreateTableRequest? Type433 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type434 { get; set; }
+ public global::PromptLayer.UpdateTableRequest? Type434 { get; set; }
///
///
///
- public long? Type435 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequest? Type435 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortBy? Type436 { get; set; }
+ public global::PromptLayer.OneOf? Type436 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortOrder? Type437 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSource? Type437 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type438 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceFileSourceType? Type438 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type439 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSource? Type439 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type440 { get; set; }
+ public global::PromptLayer.CreateTableSheetRequestSourceRequestLogsSourceType? Type440 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type441 { get; set; }
+ public global::PromptLayer.UpdateTableSheetRequest? Type441 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type442 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequest? Type442 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? Type443 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestType? Type443 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentType? Type444 { get; set; }
+ public global::System.Collections.Generic.IList? Type444 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentEncoding? Type445 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type445 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type446 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequest? Type446 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type447 { get; set; }
+ public global::System.Collections.Generic.IList? Type447 { get; set; }
///
///
///
- public global::PromptLayer.GetSkillCollectionPublicFormat? Type448 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type448 { get; set; }
///
///
///
- public global::PromptLayer.GetRequestSearchSuggestionsField? Type449 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsRequest? Type449 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortBy? Type450 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellRequest? Type450 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortOrder? Type451 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type451 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type452 { get; set; }
+ public global::System.Collections.Generic.IList? Type452 { get; set; }
///
///
///
- public global::PromptLayer.CreatePromptLabelResponse? Type453 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequest? Type453 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type454 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecution? Type454 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupResponse? Type455 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionType? Type455 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreResponse? Type456 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type456 { get; set; }
///
///
///
- public global::PromptLayer.DeleteReportsByNameResponse? Type457 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequest? Type457 { get; set; }
///
///
///
- public global::PromptLayer.CreateEvaluationPipelineResponse2? Type458 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecution? Type458 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse? Type459 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionType? Type459 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse2? Type460 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type460 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse3? Type461 { get; set; }
+ public global::PromptLayer.ListDatasetsStatus? Type461 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse4? Type462 { get; set; }
+ public global::PromptLayer.ListDatasetsSortBy? Type462 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse? Type463 { get; set; }
+ public global::PromptLayer.ListDatasetsSortOrder? Type463 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse2? Type464 { get; set; }
+ public global::PromptLayer.ListEvaluationsStatus? Type464 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse3? Type465 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortBy? Type465 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse4? Type466 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortOrder? Type466 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse5? Type467 { get; set; }
+ public global::PromptLayer.AnyOf>? Type467 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponse? Type468 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type468 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReport? Type469 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type469 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatus? Type470 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type470 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStats? Type471 { get; set; }
+ public long? Type471 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatsStatusCounts? Type472 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortBy? Type472 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type473 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortOrder? Type473 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReportColumn? Type474 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type474 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponse? Type475 { get; set; }
+ public global::System.Collections.Generic.IList? Type475 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScore? Type476 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type476 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type477 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type477 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type478 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type478 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type479 { get; set; }
+ public global::PromptLayer.OneOf>? Type479 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type480 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentType? Type480 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type481 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentEncoding? Type481 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type482 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type482 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type483 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type483 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsResponse? Type484 { get; set; }
+ public global::PromptLayer.GetSkillCollectionPublicFormat? Type484 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type485 { get; set; }
+ public global::PromptLayer.GetRequestSearchSuggestionsField? Type485 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsResponse? Type486 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortBy? Type486 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type487 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortOrder? Type487 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type488 { get; set; }
+ public global::PromptLayer.ListTablesOrder? Type488 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type489 { get; set; }
+ public global::PromptLayer.ListTableSheetsOrder? Type489 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type490 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsOrder? Type490 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type491 { get; set; }
+ public global::PromptLayer.OneOf? Type491 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type492 { get; set; }
+ public global::PromptLayer.CreatePromptLabelResponse? Type492 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type493 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type493 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type494 { get; set; }
+ public global::PromptLayer.TrackGroupResponse? Type494 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse? Type495 { get; set; }
+ public global::PromptLayer.TrackScoreResponse? Type495 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type496 { get; set; }
+ public global::PromptLayer.DeleteReportsByNameResponse? Type496 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponseItem? Type497 { get; set; }
+ public global::PromptLayer.CreateEvaluationPipelineResponse2? Type497 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse2? Type498 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse? Type498 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse3? Type499 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse2? Type499 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponse? Type500 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse3? Type500 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type501 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse4? Type501 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseNode? Type502 { get; set; }
+ public global::PromptLayer.RunReportResponse? Type502 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type503 { get; set; }
+ public global::PromptLayer.RunReportResponse2? Type503 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseEdge? Type504 { get; set; }
+ public global::PromptLayer.RunReportResponse3? Type504 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponse? Type505 { get; set; }
+ public global::PromptLayer.RunReportResponse4? Type505 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type506 { get; set; }
+ public global::PromptLayer.RunReportResponse5? Type506 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type507 { get; set; }
+ public global::PromptLayer.GetReportResponse? Type507 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type508 { get; set; }
+ public global::PromptLayer.GetReportResponseReport? Type508 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesResponse2? Type509 { get; set; }
+ public global::PromptLayer.GetReportResponseStatus? Type509 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponse? Type510 { get; set; }
+ public global::PromptLayer.GetReportResponseStats? Type510 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type511 { get; set; }
+ public global::PromptLayer.GetReportResponseStatsStatusCounts? Type511 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type512 { get; set; }
+ public global::System.Collections.Generic.IList? Type512 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryResponse? Type513 { get; set; }
+ public global::PromptLayer.GetReportResponseReportColumn? Type513 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponse? Type514 { get; set; }
+ public global::PromptLayer.GetReportScoreResponse? Type514 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type515 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScore? Type515 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionResponse? Type516 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type516 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponse? Type517 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type517 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResult? Type518 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type518 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResultStatus? Type519 { get; set; }
+ public global::System.Collections.Generic.IList? Type519 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse? Type520 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type520 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosure? Type521 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type521 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosureStatus? Type522 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type522 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse2? Type523 { get; set; }
+ public global::PromptLayer.ListDatasetsResponse? Type523 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type524 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListEvaluationsResponse? Type525 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type526 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.AnyOf? Type527 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.OneOf, object>? Type528 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.Dictionary? Type529 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type530 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.OneOf, object>? Type531 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.Dictionary? Type532 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type533 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkflowsResponse? Type534 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type535 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkflowsResponseItem? Type536 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkflowsResponse2? Type537 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListWorkflowsResponse3? Type538 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowResponse? Type539 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type540 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowResponseNode? Type541 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type542 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowResponseEdge? Type543 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowLabelsResponse? Type544 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type545 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type546 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.AnyOf? Type547 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.IngestOtlpTracesResponse2? Type548 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolRegistriesResponse? Type549 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type550 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type551 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolRegistryResponse? Type552 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetToolRegistryResponse? Type553 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type554 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateTableResponse? Type555 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListTablesResponse? Type556 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type557 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetTableResponse? Type558 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateTableResponse? Type559 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListTableSheetsResponse? Type560 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type561 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateTableSheetResponse? Type562 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetTableSheetOperationResponse? Type563 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetTableSheetResponse? Type564 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateTableSheetResponse? Type565 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListTableSheetColumnsResponse? Type566 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type567 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateTableSheetColumnResponse? Type568 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type569 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateTableSheetColumnResponse? Type570 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListTableSheetRowsResponse? Type571 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type572 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type573 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.Dictionary? Type574 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.AddTableSheetRowsResponse? Type575 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.IList? Type576 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.AddTableSheetRowsResponseRow? Type577 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.GetTableSheetCellResponse? Type578 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.UpdateTableSheetCellResponse? Type579 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type580 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type581 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CreateToolVersionResponse? Type582 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.TestExecuteToolResponse? Type583 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.TestExecuteToolResponseResult? Type584 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.TestExecuteToolResponseResultStatus? Type585 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponse? Type586 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponseClosure? Type587 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponseClosureStatus? Type588 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.CloseTraceResponse2? Type589 { get; set; }
///
///
@@ -2377,50 +2641,86 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.AnyOf>? ListType63 { get; set; }
+ public global::System.Collections.Generic.List? ListType63 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType64 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType65 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.AnyOf>? ListType66 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType67 { get; set; }
+ ///
+ ///
+ ///
+ public global::PromptLayer.OneOf>? ListType68 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType69 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType70 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType71 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType72 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType64 { get; set; }
+ public global::System.Collections.Generic.List? ListType73 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? ListType65 { get; set; }
+ public global::System.Collections.Generic.List? ListType74 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType66 { get; set; }
+ public global::System.Collections.Generic.List? ListType75 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType67 { get; set; }
+ public global::System.Collections.Generic.List? ListType76 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType68 { get; set; }
+ public global::System.Collections.Generic.List? ListType77 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType69 { get; set; }
+ public global::System.Collections.Generic.List? ListType78 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType70 { get; set; }
+ public global::System.Collections.Generic.List? ListType79 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType71 { get; set; }
+ public global::System.Collections.Generic.List? ListType80 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType72 { get; set; }
+ public global::System.Collections.Generic.List? ListType81 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType73 { get; set; }
+ public global::System.Collections.Generic.List? ListType82 { get; set; }
///