return false;
}
// Sort both arrays for comparison to handle different orderings
const sortedScopes1 = [...scopes1].sort();
const sortedScopes2 = [...scopes2].sort();
return sortedScopes1.every((scope, index) => scope === sortedScopes2[index]);
}
interface CommonResponse {