diff --git a/src/libs/Ideogram/Generated/Ideogram.Models.MetronomeLinks.g.cs b/src/libs/Ideogram/Generated/Ideogram.Models.MetronomeLinks.g.cs
index de48f66..43ffc64 100644
--- a/src/libs/Ideogram/Generated/Ideogram.Models.MetronomeLinks.g.cs
+++ b/src/libs/Ideogram/Generated/Ideogram.Models.MetronomeLinks.g.cs
@@ -32,6 +32,18 @@ public sealed partial class MetronomeLinks
[global::System.Text.Json.Serialization.JsonPropertyName("credits_iframe_dark_mode_url")]
public string? CreditsIframeDarkModeUrl { get; set; }
+ ///
+ /// The URL to display the customer usage dashboard.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("usage_iframe_url")]
+ public string? UsageIframeUrl { get; set; }
+
+ ///
+ /// The URL to display the customer usage dashboard, in dark mode.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("usage_iframe_dark_mode_url")]
+ public string? UsageIframeDarkModeUrl { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -53,6 +65,12 @@ public sealed partial class MetronomeLinks
///
/// The URL to display the customer invoice and API usage.
///
+ ///
+ /// The URL to display the customer usage dashboard.
+ ///
+ ///
+ /// The URL to display the customer usage dashboard, in dark mode.
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -60,12 +78,16 @@ public MetronomeLinks(
string? invoicesIframeUrl,
string? invoicesIframeDarkModeUrl,
string? creditsIframeUrl,
- string? creditsIframeDarkModeUrl)
+ string? creditsIframeDarkModeUrl,
+ string? usageIframeUrl,
+ string? usageIframeDarkModeUrl)
{
this.InvoicesIframeUrl = invoicesIframeUrl;
this.InvoicesIframeDarkModeUrl = invoicesIframeDarkModeUrl;
this.CreditsIframeUrl = creditsIframeUrl;
this.CreditsIframeDarkModeUrl = creditsIframeDarkModeUrl;
+ this.UsageIframeUrl = usageIframeUrl;
+ this.UsageIframeDarkModeUrl = usageIframeDarkModeUrl;
}
///
diff --git a/src/libs/Ideogram/openapi.yaml b/src/libs/Ideogram/openapi.yaml
index 104b628..c724c06 100644
--- a/src/libs/Ideogram/openapi.yaml
+++ b/src/libs/Ideogram/openapi.yaml
@@ -1404,6 +1404,8 @@ components:
has_accepted_terms: true
metronome_dashboard_url: metronome_dashboard_url
metronome_links:
+ usage_iframe_url: usage_iframe_url
+ usage_iframe_dark_mode_url: usage_iframe_dark_mode_url
credits_iframe_dark_mode_url: credits_iframe_dark_mode_url
invoices_iframe_dark_mode_url: invoices_iframe_dark_mode_url
invoices_iframe_url: invoices_iframe_url
@@ -1428,7 +1430,17 @@ components:
title: credits_iframe_dark_mode_url
type: string
description: The URL to display the customer invoice and API usage.
+ usage_iframe_url:
+ title: usage_iframe_url
+ type: string
+ description: The URL to display the customer usage dashboard.
+ usage_iframe_dark_mode_url:
+ title: usage_iframe_dark_mode_url
+ type: string
+ description: 'The URL to display the customer usage dashboard, in dark mode.'
example:
+ usage_iframe_url: usage_iframe_url
+ usage_iframe_dark_mode_url: usage_iframe_dark_mode_url
credits_iframe_dark_mode_url: credits_iframe_dark_mode_url
invoices_iframe_dark_mode_url: invoices_iframe_dark_mode_url
invoices_iframe_url: invoices_iframe_url