import { integrationScope as scope } from "../../../automation/integrations" const MEET_CREATED_SCOPE = "https://www.googleapis.com/auth/meetings.space.created" const MEET_READONLY_SCOPE = "https://www.googleapis.com/auth/meetings.space.readonly" const MEET_SETTINGS_SCOPE = "https://www.googleapis.com/auth/meetings.space.settings" export const GOOGLE_MEET_CREATE_REQUIREMENT = MEET_CREATED_SCOPE export const GOOGLE_MEET_READ_REQUIREMENT = scope.any( MEET_CREATED_SCOPE, MEET_READONLY_SCOPE, ) export const GOOGLE_MEET_SPACE_READ_REQUIREMENT = scope.any( MEET_CREATED_SCOPE, MEET_SETTINGS_SCOPE, MEET_READONLY_SCOPE, ) export const GOOGLE_MEET_SPACE_WRITE_REQUIREMENT = scope.any( MEET_CREATED_SCOPE, MEET_SETTINGS_SCOPE, )