|
@@ -30,15 +30,17 @@ const (
|
|
|
|
|
|
// ApplicationCommand represents an application's slash command.
|
|
// ApplicationCommand represents an application's slash command.
|
|
type ApplicationCommand struct {
|
|
type ApplicationCommand struct {
|
|
- ID string `json:"id,omitempty"`
|
|
|
|
- ApplicationID string `json:"application_id,omitempty"`
|
|
|
|
- Type ApplicationCommandType `json:"type,omitempty"`
|
|
|
|
- Name string `json:"name"`
|
|
|
|
- // NOTE: Chat commands only. Otherwise it mustn't be set.
|
|
|
|
- Description string `json:"description,omitempty"`
|
|
|
|
- Version string `json:"version,omitempty"`
|
|
|
|
|
|
+ ID string `json:"id,omitempty"`
|
|
|
|
+ ApplicationID string `json:"application_id,omitempty"`
|
|
|
|
+ Version string `json:"version,omitempty"`
|
|
|
|
+ Type ApplicationCommandType `json:"type,omitempty"`
|
|
|
|
+ Name string `json:"name"`
|
|
|
|
+ DefaultPermission *bool `json:"default_permission,omitempty"`
|
|
|
|
+
|
|
// NOTE: Chat commands only. Otherwise it mustn't be set.
|
|
// NOTE: Chat commands only. Otherwise it mustn't be set.
|
|
- Options []*ApplicationCommandOption `json:"options"`
|
|
|
|
|
|
+
|
|
|
|
+ Description string `json:"description,omitempty"`
|
|
|
|
+ Options []*ApplicationCommandOption `json:"options"`
|
|
}
|
|
}
|
|
|
|
|
|
// ApplicationCommandOptionType indicates the type of a slash command's option.
|
|
// ApplicationCommandOptionType indicates the type of a slash command's option.
|
|
@@ -107,6 +109,35 @@ type ApplicationCommandOptionChoice struct {
|
|
Value interface{} `json:"value"`
|
|
Value interface{} `json:"value"`
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// ApplicationCommandPermissions represents a single user or role permission for a command.
|
|
|
|
+type ApplicationCommandPermissions struct {
|
|
|
|
+ ID string `json:"id"`
|
|
|
|
+ Type ApplicationCommandPermissionType `json:"type"`
|
|
|
|
+ Permission bool `json:"permission"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ApplicationCommandPermissionsList represents a list of ApplicationCommandPermissions, needed for serializing to JSON.
|
|
|
|
+type ApplicationCommandPermissionsList struct {
|
|
|
|
+ Permissions []*ApplicationCommandPermissions `json:"permissions"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// GuildApplicationCommandPermissions represents all permissions for a single guild command.
|
|
|
|
+type GuildApplicationCommandPermissions struct {
|
|
|
|
+ ID string `json:"id"`
|
|
|
|
+ ApplicationID string `json:"application_id"`
|
|
|
|
+ GuildID string `json:"guild_id"`
|
|
|
|
+ Permissions []*ApplicationCommandPermissions `json:"permissions"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ApplicationCommandPermissionType indicates whether a permission is user or role based.
|
|
|
|
+type ApplicationCommandPermissionType uint8
|
|
|
|
+
|
|
|
|
+// Application command permission types.
|
|
|
|
+const (
|
|
|
|
+ ApplicationCommandPermissionTypeRole ApplicationCommandPermissionType = 1
|
|
|
|
+ ApplicationCommandPermissionTypeUser ApplicationCommandPermissionType = 2
|
|
|
|
+)
|
|
|
|
+
|
|
// InteractionType indicates the type of an interaction event.
|
|
// InteractionType indicates the type of an interaction event.
|
|
type InteractionType uint8
|
|
type InteractionType uint8
|
|
|
|
|