From 87234351b308c27d146a4f681830749d7674aefa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 1 Aug 2026 05:50:07 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Generated/RetellAI.JsonConverters.SmsContent.g.cs | 2 +- .../RetellAI.Models.SmsContentPredefined.g.cs | 10 +++++----- src/libs/RetellAI/openapi.yaml | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.SmsContent.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.SmsContent.g.cs index 57d223a8..96420c18 100644 --- a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.SmsContent.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.SmsContent.g.cs @@ -28,7 +28,7 @@ public class SmsContentJsonConverter : global::System.Text.Json.Serialization.Js } var __score0 = 0; - if (__jsonProps.Contains("content")) __score0++; + if (__jsonProps.Contains("text")) __score0++; if (__jsonProps.Contains("type")) __score0++; var __score1 = 0; if (__jsonProps.Contains("prompt")) __score1++; diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.SmsContentPredefined.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.SmsContentPredefined.g.cs index 6a306654..6938525c 100644 --- a/src/libs/RetellAI/Generated/RetellAI.Models.SmsContentPredefined.g.cs +++ b/src/libs/RetellAI/Generated/RetellAI.Models.SmsContentPredefined.g.cs @@ -18,8 +18,8 @@ public sealed partial class SmsContentPredefined /// /// The static message to be sent in the SMS. Can contain dynamic variables. /// - [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public string? Content { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("text")] + public string? Text { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -31,7 +31,7 @@ public sealed partial class SmsContentPredefined /// Initializes a new instance of the class. /// /// - /// + /// /// The static message to be sent in the SMS. Can contain dynamic variables. /// #if NET7_0_OR_GREATER @@ -39,10 +39,10 @@ public sealed partial class SmsContentPredefined #endif public SmsContentPredefined( global::RetellAI.SmsContentPredefinedType? type, - string? content) + string? text) { this.Type = type; - this.Content = content; + this.Text = text; } /// diff --git a/src/libs/RetellAI/openapi.yaml b/src/libs/RetellAI/openapi.yaml index 62dd11de..b036918c 100644 --- a/src/libs/RetellAI/openapi.yaml +++ b/src/libs/RetellAI/openapi.yaml @@ -2,6 +2,7 @@ openapi: 3.0.3 info: title: Retell SDK version: 3.0.0 + x-retell-spec-revision: 2026-08-01-ad84c11 contact: name: Retell Support url: https://www.retellai.com/ @@ -6462,7 +6463,7 @@ components: type: string enum: - predefined - content: + text: type: string description: The static message to be sent in the SMS. Can contain dynamic variables. SmsContentTemplate: