diff --git a/DisCatSharp/Enums/Invite/TargetActivity.cs b/DisCatSharp/Enums/Invite/TargetActivity.cs index cebd73cf3..aa47ebb31 100644 --- a/DisCatSharp/Enums/Invite/TargetActivity.cs +++ b/DisCatSharp/Enums/Invite/TargetActivity.cs @@ -1,99 +1,215 @@ // This file is part of the DisCatSharp project. // // Copyright (c) 2021 AITSYS // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. namespace DisCatSharp { /// /// Represents the activity this invite is for. /// public enum TargetActivity : ulong { /// /// Represents no embedded application. /// None = 0, /// - /// Represents the embedded application Poker Night. + /// Represents the embedded application Betrayal.io. /// - PokerNight = 755827207812677713, + Betrayal = 773336526917861400, + + /// + /// Represents the embedded application Chess in the park. + /// Dev? + /// + ChessInThePark = 832012774040141894, /// - /// Represents the embedded application Betrayal.io. + /// Represents the embedded application Doodle Crew. /// - Betrayal = 773336526917861400, + DoodleCrew = 878067389634314250, /// /// Represents the embedded application Fishington.io. /// Fishington = 814288819477020702, - /// - /// Represents the embedded application Chess in the park. - /// Dev? + /// + /// Represents the embedded application Letter Tile. /// - ChessInThePark = 832012586023256104, + LetterTile = 879863686565621790, /// - /// Represents the embedded application Chess in the park. - /// This is the dev version. - /// Stable? + /// Represents the embedded application Poker Night. /// - ChessInTheParkDev = 832012774040141894, + PokerNight = 755827207812677713, /// - /// Represents the embedded application YouTube Together. + /// Represents the embedded application Spell Cast. /// - YouTubeTogether = 755600276941176913, + SpellCast = 852509694341283871, /// /// Represents the embedded application Watch Together. /// WatchTogether = 880218394199220334, /// /// Represents the embedded application Watch Together. /// This is the dev version. /// WatchTogetherDev = 880218832743055411, /// - /// Represents the embedded application Letter Tile. + /// Represents the embedded application Word Snacks. /// - LetterTile = 879863686565621790, + WordSnacks = 879863976006127627, + + /// + /// Represents the embedded application YouTube Together. + /// + YouTubeTogether = 755600276941176913, + + #region New Prod + /// + /// Represents the embedded application Awkword. + /// + Awkword = 879863881349087252, + + /// + /// Represents the embedded application Putts. + /// + Putts = 832012854282158180, + + /// + /// Represents the embedded application CG3 Prod. + /// + CG3Prod = 832013003968348200, + + /// + /// Represents the embedded application CG4 Prod. + /// + CG4Prod = 832025144389533716, + + /// + /// Represents the embedded application Sketchy Artist. + /// + SketchyArtist = 879864070101172255, + #endregion + + #region New Dev + /// + /// Represents the embedded application Sketchy Artist. + /// This is the dev version. + /// + SketchyArtistDev = 879864104980979792, /// /// Represents the embedded application Word Snacks. + /// This is the dev version. /// - WordSnacks = 879863976006127627, + WordSnacksDev = 879864010126786570, /// /// Represents the embedded application Doodle Crew. + /// This is the dev version. /// - DoodleCrew = 878067389634314250, + DoodleCrewDev = 878067427668275241, /// - /// Represents the embedded application Spell Cast. + /// Represents the embedded application Chess in the park. + /// This is the dev version. + /// + ChessInTheParkDev = 832012586023256104, + + /// + /// Represents the embedded application CG3 Dev. + /// This is the dev version. + /// + CG3Dev = 832012682520428625, + + /// + /// Represents the embedded application CG4 Dev. + /// This is the dev version. + /// + CG4kDev = 832013108234289153, + + /// + /// Represents the embedded application Decoders. + /// This is the dev version. + /// + DecodersDev = 891001866073296967, + #endregion + + #region New Staging + /// + /// Represents the embedded application PN. + /// This is the staging version. + /// + PNStaging = 763116274876022855, + + /// + /// Represents the embedded application CG2. + /// This is the staging version. + /// + CG2Staging = 832012730599735326, + + /// + /// Represents the embedded application CG3. + /// This is the staging version. + /// + CG3Staging = 832012938398400562, + + /// + /// Represents the embedded application CG4. + /// This is the staging version. + /// + CG4Staging = 832025061657280566, + #endregion + + #region New QA + /// + /// Represents the embedded application Poker. + /// This is the QA version. + /// + PokerQA = 801133024841957428, + + /// + /// Represents the embedded application CG2. + /// This is the QA version. + /// + CG2QA = 832012815819604009, + + /// + /// Represents the embedded application CG 3. + /// This is the QA version. + /// + CG3QA = 832012894068801636, + + /// + /// Represents the embedded application CG 4. + /// This is the QA version. /// - SpellCast = 852509694341283871 + CG4QA = 832025114077298718, + #endregion } }