├── .eslintrc.json ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── lint.yml │ └── winget.yml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── assets ├── cert │ ├── server.cert │ └── server.key ├── editor │ └── index.html ├── header.txt ├── icon.png └── snapshot │ ├── apex_experiments.json │ ├── guild_experiments.json │ ├── index.html │ └── user_experiments.json ├── docs └── Experiments.md ├── eslint.config.mjs ├── package.json ├── readme.md ├── scripts ├── update.ts ├── updateGuildExperiments.ts ├── vencordBuild.ts └── vencordClone.ts ├── src ├── AppCore │ ├── APIServer.ts │ ├── Config.ts │ ├── Constants.ts │ ├── EditorPreload.ts │ ├── ElectronPreload.ts │ ├── IPCEvents.ts │ ├── IPCManager.ts │ ├── index.ts │ └── routes │ │ ├── __development │ │ └── build_overrides.ts │ │ ├── activities │ │ └── shelf.ts │ │ ├── app-recommendations.ts │ │ ├── applications-with-assets.ts │ │ ├── auth │ │ ├── location-metadata.ts │ │ ├── logout.ts │ │ └── sessions.ts │ │ ├── cdn-cgi │ │ └── index.ts │ │ ├── channels │ │ ├── #id │ │ │ ├── application-command-index.ts │ │ │ ├── application-commands │ │ │ │ └── search.ts │ │ │ ├── messages │ │ │ │ ├── #mid │ │ │ │ │ └── ack.ts │ │ │ │ └── search.ts │ │ │ ├── polls │ │ │ │ └── #pid │ │ │ │ │ └── answers │ │ │ │ │ └── @me.ts │ │ │ ├── post-data.ts │ │ │ └── threads │ │ │ │ └── search.ts │ │ └── 1000000000000000000 │ │ │ └── messages.ts │ │ ├── checkpoint.ts │ │ ├── collectibles-categories │ │ ├── index.ts │ │ └── v2.ts │ │ ├── collectibles-marketing.ts │ │ ├── collectibles-purchases.ts │ │ ├── collectibles-shop.ts │ │ ├── content-inventory │ │ └── users │ │ │ └── @me │ │ │ └── index.ts │ │ ├── creator-monetization │ │ └── marketing │ │ │ └── nag-activate │ │ │ └── eligibility.ts │ │ ├── developers │ │ └── docs │ │ │ ├── index.ts │ │ │ └── intro.ts │ │ ├── discoverable-guilds │ │ ├── index.ts │ │ └── search.ts │ │ ├── download.ts │ │ ├── error-reporting-proxy │ │ └── web.ts │ │ ├── experiments.ts │ │ ├── family-center │ │ └── @me │ │ │ └── index.ts │ │ ├── guilds │ │ ├── #id │ │ │ ├── admin-server-eligibility.ts │ │ │ ├── analytics │ │ │ │ └── member-insights.ts │ │ │ ├── application-command-index.ts │ │ │ ├── applications.ts │ │ │ ├── entitlements.ts │ │ │ ├── members │ │ │ │ └── @me │ │ │ │ │ └── index.ts │ │ │ ├── messages │ │ │ │ └── search.txt │ │ │ ├── migrate-command-scope.ts │ │ │ ├── onboarding-responses.ts │ │ │ ├── powerups.ts │ │ │ ├── premium │ │ │ │ └── subscriptions.ts │ │ │ ├── products │ │ │ │ └── listings.ts │ │ │ ├── profile │ │ │ │ └── index.ts │ │ │ ├── role-subscriptions │ │ │ │ ├── group-listings.ts │ │ │ │ ├── settings.ts │ │ │ │ └── trials.ts │ │ │ └── top-emojis.ts │ │ ├── integration-application-ids.ts │ │ └── premium │ │ │ └── subscription-slots.ts │ │ ├── hypesquad.ts │ │ ├── oauth2 │ │ ├── authorize.ts │ │ └── tokens.ts │ │ ├── outbound-promotions.ts │ │ ├── ping.ts │ │ ├── popout.ts │ │ ├── premium-marketing.ts │ │ ├── quests │ │ ├── #id │ │ │ └── index.ts │ │ ├── @me │ │ │ ├── claimed.ts │ │ │ └── index.ts │ │ └── decision.ts │ │ ├── read-states │ │ └── ack-bulk.ts │ │ ├── safety-hub │ │ └── @me │ │ │ └── index.ts │ │ ├── store │ │ └── published-listings │ │ │ ├── applications │ │ │ └── #id │ │ │ │ └── subscription-plans.ts │ │ │ └── skus │ │ │ ├── #id │ │ │ └── subscription-plans.ts │ │ │ └── index.ts │ │ ├── streams │ │ └── #hash │ │ │ └── preview.ts │ │ ├── teams.ts │ │ ├── user-profile-effects.js1 │ │ └── users │ │ ├── #id │ │ ├── application-command-index.ts │ │ └── profile.ts │ │ ├── 1056491867375673424 │ │ ├── index.ts │ │ └── profile.ts │ │ └── @me │ │ ├── activities │ │ └── statistics │ │ │ └── applications.ts │ │ ├── affinities │ │ ├── guilds.ts │ │ └── users.ts │ │ ├── application-command-index.ts │ │ ├── applications │ │ └── #id │ │ │ └── entitlements.ts │ │ ├── billing │ │ ├── campaign-context.ts │ │ ├── country-code.ts │ │ ├── location-info.ts │ │ ├── nitro-affinity.ts │ │ ├── payment-sources.ts │ │ ├── payments.ts │ │ └── subscriptions │ │ │ ├── #id │ │ │ ├── preview.ts │ │ │ └── reward-eligibility.ts │ │ │ └── index.ts │ │ ├── collectibles-marketing.ts │ │ ├── collectibles-purchases.ts │ │ ├── connections.ts │ │ ├── consent.ts │ │ ├── custom-themes.ts │ │ ├── email-settings.ts │ │ ├── emojis.ts │ │ ├── entitlements │ │ ├── gifts.ts │ │ └── index.ts │ │ ├── guilds │ │ ├── integration-application-ids.ts │ │ └── premium │ │ │ ├── subscription-slots.ts │ │ │ └── subscriptions.ts │ │ ├── harvest.ts │ │ ├── index.ts │ │ ├── inventory.ts │ │ ├── library.ts │ │ ├── mentions.ts │ │ ├── mfa │ │ └── webauthn │ │ │ └── credentials.ts │ │ ├── notification-center │ │ └── items.ts │ │ ├── outbound-promotions │ │ └── codes.ts │ │ ├── profile.ts │ │ ├── referrals │ │ ├── #id │ │ │ └── preview.ts │ │ ├── eligibility.ts │ │ └── eligible-users.ts │ │ ├── relationships.ts │ │ ├── saved-messages.ts │ │ ├── settings-proto.ts │ │ ├── survey.ts │ │ ├── video-filters │ │ └── assets.ts │ │ └── virtual-currency │ │ └── balance.ts ├── AppUtils │ ├── DiscordBitField │ │ ├── ApplicationFlags.ts │ │ ├── BitField.ts │ │ ├── Intents.ts │ │ ├── UserFlags.ts │ │ └── index.ts │ ├── Experiments.ts │ ├── NitroData.ts │ ├── RegisterRoutes.ts │ ├── SystemMessages.ts │ ├── UserBadges.ts │ ├── UserPatch.ts │ └── Utils.ts ├── index.ts └── overrides.d.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [aiko-chan-ai] -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/cert/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/cert/server.cert -------------------------------------------------------------------------------- /assets/cert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/cert/server.key -------------------------------------------------------------------------------- /assets/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/editor/index.html -------------------------------------------------------------------------------- /assets/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/header.txt -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/snapshot/apex_experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/snapshot/apex_experiments.json -------------------------------------------------------------------------------- /assets/snapshot/guild_experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/snapshot/guild_experiments.json -------------------------------------------------------------------------------- /assets/snapshot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/snapshot/index.html -------------------------------------------------------------------------------- /assets/snapshot/user_experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/assets/snapshot/user_experiments.json -------------------------------------------------------------------------------- /docs/Experiments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/docs/Experiments.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/scripts/update.ts -------------------------------------------------------------------------------- /scripts/updateGuildExperiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/scripts/updateGuildExperiments.ts -------------------------------------------------------------------------------- /scripts/vencordBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/scripts/vencordBuild.ts -------------------------------------------------------------------------------- /scripts/vencordClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/scripts/vencordClone.ts -------------------------------------------------------------------------------- /src/AppCore/APIServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/APIServer.ts -------------------------------------------------------------------------------- /src/AppCore/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/Config.ts -------------------------------------------------------------------------------- /src/AppCore/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/Constants.ts -------------------------------------------------------------------------------- /src/AppCore/EditorPreload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/EditorPreload.ts -------------------------------------------------------------------------------- /src/AppCore/ElectronPreload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/ElectronPreload.ts -------------------------------------------------------------------------------- /src/AppCore/IPCEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/IPCEvents.ts -------------------------------------------------------------------------------- /src/AppCore/IPCManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/IPCManager.ts -------------------------------------------------------------------------------- /src/AppCore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/__development/build_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/__development/build_overrides.ts -------------------------------------------------------------------------------- /src/AppCore/routes/activities/shelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/activities/shelf.ts -------------------------------------------------------------------------------- /src/AppCore/routes/app-recommendations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/app-recommendations.ts -------------------------------------------------------------------------------- /src/AppCore/routes/applications-with-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/applications-with-assets.ts -------------------------------------------------------------------------------- /src/AppCore/routes/auth/location-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/auth/location-metadata.ts -------------------------------------------------------------------------------- /src/AppCore/routes/auth/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/auth/logout.ts -------------------------------------------------------------------------------- /src/AppCore/routes/auth/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/auth/sessions.ts -------------------------------------------------------------------------------- /src/AppCore/routes/cdn-cgi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/cdn-cgi/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/application-command-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/application-command-index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/application-commands/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/application-commands/search.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/messages/#mid/ack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/messages/#mid/ack.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/messages/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/messages/search.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/polls/#pid/answers/@me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/polls/#pid/answers/@me.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/post-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/post-data.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/#id/threads/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/#id/threads/search.ts -------------------------------------------------------------------------------- /src/AppCore/routes/channels/1000000000000000000/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/channels/1000000000000000000/messages.ts -------------------------------------------------------------------------------- /src/AppCore/routes/checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/checkpoint.ts -------------------------------------------------------------------------------- /src/AppCore/routes/collectibles-categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/collectibles-categories/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/collectibles-categories/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/collectibles-categories/v2.ts -------------------------------------------------------------------------------- /src/AppCore/routes/collectibles-marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/collectibles-marketing.ts -------------------------------------------------------------------------------- /src/AppCore/routes/collectibles-purchases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/collectibles-purchases.ts -------------------------------------------------------------------------------- /src/AppCore/routes/collectibles-shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/collectibles-shop.ts -------------------------------------------------------------------------------- /src/AppCore/routes/content-inventory/users/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/content-inventory/users/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/creator-monetization/marketing/nag-activate/eligibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/creator-monetization/marketing/nag-activate/eligibility.ts -------------------------------------------------------------------------------- /src/AppCore/routes/developers/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/developers/docs/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/developers/docs/intro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/developers/docs/intro.ts -------------------------------------------------------------------------------- /src/AppCore/routes/discoverable-guilds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/discoverable-guilds/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/discoverable-guilds/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/discoverable-guilds/search.ts -------------------------------------------------------------------------------- /src/AppCore/routes/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/download.ts -------------------------------------------------------------------------------- /src/AppCore/routes/error-reporting-proxy/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/error-reporting-proxy/web.ts -------------------------------------------------------------------------------- /src/AppCore/routes/experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/experiments.ts -------------------------------------------------------------------------------- /src/AppCore/routes/family-center/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/family-center/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/admin-server-eligibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/admin-server-eligibility.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/analytics/member-insights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/analytics/member-insights.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/application-command-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/application-command-index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/applications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/applications.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/entitlements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/entitlements.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/members/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/members/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/messages/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/messages/search.txt -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/migrate-command-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/migrate-command-scope.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/onboarding-responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/onboarding-responses.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/powerups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/powerups.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/premium/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/premium/subscriptions.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/products/listings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/products/listings.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/profile/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/role-subscriptions/group-listings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/role-subscriptions/group-listings.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/role-subscriptions/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/role-subscriptions/settings.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/role-subscriptions/trials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/role-subscriptions/trials.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/#id/top-emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/#id/top-emojis.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/integration-application-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/integration-application-ids.ts -------------------------------------------------------------------------------- /src/AppCore/routes/guilds/premium/subscription-slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/guilds/premium/subscription-slots.ts -------------------------------------------------------------------------------- /src/AppCore/routes/hypesquad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/hypesquad.ts -------------------------------------------------------------------------------- /src/AppCore/routes/oauth2/authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/oauth2/authorize.ts -------------------------------------------------------------------------------- /src/AppCore/routes/oauth2/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/oauth2/tokens.ts -------------------------------------------------------------------------------- /src/AppCore/routes/outbound-promotions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/outbound-promotions.ts -------------------------------------------------------------------------------- /src/AppCore/routes/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/ping.ts -------------------------------------------------------------------------------- /src/AppCore/routes/popout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/popout.ts -------------------------------------------------------------------------------- /src/AppCore/routes/premium-marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/premium-marketing.ts -------------------------------------------------------------------------------- /src/AppCore/routes/quests/#id/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/quests/#id/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/quests/@me/claimed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/quests/@me/claimed.ts -------------------------------------------------------------------------------- /src/AppCore/routes/quests/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/quests/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/quests/decision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/quests/decision.ts -------------------------------------------------------------------------------- /src/AppCore/routes/read-states/ack-bulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/read-states/ack-bulk.ts -------------------------------------------------------------------------------- /src/AppCore/routes/safety-hub/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/safety-hub/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/store/published-listings/applications/#id/subscription-plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/store/published-listings/applications/#id/subscription-plans.ts -------------------------------------------------------------------------------- /src/AppCore/routes/store/published-listings/skus/#id/subscription-plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/store/published-listings/skus/#id/subscription-plans.ts -------------------------------------------------------------------------------- /src/AppCore/routes/store/published-listings/skus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/store/published-listings/skus/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/streams/#hash/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/streams/#hash/preview.ts -------------------------------------------------------------------------------- /src/AppCore/routes/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/teams.ts -------------------------------------------------------------------------------- /src/AppCore/routes/user-profile-effects.js1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/user-profile-effects.js1 -------------------------------------------------------------------------------- /src/AppCore/routes/users/#id/application-command-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/#id/application-command-index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/#id/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/#id/profile.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/1056491867375673424/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/1056491867375673424/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/1056491867375673424/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/1056491867375673424/profile.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/activities/statistics/applications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/activities/statistics/applications.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/affinities/guilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/affinities/guilds.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/affinities/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/affinities/users.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/application-command-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/application-command-index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/applications/#id/entitlements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/applications/#id/entitlements.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/campaign-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/campaign-context.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/country-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/country-code.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/location-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/location-info.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/nitro-affinity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/nitro-affinity.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/payment-sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/payment-sources.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/payments.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/subscriptions/#id/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/subscriptions/#id/preview.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/subscriptions/#id/reward-eligibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/subscriptions/#id/reward-eligibility.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/billing/subscriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/billing/subscriptions/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/collectibles-marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/collectibles-marketing.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/collectibles-purchases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/collectibles-purchases.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/connections.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/consent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/consent.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/custom-themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/custom-themes.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/email-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/email-settings.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/emojis.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/entitlements/gifts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/entitlements/gifts.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/entitlements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/entitlements/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/guilds/integration-application-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/guilds/integration-application-ids.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/guilds/premium/subscription-slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/guilds/premium/subscription-slots.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/guilds/premium/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/guilds/premium/subscriptions.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/harvest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/harvest.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/index.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/inventory.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/library.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/mentions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/mentions.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/mfa/webauthn/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/mfa/webauthn/credentials.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/notification-center/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/notification-center/items.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/outbound-promotions/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/outbound-promotions/codes.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/profile.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/referrals/#id/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/referrals/#id/preview.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/referrals/eligibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/referrals/eligibility.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/referrals/eligible-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/referrals/eligible-users.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/relationships.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/saved-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/saved-messages.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/settings-proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/settings-proto.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/survey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/survey.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/video-filters/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/video-filters/assets.ts -------------------------------------------------------------------------------- /src/AppCore/routes/users/@me/virtual-currency/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppCore/routes/users/@me/virtual-currency/balance.ts -------------------------------------------------------------------------------- /src/AppUtils/DiscordBitField/ApplicationFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/DiscordBitField/ApplicationFlags.ts -------------------------------------------------------------------------------- /src/AppUtils/DiscordBitField/BitField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/DiscordBitField/BitField.ts -------------------------------------------------------------------------------- /src/AppUtils/DiscordBitField/Intents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/DiscordBitField/Intents.ts -------------------------------------------------------------------------------- /src/AppUtils/DiscordBitField/UserFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/DiscordBitField/UserFlags.ts -------------------------------------------------------------------------------- /src/AppUtils/DiscordBitField/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/DiscordBitField/index.ts -------------------------------------------------------------------------------- /src/AppUtils/Experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/Experiments.ts -------------------------------------------------------------------------------- /src/AppUtils/NitroData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/NitroData.ts -------------------------------------------------------------------------------- /src/AppUtils/RegisterRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/RegisterRoutes.ts -------------------------------------------------------------------------------- /src/AppUtils/SystemMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/SystemMessages.ts -------------------------------------------------------------------------------- /src/AppUtils/UserBadges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/UserBadges.ts -------------------------------------------------------------------------------- /src/AppUtils/UserPatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/UserPatch.ts -------------------------------------------------------------------------------- /src/AppUtils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/AppUtils/Utils.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/overrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/src/overrides.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiko-chan-ai/DiscordBotClient/HEAD/tsconfig.json --------------------------------------------------------------------------------