@databutton/firebase-types 1.122.0 → 1.124.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -895,6 +895,7 @@ export type ProjectExtensionConfig<T = object> = {
|
|
|
895
895
|
name: ProjectExtension;
|
|
896
896
|
version: string;
|
|
897
897
|
config?: T;
|
|
898
|
+
configFromAccount?: boolean;
|
|
898
899
|
};
|
|
899
900
|
export interface McpExtensionConfig {
|
|
900
901
|
public?: boolean;
|
|
@@ -947,8 +948,13 @@ export interface OidcAuthExtensionConfig {
|
|
|
947
948
|
aud?: string;
|
|
948
949
|
requiredAttributes?: Record<string, string>;
|
|
949
950
|
}
|
|
951
|
+
export interface OidcAuthExtensionAttributesForWorkos {
|
|
952
|
+
client_id: string;
|
|
953
|
+
org_id: string;
|
|
954
|
+
}
|
|
950
955
|
export interface WorkosAuthExtensionConfig {
|
|
951
956
|
clientId: string;
|
|
957
|
+
orgId: string;
|
|
952
958
|
}
|
|
953
959
|
export interface StackAuthExtensionConfig {
|
|
954
960
|
projectId: string;
|