Skip to content

Commit e09e70d

Browse files
committed
Domain and client sync
1 parent d5c4172 commit e09e70d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/FusionAuthClient.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8529,7 +8529,6 @@ export interface SystemConfiguration {
85298529
lastUpdateInstant?: number;
85308530
loginRecordConfiguration?: LoginRecordConfiguration;
85318531
reportTimezone?: string;
8532-
ssoConfiguration?: SystemSSOConfiguration;
85338532
uiConfiguration?: UIConfiguration;
85348533
}
85358534

@@ -8558,13 +8557,6 @@ export interface SystemLogsExportRequest extends BaseExportRequest {
85588557
lastNBytes?: number;
85598558
}
85608559

8561-
/**
8562-
* @author Brett Pontarelli
8563-
*/
8564-
export interface SystemSSOConfiguration {
8565-
deviceTrustTimeToLiveInSeconds?: number;
8566-
}
8567-
85688560
export interface Templates {
85698561
accountEdit?: string;
85708562
accountIndex?: string;
@@ -8638,6 +8630,7 @@ export interface Tenant {
86388630
passwordValidationRules?: PasswordValidationRules;
86398631
rateLimitConfiguration?: TenantRateLimitConfiguration;
86408632
registrationConfiguration?: TenantRegistrationConfiguration;
8633+
ssoConfiguration?: TenantSSOConfiguration;
86418634
state?: ObjectState;
86428635
themeId?: UUID;
86438636
userDeletePolicy?: TenantUserDeletePolicy;
@@ -8738,6 +8731,13 @@ export interface TenantResponse {
87388731
tenants?: Array<Tenant>;
87398732
}
87408733

8734+
/**
8735+
* @author Brett Pontarelli
8736+
*/
8737+
export interface TenantSSOConfiguration {
8738+
deviceTrustTimeToLiveInSeconds?: number;
8739+
}
8740+
87418741
/**
87428742
* @author Daniel DeGroff
87438743
*/

0 commit comments

Comments
 (0)