@buape/carbon 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (428) hide show
  1. package/.turbo/turbo-build.log +5 -0
  2. package/.turbo/turbo-dev.log +12 -0
  3. package/.turbo/turbo-docs.log +10 -0
  4. package/CHANGELOG.md +14 -0
  5. package/LICENSE +21 -0
  6. package/README.md +45 -0
  7. package/dist/package.json +18 -0
  8. package/dist/src/abstracts/AnySelectMenu.d.ts +31 -0
  9. package/dist/src/abstracts/AnySelectMenu.d.ts.map +1 -0
  10. package/dist/src/abstracts/AnySelectMenu.js +19 -0
  11. package/dist/src/abstracts/AnySelectMenu.js.map +1 -0
  12. package/dist/src/abstracts/AnySelectMenuInteraction.d.ts +12 -0
  13. package/dist/src/abstracts/AnySelectMenuInteraction.d.ts.map +1 -0
  14. package/dist/src/abstracts/AnySelectMenuInteraction.js +21 -0
  15. package/dist/src/abstracts/AnySelectMenuInteraction.js.map +1 -0
  16. package/dist/src/abstracts/Base.d.ts +10 -0
  17. package/dist/src/abstracts/Base.d.ts.map +1 -0
  18. package/dist/src/abstracts/Base.js +11 -0
  19. package/dist/src/abstracts/Base.js.map +1 -0
  20. package/dist/src/abstracts/BaseChannel.d.ts +44 -0
  21. package/dist/src/abstracts/BaseChannel.d.ts.map +1 -0
  22. package/dist/src/abstracts/BaseChannel.js +58 -0
  23. package/dist/src/abstracts/BaseChannel.js.map +1 -0
  24. package/dist/src/abstracts/BaseCommand.d.ts +58 -0
  25. package/dist/src/abstracts/BaseCommand.d.ts.map +1 -0
  26. package/dist/src/abstracts/BaseCommand.js +69 -0
  27. package/dist/src/abstracts/BaseCommand.js.map +1 -0
  28. package/dist/src/abstracts/BaseComponent.d.ts +34 -0
  29. package/dist/src/abstracts/BaseComponent.d.ts.map +1 -0
  30. package/dist/src/abstracts/BaseComponent.js +30 -0
  31. package/dist/src/abstracts/BaseComponent.js.map +1 -0
  32. package/dist/src/abstracts/BaseComponentInteraction.d.ts +9 -0
  33. package/dist/src/abstracts/BaseComponentInteraction.d.ts.map +1 -0
  34. package/dist/src/abstracts/BaseComponentInteraction.js +14 -0
  35. package/dist/src/abstracts/BaseComponentInteraction.js.map +1 -0
  36. package/dist/src/abstracts/BaseGuildChannel.d.ts +68 -0
  37. package/dist/src/abstracts/BaseGuildChannel.d.ts.map +1 -0
  38. package/dist/src/abstracts/BaseGuildChannel.js +130 -0
  39. package/dist/src/abstracts/BaseGuildChannel.js.map +1 -0
  40. package/dist/src/abstracts/BaseGuildTextChannel.d.ts +42 -0
  41. package/dist/src/abstracts/BaseGuildTextChannel.d.ts.map +1 -0
  42. package/dist/src/abstracts/BaseGuildTextChannel.js +61 -0
  43. package/dist/src/abstracts/BaseGuildTextChannel.js.map +1 -0
  44. package/dist/src/abstracts/BaseInteraction.d.ts +87 -0
  45. package/dist/src/abstracts/BaseInteraction.d.ts.map +1 -0
  46. package/dist/src/abstracts/BaseInteraction.js +101 -0
  47. package/dist/src/abstracts/BaseInteraction.js.map +1 -0
  48. package/dist/src/abstracts/ButtonInteraction.d.ts +8 -0
  49. package/dist/src/abstracts/ButtonInteraction.d.ts.map +1 -0
  50. package/dist/src/abstracts/ButtonInteraction.js +18 -0
  51. package/dist/src/abstracts/ButtonInteraction.js.map +1 -0
  52. package/dist/src/abstracts/ChannelSelectMenuInteraction.d.ts +7 -0
  53. package/dist/src/abstracts/ChannelSelectMenuInteraction.d.ts.map +1 -0
  54. package/dist/src/abstracts/ChannelSelectMenuInteraction.js +11 -0
  55. package/dist/src/abstracts/ChannelSelectMenuInteraction.js.map +1 -0
  56. package/dist/src/abstracts/CommandHandler.d.ts +6 -0
  57. package/dist/src/abstracts/CommandHandler.d.ts.map +1 -0
  58. package/dist/src/abstracts/CommandHandler.js +65 -0
  59. package/dist/src/abstracts/CommandHandler.js.map +1 -0
  60. package/dist/src/abstracts/CommandInteraction.d.ts +15 -0
  61. package/dist/src/abstracts/CommandInteraction.d.ts.map +1 -0
  62. package/dist/src/abstracts/CommandInteraction.js +60 -0
  63. package/dist/src/abstracts/CommandInteraction.js.map +1 -0
  64. package/dist/src/abstracts/ComponentHandler.d.ts +6 -0
  65. package/dist/src/abstracts/ComponentHandler.d.ts.map +1 -0
  66. package/dist/src/abstracts/ComponentHandler.js +64 -0
  67. package/dist/src/abstracts/ComponentHandler.js.map +1 -0
  68. package/dist/src/abstracts/GuildThreadOnlyChannel.d.ts +42 -0
  69. package/dist/src/abstracts/GuildThreadOnlyChannel.d.ts.map +1 -0
  70. package/dist/src/abstracts/GuildThreadOnlyChannel.js +54 -0
  71. package/dist/src/abstracts/GuildThreadOnlyChannel.js.map +1 -0
  72. package/dist/src/abstracts/MentionableSelectMenuInteraction.d.ts +8 -0
  73. package/dist/src/abstracts/MentionableSelectMenuInteraction.d.ts.map +1 -0
  74. package/dist/src/abstracts/MentionableSelectMenuInteraction.js +15 -0
  75. package/dist/src/abstracts/MentionableSelectMenuInteraction.js.map +1 -0
  76. package/dist/src/abstracts/RoleSelectMenuInteraction.d.ts +8 -0
  77. package/dist/src/abstracts/RoleSelectMenuInteraction.d.ts.map +1 -0
  78. package/dist/src/abstracts/RoleSelectMenuInteraction.js +14 -0
  79. package/dist/src/abstracts/RoleSelectMenuInteraction.js.map +1 -0
  80. package/dist/src/abstracts/StringSelectMenuInteraction.d.ts +8 -0
  81. package/dist/src/abstracts/StringSelectMenuInteraction.d.ts.map +1 -0
  82. package/dist/src/abstracts/StringSelectMenuInteraction.js +14 -0
  83. package/dist/src/abstracts/StringSelectMenuInteraction.js.map +1 -0
  84. package/dist/src/abstracts/UserSelectMenuInteraction.d.ts +8 -0
  85. package/dist/src/abstracts/UserSelectMenuInteraction.d.ts.map +1 -0
  86. package/dist/src/abstracts/UserSelectMenuInteraction.js +14 -0
  87. package/dist/src/abstracts/UserSelectMenuInteraction.js.map +1 -0
  88. package/dist/src/classes/Button.d.ts +53 -0
  89. package/dist/src/classes/Button.d.ts.map +1 -0
  90. package/dist/src/classes/Button.js +55 -0
  91. package/dist/src/classes/Button.js.map +1 -0
  92. package/dist/src/classes/ChannelSelectMenu.d.ts +15 -0
  93. package/dist/src/classes/ChannelSelectMenu.d.ts.map +1 -0
  94. package/dist/src/classes/ChannelSelectMenu.js +15 -0
  95. package/dist/src/classes/ChannelSelectMenu.js.map +1 -0
  96. package/dist/src/classes/Client.d.ts +117 -0
  97. package/dist/src/classes/Client.d.ts.map +1 -0
  98. package/dist/src/classes/Client.js +170 -0
  99. package/dist/src/classes/Client.js.map +1 -0
  100. package/dist/src/classes/Command.d.ts +35 -0
  101. package/dist/src/classes/Command.d.ts.map +1 -0
  102. package/dist/src/classes/Command.js +31 -0
  103. package/dist/src/classes/Command.js.map +1 -0
  104. package/dist/src/classes/CommandWithSubcommandGroups.d.ts +22 -0
  105. package/dist/src/classes/CommandWithSubcommandGroups.d.ts.map +1 -0
  106. package/dist/src/classes/CommandWithSubcommandGroups.js +31 -0
  107. package/dist/src/classes/CommandWithSubcommandGroups.js.map +1 -0
  108. package/dist/src/classes/CommandWithSubcommands.d.ts +19 -0
  109. package/dist/src/classes/CommandWithSubcommands.d.ts.map +1 -0
  110. package/dist/src/classes/CommandWithSubcommands.js +21 -0
  111. package/dist/src/classes/CommandWithSubcommands.js.map +1 -0
  112. package/dist/src/classes/MentionableSelectMenu.d.ts +13 -0
  113. package/dist/src/classes/MentionableSelectMenu.d.ts.map +1 -0
  114. package/dist/src/classes/MentionableSelectMenu.js +13 -0
  115. package/dist/src/classes/MentionableSelectMenu.js.map +1 -0
  116. package/dist/src/classes/Paginator.d.ts +3 -0
  117. package/dist/src/classes/Paginator.d.ts.map +1 -0
  118. package/dist/src/classes/Paginator.js +3 -0
  119. package/dist/src/classes/Paginator.js.map +1 -0
  120. package/dist/src/classes/RoleSelectMenu.d.ts +13 -0
  121. package/dist/src/classes/RoleSelectMenu.d.ts.map +1 -0
  122. package/dist/src/classes/RoleSelectMenu.js +13 -0
  123. package/dist/src/classes/RoleSelectMenu.js.map +1 -0
  124. package/dist/src/classes/Row.d.ts +27 -0
  125. package/dist/src/classes/Row.d.ts.map +1 -0
  126. package/dist/src/classes/Row.js +39 -0
  127. package/dist/src/classes/Row.js.map +1 -0
  128. package/dist/src/classes/StringSelectMenu.d.ts +13 -0
  129. package/dist/src/classes/StringSelectMenu.d.ts.map +1 -0
  130. package/dist/src/classes/StringSelectMenu.js +12 -0
  131. package/dist/src/classes/StringSelectMenu.js.map +1 -0
  132. package/dist/src/classes/UserSelectMenu.d.ts +13 -0
  133. package/dist/src/classes/UserSelectMenu.d.ts.map +1 -0
  134. package/dist/src/classes/UserSelectMenu.js +13 -0
  135. package/dist/src/classes/UserSelectMenu.js.map +1 -0
  136. package/dist/src/factories/channelFactory.d.ts +13 -0
  137. package/dist/src/factories/channelFactory.d.ts.map +1 -0
  138. package/dist/src/factories/channelFactory.js +39 -0
  139. package/dist/src/factories/channelFactory.js.map +1 -0
  140. package/dist/src/index.d.ts +49 -0
  141. package/dist/src/index.d.ts.map +1 -0
  142. package/dist/src/index.js +55 -0
  143. package/dist/src/index.js.map +1 -0
  144. package/dist/src/internals/AutocompleteInteraction.d.ts +34 -0
  145. package/dist/src/internals/AutocompleteInteraction.d.ts.map +1 -0
  146. package/dist/src/internals/AutocompleteInteraction.js +68 -0
  147. package/dist/src/internals/AutocompleteInteraction.js.map +1 -0
  148. package/dist/src/internals/ButtonInteraction.d.ts +8 -0
  149. package/dist/src/internals/ButtonInteraction.d.ts.map +1 -0
  150. package/dist/src/internals/ButtonInteraction.js +18 -0
  151. package/dist/src/internals/ButtonInteraction.js.map +1 -0
  152. package/dist/src/internals/ChannelSelectMenuInteraction.d.ts +7 -0
  153. package/dist/src/internals/ChannelSelectMenuInteraction.d.ts.map +1 -0
  154. package/dist/src/internals/ChannelSelectMenuInteraction.js +11 -0
  155. package/dist/src/internals/ChannelSelectMenuInteraction.js.map +1 -0
  156. package/dist/src/internals/CommandHandler.d.ts +8 -0
  157. package/dist/src/internals/CommandHandler.d.ts.map +1 -0
  158. package/dist/src/internals/CommandHandler.js +81 -0
  159. package/dist/src/internals/CommandHandler.js.map +1 -0
  160. package/dist/src/internals/CommandInteraction.d.ts +17 -0
  161. package/dist/src/internals/CommandInteraction.d.ts.map +1 -0
  162. package/dist/src/internals/CommandInteraction.js +29 -0
  163. package/dist/src/internals/CommandInteraction.js.map +1 -0
  164. package/dist/src/internals/ComponentHandler.d.ts +6 -0
  165. package/dist/src/internals/ComponentHandler.d.ts.map +1 -0
  166. package/dist/src/internals/ComponentHandler.js +64 -0
  167. package/dist/src/internals/ComponentHandler.js.map +1 -0
  168. package/dist/src/internals/MentionableSelectMenuInteraction.d.ts +8 -0
  169. package/dist/src/internals/MentionableSelectMenuInteraction.d.ts.map +1 -0
  170. package/dist/src/internals/MentionableSelectMenuInteraction.js +15 -0
  171. package/dist/src/internals/MentionableSelectMenuInteraction.js.map +1 -0
  172. package/dist/src/internals/OptionsHandler.d.ts +70 -0
  173. package/dist/src/internals/OptionsHandler.d.ts.map +1 -0
  174. package/dist/src/internals/OptionsHandler.js +115 -0
  175. package/dist/src/internals/OptionsHandler.js.map +1 -0
  176. package/dist/src/internals/RoleSelectMenuInteraction.d.ts +8 -0
  177. package/dist/src/internals/RoleSelectMenuInteraction.d.ts.map +1 -0
  178. package/dist/src/internals/RoleSelectMenuInteraction.js +14 -0
  179. package/dist/src/internals/RoleSelectMenuInteraction.js.map +1 -0
  180. package/dist/src/internals/StringSelectMenuInteraction.d.ts +8 -0
  181. package/dist/src/internals/StringSelectMenuInteraction.d.ts.map +1 -0
  182. package/dist/src/internals/StringSelectMenuInteraction.js +14 -0
  183. package/dist/src/internals/StringSelectMenuInteraction.js.map +1 -0
  184. package/dist/src/internals/UserSelectMenuInteraction.d.ts +8 -0
  185. package/dist/src/internals/UserSelectMenuInteraction.d.ts.map +1 -0
  186. package/dist/src/internals/UserSelectMenuInteraction.js +14 -0
  187. package/dist/src/internals/UserSelectMenuInteraction.js.map +1 -0
  188. package/dist/src/structures/AnySelectMenu.d.ts +31 -0
  189. package/dist/src/structures/AnySelectMenu.d.ts.map +1 -0
  190. package/dist/src/structures/AnySelectMenu.js +19 -0
  191. package/dist/src/structures/AnySelectMenu.js.map +1 -0
  192. package/dist/src/structures/AnySelectMenuInteraction.d.ts +12 -0
  193. package/dist/src/structures/AnySelectMenuInteraction.d.ts.map +1 -0
  194. package/dist/src/structures/AnySelectMenuInteraction.js +21 -0
  195. package/dist/src/structures/AnySelectMenuInteraction.js.map +1 -0
  196. package/dist/src/structures/Base.d.ts +10 -0
  197. package/dist/src/structures/Base.d.ts.map +1 -0
  198. package/dist/src/structures/Base.js +11 -0
  199. package/dist/src/structures/Base.js.map +1 -0
  200. package/dist/src/structures/BaseCommand.d.ts +64 -0
  201. package/dist/src/structures/BaseCommand.d.ts.map +1 -0
  202. package/dist/src/structures/BaseCommand.js +58 -0
  203. package/dist/src/structures/BaseCommand.js.map +1 -0
  204. package/dist/src/structures/BaseComponent.d.ts +34 -0
  205. package/dist/src/structures/BaseComponent.d.ts.map +1 -0
  206. package/dist/src/structures/BaseComponent.js +30 -0
  207. package/dist/src/structures/BaseComponent.js.map +1 -0
  208. package/dist/src/structures/BaseComponentInteraction.d.ts +9 -0
  209. package/dist/src/structures/BaseComponentInteraction.d.ts.map +1 -0
  210. package/dist/src/structures/BaseComponentInteraction.js +14 -0
  211. package/dist/src/structures/BaseComponentInteraction.js.map +1 -0
  212. package/dist/src/structures/BaseInteraction.d.ts +81 -0
  213. package/dist/src/structures/BaseInteraction.d.ts.map +1 -0
  214. package/dist/src/structures/BaseInteraction.js +99 -0
  215. package/dist/src/structures/BaseInteraction.js.map +1 -0
  216. package/dist/src/structures/ButtonInteraction.d.ts +8 -0
  217. package/dist/src/structures/ButtonInteraction.d.ts.map +1 -0
  218. package/dist/src/structures/ButtonInteraction.js +18 -0
  219. package/dist/src/structures/ButtonInteraction.js.map +1 -0
  220. package/dist/src/structures/ChannelSelectMenuInteraction.d.ts +7 -0
  221. package/dist/src/structures/ChannelSelectMenuInteraction.d.ts.map +1 -0
  222. package/dist/src/structures/ChannelSelectMenuInteraction.js +11 -0
  223. package/dist/src/structures/ChannelSelectMenuInteraction.js.map +1 -0
  224. package/dist/src/structures/CommandHandler.d.ts +6 -0
  225. package/dist/src/structures/CommandHandler.d.ts.map +1 -0
  226. package/dist/src/structures/CommandHandler.js +70 -0
  227. package/dist/src/structures/CommandHandler.js.map +1 -0
  228. package/dist/src/structures/CommandInteraction.d.ts +15 -0
  229. package/dist/src/structures/CommandInteraction.d.ts.map +1 -0
  230. package/dist/src/structures/CommandInteraction.js +60 -0
  231. package/dist/src/structures/CommandInteraction.js.map +1 -0
  232. package/dist/src/structures/ComponentHandler.d.ts +6 -0
  233. package/dist/src/structures/ComponentHandler.d.ts.map +1 -0
  234. package/dist/src/structures/ComponentHandler.js +64 -0
  235. package/dist/src/structures/ComponentHandler.js.map +1 -0
  236. package/dist/src/structures/DmChannel.d.ts +18 -0
  237. package/dist/src/structures/DmChannel.d.ts.map +1 -0
  238. package/dist/src/structures/DmChannel.js +24 -0
  239. package/dist/src/structures/DmChannel.js.map +1 -0
  240. package/dist/src/structures/GroupDmChannel.d.ts +67 -0
  241. package/dist/src/structures/GroupDmChannel.d.ts.map +1 -0
  242. package/dist/src/structures/GroupDmChannel.js +109 -0
  243. package/dist/src/structures/GroupDmChannel.js.map +1 -0
  244. package/dist/src/structures/Guild.d.ts +71 -0
  245. package/dist/src/structures/Guild.d.ts.map +1 -0
  246. package/dist/src/structures/Guild.js +123 -0
  247. package/dist/src/structures/Guild.js.map +1 -0
  248. package/dist/src/structures/GuildAnnouncementChannel.d.ts +12 -0
  249. package/dist/src/structures/GuildAnnouncementChannel.d.ts.map +1 -0
  250. package/dist/src/structures/GuildAnnouncementChannel.js +17 -0
  251. package/dist/src/structures/GuildAnnouncementChannel.js.map +1 -0
  252. package/dist/src/structures/GuildCategoryChannel.d.ts +13 -0
  253. package/dist/src/structures/GuildCategoryChannel.d.ts.map +1 -0
  254. package/dist/src/structures/GuildCategoryChannel.js +14 -0
  255. package/dist/src/structures/GuildCategoryChannel.js.map +1 -0
  256. package/dist/src/structures/GuildForumChannel.d.ts +13 -0
  257. package/dist/src/structures/GuildForumChannel.d.ts.map +1 -0
  258. package/dist/src/structures/GuildForumChannel.js +14 -0
  259. package/dist/src/structures/GuildForumChannel.js.map +1 -0
  260. package/dist/src/structures/GuildMediaChannel.d.ts +13 -0
  261. package/dist/src/structures/GuildMediaChannel.d.ts.map +1 -0
  262. package/dist/src/structures/GuildMediaChannel.js +12 -0
  263. package/dist/src/structures/GuildMediaChannel.js.map +1 -0
  264. package/dist/src/structures/GuildStageOrVoiceChannel.d.ts +30 -0
  265. package/dist/src/structures/GuildStageOrVoiceChannel.d.ts.map +1 -0
  266. package/dist/src/structures/GuildStageOrVoiceChannel.js +34 -0
  267. package/dist/src/structures/GuildStageOrVoiceChannel.js.map +1 -0
  268. package/dist/src/structures/GuildTextChannel.d.ts +15 -0
  269. package/dist/src/structures/GuildTextChannel.d.ts.map +1 -0
  270. package/dist/src/structures/GuildTextChannel.js +18 -0
  271. package/dist/src/structures/GuildTextChannel.js.map +1 -0
  272. package/dist/src/structures/GuildThreadChannel.d.ts +89 -0
  273. package/dist/src/structures/GuildThreadChannel.d.ts.map +1 -0
  274. package/dist/src/structures/GuildThreadChannel.js +134 -0
  275. package/dist/src/structures/GuildThreadChannel.js.map +1 -0
  276. package/dist/src/structures/MentionableSelectMenuInteraction.d.ts +8 -0
  277. package/dist/src/structures/MentionableSelectMenuInteraction.d.ts.map +1 -0
  278. package/dist/src/structures/MentionableSelectMenuInteraction.js +15 -0
  279. package/dist/src/structures/MentionableSelectMenuInteraction.js.map +1 -0
  280. package/dist/src/structures/Message.d.ts +52 -0
  281. package/dist/src/structures/Message.d.ts.map +1 -0
  282. package/dist/src/structures/Message.js +93 -0
  283. package/dist/src/structures/Message.js.map +1 -0
  284. package/dist/src/structures/Role.d.ts +106 -0
  285. package/dist/src/structures/Role.d.ts.map +1 -0
  286. package/dist/src/structures/Role.js +181 -0
  287. package/dist/src/structures/Role.js.map +1 -0
  288. package/dist/src/structures/RoleSelectMenuInteraction.d.ts +8 -0
  289. package/dist/src/structures/RoleSelectMenuInteraction.d.ts.map +1 -0
  290. package/dist/src/structures/RoleSelectMenuInteraction.js +14 -0
  291. package/dist/src/structures/RoleSelectMenuInteraction.js.map +1 -0
  292. package/dist/src/structures/StringSelectMenuInteraction.d.ts +8 -0
  293. package/dist/src/structures/StringSelectMenuInteraction.d.ts.map +1 -0
  294. package/dist/src/structures/StringSelectMenuInteraction.js +14 -0
  295. package/dist/src/structures/StringSelectMenuInteraction.js.map +1 -0
  296. package/dist/src/structures/User.d.ts +80 -0
  297. package/dist/src/structures/User.d.ts.map +1 -0
  298. package/dist/src/structures/User.js +133 -0
  299. package/dist/src/structures/User.js.map +1 -0
  300. package/dist/src/structures/UserSelectMenuInteraction.d.ts +8 -0
  301. package/dist/src/structures/UserSelectMenuInteraction.d.ts.map +1 -0
  302. package/dist/src/structures/UserSelectMenuInteraction.js +14 -0
  303. package/dist/src/structures/UserSelectMenuInteraction.js.map +1 -0
  304. package/dist/src/types.d.ts +31 -0
  305. package/dist/src/types.d.ts.map +1 -0
  306. package/dist/src/types.js +33 -0
  307. package/dist/src/types.js.map +1 -0
  308. package/dist/src/utils.d.ts +2 -0
  309. package/dist/src/utils.d.ts.map +1 -0
  310. package/dist/src/utils.js +11 -0
  311. package/dist/src/utils.js.map +1 -0
  312. package/dist/tsconfig.tsbuildinfo +1 -0
  313. package/docs/classes/AnySelectMenu.mdx +114 -0
  314. package/docs/classes/AnySelectMenuInteraction.mdx +161 -0
  315. package/docs/classes/AutocompleteInteraction.mdx +152 -0
  316. package/docs/classes/AutocompleteOptionsHandler.mdx +243 -0
  317. package/docs/classes/BaseChannel.mdx +97 -0
  318. package/docs/classes/BaseCommand.mdx +61 -0
  319. package/docs/classes/BaseComponent.mdx +55 -0
  320. package/docs/classes/BaseComponentInteraction.mdx +146 -0
  321. package/docs/classes/BaseGuildChannel.mdx +262 -0
  322. package/docs/classes/BaseGuildTextChannel.mdx +360 -0
  323. package/docs/classes/BaseInteraction.mdx +127 -0
  324. package/docs/classes/Button.mdx +99 -0
  325. package/docs/classes/ButtonInteraction.mdx +141 -0
  326. package/docs/classes/ChannelSelectMenu.mdx +122 -0
  327. package/docs/classes/ChannelSelectMenuInteraction.mdx +157 -0
  328. package/docs/classes/Client.mdx +48 -0
  329. package/docs/classes/Command.mdx +111 -0
  330. package/docs/classes/CommandHandler.mdx +65 -0
  331. package/docs/classes/CommandInteraction.mdx +141 -0
  332. package/docs/classes/CommandWithSubcommandGroups.mdx +73 -0
  333. package/docs/classes/CommandWithSubcommands.mdx +76 -0
  334. package/docs/classes/ComponentHandler.mdx +49 -0
  335. package/docs/classes/DmChannel.mdx +118 -0
  336. package/docs/classes/GroupDmChannel.mdx +197 -0
  337. package/docs/classes/Guild.mdx +139 -0
  338. package/docs/classes/GuildAnnouncementChannel.mdx +377 -0
  339. package/docs/classes/GuildCategoryChannel.mdx +272 -0
  340. package/docs/classes/GuildForumChannel.mdx +333 -0
  341. package/docs/classes/GuildMediaChannel.mdx +327 -0
  342. package/docs/classes/GuildStageChannel.mdx +276 -0
  343. package/docs/classes/GuildStageOrVoiceChannel.mdx +292 -0
  344. package/docs/classes/GuildTextChannel.mdx +367 -0
  345. package/docs/classes/GuildThreadChannel.mdx +425 -0
  346. package/docs/classes/GuildThreadOnlyChannel.mdx +333 -0
  347. package/docs/classes/GuildVoiceChannel.mdx +276 -0
  348. package/docs/classes/LinkButton.mdx +84 -0
  349. package/docs/classes/MentionableSelectMenu.mdx +120 -0
  350. package/docs/classes/MentionableSelectMenuInteraction.mdx +157 -0
  351. package/docs/classes/Message.mdx +126 -0
  352. package/docs/classes/OptionsHandler.mdx +203 -0
  353. package/docs/classes/PremiumButton.mdx +84 -0
  354. package/docs/classes/Role.mdx +228 -0
  355. package/docs/classes/RoleSelectMenu.mdx +120 -0
  356. package/docs/classes/RoleSelectMenuInteraction.mdx +157 -0
  357. package/docs/classes/Row.mdx +88 -0
  358. package/docs/classes/StringSelectMenu.mdx +120 -0
  359. package/docs/classes/StringSelectMenuInteraction.mdx +157 -0
  360. package/docs/classes/User.mdx +119 -0
  361. package/docs/classes/UserSelectMenu.mdx +120 -0
  362. package/docs/classes/UserSelectMenuInteraction.mdx +157 -0
  363. package/docs/enumerations/ClientMode.mdx +16 -0
  364. package/docs/functions/channelFactory.mdx +16 -0
  365. package/docs/index.mdx +83 -0
  366. package/docs/type-aliases/AnySelectMenuComponentType.mdx +5 -0
  367. package/docs/type-aliases/ClientOptions.mdx +20 -0
  368. package/docs/type-aliases/CommandOptions.mdx +5 -0
  369. package/docs/type-aliases/ComponentAdditionalData.mdx +9 -0
  370. package/docs/type-aliases/InteractionFileData.mdx +15 -0
  371. package/docs/type-aliases/InteractionReplyData.mdx +14 -0
  372. package/docs/type-aliases/InteractionReplyOptions.mdx +13 -0
  373. package/docs/type-aliases/RawOptions.mdx +9 -0
  374. package/docs/type-aliases/meta.json +3 -0
  375. package/package.json +18 -0
  376. package/src/README.md +7 -0
  377. package/src/abstracts/AnySelectMenu.ts +63 -0
  378. package/src/abstracts/AnySelectMenuInteraction.ts +29 -0
  379. package/src/abstracts/Base.ts +12 -0
  380. package/src/abstracts/BaseChannel.ts +73 -0
  381. package/src/abstracts/BaseCommand.ts +95 -0
  382. package/src/abstracts/BaseComponent.ts +49 -0
  383. package/src/abstracts/BaseComponentInteraction.ts +19 -0
  384. package/src/abstracts/BaseGuildChannel.ts +152 -0
  385. package/src/abstracts/BaseGuildTextChannel.ts +77 -0
  386. package/src/abstracts/BaseInteraction.ts +170 -0
  387. package/src/abstracts/GuildThreadOnlyChannel.ts +71 -0
  388. package/src/classes/Button.ts +95 -0
  389. package/src/classes/ChannelSelectMenu.ts +21 -0
  390. package/src/classes/Client.ts +249 -0
  391. package/src/classes/Command.ts +51 -0
  392. package/src/classes/CommandWithSubcommandGroups.ts +47 -0
  393. package/src/classes/CommandWithSubcommands.ts +35 -0
  394. package/src/classes/MentionableSelectMenu.ts +19 -0
  395. package/src/classes/RoleSelectMenu.ts +19 -0
  396. package/src/classes/Row.ts +44 -0
  397. package/src/classes/StringSelectMenu.ts +19 -0
  398. package/src/classes/UserSelectMenu.ts +19 -0
  399. package/src/factories/channelFactory.ts +43 -0
  400. package/src/index.ts +59 -0
  401. package/src/internals/AutocompleteInteraction.ts +107 -0
  402. package/src/internals/ButtonInteraction.ts +26 -0
  403. package/src/internals/ChannelSelectMenuInteraction.ts +15 -0
  404. package/src/internals/CommandHandler.ts +123 -0
  405. package/src/internals/CommandInteraction.ts +49 -0
  406. package/src/internals/ComponentHandler.ts +81 -0
  407. package/src/internals/MentionableSelectMenuInteraction.ts +21 -0
  408. package/src/internals/OptionsHandler.ts +147 -0
  409. package/src/internals/RoleSelectMenuInteraction.ts +20 -0
  410. package/src/internals/StringSelectMenuInteraction.ts +20 -0
  411. package/src/internals/UserSelectMenuInteraction.ts +20 -0
  412. package/src/structures/DmChannel.ts +31 -0
  413. package/src/structures/GroupDmChannel.ts +132 -0
  414. package/src/structures/Guild.ts +142 -0
  415. package/src/structures/GuildAnnouncementChannel.ts +20 -0
  416. package/src/structures/GuildCategoryChannel.ts +16 -0
  417. package/src/structures/GuildForumChannel.ts +20 -0
  418. package/src/structures/GuildMediaChannel.ts +13 -0
  419. package/src/structures/GuildStageOrVoiceChannel.ts +46 -0
  420. package/src/structures/GuildTextChannel.ts +21 -0
  421. package/src/structures/GuildThreadChannel.ts +150 -0
  422. package/src/structures/Message.ts +124 -0
  423. package/src/structures/Role.ts +201 -0
  424. package/src/structures/User.ts +153 -0
  425. package/src/utils.ts +13 -0
  426. package/tests/index.test.ts +4 -0
  427. package/tsconfig.json +12 -0
  428. package/typedoc.json +9 -0
