Skip to content

Commit 0f84220

Browse files
committed
domain sync
1 parent 481cfa8 commit 0f84220

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

src/FusionAuthClient.ts

+48
Original file line numberDiff line numberDiff line change
@@ -6324,6 +6324,11 @@ export interface UserLoginIdDuplicateOnCreateEvent extends BaseEvent {
63246324
user?: User;
63256325
}
63266326

6327+
export enum ThemeType {
6328+
advanced = "advanced",
6329+
simple = "simple"
6330+
}
6331+
63276332
/**
63286333
* Login API request object.
63296334
*
@@ -6345,6 +6350,46 @@ export interface RecentLoginResponse {
63456350
logins?: Array<DisplayableRawLogin>;
63466351
}
63476352

6353+
/**
6354+
* Theme object for values used in the css variables for simple themes.
6355+
*
6356+
* @author Lyle Schemmerling
6357+
*/
6358+
export interface SimpleThemeVariables {
6359+
alertBackgroundColor?: string;
6360+
alertFontColor?: string;
6361+
backgroundImageUrl?: string;
6362+
backgroundSize?: string;
6363+
borderRadius?: string;
6364+
deleteButtonColor?: string;
6365+
deleteButtonFocusColor?: string;
6366+
deleteButtonTextColor?: string;
6367+
deleteButtonTextFocusColor?: string;
6368+
errorFontColor?: string;
6369+
errorIconColor?: string;
6370+
fontColor?: string;
6371+
fontFamily?: string;
6372+
footerDisplay?: boolean;
6373+
iconBackgroundColor?: string;
6374+
iconColor?: string;
6375+
infoIconColor?: string;
6376+
inputBackgroundColor?: string;
6377+
inputIconColor?: string;
6378+
inputTextColor?: string;
6379+
linkTextColor?: string;
6380+
linkTextFocusColor?: string;
6381+
logoImageSize?: string;
6382+
logoImageUrl?: string;
6383+
monoFontColor?: string;
6384+
monoFontFamily?: string;
6385+
pageBackgroundColor?: string;
6386+
panelBackgroundColor?: string;
6387+
primaryButtonColor?: string;
6388+
primaryButtonFocusColor?: string;
6389+
primaryButtonTextColor?: string;
6390+
primaryButtonTextFocusColor?: string;
6391+
}
6392+
63486393
/**
63496394
* API response for User consent.
63506395
*
@@ -8873,6 +8918,8 @@ export interface Theme {
88738918
name?: string;
88748919
stylesheet?: string;
88758920
templates?: Templates;
8921+
type?: ThemeType;
8922+
variables?: SimpleThemeVariables;
88768923
}
88778924

88788925
/**
@@ -11336,6 +11383,7 @@ export enum CanonicalizationMethod {
1133611383
*/
1133711384
export interface ThemeSearchCriteria extends BaseSearchCriteria {
1133811385
name?: string;
11386+
type?: ThemeType;
1133911387
}
1134011388

1134111389
/**

0 commit comments

Comments
 (0)