@databutton/firebase-types 1.94.6 → 1.94.8
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.
|
@@ -69,6 +69,7 @@ export var CollectionName;
|
|
|
69
69
|
CollectionName["STATIC_ASSETS"] = "static-assets";
|
|
70
70
|
CollectionName["SECRETS"] = "secrets";
|
|
71
71
|
CollectionName["SECRET_VERSIONS"] = "versions";
|
|
72
|
+
CollectionName["SECRET_USAGE"] = "usage";
|
|
72
73
|
CollectionName["THEMES"] = "themes";
|
|
73
74
|
CollectionName["THREADS"] = "threads";
|
|
74
75
|
CollectionName["UPGRADE_REQUESTS"] = "upgrade-requests";
|
|
@@ -2152,12 +2152,18 @@ export interface SecretVersionRef {
|
|
|
2152
2152
|
secretId: string;
|
|
2153
2153
|
version: string;
|
|
2154
2154
|
}
|
|
2155
|
+
export interface AccountSecretUsage {
|
|
2156
|
+
requestedBy?: PerformedBy;
|
|
2157
|
+
requestedAt?: Timestamp;
|
|
2158
|
+
requestedReason?: string;
|
|
2159
|
+
approvedBy?: PerformedBy;
|
|
2160
|
+
approvedAt?: Timestamp;
|
|
2161
|
+
createdBy: PerformedBy;
|
|
2162
|
+
createdAt: Timestamp;
|
|
2163
|
+
}
|
|
2155
2164
|
export interface ProjectEnvValue {
|
|
2156
2165
|
kind: "value";
|
|
2157
2166
|
value: string;
|
|
2158
2167
|
}
|
|
2159
2168
|
export type ProjectEnvVariable = SecretVersionRef | ProjectEnvValue;
|
|
2160
|
-
export interface ProjectEnvConfig {
|
|
2161
|
-
variables: Record<string, ProjectEnvVariable>;
|
|
2162
|
-
}
|
|
2163
2169
|
export {};
|