diff --git a/src/libs/Shotstack/Generated/Shotstack.Models.Asset.g.cs b/src/libs/Shotstack/Generated/Shotstack.Models.Asset.g.cs index 6c031f9..9513956 100644 --- a/src/libs/Shotstack/Generated/Shotstack.Models.Asset.g.cs +++ b/src/libs/Shotstack/Generated/Shotstack.Models.Asset.g.cs @@ -599,7 +599,7 @@ public bool TryPickTextToImage( /// /// **Notice: ImageToVideoAsset is deprecated. Use [VideoAsset](#tocs_videoasset)
/// with `prompt`, a `model` that accepts a starting image, and that image in
- /// `options.inputSrc` — for example `shotstack-itv-mini`.** This type continues to
+ /// `options.inputSrc` — for example `seedance-2.0-image-to-video`.** This type continues to
/// function and is internally rewritten to VideoAsset; no behaviour change for
/// existing integrations.
/// The ImageToVideoAsset lets you create a video from an image and a text prompt. diff --git a/src/libs/Shotstack/Generated/Shotstack.Models.GenerationModel.g.cs b/src/libs/Shotstack/Generated/Shotstack.Models.GenerationModel.g.cs index 7ce0edc..11a20fa 100644 --- a/src/libs/Shotstack/Generated/Shotstack.Models.GenerationModel.g.cs +++ b/src/libs/Shotstack/Generated/Shotstack.Models.GenerationModel.g.cs @@ -10,9 +10,9 @@ public sealed partial class GenerationModel { /// /// The identifier to set as the asset `model`. Carries no provider name, so routing can change without a public rename.
- /// Example: seedance-2.0 + /// Example: seedance-2.0-text-to-video ///
- /// seedance-2.0 + /// seedance-2.0-text-to-video [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonRequired] public required string Model { get; set; } @@ -50,7 +50,7 @@ public sealed partial class GenerationModel ///
/// /// The identifier to set as the asset `model`. Carries no provider name, so routing can change without a public rename.
- /// Example: seedance-2.0 + /// Example: seedance-2.0-text-to-video /// /// /// The asset type this model generates.
diff --git a/src/libs/Shotstack/Generated/Shotstack.Models.ImageToVideoAsset.g.cs b/src/libs/Shotstack/Generated/Shotstack.Models.ImageToVideoAsset.g.cs index d70d481..e03695a 100644 --- a/src/libs/Shotstack/Generated/Shotstack.Models.ImageToVideoAsset.g.cs +++ b/src/libs/Shotstack/Generated/Shotstack.Models.ImageToVideoAsset.g.cs @@ -6,7 +6,7 @@ namespace Shotstack /// /// **Notice: ImageToVideoAsset is deprecated. Use [VideoAsset](#tocs_videoasset)
/// with `prompt`, a `model` that accepts a starting image, and that image in
- /// `options.inputSrc` — for example `shotstack-itv-mini`.** This type continues to
+ /// `options.inputSrc` — for example `seedance-2.0-image-to-video`.** This type continues to
/// function and is internally rewritten to VideoAsset; no behaviour change for
/// existing integrations.
/// The ImageToVideoAsset lets you create a video from an image and a text prompt. diff --git a/src/libs/Shotstack/Generated/Shotstack.Models.VideoAsset.g.cs b/src/libs/Shotstack/Generated/Shotstack.Models.VideoAsset.g.cs index 43262ba..f8757a0 100644 --- a/src/libs/Shotstack/Generated/Shotstack.Models.VideoAsset.g.cs +++ b/src/libs/Shotstack/Generated/Shotstack.Models.VideoAsset.g.cs @@ -45,10 +45,10 @@ public sealed partial class VideoAsset public string? Prompt { get; set; } /// - /// The generation model to use when `prompt` is set (e.g. `shotstack-itv-mini`, `ray-flash-2`, `seedance-2.0`). Defaults to `seedance-2.0` if omitted. Each model's available options are defined by the model registry.
- /// Example: seedance-2.0 + /// The generation model to use when `prompt` is set (e.g. `seedance-2.0-text-to-video`). Defaults to `seedance-2.0-text-to-video` if omitted. `GET /models` lists what is available and the options each accepts.
+ /// Example: seedance-2.0-text-to-video ///
- /// seedance-2.0 + /// seedance-2.0-text-to-video [global::System.Text.Json.Serialization.JsonPropertyName("model")] public string? Model { get; set; } @@ -132,8 +132,8 @@ public sealed partial class VideoAsset /// Example: Slowly zoom out and orbit left around the object. /// /// - /// The generation model to use when `prompt` is set (e.g. `shotstack-itv-mini`, `ray-flash-2`, `seedance-2.0`). Defaults to `seedance-2.0` if omitted. Each model's available options are defined by the model registry.
- /// Example: seedance-2.0 + /// The generation model to use when `prompt` is set (e.g. `seedance-2.0-text-to-video`). Defaults to `seedance-2.0-text-to-video` if omitted. `GET /models` lists what is available and the options each accepts.
+ /// Example: seedance-2.0-text-to-video /// /// /// Model-specific generation settings. Valid keys and values depend on the chosen `model` and are defined by the model registry. Omitted options use the model's defaults. Unknown or invalid options are rejected.
diff --git a/src/libs/Shotstack/openapi.json b/src/libs/Shotstack/openapi.json index 60b3840..59e78c4 100644 --- a/src/libs/Shotstack/openapi.json +++ b/src/libs/Shotstack/openapi.json @@ -649,7 +649,7 @@ "schema": { "type": "string" }, - "example": "seedance-2.0" + "example": "seedance-2.0-text-to-video" } ] }, @@ -1389,9 +1389,9 @@ "example": "Slowly zoom out and orbit left around the object." }, "model": { - "description": "The generation model to use when `prompt` is set (e.g. `shotstack-itv-mini`, `ray-flash-2`, `seedance-2.0`). Defaults to `seedance-2.0` if omitted. Each model's available options are defined by the model registry.", + "description": "The generation model to use when `prompt` is set (e.g. `seedance-2.0-text-to-video`). Defaults to `seedance-2.0-text-to-video` if omitted. `GET /models` lists what is available and the options each accepts.", "type": "string", - "example": "seedance-2.0" + "example": "seedance-2.0-text-to-video" }, "options": { "description": "Model-specific generation settings. Valid keys and values depend on the chosen `model` and are defined by the model registry. Omitted options use the model's defaults. Unknown or invalid options are rejected.", @@ -2191,7 +2191,7 @@ }, "ImageToVideoAsset": { "deprecated": true, - "description": "**Notice: ImageToVideoAsset is deprecated. Use [VideoAsset](#tocs_videoasset)\nwith `prompt`, a `model` that accepts a starting image, and that image in\n`options.inputSrc` \u2014 for example `shotstack-itv-mini`.** This type continues to\nfunction and is internally rewritten to VideoAsset; no behaviour change for\nexisting integrations.\n\nThe ImageToVideoAsset lets you create a video from an image and a text prompt.\n", + "description": "**Notice: ImageToVideoAsset is deprecated. Use [VideoAsset](#tocs_videoasset)\nwith `prompt`, a `model` that accepts a starting image, and that image in\n`options.inputSrc` \u2014 for example `seedance-2.0-image-to-video`.** This type continues to\nfunction and is internally rewritten to VideoAsset; no behaviour change for\nexisting integrations.\n\nThe ImageToVideoAsset lets you create a video from an image and a text prompt.\n", "properties": { "type": { "type": "string", @@ -5843,7 +5843,7 @@ "model": { "description": "The identifier to set as the asset `model`. Carries no provider name, so routing can change without a public rename.", "type": "string", - "example": "seedance-2.0" + "example": "seedance-2.0-text-to-video" }, "type": { "description": "The asset type this model generates.",