@databutton/firebase-types 1.74.54 → 1.75.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.
|
@@ -914,6 +914,7 @@ export interface Project {
|
|
|
914
914
|
serviceCreationStartedAt?: Timestamp;
|
|
915
915
|
serviceCreationSucceededAt?: Timestamp;
|
|
916
916
|
serviceCreationFailedAt?: Timestamp;
|
|
917
|
+
supportAccessEnabled?: boolean;
|
|
917
918
|
checkpointsGeneratedAt?: Timestamp;
|
|
918
919
|
customDomain?: ProjectCustomDomain | null;
|
|
919
920
|
/**
|
|
@@ -155,6 +155,12 @@ export type EnableMcpExtensionResponse = {
|
|
|
155
155
|
apiKeyId: string;
|
|
156
156
|
apiKey: string;
|
|
157
157
|
};
|
|
158
|
+
export type ToggleSupportAccessRequest = {
|
|
159
|
+
projectId: string;
|
|
160
|
+
};
|
|
161
|
+
export type ToggleSupportAccessResponse = {
|
|
162
|
+
success: boolean;
|
|
163
|
+
};
|
|
158
164
|
export type TroubleshootDnsRecordRequest = {
|
|
159
165
|
domainName: string;
|
|
160
166
|
name: string;
|