/** * Canonical OAuth scope definitions for go-easy. * * When a new Google service is added (e.g., Tasks), add its scope here. * getAuth() checks the token's granted scopes against these. */ import type { GoogleService } from './auth-store.js'; /** Scope URL per service */ export declare const SCOPES: Record; /** All scopes — requested by default during auth */ export declare const ALL_SCOPES: string[]; /** Map a scope URL back to a service name (for display) */ export declare function scopeToService(scope: string): GoogleService | undefined; /** Map service names to scope URLs */ export declare function servicesToScopes(services: GoogleService[]): string[]; //# sourceMappingURL=scopes.d.ts.map