From 38b2a0e003ce5454b8cc8b8c1f8295e89ef594f1 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Mon, 18 Jul 2022 13:03:07 -0500 Subject: [PATCH] fix: fix type on activity status --- egg.json | 2 +- packages/biscuit/structures/Presence.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/egg.json b/egg.json index c583a8d..d58888c 100644 --- a/egg.json +++ b/egg.json @@ -5,7 +5,7 @@ "description": "A brand new bleeding edge non bloated Discord library", "homepage": "https://github.com/oasisjs/biscuit", "version": "0.2.0", - "releaseType": "minor", + "releaseType": "patch", "unstable": false, "unlisted": false, "files": [ diff --git a/packages/biscuit/structures/Presence.ts b/packages/biscuit/structures/Presence.ts index 2e4a94c..31dfea2 100644 --- a/packages/biscuit/structures/Presence.ts +++ b/packages/biscuit/structures/Presence.ts @@ -26,7 +26,7 @@ export interface Activities { start?: number; end?: number; }; - applicationId: Snowflake; + applicationId?: Snowflake; details?: string; state?: string; emoji?: ComponentEmoji;