├── LICENSE ├── README.md ├── commands └── verification │ └── setup.js ├── events ├── buttonInteraction.js └── modalInteraction.js └── schemas ├── codesSchema.js └── verifySchema.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/README.md -------------------------------------------------------------------------------- /commands/verification/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/commands/verification/setup.js -------------------------------------------------------------------------------- /events/buttonInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/events/buttonInteraction.js -------------------------------------------------------------------------------- /events/modalInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/events/modalInteraction.js -------------------------------------------------------------------------------- /schemas/codesSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/schemas/codesSchema.js -------------------------------------------------------------------------------- /schemas/verifySchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/57tr/djs-advanced-verification/HEAD/schemas/verifySchema.js --------------------------------------------------------------------------------