summary refs log tree commit diff
path: root/src/util/schemas/ConnectedAccountSchema.ts
blob: e00e4fa1e9677e698fd0ac3dc47e5516f591266b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export interface ConnectedAccountSchema {
	external_id: string;
	user_id: string;
	access_token?: string;
	friend_sync?: boolean;
	name: string;
	revoked?: boolean;
	show_activity?: boolean;
	type: string;
	verified?: boolean;
	visibility?: number;
	integrations?: string[];
	metadata_?: any;
	metadata_visibility?: number;
	two_way_link?: boolean;
}