Skip to content

Commit a853ec1

Browse files
committedMay 2, 2024··
🏷️ feat: oh right forgor to commit this
1 parent bd8f7d0 commit a853ec1

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed
 

‎types/src/gateways/activity.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
import { snowflake } from "../common.ts";
2+
13
export interface ActivityPayload {
24
name: string;
35
type: ActivityType;
46
url?: string | null;
57
created_at: number;
68
timestamps?: ActivityTimestamps;
7-
application_id?: string;
9+
application_id?: snowflake;
810
details?: string | null;
911
state?: string | null;
1012
emoji?: ActivityEmoji | null;
@@ -32,7 +34,7 @@ export interface ActivityTimestamps {
3234

3335
export interface ActivityEmoji {
3436
name: string;
35-
id?: string;
37+
id?: snowflake;
3638
animated?: boolean;
3739
}
3840

‎types/src/stickers/sticker.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1+
import { snowflake } from "../common.ts";
12
import { Reasonable } from "../etc/reasonable.ts";
23
import { UserPayload } from "../users/user.ts";
34

45
export interface StickerPayload {
5-
id: string;
6-
pack_id?: string;
6+
id: snowflake;
7+
pack_id?: snowflake;
78
name: string;
89
description: string | null;
910
tags: string;
1011
type: StickerType;
1112
format_type: StickerFormatType;
1213
available?: boolean;
13-
guild_id?: string;
14+
guild_id?: snowflake;
1415
user?: UserPayload;
1516
sort_value?: number;
1617
}
@@ -28,19 +29,19 @@ export enum StickerFormatType {
2829
}
2930

3031
export interface StickerItemPayload {
31-
id: string;
32+
id: snowflake;
3233
name: string;
3334
format_type: StickerFormatType;
3435
}
3536

3637
export interface StickerPackPayload {
37-
id: string;
38+
id: snowflake;
3839
stickers: StickerPayload[];
3940
name: string;
40-
sku_id: string;
41-
cover_sticker_id?: string;
41+
sku_id: snowflake;
42+
cover_sticker_id?: snowflake;
4243
description: string;
43-
banner_asset_id?: string;
44+
banner_asset_id?: snowflake;
4445
}
4546

4647
export interface ListNitroStickerPacksPayload {

‎types/src/webhooks/webhook.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface ExecuteWebhookPayload {
5757
attachments?: AttachmentPayload[];
5858
flags?: number;
5959
thread_name?: string;
60-
applied_tags?: string[];
60+
applied_tags?: snowflake[];
6161
poll?: PollPayload;
6262
}
6363

0 commit comments

Comments
 (0)
Please sign in to comment.