diff --git a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs
index c0f947b..deebbae 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.ISmartTablesClient.CreateTableSheetColumn.g.cs
@@ -45,7 +45,9 @@ public partial interface ISmartTablesClient
///
///
///
- ///
+ ///
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
///
/// Type-specific column configuration.
///
@@ -59,7 +61,7 @@ public partial interface ISmartTablesClient
global::System.Guid tableId,
global::System.Guid sheetId,
string title,
- global::PromptLayer.CreateTableSheetColumnRequestType type,
+ global::PromptLayer.TableColumnType type,
object? config = default,
global::System.Collections.Generic.IList? dependencies = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs
deleted file mode 100644
index 3a5a6f7..0000000
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestType.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#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
deleted file mode 100644
index c8294f3..0000000
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#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.ColumnType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnType.g.cs
similarity index 69%
rename from src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnType.g.cs
rename to src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnType.g.cs
index 148c55f..98a09b3 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnType.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnType.g.cs
@@ -3,10 +3,10 @@
namespace PromptLayer.JsonConverters
{
///
- public sealed class ColumnTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class TableColumnTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::PromptLayer.ColumnType Read(
+ public override global::PromptLayer.TableColumnType Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class ColumnTypeJsonConverter : global::System.Text.Json.Serializa
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::PromptLayer.ColumnTypeExtensions.ToEnum(stringValue) ?? default;
+ return global::PromptLayer.TableColumnTypeExtensions.ToEnum(stringValue) ?? default;
}
break;
@@ -26,11 +26,11 @@ public sealed class ColumnTypeJsonConverter : global::System.Text.Json.Serializa
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::PromptLayer.ColumnType)numValue;
+ return (global::PromptLayer.TableColumnType)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::PromptLayer.ColumnType);
+ return default(global::PromptLayer.TableColumnType);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,12 +42,12 @@ public sealed class ColumnTypeJsonConverter : global::System.Text.Json.Serializa
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::PromptLayer.ColumnType value,
+ global::PromptLayer.TableColumnType value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
- writer.WriteStringValue(global::PromptLayer.ColumnTypeExtensions.ToValueString(value));
+ writer.WriteStringValue(global::PromptLayer.TableColumnTypeExtensions.ToValueString(value));
}
}
}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnTypeNullable.g.cs
similarity index 70%
rename from src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs
rename to src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnTypeNullable.g.cs
index 4e52227..3ace926 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.ColumnTypeNullable.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonConverters.TableColumnTypeNullable.g.cs
@@ -3,10 +3,10 @@
namespace PromptLayer.JsonConverters
{
///
- public sealed class ColumnTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ public sealed class TableColumnTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
{
///
- public override global::PromptLayer.ColumnType? Read(
+ public override global::PromptLayer.TableColumnType? Read(
ref global::System.Text.Json.Utf8JsonReader reader,
global::System.Type typeToConvert,
global::System.Text.Json.JsonSerializerOptions options)
@@ -18,7 +18,7 @@ public sealed class ColumnTypeNullableJsonConverter : global::System.Text.Json.S
var stringValue = reader.GetString();
if (stringValue != null)
{
- return global::PromptLayer.ColumnTypeExtensions.ToEnum(stringValue);
+ return global::PromptLayer.TableColumnTypeExtensions.ToEnum(stringValue);
}
break;
@@ -26,11 +26,11 @@ public sealed class ColumnTypeNullableJsonConverter : global::System.Text.Json.S
case global::System.Text.Json.JsonTokenType.Number:
{
var numValue = reader.GetInt32();
- return (global::PromptLayer.ColumnType)numValue;
+ return (global::PromptLayer.TableColumnType)numValue;
}
case global::System.Text.Json.JsonTokenType.Null:
{
- return default(global::PromptLayer.ColumnType?);
+ return default(global::PromptLayer.TableColumnType?);
}
default:
throw new global::System.ArgumentOutOfRangeException(nameof(reader));
@@ -42,7 +42,7 @@ public sealed class ColumnTypeNullableJsonConverter : global::System.Text.Json.S
///
public override void Write(
global::System.Text.Json.Utf8JsonWriter writer,
- global::PromptLayer.ColumnType? value,
+ global::PromptLayer.TableColumnType? value,
global::System.Text.Json.JsonSerializerOptions options)
{
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
@@ -53,7 +53,7 @@ public override void Write(
}
else
{
- writer.WriteStringValue(global::PromptLayer.ColumnTypeExtensions.ToValueString(value.Value));
+ writer.WriteStringValue(global::PromptLayer.TableColumnTypeExtensions.ToValueString(value.Value));
}
}
}
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
index fd06f1b..14bc288 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContext.g.cs
@@ -329,9 +329,9 @@ namespace PromptLayer
typeof(global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeNullableJsonConverter),
- typeof(global::PromptLayer.JsonConverters.ColumnTypeJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TableColumnTypeJsonConverter),
- typeof(global::PromptLayer.JsonConverters.ColumnTypeNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TableColumnTypeNullableJsonConverter),
typeof(global::PromptLayer.JsonConverters.CellStatusJsonConverter),
@@ -485,10 +485,6 @@ namespace PromptLayer
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),
@@ -1332,8 +1328,8 @@ namespace PromptLayer
[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.TableColumnType), TypeInfoPropertyName = "TableColumnType2")]
[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))]
@@ -1744,9 +1740,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::PromptLayer.JsonConverters.AddTraceToDatasetResponseModeNullableJsonConverter),
- typeof(global::PromptLayer.JsonConverters.ColumnTypeJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TableColumnTypeJsonConverter),
- typeof(global::PromptLayer.JsonConverters.ColumnTypeNullableJsonConverter),
+ typeof(global::PromptLayer.JsonConverters.TableColumnTypeNullableJsonConverter),
typeof(global::PromptLayer.JsonConverters.CellStatusJsonConverter),
@@ -1900,10 +1896,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
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),
@@ -2368,7 +2360,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[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))]
@@ -2849,8 +2840,8 @@ 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.TableColumnTypeJsonConverter());
+ options.Converters.Add(new global::PromptLayer.JsonConverters.TableColumnTypeNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CellStatusJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.CellStatusNullableJsonConverter());
options.Converters.Add(new global::PromptLayer.JsonConverters.TableImportOperationSourceJsonConverter());
@@ -2927,8 +2918,6 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
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());
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
index 3edaf5e..3bc2f0d 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.JsonSerializerContextTypes.g.cs
@@ -1664,11 +1664,11 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.Column? Type409 { get; set; }
+ public global::PromptLayer.TableColumnType? Type409 { get; set; }
///
///
///
- public global::PromptLayer.ColumnType? Type410 { get; set; }
+ public global::PromptLayer.Column? Type410 { get; set; }
///
///
///
@@ -2128,727 +2128,723 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequestType? Type525 { get; set; }
+ public global::System.Collections.Generic.IList? Type525 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type526 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type526 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnRequestDependencie? Type527 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequest? Type527 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequest? Type528 { get; set; }
+ public global::System.Collections.Generic.IList? Type528 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type529 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type529 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnRequestDependencie? Type530 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsRequest? Type530 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsRequest? Type531 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellRequest? Type531 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellRequest? Type532 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type532 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchRequest? Type533 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequest? Type533 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequest? Type534 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecution? Type534 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecution? Type535 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionType? Type535 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionType? Type536 { get; set; }
+ public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type536 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionRequestExecutionLanguage? Type537 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequest? Type537 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequest? Type538 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecution? Type538 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecution? Type539 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionType? Type539 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionType? Type540 { get; set; }
+ public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type540 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolRequestExecutionLanguage? Type541 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type541 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarRequest? Type542 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type542 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarRequest? Type543 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarRequest? Type543 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarRequest? Type544 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarRequest? Type544 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarRequest? Type545 { get; set; }
+ public global::PromptLayer.ListDatasetsStatus? Type545 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsStatus? Type546 { get; set; }
+ public global::PromptLayer.ListDatasetsSortBy? Type546 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortBy? Type547 { get; set; }
+ public global::PromptLayer.ListDatasetsSortOrder? Type547 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsSortOrder? Type548 { get; set; }
+ public global::PromptLayer.ListEvaluationsStatus? Type548 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsStatus? Type549 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortBy? Type549 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortBy? Type550 { get; set; }
+ public global::PromptLayer.ListEvaluationsSortOrder? Type550 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsSortOrder? Type551 { get; set; }
+ public global::PromptLayer.AnyOf>? Type551 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf>? Type552 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type552 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetStatus? Type553 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type553 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortBy? Type554 { get; set; }
+ public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type554 { get; set; }
///
///
///
- public global::PromptLayer.GetAllPromptTemplatesGetSortOrder? Type555 { get; set; }
+ public long? Type555 { get; set; }
///
///
///
- public long? Type556 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortBy? Type556 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortBy? Type557 { get; set; }
+ public global::PromptLayer.ListWorkflowsSortOrder? Type557 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsSortOrder? Type558 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type558 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterType2? Type559 { get; set; }
+ public global::System.Collections.Generic.IList? Type559 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type560 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type560 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetFilterTypeItem? Type561 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type561 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortBy? Type562 { get; set; }
+ public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type562 { get; set; }
///
///
///
- public global::PromptLayer.ListFolderEntitiesApiPublicV2FoldersEntitiesGetSortOrder? Type563 { get; set; }
+ public global::PromptLayer.OneOf>? Type563 { get; set; }
///
///
///
- public global::PromptLayer.OneOf>? Type564 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentType? Type564 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentType? Type565 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesContentEncoding? Type565 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesContentEncoding? Type566 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type566 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortBy? Type567 { get; set; }
+ public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type567 { get; set; }
///
///
///
- public global::PromptLayer.ListSkillCollectionsPublicSortOrder? Type568 { get; set; }
+ public global::PromptLayer.GetSkillCollectionPublicFormat? Type568 { get; set; }
///
///
///
- public global::PromptLayer.GetSkillCollectionPublicFormat? Type569 { get; set; }
+ public global::PromptLayer.GetRequestSearchSuggestionsField? Type569 { get; set; }
///
///
///
- public global::PromptLayer.GetRequestSearchSuggestionsField? Type570 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortBy? Type570 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortBy? Type571 { get; set; }
+ public global::PromptLayer.ListToolRegistriesSortOrder? Type571 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesSortOrder? Type572 { get; set; }
+ public global::PromptLayer.ListTablesOrder? Type572 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesOrder? Type573 { get; set; }
+ public global::PromptLayer.ListTableSheetsOrder? Type573 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsOrder? Type574 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsOrder? Type574 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsOrder? Type575 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsSort? Type575 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsSort? Type576 { get; set; }
+ public global::PromptLayer.ListTableSheetVersionsOrder? Type576 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetVersionsOrder? Type577 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type577 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryRange? Type578 { get; set; }
+ public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type578 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetVersionScoreHistoryResolution? Type579 { get; set; }
+ public global::PromptLayer.OneOf? Type579 { get; set; }
///
///
///
- public global::PromptLayer.OneOf? Type580 { get; set; }
+ public global::PromptLayer.CreatePromptLabelResponse? Type580 { get; set; }
///
///
///
- public global::PromptLayer.CreatePromptLabelResponse? Type581 { get; set; }
+ public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type581 { get; set; }
///
///
///
- public global::PromptLayer.PromptTemplatesLabelsPromptLabelIdPatchResponse? Type582 { get; set; }
+ public global::PromptLayer.TrackGroupResponse? Type582 { get; set; }
///
///
///
- public global::PromptLayer.TrackGroupResponse? Type583 { get; set; }
+ public global::PromptLayer.TrackScoreResponse? Type583 { get; set; }
///
///
///
- public global::PromptLayer.TrackScoreResponse? Type584 { get; set; }
+ public global::PromptLayer.DeleteReportsByNameResponse? Type584 { get; set; }
///
///
///
- public global::PromptLayer.DeleteReportsByNameResponse? Type585 { get; set; }
+ public global::PromptLayer.CreateEvaluationPipelineResponse2? Type585 { get; set; }
///
///
///
- public global::PromptLayer.CreateEvaluationPipelineResponse2? Type586 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse? Type586 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse? Type587 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse2? Type587 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse2? Type588 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse3? Type588 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse3? Type589 { get; set; }
+ public global::PromptLayer.AddReportColumnResponse4? Type589 { get; set; }
///
///
///
- public global::PromptLayer.AddReportColumnResponse4? Type590 { get; set; }
+ public global::PromptLayer.RunReportResponse? Type590 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse? Type591 { get; set; }
+ public global::PromptLayer.RunReportResponse2? Type591 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse2? Type592 { get; set; }
+ public global::PromptLayer.RunReportResponse3? Type592 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse3? Type593 { get; set; }
+ public global::PromptLayer.RunReportResponse4? Type593 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse4? Type594 { get; set; }
+ public global::PromptLayer.RunReportResponse5? Type594 { get; set; }
///
///
///
- public global::PromptLayer.RunReportResponse5? Type595 { get; set; }
+ public global::PromptLayer.GetReportResponse? Type595 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponse? Type596 { get; set; }
+ public global::PromptLayer.GetReportResponseReport? Type596 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReport? Type597 { get; set; }
+ public global::PromptLayer.GetReportResponseStatus? Type597 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatus? Type598 { get; set; }
+ public global::PromptLayer.GetReportResponseStats? Type598 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStats? Type599 { get; set; }
+ public global::PromptLayer.GetReportResponseStatsStatusCounts? Type599 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseStatsStatusCounts? Type600 { get; set; }
+ public global::System.Collections.Generic.IList? Type600 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type601 { get; set; }
+ public global::PromptLayer.GetReportResponseReportColumn? Type601 { get; set; }
///
///
///
- public global::PromptLayer.GetReportResponseReportColumn? Type602 { get; set; }
+ public global::PromptLayer.GetReportScoreResponse? Type602 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponse? Type603 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScore? Type603 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScore? Type604 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type604 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreScoreType? Type605 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type605 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant1? Type606 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type606 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2? Type607 { get; set; }
+ public global::System.Collections.Generic.IList? Type607 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type608 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type608 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant2Column? Type609 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type609 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant3? Type610 { get; set; }
+ public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type610 { get; set; }
///
///
///
- public global::PromptLayer.GetReportScoreResponseScoreDetailsVariant4? Type611 { get; set; }
+ public global::PromptLayer.ListDatasetsResponse? Type611 { get; set; }
///
///
///
- public global::PromptLayer.ListDatasetsResponse? Type612 { get; set; }
+ public global::System.Collections.Generic.IList? Type612 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type613 { get; set; }
+ public global::PromptLayer.ListEvaluationsResponse? Type613 { get; set; }
///
///
///
- public global::PromptLayer.ListEvaluationsResponse? Type614 { get; set; }
+ public global::System.Collections.Generic.IList? Type614 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type615 { get; set; }
+ public global::PromptLayer.AnyOf? Type615 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type616 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type616 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type617 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type617 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type618 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type618 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant12? Type619 { get; set; }
+ public global::PromptLayer.OneOf, object>? Type619 { get; set; }
///
///
///
- public global::PromptLayer.OneOf, object>? Type620 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type620 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type621 { get; set; }
+ public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type621 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowVersionExecutionResultsResponseVariant14? Type622 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse? Type622 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse? Type623 { get; set; }
+ public global::System.Collections.Generic.IList? Type623 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type624 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponseItem? Type624 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponseItem? Type625 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse2? Type625 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse2? Type626 { get; set; }
+ public global::PromptLayer.ListWorkflowsResponse3? Type626 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkflowsResponse3? Type627 { get; set; }
+ public global::PromptLayer.GetWorkflowResponse? Type627 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponse? Type628 { get; set; }
+ public global::System.Collections.Generic.IList? Type628 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type629 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseNode? Type629 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseNode? Type630 { get; set; }
+ public global::System.Collections.Generic.IList? Type630 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type631 { get; set; }
+ public global::PromptLayer.GetWorkflowResponseEdge? Type631 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowResponseEdge? Type632 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponse? Type632 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponse? Type633 { get; set; }
+ public global::System.Collections.Generic.IList? Type633 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type634 { get; set; }
+ public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type634 { get; set; }
///
///
///
- public global::PromptLayer.GetWorkflowLabelsResponseReleaseLabel? Type635 { get; set; }
+ public global::PromptLayer.AnyOf? Type635 { get; set; }
///
///
///
- public global::PromptLayer.AnyOf? Type636 { get; set; }
+ public global::PromptLayer.IngestOtlpTracesResponse2? Type636 { get; set; }
///
///
///
- public global::PromptLayer.IngestOtlpTracesResponse2? Type637 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponse? Type637 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponse? Type638 { get; set; }
+ public global::System.Collections.Generic.IList? Type638 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type639 { get; set; }
+ public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type639 { get; set; }
///
///
///
- public global::PromptLayer.ListToolRegistriesResponseToolRegistrie? Type640 { get; set; }
+ public global::PromptLayer.CreateToolRegistryResponse? Type640 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolRegistryResponse? Type641 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponse? Type641 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponse? Type642 { get; set; }
+ public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type642 { get; set; }
///
///
///
- public global::PromptLayer.GetToolRegistryResponseToolRegistry? Type643 { get; set; }
+ public global::PromptLayer.CreateTableResponse? Type643 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableResponse? Type644 { get; set; }
+ public global::PromptLayer.ListTablesResponse? Type644 { get; set; }
///
///
///
- public global::PromptLayer.ListTablesResponse? Type645 { get; set; }
+ public global::System.Collections.Generic.IList? Type645 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type646 { get; set; }
+ public global::PromptLayer.GetTableResponse? Type646 { get; set; }
///
///
///
- public global::PromptLayer.GetTableResponse? Type647 { get; set; }
+ public global::PromptLayer.UpdateTableResponse? Type647 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableResponse? Type648 { get; set; }
+ public global::PromptLayer.DeleteTableResponse? Type648 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableResponse? Type649 { get; set; }
+ public global::PromptLayer.ListTableSheetsResponse? Type649 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetsResponse? Type650 { get; set; }
+ public global::System.Collections.Generic.IList? Type650 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type651 { get; set; }
+ public global::PromptLayer.CreateTableSheetResponse? Type651 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetResponse? Type652 { get; set; }
+ public global::PromptLayer.GetTableSheetOperationResponse2? Type652 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetOperationResponse2? Type653 { get; set; }
+ public global::PromptLayer.GetTableSheetResponse? Type653 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetResponse? Type654 { get; set; }
+ public global::PromptLayer.UpdateTableSheetResponse? Type654 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetResponse? Type655 { get; set; }
+ public global::PromptLayer.DeleteTableSheetResponse? Type655 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableSheetResponse? Type656 { get; set; }
+ public global::PromptLayer.ListTableSheetColumnsResponse? Type656 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetColumnsResponse? Type657 { get; set; }
+ public global::System.Collections.Generic.IList? Type657 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type658 { get; set; }
+ public global::PromptLayer.CreateTableSheetColumnResponse? Type658 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetColumnResponse? Type659 { get; set; }
+ public global::System.Collections.Generic.IList? Type659 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type660 { get; set; }
+ public global::PromptLayer.UpdateTableSheetColumnResponse? Type660 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetColumnResponse? Type661 { get; set; }
+ public global::PromptLayer.DeleteTableSheetColumnResponse? Type661 { get; set; }
///
///
///
- public global::PromptLayer.DeleteTableSheetColumnResponse? Type662 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponse? Type662 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponse? Type663 { get; set; }
+ public global::System.Collections.Generic.IList? Type663 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type664 { get; set; }
+ public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type664 { get; set; }
///
///
///
- public global::PromptLayer.ListTableSheetRowsResponseDataItem? Type665 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type665 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type666 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponse? Type666 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponse? Type667 { get; set; }
+ public global::System.Collections.Generic.IList? Type667 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type668 { get; set; }
+ public global::PromptLayer.AddTableSheetRowsResponseRow? Type668 { get; set; }
///
///
///
- public global::PromptLayer.AddTableSheetRowsResponseRow? Type669 { get; set; }
+ public global::PromptLayer.GetTableSheetCellResponse? Type669 { get; set; }
///
///
///
- public global::PromptLayer.GetTableSheetCellResponse? Type670 { get; set; }
+ public global::PromptLayer.UpdateTableSheetCellResponse? Type670 { get; set; }
///
///
///
- public global::PromptLayer.UpdateTableSheetCellResponse? Type671 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type671 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationsBatchResponse? Type672 { get; set; }
+ public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type672 { get; set; }
///
///
///
- public global::PromptLayer.CreateTableSheetCellRecalculationResponse? Type673 { get; set; }
+ public global::PromptLayer.CreateToolVersionResponse? Type673 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolVersionResponse? Type674 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponse? Type674 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponse? Type675 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResult? Type675 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResult? Type676 { get; set; }
+ public global::PromptLayer.TestExecuteToolResponseResultStatus? Type676 { get; set; }
///
///
///
- public global::PromptLayer.TestExecuteToolResponseResultStatus? Type677 { get; set; }
+ public global::PromptLayer.CloseTraceResponse? Type677 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse? Type678 { get; set; }
+ public global::PromptLayer.CloseTraceResponseClosure? Type678 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosure? Type679 { get; set; }
+ public global::PromptLayer.CloseTraceResponseClosureStatus? Type679 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponseClosureStatus? Type680 { get; set; }
+ public global::PromptLayer.CloseTraceResponse2? Type680 { get; set; }
///
///
///
- public global::PromptLayer.CloseTraceResponse2? Type681 { get; set; }
+ public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type681 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponse? Type682 { get; set; }
+ public global::System.Collections.Generic.IList? Type682 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type683 { get; set; }
+ public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type683 { get; set; }
///
///
///
- public global::PromptLayer.ListWorkspaceEnvVarsResponseWorkspaceEnvVar? Type684 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type684 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse? Type685 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type685 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponseWorkspaceEnvVar? Type686 { get; set; }
+ public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type686 { get; set; }
///
///
///
- public global::PromptLayer.CreateWorkspaceEnvVarResponse2? Type687 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type687 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse? Type688 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type688 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponseWorkspaceEnvVar? Type689 { get; set; }
+ public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type689 { get; set; }
///
///
///
- public global::PromptLayer.UpdateWorkspaceEnvVarResponse2? Type690 { get; set; }
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type690 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse? Type691 { get; set; }
+ public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type691 { get; set; }
///
///
///
- public global::PromptLayer.DeleteWorkspaceEnvVarResponse2? Type692 { get; set; }
+ public global::PromptLayer.ListToolEnvVarsResponse? Type692 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse? Type693 { get; set; }
+ public global::System.Collections.Generic.IList? Type693 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type694 { get; set; }
+ public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type694 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponseToolEnvVar? Type695 { get; set; }
+ public global::PromptLayer.ListToolEnvVarsResponse2? Type695 { get; set; }
///
///
///
- public global::PromptLayer.ListToolEnvVarsResponse2? Type696 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarResponse? Type696 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse? Type697 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type697 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponseToolEnvVar? Type698 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarResponse2? Type698 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse2? Type699 { get; set; }
+ public global::PromptLayer.CreateToolEnvVarResponse3? Type699 { get; set; }
///
///
///
- public global::PromptLayer.CreateToolEnvVarResponse3? Type700 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarResponse? Type700 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse? Type701 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type701 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponseToolEnvVar? Type702 { get; set; }
+ public global::PromptLayer.UpdateToolEnvVarResponse2? Type702 { get; set; }
///
///
///
- public global::PromptLayer.UpdateToolEnvVarResponse2? Type703 { get; set; }
+ public global::PromptLayer.DeleteToolEnvVarResponse? Type703 { get; set; }
///
///
///
- public global::PromptLayer.DeleteToolEnvVarResponse? Type704 { get; set; }
- ///
- ///
- ///
- public global::PromptLayer.DeleteToolEnvVarResponse2? Type705 { get; set; }
+ public global::PromptLayer.DeleteToolEnvVarResponse2? Type704 { get; set; }
///
///
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.Column.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.Column.g.cs
index 7fc7b9f..5a50087 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.Column.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.Column.g.cs
@@ -33,11 +33,11 @@ public sealed partial class Column
public string? Title { get; set; }
///
- /// Column type. 'text' columns store free-text; 'prompt_template', 'llm', 'code', 'score', 'comparison', and 'composition' columns run automated computations.
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.ColumnTypeJsonConverter))]
- public global::PromptLayer.ColumnType? Type { get; set; }
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.TableColumnTypeJsonConverter))]
+ public global::PromptLayer.TableColumnType? Type { get; set; }
///
/// Type-specific configuration. Shape depends on the column type.
@@ -77,7 +77,7 @@ public sealed partial class Column
/// Display title of the column.
///
///
- /// Column type. 'text' columns store free-text; 'prompt_template', 'llm', 'code', 'score', 'comparison', and 'composition' columns run automated computations.
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
///
///
/// Type-specific configuration. Shape depends on the column type.
@@ -96,7 +96,7 @@ public Column(
global::System.Guid? sheetId,
int? workspaceId,
string? title,
- global::PromptLayer.ColumnType? type,
+ global::PromptLayer.TableColumnType? type,
object? config,
double? positionRank,
bool? isOutputColumn)
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.ColumnType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.ColumnType.g.cs
deleted file mode 100644
index 83e09ce..0000000
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.ColumnType.g.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-
-#nullable enable
-
-namespace PromptLayer
-{
- ///
- /// Column type. 'text' columns store free-text; 'prompt_template', 'llm', 'code', 'score', 'comparison', and 'composition' columns run automated computations.
- ///
- public enum ColumnType
- {
- ///
- ///
- ///
- Code,
- ///
- ///
- ///
- Comparison,
- ///
- ///
- ///
- Composition,
- ///
- ///
- ///
- Llm,
- ///
- ///
- ///
- PromptTemplate,
- ///
- ///
- ///
- Score,
- ///
- ///
- ///
- Text,
- }
-
- ///
- /// Enum extensions to do fast conversions without the reflection.
- ///
- public static class ColumnTypeExtensions
- {
- ///
- /// Converts an enum to a string.
- ///
- public static string ToValueString(this ColumnType value)
- {
- return value switch
- {
- ColumnType.Code => "code",
- ColumnType.Comparison => "comparison",
- ColumnType.Composition => "composition",
- ColumnType.Llm => "llm",
- ColumnType.PromptTemplate => "prompt_template",
- ColumnType.Score => "score",
- ColumnType.Text => "text",
- _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
- };
- }
- ///
- /// Converts an string to a enum.
- ///
- public static ColumnType? ToEnum(string value)
- {
- return value switch
- {
- "code" => ColumnType.Code,
- "comparison" => ColumnType.Comparison,
- "composition" => ColumnType.Composition,
- "llm" => ColumnType.Llm,
- "prompt_template" => ColumnType.PromptTemplate,
- "score" => ColumnType.Score,
- "text" => ColumnType.Text,
- _ => null,
- };
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequest.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequest.g.cs
index 7da2874..2bf125f 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequest.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequest.g.cs
@@ -16,12 +16,12 @@ public sealed partial class CreateTableSheetColumnRequest
public required string Title { get; set; }
///
- ///
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.CreateTableSheetColumnRequestTypeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.TableColumnTypeJsonConverter))]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::PromptLayer.CreateTableSheetColumnRequestType Type { get; set; }
+ public required global::PromptLayer.TableColumnType Type { get; set; }
///
/// Type-specific column configuration.
@@ -45,7 +45,9 @@ public sealed partial class CreateTableSheetColumnRequest
/// Initializes a new instance of the class.
///
///
- ///
+ ///
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
///
/// Type-specific column configuration.
///
@@ -57,7 +59,7 @@ public sealed partial class CreateTableSheetColumnRequest
#endif
public CreateTableSheetColumnRequest(
string title,
- global::PromptLayer.CreateTableSheetColumnRequestType type,
+ global::PromptLayer.TableColumnType type,
object? config,
global::System.Collections.Generic.IList? dependencies)
{
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequestType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequestType.g.cs
deleted file mode 100644
index 2160be6..0000000
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.CreateTableSheetColumnRequestType.g.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-
-#nullable enable
-
-namespace PromptLayer
-{
- ///
- ///
- ///
- public enum CreateTableSheetColumnRequestType
- {
- ///
- ///
- ///
- Code,
- ///
- ///
- ///
- Comparison,
- ///
- ///
- ///
- Composition,
- ///
- ///
- ///
- Llm,
- ///
- ///
- ///
- PromptTemplate,
- ///
- ///
- ///
- Score,
- ///
- ///
- ///
- Text,
- }
-
- ///
- /// Enum extensions to do fast conversions without the reflection.
- ///
- public static class CreateTableSheetColumnRequestTypeExtensions
- {
- ///
- /// Converts an enum to a string.
- ///
- public static string ToValueString(this CreateTableSheetColumnRequestType value)
- {
- return value switch
- {
- CreateTableSheetColumnRequestType.Code => "code",
- CreateTableSheetColumnRequestType.Comparison => "comparison",
- CreateTableSheetColumnRequestType.Composition => "composition",
- CreateTableSheetColumnRequestType.Llm => "llm",
- CreateTableSheetColumnRequestType.PromptTemplate => "prompt_template",
- CreateTableSheetColumnRequestType.Score => "score",
- CreateTableSheetColumnRequestType.Text => "text",
- _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
- };
- }
- ///
- /// Converts an string to a enum.
- ///
- public static CreateTableSheetColumnRequestType? ToEnum(string value)
- {
- return value switch
- {
- "code" => CreateTableSheetColumnRequestType.Code,
- "comparison" => CreateTableSheetColumnRequestType.Comparison,
- "composition" => CreateTableSheetColumnRequestType.Composition,
- "llm" => CreateTableSheetColumnRequestType.Llm,
- "prompt_template" => CreateTableSheetColumnRequestType.PromptTemplate,
- "score" => CreateTableSheetColumnRequestType.Score,
- "text" => CreateTableSheetColumnRequestType.Text,
- _ => null,
- };
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinition.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinition.g.cs
index 69b6cec..39d8607 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinition.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinition.g.cs
@@ -10,7 +10,7 @@ namespace PromptLayer
public sealed partial class EvaluationColumnDefinition
{
///
- /// Type of evaluation column to create.
+ /// Type of evaluation column to create. Does not include COMPOSITION, which is Tables-only.
///
[global::System.Text.Json.Serialization.JsonPropertyName("column_type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::PromptLayer.JsonConverters.EvaluationColumnDefinitionColumnTypeJsonConverter))]
@@ -54,7 +54,7 @@ public sealed partial class EvaluationColumnDefinition
/// Initializes a new instance of the class.
///
///
- /// Type of evaluation column to create.
+ /// Type of evaluation column to create. Does not include COMPOSITION, which is Tables-only.
///
///
/// Display name for the column. Must be unique within the pipeline.
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinitionColumnType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinitionColumnType.g.cs
index 489f8b4..376dba0 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinitionColumnType.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.EvaluationColumnDefinitionColumnType.g.cs
@@ -4,7 +4,7 @@
namespace PromptLayer
{
///
- /// Type of evaluation column to create.
+ /// Type of evaluation column to create. Does not include COMPOSITION, which is Tables-only.
///
public enum EvaluationColumnDefinitionColumnType
{
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.Models.TableColumnType.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.Models.TableColumnType.g.cs
new file mode 100644
index 0000000..79accca
--- /dev/null
+++ b/src/libs/PromptLayer/Generated/PromptLayer.Models.TableColumnType.g.cs
@@ -0,0 +1,225 @@
+
+#nullable enable
+
+namespace PromptLayer
+{
+ ///
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
+ public enum TableColumnType
+ {
+ ///
+ ///
+ ///
+ AbsoluteNumericDistance,
+ ///
+ ///
+ ///
+ AiDataExtraction,
+ ///
+ ///
+ ///
+ ApplyDiff,
+ ///
+ ///
+ ///
+ AssertValid,
+ ///
+ ///
+ ///
+ Coalesce,
+ ///
+ ///
+ ///
+ CodeExecution,
+ ///
+ ///
+ ///
+ CombineColumns,
+ ///
+ ///
+ ///
+ Compare,
+ ///
+ /// TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
+ Composition,
+ ///
+ ///
+ ///
+ Condition,
+ ///
+ ///
+ ///
+ Contains,
+ ///
+ ///
+ ///
+ ConversationSimulator,
+ ///
+ ///
+ ///
+ CosineSimilarity,
+ ///
+ ///
+ ///
+ Count,
+ ///
+ ///
+ ///
+ Endpoint,
+ ///
+ ///
+ ///
+ ForLoop,
+ ///
+ ///
+ ///
+ Human,
+ ///
+ ///
+ ///
+ JsonPath,
+ ///
+ ///
+ ///
+ LlmAssertion,
+ ///
+ ///
+ ///
+ MathOperator,
+ ///
+ ///
+ ///
+ Mcp,
+ ///
+ ///
+ ///
+ MinMax,
+ ///
+ ///
+ ///
+ ParseValue,
+ ///
+ ///
+ ///
+ PromptTemplate,
+ ///
+ ///
+ ///
+ Regex,
+ ///
+ ///
+ ///
+ RegexExtraction,
+ ///
+ /// TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
+ Text,
+ ///
+ ///
+ ///
+ Variable,
+ ///
+ ///
+ ///
+ WhileLoop,
+ ///
+ ///
+ ///
+ Workflow,
+ ///
+ ///
+ ///
+ XmlPath,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class TableColumnTypeExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this TableColumnType value)
+ {
+ return value switch
+ {
+ TableColumnType.AbsoluteNumericDistance => "ABSOLUTE_NUMERIC_DISTANCE",
+ TableColumnType.AiDataExtraction => "AI_DATA_EXTRACTION",
+ TableColumnType.ApplyDiff => "APPLY_DIFF",
+ TableColumnType.AssertValid => "ASSERT_VALID",
+ TableColumnType.Coalesce => "COALESCE",
+ TableColumnType.CodeExecution => "CODE_EXECUTION",
+ TableColumnType.CombineColumns => "COMBINE_COLUMNS",
+ TableColumnType.Compare => "COMPARE",
+ TableColumnType.Composition => "COMPOSITION",
+ TableColumnType.Condition => "CONDITION",
+ TableColumnType.Contains => "CONTAINS",
+ TableColumnType.ConversationSimulator => "CONVERSATION_SIMULATOR",
+ TableColumnType.CosineSimilarity => "COSINE_SIMILARITY",
+ TableColumnType.Count => "COUNT",
+ TableColumnType.Endpoint => "ENDPOINT",
+ TableColumnType.ForLoop => "FOR_LOOP",
+ TableColumnType.Human => "HUMAN",
+ TableColumnType.JsonPath => "JSON_PATH",
+ TableColumnType.LlmAssertion => "LLM_ASSERTION",
+ TableColumnType.MathOperator => "MATH_OPERATOR",
+ TableColumnType.Mcp => "MCP",
+ TableColumnType.MinMax => "MIN_MAX",
+ TableColumnType.ParseValue => "PARSE_VALUE",
+ TableColumnType.PromptTemplate => "PROMPT_TEMPLATE",
+ TableColumnType.Regex => "REGEX",
+ TableColumnType.RegexExtraction => "REGEX_EXTRACTION",
+ TableColumnType.Text => "TEXT",
+ TableColumnType.Variable => "VARIABLE",
+ TableColumnType.WhileLoop => "WHILE_LOOP",
+ TableColumnType.Workflow => "WORKFLOW",
+ TableColumnType.XmlPath => "XML_PATH",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static TableColumnType? ToEnum(string value)
+ {
+ return value switch
+ {
+ "ABSOLUTE_NUMERIC_DISTANCE" => TableColumnType.AbsoluteNumericDistance,
+ "AI_DATA_EXTRACTION" => TableColumnType.AiDataExtraction,
+ "APPLY_DIFF" => TableColumnType.ApplyDiff,
+ "ASSERT_VALID" => TableColumnType.AssertValid,
+ "COALESCE" => TableColumnType.Coalesce,
+ "CODE_EXECUTION" => TableColumnType.CodeExecution,
+ "COMBINE_COLUMNS" => TableColumnType.CombineColumns,
+ "COMPARE" => TableColumnType.Compare,
+ "COMPOSITION" => TableColumnType.Composition,
+ "CONDITION" => TableColumnType.Condition,
+ "CONTAINS" => TableColumnType.Contains,
+ "CONVERSATION_SIMULATOR" => TableColumnType.ConversationSimulator,
+ "COSINE_SIMILARITY" => TableColumnType.CosineSimilarity,
+ "COUNT" => TableColumnType.Count,
+ "ENDPOINT" => TableColumnType.Endpoint,
+ "FOR_LOOP" => TableColumnType.ForLoop,
+ "HUMAN" => TableColumnType.Human,
+ "JSON_PATH" => TableColumnType.JsonPath,
+ "LLM_ASSERTION" => TableColumnType.LlmAssertion,
+ "MATH_OPERATOR" => TableColumnType.MathOperator,
+ "MCP" => TableColumnType.Mcp,
+ "MIN_MAX" => TableColumnType.MinMax,
+ "PARSE_VALUE" => TableColumnType.ParseValue,
+ "PROMPT_TEMPLATE" => TableColumnType.PromptTemplate,
+ "REGEX" => TableColumnType.Regex,
+ "REGEX_EXTRACTION" => TableColumnType.RegexExtraction,
+ "TEXT" => TableColumnType.Text,
+ "VARIABLE" => TableColumnType.Variable,
+ "WHILE_LOOP" => TableColumnType.WhileLoop,
+ "WORKFLOW" => TableColumnType.Workflow,
+ "XML_PATH" => TableColumnType.XmlPath,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/PromptLayer/Generated/PromptLayer.SmartTablesClient.CreateTableSheetColumn.g.cs b/src/libs/PromptLayer/Generated/PromptLayer.SmartTablesClient.CreateTableSheetColumn.g.cs
index 547f257..3d5611b 100644
--- a/src/libs/PromptLayer/Generated/PromptLayer.SmartTablesClient.CreateTableSheetColumn.g.cs
+++ b/src/libs/PromptLayer/Generated/PromptLayer.SmartTablesClient.CreateTableSheetColumn.g.cs
@@ -606,7 +606,9 @@ partial void ProcessCreateTableSheetColumnResponseContent(
///
///
///
- ///
+ ///
+ /// Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.
+ ///
///
/// Type-specific column configuration.
///
@@ -620,7 +622,7 @@ partial void ProcessCreateTableSheetColumnResponseContent(
global::System.Guid tableId,
global::System.Guid sheetId,
string title,
- global::PromptLayer.CreateTableSheetColumnRequestType type,
+ global::PromptLayer.TableColumnType type,
object? config = default,
global::System.Collections.Generic.IList? dependencies = default,
global::PromptLayer.AutoSDKRequestOptions? requestOptions = default,
diff --git a/src/libs/PromptLayer/openapi.json b/src/libs/PromptLayer/openapi.json
index 3688f82..700063a 100644
--- a/src/libs/PromptLayer/openapi.json
+++ b/src/libs/PromptLayer/openapi.json
@@ -10923,16 +10923,7 @@
"type": "string"
},
"type": {
- "type": "string",
- "enum": [
- "text",
- "prompt_template",
- "llm",
- "code",
- "score",
- "comparison",
- "composition"
- ]
+ "$ref": "#/components/schemas/TableColumnType"
},
"config": {
"type": "object",
@@ -21583,7 +21574,7 @@
"MATH_OPERATOR",
"MIN_MAX"
],
- "description": "Type of evaluation column to create."
+ "description": "Type of evaluation column to create. Does not include COMPOSITION, which is Tables-only."
},
"name": {
"type": "string",
@@ -22876,6 +22867,43 @@
}
}
},
+ "TableColumnType": {
+ "type": "string",
+ "description": "Smart Table column type. Use uppercase backend enum values. Input: TEXT. Reference (Tables only, not in legacy evaluation/workflow enums): COMPOSITION. Computed: all other listed values. Create requests also accept lowercase aliases (text, prompt_template, llm, code, score, comparison, composition), which are normalized to uppercase. Legacy DATASET columns are not creatable.",
+ "enum": [
+ "TEXT",
+ "ABSOLUTE_NUMERIC_DISTANCE",
+ "AI_DATA_EXTRACTION",
+ "APPLY_DIFF",
+ "ASSERT_VALID",
+ "COALESCE",
+ "CONDITION",
+ "CODE_EXECUTION",
+ "COMBINE_COLUMNS",
+ "COMPARE",
+ "COMPOSITION",
+ "CONTAINS",
+ "CONVERSATION_SIMULATOR",
+ "COSINE_SIMILARITY",
+ "COUNT",
+ "ENDPOINT",
+ "FOR_LOOP",
+ "HUMAN",
+ "JSON_PATH",
+ "LLM_ASSERTION",
+ "MATH_OPERATOR",
+ "MCP",
+ "MIN_MAX",
+ "PARSE_VALUE",
+ "PROMPT_TEMPLATE",
+ "REGEX",
+ "REGEX_EXTRACTION",
+ "VARIABLE",
+ "WHILE_LOOP",
+ "WORKFLOW",
+ "XML_PATH"
+ ]
+ },
"Column": {
"type": "object",
"description": "A column within a Table sheet.",
@@ -22898,17 +22926,7 @@
"description": "Display title of the column."
},
"type": {
- "type": "string",
- "description": "Column type. 'text' columns store free-text; 'prompt_template', 'llm', 'code', 'score', 'comparison', and 'composition' columns run automated computations.",
- "enum": [
- "text",
- "prompt_template",
- "llm",
- "code",
- "score",
- "comparison",
- "composition"
- ]
+ "$ref": "#/components/schemas/TableColumnType"
},
"config": {
"type": "object",