-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #336 from VelvetToroyashi/fix/user-apps
Fix/user apps
- Loading branch information
Showing
31 changed files
with
322 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
...Discord.API.Abstractions/API/Objects/Interactions/IMessageComponentInteractionMetadata.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
...mora.Discord.API.Abstractions/API/Objects/Interactions/IModalSubmitInteractionMetadata.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
Backend/Remora.Discord.API/API/Objects/Interactions/ApplicationCommandInteractionMetadata.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// | ||
// MessageComponentInteractionMetadata.cs | ||
// MessageInteractionMetadata.cs | ||
// | ||
// Author: | ||
// Jarl Gullberg <[email protected]> | ||
|
@@ -27,14 +27,15 @@ | |
|
||
namespace Remora.Discord.API.Objects; | ||
|
||
/// <inheritdoc cref="IMessageComponentInteractionMetadata"/> | ||
/// <inheritdoc cref="IMessageInteractionMetadata"/> | ||
[PublicAPI] | ||
public record MessageComponentInteractionMetadata | ||
public record MessageInteractionMetadata | ||
( | ||
Snowflake ID, | ||
Snowflake UserID, | ||
InteractionType Type, | ||
IUser User, | ||
Optional<Snowflake> OriginalResponseMessageID, | ||
Optional<Snowflake> InteractedMessageID, | ||
InteractionType Type, | ||
IReadOnlyDictionary<ApplicationIntegrationType, Snowflake> AuthorizingIntegrationOwners, | ||
Snowflake InteractedMessageID | ||
) : IMessageComponentInteractionMetadata; | ||
Optional<IMessageInteractionMetadata> TriggeringInteractionMetadata | ||
) : IMessageInteractionMetadata; |
Oops, something went wrong.