1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/googleSettingsSchema.ts
Tymoteusz Czech 77a365e667
chore: Update OpenAPI definitions generated for frontend (#4283)
## About the changes
`frontend> yarn gen:api` after recent updates
2023-07-20 12:59:55 +02:00

24 lines
831 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Configuration for using Google Authentication
*/
export interface GoogleSettingsSchema {
/** Is google OIDC enabled */
enabled?: boolean;
/** The google client id, used to authenticate against google */
clientId: string;
/** The client secret used to authenticate the OAuth session used to log the user in */
clientSecret: string;
/** Name of the host allowed to access the Google authentication flow */
unleashHostname: string;
/** Should Unleash create users based on the emails coming back in the authentication reply from Google */
autoCreate?: boolean;
/** A comma separated list of email domains that Unleash will auto create user accounts for. */
emailDomains?: string;
}