@@ -0,0 +1,33 @@
1
+ /**
2
+ * https://discord.com/developers/docs/resources/application#application-object-application-integration-types
3
+ */
4
+ export var ApplicationIntegrationType;
5
+ (function (ApplicationIntegrationType) {
6
+ /**
7
+ * App is installable to servers
8
+ */
9
+ ApplicationIntegrationType[ApplicationIntegrationType["GuildInstall"] = 0] = "GuildInstall";
10
+ /**
11
+ * App is installable to users
12
+ */
13
+ ApplicationIntegrationType[ApplicationIntegrationType["UserInstall"] = 1] = "UserInstall";
14
+ })(ApplicationIntegrationType || (ApplicationIntegrationType = {}));
15
+ /**
16
+ * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object-interaction-context-types
17
+ */
18
+ export var InteractionContextType;
19
+ (function (InteractionContextType) {
20
+ /**
21
+ * Interaction can be used within servers
22
+ */
23
+ InteractionContextType[InteractionContextType["Guild"] = 0] = "Guild";
24
+ /**
25
+ * Interaction can be used within DMs with the app's bot user
26
+ */
27
+ InteractionContextType[InteractionContextType["BotDM"] = 1] = "BotDM";
28
+ /**
29
+ * Interaction can be used within Group DMs and DMs other than the app's bot user
30
+ */
31
+ InteractionContextType[InteractionContextType["PrivateChannel"] = 2] = "PrivateChannel";
32
+ })(InteractionContextType || (InteractionContextType = {}));
33
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAN,IAAY,0BASX;AATD,WAAY,0BAA0B;IACrC;;OAEG;IACH,2FAAgB,CAAA;IAChB;;OAEG;IACH,yFAAe,CAAA;AAChB,CAAC,EATW,0BAA0B,KAA1B,0BAA0B,QASrC;AAED;;GAEG;AACH,MAAM,CAAN,IAAY,sBAaX;AAbD,WAAY,sBAAsB;IACjC;;OAEG;IACH,qEAAS,CAAA;IACT;;OAEG;IACH,qEAAS,CAAA;IACT;;OAEG;IACH,uFAAkB,CAAA;AACnB,CAAC,EAbW,sBAAsB,KAAtB,sBAAsB,QAajC"}
@@ -0,0 +1,2 @@
1
+ export declare const splitCustomId: (customId: string) => [string, Record<string, string>];
2
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,aACf,MAAM,KACd,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAUjC,CAAA"}
@@ -0,0 +1,11 @@
1
+ export const splitCustomId = (customId) => {
2
+ const [id, ...args] = customId.split(":");
3
+ if (!id)
4
+ throw new Error("Invalid custom ID was provided");
5
+ const data = Object.fromEntries(args.map((arg) => {
6
+ const [key, value] = arg.split("=");
7
+ return [key, value];
8
+ }));
9
+ return [id, data];
10
+ };
11
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,CAC5B,QAAgB,EACmB,EAAE;IACrC,MAAM,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;IACzC,IAAI,CAAC,EAAE;QAAE,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAA;IAC1D,MAAM,IAAI,GAAG,MAAM,CAAC,WAAW,CAC9B,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QAChB,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;QACnC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;IACpB,CAAC,CAAC,CACF,CAAA;IACD,OAAO,CAAC,EAAE,EAAE,IAAI,CAAC,CAAA;AAClB,CAAC,CAAA"}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/globals.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/common.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/common.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/permissions.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/user.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/emoji.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/oauth2.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/sticker.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/guild.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/automoderation.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/guildscheduledevent.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/stageinstance.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/webhook.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/auditlog.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/invite.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/poll.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/teams.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/utils/internals.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/application.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/auditlog.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/automoderation.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/poll.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/channel.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/emoji.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/gateway.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/guild.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/guildscheduledevent.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/webhook.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/interactions.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/invite.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/oauth2.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/stageinstance.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/sticker.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/template.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/user.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/voice.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/monetization.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rest/v10/index.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/template.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/voice.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/monetization.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/index.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/responses.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/base.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/shared.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/base.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/attachment.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/boolean.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/channel.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/integer.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/mentionable.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/number.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/role.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/string.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/subcommand.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/subcommandgroup.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/user.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/internals.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/chatinput.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/contextmenu.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/permissions.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/applicationcommands.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/autocomplete.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/messagecomponents.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/modalsubmit.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/_interactions/ping.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/interactions.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/application.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/channel.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/payloads/v10/gateway.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/gateway/common.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/gateway/v10.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rpc/common.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/rpc/v10.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/utils/v10.d.ts","../../../node_modules/.pnpm/discord-api-types@0.37.98/node_modules/discord-api-types/v10.d.ts","../../request/dist/src/requestclient.d.ts","../../request/dist/src/errors/baseerror.d.ts","../../request/dist/src/errorsmapper.d.ts","../../request/dist/src/errors/discorderror.d.ts","../../request/dist/src/errors/ratelimiterror.d.ts","../../request/dist/src/index.d.ts","../../../node_modules/.pnpm/discord-verify@1.2.0/node_modules/discord-verify/dist/verify-60241dbf.d.ts","../../../node_modules/.pnpm/discord-verify@1.2.0/node_modules/discord-verify/dist/web.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/generictraps.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/irequeststrict.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/irequest.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/requesthandler.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/responsehandler.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/statuserror.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/errorhandler.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/routeentry.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/ittyrouteroptions.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/routeroptions.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/autorouteroptions.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/requestlike.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/route.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/customroutes.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/ittyroutertype.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/routertype.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/autoroutertype.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/hascontent.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/responseformatter.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types/errorformatter.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/types.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/ittyrouter.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/router.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/autorouter.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/createresponse.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/error.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/status.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/text.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/json.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/html.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/jpeg.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/png.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/webp.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/withcontent.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/withcookies.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/withparams.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/cors.d.ts","../../../node_modules/.pnpm/itty-router@5.0.18/node_modules/itty-router/index.d.ts","../src/abstracts/basecomponent.ts","../src/abstracts/basecommand.ts","../src/abstracts/base.ts","../src/classes/row.ts","../src/abstracts/basechannel.ts","../src/structures/dmchannel.ts","../src/structures/role.ts","../src/structures/guild.ts","../src/structures/guildcategorychannel.ts","../src/abstracts/baseguildchannel.ts","../src/structures/guildthreadchannel.ts","../src/structures/user.ts","../src/structures/message.ts","../src/structures/groupdmchannel.ts","../src/abstracts/baseguildtextchannel.ts","../src/structures/guildtextchannel.ts","../src/structures/guildannouncementchannel.ts","../src/abstracts/guildthreadonlychannel.ts","../src/structures/guildforumchannel.ts","../src/structures/guildmediachannel.ts","../src/structures/guildstageorvoicechannel.ts","../src/factories/channelfactory.ts","../src/abstracts/baseinteraction.ts","../src/internals/optionshandler.ts","../src/internals/commandinteraction.ts","../src/internals/autocompleteinteraction.ts","../src/classes/command.ts","../src/classes/commandwithsubcommands.ts","../src/classes/commandwithsubcommandgroups.ts","../src/internals/commandhandler.ts","../src/utils.ts","../src/abstracts/basecomponentinteraction.ts","../src/internals/buttoninteraction.ts","../src/classes/button.ts","../src/internals/channelselectmenuinteraction.ts","../src/classes/channelselectmenu.ts","../src/internals/mentionableselectmenuinteraction.ts","../src/classes/mentionableselectmenu.ts","../src/internals/roleselectmenuinteraction.ts","../src/classes/roleselectmenu.ts","../src/internals/stringselectmenuinteraction.ts","../src/classes/stringselectmenu.ts","../src/internals/userselectmenuinteraction.ts","../src/classes/userselectmenu.ts","../src/internals/componenthandler.ts","../src/classes/client.ts","../src/abstracts/anyselectmenuinteraction.ts","../src/abstracts/anyselectmenu.ts","../src/index.ts","../package.json"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5557e20f64bcf823a12d8fc205dbc948f79300dcd5c58e9c2c41477cfb47046","impliedFormat":1},{"version":"304b58bef244ef9da06b3777601bffeb87f1f341909e12480171ddb410d878a0","impliedFormat":1},{"version":"4f8aef0d15d482d64d6a2a80f7a4c9709c5e26bfb3e466cf214b6db39bb85cf7","impliedFormat":1},{"version":"005e759b6411813747f284a6dbd949ebdafafaf1e1ce0de0d65079980d4e4ac6","impliedFormat":1},{"version":"c641347e18ec51a12240c3aa897c58bd4a872909bfdf424476dcdcaa9aea98e6","impliedFormat":1},{"version":"d0863f81c9f2c13fca21445a0ae679e6f51b57283719f30c64d85a5d08a02a0c","impliedFormat":1},{"version":"7dcfa67ddc7767293a28ffad01f6af160b0f63c16637310bed5ab4989c5871cd","impliedFormat":1},{"version":"a2bcc4ce3027fff027f577650165392e58b6b8910a6d4f6481abb3ba2032ae83","impliedFormat":1},{"version":"b337bb9575dda71489660766c50db66766cb49400b30ce2c98069be0730a231a","impliedFormat":1},{"version":"8db01c67a2bed28f576c37cacf1ff970d318348ba3e8068e58a903feb59b33c3","impliedFormat":1},{"version":"5668327b7ed776687b0a950a6bcb16c3ff3c075d283ca0f534eab42aa0d100f2","impliedFormat":1},{"version":"d05a4958e2c16c7d23cd2d6ce798a47f22ebce0261edaa170e95e9e3f2750359","impliedFormat":1},{"version":"5d310ff3cc8e4a88bc14327b847af9f2fe5cfea07a0d97c6569aba7e6b8bc85f","impliedFormat":1},{"version":"11a5c1dff238520c491e80c3b18f6a8c6b19a67402505d19b6ee6aae57d3324d","impliedFormat":1},{"version":"1e587d16581358b223c464ca38b48eb3aa88e5a3f7c482f899f897b266265b71","impliedFormat":1},{"version":"b8082f1e10bc54e261823d6e6910b71cd5f570cf626bd4d89c6b9c0b20d56c67","impliedFormat":1},{"version":"36dd9c9d9bf84b27500bfc23fed15dbd0b229b8a3a3a8008dd826f77cf2b8d8c","impliedFormat":1},{"version":"63bb04d80bf30daab935e4c801f4d5fa63c0148b31c944af141eb5c65fc74408","impliedFormat":1},{"version":"184bee67f9ad85bd099054be5bd0c0fff9cce40dd3588e0f8c62d3634a796463","impliedFormat":1},{"version":"d53bacf6bea149fd81f4c4812f7b3d28cf104697eb3e370aa6d7c1fd0b254535","impliedFormat":1},{"version":"4ef86f6b4715067fb89f82f5e2c04b7c6629adb80286fe9149b5a4cde1e69bba","impliedFormat":1},{"version":"35e223382bf187611faf8c32f87570da77ecb60a9542420e7cbe445cd1fd69d2","impliedFormat":1},{"version":"2d60f152b06d178ae59deaa131dd069d1fb73bc668628bff6e9d1df9f5611d3d","impliedFormat":1},{"version":"56e16a3c12ffdf6a49c4b2e46914930941676c979a7c754600a584109bc11d1a","impliedFormat":1},{"version":"4236ff71b9fdc1b6441be8b98a8426f8bf5dabf775a72fdf53b459122d128b1c","impliedFormat":1},{"version":"a9d6bfcbf62bf27ef2a7b859d17ac83b2f975bc8ae6d8396861459844ab9d083","impliedFormat":1},{"version":"040ca095069025c0060593eed1ec1d6250d590050f4c1274fd8547293484b9d2","impliedFormat":1},{"version":"735182b4f285f3f933e85b4debd65cc141fc9420dffb5f5e180e8ab19c5161d1","impliedFormat":1},{"version":"e3e2aeadd5ae7a06f807fe7809c047c960326cccd4954dd306d0102565baa666","impliedFormat":1},{"version":"115e358a8ea88f92998a862985bbc766e4145ebd460cda1f3dc28f33567256b7","impliedFormat":1},{"version":"2eeaad1d73bd46770905641e0698945c8d2bfb912a42d87b2a4e6988cdf8bc18","impliedFormat":1},{"version":"016d436b025cb2fb275ce4aee80af5f1c33d5183e38a8251a5f6ff5cde6e22f9","impliedFormat":1},{"version":"6f46a0bcb42f66f3de1297b44b2df992e50b9ae49488314fc44530cdfe9d02b4","impliedFormat":1},{"version":"fe13392d4d214ceba1aea269cc2799f2d14ba553945738a3db25c2608f663a40","impliedFormat":1},{"version":"2659e5199321e4b5a331eccb9607612600efb64c6d42487db66fd4bc415c15c7","impliedFormat":1},{"version":"669d930238a07377577b060a450585e59578be0f1162bea0a6dd3fd6fc6d8c81","impliedFormat":1},{"version":"660ae9a427ae7b151642dc21f57cb5d7e285e778c8b3e2c89d5383238fb5b780","impliedFormat":1},{"version":"a10a593bc60977eab87db99ac70bb6e164b11e9b2c9d36c1f4bd7fa9f668c062","impliedFormat":1},{"version":"98d5d5c53e7ee6b9a1e26d438869e40a35c4b29077e3517733152482ab290ac7","impliedFormat":1},{"version":"98a5dcd82209fed6239ef1600ff689ed0491f5a91fcff002d1afb36134a77381","impliedFormat":1},{"version":"4d0f87ed1cd40e612d64d7f4270b8b8648540a008e60f0efa310d7f2ad40e319","impliedFormat":1},{"version":"756d455c644abecdc5a8b400e9dd00d3561bcb1d0a0d7ec8a62821ba43662a63","impliedFormat":1},{"version":"b21bc957185362251cfef6066c62bfb3cbb2792fbc4cac3beac5786148f4a978","impliedFormat":1},{"version":"acb24795949690693d494f6d15cc82b354cec87e9e14e032aa649f1ef70169d0","impliedFormat":1},{"version":"814db46e524d863ceea59dba38b93e60e0c5555fce08afcfe6b3a86f90ca1dce","impliedFormat":1},{"version":"265a4739974854eb43539419a6c86faab7e161b1133496c62f8bf2725542244d","impliedFormat":1},{"version":"a1accfaac01020c1b866634f7a698fdd48612caccf305e16844665cb7ecac399","impliedFormat":1},{"version":"ec00441ae4838b8d595acfe3b2750750e4335802b06ba1f41fb03453c2c776b5","impliedFormat":1},{"version":"ac1689d264991e5f58deb5a82ee44940f091a709b8ca815b38d5a7cb1305ce9f","impliedFormat":1},{"version":"a6965d48ee610b134de51099ead16d6392545911b1be22a80333cc4ff3be912f","impliedFormat":1},{"version":"c548226db013facd262a4bc1c32c44a13eda7e1181aa6f569f9bdd531c95b0d5","impliedFormat":1},{"version":"208c6a8bd5529257694b07dc1f8ed085c89bd5e18134de61da4e95a1ec896461","impliedFormat":1},{"version":"543f461070fbd4b33bd05a5ba3e472e1297bb1db3c3101092bd69bfdddd3b1a1","impliedFormat":1},{"version":"8aa0740691fc5b898cc04641c3ecc589c297ac27337c3b8ec053f4f4cb11c253","impliedFormat":1},{"version":"32e0cd3a65bd475e955272ba0cc0fbaceac58de169baec25b3bb3f81234f6d4a","impliedFormat":1},{"version":"a73ba7d094b61e88566e3577166f63389a945f209a3ec20c6a151545f0d7544d","impliedFormat":1},{"version":"3745762b83e5d49983a4183821125e3417473f992c4bf1d6dd6cea91efb4166f","impliedFormat":1},{"version":"ade458e350eda79fa74ecb678d9c51cc17f592d56df3e47286ef28e71401a989","impliedFormat":1},{"version":"9a2de03d56206eb28256c21e7c92a33a9a1d6010591cba2c768f25ea27895abd","impliedFormat":1},{"version":"48fc0e6891264b697feea9ac9d6932b980f1b4a4fc1ea5731e5979a00f811d0d","impliedFormat":1},{"version":"e69548fdcfdcda206290a7ace25206167ef66cac83e877e8f1e3bd8a4ed3e649","impliedFormat":1},{"version":"4abe19a40937aca63a6e66204e9bc711da0762e1fd6f412ea720ad60905cc8f7","impliedFormat":1},{"version":"444b53f5769d9b2c284316f1b1fbaed64a75b0ccb6c3953861a9eaa3e38c5ed9","impliedFormat":1},{"version":"49bddd70b375e6ba2b0f6e8dca81608dff0e9496dc28a87b79a622b8d1d4b41f","impliedFormat":1},{"version":"3dd3a106a9b038c53f8e16bdf8ea1b04f2236d576f982e91b59c9d0b22877eb0","impliedFormat":1},{"version":"4359e8ba73374bb7d25c0d4181c4e9f9fd6174569897788596feac600ec69639","impliedFormat":1},{"version":"ba673eb458990de2d6d446c138113053bfa1013319835eb54f0060627a83dab6","impliedFormat":1},{"version":"b1a6c5cf5633cc2d34473c2deceae4dad00553a9cfa88426d9d4f9f1dcb35ee2","impliedFormat":1},{"version":"cccf375ae4fd15e300f35e4573ffb5f4ab8df49c1e667d0afc4a32ad7ca27a61","impliedFormat":1},{"version":"e291f1af6e280e00d93a5eacd864badf8d0b2d3123766585355dbb35b4d9eaa7","impliedFormat":1},{"version":"90a10667ea89295bf4d0e696cd9d472773dfa1a09abc826de69bd656f659430b","impliedFormat":1},{"version":"4d86ee040a04d362868ab3e460d27f2044bb7060b7146e78daef17bbc349f6af","impliedFormat":1},{"version":"39a1119b0bc182c5ddbc82f945e18e944c898c95628d3294662c207d28b018ca","impliedFormat":1},{"version":"ea6af8604356c23c42ac3ac436f6b0d8300142e0f64573f8c3f67f259b8786cb","impliedFormat":1},{"version":"4d520fef6ce674f1cc21c5cd524e02d9ad45cd59051090b5d9a4986a36d41d2c","impliedFormat":1},{"version":"c2b976310a797531e7b098d4c615d36e68cf849f904bce95a40e1fc1f1e2fdb1","impliedFormat":1},{"version":"9f2d78bc449755429417e18feb36e1e8112e8f6016c1358782c7142c3ba8bede","impliedFormat":99},{"version":"bbcc02f7ed97f2a356a9bdcc970504d5902eaa8e6f72244019b4e8d7b5d21e78","impliedFormat":99},{"version":"d0f69f71bf165d02bcaf042a299d2b0fbb6d854fdfb3bdb601b0fcd566600c2c","impliedFormat":99},{"version":"7c895f7ea8f17e7851b9eb2d27541ff5655c087543abe2fa84ca958c88faa3ef","impliedFormat":99},{"version":"03c5c8bed4a2af599b0c8c8d6efcbd2ece6fb469e7a5f0a029546d85739fb399","impliedFormat":99},{"version":"e5efbe5491e4aaac2f64be33b291e5662279ffc20e843a7039e42dcb93886cb7","impliedFormat":99},{"version":"d9d3f08d6f958f13ac5b56ee85740448e69b3b33132a2d1821710e756ae7b108","impliedFormat":1},{"version":"6c9ab34744a187ed00cdf52e02fb28c13094db771fb26e8ba4ec79dcd45ed297","impliedFormat":1},{"version":"2fa815801f60492dc208ae5a1a7686444c994b8ca69730fb28d6a9518d5a4f6a","impliedFormat":1},{"version":"692c1b2c485d704adb0c83d177b47b6a42819213a290ba29eef20d30618299a7","impliedFormat":1},{"version":"1721e2201cea4b5dbf6dac309cc69fd2f614b307dc1c14410ec767994ed21fdb","impliedFormat":1},{"version":"4e1daedc1f62464466ac75e55c5b421972e3809afea141feb3203fc507f12a88","impliedFormat":1},{"version":"45c7f4e9b61220de97870fd2aab3f92719036a95e41ba25146eab01439f10238","impliedFormat":1},{"version":"759de029385290f2d15e60773304c076f33338b425226f5760c1752bd42b0125","impliedFormat":1},{"version":"a1781629d1d63aeec42a8b3398bcc67351432af9f5143f750836b5998704ece6","impliedFormat":1},{"version":"06404bc189d2a846cfac452c3610b25a02642fd8b2edbc9a71ef3f6e8eee5c14","impliedFormat":1},{"version":"f0bad61fbef8629ce64ddd9616462d818525a3f4b81116e2b61e09ec96271619","impliedFormat":1},{"version":"c04bf223488527f25852df7f4cfa24a8d3878b7fe07e5835bd184277303c1b6f","impliedFormat":1},{"version":"d7180631023a1b3989a9d1826d4a16dcf9798384840271bec2491399b1d30c80","impliedFormat":1},{"version":"04be6a0196f38ca59e767fb4cdaf7bf1393881d8448952b5600ce430cafc8e9d","impliedFormat":1},{"version":"a0a5d968262cf5fb7f6678191f3ecf267f7a80180092ca25d3a6c54544ce81d7","impliedFormat":1},{"version":"ae55be65c38f2323c85f596cca46c92707c18b63fd6c8e532be2e7303bb045fc","impliedFormat":1},{"version":"9128814e5c845c8d2abc3b8472d303e0abe8192736a648343396172a1704265f","impliedFormat":1},{"version":"3c8b271d78e063f892b835607f5ba54494dd1fdf535e780176323b76a80efc7d","impliedFormat":1},{"version":"5d200d18271a0c4d14603e3021b52da6f3ad965ee211b7011beed0f2796d1c02","impliedFormat":1},{"version":"a900d222f7ddb0a8900255b10fc5820787003da4e2d9208099b05d6fc55cc238","impliedFormat":1},{"version":"0852f04bd1a6c5954067d8139941401f526c8bcec3ecad704258cf921eb42231","impliedFormat":1},{"version":"20741f6385605d42168af45886e645b4c9a4aed1af6d14c823ed2c4a89bdc95a","impliedFormat":1},{"version":"a02ca1076870ad2be7bb635ab071381927a361b755924865d8c3472db6fe6adf","impliedFormat":1},{"version":"115dbe356c88c0ffecd0c9fe2000e31f3854e42f90523a49c9d01ce0172a6758","impliedFormat":1},{"version":"963378fb42ef6e128e080651d1b47481e4cdd17abda570df15a1b92088872371","impliedFormat":1},{"version":"c9300a07d666e4807ef317e0efc33e2401f99d945de2f5709259afc23ab201ba","impliedFormat":1},{"version":"e381faf70200edb117fb07a8fcb2c8fca3d40d9136ffb564c99a0424550d0715","impliedFormat":1},{"version":"adf253c6455881845cd90839ab33b6cd09f1b28506d03876882c4d45a85f5dcd","impliedFormat":1},{"version":"362ba04c450083a8ee89223438417c752204cf17a4ad96c42c200c18f6d22bb1","impliedFormat":1},{"version":"5a4bae76f916007ec7143658c3c8dde0f7a8107b56cc16f6bd45e80ac940c630","impliedFormat":1},{"version":"115d9761936fd5045b973ba4cc23da5911c0a92197c6cc899783436de04af562","impliedFormat":1},{"version":"7d2e135aa1bf26cf9cd20b3d022a732fa7acf858617a0dd5296d0d92cef322d5","impliedFormat":1},{"version":"4e0721f3592a8f919527180648ccd0890c3ad1b278501fee9cbafe426f02d176","impliedFormat":1},{"version":"9ebfb4ab4b4d60508a75b4a9e554c9135d66863b44df8bb68ee36d07c67c663a","impliedFormat":1},{"version":"da544780444d32384435981da79d7fae0f45c886eb1faa8a231bf1dbb4080bd4","impliedFormat":1},{"version":"040b95569f59788bf166eaf58552607a141541823d4f0af5b02fb33fe7596f90","impliedFormat":1},{"version":"1b36305e15f9379afa8eb53bb69fa6b2beac69ae4b63add9cc3f02547c8c8776","impliedFormat":1},{"version":"be8057327415ec85ff96cb6961a4ed5fc01734883f6da59647d9cd00bf8c8e4d","impliedFormat":1},{"version":"1273da24213a4df2c7a7b993590a301686762dd3b0011dc21195c6a913cc5d6e","impliedFormat":1},{"version":"3abba77fb7da52a9dae6a3b3decfe0d12533c3cafd079c138d8a32736cca9f01","impliedFormat":1},{"version":"31dfedd6e14b452c0800a60a1b4d7b40dc854536477fa01c52b9cb96a15277c2","signature":"448b0ec8b1345b7bcade4bcb3127ea9371f523dc2cf65db963425a727d458935","impliedFormat":99},{"version":"2e08c5b8b9efabccbbb058f622eb6d242b5aec136be82de4795a1fa9255b521c","signature":"1a8b5a3d31dcc1ffd7122f9726e0ff162eddc856a918b6e92e63cdf2b3f0dcdc","impliedFormat":99},{"version":"8bbb2c8e2453b06a5e9c569b5c3a3c7f9a0dc065622440578be91007e3843b40","signature":"9cb1f3160b49bda51d69ba879f951f7960620599f16c5c45f102e6cc54a13e21","impliedFormat":99},{"version":"22769a717200723c28e9ea0ca0cb33a986e04cfcd39cd588dc31b5bfaa0e698b","signature":"2cadd821a2b745b2b7b0e53f87fbebb3df1b101e81eaf485d84d431aa418f138","impliedFormat":99},{"version":"e255050d288a32c4e9ba426e5ea7e2b34956499bfc9f0ea14f3e4d83332824c3","signature":"3c0d5a8ec9756abd98311c62428dcd4a131b80241f3204ae54ba75dcf4036053","impliedFormat":99},{"version":"574a3023adc4cf42b46db6a016c360b8e678da3e0a0ae4af8397e0d3b99a8104","signature":"ee2360369be241260fbcd4e4860e54e6e5fd319d1e811c77e30e1f1983acb7a0","impliedFormat":99},{"version":"d70d082ee9d9d3086a8686506d59025f6d6aefcedd76b5fbb868c5f91a43f273","signature":"b787fa822e7a220ab1983d4cc8e6ab1bd143e0ba96d2140e1a2bfba196a740e9","impliedFormat":99},{"version":"ecc83e5fbfd5c55b6114913f66a42a2ebe8ed0e3694bf741a3ddfee0e0a7d8a9","signature":"5d4cdd8c160a82174ee904a5ff5e69783646b25a36c2699a0aa69be07312a029","impliedFormat":99},{"version":"402ca13c04f2e01daedf998df53d42eb121d6747251adfb1c7d96dadd43c6c12","signature":"34d6af6e0958b7649c0b02049c2460b59760dc0f32388b21cb22db01e860684e","impliedFormat":99},{"version":"552e129682aebe494fbe32619391b043b0b638fadb4c62cb8fca32e291ca2016","signature":"8a5f2215073cd4e14fc7be0d10e154dac25f76de6cb9082e1df9ab06ffa11dfe","impliedFormat":99},{"version":"3201f8199ee790aec5e1ed9bebdf57f6ad0e0196128da546aa2098ead17c3f76","signature":"7b7c2e69b91d1b5a175e861d15b2e5a6c71b19f15586badef107f6cfded5fa2d","impliedFormat":99},{"version":"1028542536716f1776e48105b52aec949675677a31c5acc03abbd42aaef013bf","signature":"b729ad5f8502ead2407dace63ddeeab3ab34c5d0e31c1356ae53eebd048f3496","impliedFormat":99},{"version":"fd24af022220100246264142274faff8798087841b1f337752356948578ac64b","signature":"47d5f22f468c12c5f20092c058d5ec61db0ebbaba940a5c8d76e558fc53560dc","impliedFormat":99},{"version":"f5dbd49b663164edc70524e7bba68819e37c60cddd07113ed73a93eea1e5dd7c","signature":"1184d504f88b506384f7d1f2dd1a9f631980e5b13fd192142ce411dd2d858ab9","impliedFormat":99},{"version":"64a80db87a38915fc6995aa502efa6f0779989c37c5ec42d5767a0f7702f5efe","signature":"dc86d049b7f78fd9c475a8a24acfb649285671319e99be688ddcb002195bb067","impliedFormat":99},{"version":"ae1213dedba25fb76ad6acf9e019af9eb2b1e6544a3855db8f9c299f19f288cb","signature":"0531cacc25583ef40d8f0921b21219f9c209a6b10fb306876db0cd2be9c7e238","impliedFormat":99},{"version":"b826afdc55fe26ed11ce57c405fc6d7b6ded6f15e45cac6c731f1d038cb7ebe3","signature":"7870b9119675a28dd127128d0aacd8a8e18b02319990c9fdffe2f28fbc9b9f67","impliedFormat":99},{"version":"8a096a34f887a20d02f638e23d1687938f8af7b47d6ab65f2307a3ba748ee966","signature":"0edc4246a548aed641c33a5cc66871917b9908c9a077f2738d74ba99b544b177","impliedFormat":99},{"version":"9bc9702785066fa9b2431ae67d55274cee2f703728b5db1bad21ab01b8003166","signature":"95d9fb68cfab3a8ad492b016b822fa60749df54bed19f6f26721a813056a92dd","impliedFormat":99},{"version":"35585982e3120829ace65e70f2d7a79c2357610aee1c86b044a037069021ba92","signature":"e0e755b5dc2ec9cc82062a311065fe3c3e08460dbcb013df4d99d4e29702a0b0","impliedFormat":99},{"version":"c55c02b8a8b4c0b92ef0bd10d80ee95f154fadc0c5304583715e99c6fc6839b3","signature":"35b85aa8f9d9a57ace8d9c90384b7f48018fe889ff489d6ca4fb1bfa56e7cefa","impliedFormat":99},{"version":"40b45517d4d19a4ff0ecf284827670288027118d9e540cb9e1959c9579497cda","signature":"be9688e70ec58f6968013f222564a7e2ee61e293237429ba3410e5f0a4abf8f4","impliedFormat":99},{"version":"759e59e9c5fe58b04532a0cfffe578b80639f4fddfb764bef209c96ba674d41b","signature":"c85143ba3398784daf6e9c404bb2d7fa597efc5bca4385cf1b7cdc75ad38d9da","impliedFormat":99},{"version":"6b53c79366f8b4a799e53569eba2bd43b78a1228b636a046bad2bcb07e115cfa","signature":"d11b12edca40b8d434dd6118214fac7f4a307a03cca109f5606085b3cb0299eb","impliedFormat":99},{"version":"c67bd0df1818aabb15cb707800d11b10860a26ef79ab7c70f15b5567d6c94648","signature":"90057f98abc02ca6e92d501b66c981c6411d275054d04d5f4c21becf831d5641","impliedFormat":99},{"version":"eeec811831b11ff08c44104392cb6553e857e1dea9bfee9a942dd3c28272eaa4","signature":"c1e270beeaf605d5d6528d60cc769256b6c8c5b08a6aa509eb61f4207868b268","impliedFormat":99},{"version":"bbb54772becd319f411779eecc32b5ee6eb73dac8ba69fa0db7795cda360997a","signature":"5ab7f5e0559fbecdfc3d8e360fd6303d6d8478b3fbbae7acb54ab69fceb903c9","impliedFormat":99},{"version":"bf450f03d45c3b03eae5a9752e338a0b4b5ab9eae5d4d9aa51e55b8cfa8ada44","signature":"c2e1386e6fbda3054c0d9a439272cb2db6e023e234a38c32d35000d68f95871e","impliedFormat":99},{"version":"274e1d333fb64405ce6d6037620742d555ecbd55f4b3903904873d513e5a7d63","signature":"75a9ab94125d9d3cd8527f076e1ade98635cb7d389b20a982f651c2250d0ae0f","impliedFormat":99},{"version":"4f56fbfca0f5564f2fe1dde0ebd8ee1b89b2875c7161e8715ba2b32e0e43b9df","signature":"d6f481bff9ee6da03ed99f10a43ea0b39d378227524801eb8f270de68a75c9d6","impliedFormat":99},{"version":"b7b58eec7879dc17639aadd2c770c311c82abbdcef91538e72b8f9d93d5a63be","signature":"b0247000ed84e2b50ac48d228c65f3d7409548e01742c942b4de49170f1d486c","impliedFormat":99},{"version":"6ef902b634f20ee84c12c93962a2a09e96ecbb697ef63963be4d9cd1f3e31929","signature":"26ecfd5de800aabb40dba07949883b431d0f2adab12c0afbcb4effac4cdc722e","impliedFormat":99},{"version":"2d075eaeec60969480c16d72882d8a5596eaf45a7c07dbb9566c5a23540d5857","signature":"ae52ee2de9d427c8e0675ab5bd4502aefe2b64f83cfbcc299c267c3df4a9bd0d","impliedFormat":99},{"version":"4ea32abd76572ba0c4f6ebd5c262ec11ecd624b7d152b71b8abfa6b54279d410","signature":"1b5863e82b891f410a265799bf53c233047f149b33aff5311bbcbd4430d07a09","impliedFormat":99},{"version":"1ecf3f14ee0c83363118bce04083acd86e9a904bda96cd55975fadce5aa8ec2c","signature":"25c75bc00b4a1f1e8d4b36433b535a117446b0a201dc91365e1d86d0b72123f9","impliedFormat":99},{"version":"39de53ea2c6b0b11daacae1fc991190e0a303ed7d8b98d04383617bafe9ba87f","signature":"4df1740409deecaaa1670f0b47736ce12098b224d669e690999c052553dba7db","impliedFormat":99},{"version":"2a105c0b84e80b3d54fb65ad89228b403f92693229f1e9a3c323e58da855934b","signature":"4f455cfc5e99dbf4ac9f8e87d3fc5169285694e2deeeddabc0515ad24b6fff77","impliedFormat":99},{"version":"42700a3e6c0563f5c2c77dd3eb3432480d6ef1a29c4d091ecba68720d2da6c51","signature":"39501852fe56e06647ef82d477651629ddf3eb454bc9fe31a8aeb9360aedd18e","impliedFormat":99},{"version":"18325fbfe2b8bd234c069335e3141872e3d7f56514a1cbef826512aaa84f9fbb","signature":"c7480ee2f7d96d489016aae8d1cf3b995dc625e98243a4aa3cd4e1ad2ade170f","impliedFormat":99},{"version":"a6e147ffca7aa5d159bc31a4163b1900961425c88abc843fa60725c7f8ebe5ad","signature":"374ed229eabaa126f5278fb58e5eb84d84fdaaa058833119d5221e4f69588a5e","impliedFormat":99},{"version":"b84cf18bdd6c19ae8eec64dc4b86734f4cb454b7cff80a44c8f0d33e6e7666ef","signature":"06bafabcf29b42ecb70d6a95e301ca24f447e96ee4b72dbc88b56b38615b69bb","impliedFormat":99},{"version":"28c49cf0993e6bac3825000d1601e7b43869651798032c02dab135981f36d5dc","signature":"45709dfaa664e620dfcbf7f3736299651bf2c79afeae53b3cb23eea04e4cea8a","impliedFormat":99},{"version":"f6fddd7cb6cf0f397de4c3ab5b27125c335833208226bf5cb682f6a33a68fa42","signature":"1eb152e97cc5379963f2977855d809c11f60b3109310d955cdd95374a6aa492e","impliedFormat":99},{"version":"60cdd9ad59d1f4a4016b12231e0bd209303218c567524f3b224a3aeea3993eb9","signature":"b2945808a4351cb0c53d35c4b54e1543e890be65ec2c6390d7b13a4806e163a4","impliedFormat":99},{"version":"beac34f333c30f971d780aee1ca9c1eb7554f56f2074ada306dc3ffdbf7e6d17","signature":"a21d59d0ff97c74a11c8d1f8c37cc11a8fccd1714415765b6007906692990519","impliedFormat":99},{"version":"cbffd1c3d8327af8fb69de593ebd7a16ff0e421ca72bcf1b52b8f9a4e1c972f2","signature":"53e42d0253d3fb473ccdb9c1c1a390e2dbe0771e436a983c4da26d6dee5f1aad","impliedFormat":99},{"version":"c177c93e19d0d3c076fe42cdb4579b934e69dab9b590b156cb7f735f28b48b37","signature":"73bb16e361bfbd7d1d9baa3a802fcd1ed64386ae730c35a972e797bada8c4ee9","impliedFormat":99},{"version":"6ac84f33015f3fa2625fac32ef28c8fd5e4363c6075ec4a06b05acca431eda46","signature":"0531a8348ebc1f4ffc0dc4b688d86e78f3fc9ebdb6926ea6e6f67285a018d6d3","impliedFormat":99},{"version":"4d7759eda5d0523be9fcdd52b665c5525dbb6f29eaff0db7ed65267297715ef0","signature":"6e27a252b384b588c8f0d4afb7ce25632585e93bc57f2ece1044a361d7336f5d","impliedFormat":99},{"version":"71a663310661016abc6f4cf956e91c24a994cfc5d86c770d6ddefd77d5583167","signature":"7d36a09c6ea285f2b0ae7bdcd01391a1da585c3b269e74e3dae25a10324e46fc"}],"root":[[182,231]],"options":{"allowJs":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[60,77,97,101,129,130],[61],[60,104,105],[104,135],[104,105],[60,104,105,128],[135],[104,105,118],[104,105,114],[101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,121],[60,103,117,121,128],[60,121],[60],[60,102,103,118,119,120,135],[101],[60,64,68,100,102,128,135],[60,103,126,128],[101,128],[102,103],[101,121,128,135],[60,62,64,66,68,76,126],[60,63,64,67,68,69,70,71,72,126,128],[60,63,64,65,67,68,75,126,127],[60,63,64],[60,64,65,128],[60,63,64,65,66,67,129],[60,64,68],[62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,98,99,100,126,127,128,129],[102,103,121,122,123,124,125],[64,68,70,71,127,128],[65],[60,68],[60,64],[60,64,97],[60,101],[77,127],[60,73],[60,77,81,101],[60,77,82,101],[60,77,135],[60,61,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[77,87,101],[60,135],[77,101],[60,77,81,82,101],[132],[60,97,101,131,133,134],[142],[164],[149,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163],[147,148,153],[146,147,148,159],[156],[146,149],[145],[144,145],[144,151],[144,146,151,155,156,157],[146],[144],[146,147,158],[146,147],[146,147,148,149,150,152],[146,147,148,149,150,158],[135,182,228],[135,212,213,227],[227],[135,184,227],[135,182,230],[135,204,212,227],[135,186,189,190],[135,191,192,194],[135,184,185,189,193,194,203,227],[135,191,192],[135,182,214],[135,216,229],[135,141,143,181,183,211,226],[135,183,206,207],[135,208,209],[135,183,208],[135,218,229],[135,220,229],[182],[135,222,229],[135,224,229],[135,187,190,192,195,197,198,200,201,202,227],[135,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229],[135,183,204,205,208,227],[135,227,228],[135,184,206,207,208,209,210],[135,182,184,214,215,216,217,218,219,220,221,222,223,224,225],[135,184,230],[135,186],[135,186,193,194],[135,184,188,203,227],[135,196,197],[135,191],[135,199],[135,196],[135,184,192,193,203,227],[135,184,194,227],[137,138,141],[139],[141],[136,137,138,139,140]],"referencedMap":[[131,1],[62,2],[106,3],[105,4],[107,5],[108,6],[109,5],[110,3],[111,5],[112,3],[104,7],[113,5],[114,8],[115,9],[116,3],[118,10],[119,11],[117,12],[120,13],[121,14],[122,15],[103,16],[123,17],[124,18],[125,19],[102,20],[127,21],[73,22],[69,13],[128,23],[65,24],[129,25],[68,26],[70,27],[101,28],[126,29],[74,30],[100,13],[63,13],[75,31],[71,32],[67,33],[76,33],[98,34],[64,32],[99,32],[72,35],[78,36],[79,37],[80,35],[82,38],[83,35],[84,15],[85,39],[86,40],[97,41],[88,42],[89,35],[96,43],[90,35],[81,43],[91,35],[92,15],[93,44],[94,35],[95,35],[87,45],[133,46],[134,15],[135,47],[143,48],[167,49],[180,49],[168,49],[169,49],[173,49],[181,50],[165,49],[174,49],[172,49],[175,49],[166,49],[171,49],[164,51],[154,52],[160,53],[157,54],[150,55],[161,56],[146,57],[152,58],[158,59],[147,60],[155,61],[148,60],[156,62],[151,63],[153,64],[159,65],[176,49],[177,49],[178,49],[179,49],[229,66],[228,67],[184,68],[186,69],[183,70],[182,7],[213,71],[191,72],[196,73],[204,74],[199,75],[215,76],[217,77],[227,78],[208,79],[210,80],[209,81],[219,82],[221,83],[185,84],[223,85],[225,86],[203,87],[230,88],[207,89],[214,67],[216,90],[211,91],[206,89],[226,92],[218,90],[205,93],[220,90],[222,90],[224,90],[187,94],[195,95],[189,96],[198,97],[190,98],[200,99],[201,99],[202,98],[197,100],[192,98],[194,101],[188,69],[193,102],[139,103],[140,104],[138,105],[141,106]],"latestChangedDtsFile":"./src/classes/Client.d.ts"},"version":"5.5.4"}
@@ -0,0 +1,114 @@
1
+ ---
2
+ title: AnySelectMenu
3
+ ---
4
+
5
+ ## Extends
6
+
7
+ - [`BaseComponent`](/carbon/api/classes/BaseComponent)
8
+
9
+ ## Extended by
10
+
11
+ - [`ChannelSelectMenu`](/carbon/api/classes/ChannelSelectMenu)
12
+ - [`MentionableSelectMenu`](/carbon/api/classes/MentionableSelectMenu)
13
+ - [`RoleSelectMenu`](/carbon/api/classes/RoleSelectMenu)
14
+ - [`StringSelectMenu`](/carbon/api/classes/StringSelectMenu)
15
+ - [`UserSelectMenu`](/carbon/api/classes/UserSelectMenu)
16
+
17
+ ## Constructors
18
+
19
+ ### new AnySelectMenu()
20
+
21
+ > **new AnySelectMenu**(`data`?): [`AnySelectMenu`](/carbon/api/classes/AnySelectMenu)
22
+
23
+ #### Parameters
24
+
25
+ | Parameter | Type |
26
+ | ------ | ------ |
27
+ | `data`? | `object` |
28
+ | `data.additionalData`? | [`ComponentAdditionalData`](/carbon/api/type-aliases/ComponentAdditionalData) |
29
+
30
+ #### Returns
31
+
32
+ [`AnySelectMenu`](/carbon/api/classes/AnySelectMenu)
33
+
34
+ #### Inherited from
35
+
36
+ [`BaseComponent`](/carbon/api/classes/BaseComponent).[`constructor`](/carbon/api/classes/BaseComponent#constructors)
37
+
38
+ ## Properties
39
+
40
+ | Property | Modifier | Type | Default value | Description | Overrides | Inherited from |
41
+ | ------ | ------ | ------ | ------ | ------ | ------ | ------ |
42
+ | `additionalData` | `public` | `null` \| [`ComponentAdditionalData`](/carbon/api/type-aliases/ComponentAdditionalData) | `null` | - | - | [`BaseComponent`](/carbon/api/classes/BaseComponent).`additionalData` |
43
+ | `customId` | `abstract` | `string` | `undefined` | The custom ID of the component | - | [`BaseComponent`](/carbon/api/classes/BaseComponent).`customId` |
44
+ | `defer` | `public` | `boolean` | `false` | Whether the component response should be automatically deferred | - | [`BaseComponent`](/carbon/api/classes/BaseComponent).`defer` |
45
+ | `disabled?` | `public` | `boolean` | `undefined` | - | - | - |
46
+ | `ephemeral` | `public` | `boolean` | `false` | Whether the component response should be ephemeral | - | [`BaseComponent`](/carbon/api/classes/BaseComponent).`ephemeral` |
47
+ | `maxValues?` | `public` | `number` | `undefined` | - | - | - |
48
+ | `minValues?` | `public` | `number` | `undefined` | - | - | - |
49
+ | `placeholder?` | `public` | `string` | `undefined` | - | - | - |
50
+ | `type` | `abstract` | [`AnySelectMenuComponentType`](/carbon/api/type-aliases/AnySelectMenuComponentType) | `undefined` | The type of the component | [`BaseComponent`](/carbon/api/classes/BaseComponent).`type` | - |
51
+
52
+ ## Methods
53
+
54
+ ### createId()
55
+
56
+ > **createId**(`additionalData`): `string`
57
+
58
+ Create a custom ID to use for this component that embeds additional data that you want to be handed
59
+
60
+ #### Parameters
61
+
62
+ | Parameter | Type | Description |
63
+ | ------ | ------ | ------ |
64
+ | `additionalData` | `null` \| [`ComponentAdditionalData`](/carbon/api/type-aliases/ComponentAdditionalData) | The additional data that you want to be passed in this component's custom ID |
65
+
66
+ #### Returns
67
+
68
+ `string`
69
+
70
+ The custom ID to use
71
+
72
+ #### Inherited from
73
+
74
+ [`BaseComponent`](/carbon/api/classes/BaseComponent).[`createId`](/carbon/api/classes/BaseComponent#createid)
75
+
76
+ ***
77
+
78
+ ### run()
79
+
80
+ > `abstract` **run**(`interaction`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
81
+
82
+ #### Parameters
83
+
84
+ | Parameter | Type |
85
+ | ------ | ------ |
86
+ | `interaction` | [`AnySelectMenuInteraction`](/carbon/api/classes/AnySelectMenuInteraction) |
87
+
88
+ #### Returns
89
+
90
+ [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
91
+
92
+ ***
93
+
94
+ ### serialize()
95
+
96
+ > **serialize**(): `APISelectMenuComponent`
97
+
98
+ #### Returns
99
+
100
+ `APISelectMenuComponent`
101
+
102
+ #### Overrides
103
+
104
+ `BaseComponent.serialize`
105
+
106
+ ***
107
+
108
+ ### serializeOptions()
109
+
110
+ > `abstract` **serializeOptions**(): `object` \| `object` \| `object` \| `object` \| `object`
111
+
112
+ #### Returns
113
+
114
+ `object` \| `object` \| `object` \| `object` \| `object`
@@ -0,0 +1,161 @@
1
+ ---
2
+ title: AnySelectMenuInteraction
3
+ ---
4
+
5
+ This is the base type interaction, all interaction types extend from this
6
+
7
+ ## Extends
8
+
9
+ - [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction)
10
+
11
+ ## Extended by
12
+
13
+ - [`ChannelSelectMenuInteraction`](/carbon/api/classes/ChannelSelectMenuInteraction)
14
+ - [`MentionableSelectMenuInteraction`](/carbon/api/classes/MentionableSelectMenuInteraction)
15
+ - [`RoleSelectMenuInteraction`](/carbon/api/classes/RoleSelectMenuInteraction)
16
+ - [`StringSelectMenuInteraction`](/carbon/api/classes/StringSelectMenuInteraction)
17
+ - [`UserSelectMenuInteraction`](/carbon/api/classes/UserSelectMenuInteraction)
18
+
19
+ ## Constructors
20
+
21
+ ### new AnySelectMenuInteraction()
22
+
23
+ > **new AnySelectMenuInteraction**(`client`, `data`): [`AnySelectMenuInteraction`](/carbon/api/classes/AnySelectMenuInteraction)
24
+
25
+ #### Parameters
26
+
27
+ | Parameter | Type |
28
+ | ------ | ------ |
29
+ | `client` | [`Client`](/carbon/api/classes/Client) |
30
+ | `data` | `APIMessageComponentSelectMenuInteraction` |
31
+
32
+ #### Returns
33
+
34
+ [`AnySelectMenuInteraction`](/carbon/api/classes/AnySelectMenuInteraction)
35
+
36
+ #### Overrides
37
+
38
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`constructor`](/carbon/api/classes/BaseComponentInteraction#constructors)
39
+
40
+ ## Properties
41
+
42
+ | Property | Type | Default value | Description | Overrides | Inherited from |
43
+ | ------ | ------ | ------ | ------ | ------ | ------ |
44
+ | `_deferred` | `boolean` | `false` | **`Internal`** Whether the interaction is deferred already | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`_deferred` |
45
+ | `client` | [`Client`](/carbon/api/classes/Client) | `undefined` | - | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`client` |
46
+ | `componentType` | `ComponentType` | `undefined` | - | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`componentType` |
47
+ | `customId` | `string` | `undefined` | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`customId` | - |
48
+ | `rawData` | `APIMessageComponentInteraction` | `undefined` | The raw data of the interaction | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`rawData` |
49
+ | `type` | `InteractionType` | `undefined` | The type of interaction | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`type` |
50
+ | `userId` | `undefined` \| `string` | `undefined` | The user who sent the interaction | - | [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).`userId` |
51
+
52
+ ## Accessors
53
+
54
+ ### channel
55
+
56
+ > `get` **channel**(): `null` \| [`DmChannel`](/carbon/api/classes/DmChannel) \| [`GroupDmChannel`](/carbon/api/classes/GroupDmChannel) \| [`GuildTextChannel`](/carbon/api/classes/GuildTextChannel) \| [`GuildVoiceChannel`](/carbon/api/classes/GuildVoiceChannel) \| [`GuildCategoryChannel`](/carbon/api/classes/GuildCategoryChannel) \| [`GuildAnnouncementChannel`](/carbon/api/classes/GuildAnnouncementChannel) \| [`GuildThreadChannel`](/carbon/api/classes/GuildThreadChannel)\<`ThreadChannelType`\> \| [`GuildStageChannel`](/carbon/api/classes/GuildStageChannel) \| [`GuildForumChannel`](/carbon/api/classes/GuildForumChannel) \| [`GuildMediaChannel`](/carbon/api/classes/GuildMediaChannel)
57
+
58
+ #### Returns
59
+
60
+ `null` \| [`DmChannel`](/carbon/api/classes/DmChannel) \| [`GroupDmChannel`](/carbon/api/classes/GroupDmChannel) \| [`GuildTextChannel`](/carbon/api/classes/GuildTextChannel) \| [`GuildVoiceChannel`](/carbon/api/classes/GuildVoiceChannel) \| [`GuildCategoryChannel`](/carbon/api/classes/GuildCategoryChannel) \| [`GuildAnnouncementChannel`](/carbon/api/classes/GuildAnnouncementChannel) \| [`GuildThreadChannel`](/carbon/api/classes/GuildThreadChannel)\<`ThreadChannelType`\> \| [`GuildStageChannel`](/carbon/api/classes/GuildStageChannel) \| [`GuildForumChannel`](/carbon/api/classes/GuildForumChannel) \| [`GuildMediaChannel`](/carbon/api/classes/GuildMediaChannel)
61
+
62
+ #### Inherited from
63
+
64
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`channel`](/carbon/api/classes/BaseComponentInteraction#channel)
65
+
66
+ ***
67
+
68
+ ### guild
69
+
70
+ > `get` **guild**(): `null` \| [`Guild`](/carbon/api/classes/Guild)
71
+
72
+ #### Returns
73
+
74
+ `null` \| [`Guild`](/carbon/api/classes/Guild)
75
+
76
+ #### Inherited from
77
+
78
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`guild`](/carbon/api/classes/BaseComponentInteraction#guild)
79
+
80
+ ***
81
+
82
+ ### message
83
+
84
+ > `get` **message**(): `null` \| [`Message`](/carbon/api/classes/Message)
85
+
86
+ #### Returns
87
+
88
+ `null` \| [`Message`](/carbon/api/classes/Message)
89
+
90
+ #### Inherited from
91
+
92
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`message`](/carbon/api/classes/BaseComponentInteraction#message)
93
+
94
+ ***
95
+
96
+ ### user
97
+
98
+ > `get` **user**(): `null` \| [`User`](/carbon/api/classes/User)
99
+
100
+ #### Returns
101
+
102
+ `null` \| [`User`](/carbon/api/classes/User)
103
+
104
+ #### Inherited from
105
+
106
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`user`](/carbon/api/classes/BaseComponentInteraction#user)
107
+
108
+ ***
109
+
110
+ ### values
111
+
112
+ > `get` **values**(): `string`[]
113
+
114
+ The raw IDs of the selected options (either role/string/channel IDs or the IDs you provided in your options)
115
+
116
+ #### Returns
117
+
118
+ `string`[]
119
+
120
+ ## Methods
121
+
122
+ ### defer()
123
+
124
+ > **defer**(): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
125
+
126
+ **`Internal`**
127
+
128
+ Defer the interaction response. This is used automatically by commands that are set to defer.
129
+ If the interaction is already deferred, this will do nothing.
130
+
131
+ #### Returns
132
+
133
+ [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
134
+
135
+ #### Inherited from
136
+
137
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`defer`](/carbon/api/classes/BaseComponentInteraction#defer)
138
+
139
+ ***
140
+
141
+ ### reply()
142
+
143
+ > **reply**(`data`, `options`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
144
+
145
+ Reply to an interaction.
146
+ If the interaction is deferred, this will edit the original response.
147
+
148
+ #### Parameters
149
+
150
+ | Parameter | Type | Description |
151
+ | ------ | ------ | ------ |
152
+ | `data` | [`InteractionReplyData`](/carbon/api/type-aliases/InteractionReplyData) | The response data |
153
+ | `options` | [`InteractionReplyOptions`](/carbon/api/type-aliases/InteractionReplyOptions) | - |
154
+
155
+ #### Returns
156
+
157
+ [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<`void`\>
158
+
159
+ #### Inherited from
160
+
161
+ [`BaseComponentInteraction`](/carbon/api/classes/BaseComponentInteraction).[`reply`](/carbon/api/classes/BaseComponentInteraction#reply)