Skip to content

Commit

Permalink
feat(Attachment): voice messages (#9392)
Browse files Browse the repository at this point in the history
Co-authored-by: Tetie <tjvssr@gmail.com>
  • Loading branch information
almeidx and TetieWasTaken committed Apr 21, 2023
1 parent 7d34100 commit 3e01f91
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions packages/discord.js/src/structures/Attachment.js
Expand Up @@ -99,6 +99,28 @@ class Attachment {
* @type {boolean}
*/
this.ephemeral = data.ephemeral ?? false;

if ('duration_secs' in data) {
/**
* The duration of this attachment in seconds
* <info>This will only be available if the attachment is an audio file.</info>
* @type {?number}
*/
this.duration = data.duration_secs;
} else {
this.duration ??= null;
}

if ('waveform' in data) {
/**
* The base64 encoded byte array representing a sampled waveform
* <info>This will only be available if the attachment is an audio file.</info>
* @type {?string}
*/
this.waveform = data.waveform;
} else {
this.waveform ??= null;
}
}

/**
Expand Down
2 changes: 2 additions & 0 deletions packages/discord.js/typings/index.d.ts
Expand Up @@ -2014,6 +2014,7 @@ export class Attachment {
private attachment: BufferResolvable | Stream;
public contentType: string | null;
public description: string | null;
public duration: number | null;
public ephemeral: boolean;
public height: number | null;
public id: Snowflake;
Expand All @@ -2022,6 +2023,7 @@ export class Attachment {
public size: number;
public get spoiler(): boolean;
public url: string;
public waveform: string | null;
public width: number | null;
public toJSON(): unknown;
}
Expand Down

0 comments on commit 3e01f91

Please sign in to comment.