oceanic.js 1.4.2-dev.bc752ef → 1.4.2-dev.c1c435f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/types/guilds.d.ts +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -729,14 +729,14 @@ export interface RawOAuthGuild {
|
|
|
729
729
|
permissions: string;
|
|
730
730
|
}
|
|
731
731
|
|
|
732
|
-
export type
|
|
732
|
+
export type PresenceActivity = Omit<GatewayActivity, "application_id" | "assets" | "created_at"> & {
|
|
733
733
|
applicationID?: string;
|
|
734
734
|
assets?: Partial<Record<"largeImage" | "largeText" | "smallImage" | "smallText", string>>;
|
|
735
735
|
createdAt: number;
|
|
736
736
|
};
|
|
737
737
|
|
|
738
738
|
export type Presence = Omit<PresenceUpdate, "user" | "guild_id" | "client_status" | "activities"> & {
|
|
739
|
-
activities?: Array<
|
|
739
|
+
activities?: Array<PresenceActivity>;
|
|
740
740
|
clientStatus: ClientStatus;
|
|
741
741
|
guildID: string;
|
|
742
742
|
};
|
package/dist/package.json
CHANGED