summary refs log tree commit diff
path: root/src/util/schemas/ConnectedAccountSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/ConnectedAccountSchema.ts')
-rw-r--r--src/util/schemas/ConnectedAccountSchema.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/util/schemas/ConnectedAccountSchema.ts b/src/util/schemas/ConnectedAccountSchema.ts
new file mode 100644
index 00000000..e00e4fa1
--- /dev/null
+++ b/src/util/schemas/ConnectedAccountSchema.ts
@@ -0,0 +1,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;
+}