1 files changed, 9 insertions, 0 deletions
diff --git a/gateway/src/schema/Activity.ts b/gateway/src/schema/Activity.ts
index e18f66c8..3cf254a1 100644
--- a/gateway/src/schema/Activity.ts
+++ b/gateway/src/schema/Activity.ts
@@ -38,6 +38,15 @@ export const ActivitySchema = {
},
$instance: Boolean,
$flags: String,
+
+ $id: String,
+ $sync_id: String,
+ $metadata: { // spotify
+ $context_url: String,
+ album_id: String,
+ artist_ids: [String],
+ },
+ $session_id: String,
},
],
$since: Number, // unix time (in milliseconds) of when the client went idle, or null if the client is not idle
|