Skip to content

Commit

Permalink
feat: Updated OpenAPI spec
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 27, 2025
1 parent 29ddf8a commit ce2c3b8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/libs/DeepInfra/Generated/DeepInfra.Models.Me.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ public sealed partial class Me
[global::System.Text.Json.Serialization.JsonRequired]
public required bool EmailVerified { get; set; }

/// <summary>
/// Default Value: false
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("require_email_verified")]
public bool? RequireEmailVerified { get; set; }

/// <summary>
/// Name that is used to identifythe account on the website
/// </summary>
Expand Down Expand Up @@ -125,6 +131,9 @@ public sealed partial class Me
/// <param name="uid"></param>
/// <param name="email"></param>
/// <param name="emailVerified"></param>
/// <param name="requireEmailVerified">
/// Default Value: false
/// </param>
/// <param name="displayName">
/// Name that is used to identifythe account on the website
/// </param>
Expand Down Expand Up @@ -166,6 +175,7 @@ public Me(
string company,
string website,
string? email,
bool? requireEmailVerified,
string? picture,
bool? isTeamAccount,
bool? isTeamOwner,
Expand All @@ -183,6 +193,7 @@ public Me(
this.Company = company ?? throw new global::System.ArgumentNullException(nameof(company));
this.Website = website ?? throw new global::System.ArgumentNullException(nameof(website));
this.Email = email;
this.RequireEmailVerified = requireEmailVerified;
this.Picture = picture;
this.IsTeamAccount = isTeamAccount;
this.IsTeamOwner = isTeamOwner;
Expand Down
4 changes: 4 additions & 0 deletions src/libs/DeepInfra/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4214,6 +4214,10 @@ components:
email_verified:
title: Email Verified
type: boolean
require_email_verified:
title: Require Email Verified
type: boolean
default: false
display_name:
title: Display Name
type: string
Expand Down

0 comments on commit ce2c3b8

Please sign in to comment.