@databutton/firebase-types 1.123.0 → 1.125.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;
|
|
@@ -2098,7 +2104,8 @@ export interface CreditTransactionRecord {
|
|
|
2098
2104
|
createdAt: Timestamp;
|
|
2099
2105
|
projectId: string | null;
|
|
2100
2106
|
recordedAt: Timestamp;
|
|
2101
|
-
type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset";
|
|
2107
|
+
type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset" | "database";
|
|
2108
|
+
provider?: string | null;
|
|
2102
2109
|
sourceRef: string | null;
|
|
2103
2110
|
}
|
|
2104
2111
|
export interface ComputeHourUsageRecord {
|
|
@@ -2110,8 +2117,8 @@ export interface ComputeHourUsageRecord {
|
|
|
2110
2117
|
export interface NeonUsageRecord {
|
|
2111
2118
|
projectId: string;
|
|
2112
2119
|
neonProjectId: string;
|
|
2113
|
-
branchId
|
|
2114
|
-
branchType
|
|
2120
|
+
branchId?: string | null;
|
|
2121
|
+
branchType?: "dev" | "prod" | null;
|
|
2115
2122
|
recordedAt: Timestamp;
|
|
2116
2123
|
windowStart?: number;
|
|
2117
2124
|
computeTimeSeconds: number;
|