File tree 3 files changed +14
-11
lines changed
3 files changed +14
-11
lines changed Original file line number Diff line number Diff line change
1
+ import { snowflake } from "../common.ts" ;
2
+
1
3
export interface ActivityPayload {
2
4
name : string ;
3
5
type : ActivityType ;
4
6
url ?: string | null ;
5
7
created_at : number ;
6
8
timestamps ?: ActivityTimestamps ;
7
- application_id ?: string ;
9
+ application_id ?: snowflake ;
8
10
details ?: string | null ;
9
11
state ?: string | null ;
10
12
emoji ?: ActivityEmoji | null ;
@@ -32,7 +34,7 @@ export interface ActivityTimestamps {
32
34
33
35
export interface ActivityEmoji {
34
36
name : string ;
35
- id ?: string ;
37
+ id ?: snowflake ;
36
38
animated ?: boolean ;
37
39
}
38
40
Original file line number Diff line number Diff line change
1
+ import { snowflake } from "../common.ts" ;
1
2
import { Reasonable } from "../etc/reasonable.ts" ;
2
3
import { UserPayload } from "../users/user.ts" ;
3
4
4
5
export interface StickerPayload {
5
- id : string ;
6
- pack_id ?: string ;
6
+ id : snowflake ;
7
+ pack_id ?: snowflake ;
7
8
name : string ;
8
9
description : string | null ;
9
10
tags : string ;
10
11
type : StickerType ;
11
12
format_type : StickerFormatType ;
12
13
available ?: boolean ;
13
- guild_id ?: string ;
14
+ guild_id ?: snowflake ;
14
15
user ?: UserPayload ;
15
16
sort_value ?: number ;
16
17
}
@@ -28,19 +29,19 @@ export enum StickerFormatType {
28
29
}
29
30
30
31
export interface StickerItemPayload {
31
- id : string ;
32
+ id : snowflake ;
32
33
name : string ;
33
34
format_type : StickerFormatType ;
34
35
}
35
36
36
37
export interface StickerPackPayload {
37
- id : string ;
38
+ id : snowflake ;
38
39
stickers : StickerPayload [ ] ;
39
40
name : string ;
40
- sku_id : string ;
41
- cover_sticker_id ?: string ;
41
+ sku_id : snowflake ;
42
+ cover_sticker_id ?: snowflake ;
42
43
description : string ;
43
- banner_asset_id ?: string ;
44
+ banner_asset_id ?: snowflake ;
44
45
}
45
46
46
47
export interface ListNitroStickerPacksPayload {
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export interface ExecuteWebhookPayload {
57
57
attachments ?: AttachmentPayload [ ] ;
58
58
flags ?: number ;
59
59
thread_name ?: string ;
60
- applied_tags ?: string [ ] ;
60
+ applied_tags ?: snowflake [ ] ;
61
61
poll ?: PollPayload ;
62
62
}
63
63
You can’t perform that action at this time.
0 commit comments