diff --git a/src/libs/Dust/Generated/Dust.Models.Skill.g.cs b/src/libs/Dust/Generated/Dust.Models.Skill.g.cs
index 780435e..8da1c38 100644
--- a/src/libs/Dust/Generated/Dust.Models.Skill.g.cs
+++ b/src/libs/Dust/Generated/Dust.Models.Skill.g.cs
@@ -1,4 +1,6 @@
+#pragma warning disable CS0618 // Type or member is obsolete
+
#nullable enable
namespace Dust
@@ -120,9 +122,10 @@ public sealed partial class Skill
public bool? CanWrite { get; set; }
///
- /// Whether this skill can be extended by another skill
+ /// Deprecated compatibility field. Always false.
///
[global::System.Text.Json.Serialization.JsonPropertyName("isExtendable")]
+ [global::System.Obsolete("This property marked as deprecated.")]
public bool? IsExtendable { get; set; }
///
@@ -132,9 +135,10 @@ public sealed partial class Skill
public bool? IsDefault { get; set; }
///
- /// Identifier of the extended skill, when applicable
+ /// Deprecated compatibility field. Always null.
///
[global::System.Text.Json.Serialization.JsonPropertyName("extendedSkillId")]
+ [global::System.Obsolete("This property marked as deprecated.")]
public string? ExtendedSkillId { get; set; }
///
@@ -214,15 +218,9 @@ public sealed partial class Skill
///
/// Whether the authenticated actor can edit the skill
///
- ///
- /// Whether this skill can be extended by another skill
- ///
///
/// Whether this skill is enabled by default
///
- ///
- /// Identifier of the extended skill, when applicable
- ///
///
/// Instructions used by the agent when running the skill
///
@@ -250,9 +248,7 @@ public Skill(
global::System.Collections.Generic.IList? requestedSpaceIds,
global::System.Collections.Generic.IList? fileAttachments,
bool? canWrite,
- bool? isExtendable,
bool? isDefault,
- string? extendedSkillId,
string? instructions,
string? instructionsHtml,
global::System.Collections.Generic.IList? tools)
@@ -273,9 +269,7 @@ public Skill(
this.RequestedSpaceIds = requestedSpaceIds;
this.FileAttachments = fileAttachments;
this.CanWrite = canWrite;
- this.IsExtendable = isExtendable;
this.IsDefault = isDefault;
- this.ExtendedSkillId = extendedSkillId;
this.Instructions = instructions;
this.InstructionsHtml = instructionsHtml;
this.Tools = tools;
diff --git a/src/libs/Dust/openapi.yaml b/src/libs/Dust/openapi.yaml
index 7c75663..d49ee4e 100644
--- a/src/libs/Dust/openapi.yaml
+++ b/src/libs/Dust/openapi.yaml
@@ -13778,7 +13778,8 @@
},
"isExtendable": {
"type": "boolean",
- "description": "Whether this skill can be extended by another skill"
+ "deprecated": true,
+ "description": "Deprecated compatibility field. Always false."
},
"isDefault": {
"type": "boolean",
@@ -13787,7 +13788,8 @@
"extendedSkillId": {
"type": "string",
"nullable": true,
- "description": "Identifier of the extended skill, when applicable"
+ "deprecated": true,
+ "description": "Deprecated compatibility field. Always null."
},
"instructions": {
"type": "string",