export const photosReadonlyAppCreatedScope = "https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata";
export const photosAppendonlyScope = "https://www.googleapis.com/auth/photoslibrary.appendonly";
export const photosEditAppCreatedScope = "https://www.googleapis.com/auth/photoslibrary.edit.appcreateddata";
export const photosPickerReadonlyScope = "https://www.googleapis.com/auth/photospicker.mediaitems.readonly";
export const googleOpenIdScope = "openid";
export const googleEmailScope = "email";
export const googleProfileScope = "profile";

export const googlePhotosOAuthScopes: string[] = [
  photosReadonlyAppCreatedScope,
  photosAppendonlyScope,
  photosEditAppCreatedScope,
  photosPickerReadonlyScope,
  googleOpenIdScope,
  googleEmailScope,
  googleProfileScope,
];
