Skip to content

Commit

Permalink
SDK updates
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 25, 2024
1 parent 6ca1ecb commit 80ff041
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/generated/models/AppInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ export interface AppInfo {
* @memberof AppInfo
*/
authOrigin: string;
/**
*
* @type {boolean}
* @memberof AppInfo
*/
autoThemeEnabled: boolean;
/**
*
* @type {Date}
Expand Down Expand Up @@ -313,6 +319,7 @@ export function instanceOfAppInfo(value: object): boolean {
isInstance = isInstance && "authFallbackMethodTtl" in value;
isInstance = isInstance && "authMethods" in value;
isInstance = isInstance && "authOrigin" in value;
isInstance = isInstance && "autoThemeEnabled" in value;
isInstance = isInstance && "createdAt" in value;
isInstance = isInstance && "defaultLanguage" in value;
isInstance = isInstance && "id" in value;
Expand Down Expand Up @@ -362,6 +369,7 @@ export function AppInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): A
'authFallbackMethodTtl': json['auth_fallback_method_ttl'],
'authMethods': AuthMethodsFromJSON(json['auth_methods']),
'authOrigin': json['auth_origin'],
'autoThemeEnabled': json['auto_theme_enabled'],
'createdAt': (new Date(json['created_at'])),
'defaultLanguage': json['default_language'],
'id': json['id'],
Expand Down Expand Up @@ -413,6 +421,7 @@ export function AppInfoToJSON(value?: AppInfo | null): any {
'auth_fallback_method_ttl': value.authFallbackMethodTtl,
'auth_methods': AuthMethodsToJSON(value.authMethods),
'auth_origin': value.authOrigin,
'auto_theme_enabled': value.autoThemeEnabled,
'created_at': (value.createdAt.toISOString()),
'default_language': value.defaultLanguage,
'id': value.id,
Expand Down

0 comments on commit 80ff041

Please sign in to comment.