diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-29 00:30:04 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-29 00:30:04 +0200 |
commit | b4b8d1d8df3bf8263116310273c7f7ba65557806 (patch) | |
tree | 218dc458f44ba5d532b21a8dbe649e5c444e9b09 /gateway/src/schema/Activity.ts | |
parent | :sparkles: update util (diff) | |
download | server-b4b8d1d8df3bf8263116310273c7f7ba65557806.tar.xz |
:sparkles: typeorm gateway
Diffstat (limited to 'gateway/src/schema/Activity.ts')
-rw-r--r-- | gateway/src/schema/Activity.ts | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/gateway/src/schema/Activity.ts b/gateway/src/schema/Activity.ts index d7e0a30b..0fd0592f 100644 --- a/gateway/src/schema/Activity.ts +++ b/gateway/src/schema/Activity.ts @@ -1,10 +1,47 @@ -import { ActivityBodySchema } from "@fosscord/util"; import { EmojiSchema } from "./Emoji"; export const ActivitySchema = { afk: Boolean, status: String, - $activities: [ActivityBodySchema], + $activities: [ + { + name: String, + type: Number, + $url: String, + $created_at: Date, + $timestamps: [ + { + $start: Number, + $end: Number, + }, + ], + $application_id: String, + $details: String, + $state: String, + $emoji: { + $name: String, + $id: String, + $amimated: Boolean, + }, + $party: { + $id: String, + $size: [Number, Number], + }, + $assets: { + $large_image: String, + $large_text: String, + $small_image: String, + $small_text: String, + }, + $secrets: { + $join: String, + $spectate: String, + $match: String, + }, + $instance: Boolean, + $flags: BigInt, + }, + ], $since: Number, // unix time (in milliseconds) of when the client went idle, or null if the client is not idle }; |