* refactor: remove @calcom/features dependency to @calcom/web * refactor: remove IS_VISUAL_REGRESSION_TESTING from web * fix: wrong imports --------- Co-authored-by: Omar López <zomars@me.com>
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
export type OAuthTokenPayload = {
|
|
userId?: number | null;
|
|
teamId?: number | null;
|
|
token_type: string;
|
|
scope: string[];
|
|
clientId: string;
|
|
};
|