export const linearReadScope = "read";
export const linearWriteScope = "write";
export const linearIssuesCreateScope = "issues:create";
export const linearCommentsCreateScope = "comments:create";

export const linearOAuthScopes: string[] = [
  linearReadScope,
  linearWriteScope,
  linearIssuesCreateScope,
  linearCommentsCreateScope,
];

export const linearApiKeyGrantedScopes: string[] = [...linearOAuthScopes];
