@@ -232,6 +232,22 @@ export const googleOpenApiPresets: readonly GoogleOpenApiPreset[] = [
232232 icon : "https://fonts.gstatic.com/s/i/productlogos/google_cloud/v6/192px.svg" ,
233233 oauthAudience : "advanced-user" ,
234234 } ,
235+ {
236+ id : "google-firebase" ,
237+ name : "Firebase Management" ,
238+ summary : "Firebase projects, apps, hosting, extensions, and configuration." ,
239+ url : gd ( "firebase" , "v1beta1" ) ,
240+ icon : "https://fonts.gstatic.com/s/i/productlogos/firebase/v7/192px.svg" ,
241+ oauthAudience : "advanced-user" ,
242+ } ,
243+ {
244+ id : "google-firestore" ,
245+ name : "Cloud Firestore" ,
246+ summary : "Documents, collections, queries, and indexes." ,
247+ url : gd ( "firestore" , "v1" ) ,
248+ icon : "https://fonts.gstatic.com/s/i/productlogos/google_cloud/v6/192px.svg" ,
249+ oauthAudience : "advanced-user" ,
250+ } ,
235251] ;
236252
237253export const googleStandardUserOAuthPresets = googleOpenApiPresets . filter (
@@ -315,6 +331,10 @@ const GOOGLE_HEALTH_CHECKS: Readonly<Record<string, HealthCheckSpec>> = {
315331 operation : "cloudresourcemanager.projects.search" ,
316332 args : { pageSize : 1 } ,
317333 } ,
334+ "google-firebase" : {
335+ operation : "firebase.projects.list" ,
336+ args : { pageSize : 1 } ,
337+ } ,
318338} ;
319339
320340/** Complete Google OAuth scope set requested by a catalog preset, including
0 commit comments