export interface ClientsResponseJwtConfiguration { lifetime_in_seconds?: number; secret_encoded?: boolean; scopes?: object; alg?: string; } export interface ClientsResponseEncryptionKey { pub?: string; cert?: string; subject?: string; } export interface ClientsResponseRefreshToken { rotation_type?: string; expiration_type?: string; leeway?: number; token_lifetime?: number; infinite_token_lifetime?: boolean; idle_token_lifetime?: number; infinite_idle_token_lifetime?: boolean; } export interface Auth0Client { client_id?: string; tenant?: string; name?: string; description?: string; global?: boolean; client_secret?: string; app_type?: string; logo_uri?: string; is_first_party?: boolean; oidc_conformant?: boolean; callbacks?: string[]; allowed_origins?: string[]; web_origins?: string[]; client_aliases?: string[]; allowed_clients?: string[]; allowed_logout_urls?: string[]; grant_types?: string[]; jwt_configuration?: ClientsResponseJwtConfiguration; signing_keys?: object[]; encryption_key?: ClientsResponseEncryptionKey; sso?: boolean; sso_disabled?: boolean; cross_origin_auth?: boolean; cross_origin_loc?: string; custom_login_page_on?: boolean; custom_login_page?: string; custom_login_page_preview?: string; form_template?: string; addons?: object; token_endpoint_auth_method?: string; client_metadata?: object; mobile?: object; initiate_login_uri?: string; native_social_login?: object; refresh_token?: ClientsResponseRefreshToken; organization_usage?: string; organization_require_behavior?: string; } export interface ApiResponse { data: T; status: number; statusText: string; } //# sourceMappingURL=clients.d.ts.map