Skip to content

Commit ebeca64

Browse files
committed
👽️ feat: 'small' type update(not finished)
1 parent 36f3b21 commit ebeca64

File tree

11 files changed

+144
-18
lines changed

11 files changed

+144
-18
lines changed

types/src/applications/application.ts

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { UserPayload } from "../users/user.ts";
2-
import { TeamPayload } from "./team.ts";
2+
import { TeamPayload } from "../teams/team.ts";
33

44
export interface ApplicationPayload {
55
id: string;
@@ -22,18 +22,29 @@ export interface ApplicationPayload {
2222
cover_image?: string;
2323
/** Use it with ApplicationFlags. */
2424
flags?: number;
25+
approximate_guild_count?: number;
26+
redirect_uris?: string[];
27+
interactions_endpoint_url?: string;
2528
tags?: string[];
2629
install_params?: ApplicationInstallParams;
2730
custom_install_url?: string;
2831
role_connections_verification_url?: string;
2932
integration_types?: ApplicationIntegrationType[];
33+
integration_types_config?: Record<
34+
keyof ApplicationIntegrationType,
35+
ApplicationIntegrationTypeConfig
36+
>;
3037
}
3138

3239
export enum ApplicationIntegrationType {
3340
GUILD_INSTALL = 0,
3441
USER_INSTALL = 1,
3542
}
3643

44+
export interface ApplicationIntegrationTypeConfig {
45+
oauth2_install_params?: ApplicationInstallParams;
46+
}
47+
3748
export interface ApplicationInstallParams {
3849
scopes: string[];
3950
permissions: string;
@@ -51,3 +62,19 @@ export enum ApplicationFlags {
5162
GATEWAY_MESSAGE_CONTENT_LIMITED = 1 << 19,
5263
APPLICATION_COMMAND_BADGE = 1 << 23,
5364
}
65+
66+
export interface EditApplicationPayload {
67+
custom_install_url?: string;
68+
description?: string;
69+
role_connections_verification_url?: string;
70+
install_params?: ApplicationInstallParams;
71+
integration_types_config?: Record<
72+
keyof ApplicationIntegrationType,
73+
ApplicationIntegrationTypeConfig
74+
>;
75+
flags?: number;
76+
icon?: string | null;
77+
cover_image?: string | null;
78+
interactions_endpoint_url?: string;
79+
tags?: string[];
80+
}

types/src/applications/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * from "./application.ts";
2-
export * from "./team.ts";
2+
export * from "./roleConnectionMetadata.ts";

types/src/applications/roleConnectionMetadata.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ export interface ApplicationRoleConnectionMetadata {
44
type: ApplicationRoleConnectionMetadataType;
55
key: string;
66
name: string;
7-
name_localization: Record<Locales, string>;
7+
name_localization?: Record<Locales, string>;
88
description: string;
9-
description_localization: Record<Locales, string>;
9+
description_localization?: Record<Locales, string>;
1010
}
1111

1212
export enum ApplicationRoleConnectionMetadataType {

types/src/auditLogs/log.ts

+35-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
import { AutoModerationRulePayload } from "../autoMod/autoMod.ts";
22
import { OverwritePayload } from "../channels/guild.ts";
3-
import { GuildThreadChannelPayload } from "../channels/thread.ts";
3+
import {
4+
GuildThreadChannelPayload,
5+
ThreadMetadataPayload,
6+
} from "../channels/thread.ts";
47
import { IntegrationPayload } from "../guilds/integration.ts";
8+
import { GuildPayload } from "../guilds/guild.ts";
59
import { RolePayload } from "../guilds/role.ts";
6-
import { ApplicationCommandPayload } from "../interactions/command.ts";
10+
import {
11+
ApplicationCommandPayload,
12+
ApplicationCommandPermissions,
13+
} from "../interactions/command.ts";
714
import {
815
ScheduledEventPayload,
916
ScheduledEventPrivacyLevel,
1017
ScheduledEventStatus,
1118
} from "../scheduledEvent/scheduledEvent.ts";
12-
import { StagePrivacyLevel } from "../stageInstances/stage.ts";
13-
import { StickerFormatType } from "../stickers/sticker.ts";
19+
import {
20+
StageInstancePayload,
21+
StagePrivacyLevel,
22+
} from "../stageInstances/stage.ts";
23+
import { StickerFormatType, StickerPayload } from "../stickers/sticker.ts";
1424
import { UserPayload } from "../users/user.ts";
1525
import { WebhookPayload } from "../webhooks/webhook.ts";
26+
import { ChannelPayload } from "../channels/base.ts";
27+
import { GuildMemberPayload } from "../guilds/member.ts";
28+
import { InvitePayload } from "../invites/intive.ts";
29+
import { EmojiPayload } from "../emojis/emoij.ts";
1630

1731
export interface AuditLogPayload {
1832
application_commands: ApplicationCommandPayload[];
@@ -90,6 +104,8 @@ export enum AuditLogEvents {
90104
AUTO_MODERATION_BLOCK_MESSAGE = 143,
91105
AUTO_MODERATION_FLAG_TO_CHANNEL = 144,
92106
AUTO_MODERATION_USER_COMMUNICATION_DISABLED = 145,
107+
CREATOR_MONETIZATION_REQUEST_CREATED = 150,
108+
CREATOR_MONETIZATION_TERMS_ACCEPTED = 151,
93109
}
94110

95111
export interface AuditLogEntryInfoPayload {
@@ -104,6 +120,7 @@ export interface AuditLogEntryInfoPayload {
104120
message_id?: string;
105121
role_name?: string;
106122
type?: string;
123+
integration_type?: string;
107124
}
108125

109126
type AuditLogChangeValue =
@@ -115,7 +132,20 @@ type AuditLogChangeValue =
115132
| StagePrivacyLevel
116133
| ScheduledEventPrivacyLevel
117134
| ScheduledEventStatus
118-
| RolePayload;
135+
| RolePayload
136+
| GuildPayload
137+
| ChannelPayload
138+
| GuildMemberPayload
139+
| InvitePayload
140+
| WebhookPayload
141+
| EmojiPayload
142+
| IntegrationPayload
143+
| StageInstancePayload
144+
| StickerPayload
145+
// | GuildScheduledEventPayload
146+
| ThreadMetadataPayload
147+
| ApplicationCommandPermissions
148+
| AutoModerationRulePayload;
119149

120150
export interface AuditLogChangePayload {
121151
new_value?: AuditLogChangeValue;

types/src/autoMod/autoMod.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ export enum AutoModerationRuleTriggerType {
2424
}
2525

2626
export interface AutoModerationRuleTriggerMetadata {
27-
keyword_filter?: string[];
28-
regex_patterns?: string[];
29-
presets?: AutoModerationRuleKeywordPreset[];
30-
allow_list?: string[];
31-
mention_total_limit?: number;
27+
keyword_filter: string[];
28+
regex_patterns: string[];
29+
presets: AutoModerationRuleKeywordPreset[];
30+
allow_list: string[];
31+
mention_total_limit: number;
32+
mention_raid_protection_enabled: boolean;
3233
}
3334

3435
export enum AutoModerationRuleKeywordPreset {
@@ -49,8 +50,8 @@ export enum AutoModerationRuleActionType {
4950
}
5051

5152
export interface AutoModerationRuleActionMetadata {
52-
channel_id?: string;
53-
duration_seconds?: number;
53+
channel_id: string;
54+
duration_seconds: number;
5455
custom_message?: string;
5556
}
5657

types/src/channels/base.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ export enum ChannelType {
2121
export interface ChannelPayload {
2222
id: string;
2323
type: ChannelType;
24-
flags: number;
24+
flags?: number;
25+
}
26+
27+
export enum ChannelFlags {
28+
PINNED = 1 << 1,
29+
REQUIRE_TAG = 1 << 4,
30+
HIDE_MEDIA_DOWNLOAD_OPTIONS = 1 << 15,
2531
}
2632

2733
export interface TextChannelPayload extends ChannelPayload {
File renamed without changes.

types/src/poll/mod.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./poll.ts";

types/src/poll/poll.ts

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
import { EmojiPayload } from "../emojis/emoij.ts";
2+
import { UserPayload } from "../users/user.ts";
3+
4+
export interface PollPayload {
5+
question: PollMediaPayload;
6+
answers: PollAnswerPayload[];
7+
expiry: string | null;
8+
allow_multiselect: boolean;
9+
layout_type: PollLayoutType;
10+
results?: PollResultPayload;
11+
}
12+
13+
export interface PollCreateRequestPayload {
14+
question: PollMediaPayload;
15+
answers: PollAnswerPayload[];
16+
expiry: string | null;
17+
allow_multiselect: boolean;
18+
layout_type?: PollLayoutType;
19+
}
20+
21+
export enum PollLayoutType {
22+
DEFAULT = 1,
23+
}
24+
25+
export interface PollMediaPayload {
26+
text?: string;
27+
emoji?: EmojiPayload;
28+
}
29+
30+
export interface PollAnswerPayload {
31+
answer_id: number;
32+
poll_media: PollMediaPayload;
33+
}
34+
35+
export interface PollResultPayload {
36+
is_finalized: boolean;
37+
answer_counts: PollAnswerCountPayload[];
38+
}
39+
40+
export interface PollAnswerCountPayload {
41+
id: number;
42+
count: number;
43+
me_voted: boolean;
44+
}
45+
46+
export interface GetAnswerVotersParams {
47+
after?: string;
48+
limit?: number;
49+
}
50+
51+
export interface GetAnswerVotersResponse {
52+
users: UserPayload[];
53+
}

types/src/teams/mod.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./team.ts";

types/src/applications/team.ts types/src/teams/team.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ export interface TeamPayload {
1010

1111
export interface TeamMemberPayload {
1212
membership_state: MembershipState;
13-
permissions: ["*"];
1413
team_id: string;
1514
user: UserPayload;
15+
role: string;
1616
}
1717

1818
export enum MembershipState {
1919
INVITED = 1,
2020
ACCEPTED = 2,
2121
}
22+
23+
export enum TeamMemberRole {
24+
OWNER = "",
25+
ADMIN = "admin",
26+
DEVELOPER = "developer",
27+
READ_ONLY = "read_only",
28+
}

0 commit comments

Comments
 (0)