Add Microsoft to LoginSource enum
This commit is contained in:
parent
4e57a1cbd6
commit
82f457008f
|
@ -1,7 +1,12 @@
|
||||||
import { BaseEvent } from "./event"
|
import { BaseEvent } from "./event"
|
||||||
import { ConfigType } from "../../documents"
|
import { ConfigType } from "../../documents"
|
||||||
|
|
||||||
export type LoginSource = "local" | "google" | "oidc" | "google-internal"
|
export type LoginSource =
|
||||||
|
| "local"
|
||||||
|
| "google"
|
||||||
|
| "microsoft"
|
||||||
|
| "oidc"
|
||||||
|
| "google-internal"
|
||||||
export type SSOType = ConfigType.OIDC | ConfigType.GOOGLE
|
export type SSOType = ConfigType.OIDC | ConfigType.GOOGLE
|
||||||
|
|
||||||
export interface LoginEvent extends BaseEvent {
|
export interface LoginEvent extends BaseEvent {
|
||||||
|
|
Loading…
Reference in New Issue