/** Read projects and their active automations. */ export const AUTOMATE_PROJECT_READ_SCOPE = "project:read" /** Update project-owned automation state. */ export const AUTOMATE_PROJECT_UPDATE_SCOPE = "project:update" /** Read deployments and their planned automations. */ export const AUTOMATE_DEPLOYMENT_READ_SCOPE = "deployment:read" /** Cancel deployments before publishing begins. */ export const AUTOMATE_DEPLOYMENT_CANCEL_SCOPE = "deployment:cancel" /** Create deployments from an existing project artifact. */ export const AUTOMATE_DEPLOYMENT_CREATE_SCOPE = "deployment:create"