mcp-lab-agent 2.1.1 → 2.1.3

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 (6371) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -1
  3. package/qa-lab-agent.config.json +12 -0
  4. package/slack-bot/.env +10 -0
  5. package/slack-bot/.env.example +10 -0
  6. package/slack-bot/README.md +66 -0
  7. package/slack-bot/node_modules/.package-lock.json +2782 -0
  8. package/slack-bot/node_modules/@slack/bolt/LICENSE +22 -0
  9. package/slack-bot/node_modules/@slack/bolt/README.md +142 -0
  10. package/slack-bot/node_modules/@slack/bolt/dist/App.d.ts +241 -0
  11. package/slack-bot/node_modules/@slack/bolt/dist/App.d.ts.map +1 -0
  12. package/slack-bot/node_modules/@slack/bolt/dist/App.js +949 -0
  13. package/slack-bot/node_modules/@slack/bolt/dist/App.js.map +1 -0
  14. package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.d.ts +64 -0
  15. package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.d.ts.map +1 -0
  16. package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.js +140 -0
  17. package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.js.map +1 -0
  18. package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.d.ts +107 -0
  19. package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.d.ts.map +1 -0
  20. package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.js +196 -0
  21. package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.js.map +1 -0
  22. package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.d.ts +31 -0
  23. package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.d.ts.map +1 -0
  24. package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.js +71 -0
  25. package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.js.map +1 -0
  26. package/slack-bot/node_modules/@slack/bolt/dist/errors.d.ts +92 -0
  27. package/slack-bot/node_modules/@slack/bolt/dist/errors.d.ts.map +1 -0
  28. package/slack-bot/node_modules/@slack/bolt/dist/errors.js +149 -0
  29. package/slack-bot/node_modules/@slack/bolt/dist/errors.js.map +1 -0
  30. package/slack-bot/node_modules/@slack/bolt/dist/helpers.d.ts +38 -0
  31. package/slack-bot/node_modules/@slack/bolt/dist/helpers.d.ts.map +1 -0
  32. package/slack-bot/node_modules/@slack/bolt/dist/helpers.js +139 -0
  33. package/slack-bot/node_modules/@slack/bolt/dist/helpers.js.map +1 -0
  34. package/slack-bot/node_modules/@slack/bolt/dist/index.d.ts +19 -0
  35. package/slack-bot/node_modules/@slack/bolt/dist/index.d.ts.map +1 -0
  36. package/slack-bot/node_modules/@slack/bolt/dist/index.js +54 -0
  37. package/slack-bot/node_modules/@slack/bolt/dist/index.js.map +1 -0
  38. package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.d.ts +62 -0
  39. package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.d.ts.map +1 -0
  40. package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.js +339 -0
  41. package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.js.map +1 -0
  42. package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.d.ts +5 -0
  43. package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.d.ts.map +1 -0
  44. package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.js +25 -0
  45. package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.js.map +1 -0
  46. package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.d.ts +96 -0
  47. package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.d.ts.map +1 -0
  48. package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.js +205 -0
  49. package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.js.map +1 -0
  50. package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.d.ts +7 -0
  51. package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.d.ts.map +1 -0
  52. package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.js +3 -0
  53. package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.js.map +1 -0
  54. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.d.ts +93 -0
  55. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.d.ts.map +1 -0
  56. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.js +438 -0
  57. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.js.map +1 -0
  58. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.d.ts +47 -0
  59. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.d.ts.map +1 -0
  60. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.js +210 -0
  61. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.js.map +1 -0
  62. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.d.ts +94 -0
  63. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.d.ts.map +1 -0
  64. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.js +375 -0
  65. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.js.map +1 -0
  66. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.d.ts +30 -0
  67. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.d.ts.map +1 -0
  68. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.js +64 -0
  69. package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.js.map +1 -0
  70. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.d.ts +14 -0
  71. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.d.ts.map +1 -0
  72. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.js +3 -0
  73. package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.js.map +1 -0
  74. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.d.ts +12 -0
  75. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.d.ts.map +1 -0
  76. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.js +29 -0
  77. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.js.map +1 -0
  78. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.d.ts +69 -0
  79. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.d.ts.map +1 -0
  80. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.js +179 -0
  81. package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.js.map +1 -0
  82. package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.d.ts +15 -0
  83. package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.d.ts.map +1 -0
  84. package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.js +33 -0
  85. package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.js.map +1 -0
  86. package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.d.ts +5 -0
  87. package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.d.ts.map +1 -0
  88. package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.js +19 -0
  89. package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.js.map +1 -0
  90. package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.d.ts +3 -0
  91. package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.d.ts.map +1 -0
  92. package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.js +32 -0
  93. package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.js.map +1 -0
  94. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.d.ts +7 -0
  95. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.d.ts.map +1 -0
  96. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.js +23 -0
  97. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.js.map +1 -0
  98. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.d.ts +33 -0
  99. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.d.ts.map +1 -0
  100. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.js +79 -0
  101. package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.js.map +1 -0
  102. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.d.ts +251 -0
  103. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.d.ts.map +1 -0
  104. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.js +3 -0
  105. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.js.map +1 -0
  106. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.d.ts +47 -0
  107. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.d.ts.map +1 -0
  108. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.js +3 -0
  109. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.js.map +1 -0
  110. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.d.ts +51 -0
  111. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.d.ts.map +1 -0
  112. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.js +21 -0
  113. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.js.map +1 -0
  114. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.d.ts +66 -0
  115. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.d.ts.map +1 -0
  116. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.js +3 -0
  117. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.js.map +1 -0
  118. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.d.ts +49 -0
  119. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.d.ts.map +1 -0
  120. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.js +3 -0
  121. package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.js.map +1 -0
  122. package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.d.ts +36 -0
  123. package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.d.ts.map +1 -0
  124. package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.js +3 -0
  125. package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.js.map +1 -0
  126. package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.d.ts +68 -0
  127. package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.d.ts.map +1 -0
  128. package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.js +19 -0
  129. package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.js.map +1 -0
  130. package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.d.ts +17 -0
  131. package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.d.ts.map +1 -0
  132. package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.js +3 -0
  133. package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.js.map +1 -0
  134. package/slack-bot/node_modules/@slack/bolt/dist/types/index.d.ts +10 -0
  135. package/slack-bot/node_modules/@slack/bolt/dist/types/index.d.ts.map +1 -0
  136. package/slack-bot/node_modules/@slack/bolt/dist/types/index.js +26 -0
  137. package/slack-bot/node_modules/@slack/bolt/dist/types/index.js.map +1 -0
  138. package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.d.ts +87 -0
  139. package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.d.ts.map +1 -0
  140. package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.js +17 -0
  141. package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.js.map +1 -0
  142. package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.d.ts +194 -0
  143. package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.d.ts.map +1 -0
  144. package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.js +3 -0
  145. package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.js.map +1 -0
  146. package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.d.ts +16 -0
  147. package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.d.ts.map +1 -0
  148. package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.js +3 -0
  149. package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.js.map +1 -0
  150. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.d.ts +29 -0
  151. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.d.ts.map +1 -0
  152. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.js +3 -0
  153. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.js.map +1 -0
  154. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.d.ts +23 -0
  155. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.d.ts.map +1 -0
  156. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.js +20 -0
  157. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.js.map +1 -0
  158. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.d.ts +43 -0
  159. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.d.ts.map +1 -0
  160. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.js +3 -0
  161. package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.js.map +1 -0
  162. package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.d.ts +23 -0
  163. package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.d.ts.map +1 -0
  164. package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.js +3 -0
  165. package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.js.map +1 -0
  166. package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.d.ts +310 -0
  167. package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.d.ts.map +1 -0
  168. package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.js +3 -0
  169. package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.js.map +1 -0
  170. package/slack-bot/node_modules/@slack/bolt/package.json +89 -0
  171. package/slack-bot/node_modules/@slack/logger/LICENSE +23 -0
  172. package/slack-bot/node_modules/@slack/logger/README.md +66 -0
  173. package/slack-bot/node_modules/@slack/logger/dist/index.d.ts +94 -0
  174. package/slack-bot/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
  175. package/slack-bot/node_modules/@slack/logger/dist/index.js +94 -0
  176. package/slack-bot/node_modules/@slack/logger/dist/index.js.map +1 -0
  177. package/slack-bot/node_modules/@slack/logger/package.json +43 -0
  178. package/slack-bot/node_modules/@slack/oauth/README.md +377 -0
  179. package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.d.ts +13 -0
  180. package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.d.ts.map +1 -0
  181. package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.js +3 -0
  182. package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.js.map +1 -0
  183. package/slack-bot/node_modules/@slack/oauth/dist/callback-options.d.ts +36 -0
  184. package/slack-bot/node_modules/@slack/oauth/dist/callback-options.d.ts.map +1 -0
  185. package/slack-bot/node_modules/@slack/oauth/dist/callback-options.js +69 -0
  186. package/slack-bot/node_modules/@slack/oauth/dist/callback-options.js.map +1 -0
  187. package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.d.ts +2 -0
  188. package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.d.ts.map +1 -0
  189. package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.js +7 -0
  190. package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.js.map +1 -0
  191. package/slack-bot/node_modules/@slack/oauth/dist/errors.d.ts +39 -0
  192. package/slack-bot/node_modules/@slack/oauth/dist/errors.d.ts.map +1 -0
  193. package/slack-bot/node_modules/@slack/oauth/dist/errors.js +105 -0
  194. package/slack-bot/node_modules/@slack/oauth/dist/errors.js.map +1 -0
  195. package/slack-bot/node_modules/@slack/oauth/dist/index.d.ts +14 -0
  196. package/slack-bot/node_modules/@slack/oauth/dist/index.d.ts.map +1 -0
  197. package/slack-bot/node_modules/@slack/oauth/dist/index.js +38 -0
  198. package/slack-bot/node_modules/@slack/oauth/dist/index.js.map +1 -0
  199. package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.d.ts +22 -0
  200. package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.d.ts.map +1 -0
  201. package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.js +3 -0
  202. package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.js.map +1 -0
  203. package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.d.ts +82 -0
  204. package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.d.ts.map +1 -0
  205. package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.js +3 -0
  206. package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.js.map +1 -0
  207. package/slack-bot/node_modules/@slack/oauth/dist/install-provider.d.ts +117 -0
  208. package/slack-bot/node_modules/@slack/oauth/dist/install-provider.d.ts.map +1 -0
  209. package/slack-bot/node_modules/@slack/oauth/dist/install-provider.js +785 -0
  210. package/slack-bot/node_modules/@slack/oauth/dist/install-provider.js.map +1 -0
  211. package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.d.ts +8 -0
  212. package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.d.ts.map +1 -0
  213. package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.js +3 -0
  214. package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.js.map +1 -0
  215. package/slack-bot/node_modules/@slack/oauth/dist/installation-query.d.ts +9 -0
  216. package/slack-bot/node_modules/@slack/oauth/dist/installation-query.d.ts.map +1 -0
  217. package/slack-bot/node_modules/@slack/oauth/dist/installation-query.js +3 -0
  218. package/slack-bot/node_modules/@slack/oauth/dist/installation-query.js.map +1 -0
  219. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.d.ts +17 -0
  220. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.d.ts.map +1 -0
  221. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.js +173 -0
  222. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.js.map +1 -0
  223. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.d.ts +4 -0
  224. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.d.ts.map +1 -0
  225. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.js +11 -0
  226. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.js.map +1 -0
  227. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.d.ts +8 -0
  228. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.d.ts.map +1 -0
  229. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.js +3 -0
  230. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.js.map +1 -0
  231. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.d.ts +13 -0
  232. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.d.ts.map +1 -0
  233. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.js +139 -0
  234. package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.js.map +1 -0
  235. package/slack-bot/node_modules/@slack/oauth/dist/installation.d.ts +95 -0
  236. package/slack-bot/node_modules/@slack/oauth/dist/installation.d.ts.map +1 -0
  237. package/slack-bot/node_modules/@slack/oauth/dist/installation.js +3 -0
  238. package/slack-bot/node_modules/@slack/oauth/dist/installation.js.map +1 -0
  239. package/slack-bot/node_modules/@slack/oauth/dist/logger.d.ts +7 -0
  240. package/slack-bot/node_modules/@slack/oauth/dist/logger.d.ts.map +1 -0
  241. package/slack-bot/node_modules/@slack/oauth/dist/logger.js +29 -0
  242. package/slack-bot/node_modules/@slack/oauth/dist/logger.js.map +1 -0
  243. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.d.ts +10 -0
  244. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.d.ts.map +1 -0
  245. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.js +85 -0
  246. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.js.map +1 -0
  247. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.d.ts +21 -0
  248. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.d.ts.map +1 -0
  249. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.js +148 -0
  250. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.js.map +1 -0
  251. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.d.ts +4 -0
  252. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.d.ts.map +1 -0
  253. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.js +11 -0
  254. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.js.map +1 -0
  255. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.d.ts +37 -0
  256. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.d.ts.map +1 -0
  257. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.js +3 -0
  258. package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.js.map +1 -0
  259. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/README.md +0 -0
  260. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.d.ts +100 -0
  261. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
  262. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.js +92 -0
  263. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.js.map +1 -0
  264. package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/package.json +52 -0
  265. package/slack-bot/node_modules/@slack/oauth/package.json +76 -0
  266. package/slack-bot/node_modules/@slack/socket-mode/README.md +232 -0
  267. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.d.ts +158 -0
  268. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.d.ts.map +1 -0
  269. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.js +660 -0
  270. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.js.map +1 -0
  271. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.d.ts +13 -0
  272. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.d.ts.map +1 -0
  273. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.js +3 -0
  274. package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.js.map +1 -0
  275. package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.d.ts +8 -0
  276. package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.d.ts.map +1 -0
  277. package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.js +15 -0
  278. package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.js.map +1 -0
  279. package/slack-bot/node_modules/@slack/socket-mode/dist/errors.d.ts +60 -0
  280. package/slack-bot/node_modules/@slack/socket-mode/dist/errors.d.ts.map +1 -0
  281. package/slack-bot/node_modules/@slack/socket-mode/dist/errors.js +68 -0
  282. package/slack-bot/node_modules/@slack/socket-mode/dist/errors.js.map +1 -0
  283. package/slack-bot/node_modules/@slack/socket-mode/dist/index.d.ts +7 -0
  284. package/slack-bot/node_modules/@slack/socket-mode/dist/index.d.ts.map +1 -0
  285. package/slack-bot/node_modules/@slack/socket-mode/dist/index.js +13 -0
  286. package/slack-bot/node_modules/@slack/socket-mode/dist/index.js.map +1 -0
  287. package/slack-bot/node_modules/@slack/socket-mode/dist/logger.d.ts +7 -0
  288. package/slack-bot/node_modules/@slack/socket-mode/dist/logger.d.ts.map +1 -0
  289. package/slack-bot/node_modules/@slack/socket-mode/dist/logger.js +29 -0
  290. package/slack-bot/node_modules/@slack/socket-mode/dist/logger.js.map +1 -0
  291. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/README.md +0 -0
  292. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.d.ts +100 -0
  293. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
  294. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.js +92 -0
  295. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.js.map +1 -0
  296. package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/package.json +52 -0
  297. package/slack-bot/node_modules/@slack/socket-mode/package.json +76 -0
  298. package/slack-bot/node_modules/@slack/types/LICENSE +23 -0
  299. package/slack-bot/node_modules/@slack/types/README.md +32 -0
  300. package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.d.ts +953 -0
  301. package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.d.ts.map +1 -0
  302. package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.js +4 -0
  303. package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.js.map +1 -0
  304. package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.d.ts +405 -0
  305. package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.d.ts.map +1 -0
  306. package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.js +3 -0
  307. package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.js.map +1 -0
  308. package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.d.ts +237 -0
  309. package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.d.ts.map +1 -0
  310. package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.js +4 -0
  311. package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.js.map +1 -0
  312. package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.d.ts +88 -0
  313. package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.d.ts.map +1 -0
  314. package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.js +3 -0
  315. package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.js.map +1 -0
  316. package/slack-bot/node_modules/@slack/types/dist/calls.d.ts +26 -0
  317. package/slack-bot/node_modules/@slack/types/dist/calls.d.ts.map +1 -0
  318. package/slack-bot/node_modules/@slack/types/dist/calls.js +6 -0
  319. package/slack-bot/node_modules/@slack/types/dist/calls.js.map +1 -0
  320. package/slack-bot/node_modules/@slack/types/dist/chunk.d.ts +42 -0
  321. package/slack-bot/node_modules/@slack/types/dist/chunk.d.ts.map +1 -0
  322. package/slack-bot/node_modules/@slack/types/dist/chunk.js +3 -0
  323. package/slack-bot/node_modules/@slack/types/dist/chunk.js.map +1 -0
  324. package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.d.ts +12 -0
  325. package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.d.ts.map +1 -0
  326. package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.js +3 -0
  327. package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.js.map +1 -0
  328. package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.d.ts +6 -0
  329. package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.d.ts.map +1 -0
  330. package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.js +3 -0
  331. package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.js.map +1 -0
  332. package/slack-bot/node_modules/@slack/types/dist/dialog.d.ts +36 -0
  333. package/slack-bot/node_modules/@slack/types/dist/dialog.d.ts.map +1 -0
  334. package/slack-bot/node_modules/@slack/types/dist/dialog.js +3 -0
  335. package/slack-bot/node_modules/@slack/types/dist/dialog.js.map +1 -0
  336. package/slack-bot/node_modules/@slack/types/dist/events/app.d.ts +204 -0
  337. package/slack-bot/node_modules/@slack/types/dist/events/app.d.ts.map +1 -0
  338. package/slack-bot/node_modules/@slack/types/dist/events/app.js +3 -0
  339. package/slack-bot/node_modules/@slack/types/dist/events/app.js.map +1 -0
  340. package/slack-bot/node_modules/@slack/types/dist/events/assistant.d.ts +29 -0
  341. package/slack-bot/node_modules/@slack/types/dist/events/assistant.d.ts.map +1 -0
  342. package/slack-bot/node_modules/@slack/types/dist/events/assistant.js +3 -0
  343. package/slack-bot/node_modules/@slack/types/dist/events/assistant.js.map +1 -0
  344. package/slack-bot/node_modules/@slack/types/dist/events/call.d.ts +8 -0
  345. package/slack-bot/node_modules/@slack/types/dist/events/call.d.ts.map +1 -0
  346. package/slack-bot/node_modules/@slack/types/dist/events/call.js +3 -0
  347. package/slack-bot/node_modules/@slack/types/dist/events/call.js.map +1 -0
  348. package/slack-bot/node_modules/@slack/types/dist/events/channel.d.ts +85 -0
  349. package/slack-bot/node_modules/@slack/types/dist/events/channel.d.ts.map +1 -0
  350. package/slack-bot/node_modules/@slack/types/dist/events/channel.js +3 -0
  351. package/slack-bot/node_modules/@slack/types/dist/events/channel.js.map +1 -0
  352. package/slack-bot/node_modules/@slack/types/dist/events/dnd.d.ts +24 -0
  353. package/slack-bot/node_modules/@slack/types/dist/events/dnd.d.ts.map +1 -0
  354. package/slack-bot/node_modules/@slack/types/dist/events/dnd.js +3 -0
  355. package/slack-bot/node_modules/@slack/types/dist/events/dnd.js.map +1 -0
  356. package/slack-bot/node_modules/@slack/types/dist/events/email.d.ts +6 -0
  357. package/slack-bot/node_modules/@slack/types/dist/events/email.d.ts.map +1 -0
  358. package/slack-bot/node_modules/@slack/types/dist/events/email.js +3 -0
  359. package/slack-bot/node_modules/@slack/types/dist/events/email.js.map +1 -0
  360. package/slack-bot/node_modules/@slack/types/dist/events/emoji.d.ts +11 -0
  361. package/slack-bot/node_modules/@slack/types/dist/events/emoji.d.ts.map +1 -0
  362. package/slack-bot/node_modules/@slack/types/dist/events/emoji.js +3 -0
  363. package/slack-bot/node_modules/@slack/types/dist/events/emoji.js.map +1 -0
  364. package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.d.ts +21 -0
  365. package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.d.ts.map +1 -0
  366. package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.js +3 -0
  367. package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.js.map +1 -0
  368. package/slack-bot/node_modules/@slack/types/dist/events/file.d.ts +60 -0
  369. package/slack-bot/node_modules/@slack/types/dist/events/file.d.ts.map +1 -0
  370. package/slack-bot/node_modules/@slack/types/dist/events/file.js +4 -0
  371. package/slack-bot/node_modules/@slack/types/dist/events/file.js.map +1 -0
  372. package/slack-bot/node_modules/@slack/types/dist/events/function.d.ts +33 -0
  373. package/slack-bot/node_modules/@slack/types/dist/events/function.d.ts.map +1 -0
  374. package/slack-bot/node_modules/@slack/types/dist/events/function.js +3 -0
  375. package/slack-bot/node_modules/@slack/types/dist/events/function.js.map +1 -0
  376. package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.d.ts +9 -0
  377. package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.d.ts.map +1 -0
  378. package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.js +3 -0
  379. package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.js.map +1 -0
  380. package/slack-bot/node_modules/@slack/types/dist/events/group.d.ts +55 -0
  381. package/slack-bot/node_modules/@slack/types/dist/events/group.d.ts.map +1 -0
  382. package/slack-bot/node_modules/@slack/types/dist/events/group.js +3 -0
  383. package/slack-bot/node_modules/@slack/types/dist/events/group.js.map +1 -0
  384. package/slack-bot/node_modules/@slack/types/dist/events/im.d.ts +26 -0
  385. package/slack-bot/node_modules/@slack/types/dist/events/im.d.ts.map +1 -0
  386. package/slack-bot/node_modules/@slack/types/dist/events/im.js +3 -0
  387. package/slack-bot/node_modules/@slack/types/dist/events/im.js.map +1 -0
  388. package/slack-bot/node_modules/@slack/types/dist/events/index.d.ts +60 -0
  389. package/slack-bot/node_modules/@slack/types/dist/events/index.d.ts.map +1 -0
  390. package/slack-bot/node_modules/@slack/types/dist/events/index.js +43 -0
  391. package/slack-bot/node_modules/@slack/types/dist/events/index.js.map +1 -0
  392. package/slack-bot/node_modules/@slack/types/dist/events/invite.d.ts +20 -0
  393. package/slack-bot/node_modules/@slack/types/dist/events/invite.d.ts.map +1 -0
  394. package/slack-bot/node_modules/@slack/types/dist/events/invite.js +3 -0
  395. package/slack-bot/node_modules/@slack/types/dist/events/invite.js.map +1 -0
  396. package/slack-bot/node_modules/@slack/types/dist/events/link-shared.d.ts +16 -0
  397. package/slack-bot/node_modules/@slack/types/dist/events/link-shared.d.ts.map +1 -0
  398. package/slack-bot/node_modules/@slack/types/dist/events/link-shared.js +3 -0
  399. package/slack-bot/node_modules/@slack/types/dist/events/link-shared.js.map +1 -0
  400. package/slack-bot/node_modules/@slack/types/dist/events/member.d.ts +19 -0
  401. package/slack-bot/node_modules/@slack/types/dist/events/member.d.ts.map +1 -0
  402. package/slack-bot/node_modules/@slack/types/dist/events/member.js +3 -0
  403. package/slack-bot/node_modules/@slack/types/dist/events/member.js.map +1 -0
  404. package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.d.ts +38 -0
  405. package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.d.ts.map +1 -0
  406. package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.js +3 -0
  407. package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.js.map +1 -0
  408. package/slack-bot/node_modules/@slack/types/dist/events/message.d.ts +306 -0
  409. package/slack-bot/node_modules/@slack/types/dist/events/message.d.ts.map +1 -0
  410. package/slack-bot/node_modules/@slack/types/dist/events/message.js +3 -0
  411. package/slack-bot/node_modules/@slack/types/dist/events/message.js.map +1 -0
  412. package/slack-bot/node_modules/@slack/types/dist/events/pin.d.ts +60 -0
  413. package/slack-bot/node_modules/@slack/types/dist/events/pin.d.ts.map +1 -0
  414. package/slack-bot/node_modules/@slack/types/dist/events/pin.js +3 -0
  415. package/slack-bot/node_modules/@slack/types/dist/events/pin.js.map +1 -0
  416. package/slack-bot/node_modules/@slack/types/dist/events/reaction.d.ts +23 -0
  417. package/slack-bot/node_modules/@slack/types/dist/events/reaction.d.ts.map +1 -0
  418. package/slack-bot/node_modules/@slack/types/dist/events/reaction.js +3 -0
  419. package/slack-bot/node_modules/@slack/types/dist/events/reaction.js.map +1 -0
  420. package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.d.ts +134 -0
  421. package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.d.ts.map +1 -0
  422. package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.js +3 -0
  423. package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.js.map +1 -0
  424. package/slack-bot/node_modules/@slack/types/dist/events/star.d.ts +13 -0
  425. package/slack-bot/node_modules/@slack/types/dist/events/star.d.ts.map +1 -0
  426. package/slack-bot/node_modules/@slack/types/dist/events/star.js +3 -0
  427. package/slack-bot/node_modules/@slack/types/dist/events/star.js.map +1 -0
  428. package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.d.ts +82 -0
  429. package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.d.ts.map +1 -0
  430. package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.js +3 -0
  431. package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.js.map +1 -0
  432. package/slack-bot/node_modules/@slack/types/dist/events/subteam.d.ts +66 -0
  433. package/slack-bot/node_modules/@slack/types/dist/events/subteam.d.ts.map +1 -0
  434. package/slack-bot/node_modules/@slack/types/dist/events/subteam.js +3 -0
  435. package/slack-bot/node_modules/@slack/types/dist/events/subteam.js.map +1 -0
  436. package/slack-bot/node_modules/@slack/types/dist/events/team.d.ts +99 -0
  437. package/slack-bot/node_modules/@slack/types/dist/events/team.d.ts.map +1 -0
  438. package/slack-bot/node_modules/@slack/types/dist/events/team.js +3 -0
  439. package/slack-bot/node_modules/@slack/types/dist/events/team.js.map +1 -0
  440. package/slack-bot/node_modules/@slack/types/dist/events/token.d.ts +8 -0
  441. package/slack-bot/node_modules/@slack/types/dist/events/token.d.ts.map +1 -0
  442. package/slack-bot/node_modules/@slack/types/dist/events/token.js +3 -0
  443. package/slack-bot/node_modules/@slack/types/dist/events/token.js.map +1 -0
  444. package/slack-bot/node_modules/@slack/types/dist/events/user.d.ts +313 -0
  445. package/slack-bot/node_modules/@slack/types/dist/events/user.d.ts.map +1 -0
  446. package/slack-bot/node_modules/@slack/types/dist/events/user.js +3 -0
  447. package/slack-bot/node_modules/@slack/types/dist/events/user.js.map +1 -0
  448. package/slack-bot/node_modules/@slack/types/dist/index.d.ts +12 -0
  449. package/slack-bot/node_modules/@slack/types/dist/index.d.ts.map +1 -0
  450. package/slack-bot/node_modules/@slack/types/dist/index.js +28 -0
  451. package/slack-bot/node_modules/@slack/types/dist/index.js.map +1 -0
  452. package/slack-bot/node_modules/@slack/types/dist/message-attachments.d.ts +171 -0
  453. package/slack-bot/node_modules/@slack/types/dist/message-attachments.d.ts.map +1 -0
  454. package/slack-bot/node_modules/@slack/types/dist/message-attachments.js +3 -0
  455. package/slack-bot/node_modules/@slack/types/dist/message-attachments.js.map +1 -0
  456. package/slack-bot/node_modules/@slack/types/dist/message-metadata.d.ts +281 -0
  457. package/slack-bot/node_modules/@slack/types/dist/message-metadata.d.ts.map +1 -0
  458. package/slack-bot/node_modules/@slack/types/dist/message-metadata.js +27 -0
  459. package/slack-bot/node_modules/@slack/types/dist/message-metadata.js.map +1 -0
  460. package/slack-bot/node_modules/@slack/types/dist/views.d.ts +71 -0
  461. package/slack-bot/node_modules/@slack/types/dist/views.d.ts.map +1 -0
  462. package/slack-bot/node_modules/@slack/types/dist/views.js +3 -0
  463. package/slack-bot/node_modules/@slack/types/dist/views.js.map +1 -0
  464. package/slack-bot/node_modules/@slack/types/package.json +47 -0
  465. package/slack-bot/node_modules/@slack/web-api/README.md +399 -0
  466. package/slack-bot/node_modules/@slack/web-api/dist/WebClient.d.ts +192 -0
  467. package/slack-bot/node_modules/@slack/web-api/dist/WebClient.d.ts.map +1 -0
  468. package/slack-bot/node_modules/@slack/web-api/dist/WebClient.js +734 -0
  469. package/slack-bot/node_modules/@slack/web-api/dist/WebClient.js.map +1 -0
  470. package/slack-bot/node_modules/@slack/web-api/dist/errors.d.ts +78 -0
  471. package/slack-bot/node_modules/@slack/web-api/dist/errors.d.ts.map +1 -0
  472. package/slack-bot/node_modules/@slack/web-api/dist/errors.js +77 -0
  473. package/slack-bot/node_modules/@slack/web-api/dist/errors.js.map +1 -0
  474. package/slack-bot/node_modules/@slack/web-api/dist/file-upload.d.ts +108 -0
  475. package/slack-bot/node_modules/@slack/web-api/dist/file-upload.d.ts.map +1 -0
  476. package/slack-bot/node_modules/@slack/web-api/dist/file-upload.js +329 -0
  477. package/slack-bot/node_modules/@slack/web-api/dist/file-upload.js.map +1 -0
  478. package/slack-bot/node_modules/@slack/web-api/dist/helpers.d.ts +7 -0
  479. package/slack-bot/node_modules/@slack/web-api/dist/helpers.d.ts.map +1 -0
  480. package/slack-bot/node_modules/@slack/web-api/dist/helpers.js +14 -0
  481. package/slack-bot/node_modules/@slack/web-api/dist/helpers.js.map +1 -0
  482. package/slack-bot/node_modules/@slack/web-api/dist/index.d.ts +10 -0
  483. package/slack-bot/node_modules/@slack/web-api/dist/index.d.ts.map +1 -0
  484. package/slack-bot/node_modules/@slack/web-api/dist/index.js +35 -0
  485. package/slack-bot/node_modules/@slack/web-api/dist/index.js.map +1 -0
  486. package/slack-bot/node_modules/@slack/web-api/dist/instrument.d.ts +14 -0
  487. package/slack-bot/node_modules/@slack/web-api/dist/instrument.d.ts.map +1 -0
  488. package/slack-bot/node_modules/@slack/web-api/dist/instrument.js +65 -0
  489. package/slack-bot/node_modules/@slack/web-api/dist/instrument.js.map +1 -0
  490. package/slack-bot/node_modules/@slack/web-api/dist/logger.d.ts +7 -0
  491. package/slack-bot/node_modules/@slack/web-api/dist/logger.d.ts.map +1 -0
  492. package/slack-bot/node_modules/@slack/web-api/dist/logger.js +29 -0
  493. package/slack-bot/node_modules/@slack/web-api/dist/logger.js.map +1 -0
  494. package/slack-bot/node_modules/@slack/web-api/dist/methods.d.ts +1877 -0
  495. package/slack-bot/node_modules/@slack/web-api/dist/methods.d.ts.map +1 -0
  496. package/slack-bot/node_modules/@slack/web-api/dist/methods.js +568 -0
  497. package/slack-bot/node_modules/@slack/web-api/dist/methods.js.map +1 -0
  498. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.d.ts +77 -0
  499. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.d.ts.map +1 -0
  500. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.js +12 -0
  501. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.js.map +1 -0
  502. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.d.ts +63 -0
  503. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.d.ts.map +1 -0
  504. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.js +12 -0
  505. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.js.map +1 -0
  506. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.d.ts +9 -0
  507. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.d.ts.map +1 -0
  508. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.js +12 -0
  509. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.js.map +1 -0
  510. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.d.ts +58 -0
  511. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.d.ts.map +1 -0
  512. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.js +12 -0
  513. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.js.map +1 -0
  514. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.d.ts +9 -0
  515. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.d.ts.map +1 -0
  516. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.js +12 -0
  517. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.js.map +1 -0
  518. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.d.ts +22 -0
  519. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.d.ts.map +1 -0
  520. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.js +12 -0
  521. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.js.map +1 -0
  522. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.d.ts +8 -0
  523. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.d.ts.map +1 -0
  524. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.js +12 -0
  525. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.js.map +1 -0
  526. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.d.ts +12 -0
  527. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.d.ts.map +1 -0
  528. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.js +12 -0
  529. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.js.map +1 -0
  530. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.d.ts +67 -0
  531. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.d.ts.map +1 -0
  532. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.js +12 -0
  533. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.js.map +1 -0
  534. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.d.ts +9 -0
  535. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.d.ts.map +1 -0
  536. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.js +12 -0
  537. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.js.map +1 -0
  538. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.d.ts +58 -0
  539. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.d.ts.map +1 -0
  540. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.js +12 -0
  541. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.js.map +1 -0
  542. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.d.ts +9 -0
  543. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.d.ts.map +1 -0
  544. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.js +12 -0
  545. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.js.map +1 -0
  546. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.d.ts +9 -0
  547. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.d.ts.map +1 -0
  548. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.js +12 -0
  549. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.js.map +1 -0
  550. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.d.ts +15 -0
  551. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.d.ts.map +1 -0
  552. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.js +12 -0
  553. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.js.map +1 -0
  554. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.d.ts +9 -0
  555. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.d.ts.map +1 -0
  556. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.js +12 -0
  557. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.js.map +1 -0
  558. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.d.ts +25 -0
  559. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.d.ts.map +1 -0
  560. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.js +12 -0
  561. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.js.map +1 -0
  562. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.d.ts +8 -0
  563. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.d.ts.map +1 -0
  564. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.js +12 -0
  565. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.js.map +1 -0
  566. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.d.ts +21 -0
  567. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.d.ts.map +1 -0
  568. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.js +12 -0
  569. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.js.map +1 -0
  570. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.d.ts +21 -0
  571. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.d.ts.map +1 -0
  572. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.js +12 -0
  573. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.js.map +1 -0
  574. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.d.ts +8 -0
  575. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.d.ts.map +1 -0
  576. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.js +12 -0
  577. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.js.map +1 -0
  578. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.d.ts +18 -0
  579. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.d.ts.map +1 -0
  580. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.js +12 -0
  581. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.js.map +1 -0
  582. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.d.ts +18 -0
  583. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.d.ts.map +1 -0
  584. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.js +12 -0
  585. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.js.map +1 -0
  586. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.d.ts +18 -0
  587. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.d.ts.map +1 -0
  588. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.js +12 -0
  589. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.js.map +1 -0
  590. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.d.ts +8 -0
  591. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.d.ts.map +1 -0
  592. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.js +12 -0
  593. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.js.map +1 -0
  594. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.d.ts +12 -0
  595. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.d.ts.map +1 -0
  596. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.js +12 -0
  597. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.js.map +1 -0
  598. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.d.ts +13 -0
  599. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.d.ts.map +1 -0
  600. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.js +12 -0
  601. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.js.map +1 -0
  602. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.d.ts +8 -0
  603. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.d.ts.map +1 -0
  604. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.js +12 -0
  605. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.js.map +1 -0
  606. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.d.ts +8 -0
  607. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.d.ts.map +1 -0
  608. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.js +12 -0
  609. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.js.map +1 -0
  610. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.d.ts +8 -0
  611. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.d.ts.map +1 -0
  612. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js +12 -0
  613. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js.map +1 -0
  614. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.d.ts +17 -0
  615. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.d.ts.map +1 -0
  616. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.js +12 -0
  617. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.js.map +1 -0
  618. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.d.ts +10 -0
  619. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.d.ts.map +1 -0
  620. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.js +12 -0
  621. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.js.map +1 -0
  622. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.d.ts +9 -0
  623. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.d.ts.map +1 -0
  624. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.js +12 -0
  625. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.js.map +1 -0
  626. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.d.ts +13 -0
  627. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.d.ts.map +1 -0
  628. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.js +12 -0
  629. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.js.map +1 -0
  630. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.d.ts +13 -0
  631. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.d.ts.map +1 -0
  632. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.js +12 -0
  633. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.js.map +1 -0
  634. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.d.ts +8 -0
  635. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.d.ts.map +1 -0
  636. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.js +12 -0
  637. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.js.map +1 -0
  638. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.d.ts +8 -0
  639. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.d.ts.map +1 -0
  640. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.js +12 -0
  641. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.js.map +1 -0
  642. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.d.ts +12 -0
  643. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.d.ts.map +1 -0
  644. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.js +12 -0
  645. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.js.map +1 -0
  646. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.d.ts +13 -0
  647. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.d.ts.map +1 -0
  648. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.js +12 -0
  649. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.js.map +1 -0
  650. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.d.ts +12 -0
  651. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.d.ts.map +1 -0
  652. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.js +12 -0
  653. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.js.map +1 -0
  654. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.d.ts +69 -0
  655. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.d.ts.map +1 -0
  656. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.js +12 -0
  657. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.js.map +1 -0
  658. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.d.ts +8 -0
  659. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.d.ts.map +1 -0
  660. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.js +12 -0
  661. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.js.map +1 -0
  662. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.d.ts +8 -0
  663. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.d.ts.map +1 -0
  664. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.js +12 -0
  665. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.js.map +1 -0
  666. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.d.ts +9 -0
  667. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.d.ts.map +1 -0
  668. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.js +12 -0
  669. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.js.map +1 -0
  670. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.d.ts +8 -0
  671. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.d.ts.map +1 -0
  672. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.js +12 -0
  673. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.js.map +1 -0
  674. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.d.ts +14 -0
  675. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.d.ts.map +1 -0
  676. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.js +12 -0
  677. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.js.map +1 -0
  678. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.d.ts +15 -0
  679. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.d.ts.map +1 -0
  680. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js +12 -0
  681. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js.map +1 -0
  682. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.d.ts +14 -0
  683. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.d.ts.map +1 -0
  684. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.js +12 -0
  685. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.js.map +1 -0
  686. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.d.ts +12 -0
  687. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.d.ts.map +1 -0
  688. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.js +12 -0
  689. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.js.map +1 -0
  690. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.d.ts +12 -0
  691. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.d.ts.map +1 -0
  692. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.js +12 -0
  693. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.js.map +1 -0
  694. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.d.ts +20 -0
  695. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.d.ts.map +1 -0
  696. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.js +12 -0
  697. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.js.map +1 -0
  698. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.d.ts +12 -0
  699. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.d.ts.map +1 -0
  700. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.js +12 -0
  701. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.js.map +1 -0
  702. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.d.ts +12 -0
  703. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.d.ts.map +1 -0
  704. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.js +12 -0
  705. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.js.map +1 -0
  706. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.d.ts +35 -0
  707. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.d.ts.map +1 -0
  708. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.js +12 -0
  709. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.js.map +1 -0
  710. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.d.ts +27 -0
  711. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.d.ts.map +1 -0
  712. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.js +12 -0
  713. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.js.map +1 -0
  714. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.d.ts +12 -0
  715. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.d.ts.map +1 -0
  716. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.js +12 -0
  717. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.js.map +1 -0
  718. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.d.ts +8 -0
  719. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.d.ts.map +1 -0
  720. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.js +12 -0
  721. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.js.map +1 -0
  722. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.d.ts +40 -0
  723. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.d.ts.map +1 -0
  724. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.js +12 -0
  725. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.js.map +1 -0
  726. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.d.ts +26 -0
  727. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.d.ts.map +1 -0
  728. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.js +12 -0
  729. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.js.map +1 -0
  730. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.d.ts +8 -0
  731. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.d.ts.map +1 -0
  732. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.js +12 -0
  733. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.js.map +1 -0
  734. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.d.ts +19 -0
  735. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.d.ts.map +1 -0
  736. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.js +12 -0
  737. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.js.map +1 -0
  738. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.d.ts +13 -0
  739. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.d.ts.map +1 -0
  740. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.js +12 -0
  741. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.js.map +1 -0
  742. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.d.ts +20 -0
  743. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.d.ts.map +1 -0
  744. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.js +12 -0
  745. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.js.map +1 -0
  746. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.d.ts +8 -0
  747. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.d.ts.map +1 -0
  748. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.js +12 -0
  749. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.js.map +1 -0
  750. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.d.ts +13 -0
  751. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.d.ts.map +1 -0
  752. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.js +12 -0
  753. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.js.map +1 -0
  754. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.d.ts +13 -0
  755. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.d.ts.map +1 -0
  756. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.js +12 -0
  757. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.js.map +1 -0
  758. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.d.ts +24 -0
  759. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.d.ts.map +1 -0
  760. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.js +12 -0
  761. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.js.map +1 -0
  762. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.d.ts +13 -0
  763. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.d.ts.map +1 -0
  764. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.js +12 -0
  765. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.js.map +1 -0
  766. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.d.ts +34 -0
  767. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.d.ts.map +1 -0
  768. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.js +12 -0
  769. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.js.map +1 -0
  770. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.d.ts +12 -0
  771. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.d.ts.map +1 -0
  772. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.js +12 -0
  773. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.js.map +1 -0
  774. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.d.ts +8 -0
  775. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.d.ts.map +1 -0
  776. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.js +12 -0
  777. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.js.map +1 -0
  778. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.d.ts +8 -0
  779. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.d.ts.map +1 -0
  780. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.js +12 -0
  781. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.js.map +1 -0
  782. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.d.ts +12 -0
  783. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.d.ts.map +1 -0
  784. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.js +12 -0
  785. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.js.map +1 -0
  786. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.d.ts +8 -0
  787. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.d.ts.map +1 -0
  788. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.js +12 -0
  789. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.js.map +1 -0
  790. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.d.ts +8 -0
  791. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.d.ts.map +1 -0
  792. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.js +12 -0
  793. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.js.map +1 -0
  794. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.d.ts +8 -0
  795. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.d.ts.map +1 -0
  796. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.js +12 -0
  797. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.js.map +1 -0
  798. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.d.ts +54 -0
  799. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.d.ts.map +1 -0
  800. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.js +12 -0
  801. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.js.map +1 -0
  802. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.d.ts +8 -0
  803. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.d.ts.map +1 -0
  804. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.js +12 -0
  805. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.js.map +1 -0
  806. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.d.ts +8 -0
  807. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.d.ts.map +1 -0
  808. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.js +12 -0
  809. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.js.map +1 -0
  810. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.d.ts +12 -0
  811. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.d.ts.map +1 -0
  812. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.js +12 -0
  813. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.js.map +1 -0
  814. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.d.ts +33 -0
  815. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.d.ts.map +1 -0
  816. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.js +12 -0
  817. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.js.map +1 -0
  818. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.d.ts +8 -0
  819. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.d.ts.map +1 -0
  820. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.js +12 -0
  821. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.js.map +1 -0
  822. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.d.ts +8 -0
  823. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.d.ts.map +1 -0
  824. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.js +12 -0
  825. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.js.map +1 -0
  826. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.d.ts +15 -0
  827. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.d.ts.map +1 -0
  828. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.js +12 -0
  829. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.js.map +1 -0
  830. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.d.ts +12 -0
  831. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.d.ts.map +1 -0
  832. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.js +12 -0
  833. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.js.map +1 -0
  834. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.d.ts +27 -0
  835. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.d.ts.map +1 -0
  836. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.js +12 -0
  837. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.js.map +1 -0
  838. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.d.ts +8 -0
  839. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.d.ts.map +1 -0
  840. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.js +12 -0
  841. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.js.map +1 -0
  842. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.d.ts +8 -0
  843. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.d.ts.map +1 -0
  844. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.js +12 -0
  845. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.js.map +1 -0
  846. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.d.ts +8 -0
  847. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.d.ts.map +1 -0
  848. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.js +12 -0
  849. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.js.map +1 -0
  850. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.d.ts +8 -0
  851. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.d.ts.map +1 -0
  852. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.js +12 -0
  853. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.js.map +1 -0
  854. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.d.ts +8 -0
  855. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.d.ts.map +1 -0
  856. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.js +12 -0
  857. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.js.map +1 -0
  858. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.d.ts +8 -0
  859. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.d.ts.map +1 -0
  860. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.js +12 -0
  861. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.js.map +1 -0
  862. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.d.ts +8 -0
  863. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.d.ts.map +1 -0
  864. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.js +12 -0
  865. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.js.map +1 -0
  866. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.d.ts +8 -0
  867. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.d.ts.map +1 -0
  868. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.js +12 -0
  869. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.js.map +1 -0
  870. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.d.ts +18 -0
  871. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.d.ts.map +1 -0
  872. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.js +12 -0
  873. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.js.map +1 -0
  874. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.d.ts +14 -0
  875. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.d.ts.map +1 -0
  876. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.js +12 -0
  877. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.js.map +1 -0
  878. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.d.ts +22 -0
  879. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.d.ts.map +1 -0
  880. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.js +12 -0
  881. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.js.map +1 -0
  882. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.d.ts +65 -0
  883. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.d.ts.map +1 -0
  884. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.js +12 -0
  885. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.js.map +1 -0
  886. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.d.ts +12 -0
  887. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.d.ts.map +1 -0
  888. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.js +12 -0
  889. package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.js.map +1 -0
  890. package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.d.ts +13 -0
  891. package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.d.ts.map +1 -0
  892. package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.js +12 -0
  893. package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.js.map +1 -0
  894. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.d.ts +9 -0
  895. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.d.ts.map +1 -0
  896. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.js +12 -0
  897. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.js.map +1 -0
  898. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.d.ts +16 -0
  899. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.d.ts.map +1 -0
  900. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.js +12 -0
  901. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.js.map +1 -0
  902. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.d.ts +27 -0
  903. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.d.ts.map +1 -0
  904. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.js +12 -0
  905. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.js.map +1 -0
  906. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.d.ts +8 -0
  907. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.d.ts.map +1 -0
  908. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.js +12 -0
  909. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.js.map +1 -0
  910. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.d.ts +112 -0
  911. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.d.ts.map +1 -0
  912. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.js +12 -0
  913. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.js.map +1 -0
  914. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.d.ts +10 -0
  915. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.d.ts.map +1 -0
  916. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.js +12 -0
  917. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.js.map +1 -0
  918. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.d.ts +19 -0
  919. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.d.ts.map +1 -0
  920. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.js +12 -0
  921. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.js.map +1 -0
  922. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.d.ts +8 -0
  923. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.d.ts.map +1 -0
  924. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.js +12 -0
  925. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.js.map +1 -0
  926. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.d.ts +8 -0
  927. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.d.ts.map +1 -0
  928. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.js +12 -0
  929. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.js.map +1 -0
  930. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.d.ts +8 -0
  931. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.d.ts.map +1 -0
  932. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.js +12 -0
  933. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.js.map +1 -0
  934. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.d.ts +8 -0
  935. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.d.ts.map +1 -0
  936. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.js +12 -0
  937. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.js.map +1 -0
  938. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.d.ts +8 -0
  939. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.d.ts.map +1 -0
  940. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.js +12 -0
  941. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.js.map +1 -0
  942. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.d.ts +8 -0
  943. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.d.ts.map +1 -0
  944. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.js +12 -0
  945. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.js.map +1 -0
  946. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.d.ts +12 -0
  947. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.d.ts.map +1 -0
  948. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.js +12 -0
  949. package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.js.map +1 -0
  950. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.d.ts +9 -0
  951. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.d.ts.map +1 -0
  952. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.js +12 -0
  953. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.js.map +1 -0
  954. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.d.ts +9 -0
  955. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.d.ts.map +1 -0
  956. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.js +12 -0
  957. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.js.map +1 -0
  958. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.d.ts +9 -0
  959. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.d.ts.map +1 -0
  960. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.js +12 -0
  961. package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.js.map +1 -0
  962. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.d.ts +8 -0
  963. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.d.ts.map +1 -0
  964. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.js +12 -0
  965. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.js.map +1 -0
  966. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.d.ts +28 -0
  967. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.d.ts.map +1 -0
  968. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.js +12 -0
  969. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.js.map +1 -0
  970. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.d.ts +19 -0
  971. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.d.ts.map +1 -0
  972. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.js +12 -0
  973. package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.js.map +1 -0
  974. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.d.ts +31 -0
  975. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.d.ts.map +1 -0
  976. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.js +12 -0
  977. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.js.map +1 -0
  978. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.d.ts +31 -0
  979. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.d.ts.map +1 -0
  980. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.js +12 -0
  981. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.js.map +1 -0
  982. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.d.ts +31 -0
  983. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.d.ts.map +1 -0
  984. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.js +12 -0
  985. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.js.map +1 -0
  986. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.d.ts +12 -0
  987. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.d.ts.map +1 -0
  988. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.js +12 -0
  989. package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.js.map +1 -0
  990. package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.d.ts +23 -0
  991. package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.d.ts.map +1 -0
  992. package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.js +12 -0
  993. package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.js.map +1 -0
  994. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.d.ts +29 -0
  995. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.d.ts.map +1 -0
  996. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.js +12 -0
  997. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.js.map +1 -0
  998. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.d.ts +27 -0
  999. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.d.ts.map +1 -0
  1000. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.js +12 -0
  1001. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.js.map +1 -0
  1002. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.d.ts +26 -0
  1003. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.d.ts.map +1 -0
  1004. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.js +12 -0
  1005. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.js.map +1 -0
  1006. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.d.ts +26 -0
  1007. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.d.ts.map +1 -0
  1008. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.js +12 -0
  1009. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.js.map +1 -0
  1010. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.d.ts +26 -0
  1011. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.d.ts.map +1 -0
  1012. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.js +12 -0
  1013. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.js.map +1 -0
  1014. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.d.ts +26 -0
  1015. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.d.ts.map +1 -0
  1016. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.js +12 -0
  1017. package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.js.map +1 -0
  1018. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.d.ts +8 -0
  1019. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.d.ts.map +1 -0
  1020. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.js +12 -0
  1021. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.js.map +1 -0
  1022. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.d.ts +38 -0
  1023. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.d.ts.map +1 -0
  1024. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.js +12 -0
  1025. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.js.map +1 -0
  1026. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.d.ts +324 -0
  1027. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.d.ts.map +1 -0
  1028. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.js +12 -0
  1029. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.js.map +1 -0
  1030. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.d.ts +250 -0
  1031. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.d.ts.map +1 -0
  1032. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.js +12 -0
  1033. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.js.map +1 -0
  1034. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.d.ts +46 -0
  1035. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.d.ts.map +1 -0
  1036. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.js +12 -0
  1037. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.js.map +1 -0
  1038. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.d.ts +46 -0
  1039. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.d.ts.map +1 -0
  1040. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.js +12 -0
  1041. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.js.map +1 -0
  1042. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.d.ts +8 -0
  1043. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.d.ts.map +1 -0
  1044. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.js +12 -0
  1045. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.js.map +1 -0
  1046. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.d.ts +8 -0
  1047. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.d.ts.map +1 -0
  1048. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.js +12 -0
  1049. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.js.map +1 -0
  1050. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.d.ts +42 -0
  1051. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.d.ts.map +1 -0
  1052. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.js +12 -0
  1053. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.js.map +1 -0
  1054. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.d.ts +8 -0
  1055. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.d.ts.map +1 -0
  1056. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.js +12 -0
  1057. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.js.map +1 -0
  1058. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.d.ts +34 -0
  1059. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.d.ts.map +1 -0
  1060. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.js +12 -0
  1061. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.js.map +1 -0
  1062. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.d.ts +46 -0
  1063. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.d.ts.map +1 -0
  1064. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.js +12 -0
  1065. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.js.map +1 -0
  1066. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.d.ts +9 -0
  1067. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.d.ts.map +1 -0
  1068. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.js +12 -0
  1069. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.js.map +1 -0
  1070. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.d.ts +9 -0
  1071. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.d.ts.map +1 -0
  1072. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.js +12 -0
  1073. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.js.map +1 -0
  1074. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.d.ts +8 -0
  1075. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.d.ts.map +1 -0
  1076. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.js +12 -0
  1077. package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.js.map +1 -0
  1078. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.d.ts +10 -0
  1079. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.d.ts.map +1 -0
  1080. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.js +12 -0
  1081. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.js.map +1 -0
  1082. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.d.ts +8 -0
  1083. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.d.ts.map +1 -0
  1084. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.js +12 -0
  1085. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.js.map +1 -0
  1086. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.d.ts +10 -0
  1087. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.d.ts.map +1 -0
  1088. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.js +12 -0
  1089. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.js.map +1 -0
  1090. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.d.ts +10 -0
  1091. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.d.ts.map +1 -0
  1092. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.js +12 -0
  1093. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.js.map +1 -0
  1094. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.d.ts +9 -0
  1095. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.d.ts.map +1 -0
  1096. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.js +12 -0
  1097. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.js.map +1 -0
  1098. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.d.ts +1001 -0
  1099. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.d.ts.map +1 -0
  1100. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.js +49 -0
  1101. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.js.map +1 -0
  1102. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.d.ts +482 -0
  1103. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.d.ts.map +1 -0
  1104. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.js +31 -0
  1105. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.js.map +1 -0
  1106. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.d.ts +20 -0
  1107. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.d.ts.map +1 -0
  1108. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.js +12 -0
  1109. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.js.map +1 -0
  1110. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.d.ts +8 -0
  1111. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.d.ts.map +1 -0
  1112. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.js +12 -0
  1113. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.js.map +1 -0
  1114. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.d.ts +721 -0
  1115. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.d.ts.map +1 -0
  1116. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.js +38 -0
  1117. package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.js.map +1 -0
  1118. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.d.ts +12 -0
  1119. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.d.ts.map +1 -0
  1120. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.js +12 -0
  1121. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.js.map +1 -0
  1122. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.d.ts +8 -0
  1123. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.d.ts.map +1 -0
  1124. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.js +12 -0
  1125. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.js.map +1 -0
  1126. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.d.ts +8 -0
  1127. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.d.ts.map +1 -0
  1128. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.js +12 -0
  1129. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.js.map +1 -0
  1130. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.d.ts +10 -0
  1131. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.d.ts.map +1 -0
  1132. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.js +12 -0
  1133. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.js.map +1 -0
  1134. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.d.ts +48 -0
  1135. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.d.ts.map +1 -0
  1136. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.js +12 -0
  1137. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.js.map +1 -0
  1138. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.d.ts +8 -0
  1139. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.d.ts.map +1 -0
  1140. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.js +12 -0
  1141. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.js.map +1 -0
  1142. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.d.ts +1016 -0
  1143. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.d.ts.map +1 -0
  1144. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.js +49 -0
  1145. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.js.map +1 -0
  1146. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.d.ts +56 -0
  1147. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.d.ts.map +1 -0
  1148. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.js +12 -0
  1149. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.js.map +1 -0
  1150. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.d.ts +51 -0
  1151. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.d.ts.map +1 -0
  1152. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.js +12 -0
  1153. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.js.map +1 -0
  1154. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.d.ts +12 -0
  1155. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.d.ts.map +1 -0
  1156. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.js +12 -0
  1157. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.js.map +1 -0
  1158. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.d.ts +61 -0
  1159. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.d.ts.map +1 -0
  1160. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.js +12 -0
  1161. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.js.map +1 -0
  1162. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.d.ts +8 -0
  1163. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.d.ts.map +1 -0
  1164. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.js +12 -0
  1165. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.js.map +1 -0
  1166. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.d.ts +8 -0
  1167. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.d.ts.map +1 -0
  1168. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.js +12 -0
  1169. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.js.map +1 -0
  1170. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.d.ts +100 -0
  1171. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.d.ts.map +1 -0
  1172. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.js +12 -0
  1173. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.js.map +1 -0
  1174. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.d.ts +71 -0
  1175. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.d.ts.map +1 -0
  1176. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.js +12 -0
  1177. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.js.map +1 -0
  1178. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.d.ts +8 -0
  1179. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.d.ts.map +1 -0
  1180. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.js +12 -0
  1181. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.js.map +1 -0
  1182. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.d.ts +13 -0
  1183. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.d.ts.map +1 -0
  1184. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.js +12 -0
  1185. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.js.map +1 -0
  1186. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.d.ts +457 -0
  1187. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.d.ts.map +1 -0
  1188. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.js +31 -0
  1189. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.js.map +1 -0
  1190. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.d.ts +46 -0
  1191. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.d.ts.map +1 -0
  1192. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.js +12 -0
  1193. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.js.map +1 -0
  1194. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.d.ts +985 -0
  1195. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.d.ts.map +1 -0
  1196. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.js +49 -0
  1197. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.js.map +1 -0
  1198. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.d.ts +43 -0
  1199. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.d.ts.map +1 -0
  1200. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.js +12 -0
  1201. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.js.map +1 -0
  1202. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.d.ts +43 -0
  1203. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.d.ts.map +1 -0
  1204. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.js +12 -0
  1205. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.js.map +1 -0
  1206. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.d.ts +8 -0
  1207. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.d.ts.map +1 -0
  1208. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.js +12 -0
  1209. package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.js.map +1 -0
  1210. package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.d.ts +13 -0
  1211. package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.d.ts.map +1 -0
  1212. package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.js +12 -0
  1213. package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.js.map +1 -0
  1214. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.d.ts +8 -0
  1215. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.d.ts.map +1 -0
  1216. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.js +12 -0
  1217. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.js.map +1 -0
  1218. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.d.ts +12 -0
  1219. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.d.ts.map +1 -0
  1220. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.js +12 -0
  1221. package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.js.map +1 -0
  1222. package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.d.ts +11 -0
  1223. package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.d.ts.map +1 -0
  1224. package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.js +12 -0
  1225. package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.js.map +1 -0
  1226. package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.d.ts +12 -0
  1227. package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.d.ts.map +1 -0
  1228. package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.js +12 -0
  1229. package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.js.map +1 -0
  1230. package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.d.ts +16 -0
  1231. package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.d.ts.map +1 -0
  1232. package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.js +12 -0
  1233. package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.js.map +1 -0
  1234. package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.d.ts +18 -0
  1235. package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.d.ts.map +1 -0
  1236. package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.js +12 -0
  1237. package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.js.map +1 -0
  1238. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.d.ts +9 -0
  1239. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.d.ts.map +1 -0
  1240. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.js +12 -0
  1241. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.js.map +1 -0
  1242. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.d.ts +8 -0
  1243. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.d.ts.map +1 -0
  1244. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.js +12 -0
  1245. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.js.map +1 -0
  1246. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.d.ts +17 -0
  1247. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.d.ts.map +1 -0
  1248. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.js +12 -0
  1249. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.js.map +1 -0
  1250. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.d.ts +77 -0
  1251. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.d.ts.map +1 -0
  1252. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.js +12 -0
  1253. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.js.map +1 -0
  1254. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.d.ts +8 -0
  1255. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.d.ts.map +1 -0
  1256. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.js +12 -0
  1257. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.js.map +1 -0
  1258. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.d.ts +14 -0
  1259. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.d.ts.map +1 -0
  1260. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.js +12 -0
  1261. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.js.map +1 -0
  1262. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.d.ts +382 -0
  1263. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.d.ts.map +1 -0
  1264. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.js +31 -0
  1265. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.js.map +1 -0
  1266. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.d.ts +611 -0
  1267. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.d.ts.map +1 -0
  1268. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.js +41 -0
  1269. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.js.map +1 -0
  1270. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.d.ts +390 -0
  1271. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.d.ts.map +1 -0
  1272. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.js +31 -0
  1273. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.js.map +1 -0
  1274. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.d.ts +390 -0
  1275. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.d.ts.map +1 -0
  1276. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.js +31 -0
  1277. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.js.map +1 -0
  1278. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.d.ts +533 -0
  1279. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.d.ts.map +1 -0
  1280. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.js +41 -0
  1281. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.js.map +1 -0
  1282. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.d.ts +8 -0
  1283. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.d.ts.map +1 -0
  1284. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.js +12 -0
  1285. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.js.map +1 -0
  1286. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.d.ts +390 -0
  1287. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.d.ts.map +1 -0
  1288. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.js +31 -0
  1289. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.js.map +1 -0
  1290. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.d.ts +390 -0
  1291. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.d.ts.map +1 -0
  1292. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.js +31 -0
  1293. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.js.map +1 -0
  1294. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.d.ts +390 -0
  1295. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.d.ts.map +1 -0
  1296. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.js +31 -0
  1297. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.js.map +1 -0
  1298. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.d.ts +390 -0
  1299. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.d.ts.map +1 -0
  1300. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.js +31 -0
  1301. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.js.map +1 -0
  1302. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.d.ts +390 -0
  1303. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.d.ts.map +1 -0
  1304. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.js +31 -0
  1305. package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.js.map +1 -0
  1306. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.d.ts +8 -0
  1307. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.d.ts.map +1 -0
  1308. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.js +12 -0
  1309. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.js.map +1 -0
  1310. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.d.ts +8 -0
  1311. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.d.ts.map +1 -0
  1312. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.js +12 -0
  1313. package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.js.map +1 -0
  1314. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.d.ts +14 -0
  1315. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.d.ts.map +1 -0
  1316. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.js +12 -0
  1317. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.js.map +1 -0
  1318. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.d.ts +8 -0
  1319. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.d.ts.map +1 -0
  1320. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.js +12 -0
  1321. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.js.map +1 -0
  1322. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.d.ts +46 -0
  1323. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.d.ts.map +1 -0
  1324. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.js +12 -0
  1325. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.js.map +1 -0
  1326. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.d.ts +38 -0
  1327. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.d.ts.map +1 -0
  1328. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.js +12 -0
  1329. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.js.map +1 -0
  1330. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.d.ts +24 -0
  1331. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.d.ts.map +1 -0
  1332. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.js +12 -0
  1333. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.js.map +1 -0
  1334. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.d.ts +45 -0
  1335. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.d.ts.map +1 -0
  1336. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.js +12 -0
  1337. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.js.map +1 -0
  1338. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.d.ts +46 -0
  1339. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.d.ts.map +1 -0
  1340. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.js +12 -0
  1341. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.js.map +1 -0
  1342. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.d.ts +14 -0
  1343. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.d.ts.map +1 -0
  1344. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.js +12 -0
  1345. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.js.map +1 -0
  1346. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.d.ts +14 -0
  1347. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.d.ts.map +1 -0
  1348. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.js +12 -0
  1349. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.js.map +1 -0
  1350. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.d.ts +37 -0
  1351. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.d.ts.map +1 -0
  1352. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.js +12 -0
  1353. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.js.map +1 -0
  1354. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.d.ts +14 -0
  1355. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.d.ts.map +1 -0
  1356. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.js +12 -0
  1357. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.js.map +1 -0
  1358. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.d.ts +16 -0
  1359. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.d.ts.map +1 -0
  1360. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.js +12 -0
  1361. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.js.map +1 -0
  1362. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.d.ts +33 -0
  1363. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.d.ts.map +1 -0
  1364. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.js +12 -0
  1365. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.js.map +1 -0
  1366. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.d.ts +47 -0
  1367. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.d.ts.map +1 -0
  1368. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.js +12 -0
  1369. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.js.map +1 -0
  1370. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.d.ts +15 -0
  1371. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.d.ts.map +1 -0
  1372. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.js +12 -0
  1373. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.js.map +1 -0
  1374. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.d.ts +15 -0
  1375. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.d.ts.map +1 -0
  1376. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.js +12 -0
  1377. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.js.map +1 -0
  1378. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.d.ts +14 -0
  1379. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.d.ts.map +1 -0
  1380. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.js +12 -0
  1381. package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.js.map +1 -0
  1382. package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.d.ts +14 -0
  1383. package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.d.ts.map +1 -0
  1384. package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.js +12 -0
  1385. package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.js.map +1 -0
  1386. package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.d.ts +122 -0
  1387. package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.d.ts.map +1 -0
  1388. package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.js +12 -0
  1389. package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.js.map +1 -0
  1390. package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.d.ts +26 -0
  1391. package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.d.ts.map +1 -0
  1392. package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.js +12 -0
  1393. package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.js.map +1 -0
  1394. package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.d.ts +14 -0
  1395. package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.d.ts.map +1 -0
  1396. package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.js +12 -0
  1397. package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.js.map +1 -0
  1398. package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.d.ts +20 -0
  1399. package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.d.ts.map +1 -0
  1400. package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.js +12 -0
  1401. package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.js.map +1 -0
  1402. package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.d.ts +47 -0
  1403. package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.d.ts.map +1 -0
  1404. package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.js +12 -0
  1405. package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.js.map +1 -0
  1406. package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.d.ts +15 -0
  1407. package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.d.ts.map +1 -0
  1408. package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.js +12 -0
  1409. package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.js.map +1 -0
  1410. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.d.ts +14 -0
  1411. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.d.ts.map +1 -0
  1412. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.js +12 -0
  1413. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.js.map +1 -0
  1414. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.d.ts +49 -0
  1415. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.d.ts.map +1 -0
  1416. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.js +12 -0
  1417. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.js.map +1 -0
  1418. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.d.ts +36 -0
  1419. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.d.ts.map +1 -0
  1420. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.js +12 -0
  1421. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.js.map +1 -0
  1422. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.d.ts +14 -0
  1423. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.d.ts.map +1 -0
  1424. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.js +12 -0
  1425. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.js.map +1 -0
  1426. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.d.ts +64 -0
  1427. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.d.ts.map +1 -0
  1428. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.js +12 -0
  1429. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.js.map +1 -0
  1430. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.d.ts +47 -0
  1431. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.d.ts.map +1 -0
  1432. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.js +12 -0
  1433. package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.js.map +1 -0
  1434. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.d.ts +44 -0
  1435. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.d.ts.map +1 -0
  1436. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.js +12 -0
  1437. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.js.map +1 -0
  1438. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.d.ts +9 -0
  1439. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.d.ts.map +1 -0
  1440. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.js +12 -0
  1441. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.js.map +1 -0
  1442. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.d.ts +39 -0
  1443. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.d.ts.map +1 -0
  1444. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.js +12 -0
  1445. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.js.map +1 -0
  1446. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.d.ts +43 -0
  1447. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.d.ts.map +1 -0
  1448. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.js +12 -0
  1449. package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.js.map +1 -0
  1450. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.d.ts +14 -0
  1451. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.d.ts.map +1 -0
  1452. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.js +12 -0
  1453. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.js.map +1 -0
  1454. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.d.ts +39 -0
  1455. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.d.ts.map +1 -0
  1456. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.js +12 -0
  1457. package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.js.map +1 -0
  1458. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.d.ts +8 -0
  1459. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.d.ts.map +1 -0
  1460. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.js +12 -0
  1461. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.js.map +1 -0
  1462. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.d.ts +397 -0
  1463. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.d.ts.map +1 -0
  1464. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.js +31 -0
  1465. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.js.map +1 -0
  1466. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.d.ts +8 -0
  1467. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.d.ts.map +1 -0
  1468. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.js +12 -0
  1469. package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.js.map +1 -0
  1470. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.d.ts +8 -0
  1471. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.d.ts.map +1 -0
  1472. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.js +12 -0
  1473. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.js.map +1 -0
  1474. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.d.ts +480 -0
  1475. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.d.ts.map +1 -0
  1476. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.js +31 -0
  1477. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.js.map +1 -0
  1478. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.d.ts +999 -0
  1479. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.d.ts.map +1 -0
  1480. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.js +49 -0
  1481. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.js.map +1 -0
  1482. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.d.ts +8 -0
  1483. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.d.ts.map +1 -0
  1484. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.js +12 -0
  1485. package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.js.map +1 -0
  1486. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.d.ts +22 -0
  1487. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.d.ts.map +1 -0
  1488. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.js +12 -0
  1489. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.js.map +1 -0
  1490. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.d.ts +8 -0
  1491. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.d.ts.map +1 -0
  1492. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.js +12 -0
  1493. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.js.map +1 -0
  1494. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.d.ts +8 -0
  1495. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.d.ts.map +1 -0
  1496. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.js +12 -0
  1497. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.js.map +1 -0
  1498. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.d.ts +18 -0
  1499. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.d.ts.map +1 -0
  1500. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.js +12 -0
  1501. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.js.map +1 -0
  1502. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.d.ts +24 -0
  1503. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.d.ts.map +1 -0
  1504. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.js +12 -0
  1505. package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.js.map +1 -0
  1506. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.d.ts +20 -0
  1507. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.d.ts.map +1 -0
  1508. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.js +12 -0
  1509. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.js.map +1 -0
  1510. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.d.ts +1966 -0
  1511. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.d.ts.map +1 -0
  1512. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.js +49 -0
  1513. package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.js.map +1 -0
  1514. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.d.ts +1167 -0
  1515. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.d.ts.map +1 -0
  1516. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.js +68 -0
  1517. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.js.map +1 -0
  1518. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.d.ts +1089 -0
  1519. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.d.ts.map +1 -0
  1520. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.js +49 -0
  1521. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.js.map +1 -0
  1522. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.d.ts +1035 -0
  1523. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.d.ts.map +1 -0
  1524. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.js +68 -0
  1525. package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.js.map +1 -0
  1526. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.d.ts +8 -0
  1527. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.d.ts.map +1 -0
  1528. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.js +12 -0
  1529. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.js.map +1 -0
  1530. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.d.ts +689 -0
  1531. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.d.ts.map +1 -0
  1532. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.js +12 -0
  1533. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.js.map +1 -0
  1534. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.d.ts +8 -0
  1535. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.d.ts.map +1 -0
  1536. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.js +12 -0
  1537. package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.js.map +1 -0
  1538. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.d.ts +32 -0
  1539. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.d.ts.map +1 -0
  1540. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.js +12 -0
  1541. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.js.map +1 -0
  1542. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.d.ts +18 -0
  1543. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.d.ts.map +1 -0
  1544. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.js +12 -0
  1545. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.js.map +1 -0
  1546. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.d.ts +9 -0
  1547. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.d.ts.map +1 -0
  1548. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.js +12 -0
  1549. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.js.map +1 -0
  1550. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.d.ts +34 -0
  1551. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.d.ts.map +1 -0
  1552. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.js +12 -0
  1553. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.js.map +1 -0
  1554. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.d.ts +34 -0
  1555. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.d.ts.map +1 -0
  1556. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.js +12 -0
  1557. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.js.map +1 -0
  1558. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.d.ts +13 -0
  1559. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.d.ts.map +1 -0
  1560. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.js +12 -0
  1561. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.js.map +1 -0
  1562. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.d.ts +44 -0
  1563. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.d.ts.map +1 -0
  1564. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.js +12 -0
  1565. package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.js.map +1 -0
  1566. package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.d.ts +18 -0
  1567. package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.d.ts.map +1 -0
  1568. package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.js +12 -0
  1569. package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.js.map +1 -0
  1570. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.d.ts +33 -0
  1571. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.d.ts.map +1 -0
  1572. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.js +12 -0
  1573. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.js.map +1 -0
  1574. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.d.ts +34 -0
  1575. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.d.ts.map +1 -0
  1576. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.js +12 -0
  1577. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.js.map +1 -0
  1578. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.d.ts +33 -0
  1579. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.d.ts.map +1 -0
  1580. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.js +12 -0
  1581. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.js.map +1 -0
  1582. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.d.ts +34 -0
  1583. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.d.ts.map +1 -0
  1584. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.js +12 -0
  1585. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.js.map +1 -0
  1586. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.d.ts +33 -0
  1587. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.d.ts.map +1 -0
  1588. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.js +12 -0
  1589. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.js.map +1 -0
  1590. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.d.ts +9 -0
  1591. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.d.ts.map +1 -0
  1592. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.js +12 -0
  1593. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.js.map +1 -0
  1594. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.d.ts +33 -0
  1595. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.d.ts.map +1 -0
  1596. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.js +12 -0
  1597. package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.js.map +1 -0
  1598. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.d.ts +73 -0
  1599. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.d.ts.map +1 -0
  1600. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.js +12 -0
  1601. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.js.map +1 -0
  1602. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.d.ts +8 -0
  1603. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.d.ts.map +1 -0
  1604. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.js +12 -0
  1605. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.js.map +1 -0
  1606. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.d.ts +15 -0
  1607. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.d.ts.map +1 -0
  1608. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.js +12 -0
  1609. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.js.map +1 -0
  1610. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.d.ts +26 -0
  1611. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.d.ts.map +1 -0
  1612. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.js +12 -0
  1613. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.js.map +1 -0
  1614. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.d.ts +88 -0
  1615. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.d.ts.map +1 -0
  1616. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.js +12 -0
  1617. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.js.map +1 -0
  1618. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.d.ts +98 -0
  1619. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.d.ts.map +1 -0
  1620. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.js +12 -0
  1621. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.js.map +1 -0
  1622. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.d.ts +76 -0
  1623. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.d.ts.map +1 -0
  1624. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.js +12 -0
  1625. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.js.map +1 -0
  1626. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.d.ts +54 -0
  1627. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.d.ts.map +1 -0
  1628. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.js +12 -0
  1629. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.js.map +1 -0
  1630. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.d.ts +54 -0
  1631. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.d.ts.map +1 -0
  1632. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.js +12 -0
  1633. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.js.map +1 -0
  1634. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.d.ts +8 -0
  1635. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.d.ts.map +1 -0
  1636. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.js +12 -0
  1637. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.js.map +1 -0
  1638. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.d.ts +20 -0
  1639. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.d.ts.map +1 -0
  1640. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.js +12 -0
  1641. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.js.map +1 -0
  1642. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.d.ts +8 -0
  1643. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.d.ts.map +1 -0
  1644. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.js +12 -0
  1645. package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.js.map +1 -0
  1646. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.d.ts +251 -0
  1647. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.d.ts.map +1 -0
  1648. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.js +32 -0
  1649. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.js.map +1 -0
  1650. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.d.ts +251 -0
  1651. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.d.ts.map +1 -0
  1652. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.js +32 -0
  1653. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.js.map +1 -0
  1654. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.d.ts +251 -0
  1655. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.d.ts.map +1 -0
  1656. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.js +32 -0
  1657. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.js.map +1 -0
  1658. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.d.ts +251 -0
  1659. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.d.ts.map +1 -0
  1660. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.js +32 -0
  1661. package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.js.map +1 -0
  1662. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.d.ts +8 -0
  1663. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.d.ts.map +1 -0
  1664. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.js +12 -0
  1665. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.js.map +1 -0
  1666. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.d.ts +8 -0
  1667. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.d.ts.map +1 -0
  1668. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.js +12 -0
  1669. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.js.map +1 -0
  1670. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.d.ts +8 -0
  1671. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.d.ts.map +1 -0
  1672. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.js +12 -0
  1673. package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.js.map +1 -0
  1674. package/slack-bot/node_modules/@slack/web-api/dist/response/index.d.ts +295 -0
  1675. package/slack-bot/node_modules/@slack/web-api/dist/response/index.d.ts.map +1 -0
  1676. package/slack-bot/node_modules/@slack/web-api/dist/response/index.js +3 -0
  1677. package/slack-bot/node_modules/@slack/web-api/dist/response/index.js.map +1 -0
  1678. package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.d.ts +27 -0
  1679. package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.d.ts.map +1 -0
  1680. package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.js +34 -0
  1681. package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.js.map +1 -0
  1682. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/README.md +0 -0
  1683. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.d.ts +100 -0
  1684. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
  1685. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.js +92 -0
  1686. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.js.map +1 -0
  1687. package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/package.json +52 -0
  1688. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/LICENSE +21 -0
  1689. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/README.md +92 -0
  1690. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/index.d.ts +64 -0
  1691. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/index.js +336 -0
  1692. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/package.json +56 -0
  1693. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
  1694. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
  1695. package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
  1696. package/slack-bot/node_modules/@slack/web-api/package.json +92 -0
  1697. package/slack-bot/node_modules/@types/body-parser/LICENSE +21 -0
  1698. package/slack-bot/node_modules/@types/body-parser/README.md +15 -0
  1699. package/slack-bot/node_modules/@types/body-parser/index.d.ts +95 -0
  1700. package/slack-bot/node_modules/@types/body-parser/package.json +64 -0
  1701. package/slack-bot/node_modules/@types/connect/LICENSE +21 -0
  1702. package/slack-bot/node_modules/@types/connect/README.md +15 -0
  1703. package/slack-bot/node_modules/@types/connect/index.d.ts +91 -0
  1704. package/slack-bot/node_modules/@types/connect/package.json +32 -0
  1705. package/slack-bot/node_modules/@types/express/LICENSE +21 -0
  1706. package/slack-bot/node_modules/@types/express/README.md +15 -0
  1707. package/slack-bot/node_modules/@types/express/index.d.ts +128 -0
  1708. package/slack-bot/node_modules/@types/express/package.json +46 -0
  1709. package/slack-bot/node_modules/@types/express-serve-static-core/LICENSE +21 -0
  1710. package/slack-bot/node_modules/@types/express-serve-static-core/README.md +15 -0
  1711. package/slack-bot/node_modules/@types/express-serve-static-core/index.d.ts +1281 -0
  1712. package/slack-bot/node_modules/@types/express-serve-static-core/package.json +51 -0
  1713. package/slack-bot/node_modules/@types/http-errors/LICENSE +21 -0
  1714. package/slack-bot/node_modules/@types/http-errors/README.md +15 -0
  1715. package/slack-bot/node_modules/@types/http-errors/index.d.ts +77 -0
  1716. package/slack-bot/node_modules/@types/http-errors/package.json +36 -0
  1717. package/slack-bot/node_modules/@types/is-stream/LICENSE +21 -0
  1718. package/slack-bot/node_modules/@types/is-stream/README.md +16 -0
  1719. package/slack-bot/node_modules/@types/is-stream/index.d.ts +18 -0
  1720. package/slack-bot/node_modules/@types/is-stream/package.json +24 -0
  1721. package/slack-bot/node_modules/@types/jsonwebtoken/LICENSE +21 -0
  1722. package/slack-bot/node_modules/@types/jsonwebtoken/README.md +16 -0
  1723. package/slack-bot/node_modules/@types/jsonwebtoken/index.d.ts +247 -0
  1724. package/slack-bot/node_modules/@types/jsonwebtoken/package.json +82 -0
  1725. package/slack-bot/node_modules/@types/mime/LICENSE +21 -0
  1726. package/slack-bot/node_modules/@types/mime/Mime.d.ts +10 -0
  1727. package/slack-bot/node_modules/@types/mime/README.md +15 -0
  1728. package/slack-bot/node_modules/@types/mime/index.d.ts +31 -0
  1729. package/slack-bot/node_modules/@types/mime/lite.d.ts +7 -0
  1730. package/slack-bot/node_modules/@types/mime/package.json +30 -0
  1731. package/slack-bot/node_modules/@types/node/LICENSE +21 -0
  1732. package/slack-bot/node_modules/@types/node/README.md +15 -0
  1733. package/slack-bot/node_modules/@types/node/assert/strict.d.ts +105 -0
  1734. package/slack-bot/node_modules/@types/node/assert.d.ts +955 -0
  1735. package/slack-bot/node_modules/@types/node/async_hooks.d.ts +623 -0
  1736. package/slack-bot/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  1737. package/slack-bot/node_modules/@types/node/buffer.d.ts +1810 -0
  1738. package/slack-bot/node_modules/@types/node/child_process.d.ts +1433 -0
  1739. package/slack-bot/node_modules/@types/node/cluster.d.ts +486 -0
  1740. package/slack-bot/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  1741. package/slack-bot/node_modules/@types/node/console.d.ts +151 -0
  1742. package/slack-bot/node_modules/@types/node/constants.d.ts +20 -0
  1743. package/slack-bot/node_modules/@types/node/crypto.d.ts +4065 -0
  1744. package/slack-bot/node_modules/@types/node/dgram.d.ts +564 -0
  1745. package/slack-bot/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
  1746. package/slack-bot/node_modules/@types/node/dns/promises.d.ts +503 -0
  1747. package/slack-bot/node_modules/@types/node/dns.d.ts +922 -0
  1748. package/slack-bot/node_modules/@types/node/domain.d.ts +166 -0
  1749. package/slack-bot/node_modules/@types/node/events.d.ts +1047 -0
  1750. package/slack-bot/node_modules/@types/node/fs/promises.d.ts +1329 -0
  1751. package/slack-bot/node_modules/@types/node/fs.d.ts +4678 -0
  1752. package/slack-bot/node_modules/@types/node/globals.d.ts +150 -0
  1753. package/slack-bot/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  1754. package/slack-bot/node_modules/@types/node/http.d.ts +2188 -0
  1755. package/slack-bot/node_modules/@types/node/http2.d.ts +2480 -0
  1756. package/slack-bot/node_modules/@types/node/https.d.ts +405 -0
  1757. package/slack-bot/node_modules/@types/node/index.d.ts +115 -0
  1758. package/slack-bot/node_modules/@types/node/inspector/promises.d.ts +41 -0
  1759. package/slack-bot/node_modules/@types/node/inspector.d.ts +269 -0
  1760. package/slack-bot/node_modules/@types/node/inspector.generated.d.ts +4401 -0
  1761. package/slack-bot/node_modules/@types/node/module.d.ts +757 -0
  1762. package/slack-bot/node_modules/@types/node/net.d.ts +933 -0
  1763. package/slack-bot/node_modules/@types/node/os.d.ts +507 -0
  1764. package/slack-bot/node_modules/@types/node/package.json +155 -0
  1765. package/slack-bot/node_modules/@types/node/path/posix.d.ts +8 -0
  1766. package/slack-bot/node_modules/@types/node/path/win32.d.ts +8 -0
  1767. package/slack-bot/node_modules/@types/node/path.d.ts +187 -0
  1768. package/slack-bot/node_modules/@types/node/perf_hooks.d.ts +643 -0
  1769. package/slack-bot/node_modules/@types/node/process.d.ts +2175 -0
  1770. package/slack-bot/node_modules/@types/node/punycode.d.ts +117 -0
  1771. package/slack-bot/node_modules/@types/node/querystring.d.ts +152 -0
  1772. package/slack-bot/node_modules/@types/node/quic.d.ts +910 -0
  1773. package/slack-bot/node_modules/@types/node/readline/promises.d.ts +161 -0
  1774. package/slack-bot/node_modules/@types/node/readline.d.ts +542 -0
  1775. package/slack-bot/node_modules/@types/node/repl.d.ts +415 -0
  1776. package/slack-bot/node_modules/@types/node/sea.d.ts +162 -0
  1777. package/slack-bot/node_modules/@types/node/sqlite.d.ts +1065 -0
  1778. package/slack-bot/node_modules/@types/node/stream/consumers.d.ts +38 -0
  1779. package/slack-bot/node_modules/@types/node/stream/promises.d.ts +211 -0
  1780. package/slack-bot/node_modules/@types/node/stream/web.d.ts +296 -0
  1781. package/slack-bot/node_modules/@types/node/stream.d.ts +1770 -0
  1782. package/slack-bot/node_modules/@types/node/string_decoder.d.ts +67 -0
  1783. package/slack-bot/node_modules/@types/node/test/reporters.d.ts +96 -0
  1784. package/slack-bot/node_modules/@types/node/test.d.ts +2275 -0
  1785. package/slack-bot/node_modules/@types/node/timers/promises.d.ts +108 -0
  1786. package/slack-bot/node_modules/@types/node/timers.d.ts +159 -0
  1787. package/slack-bot/node_modules/@types/node/tls.d.ts +1203 -0
  1788. package/slack-bot/node_modules/@types/node/trace_events.d.ts +197 -0
  1789. package/slack-bot/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  1790. package/slack-bot/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  1791. package/slack-bot/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  1792. package/slack-bot/node_modules/@types/node/ts5.6/index.d.ts +117 -0
  1793. package/slack-bot/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  1794. package/slack-bot/node_modules/@types/node/ts5.7/index.d.ts +117 -0
  1795. package/slack-bot/node_modules/@types/node/tty.d.ts +250 -0
  1796. package/slack-bot/node_modules/@types/node/url.d.ts +541 -0
  1797. package/slack-bot/node_modules/@types/node/util/types.d.ts +558 -0
  1798. package/slack-bot/node_modules/@types/node/util.d.ts +1687 -0
  1799. package/slack-bot/node_modules/@types/node/v8.d.ts +988 -0
  1800. package/slack-bot/node_modules/@types/node/vm.d.ts +1208 -0
  1801. package/slack-bot/node_modules/@types/node/wasi.d.ts +202 -0
  1802. package/slack-bot/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  1803. package/slack-bot/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  1804. package/slack-bot/node_modules/@types/node/web-globals/console.d.ts +9 -0
  1805. package/slack-bot/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  1806. package/slack-bot/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  1807. package/slack-bot/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  1808. package/slack-bot/node_modules/@types/node/web-globals/events.d.ts +106 -0
  1809. package/slack-bot/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  1810. package/slack-bot/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  1811. package/slack-bot/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  1812. package/slack-bot/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  1813. package/slack-bot/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  1814. package/slack-bot/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  1815. package/slack-bot/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  1816. package/slack-bot/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  1817. package/slack-bot/node_modules/@types/node/web-globals/url.d.ts +24 -0
  1818. package/slack-bot/node_modules/@types/node/worker_threads.d.ts +717 -0
  1819. package/slack-bot/node_modules/@types/node/zlib.d.ts +682 -0
  1820. package/slack-bot/node_modules/@types/promise.allsettled/LICENSE +21 -0
  1821. package/slack-bot/node_modules/@types/promise.allsettled/README.md +15 -0
  1822. package/slack-bot/node_modules/@types/promise.allsettled/auto.d.ts +5 -0
  1823. package/slack-bot/node_modules/@types/promise.allsettled/implementation.d.ts +12 -0
  1824. package/slack-bot/node_modules/@types/promise.allsettled/index.d.ts +27 -0
  1825. package/slack-bot/node_modules/@types/promise.allsettled/package.json +35 -0
  1826. package/slack-bot/node_modules/@types/promise.allsettled/polyfill.d.ts +5 -0
  1827. package/slack-bot/node_modules/@types/promise.allsettled/requirePromise.d.ts +3 -0
  1828. package/slack-bot/node_modules/@types/promise.allsettled/shim.d.ts +5 -0
  1829. package/slack-bot/node_modules/@types/promise.allsettled/types.d.ts +14 -0
  1830. package/slack-bot/node_modules/@types/qs/LICENSE +21 -0
  1831. package/slack-bot/node_modules/@types/qs/README.md +15 -0
  1832. package/slack-bot/node_modules/@types/qs/index.d.ts +83 -0
  1833. package/slack-bot/node_modules/@types/qs/package.json +66 -0
  1834. package/slack-bot/node_modules/@types/range-parser/LICENSE +21 -0
  1835. package/slack-bot/node_modules/@types/range-parser/README.md +53 -0
  1836. package/slack-bot/node_modules/@types/range-parser/index.d.ts +34 -0
  1837. package/slack-bot/node_modules/@types/range-parser/package.json +25 -0
  1838. package/slack-bot/node_modules/@types/retry/LICENSE +21 -0
  1839. package/slack-bot/node_modules/@types/retry/README.md +16 -0
  1840. package/slack-bot/node_modules/@types/retry/index.d.ts +151 -0
  1841. package/slack-bot/node_modules/@types/retry/package.json +28 -0
  1842. package/slack-bot/node_modules/@types/send/LICENSE +21 -0
  1843. package/slack-bot/node_modules/@types/send/README.md +15 -0
  1844. package/slack-bot/node_modules/@types/send/index.d.ts +187 -0
  1845. package/slack-bot/node_modules/@types/send/package.json +38 -0
  1846. package/slack-bot/node_modules/@types/serve-static/LICENSE +21 -0
  1847. package/slack-bot/node_modules/@types/serve-static/README.md +15 -0
  1848. package/slack-bot/node_modules/@types/serve-static/index.d.ts +107 -0
  1849. package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/LICENSE +21 -0
  1850. package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/README.md +15 -0
  1851. package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/index.d.ts +225 -0
  1852. package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/package.json +39 -0
  1853. package/slack-bot/node_modules/@types/serve-static/package.json +45 -0
  1854. package/slack-bot/node_modules/@types/tsscmp/LICENSE +21 -0
  1855. package/slack-bot/node_modules/@types/tsscmp/README.md +23 -0
  1856. package/slack-bot/node_modules/@types/tsscmp/index.d.ts +4 -0
  1857. package/slack-bot/node_modules/@types/tsscmp/package.json +25 -0
  1858. package/slack-bot/node_modules/@types/ws/LICENSE +21 -0
  1859. package/slack-bot/node_modules/@types/ws/README.md +16 -0
  1860. package/slack-bot/node_modules/@types/ws/index.d.ts +353 -0
  1861. package/slack-bot/node_modules/@types/ws/package.json +57 -0
  1862. package/slack-bot/node_modules/accepts/HISTORY.md +243 -0
  1863. package/slack-bot/node_modules/accepts/LICENSE +23 -0
  1864. package/slack-bot/node_modules/accepts/README.md +140 -0
  1865. package/slack-bot/node_modules/accepts/index.js +238 -0
  1866. package/slack-bot/node_modules/accepts/package.json +47 -0
  1867. package/slack-bot/node_modules/array-buffer-byte-length/.eslintrc +9 -0
  1868. package/slack-bot/node_modules/array-buffer-byte-length/.github/FUNDING.yml +12 -0
  1869. package/slack-bot/node_modules/array-buffer-byte-length/.nycrc +13 -0
  1870. package/slack-bot/node_modules/array-buffer-byte-length/CHANGELOG.md +43 -0
  1871. package/slack-bot/node_modules/array-buffer-byte-length/LICENSE +21 -0
  1872. package/slack-bot/node_modules/array-buffer-byte-length/README.md +40 -0
  1873. package/slack-bot/node_modules/array-buffer-byte-length/index.d.ts +4 -0
  1874. package/slack-bot/node_modules/array-buffer-byte-length/index.js +14 -0
  1875. package/slack-bot/node_modules/array-buffer-byte-length/package.json +94 -0
  1876. package/slack-bot/node_modules/array-buffer-byte-length/test/index.js +29 -0
  1877. package/slack-bot/node_modules/array-buffer-byte-length/tsconfig.json +9 -0
  1878. package/slack-bot/node_modules/array-flatten/LICENSE +21 -0
  1879. package/slack-bot/node_modules/array-flatten/README.md +43 -0
  1880. package/slack-bot/node_modules/array-flatten/array-flatten.js +64 -0
  1881. package/slack-bot/node_modules/array-flatten/package.json +39 -0
  1882. package/slack-bot/node_modules/array.prototype.map/.editorconfig +20 -0
  1883. package/slack-bot/node_modules/array.prototype.map/.eslintrc +36 -0
  1884. package/slack-bot/node_modules/array.prototype.map/.nycrc +9 -0
  1885. package/slack-bot/node_modules/array.prototype.map/CHANGELOG.md +126 -0
  1886. package/slack-bot/node_modules/array.prototype.map/LICENSE +21 -0
  1887. package/slack-bot/node_modules/array.prototype.map/README.md +66 -0
  1888. package/slack-bot/node_modules/array.prototype.map/auto.js +3 -0
  1889. package/slack-bot/node_modules/array.prototype.map/implementation.js +52 -0
  1890. package/slack-bot/node_modules/array.prototype.map/index.js +26 -0
  1891. package/slack-bot/node_modules/array.prototype.map/package.json +84 -0
  1892. package/slack-bot/node_modules/array.prototype.map/polyfill.js +10 -0
  1893. package/slack-bot/node_modules/array.prototype.map/shim.js +14 -0
  1894. package/slack-bot/node_modules/array.prototype.map/test/implementation.js +51 -0
  1895. package/slack-bot/node_modules/array.prototype.map/test/index.js +18 -0
  1896. package/slack-bot/node_modules/array.prototype.map/test/shimmed.js +67 -0
  1897. package/slack-bot/node_modules/array.prototype.map/test/tests.js +186 -0
  1898. package/slack-bot/node_modules/arraybuffer.prototype.slice/.editorconfig +13 -0
  1899. package/slack-bot/node_modules/arraybuffer.prototype.slice/.eslintrc +34 -0
  1900. package/slack-bot/node_modules/arraybuffer.prototype.slice/.nycrc +9 -0
  1901. package/slack-bot/node_modules/arraybuffer.prototype.slice/CHANGELOG.md +52 -0
  1902. package/slack-bot/node_modules/arraybuffer.prototype.slice/LICENSE +21 -0
  1903. package/slack-bot/node_modules/arraybuffer.prototype.slice/README.md +61 -0
  1904. package/slack-bot/node_modules/arraybuffer.prototype.slice/auto.js +3 -0
  1905. package/slack-bot/node_modules/arraybuffer.prototype.slice/implementation.js +84 -0
  1906. package/slack-bot/node_modules/arraybuffer.prototype.slice/index.js +18 -0
  1907. package/slack-bot/node_modules/arraybuffer.prototype.slice/package.json +102 -0
  1908. package/slack-bot/node_modules/arraybuffer.prototype.slice/polyfill.js +21 -0
  1909. package/slack-bot/node_modules/arraybuffer.prototype.slice/shim.js +18 -0
  1910. package/slack-bot/node_modules/arraybuffer.prototype.slice/test/implementation.js +32 -0
  1911. package/slack-bot/node_modules/arraybuffer.prototype.slice/test/index.js +29 -0
  1912. package/slack-bot/node_modules/arraybuffer.prototype.slice/test/shimmed.js +54 -0
  1913. package/slack-bot/node_modules/arraybuffer.prototype.slice/test/tests.js +81 -0
  1914. package/slack-bot/node_modules/async-function/.eslintrc +16 -0
  1915. package/slack-bot/node_modules/async-function/.github/FUNDING.yml +12 -0
  1916. package/slack-bot/node_modules/async-function/.nycrc +9 -0
  1917. package/slack-bot/node_modules/async-function/CHANGELOG.md +16 -0
  1918. package/slack-bot/node_modules/async-function/LICENSE +21 -0
  1919. package/slack-bot/node_modules/async-function/README.md +51 -0
  1920. package/slack-bot/node_modules/async-function/index.d.mts +3 -0
  1921. package/slack-bot/node_modules/async-function/index.d.ts +13 -0
  1922. package/slack-bot/node_modules/async-function/index.js +8 -0
  1923. package/slack-bot/node_modules/async-function/index.mjs +4 -0
  1924. package/slack-bot/node_modules/async-function/legacy.js +18 -0
  1925. package/slack-bot/node_modules/async-function/package.json +86 -0
  1926. package/slack-bot/node_modules/async-function/require.mjs +5 -0
  1927. package/slack-bot/node_modules/async-function/test/index.js +40 -0
  1928. package/slack-bot/node_modules/async-function/tsconfig.json +9 -0
  1929. package/slack-bot/node_modules/asynckit/LICENSE +21 -0
  1930. package/slack-bot/node_modules/asynckit/README.md +233 -0
  1931. package/slack-bot/node_modules/asynckit/bench.js +76 -0
  1932. package/slack-bot/node_modules/asynckit/index.js +6 -0
  1933. package/slack-bot/node_modules/asynckit/lib/abort.js +29 -0
  1934. package/slack-bot/node_modules/asynckit/lib/async.js +34 -0
  1935. package/slack-bot/node_modules/asynckit/lib/defer.js +26 -0
  1936. package/slack-bot/node_modules/asynckit/lib/iterate.js +75 -0
  1937. package/slack-bot/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  1938. package/slack-bot/node_modules/asynckit/lib/readable_parallel.js +25 -0
  1939. package/slack-bot/node_modules/asynckit/lib/readable_serial.js +25 -0
  1940. package/slack-bot/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  1941. package/slack-bot/node_modules/asynckit/lib/state.js +37 -0
  1942. package/slack-bot/node_modules/asynckit/lib/streamify.js +141 -0
  1943. package/slack-bot/node_modules/asynckit/lib/terminator.js +29 -0
  1944. package/slack-bot/node_modules/asynckit/package.json +63 -0
  1945. package/slack-bot/node_modules/asynckit/parallel.js +43 -0
  1946. package/slack-bot/node_modules/asynckit/serial.js +17 -0
  1947. package/slack-bot/node_modules/asynckit/serialOrdered.js +75 -0
  1948. package/slack-bot/node_modules/asynckit/stream.js +21 -0
  1949. package/slack-bot/node_modules/available-typed-arrays/.eslintrc +5 -0
  1950. package/slack-bot/node_modules/available-typed-arrays/.github/FUNDING.yml +12 -0
  1951. package/slack-bot/node_modules/available-typed-arrays/.nycrc +9 -0
  1952. package/slack-bot/node_modules/available-typed-arrays/CHANGELOG.md +100 -0
  1953. package/slack-bot/node_modules/available-typed-arrays/LICENSE +21 -0
  1954. package/slack-bot/node_modules/available-typed-arrays/README.md +55 -0
  1955. package/slack-bot/node_modules/available-typed-arrays/index.d.ts +8 -0
  1956. package/slack-bot/node_modules/available-typed-arrays/index.js +17 -0
  1957. package/slack-bot/node_modules/available-typed-arrays/package.json +93 -0
  1958. package/slack-bot/node_modules/available-typed-arrays/test/index.js +18 -0
  1959. package/slack-bot/node_modules/available-typed-arrays/tsconfig.json +49 -0
  1960. package/slack-bot/node_modules/axios/CHANGELOG.md +1416 -0
  1961. package/slack-bot/node_modules/axios/LICENSE +7 -0
  1962. package/slack-bot/node_modules/axios/MIGRATION_GUIDE.md +877 -0
  1963. package/slack-bot/node_modules/axios/README.md +1921 -0
  1964. package/slack-bot/node_modules/axios/dist/axios.js +4463 -0
  1965. package/slack-bot/node_modules/axios/dist/axios.js.map +1 -0
  1966. package/slack-bot/node_modules/axios/dist/axios.min.js +5 -0
  1967. package/slack-bot/node_modules/axios/dist/axios.min.js.map +1 -0
  1968. package/slack-bot/node_modules/axios/dist/browser/axios.cjs +4239 -0
  1969. package/slack-bot/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  1970. package/slack-bot/node_modules/axios/dist/esm/axios.js +4262 -0
  1971. package/slack-bot/node_modules/axios/dist/esm/axios.js.map +1 -0
  1972. package/slack-bot/node_modules/axios/dist/esm/axios.min.js +3 -0
  1973. package/slack-bot/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  1974. package/slack-bot/node_modules/axios/dist/node/axios.cjs +5643 -0
  1975. package/slack-bot/node_modules/axios/dist/node/axios.cjs.map +1 -0
  1976. package/slack-bot/node_modules/axios/index.d.cts +716 -0
  1977. package/slack-bot/node_modules/axios/index.d.ts +810 -0
  1978. package/slack-bot/node_modules/axios/index.js +43 -0
  1979. package/slack-bot/node_modules/axios/lib/adapters/README.md +36 -0
  1980. package/slack-bot/node_modules/axios/lib/adapters/adapters.js +130 -0
  1981. package/slack-bot/node_modules/axios/lib/adapters/fetch.js +334 -0
  1982. package/slack-bot/node_modules/axios/lib/adapters/http.js +949 -0
  1983. package/slack-bot/node_modules/axios/lib/adapters/xhr.js +222 -0
  1984. package/slack-bot/node_modules/axios/lib/axios.js +89 -0
  1985. package/slack-bot/node_modules/axios/lib/cancel/CancelToken.js +135 -0
  1986. package/slack-bot/node_modules/axios/lib/cancel/CanceledError.js +22 -0
  1987. package/slack-bot/node_modules/axios/lib/cancel/isCancel.js +5 -0
  1988. package/slack-bot/node_modules/axios/lib/core/Axios.js +263 -0
  1989. package/slack-bot/node_modules/axios/lib/core/AxiosError.js +90 -0
  1990. package/slack-bot/node_modules/axios/lib/core/AxiosHeaders.js +344 -0
  1991. package/slack-bot/node_modules/axios/lib/core/InterceptorManager.js +72 -0
  1992. package/slack-bot/node_modules/axios/lib/core/README.md +8 -0
  1993. package/slack-bot/node_modules/axios/lib/core/buildFullPath.js +22 -0
  1994. package/slack-bot/node_modules/axios/lib/core/dispatchRequest.js +77 -0
  1995. package/slack-bot/node_modules/axios/lib/core/mergeConfig.js +107 -0
  1996. package/slack-bot/node_modules/axios/lib/core/settle.js +31 -0
  1997. package/slack-bot/node_modules/axios/lib/core/transformData.js +28 -0
  1998. package/slack-bot/node_modules/axios/lib/defaults/index.js +172 -0
  1999. package/slack-bot/node_modules/axios/lib/defaults/transitional.js +8 -0
  2000. package/slack-bot/node_modules/axios/lib/env/README.md +3 -0
  2001. package/slack-bot/node_modules/axios/lib/env/classes/FormData.js +2 -0
  2002. package/slack-bot/node_modules/axios/lib/env/data.js +1 -0
  2003. package/slack-bot/node_modules/axios/lib/helpers/AxiosTransformStream.js +156 -0
  2004. package/slack-bot/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +62 -0
  2005. package/slack-bot/node_modules/axios/lib/helpers/HttpStatusCode.js +77 -0
  2006. package/slack-bot/node_modules/axios/lib/helpers/README.md +7 -0
  2007. package/slack-bot/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +29 -0
  2008. package/slack-bot/node_modules/axios/lib/helpers/bind.js +14 -0
  2009. package/slack-bot/node_modules/axios/lib/helpers/buildURL.js +66 -0
  2010. package/slack-bot/node_modules/axios/lib/helpers/callbackify.js +18 -0
  2011. package/slack-bot/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  2012. package/slack-bot/node_modules/axios/lib/helpers/composeSignals.js +56 -0
  2013. package/slack-bot/node_modules/axios/lib/helpers/cookies.js +48 -0
  2014. package/slack-bot/node_modules/axios/lib/helpers/deprecatedMethod.js +31 -0
  2015. package/slack-bot/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
  2016. package/slack-bot/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  2017. package/slack-bot/node_modules/axios/lib/helpers/formDataToStream.js +118 -0
  2018. package/slack-bot/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  2019. package/slack-bot/node_modules/axios/lib/helpers/isAbsoluteURL.js +19 -0
  2020. package/slack-bot/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  2021. package/slack-bot/node_modules/axios/lib/helpers/isURLSameOrigin.js +16 -0
  2022. package/slack-bot/node_modules/axios/lib/helpers/null.js +2 -0
  2023. package/slack-bot/node_modules/axios/lib/helpers/parseHeaders.js +69 -0
  2024. package/slack-bot/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  2025. package/slack-bot/node_modules/axios/lib/helpers/progressEventReducer.js +51 -0
  2026. package/slack-bot/node_modules/axios/lib/helpers/readBlob.js +15 -0
  2027. package/slack-bot/node_modules/axios/lib/helpers/resolveConfig.js +70 -0
  2028. package/slack-bot/node_modules/axios/lib/helpers/speedometer.js +55 -0
  2029. package/slack-bot/node_modules/axios/lib/helpers/spread.js +28 -0
  2030. package/slack-bot/node_modules/axios/lib/helpers/throttle.js +44 -0
  2031. package/slack-bot/node_modules/axios/lib/helpers/toFormData.js +241 -0
  2032. package/slack-bot/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
  2033. package/slack-bot/node_modules/axios/lib/helpers/trackStream.js +89 -0
  2034. package/slack-bot/node_modules/axios/lib/helpers/validator.js +110 -0
  2035. package/slack-bot/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  2036. package/slack-bot/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  2037. package/slack-bot/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  2038. package/slack-bot/node_modules/axios/lib/platform/browser/index.js +13 -0
  2039. package/slack-bot/node_modules/axios/lib/platform/common/utils.js +52 -0
  2040. package/slack-bot/node_modules/axios/lib/platform/index.js +7 -0
  2041. package/slack-bot/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  2042. package/slack-bot/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  2043. package/slack-bot/node_modules/axios/lib/platform/node/index.js +37 -0
  2044. package/slack-bot/node_modules/axios/lib/utils.js +919 -0
  2045. package/slack-bot/node_modules/axios/node_modules/form-data/CHANGELOG.md +659 -0
  2046. package/slack-bot/node_modules/axios/node_modules/form-data/License +19 -0
  2047. package/slack-bot/node_modules/axios/node_modules/form-data/README.md +355 -0
  2048. package/slack-bot/node_modules/axios/node_modules/form-data/index.d.ts +62 -0
  2049. package/slack-bot/node_modules/axios/node_modules/form-data/lib/browser.js +4 -0
  2050. package/slack-bot/node_modules/axios/node_modules/form-data/lib/form_data.js +494 -0
  2051. package/slack-bot/node_modules/axios/node_modules/form-data/lib/populate.js +10 -0
  2052. package/slack-bot/node_modules/axios/node_modules/form-data/package.json +82 -0
  2053. package/slack-bot/node_modules/axios/package.json +226 -0
  2054. package/slack-bot/node_modules/body-parser/HISTORY.md +680 -0
  2055. package/slack-bot/node_modules/body-parser/LICENSE +23 -0
  2056. package/slack-bot/node_modules/body-parser/README.md +476 -0
  2057. package/slack-bot/node_modules/body-parser/index.js +156 -0
  2058. package/slack-bot/node_modules/body-parser/lib/read.js +205 -0
  2059. package/slack-bot/node_modules/body-parser/lib/types/json.js +247 -0
  2060. package/slack-bot/node_modules/body-parser/lib/types/raw.js +101 -0
  2061. package/slack-bot/node_modules/body-parser/lib/types/text.js +121 -0
  2062. package/slack-bot/node_modules/body-parser/lib/types/urlencoded.js +300 -0
  2063. package/slack-bot/node_modules/body-parser/package.json +55 -0
  2064. package/slack-bot/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  2065. package/slack-bot/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  2066. package/slack-bot/node_modules/buffer-equal-constant-time/README.md +50 -0
  2067. package/slack-bot/node_modules/buffer-equal-constant-time/index.js +41 -0
  2068. package/slack-bot/node_modules/buffer-equal-constant-time/package.json +21 -0
  2069. package/slack-bot/node_modules/buffer-equal-constant-time/test.js +42 -0
  2070. package/slack-bot/node_modules/bytes/History.md +97 -0
  2071. package/slack-bot/node_modules/bytes/LICENSE +23 -0
  2072. package/slack-bot/node_modules/bytes/Readme.md +152 -0
  2073. package/slack-bot/node_modules/bytes/index.js +170 -0
  2074. package/slack-bot/node_modules/bytes/package.json +42 -0
  2075. package/slack-bot/node_modules/call-bind/.eslintignore +1 -0
  2076. package/slack-bot/node_modules/call-bind/.eslintrc +16 -0
  2077. package/slack-bot/node_modules/call-bind/.github/FUNDING.yml +12 -0
  2078. package/slack-bot/node_modules/call-bind/.nycrc +9 -0
  2079. package/slack-bot/node_modules/call-bind/CHANGELOG.md +106 -0
  2080. package/slack-bot/node_modules/call-bind/LICENSE +21 -0
  2081. package/slack-bot/node_modules/call-bind/README.md +64 -0
  2082. package/slack-bot/node_modules/call-bind/callBound.js +15 -0
  2083. package/slack-bot/node_modules/call-bind/index.js +24 -0
  2084. package/slack-bot/node_modules/call-bind/package.json +93 -0
  2085. package/slack-bot/node_modules/call-bind/test/callBound.js +54 -0
  2086. package/slack-bot/node_modules/call-bind/test/index.js +74 -0
  2087. package/slack-bot/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  2088. package/slack-bot/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  2089. package/slack-bot/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  2090. package/slack-bot/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  2091. package/slack-bot/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  2092. package/slack-bot/node_modules/call-bind-apply-helpers/README.md +62 -0
  2093. package/slack-bot/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  2094. package/slack-bot/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  2095. package/slack-bot/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  2096. package/slack-bot/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  2097. package/slack-bot/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  2098. package/slack-bot/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  2099. package/slack-bot/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  2100. package/slack-bot/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  2101. package/slack-bot/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  2102. package/slack-bot/node_modules/call-bind-apply-helpers/index.js +15 -0
  2103. package/slack-bot/node_modules/call-bind-apply-helpers/package.json +85 -0
  2104. package/slack-bot/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  2105. package/slack-bot/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  2106. package/slack-bot/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  2107. package/slack-bot/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  2108. package/slack-bot/node_modules/call-bound/.eslintrc +13 -0
  2109. package/slack-bot/node_modules/call-bound/.github/FUNDING.yml +12 -0
  2110. package/slack-bot/node_modules/call-bound/.nycrc +9 -0
  2111. package/slack-bot/node_modules/call-bound/CHANGELOG.md +42 -0
  2112. package/slack-bot/node_modules/call-bound/LICENSE +21 -0
  2113. package/slack-bot/node_modules/call-bound/README.md +53 -0
  2114. package/slack-bot/node_modules/call-bound/index.d.ts +94 -0
  2115. package/slack-bot/node_modules/call-bound/index.js +19 -0
  2116. package/slack-bot/node_modules/call-bound/package.json +99 -0
  2117. package/slack-bot/node_modules/call-bound/test/index.js +61 -0
  2118. package/slack-bot/node_modules/call-bound/tsconfig.json +10 -0
  2119. package/slack-bot/node_modules/combined-stream/License +19 -0
  2120. package/slack-bot/node_modules/combined-stream/Readme.md +138 -0
  2121. package/slack-bot/node_modules/combined-stream/lib/combined_stream.js +208 -0
  2122. package/slack-bot/node_modules/combined-stream/package.json +25 -0
  2123. package/slack-bot/node_modules/combined-stream/yarn.lock +17 -0
  2124. package/slack-bot/node_modules/content-disposition/HISTORY.md +60 -0
  2125. package/slack-bot/node_modules/content-disposition/LICENSE +22 -0
  2126. package/slack-bot/node_modules/content-disposition/README.md +142 -0
  2127. package/slack-bot/node_modules/content-disposition/index.js +458 -0
  2128. package/slack-bot/node_modules/content-disposition/package.json +44 -0
  2129. package/slack-bot/node_modules/content-type/HISTORY.md +29 -0
  2130. package/slack-bot/node_modules/content-type/LICENSE +22 -0
  2131. package/slack-bot/node_modules/content-type/README.md +94 -0
  2132. package/slack-bot/node_modules/content-type/index.js +225 -0
  2133. package/slack-bot/node_modules/content-type/package.json +42 -0
  2134. package/slack-bot/node_modules/cookie/LICENSE +24 -0
  2135. package/slack-bot/node_modules/cookie/README.md +317 -0
  2136. package/slack-bot/node_modules/cookie/SECURITY.md +25 -0
  2137. package/slack-bot/node_modules/cookie/index.js +335 -0
  2138. package/slack-bot/node_modules/cookie/package.json +44 -0
  2139. package/slack-bot/node_modules/cookie-signature/History.md +42 -0
  2140. package/slack-bot/node_modules/cookie-signature/Readme.md +42 -0
  2141. package/slack-bot/node_modules/cookie-signature/index.js +51 -0
  2142. package/slack-bot/node_modules/cookie-signature/package.json +18 -0
  2143. package/slack-bot/node_modules/data-view-buffer/.eslintrc +17 -0
  2144. package/slack-bot/node_modules/data-view-buffer/.github/FUNDING.yml +12 -0
  2145. package/slack-bot/node_modules/data-view-buffer/.nycrc +13 -0
  2146. package/slack-bot/node_modules/data-view-buffer/CHANGELOG.md +38 -0
  2147. package/slack-bot/node_modules/data-view-buffer/LICENSE +21 -0
  2148. package/slack-bot/node_modules/data-view-buffer/README.md +43 -0
  2149. package/slack-bot/node_modules/data-view-buffer/index.d.ts +4 -0
  2150. package/slack-bot/node_modules/data-view-buffer/index.js +19 -0
  2151. package/slack-bot/node_modules/data-view-buffer/package.json +88 -0
  2152. package/slack-bot/node_modules/data-view-buffer/test/index.js +31 -0
  2153. package/slack-bot/node_modules/data-view-buffer/tsconfig.json +10 -0
  2154. package/slack-bot/node_modules/data-view-byte-length/.eslintrc +17 -0
  2155. package/slack-bot/node_modules/data-view-byte-length/.github/FUNDING.yml +12 -0
  2156. package/slack-bot/node_modules/data-view-byte-length/.nycrc +13 -0
  2157. package/slack-bot/node_modules/data-view-byte-length/CHANGELOG.md +36 -0
  2158. package/slack-bot/node_modules/data-view-byte-length/LICENSE +21 -0
  2159. package/slack-bot/node_modules/data-view-byte-length/README.md +43 -0
  2160. package/slack-bot/node_modules/data-view-byte-length/index.d.ts +4 -0
  2161. package/slack-bot/node_modules/data-view-byte-length/index.js +19 -0
  2162. package/slack-bot/node_modules/data-view-byte-length/package.json +92 -0
  2163. package/slack-bot/node_modules/data-view-byte-length/test/index.js +31 -0
  2164. package/slack-bot/node_modules/data-view-byte-length/tsconfig.json +9 -0
  2165. package/slack-bot/node_modules/data-view-byte-offset/.eslintrc +17 -0
  2166. package/slack-bot/node_modules/data-view-byte-offset/.github/FUNDING.yml +12 -0
  2167. package/slack-bot/node_modules/data-view-byte-offset/.nycrc +13 -0
  2168. package/slack-bot/node_modules/data-view-byte-offset/CHANGELOG.md +31 -0
  2169. package/slack-bot/node_modules/data-view-byte-offset/LICENSE +21 -0
  2170. package/slack-bot/node_modules/data-view-byte-offset/README.md +43 -0
  2171. package/slack-bot/node_modules/data-view-byte-offset/index.d.ts +4 -0
  2172. package/slack-bot/node_modules/data-view-byte-offset/index.js +19 -0
  2173. package/slack-bot/node_modules/data-view-byte-offset/package.json +94 -0
  2174. package/slack-bot/node_modules/data-view-byte-offset/test/index.js +31 -0
  2175. package/slack-bot/node_modules/data-view-byte-offset/tsconfig.json +9 -0
  2176. package/slack-bot/node_modules/debug/.coveralls.yml +1 -0
  2177. package/slack-bot/node_modules/debug/.eslintrc +11 -0
  2178. package/slack-bot/node_modules/debug/.travis.yml +14 -0
  2179. package/slack-bot/node_modules/debug/CHANGELOG.md +362 -0
  2180. package/slack-bot/node_modules/debug/LICENSE +19 -0
  2181. package/slack-bot/node_modules/debug/Makefile +50 -0
  2182. package/slack-bot/node_modules/debug/README.md +312 -0
  2183. package/slack-bot/node_modules/debug/component.json +19 -0
  2184. package/slack-bot/node_modules/debug/karma.conf.js +70 -0
  2185. package/slack-bot/node_modules/debug/node.js +1 -0
  2186. package/slack-bot/node_modules/debug/package.json +49 -0
  2187. package/slack-bot/node_modules/debug/src/browser.js +185 -0
  2188. package/slack-bot/node_modules/debug/src/debug.js +202 -0
  2189. package/slack-bot/node_modules/debug/src/index.js +10 -0
  2190. package/slack-bot/node_modules/debug/src/inspector-log.js +15 -0
  2191. package/slack-bot/node_modules/debug/src/node.js +248 -0
  2192. package/slack-bot/node_modules/define-data-property/.eslintrc +24 -0
  2193. package/slack-bot/node_modules/define-data-property/.github/FUNDING.yml +12 -0
  2194. package/slack-bot/node_modules/define-data-property/.nycrc +13 -0
  2195. package/slack-bot/node_modules/define-data-property/CHANGELOG.md +70 -0
  2196. package/slack-bot/node_modules/define-data-property/LICENSE +21 -0
  2197. package/slack-bot/node_modules/define-data-property/README.md +67 -0
  2198. package/slack-bot/node_modules/define-data-property/index.d.ts +12 -0
  2199. package/slack-bot/node_modules/define-data-property/index.js +56 -0
  2200. package/slack-bot/node_modules/define-data-property/package.json +106 -0
  2201. package/slack-bot/node_modules/define-data-property/test/index.js +392 -0
  2202. package/slack-bot/node_modules/define-data-property/tsconfig.json +59 -0
  2203. package/slack-bot/node_modules/define-properties/.editorconfig +13 -0
  2204. package/slack-bot/node_modules/define-properties/.eslintrc +19 -0
  2205. package/slack-bot/node_modules/define-properties/.github/FUNDING.yml +12 -0
  2206. package/slack-bot/node_modules/define-properties/.nycrc +9 -0
  2207. package/slack-bot/node_modules/define-properties/CHANGELOG.md +91 -0
  2208. package/slack-bot/node_modules/define-properties/LICENSE +21 -0
  2209. package/slack-bot/node_modules/define-properties/README.md +84 -0
  2210. package/slack-bot/node_modules/define-properties/index.js +47 -0
  2211. package/slack-bot/node_modules/define-properties/package.json +88 -0
  2212. package/slack-bot/node_modules/delayed-stream/License +19 -0
  2213. package/slack-bot/node_modules/delayed-stream/Makefile +7 -0
  2214. package/slack-bot/node_modules/delayed-stream/Readme.md +141 -0
  2215. package/slack-bot/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  2216. package/slack-bot/node_modules/delayed-stream/package.json +27 -0
  2217. package/slack-bot/node_modules/depd/History.md +103 -0
  2218. package/slack-bot/node_modules/depd/LICENSE +22 -0
  2219. package/slack-bot/node_modules/depd/Readme.md +280 -0
  2220. package/slack-bot/node_modules/depd/index.js +538 -0
  2221. package/slack-bot/node_modules/depd/lib/browser/index.js +77 -0
  2222. package/slack-bot/node_modules/depd/package.json +45 -0
  2223. package/slack-bot/node_modules/destroy/LICENSE +23 -0
  2224. package/slack-bot/node_modules/destroy/README.md +63 -0
  2225. package/slack-bot/node_modules/destroy/index.js +209 -0
  2226. package/slack-bot/node_modules/destroy/package.json +48 -0
  2227. package/slack-bot/node_modules/dotenv/CHANGELOG.md +520 -0
  2228. package/slack-bot/node_modules/dotenv/LICENSE +23 -0
  2229. package/slack-bot/node_modules/dotenv/README-es.md +411 -0
  2230. package/slack-bot/node_modules/dotenv/README.md +645 -0
  2231. package/slack-bot/node_modules/dotenv/SECURITY.md +1 -0
  2232. package/slack-bot/node_modules/dotenv/config.d.ts +1 -0
  2233. package/slack-bot/node_modules/dotenv/config.js +9 -0
  2234. package/slack-bot/node_modules/dotenv/lib/cli-options.js +17 -0
  2235. package/slack-bot/node_modules/dotenv/lib/env-options.js +28 -0
  2236. package/slack-bot/node_modules/dotenv/lib/main.d.ts +162 -0
  2237. package/slack-bot/node_modules/dotenv/lib/main.js +386 -0
  2238. package/slack-bot/node_modules/dotenv/package.json +62 -0
  2239. package/slack-bot/node_modules/dunder-proto/.eslintrc +5 -0
  2240. package/slack-bot/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  2241. package/slack-bot/node_modules/dunder-proto/.nycrc +13 -0
  2242. package/slack-bot/node_modules/dunder-proto/CHANGELOG.md +24 -0
  2243. package/slack-bot/node_modules/dunder-proto/LICENSE +21 -0
  2244. package/slack-bot/node_modules/dunder-proto/README.md +54 -0
  2245. package/slack-bot/node_modules/dunder-proto/get.d.ts +5 -0
  2246. package/slack-bot/node_modules/dunder-proto/get.js +30 -0
  2247. package/slack-bot/node_modules/dunder-proto/package.json +76 -0
  2248. package/slack-bot/node_modules/dunder-proto/set.d.ts +5 -0
  2249. package/slack-bot/node_modules/dunder-proto/set.js +35 -0
  2250. package/slack-bot/node_modules/dunder-proto/test/get.js +34 -0
  2251. package/slack-bot/node_modules/dunder-proto/test/index.js +4 -0
  2252. package/slack-bot/node_modules/dunder-proto/test/set.js +50 -0
  2253. package/slack-bot/node_modules/dunder-proto/tsconfig.json +9 -0
  2254. package/slack-bot/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  2255. package/slack-bot/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  2256. package/slack-bot/node_modules/ecdsa-sig-formatter/README.md +65 -0
  2257. package/slack-bot/node_modules/ecdsa-sig-formatter/package.json +46 -0
  2258. package/slack-bot/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  2259. package/slack-bot/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  2260. package/slack-bot/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  2261. package/slack-bot/node_modules/ee-first/LICENSE +22 -0
  2262. package/slack-bot/node_modules/ee-first/README.md +80 -0
  2263. package/slack-bot/node_modules/ee-first/index.js +95 -0
  2264. package/slack-bot/node_modules/ee-first/package.json +29 -0
  2265. package/slack-bot/node_modules/encodeurl/LICENSE +22 -0
  2266. package/slack-bot/node_modules/encodeurl/README.md +109 -0
  2267. package/slack-bot/node_modules/encodeurl/index.js +60 -0
  2268. package/slack-bot/node_modules/encodeurl/package.json +40 -0
  2269. package/slack-bot/node_modules/es-abstract/.claude/settings.local.json +12 -0
  2270. package/slack-bot/node_modules/es-abstract/.editorconfig +15 -0
  2271. package/slack-bot/node_modules/es-abstract/.nycrc +15 -0
  2272. package/slack-bot/node_modules/es-abstract/2015/AbstractEqualityComparison.js +38 -0
  2273. package/slack-bot/node_modules/es-abstract/2015/AbstractRelationalComparison.js +62 -0
  2274. package/slack-bot/node_modules/es-abstract/2015/AdvanceStringIndex.js +44 -0
  2275. package/slack-bot/node_modules/es-abstract/2015/ArrayCreate.js +42 -0
  2276. package/slack-bot/node_modules/es-abstract/2015/ArraySetLength.js +77 -0
  2277. package/slack-bot/node_modules/es-abstract/2015/ArraySpeciesCreate.js +46 -0
  2278. package/slack-bot/node_modules/es-abstract/2015/Call.js +20 -0
  2279. package/slack-bot/node_modules/es-abstract/2015/CanonicalNumericIndexString.js +19 -0
  2280. package/slack-bot/node_modules/es-abstract/2015/Canonicalize.js +51 -0
  2281. package/slack-bot/node_modules/es-abstract/2015/CharacterRange.js +53 -0
  2282. package/slack-bot/node_modules/es-abstract/2015/CompletePropertyDescriptor.js +43 -0
  2283. package/slack-bot/node_modules/es-abstract/2015/CompletionRecord.js +48 -0
  2284. package/slack-bot/node_modules/es-abstract/2015/CreateDataProperty.js +25 -0
  2285. package/slack-bot/node_modules/es-abstract/2015/CreateDataPropertyOrThrow.js +24 -0
  2286. package/slack-bot/node_modules/es-abstract/2015/CreateHTML.js +27 -0
  2287. package/slack-bot/node_modules/es-abstract/2015/CreateIterResultObject.js +15 -0
  2288. package/slack-bot/node_modules/es-abstract/2015/CreateListFromArrayLike.js +43 -0
  2289. package/slack-bot/node_modules/es-abstract/2015/CreateMethodProperty.js +38 -0
  2290. package/slack-bot/node_modules/es-abstract/2015/DateFromTime.js +52 -0
  2291. package/slack-bot/node_modules/es-abstract/2015/Day.js +11 -0
  2292. package/slack-bot/node_modules/es-abstract/2015/DayFromYear.js +10 -0
  2293. package/slack-bot/node_modules/es-abstract/2015/DayWithinYear.js +11 -0
  2294. package/slack-bot/node_modules/es-abstract/2015/DaysInYear.js +18 -0
  2295. package/slack-bot/node_modules/es-abstract/2015/DefinePropertyOrThrow.js +39 -0
  2296. package/slack-bot/node_modules/es-abstract/2015/DeletePropertyOrThrow.js +25 -0
  2297. package/slack-bot/node_modules/es-abstract/2015/DetachArrayBuffer.js +38 -0
  2298. package/slack-bot/node_modules/es-abstract/2015/EnumerableOwnNames.js +16 -0
  2299. package/slack-bot/node_modules/es-abstract/2015/FromPropertyDescriptor.js +16 -0
  2300. package/slack-bot/node_modules/es-abstract/2015/Get.js +24 -0
  2301. package/slack-bot/node_modules/es-abstract/2015/GetGlobalObject.js +9 -0
  2302. package/slack-bot/node_modules/es-abstract/2015/GetIterator.js +30 -0
  2303. package/slack-bot/node_modules/es-abstract/2015/GetMethod.js +34 -0
  2304. package/slack-bot/node_modules/es-abstract/2015/GetOwnPropertyKeys.js +30 -0
  2305. package/slack-bot/node_modules/es-abstract/2015/GetPrototypeFromConstructor.js +33 -0
  2306. package/slack-bot/node_modules/es-abstract/2015/GetSubstitution.js +98 -0
  2307. package/slack-bot/node_modules/es-abstract/2015/GetV.js +23 -0
  2308. package/slack-bot/node_modules/es-abstract/2015/GetValueFromBuffer.js +86 -0
  2309. package/slack-bot/node_modules/es-abstract/2015/HasOwnProperty.js +20 -0
  2310. package/slack-bot/node_modules/es-abstract/2015/HasProperty.js +18 -0
  2311. package/slack-bot/node_modules/es-abstract/2015/HourFromTime.js +14 -0
  2312. package/slack-bot/node_modules/es-abstract/2015/InLeapYear.js +19 -0
  2313. package/slack-bot/node_modules/es-abstract/2015/InstanceofOperator.js +30 -0
  2314. package/slack-bot/node_modules/es-abstract/2015/IntegerIndexedElementGet.js +57 -0
  2315. package/slack-bot/node_modules/es-abstract/2015/IntegerIndexedElementSet.js +62 -0
  2316. package/slack-bot/node_modules/es-abstract/2015/InternalizeJSONProperty.js +68 -0
  2317. package/slack-bot/node_modules/es-abstract/2015/Invoke.js +22 -0
  2318. package/slack-bot/node_modules/es-abstract/2015/IsAccessorDescriptor.js +25 -0
  2319. package/slack-bot/node_modules/es-abstract/2015/IsArray.js +4 -0
  2320. package/slack-bot/node_modules/es-abstract/2015/IsCallable.js +5 -0
  2321. package/slack-bot/node_modules/es-abstract/2015/IsCompatiblePropertyDescriptor.js +9 -0
  2322. package/slack-bot/node_modules/es-abstract/2015/IsConcatSpreadable.js +26 -0
  2323. package/slack-bot/node_modules/es-abstract/2015/IsConstructor.js +40 -0
  2324. package/slack-bot/node_modules/es-abstract/2015/IsDataDescriptor.js +25 -0
  2325. package/slack-bot/node_modules/es-abstract/2015/IsDetachedBuffer.js +25 -0
  2326. package/slack-bot/node_modules/es-abstract/2015/IsExtensible.js +18 -0
  2327. package/slack-bot/node_modules/es-abstract/2015/IsGenericDescriptor.js +26 -0
  2328. package/slack-bot/node_modules/es-abstract/2015/IsInteger.js +9 -0
  2329. package/slack-bot/node_modules/es-abstract/2015/IsPromise.js +24 -0
  2330. package/slack-bot/node_modules/es-abstract/2015/IsPropertyDescriptor.js +11 -0
  2331. package/slack-bot/node_modules/es-abstract/2015/IsPropertyKey.js +9 -0
  2332. package/slack-bot/node_modules/es-abstract/2015/IsRegExp.js +25 -0
  2333. package/slack-bot/node_modules/es-abstract/2015/IsWordChar.js +37 -0
  2334. package/slack-bot/node_modules/es-abstract/2015/IteratorClose.js +51 -0
  2335. package/slack-bot/node_modules/es-abstract/2015/IteratorComplete.js +16 -0
  2336. package/slack-bot/node_modules/es-abstract/2015/IteratorNext.js +16 -0
  2337. package/slack-bot/node_modules/es-abstract/2015/IteratorStep.js +13 -0
  2338. package/slack-bot/node_modules/es-abstract/2015/IteratorValue.js +16 -0
  2339. package/slack-bot/node_modules/es-abstract/2015/MakeDate.js +14 -0
  2340. package/slack-bot/node_modules/es-abstract/2015/MakeDay.js +33 -0
  2341. package/slack-bot/node_modules/es-abstract/2015/MakeTime.js +24 -0
  2342. package/slack-bot/node_modules/es-abstract/2015/MinFromTime.js +14 -0
  2343. package/slack-bot/node_modules/es-abstract/2015/MonthFromTime.js +51 -0
  2344. package/slack-bot/node_modules/es-abstract/2015/NewPromiseCapability.js +34 -0
  2345. package/slack-bot/node_modules/es-abstract/2015/NormalCompletion.js +9 -0
  2346. package/slack-bot/node_modules/es-abstract/2015/ObjectCreate.js +50 -0
  2347. package/slack-bot/node_modules/es-abstract/2015/ObjectDefineProperties.js +37 -0
  2348. package/slack-bot/node_modules/es-abstract/2015/OrdinaryCreateFromConstructor.js +20 -0
  2349. package/slack-bot/node_modules/es-abstract/2015/OrdinaryDefineOwnProperty.js +54 -0
  2350. package/slack-bot/node_modules/es-abstract/2015/OrdinaryGetOwnProperty.js +40 -0
  2351. package/slack-bot/node_modules/es-abstract/2015/OrdinaryHasInstance.js +23 -0
  2352. package/slack-bot/node_modules/es-abstract/2015/OrdinaryHasProperty.js +18 -0
  2353. package/slack-bot/node_modules/es-abstract/2015/QuoteJSONString.js +48 -0
  2354. package/slack-bot/node_modules/es-abstract/2015/RegExpCreate.js +21 -0
  2355. package/slack-bot/node_modules/es-abstract/2015/RegExpExec.js +29 -0
  2356. package/slack-bot/node_modules/es-abstract/2015/RequireObjectCoercible.js +3 -0
  2357. package/slack-bot/node_modules/es-abstract/2015/SameValue.js +13 -0
  2358. package/slack-bot/node_modules/es-abstract/2015/SameValueZero.js +9 -0
  2359. package/slack-bot/node_modules/es-abstract/2015/SecFromTime.js +14 -0
  2360. package/slack-bot/node_modules/es-abstract/2015/Set.js +45 -0
  2361. package/slack-bot/node_modules/es-abstract/2015/SetFunctionName.js +40 -0
  2362. package/slack-bot/node_modules/es-abstract/2015/SetIntegrityLevel.js +57 -0
  2363. package/slack-bot/node_modules/es-abstract/2015/SetValueInBuffer.js +110 -0
  2364. package/slack-bot/node_modules/es-abstract/2015/SpeciesConstructor.js +32 -0
  2365. package/slack-bot/node_modules/es-abstract/2015/SplitMatch.js +35 -0
  2366. package/slack-bot/node_modules/es-abstract/2015/StrictEqualityComparison.js +15 -0
  2367. package/slack-bot/node_modules/es-abstract/2015/StringCreate.js +38 -0
  2368. package/slack-bot/node_modules/es-abstract/2015/StringGetIndexProperty.js +50 -0
  2369. package/slack-bot/node_modules/es-abstract/2015/SymbolDescriptiveString.js +16 -0
  2370. package/slack-bot/node_modules/es-abstract/2015/TestIntegrityLevel.js +40 -0
  2371. package/slack-bot/node_modules/es-abstract/2015/TimeClip.js +20 -0
  2372. package/slack-bot/node_modules/es-abstract/2015/TimeFromYear.js +11 -0
  2373. package/slack-bot/node_modules/es-abstract/2015/TimeWithinDay.js +12 -0
  2374. package/slack-bot/node_modules/es-abstract/2015/ToBoolean.js +5 -0
  2375. package/slack-bot/node_modules/es-abstract/2015/ToDateString.js +21 -0
  2376. package/slack-bot/node_modules/es-abstract/2015/ToInt16.js +10 -0
  2377. package/slack-bot/node_modules/es-abstract/2015/ToInt32.js +9 -0
  2378. package/slack-bot/node_modules/es-abstract/2015/ToInt8.js +10 -0
  2379. package/slack-bot/node_modules/es-abstract/2015/ToInteger.js +12 -0
  2380. package/slack-bot/node_modules/es-abstract/2015/ToLength.js +14 -0
  2381. package/slack-bot/node_modules/es-abstract/2015/ToNumber.js +48 -0
  2382. package/slack-bot/node_modules/es-abstract/2015/ToObject.js +5 -0
  2383. package/slack-bot/node_modules/es-abstract/2015/ToPrimitive.js +12 -0
  2384. package/slack-bot/node_modules/es-abstract/2015/ToPropertyDescriptor.js +50 -0
  2385. package/slack-bot/node_modules/es-abstract/2015/ToPropertyKey.js +15 -0
  2386. package/slack-bot/node_modules/es-abstract/2015/ToString.js +15 -0
  2387. package/slack-bot/node_modules/es-abstract/2015/ToUint16.js +19 -0
  2388. package/slack-bot/node_modules/es-abstract/2015/ToUint32.js +9 -0
  2389. package/slack-bot/node_modules/es-abstract/2015/ToUint8.js +19 -0
  2390. package/slack-bot/node_modules/es-abstract/2015/ToUint8Clamp.js +19 -0
  2391. package/slack-bot/node_modules/es-abstract/2015/Type.js +12 -0
  2392. package/slack-bot/node_modules/es-abstract/2015/ValidateAndApplyPropertyDescriptor.js +159 -0
  2393. package/slack-bot/node_modules/es-abstract/2015/ValidateTypedArray.js +28 -0
  2394. package/slack-bot/node_modules/es-abstract/2015/WeekDay.js +10 -0
  2395. package/slack-bot/node_modules/es-abstract/2015/YearFromTime.js +16 -0
  2396. package/slack-bot/node_modules/es-abstract/2015/abs.js +9 -0
  2397. package/slack-bot/node_modules/es-abstract/2015/floor.js +11 -0
  2398. package/slack-bot/node_modules/es-abstract/2015/max.js +5 -0
  2399. package/slack-bot/node_modules/es-abstract/2015/min.js +5 -0
  2400. package/slack-bot/node_modules/es-abstract/2015/modulo.js +9 -0
  2401. package/slack-bot/node_modules/es-abstract/2015/msFromTime.js +11 -0
  2402. package/slack-bot/node_modules/es-abstract/2015/tables/typed-array-objects.js +32 -0
  2403. package/slack-bot/node_modules/es-abstract/2015/thisBooleanValue.js +13 -0
  2404. package/slack-bot/node_modules/es-abstract/2015/thisNumberValue.js +16 -0
  2405. package/slack-bot/node_modules/es-abstract/2015/thisStringValue.js +13 -0
  2406. package/slack-bot/node_modules/es-abstract/2015/thisTimeValue.js +9 -0
  2407. package/slack-bot/node_modules/es-abstract/2016/AbstractEqualityComparison.js +38 -0
  2408. package/slack-bot/node_modules/es-abstract/2016/AbstractRelationalComparison.js +62 -0
  2409. package/slack-bot/node_modules/es-abstract/2016/AdvanceStringIndex.js +44 -0
  2410. package/slack-bot/node_modules/es-abstract/2016/ArrayCreate.js +42 -0
  2411. package/slack-bot/node_modules/es-abstract/2016/ArraySetLength.js +77 -0
  2412. package/slack-bot/node_modules/es-abstract/2016/ArraySpeciesCreate.js +46 -0
  2413. package/slack-bot/node_modules/es-abstract/2016/Call.js +20 -0
  2414. package/slack-bot/node_modules/es-abstract/2016/CanonicalNumericIndexString.js +19 -0
  2415. package/slack-bot/node_modules/es-abstract/2016/Canonicalize.js +51 -0
  2416. package/slack-bot/node_modules/es-abstract/2016/CharacterRange.js +53 -0
  2417. package/slack-bot/node_modules/es-abstract/2016/CompletePropertyDescriptor.js +43 -0
  2418. package/slack-bot/node_modules/es-abstract/2016/CompletionRecord.js +48 -0
  2419. package/slack-bot/node_modules/es-abstract/2016/CreateDataProperty.js +25 -0
  2420. package/slack-bot/node_modules/es-abstract/2016/CreateDataPropertyOrThrow.js +24 -0
  2421. package/slack-bot/node_modules/es-abstract/2016/CreateHTML.js +27 -0
  2422. package/slack-bot/node_modules/es-abstract/2016/CreateIterResultObject.js +15 -0
  2423. package/slack-bot/node_modules/es-abstract/2016/CreateListFromArrayLike.js +43 -0
  2424. package/slack-bot/node_modules/es-abstract/2016/CreateMethodProperty.js +38 -0
  2425. package/slack-bot/node_modules/es-abstract/2016/DateFromTime.js +52 -0
  2426. package/slack-bot/node_modules/es-abstract/2016/Day.js +11 -0
  2427. package/slack-bot/node_modules/es-abstract/2016/DayFromYear.js +10 -0
  2428. package/slack-bot/node_modules/es-abstract/2016/DayWithinYear.js +11 -0
  2429. package/slack-bot/node_modules/es-abstract/2016/DaysInYear.js +18 -0
  2430. package/slack-bot/node_modules/es-abstract/2016/DefinePropertyOrThrow.js +39 -0
  2431. package/slack-bot/node_modules/es-abstract/2016/DeletePropertyOrThrow.js +25 -0
  2432. package/slack-bot/node_modules/es-abstract/2016/DetachArrayBuffer.js +38 -0
  2433. package/slack-bot/node_modules/es-abstract/2016/EnumerableOwnNames.js +16 -0
  2434. package/slack-bot/node_modules/es-abstract/2016/FromPropertyDescriptor.js +16 -0
  2435. package/slack-bot/node_modules/es-abstract/2016/Get.js +24 -0
  2436. package/slack-bot/node_modules/es-abstract/2016/GetGlobalObject.js +9 -0
  2437. package/slack-bot/node_modules/es-abstract/2016/GetIterator.js +30 -0
  2438. package/slack-bot/node_modules/es-abstract/2016/GetMethod.js +34 -0
  2439. package/slack-bot/node_modules/es-abstract/2016/GetOwnPropertyKeys.js +30 -0
  2440. package/slack-bot/node_modules/es-abstract/2016/GetPrototypeFromConstructor.js +33 -0
  2441. package/slack-bot/node_modules/es-abstract/2016/GetSubstitution.js +98 -0
  2442. package/slack-bot/node_modules/es-abstract/2016/GetV.js +23 -0
  2443. package/slack-bot/node_modules/es-abstract/2016/GetValueFromBuffer.js +86 -0
  2444. package/slack-bot/node_modules/es-abstract/2016/HasOwnProperty.js +20 -0
  2445. package/slack-bot/node_modules/es-abstract/2016/HasProperty.js +18 -0
  2446. package/slack-bot/node_modules/es-abstract/2016/HourFromTime.js +14 -0
  2447. package/slack-bot/node_modules/es-abstract/2016/InLeapYear.js +19 -0
  2448. package/slack-bot/node_modules/es-abstract/2016/InstanceofOperator.js +30 -0
  2449. package/slack-bot/node_modules/es-abstract/2016/IntegerIndexedElementGet.js +57 -0
  2450. package/slack-bot/node_modules/es-abstract/2016/IntegerIndexedElementSet.js +62 -0
  2451. package/slack-bot/node_modules/es-abstract/2016/InternalizeJSONProperty.js +68 -0
  2452. package/slack-bot/node_modules/es-abstract/2016/Invoke.js +22 -0
  2453. package/slack-bot/node_modules/es-abstract/2016/IsAccessorDescriptor.js +25 -0
  2454. package/slack-bot/node_modules/es-abstract/2016/IsArray.js +4 -0
  2455. package/slack-bot/node_modules/es-abstract/2016/IsCallable.js +5 -0
  2456. package/slack-bot/node_modules/es-abstract/2016/IsCompatiblePropertyDescriptor.js +9 -0
  2457. package/slack-bot/node_modules/es-abstract/2016/IsConcatSpreadable.js +26 -0
  2458. package/slack-bot/node_modules/es-abstract/2016/IsConstructor.js +40 -0
  2459. package/slack-bot/node_modules/es-abstract/2016/IsDataDescriptor.js +25 -0
  2460. package/slack-bot/node_modules/es-abstract/2016/IsDetachedBuffer.js +25 -0
  2461. package/slack-bot/node_modules/es-abstract/2016/IsExtensible.js +18 -0
  2462. package/slack-bot/node_modules/es-abstract/2016/IsGenericDescriptor.js +26 -0
  2463. package/slack-bot/node_modules/es-abstract/2016/IsInteger.js +9 -0
  2464. package/slack-bot/node_modules/es-abstract/2016/IsPromise.js +24 -0
  2465. package/slack-bot/node_modules/es-abstract/2016/IsPropertyDescriptor.js +11 -0
  2466. package/slack-bot/node_modules/es-abstract/2016/IsPropertyKey.js +9 -0
  2467. package/slack-bot/node_modules/es-abstract/2016/IsRegExp.js +25 -0
  2468. package/slack-bot/node_modules/es-abstract/2016/IsWordChar.js +37 -0
  2469. package/slack-bot/node_modules/es-abstract/2016/IterableToArrayLike.js +34 -0
  2470. package/slack-bot/node_modules/es-abstract/2016/IteratorClose.js +51 -0
  2471. package/slack-bot/node_modules/es-abstract/2016/IteratorComplete.js +16 -0
  2472. package/slack-bot/node_modules/es-abstract/2016/IteratorNext.js +16 -0
  2473. package/slack-bot/node_modules/es-abstract/2016/IteratorStep.js +13 -0
  2474. package/slack-bot/node_modules/es-abstract/2016/IteratorValue.js +16 -0
  2475. package/slack-bot/node_modules/es-abstract/2016/MakeDate.js +14 -0
  2476. package/slack-bot/node_modules/es-abstract/2016/MakeDay.js +33 -0
  2477. package/slack-bot/node_modules/es-abstract/2016/MakeTime.js +24 -0
  2478. package/slack-bot/node_modules/es-abstract/2016/MinFromTime.js +14 -0
  2479. package/slack-bot/node_modules/es-abstract/2016/MonthFromTime.js +51 -0
  2480. package/slack-bot/node_modules/es-abstract/2016/NewPromiseCapability.js +34 -0
  2481. package/slack-bot/node_modules/es-abstract/2016/NormalCompletion.js +9 -0
  2482. package/slack-bot/node_modules/es-abstract/2016/ObjectCreate.js +50 -0
  2483. package/slack-bot/node_modules/es-abstract/2016/ObjectDefineProperties.js +37 -0
  2484. package/slack-bot/node_modules/es-abstract/2016/OrdinaryCreateFromConstructor.js +20 -0
  2485. package/slack-bot/node_modules/es-abstract/2016/OrdinaryDefineOwnProperty.js +54 -0
  2486. package/slack-bot/node_modules/es-abstract/2016/OrdinaryGetOwnProperty.js +40 -0
  2487. package/slack-bot/node_modules/es-abstract/2016/OrdinaryGetPrototypeOf.js +18 -0
  2488. package/slack-bot/node_modules/es-abstract/2016/OrdinaryHasInstance.js +23 -0
  2489. package/slack-bot/node_modules/es-abstract/2016/OrdinaryHasProperty.js +18 -0
  2490. package/slack-bot/node_modules/es-abstract/2016/OrdinarySetPrototypeOf.js +50 -0
  2491. package/slack-bot/node_modules/es-abstract/2016/QuoteJSONString.js +48 -0
  2492. package/slack-bot/node_modules/es-abstract/2016/RegExpCreate.js +21 -0
  2493. package/slack-bot/node_modules/es-abstract/2016/RegExpExec.js +29 -0
  2494. package/slack-bot/node_modules/es-abstract/2016/RequireObjectCoercible.js +3 -0
  2495. package/slack-bot/node_modules/es-abstract/2016/SameValue.js +13 -0
  2496. package/slack-bot/node_modules/es-abstract/2016/SameValueNonNumber.js +14 -0
  2497. package/slack-bot/node_modules/es-abstract/2016/SameValueZero.js +9 -0
  2498. package/slack-bot/node_modules/es-abstract/2016/SecFromTime.js +14 -0
  2499. package/slack-bot/node_modules/es-abstract/2016/Set.js +45 -0
  2500. package/slack-bot/node_modules/es-abstract/2016/SetFunctionName.js +40 -0
  2501. package/slack-bot/node_modules/es-abstract/2016/SetIntegrityLevel.js +57 -0
  2502. package/slack-bot/node_modules/es-abstract/2016/SetValueInBuffer.js +110 -0
  2503. package/slack-bot/node_modules/es-abstract/2016/SpeciesConstructor.js +32 -0
  2504. package/slack-bot/node_modules/es-abstract/2016/SplitMatch.js +35 -0
  2505. package/slack-bot/node_modules/es-abstract/2016/StrictEqualityComparison.js +15 -0
  2506. package/slack-bot/node_modules/es-abstract/2016/StringCreate.js +38 -0
  2507. package/slack-bot/node_modules/es-abstract/2016/SymbolDescriptiveString.js +16 -0
  2508. package/slack-bot/node_modules/es-abstract/2016/TestIntegrityLevel.js +40 -0
  2509. package/slack-bot/node_modules/es-abstract/2016/TimeClip.js +20 -0
  2510. package/slack-bot/node_modules/es-abstract/2016/TimeFromYear.js +11 -0
  2511. package/slack-bot/node_modules/es-abstract/2016/TimeWithinDay.js +12 -0
  2512. package/slack-bot/node_modules/es-abstract/2016/ToBoolean.js +5 -0
  2513. package/slack-bot/node_modules/es-abstract/2016/ToDateString.js +21 -0
  2514. package/slack-bot/node_modules/es-abstract/2016/ToInt16.js +10 -0
  2515. package/slack-bot/node_modules/es-abstract/2016/ToInt32.js +9 -0
  2516. package/slack-bot/node_modules/es-abstract/2016/ToInt8.js +10 -0
  2517. package/slack-bot/node_modules/es-abstract/2016/ToInteger.js +12 -0
  2518. package/slack-bot/node_modules/es-abstract/2016/ToLength.js +14 -0
  2519. package/slack-bot/node_modules/es-abstract/2016/ToNumber.js +48 -0
  2520. package/slack-bot/node_modules/es-abstract/2016/ToObject.js +5 -0
  2521. package/slack-bot/node_modules/es-abstract/2016/ToPrimitive.js +12 -0
  2522. package/slack-bot/node_modules/es-abstract/2016/ToPropertyDescriptor.js +50 -0
  2523. package/slack-bot/node_modules/es-abstract/2016/ToPropertyKey.js +15 -0
  2524. package/slack-bot/node_modules/es-abstract/2016/ToString.js +15 -0
  2525. package/slack-bot/node_modules/es-abstract/2016/ToUint16.js +19 -0
  2526. package/slack-bot/node_modules/es-abstract/2016/ToUint32.js +9 -0
  2527. package/slack-bot/node_modules/es-abstract/2016/ToUint8.js +19 -0
  2528. package/slack-bot/node_modules/es-abstract/2016/ToUint8Clamp.js +19 -0
  2529. package/slack-bot/node_modules/es-abstract/2016/Type.js +12 -0
  2530. package/slack-bot/node_modules/es-abstract/2016/TypedArrayCreate.js +47 -0
  2531. package/slack-bot/node_modules/es-abstract/2016/TypedArraySpeciesCreate.js +37 -0
  2532. package/slack-bot/node_modules/es-abstract/2016/UTF16Decode.js +21 -0
  2533. package/slack-bot/node_modules/es-abstract/2016/UTF16Encoding.js +25 -0
  2534. package/slack-bot/node_modules/es-abstract/2016/ValidateAndApplyPropertyDescriptor.js +159 -0
  2535. package/slack-bot/node_modules/es-abstract/2016/ValidateTypedArray.js +28 -0
  2536. package/slack-bot/node_modules/es-abstract/2016/WeekDay.js +10 -0
  2537. package/slack-bot/node_modules/es-abstract/2016/YearFromTime.js +16 -0
  2538. package/slack-bot/node_modules/es-abstract/2016/abs.js +9 -0
  2539. package/slack-bot/node_modules/es-abstract/2016/floor.js +11 -0
  2540. package/slack-bot/node_modules/es-abstract/2016/max.js +5 -0
  2541. package/slack-bot/node_modules/es-abstract/2016/min.js +5 -0
  2542. package/slack-bot/node_modules/es-abstract/2016/modulo.js +9 -0
  2543. package/slack-bot/node_modules/es-abstract/2016/msFromTime.js +11 -0
  2544. package/slack-bot/node_modules/es-abstract/2016/tables/typed-array-objects.js +32 -0
  2545. package/slack-bot/node_modules/es-abstract/2016/thisBooleanValue.js +13 -0
  2546. package/slack-bot/node_modules/es-abstract/2016/thisNumberValue.js +16 -0
  2547. package/slack-bot/node_modules/es-abstract/2016/thisStringValue.js +13 -0
  2548. package/slack-bot/node_modules/es-abstract/2016/thisTimeValue.js +9 -0
  2549. package/slack-bot/node_modules/es-abstract/2017/AbstractEqualityComparison.js +38 -0
  2550. package/slack-bot/node_modules/es-abstract/2017/AbstractRelationalComparison.js +62 -0
  2551. package/slack-bot/node_modules/es-abstract/2017/AdvanceStringIndex.js +44 -0
  2552. package/slack-bot/node_modules/es-abstract/2017/ArrayCreate.js +42 -0
  2553. package/slack-bot/node_modules/es-abstract/2017/ArraySetLength.js +77 -0
  2554. package/slack-bot/node_modules/es-abstract/2017/ArraySpeciesCreate.js +46 -0
  2555. package/slack-bot/node_modules/es-abstract/2017/Call.js +20 -0
  2556. package/slack-bot/node_modules/es-abstract/2017/CanonicalNumericIndexString.js +19 -0
  2557. package/slack-bot/node_modules/es-abstract/2017/Canonicalize.js +51 -0
  2558. package/slack-bot/node_modules/es-abstract/2017/CharacterRange.js +53 -0
  2559. package/slack-bot/node_modules/es-abstract/2017/CompletePropertyDescriptor.js +43 -0
  2560. package/slack-bot/node_modules/es-abstract/2017/CompletionRecord.js +48 -0
  2561. package/slack-bot/node_modules/es-abstract/2017/CreateDataProperty.js +25 -0
  2562. package/slack-bot/node_modules/es-abstract/2017/CreateDataPropertyOrThrow.js +24 -0
  2563. package/slack-bot/node_modules/es-abstract/2017/CreateHTML.js +27 -0
  2564. package/slack-bot/node_modules/es-abstract/2017/CreateIterResultObject.js +15 -0
  2565. package/slack-bot/node_modules/es-abstract/2017/CreateListFromArrayLike.js +43 -0
  2566. package/slack-bot/node_modules/es-abstract/2017/CreateMethodProperty.js +38 -0
  2567. package/slack-bot/node_modules/es-abstract/2017/DateFromTime.js +52 -0
  2568. package/slack-bot/node_modules/es-abstract/2017/Day.js +11 -0
  2569. package/slack-bot/node_modules/es-abstract/2017/DayFromYear.js +10 -0
  2570. package/slack-bot/node_modules/es-abstract/2017/DayWithinYear.js +11 -0
  2571. package/slack-bot/node_modules/es-abstract/2017/DaysInYear.js +18 -0
  2572. package/slack-bot/node_modules/es-abstract/2017/DefinePropertyOrThrow.js +39 -0
  2573. package/slack-bot/node_modules/es-abstract/2017/DeletePropertyOrThrow.js +25 -0
  2574. package/slack-bot/node_modules/es-abstract/2017/DetachArrayBuffer.js +39 -0
  2575. package/slack-bot/node_modules/es-abstract/2017/EnumerableOwnProperties.js +37 -0
  2576. package/slack-bot/node_modules/es-abstract/2017/FromPropertyDescriptor.js +16 -0
  2577. package/slack-bot/node_modules/es-abstract/2017/Get.js +24 -0
  2578. package/slack-bot/node_modules/es-abstract/2017/GetGlobalObject.js +9 -0
  2579. package/slack-bot/node_modules/es-abstract/2017/GetIterator.js +30 -0
  2580. package/slack-bot/node_modules/es-abstract/2017/GetMethod.js +34 -0
  2581. package/slack-bot/node_modules/es-abstract/2017/GetOwnPropertyKeys.js +30 -0
  2582. package/slack-bot/node_modules/es-abstract/2017/GetPrototypeFromConstructor.js +33 -0
  2583. package/slack-bot/node_modules/es-abstract/2017/GetSubstitution.js +98 -0
  2584. package/slack-bot/node_modules/es-abstract/2017/GetV.js +23 -0
  2585. package/slack-bot/node_modules/es-abstract/2017/GetValueFromBuffer.js +96 -0
  2586. package/slack-bot/node_modules/es-abstract/2017/HasOwnProperty.js +20 -0
  2587. package/slack-bot/node_modules/es-abstract/2017/HasProperty.js +18 -0
  2588. package/slack-bot/node_modules/es-abstract/2017/HourFromTime.js +14 -0
  2589. package/slack-bot/node_modules/es-abstract/2017/InLeapYear.js +19 -0
  2590. package/slack-bot/node_modules/es-abstract/2017/InstanceofOperator.js +30 -0
  2591. package/slack-bot/node_modules/es-abstract/2017/IntegerIndexedElementGet.js +58 -0
  2592. package/slack-bot/node_modules/es-abstract/2017/IntegerIndexedElementSet.js +62 -0
  2593. package/slack-bot/node_modules/es-abstract/2017/InternalizeJSONProperty.js +68 -0
  2594. package/slack-bot/node_modules/es-abstract/2017/Invoke.js +22 -0
  2595. package/slack-bot/node_modules/es-abstract/2017/IsAccessorDescriptor.js +25 -0
  2596. package/slack-bot/node_modules/es-abstract/2017/IsArray.js +4 -0
  2597. package/slack-bot/node_modules/es-abstract/2017/IsCallable.js +5 -0
  2598. package/slack-bot/node_modules/es-abstract/2017/IsCompatiblePropertyDescriptor.js +9 -0
  2599. package/slack-bot/node_modules/es-abstract/2017/IsConcatSpreadable.js +26 -0
  2600. package/slack-bot/node_modules/es-abstract/2017/IsConstructor.js +40 -0
  2601. package/slack-bot/node_modules/es-abstract/2017/IsDataDescriptor.js +25 -0
  2602. package/slack-bot/node_modules/es-abstract/2017/IsDetachedBuffer.js +28 -0
  2603. package/slack-bot/node_modules/es-abstract/2017/IsExtensible.js +18 -0
  2604. package/slack-bot/node_modules/es-abstract/2017/IsGenericDescriptor.js +26 -0
  2605. package/slack-bot/node_modules/es-abstract/2017/IsInteger.js +9 -0
  2606. package/slack-bot/node_modules/es-abstract/2017/IsPromise.js +24 -0
  2607. package/slack-bot/node_modules/es-abstract/2017/IsPropertyDescriptor.js +11 -0
  2608. package/slack-bot/node_modules/es-abstract/2017/IsPropertyKey.js +9 -0
  2609. package/slack-bot/node_modules/es-abstract/2017/IsRegExp.js +25 -0
  2610. package/slack-bot/node_modules/es-abstract/2017/IsSharedArrayBuffer.js +16 -0
  2611. package/slack-bot/node_modules/es-abstract/2017/IsWordChar.js +45 -0
  2612. package/slack-bot/node_modules/es-abstract/2017/IterableToList.js +21 -0
  2613. package/slack-bot/node_modules/es-abstract/2017/IteratorClose.js +51 -0
  2614. package/slack-bot/node_modules/es-abstract/2017/IteratorComplete.js +16 -0
  2615. package/slack-bot/node_modules/es-abstract/2017/IteratorNext.js +16 -0
  2616. package/slack-bot/node_modules/es-abstract/2017/IteratorStep.js +13 -0
  2617. package/slack-bot/node_modules/es-abstract/2017/IteratorValue.js +16 -0
  2618. package/slack-bot/node_modules/es-abstract/2017/MakeDate.js +14 -0
  2619. package/slack-bot/node_modules/es-abstract/2017/MakeDay.js +33 -0
  2620. package/slack-bot/node_modules/es-abstract/2017/MakeTime.js +24 -0
  2621. package/slack-bot/node_modules/es-abstract/2017/MinFromTime.js +14 -0
  2622. package/slack-bot/node_modules/es-abstract/2017/MonthFromTime.js +51 -0
  2623. package/slack-bot/node_modules/es-abstract/2017/NewPromiseCapability.js +34 -0
  2624. package/slack-bot/node_modules/es-abstract/2017/NormalCompletion.js +9 -0
  2625. package/slack-bot/node_modules/es-abstract/2017/NumberToRawBytes.js +59 -0
  2626. package/slack-bot/node_modules/es-abstract/2017/ObjectCreate.js +50 -0
  2627. package/slack-bot/node_modules/es-abstract/2017/ObjectDefineProperties.js +37 -0
  2628. package/slack-bot/node_modules/es-abstract/2017/OrdinaryCreateFromConstructor.js +20 -0
  2629. package/slack-bot/node_modules/es-abstract/2017/OrdinaryDefineOwnProperty.js +54 -0
  2630. package/slack-bot/node_modules/es-abstract/2017/OrdinaryGetOwnProperty.js +40 -0
  2631. package/slack-bot/node_modules/es-abstract/2017/OrdinaryGetPrototypeOf.js +18 -0
  2632. package/slack-bot/node_modules/es-abstract/2017/OrdinaryHasInstance.js +23 -0
  2633. package/slack-bot/node_modules/es-abstract/2017/OrdinaryHasProperty.js +18 -0
  2634. package/slack-bot/node_modules/es-abstract/2017/OrdinarySetPrototypeOf.js +50 -0
  2635. package/slack-bot/node_modules/es-abstract/2017/OrdinaryToPrimitive.js +36 -0
  2636. package/slack-bot/node_modules/es-abstract/2017/QuoteJSONString.js +48 -0
  2637. package/slack-bot/node_modules/es-abstract/2017/RawBytesToNumber.js +58 -0
  2638. package/slack-bot/node_modules/es-abstract/2017/RegExpCreate.js +21 -0
  2639. package/slack-bot/node_modules/es-abstract/2017/RegExpExec.js +29 -0
  2640. package/slack-bot/node_modules/es-abstract/2017/RequireObjectCoercible.js +3 -0
  2641. package/slack-bot/node_modules/es-abstract/2017/SameValue.js +13 -0
  2642. package/slack-bot/node_modules/es-abstract/2017/SameValueNonNumber.js +14 -0
  2643. package/slack-bot/node_modules/es-abstract/2017/SameValueZero.js +9 -0
  2644. package/slack-bot/node_modules/es-abstract/2017/SecFromTime.js +14 -0
  2645. package/slack-bot/node_modules/es-abstract/2017/Set.js +45 -0
  2646. package/slack-bot/node_modules/es-abstract/2017/SetFunctionName.js +40 -0
  2647. package/slack-bot/node_modules/es-abstract/2017/SetIntegrityLevel.js +57 -0
  2648. package/slack-bot/node_modules/es-abstract/2017/SetValueInBuffer.js +94 -0
  2649. package/slack-bot/node_modules/es-abstract/2017/SpeciesConstructor.js +32 -0
  2650. package/slack-bot/node_modules/es-abstract/2017/SplitMatch.js +35 -0
  2651. package/slack-bot/node_modules/es-abstract/2017/StrictEqualityComparison.js +15 -0
  2652. package/slack-bot/node_modules/es-abstract/2017/StringCreate.js +38 -0
  2653. package/slack-bot/node_modules/es-abstract/2017/StringGetOwnProperty.js +47 -0
  2654. package/slack-bot/node_modules/es-abstract/2017/SymbolDescriptiveString.js +16 -0
  2655. package/slack-bot/node_modules/es-abstract/2017/TestIntegrityLevel.js +40 -0
  2656. package/slack-bot/node_modules/es-abstract/2017/TimeClip.js +20 -0
  2657. package/slack-bot/node_modules/es-abstract/2017/TimeFromYear.js +11 -0
  2658. package/slack-bot/node_modules/es-abstract/2017/TimeWithinDay.js +12 -0
  2659. package/slack-bot/node_modules/es-abstract/2017/ToBoolean.js +5 -0
  2660. package/slack-bot/node_modules/es-abstract/2017/ToDateString.js +21 -0
  2661. package/slack-bot/node_modules/es-abstract/2017/ToIndex.js +24 -0
  2662. package/slack-bot/node_modules/es-abstract/2017/ToInt16.js +10 -0
  2663. package/slack-bot/node_modules/es-abstract/2017/ToInt32.js +9 -0
  2664. package/slack-bot/node_modules/es-abstract/2017/ToInt8.js +10 -0
  2665. package/slack-bot/node_modules/es-abstract/2017/ToInteger.js +12 -0
  2666. package/slack-bot/node_modules/es-abstract/2017/ToLength.js +14 -0
  2667. package/slack-bot/node_modules/es-abstract/2017/ToNumber.js +48 -0
  2668. package/slack-bot/node_modules/es-abstract/2017/ToObject.js +5 -0
  2669. package/slack-bot/node_modules/es-abstract/2017/ToPrimitive.js +12 -0
  2670. package/slack-bot/node_modules/es-abstract/2017/ToPropertyDescriptor.js +50 -0
  2671. package/slack-bot/node_modules/es-abstract/2017/ToPropertyKey.js +15 -0
  2672. package/slack-bot/node_modules/es-abstract/2017/ToString.js +15 -0
  2673. package/slack-bot/node_modules/es-abstract/2017/ToUint16.js +19 -0
  2674. package/slack-bot/node_modules/es-abstract/2017/ToUint32.js +9 -0
  2675. package/slack-bot/node_modules/es-abstract/2017/ToUint8.js +19 -0
  2676. package/slack-bot/node_modules/es-abstract/2017/ToUint8Clamp.js +19 -0
  2677. package/slack-bot/node_modules/es-abstract/2017/Type.js +12 -0
  2678. package/slack-bot/node_modules/es-abstract/2017/TypedArrayCreate.js +47 -0
  2679. package/slack-bot/node_modules/es-abstract/2017/TypedArraySpeciesCreate.js +37 -0
  2680. package/slack-bot/node_modules/es-abstract/2017/UTF16Decode.js +21 -0
  2681. package/slack-bot/node_modules/es-abstract/2017/UTF16Encoding.js +25 -0
  2682. package/slack-bot/node_modules/es-abstract/2017/ValidateAndApplyPropertyDescriptor.js +159 -0
  2683. package/slack-bot/node_modules/es-abstract/2017/ValidateAtomicAccess.js +34 -0
  2684. package/slack-bot/node_modules/es-abstract/2017/ValidateTypedArray.js +28 -0
  2685. package/slack-bot/node_modules/es-abstract/2017/WeekDay.js +10 -0
  2686. package/slack-bot/node_modules/es-abstract/2017/WordCharacters.js +46 -0
  2687. package/slack-bot/node_modules/es-abstract/2017/YearFromTime.js +16 -0
  2688. package/slack-bot/node_modules/es-abstract/2017/abs.js +9 -0
  2689. package/slack-bot/node_modules/es-abstract/2017/floor.js +11 -0
  2690. package/slack-bot/node_modules/es-abstract/2017/max.js +5 -0
  2691. package/slack-bot/node_modules/es-abstract/2017/min.js +5 -0
  2692. package/slack-bot/node_modules/es-abstract/2017/modulo.js +9 -0
  2693. package/slack-bot/node_modules/es-abstract/2017/msFromTime.js +11 -0
  2694. package/slack-bot/node_modules/es-abstract/2017/tables/typed-array-objects.js +32 -0
  2695. package/slack-bot/node_modules/es-abstract/2017/thisBooleanValue.js +13 -0
  2696. package/slack-bot/node_modules/es-abstract/2017/thisNumberValue.js +16 -0
  2697. package/slack-bot/node_modules/es-abstract/2017/thisStringValue.js +13 -0
  2698. package/slack-bot/node_modules/es-abstract/2017/thisTimeValue.js +9 -0
  2699. package/slack-bot/node_modules/es-abstract/2018/AbstractEqualityComparison.js +38 -0
  2700. package/slack-bot/node_modules/es-abstract/2018/AbstractRelationalComparison.js +59 -0
  2701. package/slack-bot/node_modules/es-abstract/2018/AdvanceStringIndex.js +44 -0
  2702. package/slack-bot/node_modules/es-abstract/2018/ArrayCreate.js +42 -0
  2703. package/slack-bot/node_modules/es-abstract/2018/ArraySetLength.js +77 -0
  2704. package/slack-bot/node_modules/es-abstract/2018/ArraySpeciesCreate.js +46 -0
  2705. package/slack-bot/node_modules/es-abstract/2018/AsyncIteratorClose.js +64 -0
  2706. package/slack-bot/node_modules/es-abstract/2018/Call.js +20 -0
  2707. package/slack-bot/node_modules/es-abstract/2018/CanonicalNumericIndexString.js +19 -0
  2708. package/slack-bot/node_modules/es-abstract/2018/Canonicalize.js +51 -0
  2709. package/slack-bot/node_modules/es-abstract/2018/CharacterRange.js +53 -0
  2710. package/slack-bot/node_modules/es-abstract/2018/CompletePropertyDescriptor.js +43 -0
  2711. package/slack-bot/node_modules/es-abstract/2018/CompletionRecord.js +48 -0
  2712. package/slack-bot/node_modules/es-abstract/2018/CopyDataProperties.js +62 -0
  2713. package/slack-bot/node_modules/es-abstract/2018/CreateAsyncFromSyncIterator.js +169 -0
  2714. package/slack-bot/node_modules/es-abstract/2018/CreateDataProperty.js +25 -0
  2715. package/slack-bot/node_modules/es-abstract/2018/CreateDataPropertyOrThrow.js +24 -0
  2716. package/slack-bot/node_modules/es-abstract/2018/CreateHTML.js +27 -0
  2717. package/slack-bot/node_modules/es-abstract/2018/CreateIterResultObject.js +15 -0
  2718. package/slack-bot/node_modules/es-abstract/2018/CreateListFromArrayLike.js +43 -0
  2719. package/slack-bot/node_modules/es-abstract/2018/CreateMethodProperty.js +38 -0
  2720. package/slack-bot/node_modules/es-abstract/2018/DateFromTime.js +52 -0
  2721. package/slack-bot/node_modules/es-abstract/2018/DateString.js +27 -0
  2722. package/slack-bot/node_modules/es-abstract/2018/Day.js +11 -0
  2723. package/slack-bot/node_modules/es-abstract/2018/DayFromYear.js +10 -0
  2724. package/slack-bot/node_modules/es-abstract/2018/DayWithinYear.js +11 -0
  2725. package/slack-bot/node_modules/es-abstract/2018/DaysInYear.js +18 -0
  2726. package/slack-bot/node_modules/es-abstract/2018/DefinePropertyOrThrow.js +39 -0
  2727. package/slack-bot/node_modules/es-abstract/2018/DeletePropertyOrThrow.js +25 -0
  2728. package/slack-bot/node_modules/es-abstract/2018/DetachArrayBuffer.js +46 -0
  2729. package/slack-bot/node_modules/es-abstract/2018/EnumerableOwnPropertyNames.js +37 -0
  2730. package/slack-bot/node_modules/es-abstract/2018/FromPropertyDescriptor.js +16 -0
  2731. package/slack-bot/node_modules/es-abstract/2018/Get.js +24 -0
  2732. package/slack-bot/node_modules/es-abstract/2018/GetGlobalObject.js +9 -0
  2733. package/slack-bot/node_modules/es-abstract/2018/GetIterator.js +30 -0
  2734. package/slack-bot/node_modules/es-abstract/2018/GetMethod.js +34 -0
  2735. package/slack-bot/node_modules/es-abstract/2018/GetOwnPropertyKeys.js +30 -0
  2736. package/slack-bot/node_modules/es-abstract/2018/GetPrototypeFromConstructor.js +33 -0
  2737. package/slack-bot/node_modules/es-abstract/2018/GetSubstitution.js +120 -0
  2738. package/slack-bot/node_modules/es-abstract/2018/GetV.js +23 -0
  2739. package/slack-bot/node_modules/es-abstract/2018/GetValueFromBuffer.js +96 -0
  2740. package/slack-bot/node_modules/es-abstract/2018/HasOwnProperty.js +20 -0
  2741. package/slack-bot/node_modules/es-abstract/2018/HasProperty.js +18 -0
  2742. package/slack-bot/node_modules/es-abstract/2018/HourFromTime.js +14 -0
  2743. package/slack-bot/node_modules/es-abstract/2018/InLeapYear.js +19 -0
  2744. package/slack-bot/node_modules/es-abstract/2018/InstanceofOperator.js +30 -0
  2745. package/slack-bot/node_modules/es-abstract/2018/IntegerIndexedElementGet.js +58 -0
  2746. package/slack-bot/node_modules/es-abstract/2018/IntegerIndexedElementSet.js +62 -0
  2747. package/slack-bot/node_modules/es-abstract/2018/InternalizeJSONProperty.js +68 -0
  2748. package/slack-bot/node_modules/es-abstract/2018/Invoke.js +22 -0
  2749. package/slack-bot/node_modules/es-abstract/2018/IsAccessorDescriptor.js +25 -0
  2750. package/slack-bot/node_modules/es-abstract/2018/IsArray.js +4 -0
  2751. package/slack-bot/node_modules/es-abstract/2018/IsCallable.js +5 -0
  2752. package/slack-bot/node_modules/es-abstract/2018/IsCompatiblePropertyDescriptor.js +9 -0
  2753. package/slack-bot/node_modules/es-abstract/2018/IsConcatSpreadable.js +26 -0
  2754. package/slack-bot/node_modules/es-abstract/2018/IsConstructor.js +40 -0
  2755. package/slack-bot/node_modules/es-abstract/2018/IsDataDescriptor.js +25 -0
  2756. package/slack-bot/node_modules/es-abstract/2018/IsDetachedBuffer.js +28 -0
  2757. package/slack-bot/node_modules/es-abstract/2018/IsExtensible.js +18 -0
  2758. package/slack-bot/node_modules/es-abstract/2018/IsGenericDescriptor.js +26 -0
  2759. package/slack-bot/node_modules/es-abstract/2018/IsInteger.js +9 -0
  2760. package/slack-bot/node_modules/es-abstract/2018/IsPromise.js +24 -0
  2761. package/slack-bot/node_modules/es-abstract/2018/IsPropertyKey.js +9 -0
  2762. package/slack-bot/node_modules/es-abstract/2018/IsRegExp.js +25 -0
  2763. package/slack-bot/node_modules/es-abstract/2018/IsSharedArrayBuffer.js +16 -0
  2764. package/slack-bot/node_modules/es-abstract/2018/IsStringPrefix.js +43 -0
  2765. package/slack-bot/node_modules/es-abstract/2018/IsWordChar.js +45 -0
  2766. package/slack-bot/node_modules/es-abstract/2018/IterableToList.js +21 -0
  2767. package/slack-bot/node_modules/es-abstract/2018/IteratorClose.js +51 -0
  2768. package/slack-bot/node_modules/es-abstract/2018/IteratorComplete.js +16 -0
  2769. package/slack-bot/node_modules/es-abstract/2018/IteratorNext.js +16 -0
  2770. package/slack-bot/node_modules/es-abstract/2018/IteratorStep.js +13 -0
  2771. package/slack-bot/node_modules/es-abstract/2018/IteratorValue.js +16 -0
  2772. package/slack-bot/node_modules/es-abstract/2018/MakeDate.js +14 -0
  2773. package/slack-bot/node_modules/es-abstract/2018/MakeDay.js +33 -0
  2774. package/slack-bot/node_modules/es-abstract/2018/MakeTime.js +24 -0
  2775. package/slack-bot/node_modules/es-abstract/2018/MinFromTime.js +14 -0
  2776. package/slack-bot/node_modules/es-abstract/2018/MonthFromTime.js +51 -0
  2777. package/slack-bot/node_modules/es-abstract/2018/NewPromiseCapability.js +34 -0
  2778. package/slack-bot/node_modules/es-abstract/2018/NormalCompletion.js +9 -0
  2779. package/slack-bot/node_modules/es-abstract/2018/NumberToRawBytes.js +59 -0
  2780. package/slack-bot/node_modules/es-abstract/2018/NumberToString.js +17 -0
  2781. package/slack-bot/node_modules/es-abstract/2018/ObjectCreate.js +50 -0
  2782. package/slack-bot/node_modules/es-abstract/2018/ObjectDefineProperties.js +37 -0
  2783. package/slack-bot/node_modules/es-abstract/2018/OrdinaryCreateFromConstructor.js +20 -0
  2784. package/slack-bot/node_modules/es-abstract/2018/OrdinaryDefineOwnProperty.js +54 -0
  2785. package/slack-bot/node_modules/es-abstract/2018/OrdinaryGetOwnProperty.js +40 -0
  2786. package/slack-bot/node_modules/es-abstract/2018/OrdinaryGetPrototypeOf.js +18 -0
  2787. package/slack-bot/node_modules/es-abstract/2018/OrdinaryHasInstance.js +23 -0
  2788. package/slack-bot/node_modules/es-abstract/2018/OrdinaryHasProperty.js +18 -0
  2789. package/slack-bot/node_modules/es-abstract/2018/OrdinarySetPrototypeOf.js +50 -0
  2790. package/slack-bot/node_modules/es-abstract/2018/OrdinaryToPrimitive.js +36 -0
  2791. package/slack-bot/node_modules/es-abstract/2018/PromiseResolve.js +18 -0
  2792. package/slack-bot/node_modules/es-abstract/2018/QuoteJSONString.js +45 -0
  2793. package/slack-bot/node_modules/es-abstract/2018/RawBytesToNumber.js +58 -0
  2794. package/slack-bot/node_modules/es-abstract/2018/RegExpCreate.js +21 -0
  2795. package/slack-bot/node_modules/es-abstract/2018/RegExpExec.js +29 -0
  2796. package/slack-bot/node_modules/es-abstract/2018/RequireObjectCoercible.js +3 -0
  2797. package/slack-bot/node_modules/es-abstract/2018/SameValue.js +13 -0
  2798. package/slack-bot/node_modules/es-abstract/2018/SameValueNonNumber.js +14 -0
  2799. package/slack-bot/node_modules/es-abstract/2018/SameValueZero.js +9 -0
  2800. package/slack-bot/node_modules/es-abstract/2018/SecFromTime.js +14 -0
  2801. package/slack-bot/node_modules/es-abstract/2018/Set.js +45 -0
  2802. package/slack-bot/node_modules/es-abstract/2018/SetFunctionLength.js +28 -0
  2803. package/slack-bot/node_modules/es-abstract/2018/SetFunctionName.js +40 -0
  2804. package/slack-bot/node_modules/es-abstract/2018/SetIntegrityLevel.js +57 -0
  2805. package/slack-bot/node_modules/es-abstract/2018/SetValueInBuffer.js +94 -0
  2806. package/slack-bot/node_modules/es-abstract/2018/SpeciesConstructor.js +32 -0
  2807. package/slack-bot/node_modules/es-abstract/2018/SplitMatch.js +35 -0
  2808. package/slack-bot/node_modules/es-abstract/2018/StrictEqualityComparison.js +15 -0
  2809. package/slack-bot/node_modules/es-abstract/2018/StringCreate.js +38 -0
  2810. package/slack-bot/node_modules/es-abstract/2018/StringGetOwnProperty.js +47 -0
  2811. package/slack-bot/node_modules/es-abstract/2018/SymbolDescriptiveString.js +16 -0
  2812. package/slack-bot/node_modules/es-abstract/2018/TestIntegrityLevel.js +40 -0
  2813. package/slack-bot/node_modules/es-abstract/2018/ThrowCompletion.js +9 -0
  2814. package/slack-bot/node_modules/es-abstract/2018/TimeClip.js +20 -0
  2815. package/slack-bot/node_modules/es-abstract/2018/TimeFromYear.js +11 -0
  2816. package/slack-bot/node_modules/es-abstract/2018/TimeString.js +22 -0
  2817. package/slack-bot/node_modules/es-abstract/2018/TimeWithinDay.js +12 -0
  2818. package/slack-bot/node_modules/es-abstract/2018/TimeZoneString.js +33 -0
  2819. package/slack-bot/node_modules/es-abstract/2018/ToBoolean.js +5 -0
  2820. package/slack-bot/node_modules/es-abstract/2018/ToDateString.js +21 -0
  2821. package/slack-bot/node_modules/es-abstract/2018/ToIndex.js +24 -0
  2822. package/slack-bot/node_modules/es-abstract/2018/ToInt16.js +10 -0
  2823. package/slack-bot/node_modules/es-abstract/2018/ToInt32.js +9 -0
  2824. package/slack-bot/node_modules/es-abstract/2018/ToInt8.js +10 -0
  2825. package/slack-bot/node_modules/es-abstract/2018/ToInteger.js +12 -0
  2826. package/slack-bot/node_modules/es-abstract/2018/ToLength.js +14 -0
  2827. package/slack-bot/node_modules/es-abstract/2018/ToNumber.js +48 -0
  2828. package/slack-bot/node_modules/es-abstract/2018/ToObject.js +5 -0
  2829. package/slack-bot/node_modules/es-abstract/2018/ToPrimitive.js +12 -0
  2830. package/slack-bot/node_modules/es-abstract/2018/ToPropertyDescriptor.js +50 -0
  2831. package/slack-bot/node_modules/es-abstract/2018/ToPropertyKey.js +15 -0
  2832. package/slack-bot/node_modules/es-abstract/2018/ToString.js +15 -0
  2833. package/slack-bot/node_modules/es-abstract/2018/ToUint16.js +19 -0
  2834. package/slack-bot/node_modules/es-abstract/2018/ToUint32.js +9 -0
  2835. package/slack-bot/node_modules/es-abstract/2018/ToUint8.js +19 -0
  2836. package/slack-bot/node_modules/es-abstract/2018/ToUint8Clamp.js +19 -0
  2837. package/slack-bot/node_modules/es-abstract/2018/Type.js +12 -0
  2838. package/slack-bot/node_modules/es-abstract/2018/TypedArrayCreate.js +47 -0
  2839. package/slack-bot/node_modules/es-abstract/2018/TypedArraySpeciesCreate.js +37 -0
  2840. package/slack-bot/node_modules/es-abstract/2018/UTF16Decode.js +21 -0
  2841. package/slack-bot/node_modules/es-abstract/2018/UTF16Encoding.js +25 -0
  2842. package/slack-bot/node_modules/es-abstract/2018/UnicodeEscape.js +24 -0
  2843. package/slack-bot/node_modules/es-abstract/2018/ValidateAndApplyPropertyDescriptor.js +159 -0
  2844. package/slack-bot/node_modules/es-abstract/2018/ValidateAtomicAccess.js +34 -0
  2845. package/slack-bot/node_modules/es-abstract/2018/ValidateTypedArray.js +28 -0
  2846. package/slack-bot/node_modules/es-abstract/2018/WeekDay.js +10 -0
  2847. package/slack-bot/node_modules/es-abstract/2018/WordCharacters.js +46 -0
  2848. package/slack-bot/node_modules/es-abstract/2018/YearFromTime.js +16 -0
  2849. package/slack-bot/node_modules/es-abstract/2018/abs.js +9 -0
  2850. package/slack-bot/node_modules/es-abstract/2018/floor.js +11 -0
  2851. package/slack-bot/node_modules/es-abstract/2018/max.js +5 -0
  2852. package/slack-bot/node_modules/es-abstract/2018/min.js +5 -0
  2853. package/slack-bot/node_modules/es-abstract/2018/modulo.js +9 -0
  2854. package/slack-bot/node_modules/es-abstract/2018/msFromTime.js +11 -0
  2855. package/slack-bot/node_modules/es-abstract/2018/tables/typed-array-objects.js +32 -0
  2856. package/slack-bot/node_modules/es-abstract/2018/thisBooleanValue.js +13 -0
  2857. package/slack-bot/node_modules/es-abstract/2018/thisNumberValue.js +16 -0
  2858. package/slack-bot/node_modules/es-abstract/2018/thisStringValue.js +13 -0
  2859. package/slack-bot/node_modules/es-abstract/2018/thisSymbolValue.js +20 -0
  2860. package/slack-bot/node_modules/es-abstract/2018/thisTimeValue.js +9 -0
  2861. package/slack-bot/node_modules/es-abstract/2019/AbstractEqualityComparison.js +38 -0
  2862. package/slack-bot/node_modules/es-abstract/2019/AbstractRelationalComparison.js +59 -0
  2863. package/slack-bot/node_modules/es-abstract/2019/AddEntriesFromIterable.js +44 -0
  2864. package/slack-bot/node_modules/es-abstract/2019/AdvanceStringIndex.js +44 -0
  2865. package/slack-bot/node_modules/es-abstract/2019/ArrayCreate.js +42 -0
  2866. package/slack-bot/node_modules/es-abstract/2019/ArraySetLength.js +77 -0
  2867. package/slack-bot/node_modules/es-abstract/2019/ArraySpeciesCreate.js +46 -0
  2868. package/slack-bot/node_modules/es-abstract/2019/AsyncFromSyncIteratorContinuation.js +45 -0
  2869. package/slack-bot/node_modules/es-abstract/2019/AsyncIteratorClose.js +64 -0
  2870. package/slack-bot/node_modules/es-abstract/2019/Call.js +20 -0
  2871. package/slack-bot/node_modules/es-abstract/2019/CanonicalNumericIndexString.js +19 -0
  2872. package/slack-bot/node_modules/es-abstract/2019/Canonicalize.js +51 -0
  2873. package/slack-bot/node_modules/es-abstract/2019/CharacterRange.js +53 -0
  2874. package/slack-bot/node_modules/es-abstract/2019/CompletePropertyDescriptor.js +43 -0
  2875. package/slack-bot/node_modules/es-abstract/2019/CompletionRecord.js +48 -0
  2876. package/slack-bot/node_modules/es-abstract/2019/CopyDataProperties.js +62 -0
  2877. package/slack-bot/node_modules/es-abstract/2019/CreateAsyncFromSyncIterator.js +137 -0
  2878. package/slack-bot/node_modules/es-abstract/2019/CreateDataProperty.js +25 -0
  2879. package/slack-bot/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js +24 -0
  2880. package/slack-bot/node_modules/es-abstract/2019/CreateHTML.js +27 -0
  2881. package/slack-bot/node_modules/es-abstract/2019/CreateIterResultObject.js +15 -0
  2882. package/slack-bot/node_modules/es-abstract/2019/CreateListFromArrayLike.js +43 -0
  2883. package/slack-bot/node_modules/es-abstract/2019/CreateMethodProperty.js +38 -0
  2884. package/slack-bot/node_modules/es-abstract/2019/DateFromTime.js +52 -0
  2885. package/slack-bot/node_modules/es-abstract/2019/DateString.js +27 -0
  2886. package/slack-bot/node_modules/es-abstract/2019/Day.js +11 -0
  2887. package/slack-bot/node_modules/es-abstract/2019/DayFromYear.js +10 -0
  2888. package/slack-bot/node_modules/es-abstract/2019/DayWithinYear.js +11 -0
  2889. package/slack-bot/node_modules/es-abstract/2019/DaysInYear.js +18 -0
  2890. package/slack-bot/node_modules/es-abstract/2019/DefinePropertyOrThrow.js +39 -0
  2891. package/slack-bot/node_modules/es-abstract/2019/DeletePropertyOrThrow.js +25 -0
  2892. package/slack-bot/node_modules/es-abstract/2019/DetachArrayBuffer.js +46 -0
  2893. package/slack-bot/node_modules/es-abstract/2019/EnumerableOwnPropertyNames.js +37 -0
  2894. package/slack-bot/node_modules/es-abstract/2019/FlattenIntoArray.js +55 -0
  2895. package/slack-bot/node_modules/es-abstract/2019/FromPropertyDescriptor.js +16 -0
  2896. package/slack-bot/node_modules/es-abstract/2019/Get.js +24 -0
  2897. package/slack-bot/node_modules/es-abstract/2019/GetGlobalObject.js +9 -0
  2898. package/slack-bot/node_modules/es-abstract/2019/GetIterator.js +30 -0
  2899. package/slack-bot/node_modules/es-abstract/2019/GetMethod.js +34 -0
  2900. package/slack-bot/node_modules/es-abstract/2019/GetOwnPropertyKeys.js +30 -0
  2901. package/slack-bot/node_modules/es-abstract/2019/GetPrototypeFromConstructor.js +33 -0
  2902. package/slack-bot/node_modules/es-abstract/2019/GetSubstitution.js +120 -0
  2903. package/slack-bot/node_modules/es-abstract/2019/GetV.js +23 -0
  2904. package/slack-bot/node_modules/es-abstract/2019/GetValueFromBuffer.js +94 -0
  2905. package/slack-bot/node_modules/es-abstract/2019/HasOwnProperty.js +20 -0
  2906. package/slack-bot/node_modules/es-abstract/2019/HasProperty.js +18 -0
  2907. package/slack-bot/node_modules/es-abstract/2019/HourFromTime.js +14 -0
  2908. package/slack-bot/node_modules/es-abstract/2019/InLeapYear.js +19 -0
  2909. package/slack-bot/node_modules/es-abstract/2019/InstanceofOperator.js +30 -0
  2910. package/slack-bot/node_modules/es-abstract/2019/IntegerIndexedElementGet.js +58 -0
  2911. package/slack-bot/node_modules/es-abstract/2019/IntegerIndexedElementSet.js +62 -0
  2912. package/slack-bot/node_modules/es-abstract/2019/InternalizeJSONProperty.js +68 -0
  2913. package/slack-bot/node_modules/es-abstract/2019/Invoke.js +22 -0
  2914. package/slack-bot/node_modules/es-abstract/2019/IsAccessorDescriptor.js +25 -0
  2915. package/slack-bot/node_modules/es-abstract/2019/IsArray.js +4 -0
  2916. package/slack-bot/node_modules/es-abstract/2019/IsCallable.js +5 -0
  2917. package/slack-bot/node_modules/es-abstract/2019/IsCompatiblePropertyDescriptor.js +9 -0
  2918. package/slack-bot/node_modules/es-abstract/2019/IsConcatSpreadable.js +26 -0
  2919. package/slack-bot/node_modules/es-abstract/2019/IsConstructor.js +40 -0
  2920. package/slack-bot/node_modules/es-abstract/2019/IsDataDescriptor.js +25 -0
  2921. package/slack-bot/node_modules/es-abstract/2019/IsDetachedBuffer.js +28 -0
  2922. package/slack-bot/node_modules/es-abstract/2019/IsExtensible.js +18 -0
  2923. package/slack-bot/node_modules/es-abstract/2019/IsGenericDescriptor.js +26 -0
  2924. package/slack-bot/node_modules/es-abstract/2019/IsInteger.js +9 -0
  2925. package/slack-bot/node_modules/es-abstract/2019/IsPromise.js +24 -0
  2926. package/slack-bot/node_modules/es-abstract/2019/IsPropertyKey.js +9 -0
  2927. package/slack-bot/node_modules/es-abstract/2019/IsRegExp.js +25 -0
  2928. package/slack-bot/node_modules/es-abstract/2019/IsSharedArrayBuffer.js +16 -0
  2929. package/slack-bot/node_modules/es-abstract/2019/IsStringPrefix.js +43 -0
  2930. package/slack-bot/node_modules/es-abstract/2019/IsWordChar.js +45 -0
  2931. package/slack-bot/node_modules/es-abstract/2019/IterableToList.js +21 -0
  2932. package/slack-bot/node_modules/es-abstract/2019/IteratorClose.js +51 -0
  2933. package/slack-bot/node_modules/es-abstract/2019/IteratorComplete.js +16 -0
  2934. package/slack-bot/node_modules/es-abstract/2019/IteratorNext.js +16 -0
  2935. package/slack-bot/node_modules/es-abstract/2019/IteratorStep.js +13 -0
  2936. package/slack-bot/node_modules/es-abstract/2019/IteratorValue.js +16 -0
  2937. package/slack-bot/node_modules/es-abstract/2019/MakeDate.js +14 -0
  2938. package/slack-bot/node_modules/es-abstract/2019/MakeDay.js +33 -0
  2939. package/slack-bot/node_modules/es-abstract/2019/MakeTime.js +24 -0
  2940. package/slack-bot/node_modules/es-abstract/2019/MinFromTime.js +14 -0
  2941. package/slack-bot/node_modules/es-abstract/2019/MonthFromTime.js +51 -0
  2942. package/slack-bot/node_modules/es-abstract/2019/NewPromiseCapability.js +34 -0
  2943. package/slack-bot/node_modules/es-abstract/2019/NormalCompletion.js +9 -0
  2944. package/slack-bot/node_modules/es-abstract/2019/NumberToRawBytes.js +59 -0
  2945. package/slack-bot/node_modules/es-abstract/2019/NumberToString.js +17 -0
  2946. package/slack-bot/node_modules/es-abstract/2019/ObjectCreate.js +50 -0
  2947. package/slack-bot/node_modules/es-abstract/2019/ObjectDefineProperties.js +37 -0
  2948. package/slack-bot/node_modules/es-abstract/2019/OrdinaryCreateFromConstructor.js +20 -0
  2949. package/slack-bot/node_modules/es-abstract/2019/OrdinaryDefineOwnProperty.js +54 -0
  2950. package/slack-bot/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js +40 -0
  2951. package/slack-bot/node_modules/es-abstract/2019/OrdinaryGetPrototypeOf.js +18 -0
  2952. package/slack-bot/node_modules/es-abstract/2019/OrdinaryHasInstance.js +23 -0
  2953. package/slack-bot/node_modules/es-abstract/2019/OrdinaryHasProperty.js +18 -0
  2954. package/slack-bot/node_modules/es-abstract/2019/OrdinarySetPrototypeOf.js +50 -0
  2955. package/slack-bot/node_modules/es-abstract/2019/OrdinaryToPrimitive.js +36 -0
  2956. package/slack-bot/node_modules/es-abstract/2019/PromiseResolve.js +18 -0
  2957. package/slack-bot/node_modules/es-abstract/2019/QuoteJSONString.js +51 -0
  2958. package/slack-bot/node_modules/es-abstract/2019/RawBytesToNumber.js +58 -0
  2959. package/slack-bot/node_modules/es-abstract/2019/RegExpCreate.js +21 -0
  2960. package/slack-bot/node_modules/es-abstract/2019/RegExpExec.js +29 -0
  2961. package/slack-bot/node_modules/es-abstract/2019/RequireObjectCoercible.js +3 -0
  2962. package/slack-bot/node_modules/es-abstract/2019/SameValue.js +13 -0
  2963. package/slack-bot/node_modules/es-abstract/2019/SameValueNonNumber.js +14 -0
  2964. package/slack-bot/node_modules/es-abstract/2019/SameValueZero.js +9 -0
  2965. package/slack-bot/node_modules/es-abstract/2019/SecFromTime.js +14 -0
  2966. package/slack-bot/node_modules/es-abstract/2019/Set.js +45 -0
  2967. package/slack-bot/node_modules/es-abstract/2019/SetFunctionLength.js +28 -0
  2968. package/slack-bot/node_modules/es-abstract/2019/SetFunctionName.js +40 -0
  2969. package/slack-bot/node_modules/es-abstract/2019/SetIntegrityLevel.js +57 -0
  2970. package/slack-bot/node_modules/es-abstract/2019/SetValueInBuffer.js +94 -0
  2971. package/slack-bot/node_modules/es-abstract/2019/SpeciesConstructor.js +32 -0
  2972. package/slack-bot/node_modules/es-abstract/2019/SplitMatch.js +35 -0
  2973. package/slack-bot/node_modules/es-abstract/2019/StrictEqualityComparison.js +15 -0
  2974. package/slack-bot/node_modules/es-abstract/2019/StringCreate.js +38 -0
  2975. package/slack-bot/node_modules/es-abstract/2019/StringGetOwnProperty.js +47 -0
  2976. package/slack-bot/node_modules/es-abstract/2019/SymbolDescriptiveString.js +16 -0
  2977. package/slack-bot/node_modules/es-abstract/2019/TestIntegrityLevel.js +40 -0
  2978. package/slack-bot/node_modules/es-abstract/2019/ThrowCompletion.js +9 -0
  2979. package/slack-bot/node_modules/es-abstract/2019/TimeClip.js +20 -0
  2980. package/slack-bot/node_modules/es-abstract/2019/TimeFromYear.js +11 -0
  2981. package/slack-bot/node_modules/es-abstract/2019/TimeString.js +22 -0
  2982. package/slack-bot/node_modules/es-abstract/2019/TimeWithinDay.js +12 -0
  2983. package/slack-bot/node_modules/es-abstract/2019/TimeZoneString.js +33 -0
  2984. package/slack-bot/node_modules/es-abstract/2019/ToBoolean.js +5 -0
  2985. package/slack-bot/node_modules/es-abstract/2019/ToDateString.js +21 -0
  2986. package/slack-bot/node_modules/es-abstract/2019/ToIndex.js +24 -0
  2987. package/slack-bot/node_modules/es-abstract/2019/ToInt16.js +10 -0
  2988. package/slack-bot/node_modules/es-abstract/2019/ToInt32.js +9 -0
  2989. package/slack-bot/node_modules/es-abstract/2019/ToInt8.js +10 -0
  2990. package/slack-bot/node_modules/es-abstract/2019/ToInteger.js +12 -0
  2991. package/slack-bot/node_modules/es-abstract/2019/ToLength.js +14 -0
  2992. package/slack-bot/node_modules/es-abstract/2019/ToNumber.js +48 -0
  2993. package/slack-bot/node_modules/es-abstract/2019/ToObject.js +5 -0
  2994. package/slack-bot/node_modules/es-abstract/2019/ToPrimitive.js +12 -0
  2995. package/slack-bot/node_modules/es-abstract/2019/ToPropertyDescriptor.js +50 -0
  2996. package/slack-bot/node_modules/es-abstract/2019/ToPropertyKey.js +15 -0
  2997. package/slack-bot/node_modules/es-abstract/2019/ToString.js +15 -0
  2998. package/slack-bot/node_modules/es-abstract/2019/ToUint16.js +19 -0
  2999. package/slack-bot/node_modules/es-abstract/2019/ToUint32.js +9 -0
  3000. package/slack-bot/node_modules/es-abstract/2019/ToUint8.js +19 -0
  3001. package/slack-bot/node_modules/es-abstract/2019/ToUint8Clamp.js +19 -0
  3002. package/slack-bot/node_modules/es-abstract/2019/TrimString.js +27 -0
  3003. package/slack-bot/node_modules/es-abstract/2019/Type.js +12 -0
  3004. package/slack-bot/node_modules/es-abstract/2019/TypedArrayCreate.js +47 -0
  3005. package/slack-bot/node_modules/es-abstract/2019/TypedArraySpeciesCreate.js +37 -0
  3006. package/slack-bot/node_modules/es-abstract/2019/UTF16Decode.js +21 -0
  3007. package/slack-bot/node_modules/es-abstract/2019/UTF16Encoding.js +25 -0
  3008. package/slack-bot/node_modules/es-abstract/2019/UnicodeEscape.js +24 -0
  3009. package/slack-bot/node_modules/es-abstract/2019/ValidateAndApplyPropertyDescriptor.js +159 -0
  3010. package/slack-bot/node_modules/es-abstract/2019/ValidateAtomicAccess.js +34 -0
  3011. package/slack-bot/node_modules/es-abstract/2019/ValidateTypedArray.js +28 -0
  3012. package/slack-bot/node_modules/es-abstract/2019/WeekDay.js +10 -0
  3013. package/slack-bot/node_modules/es-abstract/2019/WordCharacters.js +46 -0
  3014. package/slack-bot/node_modules/es-abstract/2019/YearFromTime.js +16 -0
  3015. package/slack-bot/node_modules/es-abstract/2019/abs.js +9 -0
  3016. package/slack-bot/node_modules/es-abstract/2019/floor.js +11 -0
  3017. package/slack-bot/node_modules/es-abstract/2019/max.js +5 -0
  3018. package/slack-bot/node_modules/es-abstract/2019/min.js +5 -0
  3019. package/slack-bot/node_modules/es-abstract/2019/modulo.js +9 -0
  3020. package/slack-bot/node_modules/es-abstract/2019/msFromTime.js +11 -0
  3021. package/slack-bot/node_modules/es-abstract/2019/tables/typed-array-objects.js +32 -0
  3022. package/slack-bot/node_modules/es-abstract/2019/thisBooleanValue.js +13 -0
  3023. package/slack-bot/node_modules/es-abstract/2019/thisNumberValue.js +16 -0
  3024. package/slack-bot/node_modules/es-abstract/2019/thisStringValue.js +13 -0
  3025. package/slack-bot/node_modules/es-abstract/2019/thisSymbolValue.js +20 -0
  3026. package/slack-bot/node_modules/es-abstract/2019/thisTimeValue.js +9 -0
  3027. package/slack-bot/node_modules/es-abstract/2020/AbstractEqualityComparison.js +56 -0
  3028. package/slack-bot/node_modules/es-abstract/2020/AbstractRelationalComparison.js +80 -0
  3029. package/slack-bot/node_modules/es-abstract/2020/AddEntriesFromIterable.js +44 -0
  3030. package/slack-bot/node_modules/es-abstract/2020/AdvanceStringIndex.js +30 -0
  3031. package/slack-bot/node_modules/es-abstract/2020/ArrayCreate.js +42 -0
  3032. package/slack-bot/node_modules/es-abstract/2020/ArraySetLength.js +77 -0
  3033. package/slack-bot/node_modules/es-abstract/2020/ArraySpeciesCreate.js +46 -0
  3034. package/slack-bot/node_modules/es-abstract/2020/AsyncFromSyncIteratorContinuation.js +45 -0
  3035. package/slack-bot/node_modules/es-abstract/2020/AsyncIteratorClose.js +64 -0
  3036. package/slack-bot/node_modules/es-abstract/2020/BigInt/add.js +14 -0
  3037. package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseAND.js +14 -0
  3038. package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseNOT.js +15 -0
  3039. package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseOR.js +14 -0
  3040. package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseXOR.js +14 -0
  3041. package/slack-bot/node_modules/es-abstract/2020/BigInt/divide.js +20 -0
  3042. package/slack-bot/node_modules/es-abstract/2020/BigInt/equal.js +13 -0
  3043. package/slack-bot/node_modules/es-abstract/2020/BigInt/exponentiate.js +29 -0
  3044. package/slack-bot/node_modules/es-abstract/2020/BigInt/index.js +43 -0
  3045. package/slack-bot/node_modules/es-abstract/2020/BigInt/leftShift.js +14 -0
  3046. package/slack-bot/node_modules/es-abstract/2020/BigInt/lessThan.js +14 -0
  3047. package/slack-bot/node_modules/es-abstract/2020/BigInt/multiply.js +14 -0
  3048. package/slack-bot/node_modules/es-abstract/2020/BigInt/remainder.js +28 -0
  3049. package/slack-bot/node_modules/es-abstract/2020/BigInt/sameValue.js +15 -0
  3050. package/slack-bot/node_modules/es-abstract/2020/BigInt/sameValueZero.js +15 -0
  3051. package/slack-bot/node_modules/es-abstract/2020/BigInt/signedRightShift.js +15 -0
  3052. package/slack-bot/node_modules/es-abstract/2020/BigInt/subtract.js +14 -0
  3053. package/slack-bot/node_modules/es-abstract/2020/BigInt/toString.js +16 -0
  3054. package/slack-bot/node_modules/es-abstract/2020/BigInt/unaryMinus.js +22 -0
  3055. package/slack-bot/node_modules/es-abstract/2020/BigInt/unsignedRightShift.js +13 -0
  3056. package/slack-bot/node_modules/es-abstract/2020/BigIntBitwiseOp.js +63 -0
  3057. package/slack-bot/node_modules/es-abstract/2020/BinaryAnd.js +12 -0
  3058. package/slack-bot/node_modules/es-abstract/2020/BinaryOr.js +12 -0
  3059. package/slack-bot/node_modules/es-abstract/2020/BinaryXor.js +12 -0
  3060. package/slack-bot/node_modules/es-abstract/2020/Call.js +20 -0
  3061. package/slack-bot/node_modules/es-abstract/2020/CanonicalNumericIndexString.js +19 -0
  3062. package/slack-bot/node_modules/es-abstract/2020/Canonicalize.js +51 -0
  3063. package/slack-bot/node_modules/es-abstract/2020/CharacterRange.js +53 -0
  3064. package/slack-bot/node_modules/es-abstract/2020/CodePointAt.js +55 -0
  3065. package/slack-bot/node_modules/es-abstract/2020/CompletePropertyDescriptor.js +43 -0
  3066. package/slack-bot/node_modules/es-abstract/2020/CompletionRecord.js +48 -0
  3067. package/slack-bot/node_modules/es-abstract/2020/CopyDataProperties.js +62 -0
  3068. package/slack-bot/node_modules/es-abstract/2020/CreateAsyncFromSyncIterator.js +137 -0
  3069. package/slack-bot/node_modules/es-abstract/2020/CreateDataProperty.js +25 -0
  3070. package/slack-bot/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js +24 -0
  3071. package/slack-bot/node_modules/es-abstract/2020/CreateHTML.js +27 -0
  3072. package/slack-bot/node_modules/es-abstract/2020/CreateIterResultObject.js +15 -0
  3073. package/slack-bot/node_modules/es-abstract/2020/CreateListFromArrayLike.js +46 -0
  3074. package/slack-bot/node_modules/es-abstract/2020/CreateMethodProperty.js +38 -0
  3075. package/slack-bot/node_modules/es-abstract/2020/CreateRegExpStringIterator.js +100 -0
  3076. package/slack-bot/node_modules/es-abstract/2020/DateFromTime.js +52 -0
  3077. package/slack-bot/node_modules/es-abstract/2020/DateString.js +27 -0
  3078. package/slack-bot/node_modules/es-abstract/2020/Day.js +11 -0
  3079. package/slack-bot/node_modules/es-abstract/2020/DayFromYear.js +10 -0
  3080. package/slack-bot/node_modules/es-abstract/2020/DayWithinYear.js +11 -0
  3081. package/slack-bot/node_modules/es-abstract/2020/DaysInYear.js +18 -0
  3082. package/slack-bot/node_modules/es-abstract/2020/DefinePropertyOrThrow.js +39 -0
  3083. package/slack-bot/node_modules/es-abstract/2020/DeletePropertyOrThrow.js +25 -0
  3084. package/slack-bot/node_modules/es-abstract/2020/DetachArrayBuffer.js +46 -0
  3085. package/slack-bot/node_modules/es-abstract/2020/EnumerableOwnPropertyNames.js +37 -0
  3086. package/slack-bot/node_modules/es-abstract/2020/FlattenIntoArray.js +55 -0
  3087. package/slack-bot/node_modules/es-abstract/2020/FromPropertyDescriptor.js +16 -0
  3088. package/slack-bot/node_modules/es-abstract/2020/Get.js +24 -0
  3089. package/slack-bot/node_modules/es-abstract/2020/GetGlobalObject.js +9 -0
  3090. package/slack-bot/node_modules/es-abstract/2020/GetIterator.js +63 -0
  3091. package/slack-bot/node_modules/es-abstract/2020/GetMethod.js +34 -0
  3092. package/slack-bot/node_modules/es-abstract/2020/GetOwnPropertyKeys.js +30 -0
  3093. package/slack-bot/node_modules/es-abstract/2020/GetPrototypeFromConstructor.js +33 -0
  3094. package/slack-bot/node_modules/es-abstract/2020/GetSubstitution.js +120 -0
  3095. package/slack-bot/node_modules/es-abstract/2020/GetV.js +23 -0
  3096. package/slack-bot/node_modules/es-abstract/2020/GetValueFromBuffer.js +96 -0
  3097. package/slack-bot/node_modules/es-abstract/2020/HasOwnProperty.js +20 -0
  3098. package/slack-bot/node_modules/es-abstract/2020/HasProperty.js +18 -0
  3099. package/slack-bot/node_modules/es-abstract/2020/HourFromTime.js +14 -0
  3100. package/slack-bot/node_modules/es-abstract/2020/InLeapYear.js +19 -0
  3101. package/slack-bot/node_modules/es-abstract/2020/InstanceofOperator.js +30 -0
  3102. package/slack-bot/node_modules/es-abstract/2020/IntegerIndexedElementGet.js +53 -0
  3103. package/slack-bot/node_modules/es-abstract/2020/IntegerIndexedElementSet.js +60 -0
  3104. package/slack-bot/node_modules/es-abstract/2020/InternalizeJSONProperty.js +66 -0
  3105. package/slack-bot/node_modules/es-abstract/2020/Invoke.js +22 -0
  3106. package/slack-bot/node_modules/es-abstract/2020/IsAccessorDescriptor.js +25 -0
  3107. package/slack-bot/node_modules/es-abstract/2020/IsArray.js +4 -0
  3108. package/slack-bot/node_modules/es-abstract/2020/IsBigIntElementType.js +7 -0
  3109. package/slack-bot/node_modules/es-abstract/2020/IsCallable.js +5 -0
  3110. package/slack-bot/node_modules/es-abstract/2020/IsCompatiblePropertyDescriptor.js +9 -0
  3111. package/slack-bot/node_modules/es-abstract/2020/IsConcatSpreadable.js +26 -0
  3112. package/slack-bot/node_modules/es-abstract/2020/IsConstructor.js +40 -0
  3113. package/slack-bot/node_modules/es-abstract/2020/IsDataDescriptor.js +25 -0
  3114. package/slack-bot/node_modules/es-abstract/2020/IsDetachedBuffer.js +28 -0
  3115. package/slack-bot/node_modules/es-abstract/2020/IsExtensible.js +18 -0
  3116. package/slack-bot/node_modules/es-abstract/2020/IsGenericDescriptor.js +26 -0
  3117. package/slack-bot/node_modules/es-abstract/2020/IsInteger.js +9 -0
  3118. package/slack-bot/node_modules/es-abstract/2020/IsNoTearConfiguration.js +16 -0
  3119. package/slack-bot/node_modules/es-abstract/2020/IsNonNegativeInteger.js +9 -0
  3120. package/slack-bot/node_modules/es-abstract/2020/IsPromise.js +24 -0
  3121. package/slack-bot/node_modules/es-abstract/2020/IsPropertyKey.js +9 -0
  3122. package/slack-bot/node_modules/es-abstract/2020/IsRegExp.js +25 -0
  3123. package/slack-bot/node_modules/es-abstract/2020/IsSharedArrayBuffer.js +16 -0
  3124. package/slack-bot/node_modules/es-abstract/2020/IsStringPrefix.js +43 -0
  3125. package/slack-bot/node_modules/es-abstract/2020/IsUnclampedIntegerElementType.js +12 -0
  3126. package/slack-bot/node_modules/es-abstract/2020/IsUnsignedElementType.js +11 -0
  3127. package/slack-bot/node_modules/es-abstract/2020/IsValidIntegerIndex.js +32 -0
  3128. package/slack-bot/node_modules/es-abstract/2020/IsWordChar.js +45 -0
  3129. package/slack-bot/node_modules/es-abstract/2020/IterableToList.js +21 -0
  3130. package/slack-bot/node_modules/es-abstract/2020/IteratorClose.js +51 -0
  3131. package/slack-bot/node_modules/es-abstract/2020/IteratorComplete.js +16 -0
  3132. package/slack-bot/node_modules/es-abstract/2020/IteratorNext.js +16 -0
  3133. package/slack-bot/node_modules/es-abstract/2020/IteratorStep.js +13 -0
  3134. package/slack-bot/node_modules/es-abstract/2020/IteratorValue.js +16 -0
  3135. package/slack-bot/node_modules/es-abstract/2020/LengthOfArrayLike.js +18 -0
  3136. package/slack-bot/node_modules/es-abstract/2020/MakeDate.js +14 -0
  3137. package/slack-bot/node_modules/es-abstract/2020/MakeDay.js +33 -0
  3138. package/slack-bot/node_modules/es-abstract/2020/MakeTime.js +24 -0
  3139. package/slack-bot/node_modules/es-abstract/2020/MinFromTime.js +14 -0
  3140. package/slack-bot/node_modules/es-abstract/2020/MonthFromTime.js +51 -0
  3141. package/slack-bot/node_modules/es-abstract/2020/NewPromiseCapability.js +34 -0
  3142. package/slack-bot/node_modules/es-abstract/2020/NormalCompletion.js +9 -0
  3143. package/slack-bot/node_modules/es-abstract/2020/Number/add.js +40 -0
  3144. package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseAND.js +14 -0
  3145. package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseNOT.js +16 -0
  3146. package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseOR.js +14 -0
  3147. package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseXOR.js +14 -0
  3148. package/slack-bot/node_modules/es-abstract/2020/Number/divide.js +18 -0
  3149. package/slack-bot/node_modules/es-abstract/2020/Number/equal.js +18 -0
  3150. package/slack-bot/node_modules/es-abstract/2020/Number/exponentiate.js +74 -0
  3151. package/slack-bot/node_modules/es-abstract/2020/Number/index.js +43 -0
  3152. package/slack-bot/node_modules/es-abstract/2020/Number/leftShift.js +21 -0
  3153. package/slack-bot/node_modules/es-abstract/2020/Number/lessThan.js +22 -0
  3154. package/slack-bot/node_modules/es-abstract/2020/Number/multiply.js +29 -0
  3155. package/slack-bot/node_modules/es-abstract/2020/Number/remainder.js +28 -0
  3156. package/slack-bot/node_modules/es-abstract/2020/Number/sameValue.js +18 -0
  3157. package/slack-bot/node_modules/es-abstract/2020/Number/sameValueZero.js +20 -0
  3158. package/slack-bot/node_modules/es-abstract/2020/Number/signedRightShift.js +21 -0
  3159. package/slack-bot/node_modules/es-abstract/2020/Number/subtract.js +12 -0
  3160. package/slack-bot/node_modules/es-abstract/2020/Number/toString.js +16 -0
  3161. package/slack-bot/node_modules/es-abstract/2020/Number/unaryMinus.js +17 -0
  3162. package/slack-bot/node_modules/es-abstract/2020/Number/unsignedRightShift.js +21 -0
  3163. package/slack-bot/node_modules/es-abstract/2020/NumberBitwiseOp.js +26 -0
  3164. package/slack-bot/node_modules/es-abstract/2020/NumberToBigInt.js +24 -0
  3165. package/slack-bot/node_modules/es-abstract/2020/NumericToRawBytes.js +62 -0
  3166. package/slack-bot/node_modules/es-abstract/2020/ObjectDefineProperties.js +37 -0
  3167. package/slack-bot/node_modules/es-abstract/2020/OrdinaryCreateFromConstructor.js +20 -0
  3168. package/slack-bot/node_modules/es-abstract/2020/OrdinaryDefineOwnProperty.js +54 -0
  3169. package/slack-bot/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js +40 -0
  3170. package/slack-bot/node_modules/es-abstract/2020/OrdinaryGetPrototypeOf.js +18 -0
  3171. package/slack-bot/node_modules/es-abstract/2020/OrdinaryHasInstance.js +23 -0
  3172. package/slack-bot/node_modules/es-abstract/2020/OrdinaryHasProperty.js +18 -0
  3173. package/slack-bot/node_modules/es-abstract/2020/OrdinaryObjectCreate.js +56 -0
  3174. package/slack-bot/node_modules/es-abstract/2020/OrdinarySetPrototypeOf.js +50 -0
  3175. package/slack-bot/node_modules/es-abstract/2020/OrdinaryToPrimitive.js +36 -0
  3176. package/slack-bot/node_modules/es-abstract/2020/PromiseResolve.js +18 -0
  3177. package/slack-bot/node_modules/es-abstract/2020/QuoteJSONString.js +52 -0
  3178. package/slack-bot/node_modules/es-abstract/2020/RawBytesToNumeric.js +67 -0
  3179. package/slack-bot/node_modules/es-abstract/2020/RegExpCreate.js +21 -0
  3180. package/slack-bot/node_modules/es-abstract/2020/RegExpExec.js +29 -0
  3181. package/slack-bot/node_modules/es-abstract/2020/RequireObjectCoercible.js +3 -0
  3182. package/slack-bot/node_modules/es-abstract/2020/SameValue.js +13 -0
  3183. package/slack-bot/node_modules/es-abstract/2020/SameValueNonNumeric.js +18 -0
  3184. package/slack-bot/node_modules/es-abstract/2020/SameValueZero.js +9 -0
  3185. package/slack-bot/node_modules/es-abstract/2020/SecFromTime.js +14 -0
  3186. package/slack-bot/node_modules/es-abstract/2020/Set.js +45 -0
  3187. package/slack-bot/node_modules/es-abstract/2020/SetFunctionLength.js +28 -0
  3188. package/slack-bot/node_modules/es-abstract/2020/SetFunctionName.js +40 -0
  3189. package/slack-bot/node_modules/es-abstract/2020/SetIntegrityLevel.js +57 -0
  3190. package/slack-bot/node_modules/es-abstract/2020/SetValueInBuffer.js +96 -0
  3191. package/slack-bot/node_modules/es-abstract/2020/SpeciesConstructor.js +32 -0
  3192. package/slack-bot/node_modules/es-abstract/2020/SplitMatch.js +35 -0
  3193. package/slack-bot/node_modules/es-abstract/2020/StrictEqualityComparison.js +15 -0
  3194. package/slack-bot/node_modules/es-abstract/2020/StringCreate.js +38 -0
  3195. package/slack-bot/node_modules/es-abstract/2020/StringGetOwnProperty.js +47 -0
  3196. package/slack-bot/node_modules/es-abstract/2020/StringPad.js +41 -0
  3197. package/slack-bot/node_modules/es-abstract/2020/StringToBigInt.js +23 -0
  3198. package/slack-bot/node_modules/es-abstract/2020/SymbolDescriptiveString.js +16 -0
  3199. package/slack-bot/node_modules/es-abstract/2020/TestIntegrityLevel.js +40 -0
  3200. package/slack-bot/node_modules/es-abstract/2020/ThrowCompletion.js +9 -0
  3201. package/slack-bot/node_modules/es-abstract/2020/TimeClip.js +20 -0
  3202. package/slack-bot/node_modules/es-abstract/2020/TimeFromYear.js +11 -0
  3203. package/slack-bot/node_modules/es-abstract/2020/TimeString.js +22 -0
  3204. package/slack-bot/node_modules/es-abstract/2020/TimeWithinDay.js +12 -0
  3205. package/slack-bot/node_modules/es-abstract/2020/TimeZoneString.js +33 -0
  3206. package/slack-bot/node_modules/es-abstract/2020/ToBigInt.js +53 -0
  3207. package/slack-bot/node_modules/es-abstract/2020/ToBigInt64.js +25 -0
  3208. package/slack-bot/node_modules/es-abstract/2020/ToBigUint64.js +23 -0
  3209. package/slack-bot/node_modules/es-abstract/2020/ToBoolean.js +5 -0
  3210. package/slack-bot/node_modules/es-abstract/2020/ToDateString.js +21 -0
  3211. package/slack-bot/node_modules/es-abstract/2020/ToIndex.js +24 -0
  3212. package/slack-bot/node_modules/es-abstract/2020/ToInt16.js +10 -0
  3213. package/slack-bot/node_modules/es-abstract/2020/ToInt32.js +9 -0
  3214. package/slack-bot/node_modules/es-abstract/2020/ToInt8.js +10 -0
  3215. package/slack-bot/node_modules/es-abstract/2020/ToInteger.js +15 -0
  3216. package/slack-bot/node_modules/es-abstract/2020/ToLength.js +14 -0
  3217. package/slack-bot/node_modules/es-abstract/2020/ToNumber.js +51 -0
  3218. package/slack-bot/node_modules/es-abstract/2020/ToNumeric.js +20 -0
  3219. package/slack-bot/node_modules/es-abstract/2020/ToObject.js +5 -0
  3220. package/slack-bot/node_modules/es-abstract/2020/ToPrimitive.js +12 -0
  3221. package/slack-bot/node_modules/es-abstract/2020/ToPropertyDescriptor.js +50 -0
  3222. package/slack-bot/node_modules/es-abstract/2020/ToPropertyKey.js +15 -0
  3223. package/slack-bot/node_modules/es-abstract/2020/ToString.js +15 -0
  3224. package/slack-bot/node_modules/es-abstract/2020/ToUint16.js +19 -0
  3225. package/slack-bot/node_modules/es-abstract/2020/ToUint32.js +9 -0
  3226. package/slack-bot/node_modules/es-abstract/2020/ToUint8.js +19 -0
  3227. package/slack-bot/node_modules/es-abstract/2020/ToUint8Clamp.js +19 -0
  3228. package/slack-bot/node_modules/es-abstract/2020/TrimString.js +27 -0
  3229. package/slack-bot/node_modules/es-abstract/2020/Type.js +15 -0
  3230. package/slack-bot/node_modules/es-abstract/2020/TypedArrayCreate.js +47 -0
  3231. package/slack-bot/node_modules/es-abstract/2020/TypedArraySpeciesCreate.js +37 -0
  3232. package/slack-bot/node_modules/es-abstract/2020/UTF16DecodeString.js +22 -0
  3233. package/slack-bot/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js +19 -0
  3234. package/slack-bot/node_modules/es-abstract/2020/UTF16Encoding.js +25 -0
  3235. package/slack-bot/node_modules/es-abstract/2020/UnicodeEscape.js +25 -0
  3236. package/slack-bot/node_modules/es-abstract/2020/ValidateAndApplyPropertyDescriptor.js +159 -0
  3237. package/slack-bot/node_modules/es-abstract/2020/ValidateAtomicAccess.js +34 -0
  3238. package/slack-bot/node_modules/es-abstract/2020/ValidateTypedArray.js +28 -0
  3239. package/slack-bot/node_modules/es-abstract/2020/WeekDay.js +10 -0
  3240. package/slack-bot/node_modules/es-abstract/2020/WordCharacters.js +46 -0
  3241. package/slack-bot/node_modules/es-abstract/2020/YearFromTime.js +16 -0
  3242. package/slack-bot/node_modules/es-abstract/2020/abs.js +9 -0
  3243. package/slack-bot/node_modules/es-abstract/2020/floor.js +14 -0
  3244. package/slack-bot/node_modules/es-abstract/2020/max.js +5 -0
  3245. package/slack-bot/node_modules/es-abstract/2020/min.js +5 -0
  3246. package/slack-bot/node_modules/es-abstract/2020/modulo.js +9 -0
  3247. package/slack-bot/node_modules/es-abstract/2020/msFromTime.js +11 -0
  3248. package/slack-bot/node_modules/es-abstract/2020/tables/typed-array-objects.js +36 -0
  3249. package/slack-bot/node_modules/es-abstract/2020/thisBigIntValue.js +18 -0
  3250. package/slack-bot/node_modules/es-abstract/2020/thisBooleanValue.js +13 -0
  3251. package/slack-bot/node_modules/es-abstract/2020/thisNumberValue.js +16 -0
  3252. package/slack-bot/node_modules/es-abstract/2020/thisStringValue.js +13 -0
  3253. package/slack-bot/node_modules/es-abstract/2020/thisSymbolValue.js +20 -0
  3254. package/slack-bot/node_modules/es-abstract/2020/thisTimeValue.js +9 -0
  3255. package/slack-bot/node_modules/es-abstract/2021/AbstractEqualityComparison.js +56 -0
  3256. package/slack-bot/node_modules/es-abstract/2021/AbstractRelationalComparison.js +80 -0
  3257. package/slack-bot/node_modules/es-abstract/2021/AddEntriesFromIterable.js +44 -0
  3258. package/slack-bot/node_modules/es-abstract/2021/AddToKeptObjects.js +18 -0
  3259. package/slack-bot/node_modules/es-abstract/2021/AdvanceStringIndex.js +30 -0
  3260. package/slack-bot/node_modules/es-abstract/2021/ApplyStringOrNumericBinaryOperator.js +77 -0
  3261. package/slack-bot/node_modules/es-abstract/2021/ArrayCreate.js +42 -0
  3262. package/slack-bot/node_modules/es-abstract/2021/ArraySetLength.js +77 -0
  3263. package/slack-bot/node_modules/es-abstract/2021/ArraySpeciesCreate.js +48 -0
  3264. package/slack-bot/node_modules/es-abstract/2021/AsyncFromSyncIteratorContinuation.js +45 -0
  3265. package/slack-bot/node_modules/es-abstract/2021/AsyncIteratorClose.js +70 -0
  3266. package/slack-bot/node_modules/es-abstract/2021/BigInt/add.js +14 -0
  3267. package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseAND.js +14 -0
  3268. package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseNOT.js +15 -0
  3269. package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseOR.js +14 -0
  3270. package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseXOR.js +14 -0
  3271. package/slack-bot/node_modules/es-abstract/2021/BigInt/divide.js +20 -0
  3272. package/slack-bot/node_modules/es-abstract/2021/BigInt/equal.js +13 -0
  3273. package/slack-bot/node_modules/es-abstract/2021/BigInt/exponentiate.js +29 -0
  3274. package/slack-bot/node_modules/es-abstract/2021/BigInt/index.js +43 -0
  3275. package/slack-bot/node_modules/es-abstract/2021/BigInt/leftShift.js +14 -0
  3276. package/slack-bot/node_modules/es-abstract/2021/BigInt/lessThan.js +14 -0
  3277. package/slack-bot/node_modules/es-abstract/2021/BigInt/multiply.js +14 -0
  3278. package/slack-bot/node_modules/es-abstract/2021/BigInt/remainder.js +28 -0
  3279. package/slack-bot/node_modules/es-abstract/2021/BigInt/sameValue.js +15 -0
  3280. package/slack-bot/node_modules/es-abstract/2021/BigInt/sameValueZero.js +15 -0
  3281. package/slack-bot/node_modules/es-abstract/2021/BigInt/signedRightShift.js +15 -0
  3282. package/slack-bot/node_modules/es-abstract/2021/BigInt/subtract.js +14 -0
  3283. package/slack-bot/node_modules/es-abstract/2021/BigInt/toString.js +16 -0
  3284. package/slack-bot/node_modules/es-abstract/2021/BigInt/unaryMinus.js +22 -0
  3285. package/slack-bot/node_modules/es-abstract/2021/BigInt/unsignedRightShift.js +13 -0
  3286. package/slack-bot/node_modules/es-abstract/2021/BigIntBitwiseOp.js +63 -0
  3287. package/slack-bot/node_modules/es-abstract/2021/BinaryAnd.js +12 -0
  3288. package/slack-bot/node_modules/es-abstract/2021/BinaryOr.js +12 -0
  3289. package/slack-bot/node_modules/es-abstract/2021/BinaryXor.js +12 -0
  3290. package/slack-bot/node_modules/es-abstract/2021/ByteListBitwiseOp.js +39 -0
  3291. package/slack-bot/node_modules/es-abstract/2021/ByteListEqual.js +31 -0
  3292. package/slack-bot/node_modules/es-abstract/2021/Call.js +20 -0
  3293. package/slack-bot/node_modules/es-abstract/2021/CanonicalNumericIndexString.js +19 -0
  3294. package/slack-bot/node_modules/es-abstract/2021/Canonicalize.js +51 -0
  3295. package/slack-bot/node_modules/es-abstract/2021/CharacterRange.js +53 -0
  3296. package/slack-bot/node_modules/es-abstract/2021/ClearKeptObjects.js +12 -0
  3297. package/slack-bot/node_modules/es-abstract/2021/CloneArrayBuffer.js +46 -0
  3298. package/slack-bot/node_modules/es-abstract/2021/CodePointAt.js +55 -0
  3299. package/slack-bot/node_modules/es-abstract/2021/CodePointsToString.js +25 -0
  3300. package/slack-bot/node_modules/es-abstract/2021/CompletePropertyDescriptor.js +43 -0
  3301. package/slack-bot/node_modules/es-abstract/2021/CompletionRecord.js +48 -0
  3302. package/slack-bot/node_modules/es-abstract/2021/CopyDataProperties.js +69 -0
  3303. package/slack-bot/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js +137 -0
  3304. package/slack-bot/node_modules/es-abstract/2021/CreateDataProperty.js +25 -0
  3305. package/slack-bot/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js +24 -0
  3306. package/slack-bot/node_modules/es-abstract/2021/CreateHTML.js +27 -0
  3307. package/slack-bot/node_modules/es-abstract/2021/CreateIterResultObject.js +15 -0
  3308. package/slack-bot/node_modules/es-abstract/2021/CreateListFromArrayLike.js +44 -0
  3309. package/slack-bot/node_modules/es-abstract/2021/CreateMethodProperty.js +38 -0
  3310. package/slack-bot/node_modules/es-abstract/2021/CreateRegExpStringIterator.js +100 -0
  3311. package/slack-bot/node_modules/es-abstract/2021/DateFromTime.js +52 -0
  3312. package/slack-bot/node_modules/es-abstract/2021/DateString.js +27 -0
  3313. package/slack-bot/node_modules/es-abstract/2021/Day.js +11 -0
  3314. package/slack-bot/node_modules/es-abstract/2021/DayFromYear.js +10 -0
  3315. package/slack-bot/node_modules/es-abstract/2021/DayWithinYear.js +11 -0
  3316. package/slack-bot/node_modules/es-abstract/2021/DaysInYear.js +18 -0
  3317. package/slack-bot/node_modules/es-abstract/2021/DefinePropertyOrThrow.js +39 -0
  3318. package/slack-bot/node_modules/es-abstract/2021/DeletePropertyOrThrow.js +25 -0
  3319. package/slack-bot/node_modules/es-abstract/2021/DetachArrayBuffer.js +46 -0
  3320. package/slack-bot/node_modules/es-abstract/2021/EnumerableOwnPropertyNames.js +37 -0
  3321. package/slack-bot/node_modules/es-abstract/2021/FlattenIntoArray.js +55 -0
  3322. package/slack-bot/node_modules/es-abstract/2021/FromPropertyDescriptor.js +16 -0
  3323. package/slack-bot/node_modules/es-abstract/2021/Get.js +24 -0
  3324. package/slack-bot/node_modules/es-abstract/2021/GetGlobalObject.js +9 -0
  3325. package/slack-bot/node_modules/es-abstract/2021/GetIterator.js +63 -0
  3326. package/slack-bot/node_modules/es-abstract/2021/GetMethod.js +34 -0
  3327. package/slack-bot/node_modules/es-abstract/2021/GetOwnPropertyKeys.js +30 -0
  3328. package/slack-bot/node_modules/es-abstract/2021/GetPromiseResolve.js +20 -0
  3329. package/slack-bot/node_modules/es-abstract/2021/GetPrototypeFromConstructor.js +33 -0
  3330. package/slack-bot/node_modules/es-abstract/2021/GetSubstitution.js +119 -0
  3331. package/slack-bot/node_modules/es-abstract/2021/GetV.js +23 -0
  3332. package/slack-bot/node_modules/es-abstract/2021/GetValueFromBuffer.js +96 -0
  3333. package/slack-bot/node_modules/es-abstract/2021/HasOwnProperty.js +20 -0
  3334. package/slack-bot/node_modules/es-abstract/2021/HasProperty.js +18 -0
  3335. package/slack-bot/node_modules/es-abstract/2021/HourFromTime.js +14 -0
  3336. package/slack-bot/node_modules/es-abstract/2021/InLeapYear.js +19 -0
  3337. package/slack-bot/node_modules/es-abstract/2021/InstanceofOperator.js +30 -0
  3338. package/slack-bot/node_modules/es-abstract/2021/IntegerIndexedElementGet.js +39 -0
  3339. package/slack-bot/node_modules/es-abstract/2021/IntegerIndexedElementSet.js +44 -0
  3340. package/slack-bot/node_modules/es-abstract/2021/InternalizeJSONProperty.js +66 -0
  3341. package/slack-bot/node_modules/es-abstract/2021/Invoke.js +22 -0
  3342. package/slack-bot/node_modules/es-abstract/2021/IsAccessorDescriptor.js +25 -0
  3343. package/slack-bot/node_modules/es-abstract/2021/IsArray.js +4 -0
  3344. package/slack-bot/node_modules/es-abstract/2021/IsBigIntElementType.js +7 -0
  3345. package/slack-bot/node_modules/es-abstract/2021/IsCallable.js +5 -0
  3346. package/slack-bot/node_modules/es-abstract/2021/IsCompatiblePropertyDescriptor.js +9 -0
  3347. package/slack-bot/node_modules/es-abstract/2021/IsConcatSpreadable.js +26 -0
  3348. package/slack-bot/node_modules/es-abstract/2021/IsConstructor.js +40 -0
  3349. package/slack-bot/node_modules/es-abstract/2021/IsDataDescriptor.js +25 -0
  3350. package/slack-bot/node_modules/es-abstract/2021/IsDetachedBuffer.js +28 -0
  3351. package/slack-bot/node_modules/es-abstract/2021/IsExtensible.js +18 -0
  3352. package/slack-bot/node_modules/es-abstract/2021/IsGenericDescriptor.js +26 -0
  3353. package/slack-bot/node_modules/es-abstract/2021/IsIntegralNumber.js +9 -0
  3354. package/slack-bot/node_modules/es-abstract/2021/IsNoTearConfiguration.js +16 -0
  3355. package/slack-bot/node_modules/es-abstract/2021/IsPromise.js +24 -0
  3356. package/slack-bot/node_modules/es-abstract/2021/IsPropertyKey.js +9 -0
  3357. package/slack-bot/node_modules/es-abstract/2021/IsRegExp.js +25 -0
  3358. package/slack-bot/node_modules/es-abstract/2021/IsSharedArrayBuffer.js +16 -0
  3359. package/slack-bot/node_modules/es-abstract/2021/IsStringPrefix.js +43 -0
  3360. package/slack-bot/node_modules/es-abstract/2021/IsUnclampedIntegerElementType.js +12 -0
  3361. package/slack-bot/node_modules/es-abstract/2021/IsUnsignedElementType.js +11 -0
  3362. package/slack-bot/node_modules/es-abstract/2021/IsValidIntegerIndex.js +30 -0
  3363. package/slack-bot/node_modules/es-abstract/2021/IsWordChar.js +46 -0
  3364. package/slack-bot/node_modules/es-abstract/2021/IterableToList.js +26 -0
  3365. package/slack-bot/node_modules/es-abstract/2021/IteratorClose.js +51 -0
  3366. package/slack-bot/node_modules/es-abstract/2021/IteratorComplete.js +16 -0
  3367. package/slack-bot/node_modules/es-abstract/2021/IteratorNext.js +16 -0
  3368. package/slack-bot/node_modules/es-abstract/2021/IteratorStep.js +13 -0
  3369. package/slack-bot/node_modules/es-abstract/2021/IteratorValue.js +16 -0
  3370. package/slack-bot/node_modules/es-abstract/2021/LengthOfArrayLike.js +18 -0
  3371. package/slack-bot/node_modules/es-abstract/2021/MakeDate.js +14 -0
  3372. package/slack-bot/node_modules/es-abstract/2021/MakeDay.js +36 -0
  3373. package/slack-bot/node_modules/es-abstract/2021/MakeTime.js +23 -0
  3374. package/slack-bot/node_modules/es-abstract/2021/MinFromTime.js +14 -0
  3375. package/slack-bot/node_modules/es-abstract/2021/MonthFromTime.js +51 -0
  3376. package/slack-bot/node_modules/es-abstract/2021/NewPromiseCapability.js +34 -0
  3377. package/slack-bot/node_modules/es-abstract/2021/NormalCompletion.js +9 -0
  3378. package/slack-bot/node_modules/es-abstract/2021/Number/add.js +31 -0
  3379. package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseAND.js +14 -0
  3380. package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseNOT.js +16 -0
  3381. package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseOR.js +14 -0
  3382. package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseXOR.js +14 -0
  3383. package/slack-bot/node_modules/es-abstract/2021/Number/divide.js +18 -0
  3384. package/slack-bot/node_modules/es-abstract/2021/Number/equal.js +18 -0
  3385. package/slack-bot/node_modules/es-abstract/2021/Number/exponentiate.js +74 -0
  3386. package/slack-bot/node_modules/es-abstract/2021/Number/index.js +43 -0
  3387. package/slack-bot/node_modules/es-abstract/2021/Number/leftShift.js +22 -0
  3388. package/slack-bot/node_modules/es-abstract/2021/Number/lessThan.js +22 -0
  3389. package/slack-bot/node_modules/es-abstract/2021/Number/multiply.js +29 -0
  3390. package/slack-bot/node_modules/es-abstract/2021/Number/remainder.js +28 -0
  3391. package/slack-bot/node_modules/es-abstract/2021/Number/sameValue.js +18 -0
  3392. package/slack-bot/node_modules/es-abstract/2021/Number/sameValueZero.js +20 -0
  3393. package/slack-bot/node_modules/es-abstract/2021/Number/signedRightShift.js +22 -0
  3394. package/slack-bot/node_modules/es-abstract/2021/Number/subtract.js +15 -0
  3395. package/slack-bot/node_modules/es-abstract/2021/Number/toString.js +16 -0
  3396. package/slack-bot/node_modules/es-abstract/2021/Number/unaryMinus.js +17 -0
  3397. package/slack-bot/node_modules/es-abstract/2021/Number/unsignedRightShift.js +22 -0
  3398. package/slack-bot/node_modules/es-abstract/2021/NumberBitwiseOp.js +26 -0
  3399. package/slack-bot/node_modules/es-abstract/2021/NumberToBigInt.js +25 -0
  3400. package/slack-bot/node_modules/es-abstract/2021/NumericToRawBytes.js +62 -0
  3401. package/slack-bot/node_modules/es-abstract/2021/ObjectDefineProperties.js +37 -0
  3402. package/slack-bot/node_modules/es-abstract/2021/OrdinaryCreateFromConstructor.js +20 -0
  3403. package/slack-bot/node_modules/es-abstract/2021/OrdinaryDefineOwnProperty.js +54 -0
  3404. package/slack-bot/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js +41 -0
  3405. package/slack-bot/node_modules/es-abstract/2021/OrdinaryGetPrototypeOf.js +18 -0
  3406. package/slack-bot/node_modules/es-abstract/2021/OrdinaryHasInstance.js +23 -0
  3407. package/slack-bot/node_modules/es-abstract/2021/OrdinaryHasProperty.js +18 -0
  3408. package/slack-bot/node_modules/es-abstract/2021/OrdinaryObjectCreate.js +56 -0
  3409. package/slack-bot/node_modules/es-abstract/2021/OrdinarySetPrototypeOf.js +50 -0
  3410. package/slack-bot/node_modules/es-abstract/2021/OrdinaryToPrimitive.js +36 -0
  3411. package/slack-bot/node_modules/es-abstract/2021/PromiseResolve.js +18 -0
  3412. package/slack-bot/node_modules/es-abstract/2021/QuoteJSONString.js +52 -0
  3413. package/slack-bot/node_modules/es-abstract/2021/RawBytesToNumeric.js +67 -0
  3414. package/slack-bot/node_modules/es-abstract/2021/RegExpCreate.js +21 -0
  3415. package/slack-bot/node_modules/es-abstract/2021/RegExpExec.js +29 -0
  3416. package/slack-bot/node_modules/es-abstract/2021/RequireObjectCoercible.js +3 -0
  3417. package/slack-bot/node_modules/es-abstract/2021/SameValue.js +13 -0
  3418. package/slack-bot/node_modules/es-abstract/2021/SameValueNonNumeric.js +18 -0
  3419. package/slack-bot/node_modules/es-abstract/2021/SameValueZero.js +9 -0
  3420. package/slack-bot/node_modules/es-abstract/2021/SecFromTime.js +14 -0
  3421. package/slack-bot/node_modules/es-abstract/2021/Set.js +45 -0
  3422. package/slack-bot/node_modules/es-abstract/2021/SetFunctionLength.js +28 -0
  3423. package/slack-bot/node_modules/es-abstract/2021/SetFunctionName.js +40 -0
  3424. package/slack-bot/node_modules/es-abstract/2021/SetIntegrityLevel.js +57 -0
  3425. package/slack-bot/node_modules/es-abstract/2021/SetTypedArrayFromArrayLike.js +96 -0
  3426. package/slack-bot/node_modules/es-abstract/2021/SetTypedArrayFromTypedArray.js +138 -0
  3427. package/slack-bot/node_modules/es-abstract/2021/SetValueInBuffer.js +92 -0
  3428. package/slack-bot/node_modules/es-abstract/2021/SpeciesConstructor.js +32 -0
  3429. package/slack-bot/node_modules/es-abstract/2021/SplitMatch.js +35 -0
  3430. package/slack-bot/node_modules/es-abstract/2021/StrictEqualityComparison.js +15 -0
  3431. package/slack-bot/node_modules/es-abstract/2021/StringCreate.js +38 -0
  3432. package/slack-bot/node_modules/es-abstract/2021/StringGetOwnProperty.js +46 -0
  3433. package/slack-bot/node_modules/es-abstract/2021/StringIndexOf.js +36 -0
  3434. package/slack-bot/node_modules/es-abstract/2021/StringPad.js +41 -0
  3435. package/slack-bot/node_modules/es-abstract/2021/StringToBigInt.js +23 -0
  3436. package/slack-bot/node_modules/es-abstract/2021/StringToCodePoints.js +22 -0
  3437. package/slack-bot/node_modules/es-abstract/2021/SymbolDescriptiveString.js +16 -0
  3438. package/slack-bot/node_modules/es-abstract/2021/TestIntegrityLevel.js +40 -0
  3439. package/slack-bot/node_modules/es-abstract/2021/ThrowCompletion.js +9 -0
  3440. package/slack-bot/node_modules/es-abstract/2021/TimeClip.js +20 -0
  3441. package/slack-bot/node_modules/es-abstract/2021/TimeFromYear.js +11 -0
  3442. package/slack-bot/node_modules/es-abstract/2021/TimeString.js +22 -0
  3443. package/slack-bot/node_modules/es-abstract/2021/TimeWithinDay.js +12 -0
  3444. package/slack-bot/node_modules/es-abstract/2021/TimeZoneString.js +38 -0
  3445. package/slack-bot/node_modules/es-abstract/2021/ToBigInt.js +53 -0
  3446. package/slack-bot/node_modules/es-abstract/2021/ToBigInt64.js +25 -0
  3447. package/slack-bot/node_modules/es-abstract/2021/ToBigUint64.js +23 -0
  3448. package/slack-bot/node_modules/es-abstract/2021/ToBoolean.js +5 -0
  3449. package/slack-bot/node_modules/es-abstract/2021/ToDateString.js +21 -0
  3450. package/slack-bot/node_modules/es-abstract/2021/ToIndex.js +24 -0
  3451. package/slack-bot/node_modules/es-abstract/2021/ToInt16.js +10 -0
  3452. package/slack-bot/node_modules/es-abstract/2021/ToInt32.js +9 -0
  3453. package/slack-bot/node_modules/es-abstract/2021/ToInt8.js +10 -0
  3454. package/slack-bot/node_modules/es-abstract/2021/ToIntegerOrInfinity.js +20 -0
  3455. package/slack-bot/node_modules/es-abstract/2021/ToLength.js +14 -0
  3456. package/slack-bot/node_modules/es-abstract/2021/ToNumber.js +51 -0
  3457. package/slack-bot/node_modules/es-abstract/2021/ToNumeric.js +20 -0
  3458. package/slack-bot/node_modules/es-abstract/2021/ToObject.js +5 -0
  3459. package/slack-bot/node_modules/es-abstract/2021/ToPrimitive.js +12 -0
  3460. package/slack-bot/node_modules/es-abstract/2021/ToPropertyDescriptor.js +50 -0
  3461. package/slack-bot/node_modules/es-abstract/2021/ToPropertyKey.js +15 -0
  3462. package/slack-bot/node_modules/es-abstract/2021/ToString.js +15 -0
  3463. package/slack-bot/node_modules/es-abstract/2021/ToUint16.js +19 -0
  3464. package/slack-bot/node_modules/es-abstract/2021/ToUint32.js +9 -0
  3465. package/slack-bot/node_modules/es-abstract/2021/ToUint8.js +19 -0
  3466. package/slack-bot/node_modules/es-abstract/2021/ToUint8Clamp.js +19 -0
  3467. package/slack-bot/node_modules/es-abstract/2021/TrimString.js +27 -0
  3468. package/slack-bot/node_modules/es-abstract/2021/Type.js +15 -0
  3469. package/slack-bot/node_modules/es-abstract/2021/TypedArrayCreate.js +47 -0
  3470. package/slack-bot/node_modules/es-abstract/2021/TypedArraySpeciesCreate.js +37 -0
  3471. package/slack-bot/node_modules/es-abstract/2021/UTF16EncodeCodePoint.js +25 -0
  3472. package/slack-bot/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js +19 -0
  3473. package/slack-bot/node_modules/es-abstract/2021/UnicodeEscape.js +25 -0
  3474. package/slack-bot/node_modules/es-abstract/2021/ValidateAndApplyPropertyDescriptor.js +159 -0
  3475. package/slack-bot/node_modules/es-abstract/2021/ValidateAtomicAccess.js +45 -0
  3476. package/slack-bot/node_modules/es-abstract/2021/ValidateIntegerTypedArray.js +37 -0
  3477. package/slack-bot/node_modules/es-abstract/2021/ValidateTypedArray.js +28 -0
  3478. package/slack-bot/node_modules/es-abstract/2021/WeakRefDeref.js +23 -0
  3479. package/slack-bot/node_modules/es-abstract/2021/WeekDay.js +10 -0
  3480. package/slack-bot/node_modules/es-abstract/2021/WordCharacters.js +46 -0
  3481. package/slack-bot/node_modules/es-abstract/2021/YearFromTime.js +16 -0
  3482. package/slack-bot/node_modules/es-abstract/2021/abs.js +9 -0
  3483. package/slack-bot/node_modules/es-abstract/2021/clamp.js +14 -0
  3484. package/slack-bot/node_modules/es-abstract/2021/floor.js +14 -0
  3485. package/slack-bot/node_modules/es-abstract/2021/max.js +5 -0
  3486. package/slack-bot/node_modules/es-abstract/2021/min.js +5 -0
  3487. package/slack-bot/node_modules/es-abstract/2021/modulo.js +9 -0
  3488. package/slack-bot/node_modules/es-abstract/2021/msFromTime.js +11 -0
  3489. package/slack-bot/node_modules/es-abstract/2021/substring.js +15 -0
  3490. package/slack-bot/node_modules/es-abstract/2021/tables/typed-array-objects.js +36 -0
  3491. package/slack-bot/node_modules/es-abstract/2021/thisBigIntValue.js +18 -0
  3492. package/slack-bot/node_modules/es-abstract/2021/thisBooleanValue.js +13 -0
  3493. package/slack-bot/node_modules/es-abstract/2021/thisNumberValue.js +16 -0
  3494. package/slack-bot/node_modules/es-abstract/2021/thisStringValue.js +13 -0
  3495. package/slack-bot/node_modules/es-abstract/2021/thisSymbolValue.js +20 -0
  3496. package/slack-bot/node_modules/es-abstract/2021/thisTimeValue.js +9 -0
  3497. package/slack-bot/node_modules/es-abstract/2022/AddEntriesFromIterable.js +44 -0
  3498. package/slack-bot/node_modules/es-abstract/2022/AddToKeptObjects.js +18 -0
  3499. package/slack-bot/node_modules/es-abstract/2022/AdvanceStringIndex.js +30 -0
  3500. package/slack-bot/node_modules/es-abstract/2022/ApplyStringOrNumericBinaryOperator.js +77 -0
  3501. package/slack-bot/node_modules/es-abstract/2022/ArrayCreate.js +42 -0
  3502. package/slack-bot/node_modules/es-abstract/2022/ArraySetLength.js +77 -0
  3503. package/slack-bot/node_modules/es-abstract/2022/ArraySpeciesCreate.js +48 -0
  3504. package/slack-bot/node_modules/es-abstract/2022/AsyncFromSyncIteratorContinuation.js +45 -0
  3505. package/slack-bot/node_modules/es-abstract/2022/AsyncIteratorClose.js +70 -0
  3506. package/slack-bot/node_modules/es-abstract/2022/BigInt/add.js +14 -0
  3507. package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseAND.js +14 -0
  3508. package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseNOT.js +15 -0
  3509. package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseOR.js +14 -0
  3510. package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseXOR.js +14 -0
  3511. package/slack-bot/node_modules/es-abstract/2022/BigInt/divide.js +20 -0
  3512. package/slack-bot/node_modules/es-abstract/2022/BigInt/equal.js +13 -0
  3513. package/slack-bot/node_modules/es-abstract/2022/BigInt/exponentiate.js +29 -0
  3514. package/slack-bot/node_modules/es-abstract/2022/BigInt/index.js +43 -0
  3515. package/slack-bot/node_modules/es-abstract/2022/BigInt/leftShift.js +14 -0
  3516. package/slack-bot/node_modules/es-abstract/2022/BigInt/lessThan.js +14 -0
  3517. package/slack-bot/node_modules/es-abstract/2022/BigInt/multiply.js +14 -0
  3518. package/slack-bot/node_modules/es-abstract/2022/BigInt/remainder.js +28 -0
  3519. package/slack-bot/node_modules/es-abstract/2022/BigInt/sameValue.js +15 -0
  3520. package/slack-bot/node_modules/es-abstract/2022/BigInt/sameValueZero.js +15 -0
  3521. package/slack-bot/node_modules/es-abstract/2022/BigInt/signedRightShift.js +15 -0
  3522. package/slack-bot/node_modules/es-abstract/2022/BigInt/subtract.js +14 -0
  3523. package/slack-bot/node_modules/es-abstract/2022/BigInt/toString.js +16 -0
  3524. package/slack-bot/node_modules/es-abstract/2022/BigInt/unaryMinus.js +22 -0
  3525. package/slack-bot/node_modules/es-abstract/2022/BigInt/unsignedRightShift.js +13 -0
  3526. package/slack-bot/node_modules/es-abstract/2022/BigIntBitwiseOp.js +63 -0
  3527. package/slack-bot/node_modules/es-abstract/2022/BinaryAnd.js +12 -0
  3528. package/slack-bot/node_modules/es-abstract/2022/BinaryOr.js +12 -0
  3529. package/slack-bot/node_modules/es-abstract/2022/BinaryXor.js +12 -0
  3530. package/slack-bot/node_modules/es-abstract/2022/ByteListBitwiseOp.js +39 -0
  3531. package/slack-bot/node_modules/es-abstract/2022/ByteListEqual.js +31 -0
  3532. package/slack-bot/node_modules/es-abstract/2022/Call.js +20 -0
  3533. package/slack-bot/node_modules/es-abstract/2022/CanonicalNumericIndexString.js +19 -0
  3534. package/slack-bot/node_modules/es-abstract/2022/Canonicalize.js +51 -0
  3535. package/slack-bot/node_modules/es-abstract/2022/CharacterRange.js +53 -0
  3536. package/slack-bot/node_modules/es-abstract/2022/ClearKeptObjects.js +12 -0
  3537. package/slack-bot/node_modules/es-abstract/2022/CloneArrayBuffer.js +46 -0
  3538. package/slack-bot/node_modules/es-abstract/2022/CodePointAt.js +55 -0
  3539. package/slack-bot/node_modules/es-abstract/2022/CodePointsToString.js +25 -0
  3540. package/slack-bot/node_modules/es-abstract/2022/CompletePropertyDescriptor.js +43 -0
  3541. package/slack-bot/node_modules/es-abstract/2022/CompletionRecord.js +48 -0
  3542. package/slack-bot/node_modules/es-abstract/2022/CopyDataProperties.js +69 -0
  3543. package/slack-bot/node_modules/es-abstract/2022/CreateAsyncFromSyncIterator.js +137 -0
  3544. package/slack-bot/node_modules/es-abstract/2022/CreateDataProperty.js +25 -0
  3545. package/slack-bot/node_modules/es-abstract/2022/CreateDataPropertyOrThrow.js +24 -0
  3546. package/slack-bot/node_modules/es-abstract/2022/CreateHTML.js +27 -0
  3547. package/slack-bot/node_modules/es-abstract/2022/CreateIterResultObject.js +15 -0
  3548. package/slack-bot/node_modules/es-abstract/2022/CreateListFromArrayLike.js +44 -0
  3549. package/slack-bot/node_modules/es-abstract/2022/CreateMethodProperty.js +38 -0
  3550. package/slack-bot/node_modules/es-abstract/2022/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
  3551. package/slack-bot/node_modules/es-abstract/2022/CreateRegExpStringIterator.js +100 -0
  3552. package/slack-bot/node_modules/es-abstract/2022/DateFromTime.js +52 -0
  3553. package/slack-bot/node_modules/es-abstract/2022/DateString.js +27 -0
  3554. package/slack-bot/node_modules/es-abstract/2022/Day.js +11 -0
  3555. package/slack-bot/node_modules/es-abstract/2022/DayFromYear.js +10 -0
  3556. package/slack-bot/node_modules/es-abstract/2022/DayWithinYear.js +11 -0
  3557. package/slack-bot/node_modules/es-abstract/2022/DaysInYear.js +18 -0
  3558. package/slack-bot/node_modules/es-abstract/2022/DefineMethodProperty.js +42 -0
  3559. package/slack-bot/node_modules/es-abstract/2022/DefinePropertyOrThrow.js +39 -0
  3560. package/slack-bot/node_modules/es-abstract/2022/DeletePropertyOrThrow.js +25 -0
  3561. package/slack-bot/node_modules/es-abstract/2022/DetachArrayBuffer.js +46 -0
  3562. package/slack-bot/node_modules/es-abstract/2022/EnumerableOwnPropertyNames.js +37 -0
  3563. package/slack-bot/node_modules/es-abstract/2022/FlattenIntoArray.js +55 -0
  3564. package/slack-bot/node_modules/es-abstract/2022/FromPropertyDescriptor.js +16 -0
  3565. package/slack-bot/node_modules/es-abstract/2022/Get.js +24 -0
  3566. package/slack-bot/node_modules/es-abstract/2022/GetGlobalObject.js +9 -0
  3567. package/slack-bot/node_modules/es-abstract/2022/GetIterator.js +63 -0
  3568. package/slack-bot/node_modules/es-abstract/2022/GetMatchIndexPair.js +24 -0
  3569. package/slack-bot/node_modules/es-abstract/2022/GetMatchString.js +26 -0
  3570. package/slack-bot/node_modules/es-abstract/2022/GetMethod.js +34 -0
  3571. package/slack-bot/node_modules/es-abstract/2022/GetOwnPropertyKeys.js +30 -0
  3572. package/slack-bot/node_modules/es-abstract/2022/GetPromiseResolve.js +20 -0
  3573. package/slack-bot/node_modules/es-abstract/2022/GetPrototypeFromConstructor.js +33 -0
  3574. package/slack-bot/node_modules/es-abstract/2022/GetStringIndex.js +27 -0
  3575. package/slack-bot/node_modules/es-abstract/2022/GetSubstitution.js +137 -0
  3576. package/slack-bot/node_modules/es-abstract/2022/GetV.js +23 -0
  3577. package/slack-bot/node_modules/es-abstract/2022/GetValueFromBuffer.js +96 -0
  3578. package/slack-bot/node_modules/es-abstract/2022/HasOwnProperty.js +20 -0
  3579. package/slack-bot/node_modules/es-abstract/2022/HasProperty.js +18 -0
  3580. package/slack-bot/node_modules/es-abstract/2022/HourFromTime.js +14 -0
  3581. package/slack-bot/node_modules/es-abstract/2022/InLeapYear.js +19 -0
  3582. package/slack-bot/node_modules/es-abstract/2022/InstallErrorCause.js +21 -0
  3583. package/slack-bot/node_modules/es-abstract/2022/InstanceofOperator.js +30 -0
  3584. package/slack-bot/node_modules/es-abstract/2022/IntegerIndexedElementGet.js +38 -0
  3585. package/slack-bot/node_modules/es-abstract/2022/IntegerIndexedElementSet.js +42 -0
  3586. package/slack-bot/node_modules/es-abstract/2022/InternalizeJSONProperty.js +66 -0
  3587. package/slack-bot/node_modules/es-abstract/2022/Invoke.js +22 -0
  3588. package/slack-bot/node_modules/es-abstract/2022/IsAccessorDescriptor.js +25 -0
  3589. package/slack-bot/node_modules/es-abstract/2022/IsArray.js +4 -0
  3590. package/slack-bot/node_modules/es-abstract/2022/IsBigIntElementType.js +7 -0
  3591. package/slack-bot/node_modules/es-abstract/2022/IsCallable.js +5 -0
  3592. package/slack-bot/node_modules/es-abstract/2022/IsCompatiblePropertyDescriptor.js +9 -0
  3593. package/slack-bot/node_modules/es-abstract/2022/IsConcatSpreadable.js +26 -0
  3594. package/slack-bot/node_modules/es-abstract/2022/IsConstructor.js +40 -0
  3595. package/slack-bot/node_modules/es-abstract/2022/IsDataDescriptor.js +25 -0
  3596. package/slack-bot/node_modules/es-abstract/2022/IsDetachedBuffer.js +28 -0
  3597. package/slack-bot/node_modules/es-abstract/2022/IsExtensible.js +18 -0
  3598. package/slack-bot/node_modules/es-abstract/2022/IsGenericDescriptor.js +26 -0
  3599. package/slack-bot/node_modules/es-abstract/2022/IsIntegralNumber.js +9 -0
  3600. package/slack-bot/node_modules/es-abstract/2022/IsLessThan.js +87 -0
  3601. package/slack-bot/node_modules/es-abstract/2022/IsLooselyEqual.js +58 -0
  3602. package/slack-bot/node_modules/es-abstract/2022/IsNoTearConfiguration.js +16 -0
  3603. package/slack-bot/node_modules/es-abstract/2022/IsPromise.js +24 -0
  3604. package/slack-bot/node_modules/es-abstract/2022/IsPropertyKey.js +9 -0
  3605. package/slack-bot/node_modules/es-abstract/2022/IsRegExp.js +25 -0
  3606. package/slack-bot/node_modules/es-abstract/2022/IsSharedArrayBuffer.js +16 -0
  3607. package/slack-bot/node_modules/es-abstract/2022/IsStrictlyEqual.js +18 -0
  3608. package/slack-bot/node_modules/es-abstract/2022/IsStringPrefix.js +19 -0
  3609. package/slack-bot/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js +23 -0
  3610. package/slack-bot/node_modules/es-abstract/2022/IsUnclampedIntegerElementType.js +12 -0
  3611. package/slack-bot/node_modules/es-abstract/2022/IsUnsignedElementType.js +11 -0
  3612. package/slack-bot/node_modules/es-abstract/2022/IsValidIntegerIndex.js +30 -0
  3613. package/slack-bot/node_modules/es-abstract/2022/IsWordChar.js +46 -0
  3614. package/slack-bot/node_modules/es-abstract/2022/IterableToList.js +26 -0
  3615. package/slack-bot/node_modules/es-abstract/2022/IteratorClose.js +51 -0
  3616. package/slack-bot/node_modules/es-abstract/2022/IteratorComplete.js +16 -0
  3617. package/slack-bot/node_modules/es-abstract/2022/IteratorNext.js +16 -0
  3618. package/slack-bot/node_modules/es-abstract/2022/IteratorStep.js +13 -0
  3619. package/slack-bot/node_modules/es-abstract/2022/IteratorValue.js +16 -0
  3620. package/slack-bot/node_modules/es-abstract/2022/LengthOfArrayLike.js +18 -0
  3621. package/slack-bot/node_modules/es-abstract/2022/MakeDate.js +14 -0
  3622. package/slack-bot/node_modules/es-abstract/2022/MakeDay.js +36 -0
  3623. package/slack-bot/node_modules/es-abstract/2022/MakeMatchIndicesIndexPairArray.js +66 -0
  3624. package/slack-bot/node_modules/es-abstract/2022/MakeTime.js +23 -0
  3625. package/slack-bot/node_modules/es-abstract/2022/MinFromTime.js +14 -0
  3626. package/slack-bot/node_modules/es-abstract/2022/MonthFromTime.js +51 -0
  3627. package/slack-bot/node_modules/es-abstract/2022/NewPromiseCapability.js +34 -0
  3628. package/slack-bot/node_modules/es-abstract/2022/NormalCompletion.js +9 -0
  3629. package/slack-bot/node_modules/es-abstract/2022/Number/add.js +31 -0
  3630. package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseAND.js +14 -0
  3631. package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseNOT.js +16 -0
  3632. package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseOR.js +14 -0
  3633. package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseXOR.js +14 -0
  3634. package/slack-bot/node_modules/es-abstract/2022/Number/divide.js +18 -0
  3635. package/slack-bot/node_modules/es-abstract/2022/Number/equal.js +18 -0
  3636. package/slack-bot/node_modules/es-abstract/2022/Number/exponentiate.js +74 -0
  3637. package/slack-bot/node_modules/es-abstract/2022/Number/index.js +43 -0
  3638. package/slack-bot/node_modules/es-abstract/2022/Number/leftShift.js +22 -0
  3639. package/slack-bot/node_modules/es-abstract/2022/Number/lessThan.js +22 -0
  3640. package/slack-bot/node_modules/es-abstract/2022/Number/multiply.js +29 -0
  3641. package/slack-bot/node_modules/es-abstract/2022/Number/remainder.js +28 -0
  3642. package/slack-bot/node_modules/es-abstract/2022/Number/sameValue.js +18 -0
  3643. package/slack-bot/node_modules/es-abstract/2022/Number/sameValueZero.js +20 -0
  3644. package/slack-bot/node_modules/es-abstract/2022/Number/signedRightShift.js +22 -0
  3645. package/slack-bot/node_modules/es-abstract/2022/Number/subtract.js +15 -0
  3646. package/slack-bot/node_modules/es-abstract/2022/Number/toString.js +16 -0
  3647. package/slack-bot/node_modules/es-abstract/2022/Number/unaryMinus.js +17 -0
  3648. package/slack-bot/node_modules/es-abstract/2022/Number/unsignedRightShift.js +22 -0
  3649. package/slack-bot/node_modules/es-abstract/2022/NumberBitwiseOp.js +26 -0
  3650. package/slack-bot/node_modules/es-abstract/2022/NumberToBigInt.js +25 -0
  3651. package/slack-bot/node_modules/es-abstract/2022/NumericToRawBytes.js +62 -0
  3652. package/slack-bot/node_modules/es-abstract/2022/ObjectDefineProperties.js +37 -0
  3653. package/slack-bot/node_modules/es-abstract/2022/OrdinaryCreateFromConstructor.js +20 -0
  3654. package/slack-bot/node_modules/es-abstract/2022/OrdinaryDefineOwnProperty.js +54 -0
  3655. package/slack-bot/node_modules/es-abstract/2022/OrdinaryGetOwnProperty.js +41 -0
  3656. package/slack-bot/node_modules/es-abstract/2022/OrdinaryGetPrototypeOf.js +18 -0
  3657. package/slack-bot/node_modules/es-abstract/2022/OrdinaryHasInstance.js +23 -0
  3658. package/slack-bot/node_modules/es-abstract/2022/OrdinaryHasProperty.js +18 -0
  3659. package/slack-bot/node_modules/es-abstract/2022/OrdinaryObjectCreate.js +56 -0
  3660. package/slack-bot/node_modules/es-abstract/2022/OrdinarySetPrototypeOf.js +50 -0
  3661. package/slack-bot/node_modules/es-abstract/2022/OrdinaryToPrimitive.js +36 -0
  3662. package/slack-bot/node_modules/es-abstract/2022/PromiseResolve.js +18 -0
  3663. package/slack-bot/node_modules/es-abstract/2022/QuoteJSONString.js +52 -0
  3664. package/slack-bot/node_modules/es-abstract/2022/RawBytesToNumeric.js +67 -0
  3665. package/slack-bot/node_modules/es-abstract/2022/RegExpCreate.js +21 -0
  3666. package/slack-bot/node_modules/es-abstract/2022/RegExpExec.js +29 -0
  3667. package/slack-bot/node_modules/es-abstract/2022/RegExpHasFlag.js +38 -0
  3668. package/slack-bot/node_modules/es-abstract/2022/RequireObjectCoercible.js +3 -0
  3669. package/slack-bot/node_modules/es-abstract/2022/SameValue.js +13 -0
  3670. package/slack-bot/node_modules/es-abstract/2022/SameValueNonNumeric.js +18 -0
  3671. package/slack-bot/node_modules/es-abstract/2022/SameValueZero.js +9 -0
  3672. package/slack-bot/node_modules/es-abstract/2022/SecFromTime.js +14 -0
  3673. package/slack-bot/node_modules/es-abstract/2022/Set.js +45 -0
  3674. package/slack-bot/node_modules/es-abstract/2022/SetFunctionLength.js +28 -0
  3675. package/slack-bot/node_modules/es-abstract/2022/SetFunctionName.js +40 -0
  3676. package/slack-bot/node_modules/es-abstract/2022/SetIntegrityLevel.js +57 -0
  3677. package/slack-bot/node_modules/es-abstract/2022/SetTypedArrayFromArrayLike.js +94 -0
  3678. package/slack-bot/node_modules/es-abstract/2022/SetTypedArrayFromTypedArray.js +134 -0
  3679. package/slack-bot/node_modules/es-abstract/2022/SetValueInBuffer.js +92 -0
  3680. package/slack-bot/node_modules/es-abstract/2022/SortIndexedProperties.js +62 -0
  3681. package/slack-bot/node_modules/es-abstract/2022/SpeciesConstructor.js +32 -0
  3682. package/slack-bot/node_modules/es-abstract/2022/StringCreate.js +38 -0
  3683. package/slack-bot/node_modules/es-abstract/2022/StringGetOwnProperty.js +46 -0
  3684. package/slack-bot/node_modules/es-abstract/2022/StringIndexOf.js +36 -0
  3685. package/slack-bot/node_modules/es-abstract/2022/StringPad.js +41 -0
  3686. package/slack-bot/node_modules/es-abstract/2022/StringToBigInt.js +23 -0
  3687. package/slack-bot/node_modules/es-abstract/2022/StringToCodePoints.js +22 -0
  3688. package/slack-bot/node_modules/es-abstract/2022/StringToNumber.js +42 -0
  3689. package/slack-bot/node_modules/es-abstract/2022/SymbolDescriptiveString.js +16 -0
  3690. package/slack-bot/node_modules/es-abstract/2022/TestIntegrityLevel.js +40 -0
  3691. package/slack-bot/node_modules/es-abstract/2022/ThrowCompletion.js +9 -0
  3692. package/slack-bot/node_modules/es-abstract/2022/TimeClip.js +20 -0
  3693. package/slack-bot/node_modules/es-abstract/2022/TimeFromYear.js +11 -0
  3694. package/slack-bot/node_modules/es-abstract/2022/TimeString.js +26 -0
  3695. package/slack-bot/node_modules/es-abstract/2022/TimeWithinDay.js +12 -0
  3696. package/slack-bot/node_modules/es-abstract/2022/TimeZoneString.js +38 -0
  3697. package/slack-bot/node_modules/es-abstract/2022/ToBigInt.js +51 -0
  3698. package/slack-bot/node_modules/es-abstract/2022/ToBigInt64.js +25 -0
  3699. package/slack-bot/node_modules/es-abstract/2022/ToBigUint64.js +23 -0
  3700. package/slack-bot/node_modules/es-abstract/2022/ToBoolean.js +5 -0
  3701. package/slack-bot/node_modules/es-abstract/2022/ToDateString.js +21 -0
  3702. package/slack-bot/node_modules/es-abstract/2022/ToIndex.js +24 -0
  3703. package/slack-bot/node_modules/es-abstract/2022/ToInt16.js +10 -0
  3704. package/slack-bot/node_modules/es-abstract/2022/ToInt32.js +9 -0
  3705. package/slack-bot/node_modules/es-abstract/2022/ToInt8.js +10 -0
  3706. package/slack-bot/node_modules/es-abstract/2022/ToIntegerOrInfinity.js +20 -0
  3707. package/slack-bot/node_modules/es-abstract/2022/ToLength.js +14 -0
  3708. package/slack-bot/node_modules/es-abstract/2022/ToNumber.js +26 -0
  3709. package/slack-bot/node_modules/es-abstract/2022/ToNumeric.js +20 -0
  3710. package/slack-bot/node_modules/es-abstract/2022/ToObject.js +5 -0
  3711. package/slack-bot/node_modules/es-abstract/2022/ToPrimitive.js +12 -0
  3712. package/slack-bot/node_modules/es-abstract/2022/ToPropertyDescriptor.js +50 -0
  3713. package/slack-bot/node_modules/es-abstract/2022/ToPropertyKey.js +15 -0
  3714. package/slack-bot/node_modules/es-abstract/2022/ToString.js +15 -0
  3715. package/slack-bot/node_modules/es-abstract/2022/ToUint16.js +19 -0
  3716. package/slack-bot/node_modules/es-abstract/2022/ToUint32.js +9 -0
  3717. package/slack-bot/node_modules/es-abstract/2022/ToUint8.js +19 -0
  3718. package/slack-bot/node_modules/es-abstract/2022/ToUint8Clamp.js +19 -0
  3719. package/slack-bot/node_modules/es-abstract/2022/ToZeroPaddedDecimalString.js +19 -0
  3720. package/slack-bot/node_modules/es-abstract/2022/TrimString.js +27 -0
  3721. package/slack-bot/node_modules/es-abstract/2022/Type.js +15 -0
  3722. package/slack-bot/node_modules/es-abstract/2022/TypedArrayCreate.js +47 -0
  3723. package/slack-bot/node_modules/es-abstract/2022/TypedArrayElementSize.js +23 -0
  3724. package/slack-bot/node_modules/es-abstract/2022/TypedArrayElementType.js +23 -0
  3725. package/slack-bot/node_modules/es-abstract/2022/TypedArraySpeciesCreate.js +37 -0
  3726. package/slack-bot/node_modules/es-abstract/2022/UTF16EncodeCodePoint.js +25 -0
  3727. package/slack-bot/node_modules/es-abstract/2022/UTF16SurrogatePairToCodePoint.js +19 -0
  3728. package/slack-bot/node_modules/es-abstract/2022/UnicodeEscape.js +25 -0
  3729. package/slack-bot/node_modules/es-abstract/2022/ValidateAndApplyPropertyDescriptor.js +171 -0
  3730. package/slack-bot/node_modules/es-abstract/2022/ValidateAtomicAccess.js +40 -0
  3731. package/slack-bot/node_modules/es-abstract/2022/ValidateIntegerTypedArray.js +38 -0
  3732. package/slack-bot/node_modules/es-abstract/2022/ValidateTypedArray.js +26 -0
  3733. package/slack-bot/node_modules/es-abstract/2022/WeakRefDeref.js +23 -0
  3734. package/slack-bot/node_modules/es-abstract/2022/WeekDay.js +10 -0
  3735. package/slack-bot/node_modules/es-abstract/2022/WordCharacters.js +46 -0
  3736. package/slack-bot/node_modules/es-abstract/2022/YearFromTime.js +16 -0
  3737. package/slack-bot/node_modules/es-abstract/2022/abs.js +9 -0
  3738. package/slack-bot/node_modules/es-abstract/2022/clamp.js +14 -0
  3739. package/slack-bot/node_modules/es-abstract/2022/floor.js +14 -0
  3740. package/slack-bot/node_modules/es-abstract/2022/max.js +5 -0
  3741. package/slack-bot/node_modules/es-abstract/2022/min.js +5 -0
  3742. package/slack-bot/node_modules/es-abstract/2022/modulo.js +9 -0
  3743. package/slack-bot/node_modules/es-abstract/2022/msFromTime.js +11 -0
  3744. package/slack-bot/node_modules/es-abstract/2022/substring.js +15 -0
  3745. package/slack-bot/node_modules/es-abstract/2022/tables/typed-array-objects.js +36 -0
  3746. package/slack-bot/node_modules/es-abstract/2022/thisBigIntValue.js +18 -0
  3747. package/slack-bot/node_modules/es-abstract/2022/thisBooleanValue.js +13 -0
  3748. package/slack-bot/node_modules/es-abstract/2022/thisNumberValue.js +16 -0
  3749. package/slack-bot/node_modules/es-abstract/2022/thisStringValue.js +13 -0
  3750. package/slack-bot/node_modules/es-abstract/2022/thisSymbolValue.js +20 -0
  3751. package/slack-bot/node_modules/es-abstract/2022/thisTimeValue.js +9 -0
  3752. package/slack-bot/node_modules/es-abstract/2023/AddEntriesFromIterable.js +44 -0
  3753. package/slack-bot/node_modules/es-abstract/2023/AddToKeptObjects.js +18 -0
  3754. package/slack-bot/node_modules/es-abstract/2023/AdvanceStringIndex.js +30 -0
  3755. package/slack-bot/node_modules/es-abstract/2023/ApplyStringOrNumericBinaryOperator.js +77 -0
  3756. package/slack-bot/node_modules/es-abstract/2023/ArrayCreate.js +42 -0
  3757. package/slack-bot/node_modules/es-abstract/2023/ArraySetLength.js +77 -0
  3758. package/slack-bot/node_modules/es-abstract/2023/ArraySpeciesCreate.js +48 -0
  3759. package/slack-bot/node_modules/es-abstract/2023/AsyncFromSyncIteratorContinuation.js +45 -0
  3760. package/slack-bot/node_modules/es-abstract/2023/AsyncIteratorClose.js +70 -0
  3761. package/slack-bot/node_modules/es-abstract/2023/BigInt/add.js +14 -0
  3762. package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseAND.js +14 -0
  3763. package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseNOT.js +15 -0
  3764. package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseOR.js +14 -0
  3765. package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseXOR.js +14 -0
  3766. package/slack-bot/node_modules/es-abstract/2023/BigInt/divide.js +20 -0
  3767. package/slack-bot/node_modules/es-abstract/2023/BigInt/equal.js +13 -0
  3768. package/slack-bot/node_modules/es-abstract/2023/BigInt/exponentiate.js +29 -0
  3769. package/slack-bot/node_modules/es-abstract/2023/BigInt/index.js +39 -0
  3770. package/slack-bot/node_modules/es-abstract/2023/BigInt/leftShift.js +14 -0
  3771. package/slack-bot/node_modules/es-abstract/2023/BigInt/lessThan.js +14 -0
  3772. package/slack-bot/node_modules/es-abstract/2023/BigInt/multiply.js +14 -0
  3773. package/slack-bot/node_modules/es-abstract/2023/BigInt/remainder.js +28 -0
  3774. package/slack-bot/node_modules/es-abstract/2023/BigInt/signedRightShift.js +15 -0
  3775. package/slack-bot/node_modules/es-abstract/2023/BigInt/subtract.js +14 -0
  3776. package/slack-bot/node_modules/es-abstract/2023/BigInt/toString.js +26 -0
  3777. package/slack-bot/node_modules/es-abstract/2023/BigInt/unaryMinus.js +22 -0
  3778. package/slack-bot/node_modules/es-abstract/2023/BigInt/unsignedRightShift.js +13 -0
  3779. package/slack-bot/node_modules/es-abstract/2023/BigIntBitwiseOp.js +63 -0
  3780. package/slack-bot/node_modules/es-abstract/2023/BinaryAnd.js +12 -0
  3781. package/slack-bot/node_modules/es-abstract/2023/BinaryOr.js +12 -0
  3782. package/slack-bot/node_modules/es-abstract/2023/BinaryXor.js +12 -0
  3783. package/slack-bot/node_modules/es-abstract/2023/ByteListBitwiseOp.js +39 -0
  3784. package/slack-bot/node_modules/es-abstract/2023/ByteListEqual.js +31 -0
  3785. package/slack-bot/node_modules/es-abstract/2023/Call.js +20 -0
  3786. package/slack-bot/node_modules/es-abstract/2023/CanBeHeldWeakly.js +17 -0
  3787. package/slack-bot/node_modules/es-abstract/2023/CanonicalNumericIndexString.js +19 -0
  3788. package/slack-bot/node_modules/es-abstract/2023/Canonicalize.js +52 -0
  3789. package/slack-bot/node_modules/es-abstract/2023/CharacterRange.js +53 -0
  3790. package/slack-bot/node_modules/es-abstract/2023/ClearKeptObjects.js +12 -0
  3791. package/slack-bot/node_modules/es-abstract/2023/CloneArrayBuffer.js +46 -0
  3792. package/slack-bot/node_modules/es-abstract/2023/CodePointAt.js +55 -0
  3793. package/slack-bot/node_modules/es-abstract/2023/CodePointsToString.js +25 -0
  3794. package/slack-bot/node_modules/es-abstract/2023/CompareArrayElements.js +50 -0
  3795. package/slack-bot/node_modules/es-abstract/2023/CompareTypedArrayElements.js +60 -0
  3796. package/slack-bot/node_modules/es-abstract/2023/CompletePropertyDescriptor.js +43 -0
  3797. package/slack-bot/node_modules/es-abstract/2023/CompletionRecord.js +48 -0
  3798. package/slack-bot/node_modules/es-abstract/2023/CopyDataProperties.js +69 -0
  3799. package/slack-bot/node_modules/es-abstract/2023/CreateAsyncFromSyncIterator.js +137 -0
  3800. package/slack-bot/node_modules/es-abstract/2023/CreateDataProperty.js +25 -0
  3801. package/slack-bot/node_modules/es-abstract/2023/CreateDataPropertyOrThrow.js +23 -0
  3802. package/slack-bot/node_modules/es-abstract/2023/CreateHTML.js +27 -0
  3803. package/slack-bot/node_modules/es-abstract/2023/CreateIterResultObject.js +15 -0
  3804. package/slack-bot/node_modules/es-abstract/2023/CreateListFromArrayLike.js +44 -0
  3805. package/slack-bot/node_modules/es-abstract/2023/CreateMethodProperty.js +38 -0
  3806. package/slack-bot/node_modules/es-abstract/2023/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
  3807. package/slack-bot/node_modules/es-abstract/2023/CreateRegExpStringIterator.js +100 -0
  3808. package/slack-bot/node_modules/es-abstract/2023/DateFromTime.js +52 -0
  3809. package/slack-bot/node_modules/es-abstract/2023/DateString.js +27 -0
  3810. package/slack-bot/node_modules/es-abstract/2023/Day.js +11 -0
  3811. package/slack-bot/node_modules/es-abstract/2023/DayFromYear.js +10 -0
  3812. package/slack-bot/node_modules/es-abstract/2023/DayWithinYear.js +11 -0
  3813. package/slack-bot/node_modules/es-abstract/2023/DaysInYear.js +18 -0
  3814. package/slack-bot/node_modules/es-abstract/2023/DefaultTimeZone.js +18 -0
  3815. package/slack-bot/node_modules/es-abstract/2023/DefineMethodProperty.js +42 -0
  3816. package/slack-bot/node_modules/es-abstract/2023/DefinePropertyOrThrow.js +39 -0
  3817. package/slack-bot/node_modules/es-abstract/2023/DeletePropertyOrThrow.js +25 -0
  3818. package/slack-bot/node_modules/es-abstract/2023/DetachArrayBuffer.js +46 -0
  3819. package/slack-bot/node_modules/es-abstract/2023/EnumerableOwnProperties.js +36 -0
  3820. package/slack-bot/node_modules/es-abstract/2023/FindViaPredicate.js +43 -0
  3821. package/slack-bot/node_modules/es-abstract/2023/FlattenIntoArray.js +55 -0
  3822. package/slack-bot/node_modules/es-abstract/2023/FromPropertyDescriptor.js +16 -0
  3823. package/slack-bot/node_modules/es-abstract/2023/Get.js +24 -0
  3824. package/slack-bot/node_modules/es-abstract/2023/GetGlobalObject.js +9 -0
  3825. package/slack-bot/node_modules/es-abstract/2023/GetIterator.js +53 -0
  3826. package/slack-bot/node_modules/es-abstract/2023/GetIteratorFromMethod.js +28 -0
  3827. package/slack-bot/node_modules/es-abstract/2023/GetMatchIndexPair.js +24 -0
  3828. package/slack-bot/node_modules/es-abstract/2023/GetMatchString.js +26 -0
  3829. package/slack-bot/node_modules/es-abstract/2023/GetMethod.js +34 -0
  3830. package/slack-bot/node_modules/es-abstract/2023/GetNamedTimeZoneEpochNanoseconds.js +72 -0
  3831. package/slack-bot/node_modules/es-abstract/2023/GetOwnPropertyKeys.js +30 -0
  3832. package/slack-bot/node_modules/es-abstract/2023/GetPromiseResolve.js +20 -0
  3833. package/slack-bot/node_modules/es-abstract/2023/GetPrototypeFromConstructor.js +33 -0
  3834. package/slack-bot/node_modules/es-abstract/2023/GetStringIndex.js +27 -0
  3835. package/slack-bot/node_modules/es-abstract/2023/GetSubstitution.js +138 -0
  3836. package/slack-bot/node_modules/es-abstract/2023/GetUTCEpochNanoseconds.js +68 -0
  3837. package/slack-bot/node_modules/es-abstract/2023/GetV.js +23 -0
  3838. package/slack-bot/node_modules/es-abstract/2023/GetValueFromBuffer.js +96 -0
  3839. package/slack-bot/node_modules/es-abstract/2023/HasOwnProperty.js +20 -0
  3840. package/slack-bot/node_modules/es-abstract/2023/HasProperty.js +18 -0
  3841. package/slack-bot/node_modules/es-abstract/2023/HourFromTime.js +14 -0
  3842. package/slack-bot/node_modules/es-abstract/2023/InLeapYear.js +19 -0
  3843. package/slack-bot/node_modules/es-abstract/2023/InstallErrorCause.js +21 -0
  3844. package/slack-bot/node_modules/es-abstract/2023/InstanceofOperator.js +30 -0
  3845. package/slack-bot/node_modules/es-abstract/2023/IntegerIndexedElementGet.js +38 -0
  3846. package/slack-bot/node_modules/es-abstract/2023/IntegerIndexedElementSet.js +42 -0
  3847. package/slack-bot/node_modules/es-abstract/2023/InternalizeJSONProperty.js +68 -0
  3848. package/slack-bot/node_modules/es-abstract/2023/Invoke.js +22 -0
  3849. package/slack-bot/node_modules/es-abstract/2023/IsAccessorDescriptor.js +25 -0
  3850. package/slack-bot/node_modules/es-abstract/2023/IsArray.js +4 -0
  3851. package/slack-bot/node_modules/es-abstract/2023/IsBigIntElementType.js +7 -0
  3852. package/slack-bot/node_modules/es-abstract/2023/IsCallable.js +5 -0
  3853. package/slack-bot/node_modules/es-abstract/2023/IsCompatiblePropertyDescriptor.js +9 -0
  3854. package/slack-bot/node_modules/es-abstract/2023/IsConcatSpreadable.js +26 -0
  3855. package/slack-bot/node_modules/es-abstract/2023/IsConstructor.js +40 -0
  3856. package/slack-bot/node_modules/es-abstract/2023/IsDataDescriptor.js +25 -0
  3857. package/slack-bot/node_modules/es-abstract/2023/IsDetachedBuffer.js +28 -0
  3858. package/slack-bot/node_modules/es-abstract/2023/IsExtensible.js +18 -0
  3859. package/slack-bot/node_modules/es-abstract/2023/IsGenericDescriptor.js +26 -0
  3860. package/slack-bot/node_modules/es-abstract/2023/IsIntegralNumber.js +14 -0
  3861. package/slack-bot/node_modules/es-abstract/2023/IsLessThan.js +97 -0
  3862. package/slack-bot/node_modules/es-abstract/2023/IsLooselyEqual.js +58 -0
  3863. package/slack-bot/node_modules/es-abstract/2023/IsNoTearConfiguration.js +16 -0
  3864. package/slack-bot/node_modules/es-abstract/2023/IsPromise.js +24 -0
  3865. package/slack-bot/node_modules/es-abstract/2023/IsPropertyKey.js +9 -0
  3866. package/slack-bot/node_modules/es-abstract/2023/IsRegExp.js +25 -0
  3867. package/slack-bot/node_modules/es-abstract/2023/IsSharedArrayBuffer.js +16 -0
  3868. package/slack-bot/node_modules/es-abstract/2023/IsStrictlyEqual.js +14 -0
  3869. package/slack-bot/node_modules/es-abstract/2023/IsStringWellFormedUnicode.js +23 -0
  3870. package/slack-bot/node_modules/es-abstract/2023/IsTimeZoneOffsetString.js +20 -0
  3871. package/slack-bot/node_modules/es-abstract/2023/IsUnclampedIntegerElementType.js +12 -0
  3872. package/slack-bot/node_modules/es-abstract/2023/IsUnsignedElementType.js +11 -0
  3873. package/slack-bot/node_modules/es-abstract/2023/IsValidIntegerIndex.js +30 -0
  3874. package/slack-bot/node_modules/es-abstract/2023/IsWordChar.js +42 -0
  3875. package/slack-bot/node_modules/es-abstract/2023/IteratorClose.js +65 -0
  3876. package/slack-bot/node_modules/es-abstract/2023/IteratorComplete.js +16 -0
  3877. package/slack-bot/node_modules/es-abstract/2023/IteratorNext.js +28 -0
  3878. package/slack-bot/node_modules/es-abstract/2023/IteratorStep.js +21 -0
  3879. package/slack-bot/node_modules/es-abstract/2023/IteratorToList.js +27 -0
  3880. package/slack-bot/node_modules/es-abstract/2023/IteratorValue.js +16 -0
  3881. package/slack-bot/node_modules/es-abstract/2023/KeyForSymbol.js +16 -0
  3882. package/slack-bot/node_modules/es-abstract/2023/LengthOfArrayLike.js +18 -0
  3883. package/slack-bot/node_modules/es-abstract/2023/MakeDate.js +14 -0
  3884. package/slack-bot/node_modules/es-abstract/2023/MakeDay.js +36 -0
  3885. package/slack-bot/node_modules/es-abstract/2023/MakeMatchIndicesIndexPairArray.js +66 -0
  3886. package/slack-bot/node_modules/es-abstract/2023/MakeTime.js +23 -0
  3887. package/slack-bot/node_modules/es-abstract/2023/MinFromTime.js +14 -0
  3888. package/slack-bot/node_modules/es-abstract/2023/MonthFromTime.js +51 -0
  3889. package/slack-bot/node_modules/es-abstract/2023/NewPromiseCapability.js +34 -0
  3890. package/slack-bot/node_modules/es-abstract/2023/NormalCompletion.js +9 -0
  3891. package/slack-bot/node_modules/es-abstract/2023/Number/add.js +31 -0
  3892. package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseAND.js +14 -0
  3893. package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseNOT.js +16 -0
  3894. package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseOR.js +14 -0
  3895. package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseXOR.js +14 -0
  3896. package/slack-bot/node_modules/es-abstract/2023/Number/divide.js +18 -0
  3897. package/slack-bot/node_modules/es-abstract/2023/Number/equal.js +18 -0
  3898. package/slack-bot/node_modules/es-abstract/2023/Number/exponentiate.js +74 -0
  3899. package/slack-bot/node_modules/es-abstract/2023/Number/index.js +43 -0
  3900. package/slack-bot/node_modules/es-abstract/2023/Number/leftShift.js +22 -0
  3901. package/slack-bot/node_modules/es-abstract/2023/Number/lessThan.js +22 -0
  3902. package/slack-bot/node_modules/es-abstract/2023/Number/multiply.js +29 -0
  3903. package/slack-bot/node_modules/es-abstract/2023/Number/remainder.js +38 -0
  3904. package/slack-bot/node_modules/es-abstract/2023/Number/sameValue.js +18 -0
  3905. package/slack-bot/node_modules/es-abstract/2023/Number/sameValueZero.js +20 -0
  3906. package/slack-bot/node_modules/es-abstract/2023/Number/signedRightShift.js +22 -0
  3907. package/slack-bot/node_modules/es-abstract/2023/Number/subtract.js +15 -0
  3908. package/slack-bot/node_modules/es-abstract/2023/Number/toString.js +20 -0
  3909. package/slack-bot/node_modules/es-abstract/2023/Number/unaryMinus.js +17 -0
  3910. package/slack-bot/node_modules/es-abstract/2023/Number/unsignedRightShift.js +22 -0
  3911. package/slack-bot/node_modules/es-abstract/2023/NumberBitwiseOp.js +26 -0
  3912. package/slack-bot/node_modules/es-abstract/2023/NumberToBigInt.js +25 -0
  3913. package/slack-bot/node_modules/es-abstract/2023/NumericToRawBytes.js +62 -0
  3914. package/slack-bot/node_modules/es-abstract/2023/ObjectDefineProperties.js +37 -0
  3915. package/slack-bot/node_modules/es-abstract/2023/OrdinaryCreateFromConstructor.js +20 -0
  3916. package/slack-bot/node_modules/es-abstract/2023/OrdinaryDefineOwnProperty.js +54 -0
  3917. package/slack-bot/node_modules/es-abstract/2023/OrdinaryGetOwnProperty.js +41 -0
  3918. package/slack-bot/node_modules/es-abstract/2023/OrdinaryGetPrototypeOf.js +18 -0
  3919. package/slack-bot/node_modules/es-abstract/2023/OrdinaryHasInstance.js +23 -0
  3920. package/slack-bot/node_modules/es-abstract/2023/OrdinaryHasProperty.js +18 -0
  3921. package/slack-bot/node_modules/es-abstract/2023/OrdinaryObjectCreate.js +56 -0
  3922. package/slack-bot/node_modules/es-abstract/2023/OrdinarySetPrototypeOf.js +50 -0
  3923. package/slack-bot/node_modules/es-abstract/2023/OrdinaryToPrimitive.js +36 -0
  3924. package/slack-bot/node_modules/es-abstract/2023/ParseHexOctet.js +40 -0
  3925. package/slack-bot/node_modules/es-abstract/2023/PromiseResolve.js +18 -0
  3926. package/slack-bot/node_modules/es-abstract/2023/QuoteJSONString.js +52 -0
  3927. package/slack-bot/node_modules/es-abstract/2023/RawBytesToNumeric.js +67 -0
  3928. package/slack-bot/node_modules/es-abstract/2023/RegExpCreate.js +21 -0
  3929. package/slack-bot/node_modules/es-abstract/2023/RegExpExec.js +29 -0
  3930. package/slack-bot/node_modules/es-abstract/2023/RegExpHasFlag.js +38 -0
  3931. package/slack-bot/node_modules/es-abstract/2023/RequireObjectCoercible.js +3 -0
  3932. package/slack-bot/node_modules/es-abstract/2023/SameValue.js +13 -0
  3933. package/slack-bot/node_modules/es-abstract/2023/SameValueNonNumber.js +18 -0
  3934. package/slack-bot/node_modules/es-abstract/2023/SameValueZero.js +9 -0
  3935. package/slack-bot/node_modules/es-abstract/2023/SecFromTime.js +14 -0
  3936. package/slack-bot/node_modules/es-abstract/2023/Set.js +45 -0
  3937. package/slack-bot/node_modules/es-abstract/2023/SetFunctionLength.js +28 -0
  3938. package/slack-bot/node_modules/es-abstract/2023/SetFunctionName.js +40 -0
  3939. package/slack-bot/node_modules/es-abstract/2023/SetIntegrityLevel.js +57 -0
  3940. package/slack-bot/node_modules/es-abstract/2023/SetTypedArrayFromArrayLike.js +68 -0
  3941. package/slack-bot/node_modules/es-abstract/2023/SetTypedArrayFromTypedArray.js +129 -0
  3942. package/slack-bot/node_modules/es-abstract/2023/SetValueInBuffer.js +92 -0
  3943. package/slack-bot/node_modules/es-abstract/2023/SortIndexedProperties.js +49 -0
  3944. package/slack-bot/node_modules/es-abstract/2023/SpeciesConstructor.js +32 -0
  3945. package/slack-bot/node_modules/es-abstract/2023/StringCreate.js +38 -0
  3946. package/slack-bot/node_modules/es-abstract/2023/StringGetOwnProperty.js +46 -0
  3947. package/slack-bot/node_modules/es-abstract/2023/StringIndexOf.js +36 -0
  3948. package/slack-bot/node_modules/es-abstract/2023/StringPad.js +41 -0
  3949. package/slack-bot/node_modules/es-abstract/2023/StringToBigInt.js +23 -0
  3950. package/slack-bot/node_modules/es-abstract/2023/StringToCodePoints.js +22 -0
  3951. package/slack-bot/node_modules/es-abstract/2023/StringToNumber.js +42 -0
  3952. package/slack-bot/node_modules/es-abstract/2023/SymbolDescriptiveString.js +16 -0
  3953. package/slack-bot/node_modules/es-abstract/2023/TestIntegrityLevel.js +40 -0
  3954. package/slack-bot/node_modules/es-abstract/2023/ThrowCompletion.js +9 -0
  3955. package/slack-bot/node_modules/es-abstract/2023/TimeClip.js +20 -0
  3956. package/slack-bot/node_modules/es-abstract/2023/TimeFromYear.js +11 -0
  3957. package/slack-bot/node_modules/es-abstract/2023/TimeString.js +26 -0
  3958. package/slack-bot/node_modules/es-abstract/2023/TimeWithinDay.js +12 -0
  3959. package/slack-bot/node_modules/es-abstract/2023/TimeZoneString.js +41 -0
  3960. package/slack-bot/node_modules/es-abstract/2023/ToBigInt.js +51 -0
  3961. package/slack-bot/node_modules/es-abstract/2023/ToBigInt64.js +25 -0
  3962. package/slack-bot/node_modules/es-abstract/2023/ToBigUint64.js +23 -0
  3963. package/slack-bot/node_modules/es-abstract/2023/ToBoolean.js +5 -0
  3964. package/slack-bot/node_modules/es-abstract/2023/ToDateString.js +21 -0
  3965. package/slack-bot/node_modules/es-abstract/2023/ToIndex.js +24 -0
  3966. package/slack-bot/node_modules/es-abstract/2023/ToInt16.js +21 -0
  3967. package/slack-bot/node_modules/es-abstract/2023/ToInt32.js +23 -0
  3968. package/slack-bot/node_modules/es-abstract/2023/ToInt8.js +19 -0
  3969. package/slack-bot/node_modules/es-abstract/2023/ToIntegerOrInfinity.js +16 -0
  3970. package/slack-bot/node_modules/es-abstract/2023/ToLength.js +14 -0
  3971. package/slack-bot/node_modules/es-abstract/2023/ToNumber.js +26 -0
  3972. package/slack-bot/node_modules/es-abstract/2023/ToNumeric.js +20 -0
  3973. package/slack-bot/node_modules/es-abstract/2023/ToObject.js +5 -0
  3974. package/slack-bot/node_modules/es-abstract/2023/ToPrimitive.js +12 -0
  3975. package/slack-bot/node_modules/es-abstract/2023/ToPropertyDescriptor.js +50 -0
  3976. package/slack-bot/node_modules/es-abstract/2023/ToPropertyKey.js +15 -0
  3977. package/slack-bot/node_modules/es-abstract/2023/ToString.js +15 -0
  3978. package/slack-bot/node_modules/es-abstract/2023/ToUint16.js +21 -0
  3979. package/slack-bot/node_modules/es-abstract/2023/ToUint32.js +21 -0
  3980. package/slack-bot/node_modules/es-abstract/2023/ToUint8.js +19 -0
  3981. package/slack-bot/node_modules/es-abstract/2023/ToUint8Clamp.js +19 -0
  3982. package/slack-bot/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js +19 -0
  3983. package/slack-bot/node_modules/es-abstract/2023/TrimString.js +27 -0
  3984. package/slack-bot/node_modules/es-abstract/2023/Type.js +15 -0
  3985. package/slack-bot/node_modules/es-abstract/2023/TypedArrayCreate.js +47 -0
  3986. package/slack-bot/node_modules/es-abstract/2023/TypedArrayCreateSameType.js +35 -0
  3987. package/slack-bot/node_modules/es-abstract/2023/TypedArrayElementSize.js +23 -0
  3988. package/slack-bot/node_modules/es-abstract/2023/TypedArrayElementType.js +23 -0
  3989. package/slack-bot/node_modules/es-abstract/2023/TypedArraySpeciesCreate.js +37 -0
  3990. package/slack-bot/node_modules/es-abstract/2023/UTF16EncodeCodePoint.js +25 -0
  3991. package/slack-bot/node_modules/es-abstract/2023/UTF16SurrogatePairToCodePoint.js +19 -0
  3992. package/slack-bot/node_modules/es-abstract/2023/UnicodeEscape.js +25 -0
  3993. package/slack-bot/node_modules/es-abstract/2023/ValidateAndApplyPropertyDescriptor.js +171 -0
  3994. package/slack-bot/node_modules/es-abstract/2023/ValidateAtomicAccess.js +40 -0
  3995. package/slack-bot/node_modules/es-abstract/2023/ValidateIntegerTypedArray.js +38 -0
  3996. package/slack-bot/node_modules/es-abstract/2023/ValidateTypedArray.js +26 -0
  3997. package/slack-bot/node_modules/es-abstract/2023/WeakRefDeref.js +23 -0
  3998. package/slack-bot/node_modules/es-abstract/2023/WeekDay.js +10 -0
  3999. package/slack-bot/node_modules/es-abstract/2023/WordCharacters.js +47 -0
  4000. package/slack-bot/node_modules/es-abstract/2023/YearFromTime.js +16 -0
  4001. package/slack-bot/node_modules/es-abstract/2023/abs.js +9 -0
  4002. package/slack-bot/node_modules/es-abstract/2023/clamp.js +14 -0
  4003. package/slack-bot/node_modules/es-abstract/2023/floor.js +14 -0
  4004. package/slack-bot/node_modules/es-abstract/2023/max.js +5 -0
  4005. package/slack-bot/node_modules/es-abstract/2023/min.js +5 -0
  4006. package/slack-bot/node_modules/es-abstract/2023/modulo.js +9 -0
  4007. package/slack-bot/node_modules/es-abstract/2023/msFromTime.js +11 -0
  4008. package/slack-bot/node_modules/es-abstract/2023/substring.js +15 -0
  4009. package/slack-bot/node_modules/es-abstract/2023/tables/typed-array-objects.js +36 -0
  4010. package/slack-bot/node_modules/es-abstract/2023/thisBigIntValue.js +18 -0
  4011. package/slack-bot/node_modules/es-abstract/2023/thisBooleanValue.js +13 -0
  4012. package/slack-bot/node_modules/es-abstract/2023/thisNumberValue.js +16 -0
  4013. package/slack-bot/node_modules/es-abstract/2023/thisStringValue.js +13 -0
  4014. package/slack-bot/node_modules/es-abstract/2023/thisSymbolValue.js +20 -0
  4015. package/slack-bot/node_modules/es-abstract/2023/thisTimeValue.js +9 -0
  4016. package/slack-bot/node_modules/es-abstract/2023/truncate.js +15 -0
  4017. package/slack-bot/node_modules/es-abstract/2024/AddEntriesFromIterable.js +44 -0
  4018. package/slack-bot/node_modules/es-abstract/2024/AddToKeptObjects.js +18 -0
  4019. package/slack-bot/node_modules/es-abstract/2024/AddValueToKeyedGroup.js +45 -0
  4020. package/slack-bot/node_modules/es-abstract/2024/AdvanceStringIndex.js +30 -0
  4021. package/slack-bot/node_modules/es-abstract/2024/AllCharacters.js +29 -0
  4022. package/slack-bot/node_modules/es-abstract/2024/ApplyStringOrNumericBinaryOperator.js +77 -0
  4023. package/slack-bot/node_modules/es-abstract/2024/ArrayBufferByteLength.js +41 -0
  4024. package/slack-bot/node_modules/es-abstract/2024/ArrayBufferCopyAndDetach.js +101 -0
  4025. package/slack-bot/node_modules/es-abstract/2024/ArrayCreate.js +42 -0
  4026. package/slack-bot/node_modules/es-abstract/2024/ArraySetLength.js +77 -0
  4027. package/slack-bot/node_modules/es-abstract/2024/ArraySpeciesCreate.js +48 -0
  4028. package/slack-bot/node_modules/es-abstract/2024/AsyncFromSyncIteratorContinuation.js +45 -0
  4029. package/slack-bot/node_modules/es-abstract/2024/AsyncIteratorClose.js +70 -0
  4030. package/slack-bot/node_modules/es-abstract/2024/BigInt/add.js +14 -0
  4031. package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseAND.js +14 -0
  4032. package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseNOT.js +15 -0
  4033. package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseOR.js +14 -0
  4034. package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseXOR.js +14 -0
  4035. package/slack-bot/node_modules/es-abstract/2024/BigInt/divide.js +20 -0
  4036. package/slack-bot/node_modules/es-abstract/2024/BigInt/equal.js +13 -0
  4037. package/slack-bot/node_modules/es-abstract/2024/BigInt/exponentiate.js +29 -0
  4038. package/slack-bot/node_modules/es-abstract/2024/BigInt/index.js +39 -0
  4039. package/slack-bot/node_modules/es-abstract/2024/BigInt/leftShift.js +14 -0
  4040. package/slack-bot/node_modules/es-abstract/2024/BigInt/lessThan.js +14 -0
  4041. package/slack-bot/node_modules/es-abstract/2024/BigInt/multiply.js +14 -0
  4042. package/slack-bot/node_modules/es-abstract/2024/BigInt/remainder.js +28 -0
  4043. package/slack-bot/node_modules/es-abstract/2024/BigInt/signedRightShift.js +15 -0
  4044. package/slack-bot/node_modules/es-abstract/2024/BigInt/subtract.js +14 -0
  4045. package/slack-bot/node_modules/es-abstract/2024/BigInt/toString.js +26 -0
  4046. package/slack-bot/node_modules/es-abstract/2024/BigInt/unaryMinus.js +22 -0
  4047. package/slack-bot/node_modules/es-abstract/2024/BigInt/unsignedRightShift.js +13 -0
  4048. package/slack-bot/node_modules/es-abstract/2024/BigIntBitwiseOp.js +63 -0
  4049. package/slack-bot/node_modules/es-abstract/2024/BinaryAnd.js +12 -0
  4050. package/slack-bot/node_modules/es-abstract/2024/BinaryOr.js +12 -0
  4051. package/slack-bot/node_modules/es-abstract/2024/BinaryXor.js +12 -0
  4052. package/slack-bot/node_modules/es-abstract/2024/ByteListBitwiseOp.js +39 -0
  4053. package/slack-bot/node_modules/es-abstract/2024/ByteListEqual.js +31 -0
  4054. package/slack-bot/node_modules/es-abstract/2024/Call.js +20 -0
  4055. package/slack-bot/node_modules/es-abstract/2024/CanBeHeldWeakly.js +17 -0
  4056. package/slack-bot/node_modules/es-abstract/2024/CanonicalNumericIndexString.js +19 -0
  4057. package/slack-bot/node_modules/es-abstract/2024/Canonicalize.js +52 -0
  4058. package/slack-bot/node_modules/es-abstract/2024/CharacterComplement.js +34 -0
  4059. package/slack-bot/node_modules/es-abstract/2024/CharacterRange.js +53 -0
  4060. package/slack-bot/node_modules/es-abstract/2024/ClearKeptObjects.js +12 -0
  4061. package/slack-bot/node_modules/es-abstract/2024/CloneArrayBuffer.js +46 -0
  4062. package/slack-bot/node_modules/es-abstract/2024/CodePointAt.js +55 -0
  4063. package/slack-bot/node_modules/es-abstract/2024/CodePointsToString.js +25 -0
  4064. package/slack-bot/node_modules/es-abstract/2024/CompareArrayElements.js +50 -0
  4065. package/slack-bot/node_modules/es-abstract/2024/CompareTypedArrayElements.js +60 -0
  4066. package/slack-bot/node_modules/es-abstract/2024/CompletePropertyDescriptor.js +43 -0
  4067. package/slack-bot/node_modules/es-abstract/2024/CompletionRecord.js +48 -0
  4068. package/slack-bot/node_modules/es-abstract/2024/CopyDataProperties.js +69 -0
  4069. package/slack-bot/node_modules/es-abstract/2024/CreateAsyncFromSyncIterator.js +137 -0
  4070. package/slack-bot/node_modules/es-abstract/2024/CreateDataProperty.js +25 -0
  4071. package/slack-bot/node_modules/es-abstract/2024/CreateDataPropertyOrThrow.js +23 -0
  4072. package/slack-bot/node_modules/es-abstract/2024/CreateHTML.js +27 -0
  4073. package/slack-bot/node_modules/es-abstract/2024/CreateIterResultObject.js +15 -0
  4074. package/slack-bot/node_modules/es-abstract/2024/CreateListFromArrayLike.js +44 -0
  4075. package/slack-bot/node_modules/es-abstract/2024/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
  4076. package/slack-bot/node_modules/es-abstract/2024/CreateRegExpStringIterator.js +101 -0
  4077. package/slack-bot/node_modules/es-abstract/2024/DateFromTime.js +52 -0
  4078. package/slack-bot/node_modules/es-abstract/2024/DateString.js +27 -0
  4079. package/slack-bot/node_modules/es-abstract/2024/Day.js +11 -0
  4080. package/slack-bot/node_modules/es-abstract/2024/DayFromYear.js +10 -0
  4081. package/slack-bot/node_modules/es-abstract/2024/DayWithinYear.js +11 -0
  4082. package/slack-bot/node_modules/es-abstract/2024/DaysInYear.js +18 -0
  4083. package/slack-bot/node_modules/es-abstract/2024/DefineMethodProperty.js +42 -0
  4084. package/slack-bot/node_modules/es-abstract/2024/DefinePropertyOrThrow.js +39 -0
  4085. package/slack-bot/node_modules/es-abstract/2024/DeletePropertyOrThrow.js +25 -0
  4086. package/slack-bot/node_modules/es-abstract/2024/DetachArrayBuffer.js +46 -0
  4087. package/slack-bot/node_modules/es-abstract/2024/EnumerableOwnProperties.js +36 -0
  4088. package/slack-bot/node_modules/es-abstract/2024/FindViaPredicate.js +43 -0
  4089. package/slack-bot/node_modules/es-abstract/2024/FlattenIntoArray.js +55 -0
  4090. package/slack-bot/node_modules/es-abstract/2024/FromPropertyDescriptor.js +16 -0
  4091. package/slack-bot/node_modules/es-abstract/2024/Get.js +24 -0
  4092. package/slack-bot/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js +22 -0
  4093. package/slack-bot/node_modules/es-abstract/2024/GetGlobalObject.js +9 -0
  4094. package/slack-bot/node_modules/es-abstract/2024/GetIterator.js +53 -0
  4095. package/slack-bot/node_modules/es-abstract/2024/GetIteratorFromMethod.js +28 -0
  4096. package/slack-bot/node_modules/es-abstract/2024/GetMatchIndexPair.js +24 -0
  4097. package/slack-bot/node_modules/es-abstract/2024/GetMatchString.js +26 -0
  4098. package/slack-bot/node_modules/es-abstract/2024/GetMethod.js +34 -0
  4099. package/slack-bot/node_modules/es-abstract/2024/GetNamedTimeZoneEpochNanoseconds.js +72 -0
  4100. package/slack-bot/node_modules/es-abstract/2024/GetOwnPropertyKeys.js +30 -0
  4101. package/slack-bot/node_modules/es-abstract/2024/GetPromiseResolve.js +20 -0
  4102. package/slack-bot/node_modules/es-abstract/2024/GetPrototypeFromConstructor.js +33 -0
  4103. package/slack-bot/node_modules/es-abstract/2024/GetStringIndex.js +27 -0
  4104. package/slack-bot/node_modules/es-abstract/2024/GetSubstitution.js +148 -0
  4105. package/slack-bot/node_modules/es-abstract/2024/GetUTCEpochNanoseconds.js +68 -0
  4106. package/slack-bot/node_modules/es-abstract/2024/GetV.js +23 -0
  4107. package/slack-bot/node_modules/es-abstract/2024/GetValueFromBuffer.js +95 -0
  4108. package/slack-bot/node_modules/es-abstract/2024/GetViewByteLength.js +47 -0
  4109. package/slack-bot/node_modules/es-abstract/2024/GroupBy.js +75 -0
  4110. package/slack-bot/node_modules/es-abstract/2024/HasEitherUnicodeFlag.js +18 -0
  4111. package/slack-bot/node_modules/es-abstract/2024/HasOwnProperty.js +20 -0
  4112. package/slack-bot/node_modules/es-abstract/2024/HasProperty.js +18 -0
  4113. package/slack-bot/node_modules/es-abstract/2024/HourFromTime.js +14 -0
  4114. package/slack-bot/node_modules/es-abstract/2024/InLeapYear.js +19 -0
  4115. package/slack-bot/node_modules/es-abstract/2024/InstallErrorCause.js +21 -0
  4116. package/slack-bot/node_modules/es-abstract/2024/InstanceofOperator.js +30 -0
  4117. package/slack-bot/node_modules/es-abstract/2024/InternalizeJSONProperty.js +68 -0
  4118. package/slack-bot/node_modules/es-abstract/2024/Invoke.js +22 -0
  4119. package/slack-bot/node_modules/es-abstract/2024/IsAccessorDescriptor.js +25 -0
  4120. package/slack-bot/node_modules/es-abstract/2024/IsArray.js +4 -0
  4121. package/slack-bot/node_modules/es-abstract/2024/IsArrayBufferViewOutOfBounds.js +30 -0
  4122. package/slack-bot/node_modules/es-abstract/2024/IsBigIntElementType.js +7 -0
  4123. package/slack-bot/node_modules/es-abstract/2024/IsCallable.js +5 -0
  4124. package/slack-bot/node_modules/es-abstract/2024/IsCompatiblePropertyDescriptor.js +9 -0
  4125. package/slack-bot/node_modules/es-abstract/2024/IsConcatSpreadable.js +26 -0
  4126. package/slack-bot/node_modules/es-abstract/2024/IsConstructor.js +40 -0
  4127. package/slack-bot/node_modules/es-abstract/2024/IsDataDescriptor.js +25 -0
  4128. package/slack-bot/node_modules/es-abstract/2024/IsDetachedBuffer.js +28 -0
  4129. package/slack-bot/node_modules/es-abstract/2024/IsExtensible.js +18 -0
  4130. package/slack-bot/node_modules/es-abstract/2024/IsFixedLengthArrayBuffer.js +29 -0
  4131. package/slack-bot/node_modules/es-abstract/2024/IsGenericDescriptor.js +26 -0
  4132. package/slack-bot/node_modules/es-abstract/2024/IsIntegralNumber.js +14 -0
  4133. package/slack-bot/node_modules/es-abstract/2024/IsLessThan.js +97 -0
  4134. package/slack-bot/node_modules/es-abstract/2024/IsLooselyEqual.js +58 -0
  4135. package/slack-bot/node_modules/es-abstract/2024/IsNoTearConfiguration.js +16 -0
  4136. package/slack-bot/node_modules/es-abstract/2024/IsPromise.js +24 -0
  4137. package/slack-bot/node_modules/es-abstract/2024/IsPropertyKey.js +9 -0
  4138. package/slack-bot/node_modules/es-abstract/2024/IsRegExp.js +25 -0
  4139. package/slack-bot/node_modules/es-abstract/2024/IsSharedArrayBuffer.js +16 -0
  4140. package/slack-bot/node_modules/es-abstract/2024/IsStrictlyEqual.js +14 -0
  4141. package/slack-bot/node_modules/es-abstract/2024/IsStringWellFormedUnicode.js +23 -0
  4142. package/slack-bot/node_modules/es-abstract/2024/IsTimeZoneOffsetString.js +20 -0
  4143. package/slack-bot/node_modules/es-abstract/2024/IsTypedArrayOutOfBounds.js +57 -0
  4144. package/slack-bot/node_modules/es-abstract/2024/IsUnclampedIntegerElementType.js +12 -0
  4145. package/slack-bot/node_modules/es-abstract/2024/IsUnsignedElementType.js +11 -0
  4146. package/slack-bot/node_modules/es-abstract/2024/IsValidIntegerIndex.js +43 -0
  4147. package/slack-bot/node_modules/es-abstract/2024/IsViewOutOfBounds.js +48 -0
  4148. package/slack-bot/node_modules/es-abstract/2024/IsWordChar.js +42 -0
  4149. package/slack-bot/node_modules/es-abstract/2024/IteratorClose.js +65 -0
  4150. package/slack-bot/node_modules/es-abstract/2024/IteratorComplete.js +16 -0
  4151. package/slack-bot/node_modules/es-abstract/2024/IteratorNext.js +28 -0
  4152. package/slack-bot/node_modules/es-abstract/2024/IteratorStep.js +21 -0
  4153. package/slack-bot/node_modules/es-abstract/2024/IteratorStepValue.js +49 -0
  4154. package/slack-bot/node_modules/es-abstract/2024/IteratorToList.js +27 -0
  4155. package/slack-bot/node_modules/es-abstract/2024/IteratorValue.js +16 -0
  4156. package/slack-bot/node_modules/es-abstract/2024/KeyForSymbol.js +16 -0
  4157. package/slack-bot/node_modules/es-abstract/2024/LengthOfArrayLike.js +18 -0
  4158. package/slack-bot/node_modules/es-abstract/2024/MakeDataViewWithBufferWitnessRecord.js +26 -0
  4159. package/slack-bot/node_modules/es-abstract/2024/MakeDate.js +14 -0
  4160. package/slack-bot/node_modules/es-abstract/2024/MakeDay.js +36 -0
  4161. package/slack-bot/node_modules/es-abstract/2024/MakeFullYear.js +26 -0
  4162. package/slack-bot/node_modules/es-abstract/2024/MakeMatchIndicesIndexPairArray.js +66 -0
  4163. package/slack-bot/node_modules/es-abstract/2024/MakeTime.js +23 -0
  4164. package/slack-bot/node_modules/es-abstract/2024/MakeTypedArrayWithBufferWitnessRecord.js +26 -0
  4165. package/slack-bot/node_modules/es-abstract/2024/MinFromTime.js +14 -0
  4166. package/slack-bot/node_modules/es-abstract/2024/MonthFromTime.js +51 -0
  4167. package/slack-bot/node_modules/es-abstract/2024/NewPromiseCapability.js +34 -0
  4168. package/slack-bot/node_modules/es-abstract/2024/NormalCompletion.js +9 -0
  4169. package/slack-bot/node_modules/es-abstract/2024/Number/add.js +31 -0
  4170. package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseAND.js +14 -0
  4171. package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseNOT.js +16 -0
  4172. package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseOR.js +14 -0
  4173. package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseXOR.js +14 -0
  4174. package/slack-bot/node_modules/es-abstract/2024/Number/divide.js +18 -0
  4175. package/slack-bot/node_modules/es-abstract/2024/Number/equal.js +18 -0
  4176. package/slack-bot/node_modules/es-abstract/2024/Number/exponentiate.js +74 -0
  4177. package/slack-bot/node_modules/es-abstract/2024/Number/index.js +43 -0
  4178. package/slack-bot/node_modules/es-abstract/2024/Number/leftShift.js +22 -0
  4179. package/slack-bot/node_modules/es-abstract/2024/Number/lessThan.js +22 -0
  4180. package/slack-bot/node_modules/es-abstract/2024/Number/multiply.js +29 -0
  4181. package/slack-bot/node_modules/es-abstract/2024/Number/remainder.js +38 -0
  4182. package/slack-bot/node_modules/es-abstract/2024/Number/sameValue.js +18 -0
  4183. package/slack-bot/node_modules/es-abstract/2024/Number/sameValueZero.js +20 -0
  4184. package/slack-bot/node_modules/es-abstract/2024/Number/signedRightShift.js +22 -0
  4185. package/slack-bot/node_modules/es-abstract/2024/Number/subtract.js +15 -0
  4186. package/slack-bot/node_modules/es-abstract/2024/Number/toString.js +20 -0
  4187. package/slack-bot/node_modules/es-abstract/2024/Number/unaryMinus.js +17 -0
  4188. package/slack-bot/node_modules/es-abstract/2024/Number/unsignedRightShift.js +22 -0
  4189. package/slack-bot/node_modules/es-abstract/2024/NumberBitwiseOp.js +26 -0
  4190. package/slack-bot/node_modules/es-abstract/2024/NumberToBigInt.js +25 -0
  4191. package/slack-bot/node_modules/es-abstract/2024/NumericToRawBytes.js +62 -0
  4192. package/slack-bot/node_modules/es-abstract/2024/ObjectDefineProperties.js +33 -0
  4193. package/slack-bot/node_modules/es-abstract/2024/OrdinaryCreateFromConstructor.js +20 -0
  4194. package/slack-bot/node_modules/es-abstract/2024/OrdinaryDefineOwnProperty.js +54 -0
  4195. package/slack-bot/node_modules/es-abstract/2024/OrdinaryGetOwnProperty.js +41 -0
  4196. package/slack-bot/node_modules/es-abstract/2024/OrdinaryGetPrototypeOf.js +18 -0
  4197. package/slack-bot/node_modules/es-abstract/2024/OrdinaryHasInstance.js +23 -0
  4198. package/slack-bot/node_modules/es-abstract/2024/OrdinaryHasProperty.js +18 -0
  4199. package/slack-bot/node_modules/es-abstract/2024/OrdinaryObjectCreate.js +56 -0
  4200. package/slack-bot/node_modules/es-abstract/2024/OrdinarySetPrototypeOf.js +50 -0
  4201. package/slack-bot/node_modules/es-abstract/2024/OrdinaryToPrimitive.js +36 -0
  4202. package/slack-bot/node_modules/es-abstract/2024/ParseHexOctet.js +40 -0
  4203. package/slack-bot/node_modules/es-abstract/2024/PromiseResolve.js +18 -0
  4204. package/slack-bot/node_modules/es-abstract/2024/QuoteJSONString.js +52 -0
  4205. package/slack-bot/node_modules/es-abstract/2024/RawBytesToNumeric.js +67 -0
  4206. package/slack-bot/node_modules/es-abstract/2024/RegExpCreate.js +21 -0
  4207. package/slack-bot/node_modules/es-abstract/2024/RegExpExec.js +29 -0
  4208. package/slack-bot/node_modules/es-abstract/2024/RegExpHasFlag.js +38 -0
  4209. package/slack-bot/node_modules/es-abstract/2024/RequireObjectCoercible.js +3 -0
  4210. package/slack-bot/node_modules/es-abstract/2024/SameValue.js +13 -0
  4211. package/slack-bot/node_modules/es-abstract/2024/SameValueNonNumber.js +18 -0
  4212. package/slack-bot/node_modules/es-abstract/2024/SameValueZero.js +9 -0
  4213. package/slack-bot/node_modules/es-abstract/2024/SecFromTime.js +14 -0
  4214. package/slack-bot/node_modules/es-abstract/2024/Set.js +45 -0
  4215. package/slack-bot/node_modules/es-abstract/2024/SetFunctionLength.js +28 -0
  4216. package/slack-bot/node_modules/es-abstract/2024/SetFunctionName.js +40 -0
  4217. package/slack-bot/node_modules/es-abstract/2024/SetIntegrityLevel.js +57 -0
  4218. package/slack-bot/node_modules/es-abstract/2024/SetTypedArrayFromArrayLike.js +64 -0
  4219. package/slack-bot/node_modules/es-abstract/2024/SetTypedArrayFromTypedArray.js +133 -0
  4220. package/slack-bot/node_modules/es-abstract/2024/SetValueInBuffer.js +92 -0
  4221. package/slack-bot/node_modules/es-abstract/2024/SortIndexedProperties.js +49 -0
  4222. package/slack-bot/node_modules/es-abstract/2024/SpeciesConstructor.js +32 -0
  4223. package/slack-bot/node_modules/es-abstract/2024/StringCreate.js +38 -0
  4224. package/slack-bot/node_modules/es-abstract/2024/StringGetOwnProperty.js +46 -0
  4225. package/slack-bot/node_modules/es-abstract/2024/StringIndexOf.js +36 -0
  4226. package/slack-bot/node_modules/es-abstract/2024/StringPad.js +43 -0
  4227. package/slack-bot/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js +27 -0
  4228. package/slack-bot/node_modules/es-abstract/2024/StringToBigInt.js +23 -0
  4229. package/slack-bot/node_modules/es-abstract/2024/StringToCodePoints.js +22 -0
  4230. package/slack-bot/node_modules/es-abstract/2024/StringToNumber.js +42 -0
  4231. package/slack-bot/node_modules/es-abstract/2024/SymbolDescriptiveString.js +16 -0
  4232. package/slack-bot/node_modules/es-abstract/2024/SystemTimeZoneIdentifier.js +18 -0
  4233. package/slack-bot/node_modules/es-abstract/2024/TestIntegrityLevel.js +40 -0
  4234. package/slack-bot/node_modules/es-abstract/2024/ThisBigIntValue.js +20 -0
  4235. package/slack-bot/node_modules/es-abstract/2024/ThisBooleanValue.js +13 -0
  4236. package/slack-bot/node_modules/es-abstract/2024/ThisNumberValue.js +15 -0
  4237. package/slack-bot/node_modules/es-abstract/2024/ThisStringValue.js +13 -0
  4238. package/slack-bot/node_modules/es-abstract/2024/ThisSymbolValue.js +20 -0
  4239. package/slack-bot/node_modules/es-abstract/2024/ThrowCompletion.js +9 -0
  4240. package/slack-bot/node_modules/es-abstract/2024/TimeClip.js +20 -0
  4241. package/slack-bot/node_modules/es-abstract/2024/TimeFromYear.js +11 -0
  4242. package/slack-bot/node_modules/es-abstract/2024/TimeString.js +26 -0
  4243. package/slack-bot/node_modules/es-abstract/2024/TimeWithinDay.js +12 -0
  4244. package/slack-bot/node_modules/es-abstract/2024/TimeZoneString.js +41 -0
  4245. package/slack-bot/node_modules/es-abstract/2024/ToBigInt.js +51 -0
  4246. package/slack-bot/node_modules/es-abstract/2024/ToBigInt64.js +25 -0
  4247. package/slack-bot/node_modules/es-abstract/2024/ToBigUint64.js +23 -0
  4248. package/slack-bot/node_modules/es-abstract/2024/ToBoolean.js +5 -0
  4249. package/slack-bot/node_modules/es-abstract/2024/ToDateString.js +21 -0
  4250. package/slack-bot/node_modules/es-abstract/2024/ToIndex.js +20 -0
  4251. package/slack-bot/node_modules/es-abstract/2024/ToInt16.js +21 -0
  4252. package/slack-bot/node_modules/es-abstract/2024/ToInt32.js +23 -0
  4253. package/slack-bot/node_modules/es-abstract/2024/ToInt8.js +19 -0
  4254. package/slack-bot/node_modules/es-abstract/2024/ToIntegerOrInfinity.js +16 -0
  4255. package/slack-bot/node_modules/es-abstract/2024/ToLength.js +14 -0
  4256. package/slack-bot/node_modules/es-abstract/2024/ToNumber.js +26 -0
  4257. package/slack-bot/node_modules/es-abstract/2024/ToNumeric.js +20 -0
  4258. package/slack-bot/node_modules/es-abstract/2024/ToObject.js +5 -0
  4259. package/slack-bot/node_modules/es-abstract/2024/ToPrimitive.js +12 -0
  4260. package/slack-bot/node_modules/es-abstract/2024/ToPropertyDescriptor.js +50 -0
  4261. package/slack-bot/node_modules/es-abstract/2024/ToPropertyKey.js +15 -0
  4262. package/slack-bot/node_modules/es-abstract/2024/ToString.js +15 -0
  4263. package/slack-bot/node_modules/es-abstract/2024/ToUint16.js +21 -0
  4264. package/slack-bot/node_modules/es-abstract/2024/ToUint32.js +21 -0
  4265. package/slack-bot/node_modules/es-abstract/2024/ToUint8.js +19 -0
  4266. package/slack-bot/node_modules/es-abstract/2024/ToUint8Clamp.js +26 -0
  4267. package/slack-bot/node_modules/es-abstract/2024/ToZeroPaddedDecimalString.js +19 -0
  4268. package/slack-bot/node_modules/es-abstract/2024/TrimString.js +27 -0
  4269. package/slack-bot/node_modules/es-abstract/2024/Type.js +15 -0
  4270. package/slack-bot/node_modules/es-abstract/2024/TypedArrayByteLength.js +43 -0
  4271. package/slack-bot/node_modules/es-abstract/2024/TypedArrayCreateFromConstructor.js +52 -0
  4272. package/slack-bot/node_modules/es-abstract/2024/TypedArrayCreateSameType.js +35 -0
  4273. package/slack-bot/node_modules/es-abstract/2024/TypedArrayElementSize.js +23 -0
  4274. package/slack-bot/node_modules/es-abstract/2024/TypedArrayElementType.js +23 -0
  4275. package/slack-bot/node_modules/es-abstract/2024/TypedArrayGetElement.js +37 -0
  4276. package/slack-bot/node_modules/es-abstract/2024/TypedArrayLength.js +51 -0
  4277. package/slack-bot/node_modules/es-abstract/2024/TypedArraySetElement.js +42 -0
  4278. package/slack-bot/node_modules/es-abstract/2024/TypedArraySpeciesCreate.js +37 -0
  4279. package/slack-bot/node_modules/es-abstract/2024/UTF16EncodeCodePoint.js +25 -0
  4280. package/slack-bot/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js +19 -0
  4281. package/slack-bot/node_modules/es-abstract/2024/UnicodeEscape.js +25 -0
  4282. package/slack-bot/node_modules/es-abstract/2024/ValidateAndApplyPropertyDescriptor.js +171 -0
  4283. package/slack-bot/node_modules/es-abstract/2024/ValidateAtomicAccess.js +43 -0
  4284. package/slack-bot/node_modules/es-abstract/2024/ValidateAtomicAccessOnIntegerTypedArray.js +19 -0
  4285. package/slack-bot/node_modules/es-abstract/2024/ValidateIntegerTypedArray.js +31 -0
  4286. package/slack-bot/node_modules/es-abstract/2024/ValidateTypedArray.js +32 -0
  4287. package/slack-bot/node_modules/es-abstract/2024/WeakRefDeref.js +23 -0
  4288. package/slack-bot/node_modules/es-abstract/2024/WeekDay.js +10 -0
  4289. package/slack-bot/node_modules/es-abstract/2024/WordCharacters.js +47 -0
  4290. package/slack-bot/node_modules/es-abstract/2024/YearFromTime.js +16 -0
  4291. package/slack-bot/node_modules/es-abstract/2024/abs.js +9 -0
  4292. package/slack-bot/node_modules/es-abstract/2024/clamp.js +14 -0
  4293. package/slack-bot/node_modules/es-abstract/2024/floor.js +14 -0
  4294. package/slack-bot/node_modules/es-abstract/2024/max.js +5 -0
  4295. package/slack-bot/node_modules/es-abstract/2024/min.js +5 -0
  4296. package/slack-bot/node_modules/es-abstract/2024/modulo.js +9 -0
  4297. package/slack-bot/node_modules/es-abstract/2024/msFromTime.js +11 -0
  4298. package/slack-bot/node_modules/es-abstract/2024/substring.js +15 -0
  4299. package/slack-bot/node_modules/es-abstract/2024/tables/typed-array-objects.js +36 -0
  4300. package/slack-bot/node_modules/es-abstract/2024/truncate.js +15 -0
  4301. package/slack-bot/node_modules/es-abstract/2025/AddEntriesFromIterable.js +44 -0
  4302. package/slack-bot/node_modules/es-abstract/2025/AddToKeptObjects.js +18 -0
  4303. package/slack-bot/node_modules/es-abstract/2025/AddValueToKeyedGroup.js +45 -0
  4304. package/slack-bot/node_modules/es-abstract/2025/AdvanceStringIndex.js +30 -0
  4305. package/slack-bot/node_modules/es-abstract/2025/AllCharacters.js +29 -0
  4306. package/slack-bot/node_modules/es-abstract/2025/ApplyStringOrNumericBinaryOperator.js +77 -0
  4307. package/slack-bot/node_modules/es-abstract/2025/ArrayBufferByteLength.js +41 -0
  4308. package/slack-bot/node_modules/es-abstract/2025/ArrayBufferCopyAndDetach.js +101 -0
  4309. package/slack-bot/node_modules/es-abstract/2025/ArrayCreate.js +42 -0
  4310. package/slack-bot/node_modules/es-abstract/2025/ArraySetLength.js +77 -0
  4311. package/slack-bot/node_modules/es-abstract/2025/ArraySpeciesCreate.js +48 -0
  4312. package/slack-bot/node_modules/es-abstract/2025/AsyncFromSyncIteratorContinuation.js +45 -0
  4313. package/slack-bot/node_modules/es-abstract/2025/AsyncIteratorClose.js +70 -0
  4314. package/slack-bot/node_modules/es-abstract/2025/BigInt/add.js +14 -0
  4315. package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseAND.js +14 -0
  4316. package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseNOT.js +15 -0
  4317. package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseOR.js +14 -0
  4318. package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseXOR.js +14 -0
  4319. package/slack-bot/node_modules/es-abstract/2025/BigInt/divide.js +20 -0
  4320. package/slack-bot/node_modules/es-abstract/2025/BigInt/equal.js +13 -0
  4321. package/slack-bot/node_modules/es-abstract/2025/BigInt/exponentiate.js +29 -0
  4322. package/slack-bot/node_modules/es-abstract/2025/BigInt/index.js +39 -0
  4323. package/slack-bot/node_modules/es-abstract/2025/BigInt/leftShift.js +14 -0
  4324. package/slack-bot/node_modules/es-abstract/2025/BigInt/lessThan.js +14 -0
  4325. package/slack-bot/node_modules/es-abstract/2025/BigInt/multiply.js +14 -0
  4326. package/slack-bot/node_modules/es-abstract/2025/BigInt/remainder.js +28 -0
  4327. package/slack-bot/node_modules/es-abstract/2025/BigInt/signedRightShift.js +15 -0
  4328. package/slack-bot/node_modules/es-abstract/2025/BigInt/subtract.js +14 -0
  4329. package/slack-bot/node_modules/es-abstract/2025/BigInt/toString.js +26 -0
  4330. package/slack-bot/node_modules/es-abstract/2025/BigInt/unaryMinus.js +22 -0
  4331. package/slack-bot/node_modules/es-abstract/2025/BigInt/unsignedRightShift.js +13 -0
  4332. package/slack-bot/node_modules/es-abstract/2025/BigIntBitwiseOp.js +63 -0
  4333. package/slack-bot/node_modules/es-abstract/2025/BinaryAnd.js +12 -0
  4334. package/slack-bot/node_modules/es-abstract/2025/BinaryOr.js +12 -0
  4335. package/slack-bot/node_modules/es-abstract/2025/BinaryXor.js +12 -0
  4336. package/slack-bot/node_modules/es-abstract/2025/ByteListBitwiseOp.js +39 -0
  4337. package/slack-bot/node_modules/es-abstract/2025/ByteListEqual.js +31 -0
  4338. package/slack-bot/node_modules/es-abstract/2025/Call.js +20 -0
  4339. package/slack-bot/node_modules/es-abstract/2025/CanBeHeldWeakly.js +17 -0
  4340. package/slack-bot/node_modules/es-abstract/2025/CanonicalNumericIndexString.js +19 -0
  4341. package/slack-bot/node_modules/es-abstract/2025/Canonicalize.js +52 -0
  4342. package/slack-bot/node_modules/es-abstract/2025/CanonicalizeKeyedCollectionKey.js +7 -0
  4343. package/slack-bot/node_modules/es-abstract/2025/CharacterComplement.js +34 -0
  4344. package/slack-bot/node_modules/es-abstract/2025/CharacterRange.js +47 -0
  4345. package/slack-bot/node_modules/es-abstract/2025/ClearKeptObjects.js +12 -0
  4346. package/slack-bot/node_modules/es-abstract/2025/CloneArrayBuffer.js +46 -0
  4347. package/slack-bot/node_modules/es-abstract/2025/CodePointAt.js +55 -0
  4348. package/slack-bot/node_modules/es-abstract/2025/CodePointsToString.js +25 -0
  4349. package/slack-bot/node_modules/es-abstract/2025/CompareArrayElements.js +50 -0
  4350. package/slack-bot/node_modules/es-abstract/2025/CompareTypedArrayElements.js +60 -0
  4351. package/slack-bot/node_modules/es-abstract/2025/CompletePropertyDescriptor.js +43 -0
  4352. package/slack-bot/node_modules/es-abstract/2025/CompletionRecord.js +48 -0
  4353. package/slack-bot/node_modules/es-abstract/2025/CopyDataProperties.js +69 -0
  4354. package/slack-bot/node_modules/es-abstract/2025/CreateAsyncFromSyncIterator.js +137 -0
  4355. package/slack-bot/node_modules/es-abstract/2025/CreateDataProperty.js +25 -0
  4356. package/slack-bot/node_modules/es-abstract/2025/CreateDataPropertyOrThrow.js +23 -0
  4357. package/slack-bot/node_modules/es-abstract/2025/CreateHTML.js +27 -0
  4358. package/slack-bot/node_modules/es-abstract/2025/CreateIteratorFromClosure.js +51 -0
  4359. package/slack-bot/node_modules/es-abstract/2025/CreateIteratorResultObject.js +15 -0
  4360. package/slack-bot/node_modules/es-abstract/2025/CreateListFromArrayLike.js +40 -0
  4361. package/slack-bot/node_modules/es-abstract/2025/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
  4362. package/slack-bot/node_modules/es-abstract/2025/CreateRegExpStringIterator.js +101 -0
  4363. package/slack-bot/node_modules/es-abstract/2025/DateFromTime.js +52 -0
  4364. package/slack-bot/node_modules/es-abstract/2025/DateString.js +27 -0
  4365. package/slack-bot/node_modules/es-abstract/2025/Day.js +11 -0
  4366. package/slack-bot/node_modules/es-abstract/2025/DayFromYear.js +10 -0
  4367. package/slack-bot/node_modules/es-abstract/2025/DayWithinYear.js +11 -0
  4368. package/slack-bot/node_modules/es-abstract/2025/DaysInYear.js +18 -0
  4369. package/slack-bot/node_modules/es-abstract/2025/DefineMethodProperty.js +42 -0
  4370. package/slack-bot/node_modules/es-abstract/2025/DefinePropertyOrThrow.js +39 -0
  4371. package/slack-bot/node_modules/es-abstract/2025/DeletePropertyOrThrow.js +25 -0
  4372. package/slack-bot/node_modules/es-abstract/2025/DetachArrayBuffer.js +46 -0
  4373. package/slack-bot/node_modules/es-abstract/2025/EncodeForRegExpEscape.js +74 -0
  4374. package/slack-bot/node_modules/es-abstract/2025/EnumerableOwnProperties.js +36 -0
  4375. package/slack-bot/node_modules/es-abstract/2025/FindViaPredicate.js +43 -0
  4376. package/slack-bot/node_modules/es-abstract/2025/FlattenIntoArray.js +55 -0
  4377. package/slack-bot/node_modules/es-abstract/2025/FromPropertyDescriptor.js +16 -0
  4378. package/slack-bot/node_modules/es-abstract/2025/GeneratorResume.js +29 -0
  4379. package/slack-bot/node_modules/es-abstract/2025/GeneratorResumeAbrupt.js +55 -0
  4380. package/slack-bot/node_modules/es-abstract/2025/GeneratorStart.js +46 -0
  4381. package/slack-bot/node_modules/es-abstract/2025/GeneratorValidate.js +24 -0
  4382. package/slack-bot/node_modules/es-abstract/2025/Get.js +24 -0
  4383. package/slack-bot/node_modules/es-abstract/2025/GetArrayBufferMaxByteLengthOption.js +22 -0
  4384. package/slack-bot/node_modules/es-abstract/2025/GetGlobalObject.js +9 -0
  4385. package/slack-bot/node_modules/es-abstract/2025/GetIterator.js +53 -0
  4386. package/slack-bot/node_modules/es-abstract/2025/GetIteratorDirect.js +24 -0
  4387. package/slack-bot/node_modules/es-abstract/2025/GetIteratorFlattenable.js +48 -0
  4388. package/slack-bot/node_modules/es-abstract/2025/GetIteratorFromMethod.js +28 -0
  4389. package/slack-bot/node_modules/es-abstract/2025/GetMatchIndexPair.js +24 -0
  4390. package/slack-bot/node_modules/es-abstract/2025/GetMatchString.js +26 -0
  4391. package/slack-bot/node_modules/es-abstract/2025/GetMethod.js +34 -0
  4392. package/slack-bot/node_modules/es-abstract/2025/GetNamedTimeZoneEpochNanoseconds.js +72 -0
  4393. package/slack-bot/node_modules/es-abstract/2025/GetOwnPropertyKeys.js +30 -0
  4394. package/slack-bot/node_modules/es-abstract/2025/GetPromiseResolve.js +20 -0
  4395. package/slack-bot/node_modules/es-abstract/2025/GetPrototypeFromConstructor.js +33 -0
  4396. package/slack-bot/node_modules/es-abstract/2025/GetSetRecord.js +64 -0
  4397. package/slack-bot/node_modules/es-abstract/2025/GetStringIndex.js +27 -0
  4398. package/slack-bot/node_modules/es-abstract/2025/GetSubstitution.js +148 -0
  4399. package/slack-bot/node_modules/es-abstract/2025/GetUTCEpochNanoseconds.js +68 -0
  4400. package/slack-bot/node_modules/es-abstract/2025/GetV.js +23 -0
  4401. package/slack-bot/node_modules/es-abstract/2025/GetValueFromBuffer.js +95 -0
  4402. package/slack-bot/node_modules/es-abstract/2025/GetViewByteLength.js +47 -0
  4403. package/slack-bot/node_modules/es-abstract/2025/GroupBy.js +75 -0
  4404. package/slack-bot/node_modules/es-abstract/2025/HasEitherUnicodeFlag.js +18 -0
  4405. package/slack-bot/node_modules/es-abstract/2025/HasOwnProperty.js +20 -0
  4406. package/slack-bot/node_modules/es-abstract/2025/HasProperty.js +18 -0
  4407. package/slack-bot/node_modules/es-abstract/2025/HourFromTime.js +14 -0
  4408. package/slack-bot/node_modules/es-abstract/2025/IfAbruptCloseIterator.js +19 -0
  4409. package/slack-bot/node_modules/es-abstract/2025/InLeapYear.js +19 -0
  4410. package/slack-bot/node_modules/es-abstract/2025/InstallErrorCause.js +21 -0
  4411. package/slack-bot/node_modules/es-abstract/2025/InstanceofOperator.js +30 -0
  4412. package/slack-bot/node_modules/es-abstract/2025/InternalizeJSONProperty.js +68 -0
  4413. package/slack-bot/node_modules/es-abstract/2025/Invoke.js +22 -0
  4414. package/slack-bot/node_modules/es-abstract/2025/IsAccessorDescriptor.js +25 -0
  4415. package/slack-bot/node_modules/es-abstract/2025/IsArray.js +4 -0
  4416. package/slack-bot/node_modules/es-abstract/2025/IsArrayBufferViewOutOfBounds.js +30 -0
  4417. package/slack-bot/node_modules/es-abstract/2025/IsBigIntElementType.js +7 -0
  4418. package/slack-bot/node_modules/es-abstract/2025/IsCallable.js +5 -0
  4419. package/slack-bot/node_modules/es-abstract/2025/IsCompatiblePropertyDescriptor.js +9 -0
  4420. package/slack-bot/node_modules/es-abstract/2025/IsConcatSpreadable.js +26 -0
  4421. package/slack-bot/node_modules/es-abstract/2025/IsConstructor.js +40 -0
  4422. package/slack-bot/node_modules/es-abstract/2025/IsDataDescriptor.js +25 -0
  4423. package/slack-bot/node_modules/es-abstract/2025/IsDetachedBuffer.js +28 -0
  4424. package/slack-bot/node_modules/es-abstract/2025/IsExtensible.js +18 -0
  4425. package/slack-bot/node_modules/es-abstract/2025/IsFixedLengthArrayBuffer.js +29 -0
  4426. package/slack-bot/node_modules/es-abstract/2025/IsGenericDescriptor.js +26 -0
  4427. package/slack-bot/node_modules/es-abstract/2025/IsLessThan.js +97 -0
  4428. package/slack-bot/node_modules/es-abstract/2025/IsLooselyEqual.js +58 -0
  4429. package/slack-bot/node_modules/es-abstract/2025/IsNoTearConfiguration.js +16 -0
  4430. package/slack-bot/node_modules/es-abstract/2025/IsPromise.js +24 -0
  4431. package/slack-bot/node_modules/es-abstract/2025/IsRegExp.js +25 -0
  4432. package/slack-bot/node_modules/es-abstract/2025/IsSharedArrayBuffer.js +16 -0
  4433. package/slack-bot/node_modules/es-abstract/2025/IsStrictlyEqual.js +14 -0
  4434. package/slack-bot/node_modules/es-abstract/2025/IsStringWellFormedUnicode.js +23 -0
  4435. package/slack-bot/node_modules/es-abstract/2025/IsTimeZoneOffsetString.js +20 -0
  4436. package/slack-bot/node_modules/es-abstract/2025/IsTypedArrayFixedLength.js +34 -0
  4437. package/slack-bot/node_modules/es-abstract/2025/IsTypedArrayOutOfBounds.js +57 -0
  4438. package/slack-bot/node_modules/es-abstract/2025/IsUnclampedIntegerElementType.js +12 -0
  4439. package/slack-bot/node_modules/es-abstract/2025/IsUnsignedElementType.js +11 -0
  4440. package/slack-bot/node_modules/es-abstract/2025/IsValidIntegerIndex.js +43 -0
  4441. package/slack-bot/node_modules/es-abstract/2025/IsViewOutOfBounds.js +48 -0
  4442. package/slack-bot/node_modules/es-abstract/2025/IsWordChar.js +42 -0
  4443. package/slack-bot/node_modules/es-abstract/2025/IteratorClose.js +65 -0
  4444. package/slack-bot/node_modules/es-abstract/2025/IteratorComplete.js +16 -0
  4445. package/slack-bot/node_modules/es-abstract/2025/IteratorNext.js +36 -0
  4446. package/slack-bot/node_modules/es-abstract/2025/IteratorStep.js +35 -0
  4447. package/slack-bot/node_modules/es-abstract/2025/IteratorStepValue.js +32 -0
  4448. package/slack-bot/node_modules/es-abstract/2025/IteratorToList.js +27 -0
  4449. package/slack-bot/node_modules/es-abstract/2025/IteratorValue.js +16 -0
  4450. package/slack-bot/node_modules/es-abstract/2025/KeyForSymbol.js +16 -0
  4451. package/slack-bot/node_modules/es-abstract/2025/LengthOfArrayLike.js +18 -0
  4452. package/slack-bot/node_modules/es-abstract/2025/MakeDataViewWithBufferWitnessRecord.js +26 -0
  4453. package/slack-bot/node_modules/es-abstract/2025/MakeDate.js +14 -0
  4454. package/slack-bot/node_modules/es-abstract/2025/MakeDay.js +36 -0
  4455. package/slack-bot/node_modules/es-abstract/2025/MakeFullYear.js +26 -0
  4456. package/slack-bot/node_modules/es-abstract/2025/MakeMatchIndicesIndexPairArray.js +66 -0
  4457. package/slack-bot/node_modules/es-abstract/2025/MakeTime.js +23 -0
  4458. package/slack-bot/node_modules/es-abstract/2025/MakeTypedArrayWithBufferWitnessRecord.js +26 -0
  4459. package/slack-bot/node_modules/es-abstract/2025/MinFromTime.js +14 -0
  4460. package/slack-bot/node_modules/es-abstract/2025/MonthFromTime.js +51 -0
  4461. package/slack-bot/node_modules/es-abstract/2025/NewPromiseCapability.js +34 -0
  4462. package/slack-bot/node_modules/es-abstract/2025/NormalCompletion.js +9 -0
  4463. package/slack-bot/node_modules/es-abstract/2025/Number/add.js +31 -0
  4464. package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseAND.js +14 -0
  4465. package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseNOT.js +16 -0
  4466. package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseOR.js +14 -0
  4467. package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseXOR.js +14 -0
  4468. package/slack-bot/node_modules/es-abstract/2025/Number/divide.js +18 -0
  4469. package/slack-bot/node_modules/es-abstract/2025/Number/equal.js +18 -0
  4470. package/slack-bot/node_modules/es-abstract/2025/Number/exponentiate.js +74 -0
  4471. package/slack-bot/node_modules/es-abstract/2025/Number/index.js +43 -0
  4472. package/slack-bot/node_modules/es-abstract/2025/Number/leftShift.js +22 -0
  4473. package/slack-bot/node_modules/es-abstract/2025/Number/lessThan.js +22 -0
  4474. package/slack-bot/node_modules/es-abstract/2025/Number/multiply.js +29 -0
  4475. package/slack-bot/node_modules/es-abstract/2025/Number/remainder.js +38 -0
  4476. package/slack-bot/node_modules/es-abstract/2025/Number/sameValue.js +18 -0
  4477. package/slack-bot/node_modules/es-abstract/2025/Number/sameValueZero.js +20 -0
  4478. package/slack-bot/node_modules/es-abstract/2025/Number/signedRightShift.js +22 -0
  4479. package/slack-bot/node_modules/es-abstract/2025/Number/subtract.js +15 -0
  4480. package/slack-bot/node_modules/es-abstract/2025/Number/toString.js +20 -0
  4481. package/slack-bot/node_modules/es-abstract/2025/Number/unaryMinus.js +17 -0
  4482. package/slack-bot/node_modules/es-abstract/2025/Number/unsignedRightShift.js +22 -0
  4483. package/slack-bot/node_modules/es-abstract/2025/NumberBitwiseOp.js +26 -0
  4484. package/slack-bot/node_modules/es-abstract/2025/NumberToBigInt.js +25 -0
  4485. package/slack-bot/node_modules/es-abstract/2025/NumericToRawBytes.js +65 -0
  4486. package/slack-bot/node_modules/es-abstract/2025/ObjectDefineProperties.js +33 -0
  4487. package/slack-bot/node_modules/es-abstract/2025/OrdinaryCreateFromConstructor.js +20 -0
  4488. package/slack-bot/node_modules/es-abstract/2025/OrdinaryDefineOwnProperty.js +54 -0
  4489. package/slack-bot/node_modules/es-abstract/2025/OrdinaryGetOwnProperty.js +41 -0
  4490. package/slack-bot/node_modules/es-abstract/2025/OrdinaryGetPrototypeOf.js +18 -0
  4491. package/slack-bot/node_modules/es-abstract/2025/OrdinaryHasInstance.js +23 -0
  4492. package/slack-bot/node_modules/es-abstract/2025/OrdinaryHasProperty.js +18 -0
  4493. package/slack-bot/node_modules/es-abstract/2025/OrdinaryObjectCreate.js +56 -0
  4494. package/slack-bot/node_modules/es-abstract/2025/OrdinarySetPrototypeOf.js +50 -0
  4495. package/slack-bot/node_modules/es-abstract/2025/OrdinaryToPrimitive.js +36 -0
  4496. package/slack-bot/node_modules/es-abstract/2025/ParseHexOctet.js +40 -0
  4497. package/slack-bot/node_modules/es-abstract/2025/PromiseResolve.js +18 -0
  4498. package/slack-bot/node_modules/es-abstract/2025/QuoteJSONString.js +52 -0
  4499. package/slack-bot/node_modules/es-abstract/2025/RawBytesToNumeric.js +72 -0
  4500. package/slack-bot/node_modules/es-abstract/2025/RegExpCreate.js +21 -0
  4501. package/slack-bot/node_modules/es-abstract/2025/RegExpExec.js +29 -0
  4502. package/slack-bot/node_modules/es-abstract/2025/RegExpHasFlag.js +38 -0
  4503. package/slack-bot/node_modules/es-abstract/2025/RequireObjectCoercible.js +3 -0
  4504. package/slack-bot/node_modules/es-abstract/2025/ReturnCompletion.js +9 -0
  4505. package/slack-bot/node_modules/es-abstract/2025/SameType.js +16 -0
  4506. package/slack-bot/node_modules/es-abstract/2025/SameValue.js +13 -0
  4507. package/slack-bot/node_modules/es-abstract/2025/SameValueNonNumber.js +18 -0
  4508. package/slack-bot/node_modules/es-abstract/2025/SameValueZero.js +9 -0
  4509. package/slack-bot/node_modules/es-abstract/2025/SecFromTime.js +14 -0
  4510. package/slack-bot/node_modules/es-abstract/2025/Set.js +45 -0
  4511. package/slack-bot/node_modules/es-abstract/2025/SetDataHas.js +26 -0
  4512. package/slack-bot/node_modules/es-abstract/2025/SetDataIndex.js +32 -0
  4513. package/slack-bot/node_modules/es-abstract/2025/SetDataSize.js +30 -0
  4514. package/slack-bot/node_modules/es-abstract/2025/SetFunctionLength.js +28 -0
  4515. package/slack-bot/node_modules/es-abstract/2025/SetFunctionName.js +40 -0
  4516. package/slack-bot/node_modules/es-abstract/2025/SetIntegrityLevel.js +57 -0
  4517. package/slack-bot/node_modules/es-abstract/2025/SetTypedArrayFromArrayLike.js +64 -0
  4518. package/slack-bot/node_modules/es-abstract/2025/SetTypedArrayFromTypedArray.js +133 -0
  4519. package/slack-bot/node_modules/es-abstract/2025/SetValueInBuffer.js +92 -0
  4520. package/slack-bot/node_modules/es-abstract/2025/SetterThatIgnoresPrototypeProperties.js +38 -0
  4521. package/slack-bot/node_modules/es-abstract/2025/SortIndexedProperties.js +49 -0
  4522. package/slack-bot/node_modules/es-abstract/2025/SpeciesConstructor.js +32 -0
  4523. package/slack-bot/node_modules/es-abstract/2025/StringCreate.js +38 -0
  4524. package/slack-bot/node_modules/es-abstract/2025/StringGetOwnProperty.js +46 -0
  4525. package/slack-bot/node_modules/es-abstract/2025/StringIndexOf.js +36 -0
  4526. package/slack-bot/node_modules/es-abstract/2025/StringLastIndexOf.js +38 -0
  4527. package/slack-bot/node_modules/es-abstract/2025/StringPad.js +43 -0
  4528. package/slack-bot/node_modules/es-abstract/2025/StringPaddingBuiltinsImpl.js +27 -0
  4529. package/slack-bot/node_modules/es-abstract/2025/StringToBigInt.js +23 -0
  4530. package/slack-bot/node_modules/es-abstract/2025/StringToCodePoints.js +22 -0
  4531. package/slack-bot/node_modules/es-abstract/2025/StringToNumber.js +42 -0
  4532. package/slack-bot/node_modules/es-abstract/2025/SymbolDescriptiveString.js +16 -0
  4533. package/slack-bot/node_modules/es-abstract/2025/SystemTimeZoneIdentifier.js +18 -0
  4534. package/slack-bot/node_modules/es-abstract/2025/TestIntegrityLevel.js +40 -0
  4535. package/slack-bot/node_modules/es-abstract/2025/ThisBigIntValue.js +20 -0
  4536. package/slack-bot/node_modules/es-abstract/2025/ThisBooleanValue.js +13 -0
  4537. package/slack-bot/node_modules/es-abstract/2025/ThisNumberValue.js +15 -0
  4538. package/slack-bot/node_modules/es-abstract/2025/ThisStringValue.js +13 -0
  4539. package/slack-bot/node_modules/es-abstract/2025/ThisSymbolValue.js +20 -0
  4540. package/slack-bot/node_modules/es-abstract/2025/ThrowCompletion.js +9 -0
  4541. package/slack-bot/node_modules/es-abstract/2025/TimeClip.js +20 -0
  4542. package/slack-bot/node_modules/es-abstract/2025/TimeFromYear.js +11 -0
  4543. package/slack-bot/node_modules/es-abstract/2025/TimeString.js +26 -0
  4544. package/slack-bot/node_modules/es-abstract/2025/TimeWithinDay.js +12 -0
  4545. package/slack-bot/node_modules/es-abstract/2025/TimeZoneString.js +41 -0
  4546. package/slack-bot/node_modules/es-abstract/2025/ToBigInt.js +51 -0
  4547. package/slack-bot/node_modules/es-abstract/2025/ToBigInt64.js +25 -0
  4548. package/slack-bot/node_modules/es-abstract/2025/ToBigUint64.js +23 -0
  4549. package/slack-bot/node_modules/es-abstract/2025/ToBoolean.js +5 -0
  4550. package/slack-bot/node_modules/es-abstract/2025/ToDateString.js +21 -0
  4551. package/slack-bot/node_modules/es-abstract/2025/ToIndex.js +20 -0
  4552. package/slack-bot/node_modules/es-abstract/2025/ToInt16.js +21 -0
  4553. package/slack-bot/node_modules/es-abstract/2025/ToInt32.js +23 -0
  4554. package/slack-bot/node_modules/es-abstract/2025/ToInt8.js +19 -0
  4555. package/slack-bot/node_modules/es-abstract/2025/ToIntegerOrInfinity.js +16 -0
  4556. package/slack-bot/node_modules/es-abstract/2025/ToLength.js +14 -0
  4557. package/slack-bot/node_modules/es-abstract/2025/ToNumber.js +26 -0
  4558. package/slack-bot/node_modules/es-abstract/2025/ToNumeric.js +20 -0
  4559. package/slack-bot/node_modules/es-abstract/2025/ToObject.js +5 -0
  4560. package/slack-bot/node_modules/es-abstract/2025/ToPrimitive.js +12 -0
  4561. package/slack-bot/node_modules/es-abstract/2025/ToPropertyDescriptor.js +50 -0
  4562. package/slack-bot/node_modules/es-abstract/2025/ToPropertyKey.js +15 -0
  4563. package/slack-bot/node_modules/es-abstract/2025/ToString.js +15 -0
  4564. package/slack-bot/node_modules/es-abstract/2025/ToUint16.js +21 -0
  4565. package/slack-bot/node_modules/es-abstract/2025/ToUint32.js +21 -0
  4566. package/slack-bot/node_modules/es-abstract/2025/ToUint8.js +19 -0
  4567. package/slack-bot/node_modules/es-abstract/2025/ToUint8Clamp.js +26 -0
  4568. package/slack-bot/node_modules/es-abstract/2025/ToZeroPaddedDecimalString.js +19 -0
  4569. package/slack-bot/node_modules/es-abstract/2025/TrimString.js +27 -0
  4570. package/slack-bot/node_modules/es-abstract/2025/TypedArrayByteLength.js +43 -0
  4571. package/slack-bot/node_modules/es-abstract/2025/TypedArrayCreateFromConstructor.js +52 -0
  4572. package/slack-bot/node_modules/es-abstract/2025/TypedArrayCreateSameType.js +35 -0
  4573. package/slack-bot/node_modules/es-abstract/2025/TypedArrayElementSize.js +23 -0
  4574. package/slack-bot/node_modules/es-abstract/2025/TypedArrayElementType.js +23 -0
  4575. package/slack-bot/node_modules/es-abstract/2025/TypedArrayGetElement.js +37 -0
  4576. package/slack-bot/node_modules/es-abstract/2025/TypedArrayLength.js +51 -0
  4577. package/slack-bot/node_modules/es-abstract/2025/TypedArraySetElement.js +42 -0
  4578. package/slack-bot/node_modules/es-abstract/2025/TypedArraySpeciesCreate.js +37 -0
  4579. package/slack-bot/node_modules/es-abstract/2025/UTF16EncodeCodePoint.js +25 -0
  4580. package/slack-bot/node_modules/es-abstract/2025/UTF16SurrogatePairToCodePoint.js +19 -0
  4581. package/slack-bot/node_modules/es-abstract/2025/UnicodeEscape.js +25 -0
  4582. package/slack-bot/node_modules/es-abstract/2025/UpdateModifiers.js +77 -0
  4583. package/slack-bot/node_modules/es-abstract/2025/ValidateAndApplyPropertyDescriptor.js +171 -0
  4584. package/slack-bot/node_modules/es-abstract/2025/ValidateAtomicAccess.js +43 -0
  4585. package/slack-bot/node_modules/es-abstract/2025/ValidateAtomicAccessOnIntegerTypedArray.js +19 -0
  4586. package/slack-bot/node_modules/es-abstract/2025/ValidateIntegerTypedArray.js +31 -0
  4587. package/slack-bot/node_modules/es-abstract/2025/ValidateTypedArray.js +32 -0
  4588. package/slack-bot/node_modules/es-abstract/2025/WeakRefDeref.js +23 -0
  4589. package/slack-bot/node_modules/es-abstract/2025/WeekDay.js +10 -0
  4590. package/slack-bot/node_modules/es-abstract/2025/WordCharacters.js +47 -0
  4591. package/slack-bot/node_modules/es-abstract/2025/YearFromTime.js +16 -0
  4592. package/slack-bot/node_modules/es-abstract/2025/abs.js +9 -0
  4593. package/slack-bot/node_modules/es-abstract/2025/clamp.js +14 -0
  4594. package/slack-bot/node_modules/es-abstract/2025/floor.js +14 -0
  4595. package/slack-bot/node_modules/es-abstract/2025/max.js +5 -0
  4596. package/slack-bot/node_modules/es-abstract/2025/min.js +5 -0
  4597. package/slack-bot/node_modules/es-abstract/2025/modulo.js +9 -0
  4598. package/slack-bot/node_modules/es-abstract/2025/msFromTime.js +11 -0
  4599. package/slack-bot/node_modules/es-abstract/2025/substring.js +15 -0
  4600. package/slack-bot/node_modules/es-abstract/2025/tables/typed-array-objects.js +38 -0
  4601. package/slack-bot/node_modules/es-abstract/2025/truncate.js +15 -0
  4602. package/slack-bot/node_modules/es-abstract/5/AbstractEqualityComparison.js +38 -0
  4603. package/slack-bot/node_modules/es-abstract/5/AbstractRelationalComparison.js +62 -0
  4604. package/slack-bot/node_modules/es-abstract/5/Canonicalize.js +38 -0
  4605. package/slack-bot/node_modules/es-abstract/5/CheckObjectCoercible.js +9 -0
  4606. package/slack-bot/node_modules/es-abstract/5/DateFromTime.js +52 -0
  4607. package/slack-bot/node_modules/es-abstract/5/Day.js +11 -0
  4608. package/slack-bot/node_modules/es-abstract/5/DayFromYear.js +10 -0
  4609. package/slack-bot/node_modules/es-abstract/5/DayWithinYear.js +11 -0
  4610. package/slack-bot/node_modules/es-abstract/5/DaysInYear.js +18 -0
  4611. package/slack-bot/node_modules/es-abstract/5/FromPropertyDescriptor.js +38 -0
  4612. package/slack-bot/node_modules/es-abstract/5/HourFromTime.js +14 -0
  4613. package/slack-bot/node_modules/es-abstract/5/InLeapYear.js +19 -0
  4614. package/slack-bot/node_modules/es-abstract/5/IsAccessorDescriptor.js +25 -0
  4615. package/slack-bot/node_modules/es-abstract/5/IsCallable.js +5 -0
  4616. package/slack-bot/node_modules/es-abstract/5/IsDataDescriptor.js +25 -0
  4617. package/slack-bot/node_modules/es-abstract/5/IsGenericDescriptor.js +26 -0
  4618. package/slack-bot/node_modules/es-abstract/5/IsPropertyDescriptor.js +11 -0
  4619. package/slack-bot/node_modules/es-abstract/5/MakeDate.js +14 -0
  4620. package/slack-bot/node_modules/es-abstract/5/MakeDay.js +33 -0
  4621. package/slack-bot/node_modules/es-abstract/5/MakeTime.js +24 -0
  4622. package/slack-bot/node_modules/es-abstract/5/MinFromTime.js +14 -0
  4623. package/slack-bot/node_modules/es-abstract/5/MonthFromTime.js +51 -0
  4624. package/slack-bot/node_modules/es-abstract/5/SameValue.js +13 -0
  4625. package/slack-bot/node_modules/es-abstract/5/SecFromTime.js +14 -0
  4626. package/slack-bot/node_modules/es-abstract/5/StrictEqualityComparison.js +15 -0
  4627. package/slack-bot/node_modules/es-abstract/5/TimeClip.js +20 -0
  4628. package/slack-bot/node_modules/es-abstract/5/TimeFromYear.js +11 -0
  4629. package/slack-bot/node_modules/es-abstract/5/TimeWithinDay.js +12 -0
  4630. package/slack-bot/node_modules/es-abstract/5/ToBoolean.js +5 -0
  4631. package/slack-bot/node_modules/es-abstract/5/ToInt32.js +9 -0
  4632. package/slack-bot/node_modules/es-abstract/5/ToInteger.js +18 -0
  4633. package/slack-bot/node_modules/es-abstract/5/ToNumber.js +34 -0
  4634. package/slack-bot/node_modules/es-abstract/5/ToObject.js +5 -0
  4635. package/slack-bot/node_modules/es-abstract/5/ToPrimitive.js +5 -0
  4636. package/slack-bot/node_modules/es-abstract/5/ToPropertyDescriptor.js +50 -0
  4637. package/slack-bot/node_modules/es-abstract/5/ToString.js +12 -0
  4638. package/slack-bot/node_modules/es-abstract/5/ToUint16.js +19 -0
  4639. package/slack-bot/node_modules/es-abstract/5/ToUint32.js +9 -0
  4640. package/slack-bot/node_modules/es-abstract/5/Type.js +26 -0
  4641. package/slack-bot/node_modules/es-abstract/5/WeekDay.js +10 -0
  4642. package/slack-bot/node_modules/es-abstract/5/YearFromTime.js +16 -0
  4643. package/slack-bot/node_modules/es-abstract/5/abs.js +9 -0
  4644. package/slack-bot/node_modules/es-abstract/5/floor.js +11 -0
  4645. package/slack-bot/node_modules/es-abstract/5/modulo.js +9 -0
  4646. package/slack-bot/node_modules/es-abstract/5/msFromTime.js +11 -0
  4647. package/slack-bot/node_modules/es-abstract/CHANGELOG.md +962 -0
  4648. package/slack-bot/node_modules/es-abstract/GetIntrinsic.js +5 -0
  4649. package/slack-bot/node_modules/es-abstract/LICENSE +21 -0
  4650. package/slack-bot/node_modules/es-abstract/README.md +43 -0
  4651. package/slack-bot/node_modules/es-abstract/es2015.js +142 -0
  4652. package/slack-bot/node_modules/es-abstract/es2016.js +149 -0
  4653. package/slack-bot/node_modules/es-abstract/es2017.js +157 -0
  4654. package/slack-bot/node_modules/es-abstract/es2018.js +169 -0
  4655. package/slack-bot/node_modules/es-abstract/es2019.js +173 -0
  4656. package/slack-bot/node_modules/es-abstract/es2020.js +197 -0
  4657. package/slack-bot/node_modules/es-abstract/es2021.js +211 -0
  4658. package/slack-bot/node_modules/es-abstract/es2022.js +224 -0
  4659. package/slack-bot/node_modules/es-abstract/es2023.js +236 -0
  4660. package/slack-bot/node_modules/es-abstract/es2024.js +255 -0
  4661. package/slack-bot/node_modules/es-abstract/es2025.js +272 -0
  4662. package/slack-bot/node_modules/es-abstract/es5.js +52 -0
  4663. package/slack-bot/node_modules/es-abstract/es6.js +3 -0
  4664. package/slack-bot/node_modules/es-abstract/es7.js +3 -0
  4665. package/slack-bot/node_modules/es-abstract/eslint.config.mjs +129 -0
  4666. package/slack-bot/node_modules/es-abstract/helpers/CharSet.js +130 -0
  4667. package/slack-bot/node_modules/es-abstract/helpers/DefineOwnProperty.js +53 -0
  4668. package/slack-bot/node_modules/es-abstract/helpers/IsArray.js +12 -0
  4669. package/slack-bot/node_modules/es-abstract/helpers/OwnPropertyKeys.js +4 -0
  4670. package/slack-bot/node_modules/es-abstract/helpers/assertRecord.js +32 -0
  4671. package/slack-bot/node_modules/es-abstract/helpers/assign.js +22 -0
  4672. package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat16.js +47 -0
  4673. package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat32.js +36 -0
  4674. package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat64.js +42 -0
  4675. package/slack-bot/node_modules/es-abstract/helpers/bytesAsInteger.js +32 -0
  4676. package/slack-bot/node_modules/es-abstract/helpers/callBind.js +5 -0
  4677. package/slack-bot/node_modules/es-abstract/helpers/callBound.js +5 -0
  4678. package/slack-bot/node_modules/es-abstract/helpers/caseFolding.json +1430 -0
  4679. package/slack-bot/node_modules/es-abstract/helpers/defaultEndianness.js +21 -0
  4680. package/slack-bot/node_modules/es-abstract/helpers/every.js +10 -0
  4681. package/slack-bot/node_modules/es-abstract/helpers/forEach.js +7 -0
  4682. package/slack-bot/node_modules/es-abstract/helpers/fractionToBinaryString.js +33 -0
  4683. package/slack-bot/node_modules/es-abstract/helpers/fromPropertyDescriptor.js +27 -0
  4684. package/slack-bot/node_modules/es-abstract/helpers/getInferredName.js +4 -0
  4685. package/slack-bot/node_modules/es-abstract/helpers/getIteratorMethod.js +50 -0
  4686. package/slack-bot/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js +5 -0
  4687. package/slack-bot/node_modules/es-abstract/helpers/getProto.js +4 -0
  4688. package/slack-bot/node_modules/es-abstract/helpers/getSymbolDescription.js +4 -0
  4689. package/slack-bot/node_modules/es-abstract/helpers/intToBinaryString.js +21 -0
  4690. package/slack-bot/node_modules/es-abstract/helpers/integerToNBytes.js +28 -0
  4691. package/slack-bot/node_modules/es-abstract/helpers/isAbstractClosure.js +9 -0
  4692. package/slack-bot/node_modules/es-abstract/helpers/isByteValue.js +5 -0
  4693. package/slack-bot/node_modules/es-abstract/helpers/isCodePoint.js +5 -0
  4694. package/slack-bot/node_modules/es-abstract/helpers/isFinite.js +4 -0
  4695. package/slack-bot/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js +10 -0
  4696. package/slack-bot/node_modules/es-abstract/helpers/isInteger.js +4 -0
  4697. package/slack-bot/node_modules/es-abstract/helpers/isLeadingSurrogate.js +5 -0
  4698. package/slack-bot/node_modules/es-abstract/helpers/isLineTerminator.js +7 -0
  4699. package/slack-bot/node_modules/es-abstract/helpers/isNaN.js +5 -0
  4700. package/slack-bot/node_modules/es-abstract/helpers/isNegativeZero.js +6 -0
  4701. package/slack-bot/node_modules/es-abstract/helpers/isObject.js +5 -0
  4702. package/slack-bot/node_modules/es-abstract/helpers/isPrefixOf.js +13 -0
  4703. package/slack-bot/node_modules/es-abstract/helpers/isPrimitive.js +5 -0
  4704. package/slack-bot/node_modules/es-abstract/helpers/isPropertyKey.js +5 -0
  4705. package/slack-bot/node_modules/es-abstract/helpers/isSamePropertyDescriptor.js +20 -0
  4706. package/slack-bot/node_modules/es-abstract/helpers/isSameType.js +16 -0
  4707. package/slack-bot/node_modules/es-abstract/helpers/isStringOrHole.js +9 -0
  4708. package/slack-bot/node_modules/es-abstract/helpers/isStringOrUndefined.js +5 -0
  4709. package/slack-bot/node_modules/es-abstract/helpers/isTrailingSurrogate.js +5 -0
  4710. package/slack-bot/node_modules/es-abstract/helpers/maxSafeInteger.js +4 -0
  4711. package/slack-bot/node_modules/es-abstract/helpers/maxValue.js +3 -0
  4712. package/slack-bot/node_modules/es-abstract/helpers/mod.js +4 -0
  4713. package/slack-bot/node_modules/es-abstract/helpers/modBigInt.js +6 -0
  4714. package/slack-bot/node_modules/es-abstract/helpers/padTimeComponent.js +9 -0
  4715. package/slack-bot/node_modules/es-abstract/helpers/records/async-generator-request-record.js +13 -0
  4716. package/slack-bot/node_modules/es-abstract/helpers/records/data-view-with-buffer-witness-record.js +18 -0
  4717. package/slack-bot/node_modules/es-abstract/helpers/records/iterator-record-2023.js +7 -0
  4718. package/slack-bot/node_modules/es-abstract/helpers/records/iterator-record.js +12 -0
  4719. package/slack-bot/node_modules/es-abstract/helpers/records/match-record.js +18 -0
  4720. package/slack-bot/node_modules/es-abstract/helpers/records/promise-capability-record.js +16 -0
  4721. package/slack-bot/node_modules/es-abstract/helpers/records/property-descriptor.js +36 -0
  4722. package/slack-bot/node_modules/es-abstract/helpers/records/regexp-record.js +23 -0
  4723. package/slack-bot/node_modules/es-abstract/helpers/records/set-record.js +21 -0
  4724. package/slack-bot/node_modules/es-abstract/helpers/records/typed-array-with-buffer-witness-record.js +18 -0
  4725. package/slack-bot/node_modules/es-abstract/helpers/reduce.js +9 -0
  4726. package/slack-bot/node_modules/es-abstract/helpers/regexTester.js +5 -0
  4727. package/slack-bot/node_modules/es-abstract/helpers/setProto.js +4 -0
  4728. package/slack-bot/node_modules/es-abstract/helpers/sign.js +4 -0
  4729. package/slack-bot/node_modules/es-abstract/helpers/some.js +10 -0
  4730. package/slack-bot/node_modules/es-abstract/helpers/timeConstants.js +19 -0
  4731. package/slack-bot/node_modules/es-abstract/helpers/timeValue.js +7 -0
  4732. package/slack-bot/node_modules/es-abstract/helpers/typedArrayConstructors.js +23 -0
  4733. package/slack-bot/node_modules/es-abstract/helpers/valueToFloat16Bytes.js +73 -0
  4734. package/slack-bot/node_modules/es-abstract/helpers/valueToFloat32Bytes.js +67 -0
  4735. package/slack-bot/node_modules/es-abstract/helpers/valueToFloat64Bytes.js +83 -0
  4736. package/slack-bot/node_modules/es-abstract/index.js +38 -0
  4737. package/slack-bot/node_modules/es-abstract/operations/2015.js +744 -0
  4738. package/slack-bot/node_modules/es-abstract/operations/2016.js +813 -0
  4739. package/slack-bot/node_modules/es-abstract/operations/2017.js +954 -0
  4740. package/slack-bot/node_modules/es-abstract/operations/2018.js +1033 -0
  4741. package/slack-bot/node_modules/es-abstract/operations/2019.js +1048 -0
  4742. package/slack-bot/node_modules/es-abstract/operations/2020.js +1228 -0
  4743. package/slack-bot/node_modules/es-abstract/operations/2021.js +1282 -0
  4744. package/slack-bot/node_modules/es-abstract/operations/2022.js +1372 -0
  4745. package/slack-bot/node_modules/es-abstract/operations/2023.js +1441 -0
  4746. package/slack-bot/node_modules/es-abstract/operations/2024.js +1537 -0
  4747. package/slack-bot/node_modules/es-abstract/operations/2025.js +1603 -0
  4748. package/slack-bot/node_modules/es-abstract/operations/es5.js +50 -0
  4749. package/slack-bot/node_modules/es-abstract/package.json +188 -0
  4750. package/slack-bot/node_modules/es-array-method-boxes-properly/.eslintrc +10 -0
  4751. package/slack-bot/node_modules/es-array-method-boxes-properly/.github/FUNDING.yml +12 -0
  4752. package/slack-bot/node_modules/es-array-method-boxes-properly/LICENSE +21 -0
  4753. package/slack-bot/node_modules/es-array-method-boxes-properly/README.md +3 -0
  4754. package/slack-bot/node_modules/es-array-method-boxes-properly/index.js +30 -0
  4755. package/slack-bot/node_modules/es-array-method-boxes-properly/package.json +30 -0
  4756. package/slack-bot/node_modules/es-array-method-boxes-properly/test/index.js +11 -0
  4757. package/slack-bot/node_modules/es-define-property/.eslintrc +13 -0
  4758. package/slack-bot/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  4759. package/slack-bot/node_modules/es-define-property/.nycrc +9 -0
  4760. package/slack-bot/node_modules/es-define-property/CHANGELOG.md +29 -0
  4761. package/slack-bot/node_modules/es-define-property/LICENSE +21 -0
  4762. package/slack-bot/node_modules/es-define-property/README.md +49 -0
  4763. package/slack-bot/node_modules/es-define-property/index.d.ts +3 -0
  4764. package/slack-bot/node_modules/es-define-property/index.js +14 -0
  4765. package/slack-bot/node_modules/es-define-property/package.json +81 -0
  4766. package/slack-bot/node_modules/es-define-property/test/index.js +56 -0
  4767. package/slack-bot/node_modules/es-define-property/tsconfig.json +10 -0
  4768. package/slack-bot/node_modules/es-errors/.eslintrc +5 -0
  4769. package/slack-bot/node_modules/es-errors/.github/FUNDING.yml +12 -0
  4770. package/slack-bot/node_modules/es-errors/CHANGELOG.md +40 -0
  4771. package/slack-bot/node_modules/es-errors/LICENSE +21 -0
  4772. package/slack-bot/node_modules/es-errors/README.md +55 -0
  4773. package/slack-bot/node_modules/es-errors/eval.d.ts +3 -0
  4774. package/slack-bot/node_modules/es-errors/eval.js +4 -0
  4775. package/slack-bot/node_modules/es-errors/index.d.ts +3 -0
  4776. package/slack-bot/node_modules/es-errors/index.js +4 -0
  4777. package/slack-bot/node_modules/es-errors/package.json +80 -0
  4778. package/slack-bot/node_modules/es-errors/range.d.ts +3 -0
  4779. package/slack-bot/node_modules/es-errors/range.js +4 -0
  4780. package/slack-bot/node_modules/es-errors/ref.d.ts +3 -0
  4781. package/slack-bot/node_modules/es-errors/ref.js +4 -0
  4782. package/slack-bot/node_modules/es-errors/syntax.d.ts +3 -0
  4783. package/slack-bot/node_modules/es-errors/syntax.js +4 -0
  4784. package/slack-bot/node_modules/es-errors/test/index.js +19 -0
  4785. package/slack-bot/node_modules/es-errors/tsconfig.json +49 -0
  4786. package/slack-bot/node_modules/es-errors/type.d.ts +3 -0
  4787. package/slack-bot/node_modules/es-errors/type.js +4 -0
  4788. package/slack-bot/node_modules/es-errors/uri.d.ts +3 -0
  4789. package/slack-bot/node_modules/es-errors/uri.js +4 -0
  4790. package/slack-bot/node_modules/es-get-iterator/.eslintrc +32 -0
  4791. package/slack-bot/node_modules/es-get-iterator/.github/FUNDING.yml +12 -0
  4792. package/slack-bot/node_modules/es-get-iterator/.nycrc +9 -0
  4793. package/slack-bot/node_modules/es-get-iterator/CHANGELOG.md +105 -0
  4794. package/slack-bot/node_modules/es-get-iterator/LICENSE +21 -0
  4795. package/slack-bot/node_modules/es-get-iterator/README.md +89 -0
  4796. package/slack-bot/node_modules/es-get-iterator/index.js +189 -0
  4797. package/slack-bot/node_modules/es-get-iterator/node.js +12 -0
  4798. package/slack-bot/node_modules/es-get-iterator/node.mjs +11 -0
  4799. package/slack-bot/node_modules/es-get-iterator/package.json +102 -0
  4800. package/slack-bot/node_modules/es-get-iterator/test/core-js.js +5 -0
  4801. package/slack-bot/node_modules/es-get-iterator/test/es6-shim.js +11 -0
  4802. package/slack-bot/node_modules/es-get-iterator/test/index.js +178 -0
  4803. package/slack-bot/node_modules/es-get-iterator/test/node.js +3 -0
  4804. package/slack-bot/node_modules/es-get-iterator/test/node.mjs +10 -0
  4805. package/slack-bot/node_modules/es-object-atoms/.eslintrc +16 -0
  4806. package/slack-bot/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  4807. package/slack-bot/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  4808. package/slack-bot/node_modules/es-object-atoms/LICENSE +21 -0
  4809. package/slack-bot/node_modules/es-object-atoms/README.md +63 -0
  4810. package/slack-bot/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  4811. package/slack-bot/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  4812. package/slack-bot/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  4813. package/slack-bot/node_modules/es-object-atoms/ToObject.js +10 -0
  4814. package/slack-bot/node_modules/es-object-atoms/index.d.ts +3 -0
  4815. package/slack-bot/node_modules/es-object-atoms/index.js +4 -0
  4816. package/slack-bot/node_modules/es-object-atoms/isObject.d.ts +3 -0
  4817. package/slack-bot/node_modules/es-object-atoms/isObject.js +6 -0
  4818. package/slack-bot/node_modules/es-object-atoms/package.json +80 -0
  4819. package/slack-bot/node_modules/es-object-atoms/test/index.js +38 -0
  4820. package/slack-bot/node_modules/es-object-atoms/tsconfig.json +6 -0
  4821. package/slack-bot/node_modules/es-set-tostringtag/.eslintrc +13 -0
  4822. package/slack-bot/node_modules/es-set-tostringtag/.nycrc +9 -0
  4823. package/slack-bot/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
  4824. package/slack-bot/node_modules/es-set-tostringtag/LICENSE +21 -0
  4825. package/slack-bot/node_modules/es-set-tostringtag/README.md +53 -0
  4826. package/slack-bot/node_modules/es-set-tostringtag/index.d.ts +10 -0
  4827. package/slack-bot/node_modules/es-set-tostringtag/index.js +35 -0
  4828. package/slack-bot/node_modules/es-set-tostringtag/package.json +78 -0
  4829. package/slack-bot/node_modules/es-set-tostringtag/test/index.js +85 -0
  4830. package/slack-bot/node_modules/es-set-tostringtag/tsconfig.json +9 -0
  4831. package/slack-bot/node_modules/es-to-primitive/.editorconfig +20 -0
  4832. package/slack-bot/node_modules/es-to-primitive/.eslintignore +1 -0
  4833. package/slack-bot/node_modules/es-to-primitive/.eslintrc +20 -0
  4834. package/slack-bot/node_modules/es-to-primitive/.github/FUNDING.yml +12 -0
  4835. package/slack-bot/node_modules/es-to-primitive/.nycrc +9 -0
  4836. package/slack-bot/node_modules/es-to-primitive/CHANGELOG.md +101 -0
  4837. package/slack-bot/node_modules/es-to-primitive/LICENSE +22 -0
  4838. package/slack-bot/node_modules/es-to-primitive/README.md +52 -0
  4839. package/slack-bot/node_modules/es-to-primitive/es2015.d.ts +5 -0
  4840. package/slack-bot/node_modules/es-to-primitive/es2015.js +82 -0
  4841. package/slack-bot/node_modules/es-to-primitive/es5.d.ts +3 -0
  4842. package/slack-bot/node_modules/es-to-primitive/es5.js +52 -0
  4843. package/slack-bot/node_modules/es-to-primitive/es6.d.ts +3 -0
  4844. package/slack-bot/node_modules/es-to-primitive/es6.js +4 -0
  4845. package/slack-bot/node_modules/es-to-primitive/helpers/isPrimitive.js +6 -0
  4846. package/slack-bot/node_modules/es-to-primitive/index.d.ts +11 -0
  4847. package/slack-bot/node_modules/es-to-primitive/index.js +21 -0
  4848. package/slack-bot/node_modules/es-to-primitive/package.json +97 -0
  4849. package/slack-bot/node_modules/es-to-primitive/test/es2015.js +140 -0
  4850. package/slack-bot/node_modules/es-to-primitive/test/es5.js +98 -0
  4851. package/slack-bot/node_modules/es-to-primitive/test/es6.js +140 -0
  4852. package/slack-bot/node_modules/es-to-primitive/test/index.js +20 -0
  4853. package/slack-bot/node_modules/es-to-primitive/tsconfig.json +9 -0
  4854. package/slack-bot/node_modules/escape-html/LICENSE +24 -0
  4855. package/slack-bot/node_modules/escape-html/Readme.md +43 -0
  4856. package/slack-bot/node_modules/escape-html/index.js +78 -0
  4857. package/slack-bot/node_modules/escape-html/package.json +24 -0
  4858. package/slack-bot/node_modules/etag/HISTORY.md +83 -0
  4859. package/slack-bot/node_modules/etag/LICENSE +22 -0
  4860. package/slack-bot/node_modules/etag/README.md +159 -0
  4861. package/slack-bot/node_modules/etag/index.js +131 -0
  4862. package/slack-bot/node_modules/etag/package.json +47 -0
  4863. package/slack-bot/node_modules/eventemitter3/LICENSE +21 -0
  4864. package/slack-bot/node_modules/eventemitter3/README.md +85 -0
  4865. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.js +355 -0
  4866. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.min.js +1 -0
  4867. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.min.js.map +1 -0
  4868. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.js +363 -0
  4869. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.min.js +1 -0
  4870. package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.min.js.map +1 -0
  4871. package/slack-bot/node_modules/eventemitter3/index.d.ts +135 -0
  4872. package/slack-bot/node_modules/eventemitter3/index.js +336 -0
  4873. package/slack-bot/node_modules/eventemitter3/index.mjs +4 -0
  4874. package/slack-bot/node_modules/eventemitter3/package.json +62 -0
  4875. package/slack-bot/node_modules/express/History.md +3667 -0
  4876. package/slack-bot/node_modules/express/LICENSE +24 -0
  4877. package/slack-bot/node_modules/express/Readme.md +260 -0
  4878. package/slack-bot/node_modules/express/index.js +11 -0
  4879. package/slack-bot/node_modules/express/lib/application.js +661 -0
  4880. package/slack-bot/node_modules/express/lib/express.js +116 -0
  4881. package/slack-bot/node_modules/express/lib/middleware/init.js +43 -0
  4882. package/slack-bot/node_modules/express/lib/middleware/query.js +47 -0
  4883. package/slack-bot/node_modules/express/lib/request.js +525 -0
  4884. package/slack-bot/node_modules/express/lib/response.js +1179 -0
  4885. package/slack-bot/node_modules/express/lib/router/index.js +673 -0
  4886. package/slack-bot/node_modules/express/lib/router/layer.js +181 -0
  4887. package/slack-bot/node_modules/express/lib/router/route.js +230 -0
  4888. package/slack-bot/node_modules/express/lib/utils.js +303 -0
  4889. package/slack-bot/node_modules/express/lib/view.js +182 -0
  4890. package/slack-bot/node_modules/express/node_modules/path-to-regexp/LICENSE +21 -0
  4891. package/slack-bot/node_modules/express/node_modules/path-to-regexp/Readme.md +35 -0
  4892. package/slack-bot/node_modules/express/node_modules/path-to-regexp/index.js +156 -0
  4893. package/slack-bot/node_modules/express/node_modules/path-to-regexp/package.json +30 -0
  4894. package/slack-bot/node_modules/express/package.json +102 -0
  4895. package/slack-bot/node_modules/finalhandler/HISTORY.md +216 -0
  4896. package/slack-bot/node_modules/finalhandler/LICENSE +22 -0
  4897. package/slack-bot/node_modules/finalhandler/README.md +147 -0
  4898. package/slack-bot/node_modules/finalhandler/SECURITY.md +25 -0
  4899. package/slack-bot/node_modules/finalhandler/index.js +341 -0
  4900. package/slack-bot/node_modules/finalhandler/package.json +47 -0
  4901. package/slack-bot/node_modules/finity/CODE_OF_CONDUCT.md +74 -0
  4902. package/slack-bot/node_modules/finity/LICENSE +21 -0
  4903. package/slack-bot/node_modules/finity/README.md +547 -0
  4904. package/slack-bot/node_modules/finity/ROADMAP.md +23 -0
  4905. package/slack-bot/node_modules/finity/index.d.ts +86 -0
  4906. package/slack-bot/node_modules/finity/lib/Finity.js +22 -0
  4907. package/slack-bot/node_modules/finity/lib/configuration/AsyncActionConfigurator.js +48 -0
  4908. package/slack-bot/node_modules/finity/lib/configuration/BaseConfigurator.js +51 -0
  4909. package/slack-bot/node_modules/finity/lib/configuration/GlobalConfigurator.js +63 -0
  4910. package/slack-bot/node_modules/finity/lib/configuration/StateConfigurator.js +93 -0
  4911. package/slack-bot/node_modules/finity/lib/configuration/StateMachineConfigurator.js +73 -0
  4912. package/slack-bot/node_modules/finity/lib/configuration/TimerConfigurator.js +32 -0
  4913. package/slack-bot/node_modules/finity/lib/configuration/TransitionConfigurator.js +51 -0
  4914. package/slack-bot/node_modules/finity/lib/configuration/TriggerConfigurator.js +60 -0
  4915. package/slack-bot/node_modules/finity/lib/configuration/delegateToAncestor.js +22 -0
  4916. package/slack-bot/node_modules/finity/lib/configuration/index.js +42 -0
  4917. package/slack-bot/node_modules/finity/lib/core/HierarchicalStateMachine.js +101 -0
  4918. package/slack-bot/node_modules/finity/lib/core/StateMachine.js +293 -0
  4919. package/slack-bot/node_modules/finity/lib/core/TaskScheduler.js +46 -0
  4920. package/slack-bot/node_modules/finity/lib/index.js +10 -0
  4921. package/slack-bot/node_modules/finity/lib/utils/invokeEach.js +13 -0
  4922. package/slack-bot/node_modules/finity/lib/utils/mapValues.js +12 -0
  4923. package/slack-bot/node_modules/finity/lib/utils/merge.js +10 -0
  4924. package/slack-bot/node_modules/finity/package.json +68 -0
  4925. package/slack-bot/node_modules/finity/umd/Finity.js +301 -0
  4926. package/slack-bot/node_modules/finity/umd/Finity.min.js +1 -0
  4927. package/slack-bot/node_modules/follow-redirects/LICENSE +18 -0
  4928. package/slack-bot/node_modules/follow-redirects/README.md +155 -0
  4929. package/slack-bot/node_modules/follow-redirects/debug.js +15 -0
  4930. package/slack-bot/node_modules/follow-redirects/http.js +1 -0
  4931. package/slack-bot/node_modules/follow-redirects/https.js +1 -0
  4932. package/slack-bot/node_modules/follow-redirects/index.js +686 -0
  4933. package/slack-bot/node_modules/follow-redirects/package.json +58 -0
  4934. package/slack-bot/node_modules/for-each/.editorconfig +20 -0
  4935. package/slack-bot/node_modules/for-each/.eslintrc +30 -0
  4936. package/slack-bot/node_modules/for-each/.github/FUNDING.yml +12 -0
  4937. package/slack-bot/node_modules/for-each/.github/SECURITY.md +3 -0
  4938. package/slack-bot/node_modules/for-each/.nycrc +8 -0
  4939. package/slack-bot/node_modules/for-each/CHANGELOG.md +107 -0
  4940. package/slack-bot/node_modules/for-each/LICENSE +22 -0
  4941. package/slack-bot/node_modules/for-each/README.md +39 -0
  4942. package/slack-bot/node_modules/for-each/index.d.ts +35 -0
  4943. package/slack-bot/node_modules/for-each/index.js +69 -0
  4944. package/slack-bot/node_modules/for-each/package.json +76 -0
  4945. package/slack-bot/node_modules/for-each/test/test.js +224 -0
  4946. package/slack-bot/node_modules/for-each/tsconfig.json +8 -0
  4947. package/slack-bot/node_modules/form-data/CHANGELOG.md +651 -0
  4948. package/slack-bot/node_modules/form-data/License +19 -0
  4949. package/slack-bot/node_modules/form-data/README.md +350 -0
  4950. package/slack-bot/node_modules/form-data/index.d.ts +51 -0
  4951. package/slack-bot/node_modules/form-data/lib/browser.js +4 -0
  4952. package/slack-bot/node_modules/form-data/lib/form_data.js +509 -0
  4953. package/slack-bot/node_modules/form-data/lib/populate.js +10 -0
  4954. package/slack-bot/node_modules/form-data/package.json +83 -0
  4955. package/slack-bot/node_modules/forwarded/HISTORY.md +21 -0
  4956. package/slack-bot/node_modules/forwarded/LICENSE +22 -0
  4957. package/slack-bot/node_modules/forwarded/README.md +57 -0
  4958. package/slack-bot/node_modules/forwarded/index.js +90 -0
  4959. package/slack-bot/node_modules/forwarded/package.json +45 -0
  4960. package/slack-bot/node_modules/fresh/HISTORY.md +70 -0
  4961. package/slack-bot/node_modules/fresh/LICENSE +23 -0
  4962. package/slack-bot/node_modules/fresh/README.md +119 -0
  4963. package/slack-bot/node_modules/fresh/index.js +137 -0
  4964. package/slack-bot/node_modules/fresh/package.json +46 -0
  4965. package/slack-bot/node_modules/function-bind/.eslintrc +21 -0
  4966. package/slack-bot/node_modules/function-bind/.github/FUNDING.yml +12 -0
  4967. package/slack-bot/node_modules/function-bind/.github/SECURITY.md +3 -0
  4968. package/slack-bot/node_modules/function-bind/.nycrc +13 -0
  4969. package/slack-bot/node_modules/function-bind/CHANGELOG.md +136 -0
  4970. package/slack-bot/node_modules/function-bind/LICENSE +20 -0
  4971. package/slack-bot/node_modules/function-bind/README.md +46 -0
  4972. package/slack-bot/node_modules/function-bind/implementation.js +84 -0
  4973. package/slack-bot/node_modules/function-bind/index.js +5 -0
  4974. package/slack-bot/node_modules/function-bind/package.json +87 -0
  4975. package/slack-bot/node_modules/function-bind/test/.eslintrc +9 -0
  4976. package/slack-bot/node_modules/function-bind/test/index.js +252 -0
  4977. package/slack-bot/node_modules/function.prototype.name/.editorconfig +24 -0
  4978. package/slack-bot/node_modules/function.prototype.name/.eslintrc +15 -0
  4979. package/slack-bot/node_modules/function.prototype.name/.github/FUNDING.yml +12 -0
  4980. package/slack-bot/node_modules/function.prototype.name/.nycrc +9 -0
  4981. package/slack-bot/node_modules/function.prototype.name/CHANGELOG.md +141 -0
  4982. package/slack-bot/node_modules/function.prototype.name/LICENSE +21 -0
  4983. package/slack-bot/node_modules/function.prototype.name/README.md +55 -0
  4984. package/slack-bot/node_modules/function.prototype.name/auto.js +3 -0
  4985. package/slack-bot/node_modules/function.prototype.name/helpers/functionsHaveNames.js +5 -0
  4986. package/slack-bot/node_modules/function.prototype.name/implementation.js +72 -0
  4987. package/slack-bot/node_modules/function.prototype.name/index.js +18 -0
  4988. package/slack-bot/node_modules/function.prototype.name/package.json +101 -0
  4989. package/slack-bot/node_modules/function.prototype.name/polyfill.js +7 -0
  4990. package/slack-bot/node_modules/function.prototype.name/shim.js +35 -0
  4991. package/slack-bot/node_modules/function.prototype.name/test/implementation.js +20 -0
  4992. package/slack-bot/node_modules/function.prototype.name/test/index.js +23 -0
  4993. package/slack-bot/node_modules/function.prototype.name/test/shimmed.js +21 -0
  4994. package/slack-bot/node_modules/function.prototype.name/test/tests.js +104 -0
  4995. package/slack-bot/node_modules/function.prototype.name/test/uglified.js +17 -0
  4996. package/slack-bot/node_modules/functions-have-names/.editorconfig +20 -0
  4997. package/slack-bot/node_modules/functions-have-names/.eslintrc +19 -0
  4998. package/slack-bot/node_modules/functions-have-names/.github/FUNDING.yml +12 -0
  4999. package/slack-bot/node_modules/functions-have-names/.nycrc +9 -0
  5000. package/slack-bot/node_modules/functions-have-names/CHANGELOG.md +89 -0
  5001. package/slack-bot/node_modules/functions-have-names/LICENSE +21 -0
  5002. package/slack-bot/node_modules/functions-have-names/README.md +40 -0
  5003. package/slack-bot/node_modules/functions-have-names/index.js +31 -0
  5004. package/slack-bot/node_modules/functions-have-names/package.json +55 -0
  5005. package/slack-bot/node_modules/functions-have-names/test/index.js +65 -0
  5006. package/slack-bot/node_modules/generator-function/.eslintrc +16 -0
  5007. package/slack-bot/node_modules/generator-function/.github/FUNDING.yml +12 -0
  5008. package/slack-bot/node_modules/generator-function/.nycrc +9 -0
  5009. package/slack-bot/node_modules/generator-function/CHANGELOG.md +27 -0
  5010. package/slack-bot/node_modules/generator-function/LICENSE.md +7 -0
  5011. package/slack-bot/node_modules/generator-function/README.md +51 -0
  5012. package/slack-bot/node_modules/generator-function/index.d.mts +3 -0
  5013. package/slack-bot/node_modules/generator-function/index.d.ts +3 -0
  5014. package/slack-bot/node_modules/generator-function/index.js +8 -0
  5015. package/slack-bot/node_modules/generator-function/index.mjs +4 -0
  5016. package/slack-bot/node_modules/generator-function/legacy.js +18 -0
  5017. package/slack-bot/node_modules/generator-function/package.json +88 -0
  5018. package/slack-bot/node_modules/generator-function/require.mjs +5 -0
  5019. package/slack-bot/node_modules/generator-function/test/index.js +42 -0
  5020. package/slack-bot/node_modules/generator-function/tsconfig.json +9 -0
  5021. package/slack-bot/node_modules/get-intrinsic/.eslintrc +42 -0
  5022. package/slack-bot/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  5023. package/slack-bot/node_modules/get-intrinsic/.nycrc +9 -0
  5024. package/slack-bot/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  5025. package/slack-bot/node_modules/get-intrinsic/LICENSE +21 -0
  5026. package/slack-bot/node_modules/get-intrinsic/README.md +71 -0
  5027. package/slack-bot/node_modules/get-intrinsic/index.js +378 -0
  5028. package/slack-bot/node_modules/get-intrinsic/package.json +97 -0
  5029. package/slack-bot/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  5030. package/slack-bot/node_modules/get-proto/.eslintrc +10 -0
  5031. package/slack-bot/node_modules/get-proto/.github/FUNDING.yml +12 -0
  5032. package/slack-bot/node_modules/get-proto/.nycrc +9 -0
  5033. package/slack-bot/node_modules/get-proto/CHANGELOG.md +21 -0
  5034. package/slack-bot/node_modules/get-proto/LICENSE +21 -0
  5035. package/slack-bot/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  5036. package/slack-bot/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  5037. package/slack-bot/node_modules/get-proto/README.md +50 -0
  5038. package/slack-bot/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  5039. package/slack-bot/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  5040. package/slack-bot/node_modules/get-proto/index.d.ts +5 -0
  5041. package/slack-bot/node_modules/get-proto/index.js +27 -0
  5042. package/slack-bot/node_modules/get-proto/package.json +81 -0
  5043. package/slack-bot/node_modules/get-proto/test/index.js +68 -0
  5044. package/slack-bot/node_modules/get-proto/tsconfig.json +9 -0
  5045. package/slack-bot/node_modules/get-symbol-description/.eslintrc +14 -0
  5046. package/slack-bot/node_modules/get-symbol-description/.github/FUNDING.yml +12 -0
  5047. package/slack-bot/node_modules/get-symbol-description/.nycrc +9 -0
  5048. package/slack-bot/node_modules/get-symbol-description/CHANGELOG.md +61 -0
  5049. package/slack-bot/node_modules/get-symbol-description/LICENSE +21 -0
  5050. package/slack-bot/node_modules/get-symbol-description/README.md +43 -0
  5051. package/slack-bot/node_modules/get-symbol-description/getInferredName.d.ts +5 -0
  5052. package/slack-bot/node_modules/get-symbol-description/getInferredName.js +13 -0
  5053. package/slack-bot/node_modules/get-symbol-description/index.d.ts +3 -0
  5054. package/slack-bot/node_modules/get-symbol-description/index.js +49 -0
  5055. package/slack-bot/node_modules/get-symbol-description/package.json +88 -0
  5056. package/slack-bot/node_modules/get-symbol-description/test/index.js +74 -0
  5057. package/slack-bot/node_modules/get-symbol-description/tsconfig.json +9 -0
  5058. package/slack-bot/node_modules/globalthis/.eslintrc +18 -0
  5059. package/slack-bot/node_modules/globalthis/.nycrc +10 -0
  5060. package/slack-bot/node_modules/globalthis/CHANGELOG.md +109 -0
  5061. package/slack-bot/node_modules/globalthis/LICENSE +21 -0
  5062. package/slack-bot/node_modules/globalthis/README.md +70 -0
  5063. package/slack-bot/node_modules/globalthis/auto.js +3 -0
  5064. package/slack-bot/node_modules/globalthis/implementation.browser.js +11 -0
  5065. package/slack-bot/node_modules/globalthis/implementation.js +3 -0
  5066. package/slack-bot/node_modules/globalthis/index.js +19 -0
  5067. package/slack-bot/node_modules/globalthis/package.json +99 -0
  5068. package/slack-bot/node_modules/globalthis/polyfill.js +10 -0
  5069. package/slack-bot/node_modules/globalthis/shim.js +29 -0
  5070. package/slack-bot/node_modules/globalthis/test/implementation.js +11 -0
  5071. package/slack-bot/node_modules/globalthis/test/index.js +11 -0
  5072. package/slack-bot/node_modules/globalthis/test/native.js +26 -0
  5073. package/slack-bot/node_modules/globalthis/test/shimmed.js +29 -0
  5074. package/slack-bot/node_modules/globalthis/test/tests.js +36 -0
  5075. package/slack-bot/node_modules/gopd/.eslintrc +16 -0
  5076. package/slack-bot/node_modules/gopd/.github/FUNDING.yml +12 -0
  5077. package/slack-bot/node_modules/gopd/CHANGELOG.md +45 -0
  5078. package/slack-bot/node_modules/gopd/LICENSE +21 -0
  5079. package/slack-bot/node_modules/gopd/README.md +40 -0
  5080. package/slack-bot/node_modules/gopd/gOPD.d.ts +1 -0
  5081. package/slack-bot/node_modules/gopd/gOPD.js +4 -0
  5082. package/slack-bot/node_modules/gopd/index.d.ts +5 -0
  5083. package/slack-bot/node_modules/gopd/index.js +15 -0
  5084. package/slack-bot/node_modules/gopd/package.json +77 -0
  5085. package/slack-bot/node_modules/gopd/test/index.js +36 -0
  5086. package/slack-bot/node_modules/gopd/tsconfig.json +9 -0
  5087. package/slack-bot/node_modules/has-bigints/.eslintrc +5 -0
  5088. package/slack-bot/node_modules/has-bigints/.github/FUNDING.yml +12 -0
  5089. package/slack-bot/node_modules/has-bigints/.nycrc +9 -0
  5090. package/slack-bot/node_modules/has-bigints/CHANGELOG.md +74 -0
  5091. package/slack-bot/node_modules/has-bigints/LICENSE +21 -0
  5092. package/slack-bot/node_modules/has-bigints/README.md +39 -0
  5093. package/slack-bot/node_modules/has-bigints/index.d.ts +3 -0
  5094. package/slack-bot/node_modules/has-bigints/index.js +11 -0
  5095. package/slack-bot/node_modules/has-bigints/package.json +69 -0
  5096. package/slack-bot/node_modules/has-bigints/test/index.js +44 -0
  5097. package/slack-bot/node_modules/has-bigints/tsconfig.json +9 -0
  5098. package/slack-bot/node_modules/has-property-descriptors/.eslintrc +13 -0
  5099. package/slack-bot/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
  5100. package/slack-bot/node_modules/has-property-descriptors/.nycrc +9 -0
  5101. package/slack-bot/node_modules/has-property-descriptors/CHANGELOG.md +35 -0
  5102. package/slack-bot/node_modules/has-property-descriptors/LICENSE +21 -0
  5103. package/slack-bot/node_modules/has-property-descriptors/README.md +43 -0
  5104. package/slack-bot/node_modules/has-property-descriptors/index.js +22 -0
  5105. package/slack-bot/node_modules/has-property-descriptors/package.json +77 -0
  5106. package/slack-bot/node_modules/has-property-descriptors/test/index.js +57 -0
  5107. package/slack-bot/node_modules/has-proto/.eslintrc +5 -0
  5108. package/slack-bot/node_modules/has-proto/.github/FUNDING.yml +12 -0
  5109. package/slack-bot/node_modules/has-proto/CHANGELOG.md +61 -0
  5110. package/slack-bot/node_modules/has-proto/LICENSE +21 -0
  5111. package/slack-bot/node_modules/has-proto/README.md +57 -0
  5112. package/slack-bot/node_modules/has-proto/accessor.d.ts +3 -0
  5113. package/slack-bot/node_modules/has-proto/accessor.js +20 -0
  5114. package/slack-bot/node_modules/has-proto/index.d.ts +3 -0
  5115. package/slack-bot/node_modules/has-proto/index.js +15 -0
  5116. package/slack-bot/node_modules/has-proto/mutator.d.ts +3 -0
  5117. package/slack-bot/node_modules/has-proto/mutator.js +33 -0
  5118. package/slack-bot/node_modules/has-proto/package.json +91 -0
  5119. package/slack-bot/node_modules/has-proto/test/accessor.js +34 -0
  5120. package/slack-bot/node_modules/has-proto/test/index.js +28 -0
  5121. package/slack-bot/node_modules/has-proto/test/mutator.js +34 -0
  5122. package/slack-bot/node_modules/has-proto/tsconfig.json +11 -0
  5123. package/slack-bot/node_modules/has-symbols/.eslintrc +11 -0
  5124. package/slack-bot/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  5125. package/slack-bot/node_modules/has-symbols/.nycrc +9 -0
  5126. package/slack-bot/node_modules/has-symbols/CHANGELOG.md +91 -0
  5127. package/slack-bot/node_modules/has-symbols/LICENSE +21 -0
  5128. package/slack-bot/node_modules/has-symbols/README.md +46 -0
  5129. package/slack-bot/node_modules/has-symbols/index.d.ts +3 -0
  5130. package/slack-bot/node_modules/has-symbols/index.js +14 -0
  5131. package/slack-bot/node_modules/has-symbols/package.json +111 -0
  5132. package/slack-bot/node_modules/has-symbols/shams.d.ts +3 -0
  5133. package/slack-bot/node_modules/has-symbols/shams.js +45 -0
  5134. package/slack-bot/node_modules/has-symbols/test/index.js +22 -0
  5135. package/slack-bot/node_modules/has-symbols/test/shams/core-js.js +29 -0
  5136. package/slack-bot/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  5137. package/slack-bot/node_modules/has-symbols/test/tests.js +58 -0
  5138. package/slack-bot/node_modules/has-symbols/tsconfig.json +10 -0
  5139. package/slack-bot/node_modules/has-tostringtag/.eslintrc +5 -0
  5140. package/slack-bot/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  5141. package/slack-bot/node_modules/has-tostringtag/.nycrc +13 -0
  5142. package/slack-bot/node_modules/has-tostringtag/CHANGELOG.md +42 -0
  5143. package/slack-bot/node_modules/has-tostringtag/LICENSE +21 -0
  5144. package/slack-bot/node_modules/has-tostringtag/README.md +46 -0
  5145. package/slack-bot/node_modules/has-tostringtag/index.d.ts +3 -0
  5146. package/slack-bot/node_modules/has-tostringtag/index.js +8 -0
  5147. package/slack-bot/node_modules/has-tostringtag/package.json +108 -0
  5148. package/slack-bot/node_modules/has-tostringtag/shams.d.ts +3 -0
  5149. package/slack-bot/node_modules/has-tostringtag/shams.js +8 -0
  5150. package/slack-bot/node_modules/has-tostringtag/test/index.js +21 -0
  5151. package/slack-bot/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
  5152. package/slack-bot/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
  5153. package/slack-bot/node_modules/has-tostringtag/test/tests.js +15 -0
  5154. package/slack-bot/node_modules/has-tostringtag/tsconfig.json +49 -0
  5155. package/slack-bot/node_modules/hasown/.eslintrc +5 -0
  5156. package/slack-bot/node_modules/hasown/.github/FUNDING.yml +12 -0
  5157. package/slack-bot/node_modules/hasown/.nycrc +13 -0
  5158. package/slack-bot/node_modules/hasown/CHANGELOG.md +40 -0
  5159. package/slack-bot/node_modules/hasown/LICENSE +21 -0
  5160. package/slack-bot/node_modules/hasown/README.md +40 -0
  5161. package/slack-bot/node_modules/hasown/index.d.ts +3 -0
  5162. package/slack-bot/node_modules/hasown/index.js +8 -0
  5163. package/slack-bot/node_modules/hasown/package.json +92 -0
  5164. package/slack-bot/node_modules/hasown/tsconfig.json +6 -0
  5165. package/slack-bot/node_modules/http-errors/HISTORY.md +186 -0
  5166. package/slack-bot/node_modules/http-errors/LICENSE +23 -0
  5167. package/slack-bot/node_modules/http-errors/README.md +169 -0
  5168. package/slack-bot/node_modules/http-errors/index.js +290 -0
  5169. package/slack-bot/node_modules/http-errors/package.json +54 -0
  5170. package/slack-bot/node_modules/iconv-lite/Changelog.md +162 -0
  5171. package/slack-bot/node_modules/iconv-lite/LICENSE +21 -0
  5172. package/slack-bot/node_modules/iconv-lite/README.md +156 -0
  5173. package/slack-bot/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  5174. package/slack-bot/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  5175. package/slack-bot/node_modules/iconv-lite/encodings/index.js +22 -0
  5176. package/slack-bot/node_modules/iconv-lite/encodings/internal.js +188 -0
  5177. package/slack-bot/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  5178. package/slack-bot/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  5179. package/slack-bot/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  5180. package/slack-bot/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  5181. package/slack-bot/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  5182. package/slack-bot/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  5183. package/slack-bot/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  5184. package/slack-bot/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  5185. package/slack-bot/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  5186. package/slack-bot/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  5187. package/slack-bot/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  5188. package/slack-bot/node_modules/iconv-lite/encodings/utf16.js +177 -0
  5189. package/slack-bot/node_modules/iconv-lite/encodings/utf7.js +290 -0
  5190. package/slack-bot/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  5191. package/slack-bot/node_modules/iconv-lite/lib/extend-node.js +217 -0
  5192. package/slack-bot/node_modules/iconv-lite/lib/index.d.ts +24 -0
  5193. package/slack-bot/node_modules/iconv-lite/lib/index.js +153 -0
  5194. package/slack-bot/node_modules/iconv-lite/lib/streams.js +121 -0
  5195. package/slack-bot/node_modules/iconv-lite/package.json +46 -0
  5196. package/slack-bot/node_modules/inherits/LICENSE +16 -0
  5197. package/slack-bot/node_modules/inherits/README.md +42 -0
  5198. package/slack-bot/node_modules/inherits/inherits.js +9 -0
  5199. package/slack-bot/node_modules/inherits/inherits_browser.js +27 -0
  5200. package/slack-bot/node_modules/inherits/package.json +29 -0
  5201. package/slack-bot/node_modules/internal-slot/.attw.json +5 -0
  5202. package/slack-bot/node_modules/internal-slot/.editorconfig +20 -0
  5203. package/slack-bot/node_modules/internal-slot/.eslintrc +11 -0
  5204. package/slack-bot/node_modules/internal-slot/.github/FUNDING.yml +12 -0
  5205. package/slack-bot/node_modules/internal-slot/.nycrc +9 -0
  5206. package/slack-bot/node_modules/internal-slot/CHANGELOG.md +114 -0
  5207. package/slack-bot/node_modules/internal-slot/LICENSE +21 -0
  5208. package/slack-bot/node_modules/internal-slot/README.md +58 -0
  5209. package/slack-bot/node_modules/internal-slot/index.d.ts +12 -0
  5210. package/slack-bot/node_modules/internal-slot/index.js +69 -0
  5211. package/slack-bot/node_modules/internal-slot/package.json +79 -0
  5212. package/slack-bot/node_modules/internal-slot/test/index.js +129 -0
  5213. package/slack-bot/node_modules/internal-slot/tsconfig.json +9 -0
  5214. package/slack-bot/node_modules/ipaddr.js/LICENSE +19 -0
  5215. package/slack-bot/node_modules/ipaddr.js/README.md +233 -0
  5216. package/slack-bot/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  5217. package/slack-bot/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  5218. package/slack-bot/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  5219. package/slack-bot/node_modules/ipaddr.js/package.json +35 -0
  5220. package/slack-bot/node_modules/is-arguments/.editorconfig +20 -0
  5221. package/slack-bot/node_modules/is-arguments/.eslintrc +9 -0
  5222. package/slack-bot/node_modules/is-arguments/.github/FUNDING.yml +12 -0
  5223. package/slack-bot/node_modules/is-arguments/.nycrc +9 -0
  5224. package/slack-bot/node_modules/is-arguments/CHANGELOG.md +201 -0
  5225. package/slack-bot/node_modules/is-arguments/LICENSE +20 -0
  5226. package/slack-bot/node_modules/is-arguments/README.md +47 -0
  5227. package/slack-bot/node_modules/is-arguments/index.d.ts +6 -0
  5228. package/slack-bot/node_modules/is-arguments/index.js +44 -0
  5229. package/slack-bot/node_modules/is-arguments/package.json +105 -0
  5230. package/slack-bot/node_modules/is-arguments/test/index.js +47 -0
  5231. package/slack-bot/node_modules/is-arguments/tsconfig.json +9 -0
  5232. package/slack-bot/node_modules/is-array-buffer/.eslintrc +17 -0
  5233. package/slack-bot/node_modules/is-array-buffer/.github/FUNDING.yml +12 -0
  5234. package/slack-bot/node_modules/is-array-buffer/.nycrc +9 -0
  5235. package/slack-bot/node_modules/is-array-buffer/CHANGELOG.md +91 -0
  5236. package/slack-bot/node_modules/is-array-buffer/LICENSE +21 -0
  5237. package/slack-bot/node_modules/is-array-buffer/README.md +56 -0
  5238. package/slack-bot/node_modules/is-array-buffer/index.d.ts +3 -0
  5239. package/slack-bot/node_modules/is-array-buffer/index.js +43 -0
  5240. package/slack-bot/node_modules/is-array-buffer/package.json +91 -0
  5241. package/slack-bot/node_modules/is-array-buffer/test/index.js +49 -0
  5242. package/slack-bot/node_modules/is-array-buffer/tsconfig.json +9 -0
  5243. package/slack-bot/node_modules/is-async-function/.eslintrc +9 -0
  5244. package/slack-bot/node_modules/is-async-function/.nycrc +9 -0
  5245. package/slack-bot/node_modules/is-async-function/CHANGELOG.md +189 -0
  5246. package/slack-bot/node_modules/is-async-function/LICENSE +20 -0
  5247. package/slack-bot/node_modules/is-async-function/README.md +41 -0
  5248. package/slack-bot/node_modules/is-async-function/index.d.ts +9 -0
  5249. package/slack-bot/node_modules/is-async-function/index.js +32 -0
  5250. package/slack-bot/node_modules/is-async-function/package.json +110 -0
  5251. package/slack-bot/node_modules/is-async-function/test/index.js +91 -0
  5252. package/slack-bot/node_modules/is-async-function/test/uglified.js +9 -0
  5253. package/slack-bot/node_modules/is-async-function/tsconfig.json +10 -0
  5254. package/slack-bot/node_modules/is-bigint/.eslintrc +5 -0
  5255. package/slack-bot/node_modules/is-bigint/.github/FUNDING.yml +12 -0
  5256. package/slack-bot/node_modules/is-bigint/.nycrc +9 -0
  5257. package/slack-bot/node_modules/is-bigint/CHANGELOG.md +91 -0
  5258. package/slack-bot/node_modules/is-bigint/LICENSE +21 -0
  5259. package/slack-bot/node_modules/is-bigint/README.md +44 -0
  5260. package/slack-bot/node_modules/is-bigint/index.d.ts +3 -0
  5261. package/slack-bot/node_modules/is-bigint/index.js +41 -0
  5262. package/slack-bot/node_modules/is-bigint/package.json +78 -0
  5263. package/slack-bot/node_modules/is-bigint/test/index.js +65 -0
  5264. package/slack-bot/node_modules/is-bigint/tsconfig.json +9 -0
  5265. package/slack-bot/node_modules/is-boolean-object/.editorconfig +22 -0
  5266. package/slack-bot/node_modules/is-boolean-object/.eslintrc +12 -0
  5267. package/slack-bot/node_modules/is-boolean-object/.github/FUNDING.yml +12 -0
  5268. package/slack-bot/node_modules/is-boolean-object/.nycrc +10 -0
  5269. package/slack-bot/node_modules/is-boolean-object/CHANGELOG.md +143 -0
  5270. package/slack-bot/node_modules/is-boolean-object/LICENSE +22 -0
  5271. package/slack-bot/node_modules/is-boolean-object/README.md +57 -0
  5272. package/slack-bot/node_modules/is-boolean-object/index.d.ts +3 -0
  5273. package/slack-bot/node_modules/is-boolean-object/index.js +28 -0
  5274. package/slack-bot/node_modules/is-boolean-object/package.json +100 -0
  5275. package/slack-bot/node_modules/is-boolean-object/test/index.js +73 -0
  5276. package/slack-bot/node_modules/is-boolean-object/tsconfig.json +9 -0
  5277. package/slack-bot/node_modules/is-callable/.editorconfig +31 -0
  5278. package/slack-bot/node_modules/is-callable/.eslintrc +10 -0
  5279. package/slack-bot/node_modules/is-callable/.github/FUNDING.yml +12 -0
  5280. package/slack-bot/node_modules/is-callable/.nycrc +9 -0
  5281. package/slack-bot/node_modules/is-callable/CHANGELOG.md +158 -0
  5282. package/slack-bot/node_modules/is-callable/LICENSE +22 -0
  5283. package/slack-bot/node_modules/is-callable/README.md +83 -0
  5284. package/slack-bot/node_modules/is-callable/index.js +101 -0
  5285. package/slack-bot/node_modules/is-callable/package.json +106 -0
  5286. package/slack-bot/node_modules/is-callable/test/index.js +244 -0
  5287. package/slack-bot/node_modules/is-data-view/.editorconfig +20 -0
  5288. package/slack-bot/node_modules/is-data-view/.eslintrc +17 -0
  5289. package/slack-bot/node_modules/is-data-view/.github/FUNDING.yml +12 -0
  5290. package/slack-bot/node_modules/is-data-view/.nycrc +9 -0
  5291. package/slack-bot/node_modules/is-data-view/CHANGELOG.md +35 -0
  5292. package/slack-bot/node_modules/is-data-view/LICENSE +21 -0
  5293. package/slack-bot/node_modules/is-data-view/README.md +69 -0
  5294. package/slack-bot/node_modules/is-data-view/index.d.ts +3 -0
  5295. package/slack-bot/node_modules/is-data-view/index.js +39 -0
  5296. package/slack-bot/node_modules/is-data-view/package.json +100 -0
  5297. package/slack-bot/node_modules/is-data-view/test/index.js +60 -0
  5298. package/slack-bot/node_modules/is-data-view/tsconfig.json +9 -0
  5299. package/slack-bot/node_modules/is-date-object/.editorconfig +20 -0
  5300. package/slack-bot/node_modules/is-date-object/.eslintrc +9 -0
  5301. package/slack-bot/node_modules/is-date-object/.github/FUNDING.yml +12 -0
  5302. package/slack-bot/node_modules/is-date-object/.nycrc +10 -0
  5303. package/slack-bot/node_modules/is-date-object/CHANGELOG.md +134 -0
  5304. package/slack-bot/node_modules/is-date-object/LICENSE +22 -0
  5305. package/slack-bot/node_modules/is-date-object/README.md +52 -0
  5306. package/slack-bot/node_modules/is-date-object/index.d.ts +3 -0
  5307. package/slack-bot/node_modules/is-date-object/index.js +27 -0
  5308. package/slack-bot/node_modules/is-date-object/package.json +99 -0
  5309. package/slack-bot/node_modules/is-date-object/test/index.js +38 -0
  5310. package/slack-bot/node_modules/is-date-object/tsconfig.json +6 -0
  5311. package/slack-bot/node_modules/is-electron/LICENSE +21 -0
  5312. package/slack-bot/node_modules/is-electron/README.md +25 -0
  5313. package/slack-bot/node_modules/is-electron/index.d.ts +2 -0
  5314. package/slack-bot/node_modules/is-electron/index.js +21 -0
  5315. package/slack-bot/node_modules/is-electron/package.json +34 -0
  5316. package/slack-bot/node_modules/is-finalizationregistry/.eslintrc +9 -0
  5317. package/slack-bot/node_modules/is-finalizationregistry/.github/FUNDING.yml +12 -0
  5318. package/slack-bot/node_modules/is-finalizationregistry/.nycrc +9 -0
  5319. package/slack-bot/node_modules/is-finalizationregistry/CHANGELOG.md +78 -0
  5320. package/slack-bot/node_modules/is-finalizationregistry/LICENSE +21 -0
  5321. package/slack-bot/node_modules/is-finalizationregistry/README.md +54 -0
  5322. package/slack-bot/node_modules/is-finalizationregistry/index.d.ts +3 -0
  5323. package/slack-bot/node_modules/is-finalizationregistry/index.js +25 -0
  5324. package/slack-bot/node_modules/is-finalizationregistry/package.json +82 -0
  5325. package/slack-bot/node_modules/is-finalizationregistry/test/index.js +26 -0
  5326. package/slack-bot/node_modules/is-finalizationregistry/tsconfig.json +9 -0
  5327. package/slack-bot/node_modules/is-generator-function/.eslintrc +9 -0
  5328. package/slack-bot/node_modules/is-generator-function/.nvmrc +1 -0
  5329. package/slack-bot/node_modules/is-generator-function/.nycrc +9 -0
  5330. package/slack-bot/node_modules/is-generator-function/CHANGELOG.md +254 -0
  5331. package/slack-bot/node_modules/is-generator-function/LICENSE +20 -0
  5332. package/slack-bot/node_modules/is-generator-function/README.md +40 -0
  5333. package/slack-bot/node_modules/is-generator-function/index.d.ts +3 -0
  5334. package/slack-bot/node_modules/is-generator-function/index.js +31 -0
  5335. package/slack-bot/node_modules/is-generator-function/package.json +107 -0
  5336. package/slack-bot/node_modules/is-generator-function/test/corejs.js +6 -0
  5337. package/slack-bot/node_modules/is-generator-function/test/index.js +80 -0
  5338. package/slack-bot/node_modules/is-generator-function/test/uglified.js +9 -0
  5339. package/slack-bot/node_modules/is-generator-function/tsconfig.json +9 -0
  5340. package/slack-bot/node_modules/is-map/.editorconfig +15 -0
  5341. package/slack-bot/node_modules/is-map/.eslintrc +5 -0
  5342. package/slack-bot/node_modules/is-map/.gitattributes +1 -0
  5343. package/slack-bot/node_modules/is-map/.github/FUNDING.yml +12 -0
  5344. package/slack-bot/node_modules/is-map/.nycrc +9 -0
  5345. package/slack-bot/node_modules/is-map/CHANGELOG.md +89 -0
  5346. package/slack-bot/node_modules/is-map/LICENSE +21 -0
  5347. package/slack-bot/node_modules/is-map/README.md +52 -0
  5348. package/slack-bot/node_modules/is-map/index.d.ts +3 -0
  5349. package/slack-bot/node_modules/is-map/index.js +47 -0
  5350. package/slack-bot/node_modules/is-map/package.json +79 -0
  5351. package/slack-bot/node_modules/is-map/test/index.js +59 -0
  5352. package/slack-bot/node_modules/is-map/tsconfig.json +49 -0
  5353. package/slack-bot/node_modules/is-negative-zero/.editorconfig +8 -0
  5354. package/slack-bot/node_modules/is-negative-zero/.eslintrc +9 -0
  5355. package/slack-bot/node_modules/is-negative-zero/.github/FUNDING.yml +12 -0
  5356. package/slack-bot/node_modules/is-negative-zero/.nycrc +9 -0
  5357. package/slack-bot/node_modules/is-negative-zero/CHANGELOG.md +147 -0
  5358. package/slack-bot/node_modules/is-negative-zero/LICENSE +20 -0
  5359. package/slack-bot/node_modules/is-negative-zero/README.md +54 -0
  5360. package/slack-bot/node_modules/is-negative-zero/index.d.ts +3 -0
  5361. package/slack-bot/node_modules/is-negative-zero/index.js +7 -0
  5362. package/slack-bot/node_modules/is-negative-zero/package.json +92 -0
  5363. package/slack-bot/node_modules/is-negative-zero/test/index.js +29 -0
  5364. package/slack-bot/node_modules/is-negative-zero/tsconfig.json +49 -0
  5365. package/slack-bot/node_modules/is-number-object/.editorconfig +23 -0
  5366. package/slack-bot/node_modules/is-number-object/.eslintrc +16 -0
  5367. package/slack-bot/node_modules/is-number-object/.github/FUNDING.yml +12 -0
  5368. package/slack-bot/node_modules/is-number-object/.nycrc +10 -0
  5369. package/slack-bot/node_modules/is-number-object/CHANGELOG.md +149 -0
  5370. package/slack-bot/node_modules/is-number-object/LICENSE +22 -0
  5371. package/slack-bot/node_modules/is-number-object/README.md +55 -0
  5372. package/slack-bot/node_modules/is-number-object/index.d.ts +3 -0
  5373. package/slack-bot/node_modules/is-number-object/index.js +29 -0
  5374. package/slack-bot/node_modules/is-number-object/package.json +85 -0
  5375. package/slack-bot/node_modules/is-number-object/test/index.js +40 -0
  5376. package/slack-bot/node_modules/is-number-object/tsconfig.json +9 -0
  5377. package/slack-bot/node_modules/is-regex/.editorconfig +23 -0
  5378. package/slack-bot/node_modules/is-regex/.eslintrc +10 -0
  5379. package/slack-bot/node_modules/is-regex/.nycrc +10 -0
  5380. package/slack-bot/node_modules/is-regex/CHANGELOG.md +233 -0
  5381. package/slack-bot/node_modules/is-regex/LICENSE +20 -0
  5382. package/slack-bot/node_modules/is-regex/README.md +52 -0
  5383. package/slack-bot/node_modules/is-regex/index.d.ts +3 -0
  5384. package/slack-bot/node_modules/is-regex/index.js +69 -0
  5385. package/slack-bot/node_modules/is-regex/package.json +104 -0
  5386. package/slack-bot/node_modules/is-regex/test/index.js +121 -0
  5387. package/slack-bot/node_modules/is-regex/tsconfig.json +9 -0
  5388. package/slack-bot/node_modules/is-set/.editorconfig +15 -0
  5389. package/slack-bot/node_modules/is-set/.eslintrc +5 -0
  5390. package/slack-bot/node_modules/is-set/.gitattributes +1 -0
  5391. package/slack-bot/node_modules/is-set/.github/FUNDING.yml +12 -0
  5392. package/slack-bot/node_modules/is-set/.nycrc +9 -0
  5393. package/slack-bot/node_modules/is-set/CHANGELOG.md +81 -0
  5394. package/slack-bot/node_modules/is-set/LICENSE +21 -0
  5395. package/slack-bot/node_modules/is-set/README.md +50 -0
  5396. package/slack-bot/node_modules/is-set/index.d.ts +3 -0
  5397. package/slack-bot/node_modules/is-set/index.js +46 -0
  5398. package/slack-bot/node_modules/is-set/package.json +72 -0
  5399. package/slack-bot/node_modules/is-set/test/index.js +59 -0
  5400. package/slack-bot/node_modules/is-set/tsconfig.json +49 -0
  5401. package/slack-bot/node_modules/is-shared-array-buffer/.eslintrc +5 -0
  5402. package/slack-bot/node_modules/is-shared-array-buffer/.github/FUNDING.yml +12 -0
  5403. package/slack-bot/node_modules/is-shared-array-buffer/.nycrc +9 -0
  5404. package/slack-bot/node_modules/is-shared-array-buffer/CHANGELOG.md +75 -0
  5405. package/slack-bot/node_modules/is-shared-array-buffer/LICENSE +21 -0
  5406. package/slack-bot/node_modules/is-shared-array-buffer/README.md +56 -0
  5407. package/slack-bot/node_modules/is-shared-array-buffer/index.d.ts +3 -0
  5408. package/slack-bot/node_modules/is-shared-array-buffer/index.js +24 -0
  5409. package/slack-bot/node_modules/is-shared-array-buffer/package.json +92 -0
  5410. package/slack-bot/node_modules/is-shared-array-buffer/test/index.js +39 -0
  5411. package/slack-bot/node_modules/is-shared-array-buffer/tsconfig.json +9 -0
  5412. package/slack-bot/node_modules/is-stream/index.js +21 -0
  5413. package/slack-bot/node_modules/is-stream/license +21 -0
  5414. package/slack-bot/node_modules/is-stream/package.json +38 -0
  5415. package/slack-bot/node_modules/is-stream/readme.md +42 -0
  5416. package/slack-bot/node_modules/is-string/.eslintrc +9 -0
  5417. package/slack-bot/node_modules/is-string/.github/FUNDING.yml +12 -0
  5418. package/slack-bot/node_modules/is-string/.nycrc +10 -0
  5419. package/slack-bot/node_modules/is-string/CHANGELOG.md +146 -0
  5420. package/slack-bot/node_modules/is-string/LICENSE +22 -0
  5421. package/slack-bot/node_modules/is-string/README.md +56 -0
  5422. package/slack-bot/node_modules/is-string/index.d.ts +3 -0
  5423. package/slack-bot/node_modules/is-string/index.js +31 -0
  5424. package/slack-bot/node_modules/is-string/package.json +95 -0
  5425. package/slack-bot/node_modules/is-string/test/index.js +41 -0
  5426. package/slack-bot/node_modules/is-string/tsconfig.json +9 -0
  5427. package/slack-bot/node_modules/is-symbol/.editorconfig +13 -0
  5428. package/slack-bot/node_modules/is-symbol/.eslintrc +14 -0
  5429. package/slack-bot/node_modules/is-symbol/.github/FUNDING.yml +12 -0
  5430. package/slack-bot/node_modules/is-symbol/.nycrc +9 -0
  5431. package/slack-bot/node_modules/is-symbol/CHANGELOG.md +145 -0
  5432. package/slack-bot/node_modules/is-symbol/LICENSE +22 -0
  5433. package/slack-bot/node_modules/is-symbol/README.md +45 -0
  5434. package/slack-bot/node_modules/is-symbol/index.d.ts +3 -0
  5435. package/slack-bot/node_modules/is-symbol/index.js +40 -0
  5436. package/slack-bot/node_modules/is-symbol/package.json +98 -0
  5437. package/slack-bot/node_modules/is-symbol/test/index.js +88 -0
  5438. package/slack-bot/node_modules/is-symbol/tsconfig.json +9 -0
  5439. package/slack-bot/node_modules/is-typed-array/.editorconfig +20 -0
  5440. package/slack-bot/node_modules/is-typed-array/.eslintrc +13 -0
  5441. package/slack-bot/node_modules/is-typed-array/.github/FUNDING.yml +12 -0
  5442. package/slack-bot/node_modules/is-typed-array/.nycrc +9 -0
  5443. package/slack-bot/node_modules/is-typed-array/CHANGELOG.md +166 -0
  5444. package/slack-bot/node_modules/is-typed-array/LICENSE +22 -0
  5445. package/slack-bot/node_modules/is-typed-array/README.md +70 -0
  5446. package/slack-bot/node_modules/is-typed-array/index.d.ts +9 -0
  5447. package/slack-bot/node_modules/is-typed-array/index.js +8 -0
  5448. package/slack-bot/node_modules/is-typed-array/package.json +129 -0
  5449. package/slack-bot/node_modules/is-typed-array/test/index.js +111 -0
  5450. package/slack-bot/node_modules/is-typed-array/tsconfig.json +6 -0
  5451. package/slack-bot/node_modules/is-weakmap/.editorconfig +15 -0
  5452. package/slack-bot/node_modules/is-weakmap/.eslintrc +5 -0
  5453. package/slack-bot/node_modules/is-weakmap/.github/FUNDING.yml +12 -0
  5454. package/slack-bot/node_modules/is-weakmap/.nycrc +9 -0
  5455. package/slack-bot/node_modules/is-weakmap/CHANGELOG.md +83 -0
  5456. package/slack-bot/node_modules/is-weakmap/LICENSE +21 -0
  5457. package/slack-bot/node_modules/is-weakmap/README.md +50 -0
  5458. package/slack-bot/node_modules/is-weakmap/index.d.ts +3 -0
  5459. package/slack-bot/node_modules/is-weakmap/index.js +46 -0
  5460. package/slack-bot/node_modules/is-weakmap/package.json +81 -0
  5461. package/slack-bot/node_modules/is-weakmap/test/index.js +59 -0
  5462. package/slack-bot/node_modules/is-weakmap/tsconfig.json +49 -0
  5463. package/slack-bot/node_modules/is-weakref/.eslintrc +5 -0
  5464. package/slack-bot/node_modules/is-weakref/.github/FUNDING.yml +12 -0
  5465. package/slack-bot/node_modules/is-weakref/.nycrc +9 -0
  5466. package/slack-bot/node_modules/is-weakref/CHANGELOG.md +82 -0
  5467. package/slack-bot/node_modules/is-weakref/LICENSE +21 -0
  5468. package/slack-bot/node_modules/is-weakref/README.md +52 -0
  5469. package/slack-bot/node_modules/is-weakref/index.d.ts +3 -0
  5470. package/slack-bot/node_modules/is-weakref/index.js +24 -0
  5471. package/slack-bot/node_modules/is-weakref/package.json +82 -0
  5472. package/slack-bot/node_modules/is-weakref/test/index.js +26 -0
  5473. package/slack-bot/node_modules/is-weakref/tsconfig.json +9 -0
  5474. package/slack-bot/node_modules/is-weakset/.editorconfig +15 -0
  5475. package/slack-bot/node_modules/is-weakset/.eslintrc +13 -0
  5476. package/slack-bot/node_modules/is-weakset/.gitattributes +1 -0
  5477. package/slack-bot/node_modules/is-weakset/.github/FUNDING.yml +12 -0
  5478. package/slack-bot/node_modules/is-weakset/.nycrc +9 -0
  5479. package/slack-bot/node_modules/is-weakset/CHANGELOG.md +107 -0
  5480. package/slack-bot/node_modules/is-weakset/LICENSE +21 -0
  5481. package/slack-bot/node_modules/is-weakset/README.md +50 -0
  5482. package/slack-bot/node_modules/is-weakset/index.d.ts +3 -0
  5483. package/slack-bot/node_modules/is-weakset/index.js +43 -0
  5484. package/slack-bot/node_modules/is-weakset/package.json +87 -0
  5485. package/slack-bot/node_modules/is-weakset/test/index.js +59 -0
  5486. package/slack-bot/node_modules/is-weakset/tsconfig.json +9 -0
  5487. package/slack-bot/node_modules/isarray/LICENSE +21 -0
  5488. package/slack-bot/node_modules/isarray/README.md +38 -0
  5489. package/slack-bot/node_modules/isarray/index.js +5 -0
  5490. package/slack-bot/node_modules/isarray/package.json +48 -0
  5491. package/slack-bot/node_modules/iterate-iterator/.eslintignore +1 -0
  5492. package/slack-bot/node_modules/iterate-iterator/.eslintrc +16 -0
  5493. package/slack-bot/node_modules/iterate-iterator/.github/FUNDING.yml +12 -0
  5494. package/slack-bot/node_modules/iterate-iterator/.nycrc +9 -0
  5495. package/slack-bot/node_modules/iterate-iterator/CHANGELOG.md +56 -0
  5496. package/slack-bot/node_modules/iterate-iterator/LICENSE +21 -0
  5497. package/slack-bot/node_modules/iterate-iterator/README.md +66 -0
  5498. package/slack-bot/node_modules/iterate-iterator/index.js +28 -0
  5499. package/slack-bot/node_modules/iterate-iterator/package.json +73 -0
  5500. package/slack-bot/node_modules/iterate-iterator/test/index.js +134 -0
  5501. package/slack-bot/node_modules/iterate-value/.eslintrc +20 -0
  5502. package/slack-bot/node_modules/iterate-value/.github/FUNDING.yml +12 -0
  5503. package/slack-bot/node_modules/iterate-value/.github/workflows/rebase.yml +15 -0
  5504. package/slack-bot/node_modules/iterate-value/.travis.yml +8 -0
  5505. package/slack-bot/node_modules/iterate-value/CHANGELOG.md +41 -0
  5506. package/slack-bot/node_modules/iterate-value/LICENSE +21 -0
  5507. package/slack-bot/node_modules/iterate-value/README.md +66 -0
  5508. package/slack-bot/node_modules/iterate-value/index.js +16 -0
  5509. package/slack-bot/node_modules/iterate-value/package.json +75 -0
  5510. package/slack-bot/node_modules/iterate-value/test/index.js +144 -0
  5511. package/slack-bot/node_modules/jsonwebtoken/LICENSE +21 -0
  5512. package/slack-bot/node_modules/jsonwebtoken/README.md +396 -0
  5513. package/slack-bot/node_modules/jsonwebtoken/decode.js +30 -0
  5514. package/slack-bot/node_modules/jsonwebtoken/index.js +8 -0
  5515. package/slack-bot/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  5516. package/slack-bot/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  5517. package/slack-bot/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  5518. package/slack-bot/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  5519. package/slack-bot/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  5520. package/slack-bot/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  5521. package/slack-bot/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  5522. package/slack-bot/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  5523. package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/index.js +162 -0
  5524. package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/license.md +21 -0
  5525. package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/package.json +38 -0
  5526. package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/readme.md +59 -0
  5527. package/slack-bot/node_modules/jsonwebtoken/package.json +70 -0
  5528. package/slack-bot/node_modules/jsonwebtoken/sign.js +253 -0
  5529. package/slack-bot/node_modules/jsonwebtoken/verify.js +263 -0
  5530. package/slack-bot/node_modules/jwa/LICENSE +17 -0
  5531. package/slack-bot/node_modules/jwa/README.md +150 -0
  5532. package/slack-bot/node_modules/jwa/index.js +266 -0
  5533. package/slack-bot/node_modules/jwa/opslevel.yml +6 -0
  5534. package/slack-bot/node_modules/jwa/package.json +37 -0
  5535. package/slack-bot/node_modules/jws/CHANGELOG.md +56 -0
  5536. package/slack-bot/node_modules/jws/LICENSE +17 -0
  5537. package/slack-bot/node_modules/jws/index.js +22 -0
  5538. package/slack-bot/node_modules/jws/lib/data-stream.js +55 -0
  5539. package/slack-bot/node_modules/jws/lib/sign-stream.js +83 -0
  5540. package/slack-bot/node_modules/jws/lib/tostring.js +10 -0
  5541. package/slack-bot/node_modules/jws/lib/verify-stream.js +125 -0
  5542. package/slack-bot/node_modules/jws/opslevel.yml +6 -0
  5543. package/slack-bot/node_modules/jws/package.json +34 -0
  5544. package/slack-bot/node_modules/jws/readme.md +255 -0
  5545. package/slack-bot/node_modules/lodash.includes/LICENSE +47 -0
  5546. package/slack-bot/node_modules/lodash.includes/README.md +18 -0
  5547. package/slack-bot/node_modules/lodash.includes/index.js +745 -0
  5548. package/slack-bot/node_modules/lodash.includes/package.json +17 -0
  5549. package/slack-bot/node_modules/lodash.isboolean/LICENSE +22 -0
  5550. package/slack-bot/node_modules/lodash.isboolean/README.md +18 -0
  5551. package/slack-bot/node_modules/lodash.isboolean/index.js +70 -0
  5552. package/slack-bot/node_modules/lodash.isboolean/package.json +17 -0
  5553. package/slack-bot/node_modules/lodash.isinteger/LICENSE +47 -0
  5554. package/slack-bot/node_modules/lodash.isinteger/README.md +18 -0
  5555. package/slack-bot/node_modules/lodash.isinteger/index.js +265 -0
  5556. package/slack-bot/node_modules/lodash.isinteger/package.json +17 -0
  5557. package/slack-bot/node_modules/lodash.isnumber/LICENSE +22 -0
  5558. package/slack-bot/node_modules/lodash.isnumber/README.md +18 -0
  5559. package/slack-bot/node_modules/lodash.isnumber/index.js +79 -0
  5560. package/slack-bot/node_modules/lodash.isnumber/package.json +17 -0
  5561. package/slack-bot/node_modules/lodash.isplainobject/LICENSE +47 -0
  5562. package/slack-bot/node_modules/lodash.isplainobject/README.md +18 -0
  5563. package/slack-bot/node_modules/lodash.isplainobject/index.js +139 -0
  5564. package/slack-bot/node_modules/lodash.isplainobject/package.json +17 -0
  5565. package/slack-bot/node_modules/lodash.isstring/LICENSE +22 -0
  5566. package/slack-bot/node_modules/lodash.isstring/README.md +18 -0
  5567. package/slack-bot/node_modules/lodash.isstring/index.js +95 -0
  5568. package/slack-bot/node_modules/lodash.isstring/package.json +17 -0
  5569. package/slack-bot/node_modules/lodash.once/LICENSE +47 -0
  5570. package/slack-bot/node_modules/lodash.once/README.md +18 -0
  5571. package/slack-bot/node_modules/lodash.once/index.js +294 -0
  5572. package/slack-bot/node_modules/lodash.once/package.json +17 -0
  5573. package/slack-bot/node_modules/math-intrinsics/.eslintrc +16 -0
  5574. package/slack-bot/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  5575. package/slack-bot/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  5576. package/slack-bot/node_modules/math-intrinsics/LICENSE +21 -0
  5577. package/slack-bot/node_modules/math-intrinsics/README.md +50 -0
  5578. package/slack-bot/node_modules/math-intrinsics/abs.d.ts +1 -0
  5579. package/slack-bot/node_modules/math-intrinsics/abs.js +4 -0
  5580. package/slack-bot/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  5581. package/slack-bot/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  5582. package/slack-bot/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  5583. package/slack-bot/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  5584. package/slack-bot/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  5585. package/slack-bot/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  5586. package/slack-bot/node_modules/math-intrinsics/floor.d.ts +1 -0
  5587. package/slack-bot/node_modules/math-intrinsics/floor.js +4 -0
  5588. package/slack-bot/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  5589. package/slack-bot/node_modules/math-intrinsics/isFinite.js +12 -0
  5590. package/slack-bot/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  5591. package/slack-bot/node_modules/math-intrinsics/isInteger.js +16 -0
  5592. package/slack-bot/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  5593. package/slack-bot/node_modules/math-intrinsics/isNaN.js +6 -0
  5594. package/slack-bot/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  5595. package/slack-bot/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  5596. package/slack-bot/node_modules/math-intrinsics/max.d.ts +1 -0
  5597. package/slack-bot/node_modules/math-intrinsics/max.js +4 -0
  5598. package/slack-bot/node_modules/math-intrinsics/min.d.ts +1 -0
  5599. package/slack-bot/node_modules/math-intrinsics/min.js +4 -0
  5600. package/slack-bot/node_modules/math-intrinsics/mod.d.ts +3 -0
  5601. package/slack-bot/node_modules/math-intrinsics/mod.js +9 -0
  5602. package/slack-bot/node_modules/math-intrinsics/package.json +86 -0
  5603. package/slack-bot/node_modules/math-intrinsics/pow.d.ts +1 -0
  5604. package/slack-bot/node_modules/math-intrinsics/pow.js +4 -0
  5605. package/slack-bot/node_modules/math-intrinsics/round.d.ts +1 -0
  5606. package/slack-bot/node_modules/math-intrinsics/round.js +4 -0
  5607. package/slack-bot/node_modules/math-intrinsics/sign.d.ts +3 -0
  5608. package/slack-bot/node_modules/math-intrinsics/sign.js +11 -0
  5609. package/slack-bot/node_modules/math-intrinsics/test/index.js +192 -0
  5610. package/slack-bot/node_modules/math-intrinsics/tsconfig.json +3 -0
  5611. package/slack-bot/node_modules/media-typer/HISTORY.md +22 -0
  5612. package/slack-bot/node_modules/media-typer/LICENSE +22 -0
  5613. package/slack-bot/node_modules/media-typer/README.md +81 -0
  5614. package/slack-bot/node_modules/media-typer/index.js +270 -0
  5615. package/slack-bot/node_modules/media-typer/package.json +26 -0
  5616. package/slack-bot/node_modules/merge-descriptors/HISTORY.md +21 -0
  5617. package/slack-bot/node_modules/merge-descriptors/LICENSE +23 -0
  5618. package/slack-bot/node_modules/merge-descriptors/README.md +49 -0
  5619. package/slack-bot/node_modules/merge-descriptors/index.js +60 -0
  5620. package/slack-bot/node_modules/merge-descriptors/package.json +39 -0
  5621. package/slack-bot/node_modules/methods/HISTORY.md +29 -0
  5622. package/slack-bot/node_modules/methods/LICENSE +24 -0
  5623. package/slack-bot/node_modules/methods/README.md +51 -0
  5624. package/slack-bot/node_modules/methods/index.js +69 -0
  5625. package/slack-bot/node_modules/methods/package.json +36 -0
  5626. package/slack-bot/node_modules/mime/CHANGELOG.md +164 -0
  5627. package/slack-bot/node_modules/mime/LICENSE +21 -0
  5628. package/slack-bot/node_modules/mime/README.md +90 -0
  5629. package/slack-bot/node_modules/mime/cli.js +8 -0
  5630. package/slack-bot/node_modules/mime/mime.js +108 -0
  5631. package/slack-bot/node_modules/mime/package.json +44 -0
  5632. package/slack-bot/node_modules/mime/src/build.js +53 -0
  5633. package/slack-bot/node_modules/mime/src/test.js +60 -0
  5634. package/slack-bot/node_modules/mime/types.json +1 -0
  5635. package/slack-bot/node_modules/mime-db/HISTORY.md +507 -0
  5636. package/slack-bot/node_modules/mime-db/LICENSE +23 -0
  5637. package/slack-bot/node_modules/mime-db/README.md +100 -0
  5638. package/slack-bot/node_modules/mime-db/db.json +8519 -0
  5639. package/slack-bot/node_modules/mime-db/index.js +12 -0
  5640. package/slack-bot/node_modules/mime-db/package.json +60 -0
  5641. package/slack-bot/node_modules/mime-types/HISTORY.md +397 -0
  5642. package/slack-bot/node_modules/mime-types/LICENSE +23 -0
  5643. package/slack-bot/node_modules/mime-types/README.md +113 -0
  5644. package/slack-bot/node_modules/mime-types/index.js +188 -0
  5645. package/slack-bot/node_modules/mime-types/package.json +44 -0
  5646. package/slack-bot/node_modules/ms/index.js +152 -0
  5647. package/slack-bot/node_modules/ms/license.md +21 -0
  5648. package/slack-bot/node_modules/ms/package.json +37 -0
  5649. package/slack-bot/node_modules/ms/readme.md +51 -0
  5650. package/slack-bot/node_modules/negotiator/HISTORY.md +108 -0
  5651. package/slack-bot/node_modules/negotiator/LICENSE +24 -0
  5652. package/slack-bot/node_modules/negotiator/README.md +203 -0
  5653. package/slack-bot/node_modules/negotiator/index.js +82 -0
  5654. package/slack-bot/node_modules/negotiator/lib/charset.js +169 -0
  5655. package/slack-bot/node_modules/negotiator/lib/encoding.js +184 -0
  5656. package/slack-bot/node_modules/negotiator/lib/language.js +179 -0
  5657. package/slack-bot/node_modules/negotiator/lib/mediaType.js +294 -0
  5658. package/slack-bot/node_modules/negotiator/package.json +42 -0
  5659. package/slack-bot/node_modules/object-inspect/.eslintrc +53 -0
  5660. package/slack-bot/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  5661. package/slack-bot/node_modules/object-inspect/.nycrc +13 -0
  5662. package/slack-bot/node_modules/object-inspect/CHANGELOG.md +424 -0
  5663. package/slack-bot/node_modules/object-inspect/LICENSE +21 -0
  5664. package/slack-bot/node_modules/object-inspect/example/all.js +23 -0
  5665. package/slack-bot/node_modules/object-inspect/example/circular.js +6 -0
  5666. package/slack-bot/node_modules/object-inspect/example/fn.js +5 -0
  5667. package/slack-bot/node_modules/object-inspect/example/inspect.js +10 -0
  5668. package/slack-bot/node_modules/object-inspect/index.js +544 -0
  5669. package/slack-bot/node_modules/object-inspect/package-support.json +20 -0
  5670. package/slack-bot/node_modules/object-inspect/package.json +105 -0
  5671. package/slack-bot/node_modules/object-inspect/readme.markdown +84 -0
  5672. package/slack-bot/node_modules/object-inspect/test/bigint.js +58 -0
  5673. package/slack-bot/node_modules/object-inspect/test/browser/dom.js +15 -0
  5674. package/slack-bot/node_modules/object-inspect/test/circular.js +16 -0
  5675. package/slack-bot/node_modules/object-inspect/test/deep.js +12 -0
  5676. package/slack-bot/node_modules/object-inspect/test/element.js +53 -0
  5677. package/slack-bot/node_modules/object-inspect/test/err.js +48 -0
  5678. package/slack-bot/node_modules/object-inspect/test/fakes.js +29 -0
  5679. package/slack-bot/node_modules/object-inspect/test/fn.js +76 -0
  5680. package/slack-bot/node_modules/object-inspect/test/global.js +17 -0
  5681. package/slack-bot/node_modules/object-inspect/test/has.js +15 -0
  5682. package/slack-bot/node_modules/object-inspect/test/holes.js +15 -0
  5683. package/slack-bot/node_modules/object-inspect/test/indent-option.js +271 -0
  5684. package/slack-bot/node_modules/object-inspect/test/inspect.js +139 -0
  5685. package/slack-bot/node_modules/object-inspect/test/lowbyte.js +12 -0
  5686. package/slack-bot/node_modules/object-inspect/test/number.js +58 -0
  5687. package/slack-bot/node_modules/object-inspect/test/quoteStyle.js +26 -0
  5688. package/slack-bot/node_modules/object-inspect/test/toStringTag.js +40 -0
  5689. package/slack-bot/node_modules/object-inspect/test/undef.js +12 -0
  5690. package/slack-bot/node_modules/object-inspect/test/values.js +261 -0
  5691. package/slack-bot/node_modules/object-inspect/test-core-js.js +26 -0
  5692. package/slack-bot/node_modules/object-inspect/util.inspect.js +1 -0
  5693. package/slack-bot/node_modules/object-keys/.editorconfig +13 -0
  5694. package/slack-bot/node_modules/object-keys/.eslintrc +17 -0
  5695. package/slack-bot/node_modules/object-keys/.travis.yml +277 -0
  5696. package/slack-bot/node_modules/object-keys/CHANGELOG.md +232 -0
  5697. package/slack-bot/node_modules/object-keys/LICENSE +21 -0
  5698. package/slack-bot/node_modules/object-keys/README.md +76 -0
  5699. package/slack-bot/node_modules/object-keys/implementation.js +122 -0
  5700. package/slack-bot/node_modules/object-keys/index.js +32 -0
  5701. package/slack-bot/node_modules/object-keys/isArguments.js +17 -0
  5702. package/slack-bot/node_modules/object-keys/package.json +88 -0
  5703. package/slack-bot/node_modules/object-keys/test/index.js +5 -0
  5704. package/slack-bot/node_modules/object.assign/.editorconfig +20 -0
  5705. package/slack-bot/node_modules/object.assign/.eslintrc +28 -0
  5706. package/slack-bot/node_modules/object.assign/.github/FUNDING.yml +12 -0
  5707. package/slack-bot/node_modules/object.assign/.nycrc +9 -0
  5708. package/slack-bot/node_modules/object.assign/CHANGELOG.md +246 -0
  5709. package/slack-bot/node_modules/object.assign/LICENSE +21 -0
  5710. package/slack-bot/node_modules/object.assign/README.md +136 -0
  5711. package/slack-bot/node_modules/object.assign/auto.js +3 -0
  5712. package/slack-bot/node_modules/object.assign/dist/browser.js +1304 -0
  5713. package/slack-bot/node_modules/object.assign/hasSymbols.js +43 -0
  5714. package/slack-bot/node_modules/object.assign/implementation.js +46 -0
  5715. package/slack-bot/node_modules/object.assign/index.js +22 -0
  5716. package/slack-bot/node_modules/object.assign/package.json +96 -0
  5717. package/slack-bot/node_modules/object.assign/polyfill.js +55 -0
  5718. package/slack-bot/node_modules/object.assign/shim.js +14 -0
  5719. package/slack-bot/node_modules/object.assign/test/implementation.js +19 -0
  5720. package/slack-bot/node_modules/object.assign/test/index.js +17 -0
  5721. package/slack-bot/node_modules/object.assign/test/native.js +49 -0
  5722. package/slack-bot/node_modules/object.assign/test/ses-compat.js +12 -0
  5723. package/slack-bot/node_modules/object.assign/test/shimmed.js +52 -0
  5724. package/slack-bot/node_modules/object.assign/test/tests.js +232 -0
  5725. package/slack-bot/node_modules/on-finished/HISTORY.md +98 -0
  5726. package/slack-bot/node_modules/on-finished/LICENSE +23 -0
  5727. package/slack-bot/node_modules/on-finished/README.md +162 -0
  5728. package/slack-bot/node_modules/on-finished/index.js +234 -0
  5729. package/slack-bot/node_modules/on-finished/package.json +39 -0
  5730. package/slack-bot/node_modules/own-keys/.eslintrc +16 -0
  5731. package/slack-bot/node_modules/own-keys/.github/FUNDING.yml +12 -0
  5732. package/slack-bot/node_modules/own-keys/.nycrc +9 -0
  5733. package/slack-bot/node_modules/own-keys/CHANGELOG.md +23 -0
  5734. package/slack-bot/node_modules/own-keys/LICENSE +21 -0
  5735. package/slack-bot/node_modules/own-keys/README.md +45 -0
  5736. package/slack-bot/node_modules/own-keys/index.d.ts +3 -0
  5737. package/slack-bot/node_modules/own-keys/index.js +21 -0
  5738. package/slack-bot/node_modules/own-keys/package.json +91 -0
  5739. package/slack-bot/node_modules/own-keys/test/index.js +72 -0
  5740. package/slack-bot/node_modules/own-keys/tsconfig.json +9 -0
  5741. package/slack-bot/node_modules/p-finally/index.js +15 -0
  5742. package/slack-bot/node_modules/p-finally/license +21 -0
  5743. package/slack-bot/node_modules/p-finally/package.json +42 -0
  5744. package/slack-bot/node_modules/p-finally/readme.md +47 -0
  5745. package/slack-bot/node_modules/p-queue/dist/index.d.ts +101 -0
  5746. package/slack-bot/node_modules/p-queue/dist/index.js +279 -0
  5747. package/slack-bot/node_modules/p-queue/dist/lower-bound.d.ts +1 -0
  5748. package/slack-bot/node_modules/p-queue/dist/lower-bound.js +21 -0
  5749. package/slack-bot/node_modules/p-queue/dist/options.d.ts +64 -0
  5750. package/slack-bot/node_modules/p-queue/dist/options.js +2 -0
  5751. package/slack-bot/node_modules/p-queue/dist/priority-queue.d.ts +12 -0
  5752. package/slack-bot/node_modules/p-queue/dist/priority-queue.js +32 -0
  5753. package/slack-bot/node_modules/p-queue/dist/queue.d.ts +7 -0
  5754. package/slack-bot/node_modules/p-queue/dist/queue.js +2 -0
  5755. package/slack-bot/node_modules/p-queue/license +9 -0
  5756. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/LICENSE +21 -0
  5757. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/README.md +94 -0
  5758. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/index.d.ts +134 -0
  5759. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/index.js +336 -0
  5760. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/package.json +56 -0
  5761. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
  5762. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
  5763. package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
  5764. package/slack-bot/node_modules/p-queue/package.json +92 -0
  5765. package/slack-bot/node_modules/p-queue/readme.md +400 -0
  5766. package/slack-bot/node_modules/p-retry/index.d.ts +106 -0
  5767. package/slack-bot/node_modules/p-retry/index.js +85 -0
  5768. package/slack-bot/node_modules/p-retry/license +9 -0
  5769. package/slack-bot/node_modules/p-retry/package.json +51 -0
  5770. package/slack-bot/node_modules/p-retry/readme.md +148 -0
  5771. package/slack-bot/node_modules/p-timeout/index.d.ts +72 -0
  5772. package/slack-bot/node_modules/p-timeout/index.js +57 -0
  5773. package/slack-bot/node_modules/p-timeout/license +9 -0
  5774. package/slack-bot/node_modules/p-timeout/package.json +45 -0
  5775. package/slack-bot/node_modules/p-timeout/readme.md +87 -0
  5776. package/slack-bot/node_modules/parseurl/HISTORY.md +58 -0
  5777. package/slack-bot/node_modules/parseurl/LICENSE +24 -0
  5778. package/slack-bot/node_modules/parseurl/README.md +133 -0
  5779. package/slack-bot/node_modules/parseurl/index.js +158 -0
  5780. package/slack-bot/node_modules/parseurl/package.json +40 -0
  5781. package/slack-bot/node_modules/path-to-regexp/LICENSE +21 -0
  5782. package/slack-bot/node_modules/path-to-regexp/Readme.md +224 -0
  5783. package/slack-bot/node_modules/path-to-regexp/dist/index.d.ts +144 -0
  5784. package/slack-bot/node_modules/path-to-regexp/dist/index.js +409 -0
  5785. package/slack-bot/node_modules/path-to-regexp/dist/index.js.map +1 -0
  5786. package/slack-bot/node_modules/path-to-regexp/package.json +64 -0
  5787. package/slack-bot/node_modules/possible-typed-array-names/.eslintrc +5 -0
  5788. package/slack-bot/node_modules/possible-typed-array-names/.github/FUNDING.yml +12 -0
  5789. package/slack-bot/node_modules/possible-typed-array-names/CHANGELOG.md +29 -0
  5790. package/slack-bot/node_modules/possible-typed-array-names/LICENSE +21 -0
  5791. package/slack-bot/node_modules/possible-typed-array-names/README.md +50 -0
  5792. package/slack-bot/node_modules/possible-typed-array-names/index.d.ts +16 -0
  5793. package/slack-bot/node_modules/possible-typed-array-names/index.js +17 -0
  5794. package/slack-bot/node_modules/possible-typed-array-names/package.json +84 -0
  5795. package/slack-bot/node_modules/possible-typed-array-names/test/index.js +19 -0
  5796. package/slack-bot/node_modules/possible-typed-array-names/tsconfig.json +9 -0
  5797. package/slack-bot/node_modules/promise.allsettled/.editorconfig +20 -0
  5798. package/slack-bot/node_modules/promise.allsettled/.eslintrc +17 -0
  5799. package/slack-bot/node_modules/promise.allsettled/.nycrc +9 -0
  5800. package/slack-bot/node_modules/promise.allsettled/CHANGELOG.md +108 -0
  5801. package/slack-bot/node_modules/promise.allsettled/LICENSE +21 -0
  5802. package/slack-bot/node_modules/promise.allsettled/README.md +60 -0
  5803. package/slack-bot/node_modules/promise.allsettled/auto.js +3 -0
  5804. package/slack-bot/node_modules/promise.allsettled/implementation.js +37 -0
  5805. package/slack-bot/node_modules/promise.allsettled/index.js +25 -0
  5806. package/slack-bot/node_modules/promise.allsettled/package.json +92 -0
  5807. package/slack-bot/node_modules/promise.allsettled/polyfill.js +10 -0
  5808. package/slack-bot/node_modules/promise.allsettled/requirePromise.js +7 -0
  5809. package/slack-bot/node_modules/promise.allsettled/shim.js +18 -0
  5810. package/slack-bot/node_modules/promise.allsettled/test/.eslintrc +12 -0
  5811. package/slack-bot/node_modules/promise.allsettled/test/builtin.js +30 -0
  5812. package/slack-bot/node_modules/promise.allsettled/test/implementation.js +30 -0
  5813. package/slack-bot/node_modules/promise.allsettled/test/index.js +21 -0
  5814. package/slack-bot/node_modules/promise.allsettled/test/native.js +11 -0
  5815. package/slack-bot/node_modules/promise.allsettled/test/promise-shimmed.js +7 -0
  5816. package/slack-bot/node_modules/promise.allsettled/test/shimmed.js +13 -0
  5817. package/slack-bot/node_modules/promise.allsettled/test/tests.js +134 -0
  5818. package/slack-bot/node_modules/proxy-addr/HISTORY.md +161 -0
  5819. package/slack-bot/node_modules/proxy-addr/LICENSE +22 -0
  5820. package/slack-bot/node_modules/proxy-addr/README.md +139 -0
  5821. package/slack-bot/node_modules/proxy-addr/index.js +327 -0
  5822. package/slack-bot/node_modules/proxy-addr/package.json +47 -0
  5823. package/slack-bot/node_modules/proxy-from-env/.eslintrc +29 -0
  5824. package/slack-bot/node_modules/proxy-from-env/.travis.yml +10 -0
  5825. package/slack-bot/node_modules/proxy-from-env/LICENSE +20 -0
  5826. package/slack-bot/node_modules/proxy-from-env/README.md +131 -0
  5827. package/slack-bot/node_modules/proxy-from-env/index.js +108 -0
  5828. package/slack-bot/node_modules/proxy-from-env/package.json +34 -0
  5829. package/slack-bot/node_modules/proxy-from-env/test.js +483 -0
  5830. package/slack-bot/node_modules/qs/.editorconfig +46 -0
  5831. package/slack-bot/node_modules/qs/.github/FUNDING.yml +12 -0
  5832. package/slack-bot/node_modules/qs/.github/SECURITY.md +11 -0
  5833. package/slack-bot/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  5834. package/slack-bot/node_modules/qs/.nycrc +13 -0
  5835. package/slack-bot/node_modules/qs/CHANGELOG.md +644 -0
  5836. package/slack-bot/node_modules/qs/LICENSE.md +29 -0
  5837. package/slack-bot/node_modules/qs/README.md +740 -0
  5838. package/slack-bot/node_modules/qs/dist/qs.js +141 -0
  5839. package/slack-bot/node_modules/qs/eslint.config.mjs +56 -0
  5840. package/slack-bot/node_modules/qs/lib/formats.js +23 -0
  5841. package/slack-bot/node_modules/qs/lib/index.js +11 -0
  5842. package/slack-bot/node_modules/qs/lib/parse.js +371 -0
  5843. package/slack-bot/node_modules/qs/lib/stringify.js +356 -0
  5844. package/slack-bot/node_modules/qs/lib/utils.js +340 -0
  5845. package/slack-bot/node_modules/qs/package.json +94 -0
  5846. package/slack-bot/node_modules/qs/test/empty-keys-cases.js +267 -0
  5847. package/slack-bot/node_modules/qs/test/parse.js +1512 -0
  5848. package/slack-bot/node_modules/qs/test/stringify.js +1310 -0
  5849. package/slack-bot/node_modules/qs/test/utils.js +397 -0
  5850. package/slack-bot/node_modules/range-parser/HISTORY.md +56 -0
  5851. package/slack-bot/node_modules/range-parser/LICENSE +23 -0
  5852. package/slack-bot/node_modules/range-parser/README.md +84 -0
  5853. package/slack-bot/node_modules/range-parser/index.js +162 -0
  5854. package/slack-bot/node_modules/range-parser/package.json +44 -0
  5855. package/slack-bot/node_modules/raw-body/LICENSE +22 -0
  5856. package/slack-bot/node_modules/raw-body/README.md +223 -0
  5857. package/slack-bot/node_modules/raw-body/index.d.ts +87 -0
  5858. package/slack-bot/node_modules/raw-body/index.js +336 -0
  5859. package/slack-bot/node_modules/raw-body/package.json +47 -0
  5860. package/slack-bot/node_modules/reflect.getprototypeof/.eslintrc +17 -0
  5861. package/slack-bot/node_modules/reflect.getprototypeof/.nycrc +9 -0
  5862. package/slack-bot/node_modules/reflect.getprototypeof/CHANGELOG.md +115 -0
  5863. package/slack-bot/node_modules/reflect.getprototypeof/LICENSE +21 -0
  5864. package/slack-bot/node_modules/reflect.getprototypeof/README.md +77 -0
  5865. package/slack-bot/node_modules/reflect.getprototypeof/auto.js +3 -0
  5866. package/slack-bot/node_modules/reflect.getprototypeof/implementation.js +40 -0
  5867. package/slack-bot/node_modules/reflect.getprototypeof/index.js +18 -0
  5868. package/slack-bot/node_modules/reflect.getprototypeof/package.json +98 -0
  5869. package/slack-bot/node_modules/reflect.getprototypeof/polyfill.js +14 -0
  5870. package/slack-bot/node_modules/reflect.getprototypeof/shim.js +21 -0
  5871. package/slack-bot/node_modules/reflect.getprototypeof/test/implementation.js +11 -0
  5872. package/slack-bot/node_modules/reflect.getprototypeof/test/index.js +11 -0
  5873. package/slack-bot/node_modules/reflect.getprototypeof/test/shimmed.js +28 -0
  5874. package/slack-bot/node_modules/reflect.getprototypeof/test/tests.js +33 -0
  5875. package/slack-bot/node_modules/regexp.prototype.flags/.editorconfig +13 -0
  5876. package/slack-bot/node_modules/regexp.prototype.flags/.eslintrc +20 -0
  5877. package/slack-bot/node_modules/regexp.prototype.flags/.nycrc +9 -0
  5878. package/slack-bot/node_modules/regexp.prototype.flags/CHANGELOG.md +249 -0
  5879. package/slack-bot/node_modules/regexp.prototype.flags/LICENSE +22 -0
  5880. package/slack-bot/node_modules/regexp.prototype.flags/README.md +55 -0
  5881. package/slack-bot/node_modules/regexp.prototype.flags/auto.js +3 -0
  5882. package/slack-bot/node_modules/regexp.prototype.flags/implementation.js +39 -0
  5883. package/slack-bot/node_modules/regexp.prototype.flags/index.js +18 -0
  5884. package/slack-bot/node_modules/regexp.prototype.flags/package.json +105 -0
  5885. package/slack-bot/node_modules/regexp.prototype.flags/polyfill.js +39 -0
  5886. package/slack-bot/node_modules/regexp.prototype.flags/shim.js +26 -0
  5887. package/slack-bot/node_modules/regexp.prototype.flags/test/builtin.js +46 -0
  5888. package/slack-bot/node_modules/regexp.prototype.flags/test/implementation.js +20 -0
  5889. package/slack-bot/node_modules/regexp.prototype.flags/test/index.js +17 -0
  5890. package/slack-bot/node_modules/regexp.prototype.flags/test/shimmed.js +48 -0
  5891. package/slack-bot/node_modules/regexp.prototype.flags/test/tests.js +143 -0
  5892. package/slack-bot/node_modules/retry/License +21 -0
  5893. package/slack-bot/node_modules/retry/README.md +227 -0
  5894. package/slack-bot/node_modules/retry/example/dns.js +31 -0
  5895. package/slack-bot/node_modules/retry/example/stop.js +40 -0
  5896. package/slack-bot/node_modules/retry/index.js +1 -0
  5897. package/slack-bot/node_modules/retry/lib/retry.js +100 -0
  5898. package/slack-bot/node_modules/retry/lib/retry_operation.js +162 -0
  5899. package/slack-bot/node_modules/retry/package.json +36 -0
  5900. package/slack-bot/node_modules/safe-array-concat/.eslintrc +15 -0
  5901. package/slack-bot/node_modules/safe-array-concat/.github/FUNDING.yml +12 -0
  5902. package/slack-bot/node_modules/safe-array-concat/.nycrc +13 -0
  5903. package/slack-bot/node_modules/safe-array-concat/CHANGELOG.md +69 -0
  5904. package/slack-bot/node_modules/safe-array-concat/LICENSE +21 -0
  5905. package/slack-bot/node_modules/safe-array-concat/README.md +53 -0
  5906. package/slack-bot/node_modules/safe-array-concat/index.d.ts +3 -0
  5907. package/slack-bot/node_modules/safe-array-concat/index.js +43 -0
  5908. package/slack-bot/node_modules/safe-array-concat/package.json +90 -0
  5909. package/slack-bot/node_modules/safe-array-concat/test/index.js +100 -0
  5910. package/slack-bot/node_modules/safe-array-concat/tsconfig.json +9 -0
  5911. package/slack-bot/node_modules/safe-buffer/LICENSE +21 -0
  5912. package/slack-bot/node_modules/safe-buffer/README.md +584 -0
  5913. package/slack-bot/node_modules/safe-buffer/index.d.ts +187 -0
  5914. package/slack-bot/node_modules/safe-buffer/index.js +65 -0
  5915. package/slack-bot/node_modules/safe-buffer/package.json +51 -0
  5916. package/slack-bot/node_modules/safe-push-apply/.eslintrc +15 -0
  5917. package/slack-bot/node_modules/safe-push-apply/.github/FUNDING.yml +12 -0
  5918. package/slack-bot/node_modules/safe-push-apply/.nycrc +13 -0
  5919. package/slack-bot/node_modules/safe-push-apply/CHANGELOG.md +15 -0
  5920. package/slack-bot/node_modules/safe-push-apply/LICENSE +21 -0
  5921. package/slack-bot/node_modules/safe-push-apply/README.md +59 -0
  5922. package/slack-bot/node_modules/safe-push-apply/index.d.ts +6 -0
  5923. package/slack-bot/node_modules/safe-push-apply/index.js +15 -0
  5924. package/slack-bot/node_modules/safe-push-apply/package.json +82 -0
  5925. package/slack-bot/node_modules/safe-push-apply/test/index.js +30 -0
  5926. package/slack-bot/node_modules/safe-push-apply/tsconfig.json +9 -0
  5927. package/slack-bot/node_modules/safe-regex-test/.eslintrc +9 -0
  5928. package/slack-bot/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
  5929. package/slack-bot/node_modules/safe-regex-test/.nycrc +13 -0
  5930. package/slack-bot/node_modules/safe-regex-test/CHANGELOG.md +55 -0
  5931. package/slack-bot/node_modules/safe-regex-test/LICENSE +21 -0
  5932. package/slack-bot/node_modules/safe-regex-test/README.md +46 -0
  5933. package/slack-bot/node_modules/safe-regex-test/index.d.ts +3 -0
  5934. package/slack-bot/node_modules/safe-regex-test/index.js +17 -0
  5935. package/slack-bot/node_modules/safe-regex-test/package.json +87 -0
  5936. package/slack-bot/node_modules/safe-regex-test/test/index.js +41 -0
  5937. package/slack-bot/node_modules/safe-regex-test/tsconfig.json +9 -0
  5938. package/slack-bot/node_modules/safer-buffer/LICENSE +21 -0
  5939. package/slack-bot/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  5940. package/slack-bot/node_modules/safer-buffer/Readme.md +156 -0
  5941. package/slack-bot/node_modules/safer-buffer/dangerous.js +58 -0
  5942. package/slack-bot/node_modules/safer-buffer/package.json +34 -0
  5943. package/slack-bot/node_modules/safer-buffer/safer.js +77 -0
  5944. package/slack-bot/node_modules/safer-buffer/tests.js +406 -0
  5945. package/slack-bot/node_modules/semver/LICENSE +15 -0
  5946. package/slack-bot/node_modules/semver/README.md +665 -0
  5947. package/slack-bot/node_modules/semver/bin/semver.js +191 -0
  5948. package/slack-bot/node_modules/semver/classes/comparator.js +143 -0
  5949. package/slack-bot/node_modules/semver/classes/index.js +7 -0
  5950. package/slack-bot/node_modules/semver/classes/range.js +557 -0
  5951. package/slack-bot/node_modules/semver/classes/semver.js +333 -0
  5952. package/slack-bot/node_modules/semver/functions/clean.js +8 -0
  5953. package/slack-bot/node_modules/semver/functions/cmp.js +54 -0
  5954. package/slack-bot/node_modules/semver/functions/coerce.js +62 -0
  5955. package/slack-bot/node_modules/semver/functions/compare-build.js +9 -0
  5956. package/slack-bot/node_modules/semver/functions/compare-loose.js +5 -0
  5957. package/slack-bot/node_modules/semver/functions/compare.js +7 -0
  5958. package/slack-bot/node_modules/semver/functions/diff.js +60 -0
  5959. package/slack-bot/node_modules/semver/functions/eq.js +5 -0
  5960. package/slack-bot/node_modules/semver/functions/gt.js +5 -0
  5961. package/slack-bot/node_modules/semver/functions/gte.js +5 -0
  5962. package/slack-bot/node_modules/semver/functions/inc.js +21 -0
  5963. package/slack-bot/node_modules/semver/functions/lt.js +5 -0
  5964. package/slack-bot/node_modules/semver/functions/lte.js +5 -0
  5965. package/slack-bot/node_modules/semver/functions/major.js +5 -0
  5966. package/slack-bot/node_modules/semver/functions/minor.js +5 -0
  5967. package/slack-bot/node_modules/semver/functions/neq.js +5 -0
  5968. package/slack-bot/node_modules/semver/functions/parse.js +18 -0
  5969. package/slack-bot/node_modules/semver/functions/patch.js +5 -0
  5970. package/slack-bot/node_modules/semver/functions/prerelease.js +8 -0
  5971. package/slack-bot/node_modules/semver/functions/rcompare.js +5 -0
  5972. package/slack-bot/node_modules/semver/functions/rsort.js +5 -0
  5973. package/slack-bot/node_modules/semver/functions/satisfies.js +12 -0
  5974. package/slack-bot/node_modules/semver/functions/sort.js +5 -0
  5975. package/slack-bot/node_modules/semver/functions/valid.js +8 -0
  5976. package/slack-bot/node_modules/semver/index.js +91 -0
  5977. package/slack-bot/node_modules/semver/internal/constants.js +37 -0
  5978. package/slack-bot/node_modules/semver/internal/debug.js +11 -0
  5979. package/slack-bot/node_modules/semver/internal/identifiers.js +29 -0
  5980. package/slack-bot/node_modules/semver/internal/lrucache.js +42 -0
  5981. package/slack-bot/node_modules/semver/internal/parse-options.js +17 -0
  5982. package/slack-bot/node_modules/semver/internal/re.js +223 -0
  5983. package/slack-bot/node_modules/semver/package.json +78 -0
  5984. package/slack-bot/node_modules/semver/preload.js +4 -0
  5985. package/slack-bot/node_modules/semver/range.bnf +16 -0
  5986. package/slack-bot/node_modules/semver/ranges/gtr.js +6 -0
  5987. package/slack-bot/node_modules/semver/ranges/intersects.js +9 -0
  5988. package/slack-bot/node_modules/semver/ranges/ltr.js +6 -0
  5989. package/slack-bot/node_modules/semver/ranges/max-satisfying.js +27 -0
  5990. package/slack-bot/node_modules/semver/ranges/min-satisfying.js +26 -0
  5991. package/slack-bot/node_modules/semver/ranges/min-version.js +63 -0
  5992. package/slack-bot/node_modules/semver/ranges/outside.js +82 -0
  5993. package/slack-bot/node_modules/semver/ranges/simplify.js +49 -0
  5994. package/slack-bot/node_modules/semver/ranges/subset.js +249 -0
  5995. package/slack-bot/node_modules/semver/ranges/to-comparators.js +10 -0
  5996. package/slack-bot/node_modules/semver/ranges/valid.js +13 -0
  5997. package/slack-bot/node_modules/send/HISTORY.md +538 -0
  5998. package/slack-bot/node_modules/send/LICENSE +23 -0
  5999. package/slack-bot/node_modules/send/README.md +327 -0
  6000. package/slack-bot/node_modules/send/SECURITY.md +24 -0
  6001. package/slack-bot/node_modules/send/index.js +1142 -0
  6002. package/slack-bot/node_modules/send/node_modules/ms/index.js +162 -0
  6003. package/slack-bot/node_modules/send/node_modules/ms/license.md +21 -0
  6004. package/slack-bot/node_modules/send/node_modules/ms/package.json +38 -0
  6005. package/slack-bot/node_modules/send/node_modules/ms/readme.md +59 -0
  6006. package/slack-bot/node_modules/send/package.json +62 -0
  6007. package/slack-bot/node_modules/serve-static/HISTORY.md +493 -0
  6008. package/slack-bot/node_modules/serve-static/LICENSE +25 -0
  6009. package/slack-bot/node_modules/serve-static/README.md +257 -0
  6010. package/slack-bot/node_modules/serve-static/index.js +209 -0
  6011. package/slack-bot/node_modules/serve-static/package.json +42 -0
  6012. package/slack-bot/node_modules/set-function-length/.eslintrc +27 -0
  6013. package/slack-bot/node_modules/set-function-length/.github/FUNDING.yml +12 -0
  6014. package/slack-bot/node_modules/set-function-length/.nycrc +13 -0
  6015. package/slack-bot/node_modules/set-function-length/CHANGELOG.md +70 -0
  6016. package/slack-bot/node_modules/set-function-length/LICENSE +21 -0
  6017. package/slack-bot/node_modules/set-function-length/README.md +56 -0
  6018. package/slack-bot/node_modules/set-function-length/env.d.ts +9 -0
  6019. package/slack-bot/node_modules/set-function-length/env.js +25 -0
  6020. package/slack-bot/node_modules/set-function-length/index.d.ts +7 -0
  6021. package/slack-bot/node_modules/set-function-length/index.js +42 -0
  6022. package/slack-bot/node_modules/set-function-length/package.json +102 -0
  6023. package/slack-bot/node_modules/set-function-length/tsconfig.json +9 -0
  6024. package/slack-bot/node_modules/set-function-name/.eslintrc +21 -0
  6025. package/slack-bot/node_modules/set-function-name/.github/FUNDING.yml +12 -0
  6026. package/slack-bot/node_modules/set-function-name/CHANGELOG.md +48 -0
  6027. package/slack-bot/node_modules/set-function-name/LICENSE +21 -0
  6028. package/slack-bot/node_modules/set-function-name/README.md +61 -0
  6029. package/slack-bot/node_modules/set-function-name/index.d.ts +5 -0
  6030. package/slack-bot/node_modules/set-function-name/index.js +23 -0
  6031. package/slack-bot/node_modules/set-function-name/package.json +99 -0
  6032. package/slack-bot/node_modules/set-function-name/tsconfig.json +59 -0
  6033. package/slack-bot/node_modules/set-proto/.eslintrc +10 -0
  6034. package/slack-bot/node_modules/set-proto/.github/FUNDING.yml +12 -0
  6035. package/slack-bot/node_modules/set-proto/.nycrc +9 -0
  6036. package/slack-bot/node_modules/set-proto/CHANGELOG.md +15 -0
  6037. package/slack-bot/node_modules/set-proto/LICENSE +21 -0
  6038. package/slack-bot/node_modules/set-proto/Object.setPrototypeOf.d.ts +8 -0
  6039. package/slack-bot/node_modules/set-proto/Object.setPrototypeOf.js +6 -0
  6040. package/slack-bot/node_modules/set-proto/README.md +52 -0
  6041. package/slack-bot/node_modules/set-proto/Reflect.setPrototypeOf.d.ts +3 -0
  6042. package/slack-bot/node_modules/set-proto/Reflect.setPrototypeOf.js +4 -0
  6043. package/slack-bot/node_modules/set-proto/index.d.ts +8 -0
  6044. package/slack-bot/node_modules/set-proto/index.js +25 -0
  6045. package/slack-bot/node_modules/set-proto/package.json +82 -0
  6046. package/slack-bot/node_modules/set-proto/test/index.js +40 -0
  6047. package/slack-bot/node_modules/set-proto/tsconfig.json +9 -0
  6048. package/slack-bot/node_modules/setprototypeof/LICENSE +13 -0
  6049. package/slack-bot/node_modules/setprototypeof/README.md +31 -0
  6050. package/slack-bot/node_modules/setprototypeof/index.d.ts +2 -0
  6051. package/slack-bot/node_modules/setprototypeof/index.js +17 -0
  6052. package/slack-bot/node_modules/setprototypeof/package.json +38 -0
  6053. package/slack-bot/node_modules/setprototypeof/test/index.js +24 -0
  6054. package/slack-bot/node_modules/side-channel/.editorconfig +9 -0
  6055. package/slack-bot/node_modules/side-channel/.eslintrc +12 -0
  6056. package/slack-bot/node_modules/side-channel/.github/FUNDING.yml +12 -0
  6057. package/slack-bot/node_modules/side-channel/.nycrc +13 -0
  6058. package/slack-bot/node_modules/side-channel/CHANGELOG.md +110 -0
  6059. package/slack-bot/node_modules/side-channel/LICENSE +21 -0
  6060. package/slack-bot/node_modules/side-channel/README.md +61 -0
  6061. package/slack-bot/node_modules/side-channel/index.d.ts +14 -0
  6062. package/slack-bot/node_modules/side-channel/index.js +43 -0
  6063. package/slack-bot/node_modules/side-channel/package.json +85 -0
  6064. package/slack-bot/node_modules/side-channel/test/index.js +104 -0
  6065. package/slack-bot/node_modules/side-channel/tsconfig.json +9 -0
  6066. package/slack-bot/node_modules/side-channel-list/.editorconfig +9 -0
  6067. package/slack-bot/node_modules/side-channel-list/.eslintrc +11 -0
  6068. package/slack-bot/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  6069. package/slack-bot/node_modules/side-channel-list/.nycrc +13 -0
  6070. package/slack-bot/node_modules/side-channel-list/CHANGELOG.md +15 -0
  6071. package/slack-bot/node_modules/side-channel-list/LICENSE +21 -0
  6072. package/slack-bot/node_modules/side-channel-list/README.md +62 -0
  6073. package/slack-bot/node_modules/side-channel-list/index.d.ts +13 -0
  6074. package/slack-bot/node_modules/side-channel-list/index.js +113 -0
  6075. package/slack-bot/node_modules/side-channel-list/list.d.ts +14 -0
  6076. package/slack-bot/node_modules/side-channel-list/package.json +77 -0
  6077. package/slack-bot/node_modules/side-channel-list/test/index.js +104 -0
  6078. package/slack-bot/node_modules/side-channel-list/tsconfig.json +9 -0
  6079. package/slack-bot/node_modules/side-channel-map/.editorconfig +9 -0
  6080. package/slack-bot/node_modules/side-channel-map/.eslintrc +11 -0
  6081. package/slack-bot/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  6082. package/slack-bot/node_modules/side-channel-map/.nycrc +13 -0
  6083. package/slack-bot/node_modules/side-channel-map/CHANGELOG.md +22 -0
  6084. package/slack-bot/node_modules/side-channel-map/LICENSE +21 -0
  6085. package/slack-bot/node_modules/side-channel-map/README.md +62 -0
  6086. package/slack-bot/node_modules/side-channel-map/index.d.ts +15 -0
  6087. package/slack-bot/node_modules/side-channel-map/index.js +68 -0
  6088. package/slack-bot/node_modules/side-channel-map/package.json +80 -0
  6089. package/slack-bot/node_modules/side-channel-map/test/index.js +114 -0
  6090. package/slack-bot/node_modules/side-channel-map/tsconfig.json +9 -0
  6091. package/slack-bot/node_modules/side-channel-weakmap/.editorconfig +9 -0
  6092. package/slack-bot/node_modules/side-channel-weakmap/.eslintrc +12 -0
  6093. package/slack-bot/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  6094. package/slack-bot/node_modules/side-channel-weakmap/.nycrc +13 -0
  6095. package/slack-bot/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  6096. package/slack-bot/node_modules/side-channel-weakmap/LICENSE +21 -0
  6097. package/slack-bot/node_modules/side-channel-weakmap/README.md +62 -0
  6098. package/slack-bot/node_modules/side-channel-weakmap/index.d.ts +15 -0
  6099. package/slack-bot/node_modules/side-channel-weakmap/index.js +84 -0
  6100. package/slack-bot/node_modules/side-channel-weakmap/package.json +87 -0
  6101. package/slack-bot/node_modules/side-channel-weakmap/test/index.js +114 -0
  6102. package/slack-bot/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  6103. package/slack-bot/node_modules/statuses/HISTORY.md +87 -0
  6104. package/slack-bot/node_modules/statuses/LICENSE +23 -0
  6105. package/slack-bot/node_modules/statuses/README.md +139 -0
  6106. package/slack-bot/node_modules/statuses/codes.json +65 -0
  6107. package/slack-bot/node_modules/statuses/index.js +146 -0
  6108. package/slack-bot/node_modules/statuses/package.json +49 -0
  6109. package/slack-bot/node_modules/stop-iteration-iterator/.eslintrc +14 -0
  6110. package/slack-bot/node_modules/stop-iteration-iterator/.github/FUNDING.yml +12 -0
  6111. package/slack-bot/node_modules/stop-iteration-iterator/.nycrc +13 -0
  6112. package/slack-bot/node_modules/stop-iteration-iterator/CHANGELOG.md +31 -0
  6113. package/slack-bot/node_modules/stop-iteration-iterator/LICENSE +21 -0
  6114. package/slack-bot/node_modules/stop-iteration-iterator/README.md +42 -0
  6115. package/slack-bot/node_modules/stop-iteration-iterator/index.d.ts +7 -0
  6116. package/slack-bot/node_modules/stop-iteration-iterator/index.js +46 -0
  6117. package/slack-bot/node_modules/stop-iteration-iterator/package.json +77 -0
  6118. package/slack-bot/node_modules/stop-iteration-iterator/test/index.js +51 -0
  6119. package/slack-bot/node_modules/stop-iteration-iterator/tsconfig.json +6 -0
  6120. package/slack-bot/node_modules/string.prototype.trim/.editorconfig +20 -0
  6121. package/slack-bot/node_modules/string.prototype.trim/.eslintrc +25 -0
  6122. package/slack-bot/node_modules/string.prototype.trim/.nycrc +9 -0
  6123. package/slack-bot/node_modules/string.prototype.trim/CHANGELOG.md +202 -0
  6124. package/slack-bot/node_modules/string.prototype.trim/LICENSE +21 -0
  6125. package/slack-bot/node_modules/string.prototype.trim/README.md +48 -0
  6126. package/slack-bot/node_modules/string.prototype.trim/auto.js +3 -0
  6127. package/slack-bot/node_modules/string.prototype.trim/implementation.js +21 -0
  6128. package/slack-bot/node_modules/string.prototype.trim/index.js +23 -0
  6129. package/slack-bot/node_modules/string.prototype.trim/package.json +106 -0
  6130. package/slack-bot/node_modules/string.prototype.trim/polyfill.js +19 -0
  6131. package/slack-bot/node_modules/string.prototype.trim/shim.js +20 -0
  6132. package/slack-bot/node_modules/string.prototype.trim/test/implementation.js +21 -0
  6133. package/slack-bot/node_modules/string.prototype.trim/test/index.js +17 -0
  6134. package/slack-bot/node_modules/string.prototype.trim/test/shimmed.js +36 -0
  6135. package/slack-bot/node_modules/string.prototype.trim/test/tests.js +62 -0
  6136. package/slack-bot/node_modules/string.prototype.trimend/.editorconfig +20 -0
  6137. package/slack-bot/node_modules/string.prototype.trimend/.eslintrc +24 -0
  6138. package/slack-bot/node_modules/string.prototype.trimend/.nycrc +9 -0
  6139. package/slack-bot/node_modules/string.prototype.trimend/CHANGELOG.md +128 -0
  6140. package/slack-bot/node_modules/string.prototype.trimend/LICENSE +21 -0
  6141. package/slack-bot/node_modules/string.prototype.trimend/README.md +46 -0
  6142. package/slack-bot/node_modules/string.prototype.trimend/auto.js +3 -0
  6143. package/slack-bot/node_modules/string.prototype.trimend/implementation.js +15 -0
  6144. package/slack-bot/node_modules/string.prototype.trimend/index.js +23 -0
  6145. package/slack-bot/node_modules/string.prototype.trimend/package.json +83 -0
  6146. package/slack-bot/node_modules/string.prototype.trimend/polyfill.js +15 -0
  6147. package/slack-bot/node_modules/string.prototype.trimend/shim.js +14 -0
  6148. package/slack-bot/node_modules/string.prototype.trimend/test/implementation.js +20 -0
  6149. package/slack-bot/node_modules/string.prototype.trimend/test/index.js +17 -0
  6150. package/slack-bot/node_modules/string.prototype.trimend/test/shimmed.js +36 -0
  6151. package/slack-bot/node_modules/string.prototype.trimend/test/tests.js +31 -0
  6152. package/slack-bot/node_modules/string.prototype.trimstart/.editorconfig +20 -0
  6153. package/slack-bot/node_modules/string.prototype.trimstart/.eslintrc +24 -0
  6154. package/slack-bot/node_modules/string.prototype.trimstart/.nycrc +9 -0
  6155. package/slack-bot/node_modules/string.prototype.trimstart/CHANGELOG.md +118 -0
  6156. package/slack-bot/node_modules/string.prototype.trimstart/LICENSE +21 -0
  6157. package/slack-bot/node_modules/string.prototype.trimstart/README.md +46 -0
  6158. package/slack-bot/node_modules/string.prototype.trimstart/auto.js +3 -0
  6159. package/slack-bot/node_modules/string.prototype.trimstart/implementation.js +15 -0
  6160. package/slack-bot/node_modules/string.prototype.trimstart/index.js +23 -0
  6161. package/slack-bot/node_modules/string.prototype.trimstart/package.json +82 -0
  6162. package/slack-bot/node_modules/string.prototype.trimstart/polyfill.js +15 -0
  6163. package/slack-bot/node_modules/string.prototype.trimstart/shim.js +14 -0
  6164. package/slack-bot/node_modules/string.prototype.trimstart/test/implementation.js +20 -0
  6165. package/slack-bot/node_modules/string.prototype.trimstart/test/index.js +18 -0
  6166. package/slack-bot/node_modules/string.prototype.trimstart/test/shimmed.js +36 -0
  6167. package/slack-bot/node_modules/string.prototype.trimstart/test/tests.js +31 -0
  6168. package/slack-bot/node_modules/toidentifier/HISTORY.md +9 -0
  6169. package/slack-bot/node_modules/toidentifier/LICENSE +21 -0
  6170. package/slack-bot/node_modules/toidentifier/README.md +61 -0
  6171. package/slack-bot/node_modules/toidentifier/index.js +32 -0
  6172. package/slack-bot/node_modules/toidentifier/package.json +38 -0
  6173. package/slack-bot/node_modules/tsscmp/.travis.yml +18 -0
  6174. package/slack-bot/node_modules/tsscmp/LICENSE +21 -0
  6175. package/slack-bot/node_modules/tsscmp/README.md +48 -0
  6176. package/slack-bot/node_modules/tsscmp/appveyor.yml +29 -0
  6177. package/slack-bot/node_modules/tsscmp/lib/index.js +38 -0
  6178. package/slack-bot/node_modules/tsscmp/package.json +29 -0
  6179. package/slack-bot/node_modules/tsscmp/test/benchmark/index.js +30 -0
  6180. package/slack-bot/node_modules/tsscmp/test/unit/index.js +69 -0
  6181. package/slack-bot/node_modules/type-is/HISTORY.md +259 -0
  6182. package/slack-bot/node_modules/type-is/LICENSE +23 -0
  6183. package/slack-bot/node_modules/type-is/README.md +170 -0
  6184. package/slack-bot/node_modules/type-is/index.js +266 -0
  6185. package/slack-bot/node_modules/type-is/package.json +45 -0
  6186. package/slack-bot/node_modules/typed-array-buffer/.eslintrc +13 -0
  6187. package/slack-bot/node_modules/typed-array-buffer/.github/FUNDING.yml +12 -0
  6188. package/slack-bot/node_modules/typed-array-buffer/.nycrc +13 -0
  6189. package/slack-bot/node_modules/typed-array-buffer/CHANGELOG.md +50 -0
  6190. package/slack-bot/node_modules/typed-array-buffer/LICENSE +21 -0
  6191. package/slack-bot/node_modules/typed-array-buffer/README.md +42 -0
  6192. package/slack-bot/node_modules/typed-array-buffer/index.d.ts +9 -0
  6193. package/slack-bot/node_modules/typed-array-buffer/index.js +19 -0
  6194. package/slack-bot/node_modules/typed-array-buffer/package.json +82 -0
  6195. package/slack-bot/node_modules/typed-array-buffer/test/index.js +23 -0
  6196. package/slack-bot/node_modules/typed-array-buffer/tsconfig.json +9 -0
  6197. package/slack-bot/node_modules/typed-array-byte-length/.eslintrc +12 -0
  6198. package/slack-bot/node_modules/typed-array-byte-length/.github/FUNDING.yml +12 -0
  6199. package/slack-bot/node_modules/typed-array-byte-length/.nycrc +13 -0
  6200. package/slack-bot/node_modules/typed-array-byte-length/CHANGELOG.md +44 -0
  6201. package/slack-bot/node_modules/typed-array-byte-length/LICENSE +21 -0
  6202. package/slack-bot/node_modules/typed-array-byte-length/README.md +70 -0
  6203. package/slack-bot/node_modules/typed-array-byte-length/index.d.ts +10 -0
  6204. package/slack-bot/node_modules/typed-array-byte-length/index.js +85 -0
  6205. package/slack-bot/node_modules/typed-array-byte-length/package.json +113 -0
  6206. package/slack-bot/node_modules/typed-array-byte-length/test/index.js +83 -0
  6207. package/slack-bot/node_modules/typed-array-byte-length/tsconfig.json +9 -0
  6208. package/slack-bot/node_modules/typed-array-byte-offset/.eslintrc +8 -0
  6209. package/slack-bot/node_modules/typed-array-byte-offset/.github/FUNDING.yml +12 -0
  6210. package/slack-bot/node_modules/typed-array-byte-offset/.nycrc +13 -0
  6211. package/slack-bot/node_modules/typed-array-byte-offset/CHANGELOG.md +61 -0
  6212. package/slack-bot/node_modules/typed-array-byte-offset/LICENSE +21 -0
  6213. package/slack-bot/node_modules/typed-array-byte-offset/README.md +70 -0
  6214. package/slack-bot/node_modules/typed-array-byte-offset/index.d.ts +14 -0
  6215. package/slack-bot/node_modules/typed-array-byte-offset/index.js +79 -0
  6216. package/slack-bot/node_modules/typed-array-byte-offset/package.json +116 -0
  6217. package/slack-bot/node_modules/typed-array-byte-offset/test/index.js +78 -0
  6218. package/slack-bot/node_modules/typed-array-byte-offset/tsconfig.json +10 -0
  6219. package/slack-bot/node_modules/typed-array-length/.eslintrc +11 -0
  6220. package/slack-bot/node_modules/typed-array-length/.github/FUNDING.yml +12 -0
  6221. package/slack-bot/node_modules/typed-array-length/.nycrc +13 -0
  6222. package/slack-bot/node_modules/typed-array-length/CHANGELOG.md +106 -0
  6223. package/slack-bot/node_modules/typed-array-length/LICENSE +21 -0
  6224. package/slack-bot/node_modules/typed-array-length/README.md +64 -0
  6225. package/slack-bot/node_modules/typed-array-length/index.d.ts +23 -0
  6226. package/slack-bot/node_modules/typed-array-length/index.js +80 -0
  6227. package/slack-bot/node_modules/typed-array-length/package.json +110 -0
  6228. package/slack-bot/node_modules/typed-array-length/test/index.js +74 -0
  6229. package/slack-bot/node_modules/typed-array-length/tsconfig.json +10 -0
  6230. package/slack-bot/node_modules/unbox-primitive/.editorconfig +20 -0
  6231. package/slack-bot/node_modules/unbox-primitive/.eslintrc +5 -0
  6232. package/slack-bot/node_modules/unbox-primitive/.github/FUNDING.yml +12 -0
  6233. package/slack-bot/node_modules/unbox-primitive/.nycrc +13 -0
  6234. package/slack-bot/node_modules/unbox-primitive/CHANGELOG.md +79 -0
  6235. package/slack-bot/node_modules/unbox-primitive/LICENSE +21 -0
  6236. package/slack-bot/node_modules/unbox-primitive/README.md +47 -0
  6237. package/slack-bot/node_modules/unbox-primitive/index.d.ts +13 -0
  6238. package/slack-bot/node_modules/unbox-primitive/index.js +42 -0
  6239. package/slack-bot/node_modules/unbox-primitive/package.json +84 -0
  6240. package/slack-bot/node_modules/unbox-primitive/test/index.js +59 -0
  6241. package/slack-bot/node_modules/unbox-primitive/tsconfig.json +6 -0
  6242. package/slack-bot/node_modules/undici-types/LICENSE +21 -0
  6243. package/slack-bot/node_modules/undici-types/README.md +6 -0
  6244. package/slack-bot/node_modules/undici-types/agent.d.ts +32 -0
  6245. package/slack-bot/node_modules/undici-types/api.d.ts +43 -0
  6246. package/slack-bot/node_modules/undici-types/balanced-pool.d.ts +30 -0
  6247. package/slack-bot/node_modules/undici-types/cache-interceptor.d.ts +173 -0
  6248. package/slack-bot/node_modules/undici-types/cache.d.ts +36 -0
  6249. package/slack-bot/node_modules/undici-types/client-stats.d.ts +15 -0
  6250. package/slack-bot/node_modules/undici-types/client.d.ts +108 -0
  6251. package/slack-bot/node_modules/undici-types/connector.d.ts +34 -0
  6252. package/slack-bot/node_modules/undici-types/content-type.d.ts +21 -0
  6253. package/slack-bot/node_modules/undici-types/cookies.d.ts +30 -0
  6254. package/slack-bot/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  6255. package/slack-bot/node_modules/undici-types/dispatcher.d.ts +276 -0
  6256. package/slack-bot/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  6257. package/slack-bot/node_modules/undici-types/errors.d.ts +161 -0
  6258. package/slack-bot/node_modules/undici-types/eventsource.d.ts +66 -0
  6259. package/slack-bot/node_modules/undici-types/fetch.d.ts +211 -0
  6260. package/slack-bot/node_modules/undici-types/formdata.d.ts +108 -0
  6261. package/slack-bot/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  6262. package/slack-bot/node_modules/undici-types/global-origin.d.ts +7 -0
  6263. package/slack-bot/node_modules/undici-types/h2c-client.d.ts +73 -0
  6264. package/slack-bot/node_modules/undici-types/handlers.d.ts +15 -0
  6265. package/slack-bot/node_modules/undici-types/header.d.ts +160 -0
  6266. package/slack-bot/node_modules/undici-types/index.d.ts +88 -0
  6267. package/slack-bot/node_modules/undici-types/interceptors.d.ts +73 -0
  6268. package/slack-bot/node_modules/undici-types/mock-agent.d.ts +68 -0
  6269. package/slack-bot/node_modules/undici-types/mock-call-history.d.ts +111 -0
  6270. package/slack-bot/node_modules/undici-types/mock-client.d.ts +27 -0
  6271. package/slack-bot/node_modules/undici-types/mock-errors.d.ts +12 -0
  6272. package/slack-bot/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  6273. package/slack-bot/node_modules/undici-types/mock-pool.d.ts +27 -0
  6274. package/slack-bot/node_modules/undici-types/package.json +55 -0
  6275. package/slack-bot/node_modules/undici-types/patch.d.ts +29 -0
  6276. package/slack-bot/node_modules/undici-types/pool-stats.d.ts +19 -0
  6277. package/slack-bot/node_modules/undici-types/pool.d.ts +41 -0
  6278. package/slack-bot/node_modules/undici-types/proxy-agent.d.ts +29 -0
  6279. package/slack-bot/node_modules/undici-types/readable.d.ts +68 -0
  6280. package/slack-bot/node_modules/undici-types/retry-agent.d.ts +8 -0
  6281. package/slack-bot/node_modules/undici-types/retry-handler.d.ts +125 -0
  6282. package/slack-bot/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  6283. package/slack-bot/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  6284. package/slack-bot/node_modules/undici-types/util.d.ts +18 -0
  6285. package/slack-bot/node_modules/undici-types/utility.d.ts +7 -0
  6286. package/slack-bot/node_modules/undici-types/webidl.d.ts +341 -0
  6287. package/slack-bot/node_modules/undici-types/websocket.d.ts +186 -0
  6288. package/slack-bot/node_modules/unpipe/HISTORY.md +4 -0
  6289. package/slack-bot/node_modules/unpipe/LICENSE +22 -0
  6290. package/slack-bot/node_modules/unpipe/README.md +43 -0
  6291. package/slack-bot/node_modules/unpipe/index.js +69 -0
  6292. package/slack-bot/node_modules/unpipe/package.json +27 -0
  6293. package/slack-bot/node_modules/utils-merge/LICENSE +20 -0
  6294. package/slack-bot/node_modules/utils-merge/README.md +34 -0
  6295. package/slack-bot/node_modules/utils-merge/index.js +23 -0
  6296. package/slack-bot/node_modules/utils-merge/package.json +40 -0
  6297. package/slack-bot/node_modules/vary/HISTORY.md +39 -0
  6298. package/slack-bot/node_modules/vary/LICENSE +22 -0
  6299. package/slack-bot/node_modules/vary/README.md +101 -0
  6300. package/slack-bot/node_modules/vary/index.js +149 -0
  6301. package/slack-bot/node_modules/vary/package.json +43 -0
  6302. package/slack-bot/node_modules/which-boxed-primitive/.editorconfig +20 -0
  6303. package/slack-bot/node_modules/which-boxed-primitive/.eslintrc +5 -0
  6304. package/slack-bot/node_modules/which-boxed-primitive/.github/FUNDING.yml +12 -0
  6305. package/slack-bot/node_modules/which-boxed-primitive/.nycrc +13 -0
  6306. package/slack-bot/node_modules/which-boxed-primitive/CHANGELOG.md +82 -0
  6307. package/slack-bot/node_modules/which-boxed-primitive/LICENSE +21 -0
  6308. package/slack-bot/node_modules/which-boxed-primitive/README.md +73 -0
  6309. package/slack-bot/node_modules/which-boxed-primitive/index.d.ts +11 -0
  6310. package/slack-bot/node_modules/which-boxed-primitive/index.js +31 -0
  6311. package/slack-bot/node_modules/which-boxed-primitive/package.json +83 -0
  6312. package/slack-bot/node_modules/which-boxed-primitive/test/index.js +46 -0
  6313. package/slack-bot/node_modules/which-boxed-primitive/tsconfig.json +9 -0
  6314. package/slack-bot/node_modules/which-builtin-type/.eslintrc +14 -0
  6315. package/slack-bot/node_modules/which-builtin-type/.nycrc +9 -0
  6316. package/slack-bot/node_modules/which-builtin-type/CHANGELOG.md +113 -0
  6317. package/slack-bot/node_modules/which-builtin-type/LICENSE +21 -0
  6318. package/slack-bot/node_modules/which-builtin-type/README.md +67 -0
  6319. package/slack-bot/node_modules/which-builtin-type/index.d.ts +21 -0
  6320. package/slack-bot/node_modules/which-builtin-type/index.js +132 -0
  6321. package/slack-bot/node_modules/which-builtin-type/package.json +111 -0
  6322. package/slack-bot/node_modules/which-builtin-type/test/index.js +184 -0
  6323. package/slack-bot/node_modules/which-builtin-type/tsconfig.json +9 -0
  6324. package/slack-bot/node_modules/which-collection/.eslintrc +5 -0
  6325. package/slack-bot/node_modules/which-collection/.github/FUNDING.yml +12 -0
  6326. package/slack-bot/node_modules/which-collection/.nycrc +13 -0
  6327. package/slack-bot/node_modules/which-collection/CHANGELOG.md +63 -0
  6328. package/slack-bot/node_modules/which-collection/LICENSE +21 -0
  6329. package/slack-bot/node_modules/which-collection/README.md +65 -0
  6330. package/slack-bot/node_modules/which-collection/index.d.ts +13 -0
  6331. package/slack-bot/node_modules/which-collection/index.js +25 -0
  6332. package/slack-bot/node_modules/which-collection/package.json +85 -0
  6333. package/slack-bot/node_modules/which-collection/test/index.js +59 -0
  6334. package/slack-bot/node_modules/which-collection/tsconfig.json +49 -0
  6335. package/slack-bot/node_modules/which-typed-array/.editorconfig +20 -0
  6336. package/slack-bot/node_modules/which-typed-array/.eslintrc +10 -0
  6337. package/slack-bot/node_modules/which-typed-array/.github/FUNDING.yml +12 -0
  6338. package/slack-bot/node_modules/which-typed-array/.nycrc +13 -0
  6339. package/slack-bot/node_modules/which-typed-array/CHANGELOG.md +269 -0
  6340. package/slack-bot/node_modules/which-typed-array/LICENSE +22 -0
  6341. package/slack-bot/node_modules/which-typed-array/README.md +70 -0
  6342. package/slack-bot/node_modules/which-typed-array/index.d.ts +66 -0
  6343. package/slack-bot/node_modules/which-typed-array/index.js +122 -0
  6344. package/slack-bot/node_modules/which-typed-array/package.json +130 -0
  6345. package/slack-bot/node_modules/which-typed-array/test/index.js +105 -0
  6346. package/slack-bot/node_modules/which-typed-array/tsconfig.json +9 -0
  6347. package/slack-bot/node_modules/ws/LICENSE +21 -0
  6348. package/slack-bot/node_modules/ws/README.md +495 -0
  6349. package/slack-bot/node_modules/ws/browser.js +8 -0
  6350. package/slack-bot/node_modules/ws/index.js +10 -0
  6351. package/slack-bot/node_modules/ws/lib/buffer-util.js +129 -0
  6352. package/slack-bot/node_modules/ws/lib/constants.js +10 -0
  6353. package/slack-bot/node_modules/ws/lib/event-target.js +184 -0
  6354. package/slack-bot/node_modules/ws/lib/extension.js +223 -0
  6355. package/slack-bot/node_modules/ws/lib/limiter.js +55 -0
  6356. package/slack-bot/node_modules/ws/lib/permessage-deflate.js +518 -0
  6357. package/slack-bot/node_modules/ws/lib/receiver.js +607 -0
  6358. package/slack-bot/node_modules/ws/lib/sender.js +409 -0
  6359. package/slack-bot/node_modules/ws/lib/stream.js +180 -0
  6360. package/slack-bot/node_modules/ws/lib/validation.js +104 -0
  6361. package/slack-bot/node_modules/ws/lib/websocket-server.js +449 -0
  6362. package/slack-bot/node_modules/ws/lib/websocket.js +1197 -0
  6363. package/slack-bot/node_modules/ws/package.json +56 -0
  6364. package/slack-bot/package-lock.json +2794 -0
  6365. package/slack-bot/package.json +22 -0
  6366. package/slack-bot/setup.js +51 -0
  6367. package/slack-bot/src/config.js +100 -0
  6368. package/slack-bot/src/handlers/app-mention.js +38 -0
  6369. package/slack-bot/src/index.js +31 -0
  6370. package/slack-bot/src/utils/report.js +38 -0
  6371. package/slack-bot/src/workers/qa-job.js +111 -0
@@ -0,0 +1,1416 @@
1
+ # Changelog
2
+
3
+ ## [1.13.3](https://github.com/axios/axios/compare/v1.13.2...v1.13.3) (2026-01-20)
4
+
5
+ ### Bug Fixes
6
+
7
+ - **http2:** Use port 443 for HTTPS connections by default. ([#7256](https://github.com/axios/axios/issues/7256)) ([d7e6065](https://github.com/axios/axios/commit/d7e60653460480ffacecf85383012ca1baa6263e))
8
+ - **interceptor:** handle the error in the same interceptor ([#6269](https://github.com/axios/axios/issues/6269)) ([5945e40](https://github.com/axios/axios/commit/5945e40bb171d4ac4fc195df276cf952244f0f89))
9
+ - main field in package.json should correspond to cjs artifacts ([#5756](https://github.com/axios/axios/issues/5756)) ([7373fbf](https://github.com/axios/axios/commit/7373fbff24cd92ce650d99ff6f7fe08c2e2a0a04))
10
+ - **package.json:** add 'bun' package.json 'exports' condition. Load the Node.js build in Bun instead of the browser build ([#5754](https://github.com/axios/axios/issues/5754)) ([b89217e](https://github.com/axios/axios/commit/b89217e3e91de17a3d55e2b8f39ceb0e9d8aeda8))
11
+ - silentJSONParsing=false should throw on invalid JSON ([#7253](https://github.com/axios/axios/issues/7253)) ([#7257](https://github.com/axios/axios/issues/7257)) ([7d19335](https://github.com/axios/axios/commit/7d19335e43d6754a1a9a66e424f7f7da259895bf))
12
+ - turn AxiosError into a native error ([#5394](https://github.com/axios/axios/issues/5394)) ([#5558](https://github.com/axios/axios/issues/5558)) ([1c6a86d](https://github.com/axios/axios/commit/1c6a86dd2c0623ee1af043a8491dbc96d40e883b))
13
+ - **types:** add handlers to AxiosInterceptorManager interface ([#5551](https://github.com/axios/axios/issues/5551)) ([8d1271b](https://github.com/axios/axios/commit/8d1271b49fc226ed7defd07cd577bd69a55bb13a))
14
+ - **types:** restore AxiosError.cause type from unknown to Error ([#7327](https://github.com/axios/axios/issues/7327)) ([d8233d9](https://github.com/axios/axios/commit/d8233d9e8e9a64bfba9bbe01d475ba417510b82b))
15
+ - unclear error message is thrown when specifying an empty proxy authorization ([#6314](https://github.com/axios/axios/issues/6314)) ([6ef867e](https://github.com/axios/axios/commit/6ef867e684adf7fb2343e3b29a79078a3c76dc29))
16
+
17
+ ### Features
18
+
19
+ - add `undefined` as a value in AxiosRequestConfig ([#5560](https://github.com/axios/axios/issues/5560)) ([095033c](https://github.com/axios/axios/commit/095033c626895ecdcda2288050b63dcf948db3bd))
20
+ - add automatic minor and patch upgrades to dependabot ([#6053](https://github.com/axios/axios/issues/6053)) ([65a7584](https://github.com/axios/axios/commit/65a7584eda6164980ddb8cf5372f0afa2a04c1ed))
21
+ - add Node.js coverage script using c8 (closes [#7289](https://github.com/axios/axios/issues/7289)) ([#7294](https://github.com/axios/axios/issues/7294)) ([ec9d94e](https://github.com/axios/axios/commit/ec9d94e9f88da13e9219acadf65061fb38ce080a))
22
+ - added copilot instructions ([3f83143](https://github.com/axios/axios/commit/3f83143bfe617eec17f9d7dcf8bafafeeae74c26))
23
+ - compatibility with frozen prototypes ([#6265](https://github.com/axios/axios/issues/6265)) ([860e033](https://github.com/axios/axios/commit/860e03396a536e9b926dacb6570732489c9d7012))
24
+ - enhance pipeFileToResponse with error handling ([#7169](https://github.com/axios/axios/issues/7169)) ([88d7884](https://github.com/axios/axios/commit/88d78842541610692a04282233933d078a8a2552))
25
+ - **types:** Intellisense for string literals in a widened union ([#6134](https://github.com/axios/axios/issues/6134)) ([f73474d](https://github.com/axios/axios/commit/f73474d02c5aa957b2daeecee65508557fd3c6e5)), closes [/github.com/microsoft/TypeScript/issues/33471#issuecomment-1376364329](https://github.com//github.com/microsoft/TypeScript/issues/33471/issues/issuecomment-1376364329)
26
+
27
+ ### Reverts
28
+
29
+ - Revert "fix: silentJSONParsing=false should throw on invalid JSON (#7253) (#7…" (#7298) ([a4230f5](https://github.com/axios/axios/commit/a4230f5581b3f58b6ff531b6dbac377a4fd7942a)), closes [#7253](https://github.com/axios/axios/issues/7253) [#7](https://github.com/axios/axios/issues/7) [#7298](https://github.com/axios/axios/issues/7298)
30
+ - **deps:** bump peter-evans/create-pull-request from 7 to 8 in the github-actions group ([#7334](https://github.com/axios/axios/issues/7334)) ([2d6ad5e](https://github.com/axios/axios/commit/2d6ad5e48bd29b0b2b5e7e95fb473df98301543a))
31
+
32
+ ### Contributors to this release
33
+
34
+ - <img src="https://avatars.githubusercontent.com/u/175160345?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ashvin Tiwari](https://github.com/ashvin2005 '+1752/-4 (#7218 #7218 )')
35
+ - <img src="https://avatars.githubusercontent.com/u/71729144?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Nikunj Mochi](https://github.com/mochinikunj '+940/-12 (#7294 #7294 )')
36
+ - <img src="https://avatars.githubusercontent.com/u/128113546?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Anchal Singh](https://github.com/imanchalsingh '+544/-102 (#7169 #7185 )')
37
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [jasonsaayman](https://github.com/jasonsaayman '+317/-73 (#7334 #7298 )')
38
+ - <img src="https://avatars.githubusercontent.com/u/377911?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Julian Dax](https://github.com/brodo '+99/-120 (#5558 )')
39
+ - <img src="https://avatars.githubusercontent.com/u/184285082?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Akash Dhar Dubey](https://github.com/AKASHDHARDUBEY '+167/-0 (#7287 #7288 )')
40
+ - <img src="https://avatars.githubusercontent.com/u/145687605?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Madhumita](https://github.com/madhumitaaa '+20/-68 (#7198 )')
41
+ - <img src="https://avatars.githubusercontent.com/u/24915252?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Tackoil](https://github.com/Tackoil '+80/-2 (#6269 )')
42
+ - <img src="https://avatars.githubusercontent.com/u/145078271?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Justin Dhillon](https://github.com/justindhillon '+41/-41 (#6324 #6315 )')
43
+ - <img src="https://avatars.githubusercontent.com/u/184138832?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rudransh](https://github.com/Rudrxxx '+71/-2 (#7257 )')
44
+ - <img src="https://avatars.githubusercontent.com/u/146366930?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [WuMingDao](https://github.com/WuMingDao '+36/-36 (#7215 )')
45
+ - <img src="https://avatars.githubusercontent.com/u/46827243?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [codenomnom](https://github.com/codenomnom '+70/-0 (#7201 #7201 )')
46
+ - <img src="https://avatars.githubusercontent.com/u/189698992?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Nandan Acharya](https://github.com/Nandann018-ux '+60/-10 (#7272 )')
47
+ - <img src="https://avatars.githubusercontent.com/u/7225168?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Eric Dubé](https://github.com/KernelDeimos '+22/-40 (#7042 )')
48
+ - <img src="https://avatars.githubusercontent.com/u/915045?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Tibor Pilz](https://github.com/tiborpilz '+40/-4 (#5551 )')
49
+ - <img src="https://avatars.githubusercontent.com/u/23138717?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Gabriel Quaresma](https://github.com/joaoGabriel55 '+31/-4 (#6314 )')
50
+ - <img src="https://avatars.githubusercontent.com/u/21505?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Turadg Aleahmad](https://github.com/turadg '+23/-6 (#6265 )')
51
+ - <img src="https://avatars.githubusercontent.com/u/4273631?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [JohnTitor](https://github.com/kiritosan '+14/-14 (#6155 )')
52
+ - <img src="https://avatars.githubusercontent.com/u/39668736?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [rohit miryala](https://github.com/rohitmiryala '+22/-0 (#7250 )')
53
+ - <img src="https://avatars.githubusercontent.com/u/30316250?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Wilson Mun](https://github.com/wmundev '+20/-0 (#6053 )')
54
+ - <img src="https://avatars.githubusercontent.com/u/184506226?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [techcodie](https://github.com/techcodie '+7/-7 (#7236 )')
55
+ - <img src="https://avatars.githubusercontent.com/u/187598667?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ved Vadnere](https://github.com/Archis009 '+5/-6 (#7283 )')
56
+ - <img src="https://avatars.githubusercontent.com/u/115612815?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [svihpinc](https://github.com/svihpinc '+5/-3 (#6134 )')
57
+ - <img src="https://avatars.githubusercontent.com/u/123884782?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [SANDESH LENDVE](https://github.com/mrsandy1965 '+3/-3 (#7246 )')
58
+ - <img src="https://avatars.githubusercontent.com/u/12529395?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lubos](https://github.com/mrlubos '+5/-1 (#7312 )')
59
+ - <img src="https://avatars.githubusercontent.com/u/709451?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jarred Sumner](https://github.com/Jarred-Sumner '+5/-1 (#5754 )')
60
+ - <img src="https://avatars.githubusercontent.com/u/17907922?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Adam Hines](https://github.com/thebanjomatic '+2/-1 (#5756 )')
61
+ - <img src="https://avatars.githubusercontent.com/u/177472603?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Subhan Kumar Rai](https://github.com/Subhan030 '+2/-1 (#7256 )')
62
+ - <img src="https://avatars.githubusercontent.com/u/6473925?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Joseph Frazier](https://github.com/josephfrazier '+1/-1 (#7311 )')
63
+ - <img src="https://avatars.githubusercontent.com/u/184906930?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [KT0803](https://github.com/KT0803 '+0/-2 (#7229 )')
64
+ - <img src="https://avatars.githubusercontent.com/u/6703955?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Albie](https://github.com/AlbertoSadoc '+1/-1 (#5560 )')
65
+ - <img src="https://avatars.githubusercontent.com/u/9452325?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jake Hayes](https://github.com/thejayhaykid '+1/-0 (#5999 )')
66
+
67
+ ## [1.13.2](https://github.com/axios/axios/compare/v1.13.1...v1.13.2) (2025-11-04)
68
+
69
+ ### Bug Fixes
70
+
71
+ - **http:** fix 'socket hang up' bug for keep-alive requests when using timeouts; ([#7206](https://github.com/axios/axios/issues/7206)) ([8d37233](https://github.com/axios/axios/commit/8d372335f5c50ecd01e8615f2468a9eb19703117))
72
+ - **http:** use default export for http2 module to support stubs; ([#7196](https://github.com/axios/axios/issues/7196)) ([0588880](https://github.com/axios/axios/commit/0588880ac7ddba7594ef179930493884b7e90bf5))
73
+
74
+ ### Performance Improvements
75
+
76
+ - **http:** fix early loop exit; ([#7202](https://github.com/axios/axios/issues/7202)) ([12c314b](https://github.com/axios/axios/commit/12c314b603e7852a157e93e47edb626a471ba6c5))
77
+
78
+ ### Contributors to this release
79
+
80
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+28/-9 (#7206 #7202 )')
81
+ - <img src="https://avatars.githubusercontent.com/u/1174718?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kasper Isager Dalsgarð](https://github.com/kasperisager '+9/-9 (#7196 )')
82
+
83
+ ## [1.13.1](https://github.com/axios/axios/compare/v1.13.0...v1.13.1) (2025-10-28)
84
+
85
+ ### Bug Fixes
86
+
87
+ - **http:** fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; ([#7193](https://github.com/axios/axios/issues/7193)) ([bcd5581](https://github.com/axios/axios/commit/bcd5581d208cd372055afdcb2fd10b68ca40613c))
88
+
89
+ ### Contributors to this release
90
+
91
+ - <img src="https://avatars.githubusercontent.com/u/128113546?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Anchal Singh](https://github.com/imanchalsingh '+220/-111 (#7173 )')
92
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+18/-1 (#7193 )')
93
+
94
+ # [1.13.0](https://github.com/axios/axios/compare/v1.12.2...v1.13.0) (2025-10-27)
95
+
96
+ ### Bug Fixes
97
+
98
+ - **fetch:** prevent TypeError when config.env is undefined ([#7155](https://github.com/axios/axios/issues/7155)) ([015faec](https://github.com/axios/axios/commit/015faeca9f26db76f9562760f04bb9f8229f4db1))
99
+ - resolve issue [#7131](https://github.com/axios/axios/issues/7131) (added spacing in mergeConfig.js) ([#7133](https://github.com/axios/axios/issues/7133)) ([9b9ec98](https://github.com/axios/axios/commit/9b9ec98548d93e9f2204deea10a5f1528bf3ce62))
100
+
101
+ ### Features
102
+
103
+ - **http:** add HTTP2 support; ([#7150](https://github.com/axios/axios/issues/7150)) ([d676df7](https://github.com/axios/axios/commit/d676df772244726533ca320f42e967f5af056bac))
104
+
105
+ ### Contributors to this release
106
+
107
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+794/-180 (#7186 #7150 #7039 )')
108
+ - <img src="https://avatars.githubusercontent.com/u/189505037?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Noritaka Kobayashi](https://github.com/noritaka1166 '+24/-509 (#7032 )')
109
+ - <img src="https://avatars.githubusercontent.com/u/195581631?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aviraj2929](https://github.com/Aviraj2929 '+211/-93 (#7136 #7135 #7134 #7112 )')
110
+ - <img src="https://avatars.githubusercontent.com/u/181717941?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [prasoon patel](https://github.com/Prasoon52 '+167/-6 (#7099 )')
111
+ - <img src="https://avatars.githubusercontent.com/u/141911040?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Samyak Dandge](https://github.com/Samy-in '+134/-0 (#7171 )')
112
+ - <img src="https://avatars.githubusercontent.com/u/128113546?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Anchal Singh](https://github.com/imanchalsingh '+53/-56 (#7170 )')
113
+ - <img src="https://avatars.githubusercontent.com/u/146073621?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rahul Kumar](https://github.com/jaiyankargupta '+28/-28 (#7073 )')
114
+ - <img src="https://avatars.githubusercontent.com/u/148716794?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Amit Verma](https://github.com/Amitverma0509 '+24/-13 (#7129 )')
115
+ - <img src="https://avatars.githubusercontent.com/u/141427581?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Abhishek3880](https://github.com/abhishekmaniy '+23/-4 (#7119 #7117 #7116 #7115 )')
116
+ - <img src="https://avatars.githubusercontent.com/u/91522146?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dhvani Maktuporia](https://github.com/Dhvani365 '+14/-5 (#7175 )')
117
+ - <img src="https://avatars.githubusercontent.com/u/41838423?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Usama Ayoub](https://github.com/sam3690 '+4/-4 (#7133 )')
118
+ - <img src="https://avatars.githubusercontent.com/u/79366821?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [ikuy1203](https://github.com/ikuy1203 '+3/-3 (#7166 )')
119
+ - <img src="https://avatars.githubusercontent.com/u/74639234?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Nikhil Simon Toppo](https://github.com/Kirito-Excalibur '+1/-1 (#7172 )')
120
+ - <img src="https://avatars.githubusercontent.com/u/200562195?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jane Wangari](https://github.com/Wangarijane '+1/-1 (#7155 )')
121
+ - <img src="https://avatars.githubusercontent.com/u/78318848?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Supakorn Ieamgomol](https://github.com/Supakornn '+1/-1 (#7065 )')
122
+ - <img src="https://avatars.githubusercontent.com/u/134518?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kian-Meng Ang](https://github.com/kianmeng '+1/-1 (#7046 )')
123
+ - <img src="https://avatars.githubusercontent.com/u/13148112?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [UTSUMI Keiji](https://github.com/k-utsumi '+1/-1 (#7037 )')
124
+
125
+ ## [1.12.2](https://github.com/axios/axios/compare/v1.12.1...v1.12.2) (2025-09-14)
126
+
127
+ ### Bug Fixes
128
+
129
+ - **fetch:** use current global fetch instead of cached one when env fetch is not specified to keep MSW support; ([#7030](https://github.com/axios/axios/issues/7030)) ([cf78825](https://github.com/axios/axios/commit/cf78825e1229b60d1629ad0bbc8a752ff43c3f53))
130
+
131
+ ### Contributors to this release
132
+
133
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+247/-16 (#7030 #7022 #7024 )')
134
+ - <img src="https://avatars.githubusercontent.com/u/189505037?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Noritaka Kobayashi](https://github.com/noritaka1166 '+2/-6 (#7028 #7029 )')
135
+
136
+ ## [1.12.1](https://github.com/axios/axios/compare/v1.12.0...v1.12.1) (2025-09-12)
137
+
138
+ ### Bug Fixes
139
+
140
+ - **types:** fixed env config types; ([#7020](https://github.com/axios/axios/issues/7020)) ([b5f26b7](https://github.com/axios/axios/commit/b5f26b75bdd9afa95016fb67d0cab15fc74cbf05))
141
+
142
+ ### Contributors to this release
143
+
144
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+10/-4 (#7020 )')
145
+
146
+ # [1.12.0](https://github.com/axios/axios/compare/v1.11.0...v1.12.0) (2025-09-11)
147
+
148
+ ### Bug Fixes
149
+
150
+ - adding build artifacts ([9ec86de](https://github.com/axios/axios/commit/9ec86de257bfa33856571036279169f385ed92bd))
151
+ - dont add dist on release ([a2edc36](https://github.com/axios/axios/commit/a2edc3606a4f775d868a67bb3461ff18ce7ecd11))
152
+ - **fetch-adapter:** set correct Content-Type for Node FormData ([#6998](https://github.com/axios/axios/issues/6998)) ([a9f47af](https://github.com/axios/axios/commit/a9f47afbf3224d2ca987dbd8188789c7ea853c5d))
153
+ - **node:** enforce maxContentLength for data: URLs ([#7011](https://github.com/axios/axios/issues/7011)) ([945435f](https://github.com/axios/axios/commit/945435fc51467303768202250debb8d4ae892593))
154
+ - package exports ([#5627](https://github.com/axios/axios/issues/5627)) ([aa78ac2](https://github.com/axios/axios/commit/aa78ac23fc9036163308c0f6bd2bb885e7af3f36))
155
+ - **params:** removing '[' and ']' from URL encode exclude characters ([#3316](https://github.com/axios/axios/issues/3316)) ([#5715](https://github.com/axios/axios/issues/5715)) ([6d84189](https://github.com/axios/axios/commit/6d84189349c43b1dcdd977b522610660cc4c7042))
156
+ - release pr run ([fd7f404](https://github.com/axios/axios/commit/fd7f404488b2c4f238c2fbe635b58026a634bfd2))
157
+ - **types:** change the type guard on isCancel ([#5595](https://github.com/axios/axios/issues/5595)) ([0dbb7fd](https://github.com/axios/axios/commit/0dbb7fd4f61dc568498cd13a681fa7f907d6ec7e))
158
+
159
+ ### Features
160
+
161
+ - **adapter:** surface low‑level network error details; attach original error via cause ([#6982](https://github.com/axios/axios/issues/6982)) ([78b290c](https://github.com/axios/axios/commit/78b290c57c978ed2ab420b90d97350231c9e5d74))
162
+ - **fetch:** add fetch, Request, Response env config variables for the adapter; ([#7003](https://github.com/axios/axios/issues/7003)) ([c959ff2](https://github.com/axios/axios/commit/c959ff29013a3bc90cde3ac7ea2d9a3f9c08974b))
163
+ - support reviver on JSON.parse ([#5926](https://github.com/axios/axios/issues/5926)) ([2a97634](https://github.com/axios/axios/commit/2a9763426e43d996fd60d01afe63fa6e1f5b4fca)), closes [#5924](https://github.com/axios/axios/issues/5924)
164
+ - **types:** extend AxiosResponse interface to include custom headers type ([#6782](https://github.com/axios/axios/issues/6782)) ([7960d34](https://github.com/axios/axios/commit/7960d34eded2de66ffd30b4687f8da0e46c4903e))
165
+
166
+ ### Contributors to this release
167
+
168
+ - <img src="https://avatars.githubusercontent.com/u/22686401?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini '+132/-16760 (#7002 #5926 #6782 )')
169
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+4263/-293 (#7006 #7003 )')
170
+ - <img src="https://avatars.githubusercontent.com/u/53833811?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [khani](https://github.com/mkhani01 '+111/-15 (#6982 )')
171
+ - <img src="https://avatars.githubusercontent.com/u/7712804?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ameer Assadi](https://github.com/AmeerAssadi '+123/-0 (#7011 )')
172
+ - <img src="https://avatars.githubusercontent.com/u/70265727?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Emiedonmokumo Dick-Boro](https://github.com/emiedonmokumo '+55/-35 (#6998 )')
173
+ - <img src="https://avatars.githubusercontent.com/u/47859767?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Zeroday BYTE](https://github.com/opsysdebug '+8/-8 (#6980 )')
174
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jason Saayman](https://github.com/jasonsaayman '+7/-7 (#6985 #6985 )')
175
+ - <img src="https://avatars.githubusercontent.com/u/13010755?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [최예찬](https://github.com/HealGaren '+5/-7 (#5715 )')
176
+ - <img src="https://avatars.githubusercontent.com/u/7002604?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Gligor Kotushevski](https://github.com/gligorkot '+3/-1 (#5627 )')
177
+ - <img src="https://avatars.githubusercontent.com/u/15893?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aleksandar Dimitrov](https://github.com/adimit '+2/-1 (#5595 )')
178
+
179
+ # [1.11.0](https://github.com/axios/axios/compare/v1.10.0...v1.11.0) (2025-07-22)
180
+
181
+ ### Bug Fixes
182
+
183
+ - form-data npm pakcage ([#6970](https://github.com/axios/axios/issues/6970)) ([e72c193](https://github.com/axios/axios/commit/e72c193722530db538b19e5ddaaa4544d226b253))
184
+ - prevent RangeError when using large Buffers ([#6961](https://github.com/axios/axios/issues/6961)) ([a2214ca](https://github.com/axios/axios/commit/a2214ca1bc60540baf2c80573cea3a0ff91ba9d1))
185
+ - **types:** resolve type discrepancies between ESM and CJS TypeScript declaration files ([#6956](https://github.com/axios/axios/issues/6956)) ([8517aa1](https://github.com/axios/axios/commit/8517aa16f8d082fc1d5309c642220fa736159110))
186
+
187
+ ### Contributors to this release
188
+
189
+ - <img src="https://avatars.githubusercontent.com/u/12534341?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [izzy goldman](https://github.com/izzygld '+186/-93 (#6970 )')
190
+ - <img src="https://avatars.githubusercontent.com/u/142807367?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Manish Sahani](https://github.com/manishsahanidev '+70/-0 (#6961 )')
191
+ - <img src="https://avatars.githubusercontent.com/u/189505037?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Noritaka Kobayashi](https://github.com/noritaka1166 '+12/-10 (#6938 #6939 )')
192
+ - <img src="https://avatars.githubusercontent.com/u/392612?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [James Nail](https://github.com/jrnail23 '+13/-2 (#6956 )')
193
+ - <img src="https://avatars.githubusercontent.com/u/163745239?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Tejaswi1305](https://github.com/Tejaswi1305 '+1/-1 (#6894 )')
194
+
195
+ # [1.10.0](https://github.com/axios/axios/compare/v1.9.0...v1.10.0) (2025-06-14)
196
+
197
+ ### Bug Fixes
198
+
199
+ - **adapter:** pass fetchOptions to fetch function ([#6883](https://github.com/axios/axios/issues/6883)) ([0f50af8](https://github.com/axios/axios/commit/0f50af8e076b7fb403844789bd5e812dedcaf4ed))
200
+ - **form-data:** convert boolean values to strings in FormData serialization ([#6917](https://github.com/axios/axios/issues/6917)) ([5064b10](https://github.com/axios/axios/commit/5064b108de336ff34862650709761b8a96d26be0))
201
+ - **package:** add module entry point for React Native; ([#6933](https://github.com/axios/axios/issues/6933)) ([3d343b8](https://github.com/axios/axios/commit/3d343b86dc4fd0eea0987059c5af04327c7ae304))
202
+
203
+ ### Features
204
+
205
+ - **types:** improved fetchOptions interface ([#6867](https://github.com/axios/axios/issues/6867)) ([63f1fce](https://github.com/axios/axios/commit/63f1fce233009f5db1abf2586c145825ac98c3d7))
206
+
207
+ ### Contributors to this release
208
+
209
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+30/-19 (#6933 #6920 #6893 #6892 )')
210
+ - <img src="https://avatars.githubusercontent.com/u/189505037?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Noritaka Kobayashi](https://github.com/noritaka1166 '+2/-6 (#6922 #6923 )')
211
+ - <img src="https://avatars.githubusercontent.com/u/48370490?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dimitrios Lazanas](https://github.com/dimitry-lzs '+4/-0 (#6917 )')
212
+ - <img src="https://avatars.githubusercontent.com/u/71047946?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Adrian Knapp](https://github.com/AdrianKnapp '+2/-2 (#6867 )')
213
+ - <img src="https://avatars.githubusercontent.com/u/16129206?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Howie Zhao](https://github.com/howiezhao '+3/-1 (#6872 )')
214
+ - <img src="https://avatars.githubusercontent.com/u/6788611?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Uhyeon Park](https://github.com/warpdev '+1/-1 (#6883 )')
215
+ - <img src="https://avatars.githubusercontent.com/u/20028934?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Sampo Silvennoinen](https://github.com/stscoundrel '+1/-1 (#6913 )')
216
+
217
+ # [1.9.0](https://github.com/axios/axios/compare/v1.8.4...v1.9.0) (2025-04-24)
218
+
219
+ ### Bug Fixes
220
+
221
+ - **core:** fix the Axios constructor implementation to treat the config argument as optional; ([#6881](https://github.com/axios/axios/issues/6881)) ([6c5d4cd](https://github.com/axios/axios/commit/6c5d4cd69286868059c5e52d45085cb9a894a983))
222
+ - **fetch:** fixed ERR_NETWORK mapping for Safari browsers; ([#6767](https://github.com/axios/axios/issues/6767)) ([dfe8411](https://github.com/axios/axios/commit/dfe8411c9a082c3d068bdd1f8d6e73054f387f45))
223
+ - **headers:** allow iterable objects to be a data source for the set method; ([#6873](https://github.com/axios/axios/issues/6873)) ([1b1f9cc](https://github.com/axios/axios/commit/1b1f9ccdc15f1ea745160ec9a5223de9db4673bc))
224
+ - **headers:** fix `getSetCookie` by using 'get' method for caseless access; ([#6874](https://github.com/axios/axios/issues/6874)) ([d4f7df4](https://github.com/axios/axios/commit/d4f7df4b304af8b373488fdf8e830793ff843eb9))
225
+ - **headers:** fixed support for setting multiple header values from an iterated source; ([#6885](https://github.com/axios/axios/issues/6885)) ([f7a3b5e](https://github.com/axios/axios/commit/f7a3b5e0f7e5e127b97defa92a132fbf1b55cf15))
226
+ - **http:** send minimal end multipart boundary ([#6661](https://github.com/axios/axios/issues/6661)) ([987d2e2](https://github.com/axios/axios/commit/987d2e2dd3b362757550f36eab875e60640b6ddc))
227
+ - **types:** fix autocomplete for adapter config ([#6855](https://github.com/axios/axios/issues/6855)) ([e61a893](https://github.com/axios/axios/commit/e61a8934d8f94dd429a2f309b48c67307c700df0))
228
+
229
+ ### Features
230
+
231
+ - **AxiosHeaders:** add getSetCookie method to retrieve set-cookie headers values ([#5707](https://github.com/axios/axios/issues/5707)) ([80ea756](https://github.com/axios/axios/commit/80ea756e72bcf53110fa792f5d7ab76e8b11c996))
232
+
233
+ ### Contributors to this release
234
+
235
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+200/-34 (#6890 #6889 #6888 #6885 #6881 #6767 #6874 #6873 )')
236
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+26/-1 ()')
237
+ - <img src="https://avatars.githubusercontent.com/u/22686401?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini '+21/-0 (#5707 )')
238
+ - <img src="https://avatars.githubusercontent.com/u/2500247?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [George Cheng](https://github.com/Gerhut '+3/-3 (#5096 )')
239
+ - <img src="https://avatars.githubusercontent.com/u/30260221?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [FatahChan](https://github.com/FatahChan '+2/-2 (#6855 )')
240
+ - <img src="https://avatars.githubusercontent.com/u/49002?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ionuț G. Stan](https://github.com/igstan '+1/-1 (#6661 )')
241
+
242
+ ## [1.8.4](https://github.com/axios/axios/compare/v1.8.3...v1.8.4) (2025-03-19)
243
+
244
+ ### Bug Fixes
245
+
246
+ - **buildFullPath:** handle `allowAbsoluteUrls: false` without `baseURL` ([#6833](https://github.com/axios/axios/issues/6833)) ([f10c2e0](https://github.com/axios/axios/commit/f10c2e0de7fde0051f848609a29c2906d0caa1d9))
247
+
248
+ ### Contributors to this release
249
+
250
+ - <img src="https://avatars.githubusercontent.com/u/8029107?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Marc Hassan](https://github.com/mhassan1 '+5/-1 (#6833 )')
251
+
252
+ ## [1.8.3](https://github.com/axios/axios/compare/v1.8.2...v1.8.3) (2025-03-10)
253
+
254
+ ### Bug Fixes
255
+
256
+ - add missing type for allowAbsoluteUrls ([#6818](https://github.com/axios/axios/issues/6818)) ([10fa70e](https://github.com/axios/axios/commit/10fa70ef14fe39558b15a179f0e82f5f5e5d11b2))
257
+ - **xhr/fetch:** pass `allowAbsoluteUrls` to `buildFullPath` in `xhr` and `fetch` adapters ([#6814](https://github.com/axios/axios/issues/6814)) ([ec159e5](https://github.com/axios/axios/commit/ec159e507bdf08c04ba1a10fe7710094e9e50ec9))
258
+
259
+ ### Contributors to this release
260
+
261
+ - <img src="https://avatars.githubusercontent.com/u/3238291?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ashcon Partovi](https://github.com/Electroid '+6/-0 (#6811 )')
262
+ - <img src="https://avatars.githubusercontent.com/u/28559054?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [StefanBRas](https://github.com/StefanBRas '+4/-0 (#6818 )')
263
+ - <img src="https://avatars.githubusercontent.com/u/8029107?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Marc Hassan](https://github.com/mhassan1 '+2/-2 (#6814 )')
264
+
265
+ ## [1.8.2](https://github.com/axios/axios/compare/v1.8.1...v1.8.2) (2025-03-07)
266
+
267
+ ### Bug Fixes
268
+
269
+ - **http-adapter:** add allowAbsoluteUrls to path building ([#6810](https://github.com/axios/axios/issues/6810)) ([fb8eec2](https://github.com/axios/axios/commit/fb8eec214ce7744b5ca787f2c3b8339b2f54b00f))
270
+
271
+ ### Contributors to this release
272
+
273
+ - <img src="https://avatars.githubusercontent.com/u/14166260?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Fasoro-Joseph Alexander](https://github.com/lexcorp16 '+1/-1 (#6810 )')
274
+
275
+ ## [1.8.1](https://github.com/axios/axios/compare/v1.8.0...v1.8.1) (2025-02-26)
276
+
277
+ ### Bug Fixes
278
+
279
+ - **utils:** move `generateString` to platform utils to avoid importing crypto module into client builds; ([#6789](https://github.com/axios/axios/issues/6789)) ([36a5a62](https://github.com/axios/axios/commit/36a5a620bec0b181451927f13ac85b9888b86cec))
280
+
281
+ ### Contributors to this release
282
+
283
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+51/-47 (#6789 )')
284
+
285
+ # [1.8.0](https://github.com/axios/axios/compare/v1.7.9...v1.8.0) (2025-02-25)
286
+
287
+ ### Bug Fixes
288
+
289
+ - **examples:** application crashed when navigating examples in browser ([#5938](https://github.com/axios/axios/issues/5938)) ([1260ded](https://github.com/axios/axios/commit/1260ded634ec101dd5ed05d3b70f8e8f899dba6c))
290
+ - missing word in SUPPORT_QUESTION.yml ([#6757](https://github.com/axios/axios/issues/6757)) ([1f890b1](https://github.com/axios/axios/commit/1f890b13f2c25a016f3c84ae78efb769f244133e))
291
+ - **utils:** replace getRandomValues with crypto module ([#6788](https://github.com/axios/axios/issues/6788)) ([23a25af](https://github.com/axios/axios/commit/23a25af0688d1db2c396deb09229d2271cc24f6c))
292
+
293
+ ### Features
294
+
295
+ - Add config for ignoring absolute URLs ([#5902](https://github.com/axios/axios/issues/5902)) ([#6192](https://github.com/axios/axios/issues/6192)) ([32c7bcc](https://github.com/axios/axios/commit/32c7bcc0f233285ba27dec73a4b1e81fb7a219b3))
296
+
297
+ ### Reverts
298
+
299
+ - Revert "chore: expose fromDataToStream to be consumable (#6731)" (#6732) ([1317261](https://github.com/axios/axios/commit/1317261125e9c419fe9f126867f64d28f9c1efda)), closes [#6731](https://github.com/axios/axios/issues/6731) [#6732](https://github.com/axios/axios/issues/6732)
300
+
301
+ ### BREAKING CHANGES
302
+
303
+ - code relying on the above will now combine the URLs instead of prefer request URL
304
+
305
+ - feat: add config option for allowing absolute URLs
306
+
307
+ - fix: add default value for allowAbsoluteUrls in buildFullPath
308
+
309
+ - fix: typo in flow control when setting allowAbsoluteUrls
310
+
311
+ ### Contributors to this release
312
+
313
+ - <img src="https://avatars.githubusercontent.com/u/7661715?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Toscano](https://github.com/GethosTheWalrus '+42/-8 (#6192 )')
314
+ - <img src="https://avatars.githubusercontent.com/u/22686401?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini '+26/-3 (#6788 #6777 )')
315
+ - <img src="https://avatars.githubusercontent.com/u/72578270?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Naron](https://github.com/naronchen '+27/-0 (#5901 )')
316
+ - <img src="https://avatars.githubusercontent.com/u/47430686?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [shravan || श्रvan](https://github.com/shravan20 '+7/-3 (#6116 )')
317
+ - <img src="https://avatars.githubusercontent.com/u/145078271?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Justin Dhillon](https://github.com/justindhillon '+0/-7 (#6312 )')
318
+ - <img src="https://avatars.githubusercontent.com/u/30925732?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [yionr](https://github.com/yionr '+5/-1 (#6129 )')
319
+ - <img src="https://avatars.githubusercontent.com/u/534166?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Shin&#x27;ya Ueoka](https://github.com/ueokande '+3/-3 (#5935 )')
320
+ - <img src="https://avatars.githubusercontent.com/u/33569?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dan Dascalescu](https://github.com/dandv '+3/-3 (#5908 #6757 )')
321
+ - <img src="https://avatars.githubusercontent.com/u/16476523?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Nitin Ramnani](https://github.com/NitinRamnani '+2/-2 (#5938 )')
322
+ - <img src="https://avatars.githubusercontent.com/u/152275799?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Shay Molcho](https://github.com/shaymolcho '+2/-2 (#6770 )')
323
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+0/-3 (#6732 )')
324
+ - fancy45daddy
325
+ - <img src="https://avatars.githubusercontent.com/u/127725897?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Habip Akyol](https://github.com/habipakyol '+1/-1 (#6030 )')
326
+ - <img src="https://avatars.githubusercontent.com/u/54869395?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Bailey Lissington](https://github.com/llamington '+1/-1 (#6771 )')
327
+ - <img src="https://avatars.githubusercontent.com/u/14969290?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Bernardo da Eira Duarte](https://github.com/bernardoduarte '+1/-1 (#6480 )')
328
+ - <img src="https://avatars.githubusercontent.com/u/117800149?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Shivam Batham](https://github.com/Shivam-Batham '+1/-1 (#5949 )')
329
+ - <img src="https://avatars.githubusercontent.com/u/67861627?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lipin Kariappa](https://github.com/lipinnnnn '+1/-1 (#5936 )')
330
+
331
+ ## [1.7.9](https://github.com/axios/axios/compare/v1.7.8...v1.7.9) (2024-12-04)
332
+
333
+ ### Reverts
334
+
335
+ - Revert "fix(types): export CJS types from ESM (#6218)" (#6729) ([c44d2f2](https://github.com/axios/axios/commit/c44d2f2316ad289b38997657248ba10de11deb6c)), closes [#6218](https://github.com/axios/axios/issues/6218) [#6729](https://github.com/axios/axios/issues/6729)
336
+
337
+ ### Contributors to this release
338
+
339
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+596/-108 (#6729 )')
340
+
341
+ ## [1.7.8](https://github.com/axios/axios/compare/v1.7.7...v1.7.8) (2024-11-25)
342
+
343
+ ### Bug Fixes
344
+
345
+ - allow passing a callback as paramsSerializer to buildURL ([#6680](https://github.com/axios/axios/issues/6680)) ([eac4619](https://github.com/axios/axios/commit/eac4619fe2e0926e876cd260ee21e3690381dbb5))
346
+ - **core:** fixed config merging bug ([#6668](https://github.com/axios/axios/issues/6668)) ([5d99fe4](https://github.com/axios/axios/commit/5d99fe4491202a6268c71e5dcc09192359d73cea))
347
+ - fixed width form to not shrink after 'Send Request' button is clicked ([#6644](https://github.com/axios/axios/issues/6644)) ([7ccd5fd](https://github.com/axios/axios/commit/7ccd5fd42402102d38712c32707bf055be72ab54))
348
+ - **http:** add support for File objects as payload in http adapter ([#6588](https://github.com/axios/axios/issues/6588)) ([#6605](https://github.com/axios/axios/issues/6605)) ([6841d8d](https://github.com/axios/axios/commit/6841d8d18ddc71cc1bd202ffcfddb3f95622eef3))
349
+ - **http:** fixed proxy-from-env module import ([#5222](https://github.com/axios/axios/issues/5222)) ([12b3295](https://github.com/axios/axios/commit/12b32957f1258aee94ef859809ed39f8f88f9dfa))
350
+ - **http:** use `globalThis.TextEncoder` when available ([#6634](https://github.com/axios/axios/issues/6634)) ([df956d1](https://github.com/axios/axios/commit/df956d18febc9100a563298dfdf0f102c3d15410))
351
+ - ios11 breaks when build ([#6608](https://github.com/axios/axios/issues/6608)) ([7638952](https://github.com/axios/axios/commit/763895270f7b50c7c780c3c9807ae8635de952cd))
352
+ - **types:** add missing types for mergeConfig function ([#6590](https://github.com/axios/axios/issues/6590)) ([00de614](https://github.com/axios/axios/commit/00de614cd07b7149af335e202aef0e076c254f49))
353
+ - **types:** export CJS types from ESM ([#6218](https://github.com/axios/axios/issues/6218)) ([c71811b](https://github.com/axios/axios/commit/c71811b00f2fcff558e4382ba913bdac4ad7200e))
354
+ - updated stream aborted error message to be more clear ([#6615](https://github.com/axios/axios/issues/6615)) ([cc3217a](https://github.com/axios/axios/commit/cc3217a612024d83a663722a56d7a98d8759c6d5))
355
+ - use URL API instead of DOM to fix a potential vulnerability warning; ([#6714](https://github.com/axios/axios/issues/6714)) ([0a8d6e1](https://github.com/axios/axios/commit/0a8d6e19da5b9899a2abafaaa06a75ee548597db))
356
+
357
+ ### Contributors to this release
358
+
359
+ - <img src="https://avatars.githubusercontent.com/u/779047?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Remco Haszing](https://github.com/remcohaszing '+108/-596 (#6218 )')
360
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+281/-19 (#6640 #6619 )')
361
+ - <img src="https://avatars.githubusercontent.com/u/140250471?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aayush Yadav](https://github.com/aayushyadav020 '+124/-111 (#6617 )')
362
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+12/-65 (#6714 )')
363
+ - <img src="https://avatars.githubusercontent.com/u/479715?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ell Bradshaw](https://github.com/cincodenada '+29/-0 (#6489 )')
364
+ - <img src="https://avatars.githubusercontent.com/u/60218780?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Amit Saini](https://github.com/amitsainii '+13/-3 (#5237 )')
365
+ - <img src="https://avatars.githubusercontent.com/u/19817867?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Tommaso Paulon](https://github.com/guuido '+14/-1 (#6680 )')
366
+ - <img src="https://avatars.githubusercontent.com/u/63336443?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Akki](https://github.com/Aakash-Rana '+5/-5 (#6668 )')
367
+ - <img src="https://avatars.githubusercontent.com/u/20028934?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Sampo Silvennoinen](https://github.com/stscoundrel '+3/-3 (#6633 )')
368
+ - <img src="https://avatars.githubusercontent.com/u/1174718?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kasper Isager Dalsgarð](https://github.com/kasperisager '+2/-2 (#6634 )')
369
+ - <img src="https://avatars.githubusercontent.com/u/3709715?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Christian Clauss](https://github.com/cclauss '+4/-0 (#6683 )')
370
+ - <img src="https://avatars.githubusercontent.com/u/1639119?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Pavan Welihinda](https://github.com/pavan168 '+2/-2 (#5222 )')
371
+ - <img src="https://avatars.githubusercontent.com/u/5742900?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Taylor Flatt](https://github.com/taylorflatt '+2/-2 (#6615 )')
372
+ - <img src="https://avatars.githubusercontent.com/u/79452224?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kenzo Wada](https://github.com/Kenzo-Wada '+2/-2 (#6608 )')
373
+ - <img src="https://avatars.githubusercontent.com/u/50064240?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ngole Lawson](https://github.com/echelonnought '+3/-0 (#6644 )')
374
+ - <img src="https://avatars.githubusercontent.com/u/1262198?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Haven](https://github.com/Baoyx007 '+3/-0 (#6590 )')
375
+ - <img src="https://avatars.githubusercontent.com/u/149003676?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Shrivali Dutt](https://github.com/shrivalidutt '+1/-1 (#6637 )')
376
+ - <img src="https://avatars.githubusercontent.com/u/1304290?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Henco Appel](https://github.com/hencoappel '+1/-1 (#6605 )')
377
+
378
+ ## [1.7.7](https://github.com/axios/axios/compare/v1.7.6...v1.7.7) (2024-08-31)
379
+
380
+ ### Bug Fixes
381
+
382
+ - **fetch:** fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; ([#6584](https://github.com/axios/axios/issues/6584)) ([d198085](https://github.com/axios/axios/commit/d1980854fee1765cd02fa0787adf5d6e34dd9dcf))
383
+ - **http:** fixed support for IPv6 literal strings in url ([#5731](https://github.com/axios/axios/issues/5731)) ([364993f](https://github.com/axios/axios/commit/364993f0d8bc6e0e06f76b8a35d2d0a35cab054c))
384
+
385
+ ### Contributors to this release
386
+
387
+ - <img src="https://avatars.githubusercontent.com/u/10539109?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rishi556](https://github.com/Rishi556 '+39/-1 (#5731 )')
388
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+27/-7 (#6584 )')
389
+
390
+ ## [1.7.6](https://github.com/axios/axios/compare/v1.7.5...v1.7.6) (2024-08-30)
391
+
392
+ ### Bug Fixes
393
+
394
+ - **fetch:** fix content length calculation for FormData payload; ([#6524](https://github.com/axios/axios/issues/6524)) ([085f568](https://github.com/axios/axios/commit/085f56861a83e9ac02c140ad9d68dac540dfeeaa))
395
+ - **fetch:** optimize signals composing logic; ([#6582](https://github.com/axios/axios/issues/6582)) ([df9889b](https://github.com/axios/axios/commit/df9889b83c2cc37e9e6189675a73ab70c60f031f))
396
+
397
+ ### Contributors to this release
398
+
399
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+98/-46 (#6582 )')
400
+ - <img src="https://avatars.githubusercontent.com/u/3534453?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jacques Germishuys](https://github.com/jacquesg '+5/-1 (#6524 )')
401
+ - <img src="https://avatars.githubusercontent.com/u/53894505?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [kuroino721](https://github.com/kuroino721 '+3/-1 (#6575 )')
402
+
403
+ ## [1.7.5](https://github.com/axios/axios/compare/v1.7.4...v1.7.5) (2024-08-23)
404
+
405
+ ### Bug Fixes
406
+
407
+ - **adapter:** fix undefined reference to hasBrowserEnv ([#6572](https://github.com/axios/axios/issues/6572)) ([7004707](https://github.com/axios/axios/commit/7004707c4180b416341863bd86913fe4fc2f1df1))
408
+ - **core:** add the missed implementation of AxiosError#status property; ([#6573](https://github.com/axios/axios/issues/6573)) ([6700a8a](https://github.com/axios/axios/commit/6700a8adac06942205f6a7a21421ecb36c4e0852))
409
+ - **core:** fix `ReferenceError: navigator is not defined` for custom environments; ([#6567](https://github.com/axios/axios/issues/6567)) ([fed1a4b](https://github.com/axios/axios/commit/fed1a4b2d78ed4a588c84e09d32749ed01dc2794))
410
+ - **fetch:** fix credentials handling in Cloudflare workers ([#6533](https://github.com/axios/axios/issues/6533)) ([550d885](https://github.com/axios/axios/commit/550d885eb90fd156add7b93bbdc54d30d2f9a98d))
411
+
412
+ ### Contributors to this release
413
+
414
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+187/-83 (#6573 #6567 #6566 #6564 #6563 #6557 #6556 #6555 #6554 #6552 )')
415
+ - <img src="https://avatars.githubusercontent.com/u/2495809?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Antonin Bas](https://github.com/antoninbas '+6/-6 (#6572 )')
416
+ - <img src="https://avatars.githubusercontent.com/u/5406212?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Hans Otto Wirtz](https://github.com/hansottowirtz '+4/-1 (#6533 )')
417
+
418
+ ## [1.7.4](https://github.com/axios/axios/compare/v1.7.3...v1.7.4) (2024-08-13)
419
+
420
+ ### Bug Fixes
421
+
422
+ - **sec:** CVE-2024-39338 ([#6539](https://github.com/axios/axios/issues/6539)) ([#6543](https://github.com/axios/axios/issues/6543)) ([6b6b605](https://github.com/axios/axios/commit/6b6b605eaf73852fb2dae033f1e786155959de3a))
423
+ - **sec:** disregard protocol-relative URL to remediate SSRF ([#6539](https://github.com/axios/axios/issues/6539)) ([07a661a](https://github.com/axios/axios/commit/07a661a2a6b9092c4aa640dcc7f724ec5e65bdda))
424
+
425
+ ### Contributors to this release
426
+
427
+ - <img src="https://avatars.githubusercontent.com/u/31389480?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lev Pachmanov](https://github.com/levpachmanov '+47/-11 (#6543 )')
428
+ - <img src="https://avatars.githubusercontent.com/u/41283691?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Đỗ Trọng Hải](https://github.com/hainenber '+49/-4 (#6539 )')
429
+
430
+ ## [1.7.3](https://github.com/axios/axios/compare/v1.7.2...v1.7.3) (2024-08-01)
431
+
432
+ ### Bug Fixes
433
+
434
+ - **adapter:** fix progress event emitting; ([#6518](https://github.com/axios/axios/issues/6518)) ([e3c76fc](https://github.com/axios/axios/commit/e3c76fc9bdd03aa4d98afaf211df943e2031453f))
435
+ - **fetch:** fix withCredentials request config ([#6505](https://github.com/axios/axios/issues/6505)) ([85d4d0e](https://github.com/axios/axios/commit/85d4d0ea0aae91082f04e303dec46510d1b4e787))
436
+ - **xhr:** return original config on errors from XHR adapter ([#6515](https://github.com/axios/axios/issues/6515)) ([8966ee7](https://github.com/axios/axios/commit/8966ee7ea62ecbd6cfb39a905939bcdab5cf6388))
437
+
438
+ ### Contributors to this release
439
+
440
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+211/-159 (#6518 #6519 )')
441
+ - <img src="https://avatars.githubusercontent.com/u/10867286?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Valerii Sidorenko](https://github.com/ValeraS '+3/-3 (#6515 )')
442
+ - <img src="https://avatars.githubusercontent.com/u/8599535?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [prianYu](https://github.com/prianyu '+2/-2 (#6505 )')
443
+
444
+ ## [1.7.2](https://github.com/axios/axios/compare/v1.7.1...v1.7.2) (2024-05-21)
445
+
446
+ ### Bug Fixes
447
+
448
+ - **fetch:** enhance fetch API detection; ([#6413](https://github.com/axios/axios/issues/6413)) ([4f79aef](https://github.com/axios/axios/commit/4f79aef81b7c4644328365bfc33acf0a9ef595bc))
449
+
450
+ ### Contributors to this release
451
+
452
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+3/-3 (#6413 )')
453
+
454
+ ## [1.7.1](https://github.com/axios/axios/compare/v1.7.0...v1.7.1) (2024-05-20)
455
+
456
+ ### Bug Fixes
457
+
458
+ - **fetch:** fixed ReferenceError issue when TextEncoder is not available in the environment; ([#6410](https://github.com/axios/axios/issues/6410)) ([733f15f](https://github.com/axios/axios/commit/733f15fe5bd2d67e1fadaee82e7913b70d45dc5e))
459
+
460
+ ### Contributors to this release
461
+
462
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+14/-9 (#6410 )')
463
+
464
+ # [1.7.0](https://github.com/axios/axios/compare/v1.7.0-beta.2...v1.7.0) (2024-05-19)
465
+
466
+ ### Features
467
+
468
+ - **adapter:** add fetch adapter; ([#6371](https://github.com/axios/axios/issues/6371)) ([a3ff99b](https://github.com/axios/axios/commit/a3ff99b59d8ec2ab5dd049e68c043617a4072e42))
469
+
470
+ ### Bug Fixes
471
+
472
+ - **core/axios:** handle un-writable error stack ([#6362](https://github.com/axios/axios/issues/6362)) ([81e0455](https://github.com/axios/axios/commit/81e0455b7b57fbaf2be16a73ebe0e6591cc6d8f9))
473
+
474
+ ### Contributors to this release
475
+
476
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+1015/-127 (#6371 )')
477
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+30/-14 ()')
478
+ - <img src="https://avatars.githubusercontent.com/u/16711696?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Alexandre ABRIOUX](https://github.com/alexandre-abrioux '+56/-6 (#6362 )')
479
+
480
+ # [1.7.0-beta.2](https://github.com/axios/axios/compare/v1.7.0-beta.1...v1.7.0-beta.2) (2024-05-19)
481
+
482
+ ### Bug Fixes
483
+
484
+ - **fetch:** capitalize HTTP method names; ([#6395](https://github.com/axios/axios/issues/6395)) ([ad3174a](https://github.com/axios/axios/commit/ad3174a3515c3c2573f4bcb94818d582826f3914))
485
+ - **fetch:** fix & optimize progress capturing for cases when the request data has a nullish value or zero data length ([#6400](https://github.com/axios/axios/issues/6400)) ([95a3e8e](https://github.com/axios/axios/commit/95a3e8e346cfd6a5548e171f2341df3235d0e26b))
486
+ - **fetch:** fix headers getting from a stream response; ([#6401](https://github.com/axios/axios/issues/6401)) ([870e0a7](https://github.com/axios/axios/commit/870e0a76f60d0094774a6a63fa606eec52a381af))
487
+
488
+ ### Contributors to this release
489
+
490
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+99/-46 (#6405 #6404 #6401 #6400 #6395 )')
491
+
492
+ # [1.7.0-beta.1](https://github.com/axios/axios/compare/v1.7.0-beta.0...v1.7.0-beta.1) (2024-05-07)
493
+
494
+ ### Bug Fixes
495
+
496
+ - **core/axios:** handle un-writable error stack ([#6362](https://github.com/axios/axios/issues/6362)) ([81e0455](https://github.com/axios/axios/commit/81e0455b7b57fbaf2be16a73ebe0e6591cc6d8f9))
497
+ - **fetch:** fix cases when ReadableStream or Response.body are not available; ([#6377](https://github.com/axios/axios/issues/6377)) ([d1d359d](https://github.com/axios/axios/commit/d1d359da347704e8b28d768e61515a3e96c5b072))
498
+ - **fetch:** treat fetch-related TypeError as an AxiosError.ERR_NETWORK error; ([#6380](https://github.com/axios/axios/issues/6380)) ([bb5f9a5](https://github.com/axios/axios/commit/bb5f9a5ab768452de9e166dc28d0ffc234245ef1))
499
+
500
+ ### Contributors to this release
501
+
502
+ - <img src="https://avatars.githubusercontent.com/u/16711696?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Alexandre ABRIOUX](https://github.com/alexandre-abrioux '+56/-6 (#6362 )')
503
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+42/-17 (#6380 #6377 )')
504
+
505
+ # [1.7.0-beta.0](https://github.com/axios/axios/compare/v1.6.8...v1.7.0-beta.0) (2024-04-28)
506
+
507
+ ### Features
508
+
509
+ - **adapter:** add fetch adapter; ([#6371](https://github.com/axios/axios/issues/6371)) ([a3ff99b](https://github.com/axios/axios/commit/a3ff99b59d8ec2ab5dd049e68c043617a4072e42))
510
+
511
+ ### Contributors to this release
512
+
513
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+1015/-127 (#6371 )')
514
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+30/-14 ()')
515
+
516
+ ## [1.6.8](https://github.com/axios/axios/compare/v1.6.7...v1.6.8) (2024-03-15)
517
+
518
+ ### Bug Fixes
519
+
520
+ - **AxiosHeaders:** fix AxiosHeaders conversion to an object during config merging ([#6243](https://github.com/axios/axios/issues/6243)) ([2656612](https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb))
521
+ - **import:** use named export for EventEmitter; ([7320430](https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1))
522
+ - **vulnerability:** update follow-redirects to 1.15.6 ([#6300](https://github.com/axios/axios/issues/6300)) ([8786e0f](https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27))
523
+
524
+ ### Contributors to this release
525
+
526
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+4572/-3446 (#6238 )')
527
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+30/-0 (#6231 )')
528
+ - <img src="https://avatars.githubusercontent.com/u/68230846?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Mitchell](https://github.com/Creaous '+9/-9 (#6300 )')
529
+ - <img src="https://avatars.githubusercontent.com/u/53797821?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Emmanuel](https://github.com/mannoeu '+2/-2 (#6196 )')
530
+ - <img src="https://avatars.githubusercontent.com/u/44109284?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lucas Keller](https://github.com/ljkeller '+3/-0 (#6194 )')
531
+ - <img src="https://avatars.githubusercontent.com/u/72791488?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aditya Mogili](https://github.com/ADITYA-176 '+1/-1 ()')
532
+ - <img src="https://avatars.githubusercontent.com/u/46135319?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Miroslav Petrov](https://github.com/petrovmiroslav '+1/-1 (#6243 )')
533
+
534
+ ## [1.6.7](https://github.com/axios/axios/compare/v1.6.6...v1.6.7) (2024-01-25)
535
+
536
+ ### Bug Fixes
537
+
538
+ - capture async stack only for rejections with native error objects; ([#6203](https://github.com/axios/axios/issues/6203)) ([1a08f90](https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0))
539
+
540
+ ### Contributors to this release
541
+
542
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+30/-26 (#6203 )')
543
+ - <img src="https://avatars.githubusercontent.com/u/73059627?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [zhoulixiang](https://github.com/zh-lx '+0/-3 (#6186 )')
544
+
545
+ ## [1.6.6](https://github.com/axios/axios/compare/v1.6.5...v1.6.6) (2024-01-24)
546
+
547
+ ### Bug Fixes
548
+
549
+ - fixed missed dispatchBeforeRedirect argument ([#5778](https://github.com/axios/axios/issues/5778)) ([a1938ff](https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39))
550
+ - wrap errors to improve async stack trace ([#5987](https://github.com/axios/axios/issues/5987)) ([123f354](https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab))
551
+
552
+ ### Contributors to this release
553
+
554
+ - <img src="https://avatars.githubusercontent.com/u/1186084?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ilya Priven](https://github.com/ikonst '+91/-8 (#5987 )')
555
+ - <img src="https://avatars.githubusercontent.com/u/1884246?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Zao Soula](https://github.com/zaosoula '+6/-6 (#5778 )')
556
+
557
+ ## [1.6.5](https://github.com/axios/axios/compare/v1.6.4...v1.6.5) (2024-01-05)
558
+
559
+ ### Bug Fixes
560
+
561
+ - **ci:** refactor notify action as a job of publish action; ([#6176](https://github.com/axios/axios/issues/6176)) ([0736f95](https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c))
562
+ - **dns:** fixed lookup error handling; ([#6175](https://github.com/axios/axios/issues/6175)) ([f4f2b03](https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be))
563
+
564
+ ### Contributors to this release
565
+
566
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+41/-6 (#6176 #6175 )')
567
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+6/-1 ()')
568
+
569
+ ## [1.6.4](https://github.com/axios/axios/compare/v1.6.3...v1.6.4) (2024-01-03)
570
+
571
+ ### Bug Fixes
572
+
573
+ - **security:** fixed formToJSON prototype pollution vulnerability; ([#6167](https://github.com/axios/axios/issues/6167)) ([3c0c11c](https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e))
574
+ - **security:** fixed security vulnerability in follow-redirects ([#6163](https://github.com/axios/axios/issues/6163)) ([75af1cd](https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8))
575
+
576
+ ### Contributors to this release
577
+
578
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+34/-6 ()')
579
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+34/-3 (#6172 #6167 )')
580
+ - <img src="https://avatars.githubusercontent.com/u/1402060?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Guy Nesher](https://github.com/gnesher '+10/-10 (#6163 )')
581
+
582
+ ## [1.6.3](https://github.com/axios/axios/compare/v1.6.2...v1.6.3) (2023-12-26)
583
+
584
+ ### Bug Fixes
585
+
586
+ - Regular Expression Denial of Service (ReDoS) ([#6132](https://github.com/axios/axios/issues/6132)) ([5e7ad38](https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d))
587
+
588
+ ### Contributors to this release
589
+
590
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman '+15/-6 (#6145 )')
591
+ - <img src="https://avatars.githubusercontent.com/u/22686401?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini '+17/-2 (#6132 )')
592
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+3/-0 (#6084 )')
593
+
594
+ ## [1.6.2](https://github.com/axios/axios/compare/v1.6.1...v1.6.2) (2023-11-14)
595
+
596
+ ### Features
597
+
598
+ - **withXSRFToken:** added withXSRFToken option as a workaround to achieve the old `withCredentials` behavior; ([#6046](https://github.com/axios/axios/issues/6046)) ([cff9967](https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc))
599
+
600
+ ### PRs
601
+
602
+ - feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old &#x60;withCredentials&#x60; behavior; ( [#6046](https://api.github.com/repos/axios/axios/pulls/6046) )
603
+
604
+ ```
605
+
606
+ 📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour.
607
+ You should now use withXSRFToken along with withCredential to get the old behavior.
608
+ This functionality is considered as a fix.
609
+ ```
610
+
611
+ ### Contributors to this release
612
+
613
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+271/-146 (#6081 #6080 #6079 #6078 #6046 #6064 #6063 )')
614
+ - <img src="https://avatars.githubusercontent.com/u/79681367?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ng Choon Khon (CK)](https://github.com/ckng0221 '+4/-4 (#6073 )')
615
+ - <img src="https://avatars.githubusercontent.com/u/9162827?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Muhammad Noman](https://github.com/mnomanmemon '+2/-2 (#6048 )')
616
+
617
+ ## [1.6.1](https://github.com/axios/axios/compare/v1.6.0...v1.6.1) (2023-11-08)
618
+
619
+ ### Bug Fixes
620
+
621
+ - **formdata:** fixed content-type header normalization for non-standard browser environments; ([#6056](https://github.com/axios/axios/issues/6056)) ([dd465ab](https://github.com/axios/axios/commit/dd465ab22bbfa262c6567be6574bf46a057d5288))
622
+ - **platform:** fixed emulated browser detection in node.js environment; ([#6055](https://github.com/axios/axios/issues/6055)) ([3dc8369](https://github.com/axios/axios/commit/3dc8369e505e32a4e12c22f154c55fd63ac67fbb))
623
+
624
+ ### Contributors to this release
625
+
626
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+432/-65 (#6059 #6056 #6055 )')
627
+ - <img src="https://avatars.githubusercontent.com/u/3982806?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Fabian Meyer](https://github.com/meyfa '+5/-2 (#5835 )')
628
+
629
+ ### PRs
630
+
631
+ - feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old &#x60;withCredentials&#x60; behavior; ( [#6046](https://api.github.com/repos/axios/axios/pulls/6046) )
632
+
633
+ ```
634
+
635
+ 📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour.
636
+ You should now use withXSRFToken along with withCredential to get the old behavior.
637
+ This functionality is considered as a fix.
638
+ ```
639
+
640
+ # [1.6.0](https://github.com/axios/axios/compare/v1.5.1...v1.6.0) (2023-10-26)
641
+
642
+ ### Bug Fixes
643
+
644
+ - **CSRF:** fixed CSRF vulnerability CVE-2023-45857 ([#6028](https://github.com/axios/axios/issues/6028)) ([96ee232](https://github.com/axios/axios/commit/96ee232bd3ee4de2e657333d4d2191cd389e14d0))
645
+ - **dns:** fixed lookup function decorator to work properly in node v20; ([#6011](https://github.com/axios/axios/issues/6011)) ([5aaff53](https://github.com/axios/axios/commit/5aaff532a6b820bb9ab6a8cd0f77131b47e2adb8))
646
+ - **types:** fix AxiosHeaders types; ([#5931](https://github.com/axios/axios/issues/5931)) ([a1c8ad0](https://github.com/axios/axios/commit/a1c8ad008b3c13d53e135bbd0862587fb9d3fc09))
647
+
648
+ ### PRs
649
+
650
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
651
+
652
+ ```
653
+
654
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
655
+ ```
656
+
657
+ ### Contributors to this release
658
+
659
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+449/-114 (#6032 #6021 #6011 #5932 #5931 )')
660
+ - <img src="https://avatars.githubusercontent.com/u/63700910?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Valentin Panov](https://github.com/valentin-panov '+4/-4 (#6028 )')
661
+ - <img src="https://avatars.githubusercontent.com/u/76877078?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rinku Chaudhari](https://github.com/therealrinku '+1/-1 (#5889 )')
662
+
663
+ ## [1.5.1](https://github.com/axios/axios/compare/v1.5.0...v1.5.1) (2023-09-26)
664
+
665
+ ### Bug Fixes
666
+
667
+ - **adapters:** improved adapters loading logic to have clear error messages; ([#5919](https://github.com/axios/axios/issues/5919)) ([e410779](https://github.com/axios/axios/commit/e4107797a7a1376f6209fbecfbbce73d3faa7859))
668
+ - **formdata:** fixed automatic addition of the `Content-Type` header for FormData in non-browser environments; ([#5917](https://github.com/axios/axios/issues/5917)) ([bc9af51](https://github.com/axios/axios/commit/bc9af51b1886d1b3529617702f2a21a6c0ed5d92))
669
+ - **headers:** allow `content-encoding` header to handle case-insensitive values ([#5890](https://github.com/axios/axios/issues/5890)) ([#5892](https://github.com/axios/axios/issues/5892)) ([4c89f25](https://github.com/axios/axios/commit/4c89f25196525e90a6e75eda9cb31ae0a2e18acd))
670
+ - **types:** removed duplicated code ([9e62056](https://github.com/axios/axios/commit/9e6205630e1c9cf863adf141c0edb9e6d8d4b149))
671
+
672
+ ### Contributors to this release
673
+
674
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+89/-18 (#5919 #5917 )')
675
+ - <img src="https://avatars.githubusercontent.com/u/110460234?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [David Dallas](https://github.com/DavidJDallas '+11/-5 ()')
676
+ - <img src="https://avatars.githubusercontent.com/u/71556073?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Sean Sattler](https://github.com/fb-sean '+2/-8 ()')
677
+ - <img src="https://avatars.githubusercontent.com/u/4294069?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Mustafa Ateş Uzun](https://github.com/0o001 '+4/-4 ()')
678
+ - <img src="https://avatars.githubusercontent.com/u/132928043?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Przemyslaw Motacki](https://github.com/sfc-gh-pmotacki '+2/-1 (#5892 )')
679
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan '+1/-1 ()')
680
+
681
+ ### PRs
682
+
683
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
684
+
685
+ ```
686
+
687
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
688
+ ```
689
+
690
+ # [1.5.0](https://github.com/axios/axios/compare/v1.4.0...v1.5.0) (2023-08-26)
691
+
692
+ ### Bug Fixes
693
+
694
+ - **adapter:** make adapter loading error more clear by using platform-specific adapters explicitly ([#5837](https://github.com/axios/axios/issues/5837)) ([9a414bb](https://github.com/axios/axios/commit/9a414bb6c81796a95c6c7fe668637825458e8b6d))
695
+ - **dns:** fixed `cacheable-lookup` integration; ([#5836](https://github.com/axios/axios/issues/5836)) ([b3e327d](https://github.com/axios/axios/commit/b3e327dcc9277bdce34c7ef57beedf644b00d628))
696
+ - **headers:** added support for setting header names that overlap with class methods; ([#5831](https://github.com/axios/axios/issues/5831)) ([d8b4ca0](https://github.com/axios/axios/commit/d8b4ca0ea5f2f05efa4edfe1e7684593f9f68273))
697
+ - **headers:** fixed common Content-Type header merging; ([#5832](https://github.com/axios/axios/issues/5832)) ([8fda276](https://github.com/axios/axios/commit/8fda2766b1e6bcb72c3fabc146223083ef13ce17))
698
+
699
+ ### Features
700
+
701
+ - export getAdapter function ([#5324](https://github.com/axios/axios/issues/5324)) ([ca73eb8](https://github.com/axios/axios/commit/ca73eb878df0ae2dace81fe3a7f1fb5986231bf1))
702
+ - **export:** export adapters without `unsafe` prefix ([#5839](https://github.com/axios/axios/issues/5839)) ([1601f4a](https://github.com/axios/axios/commit/1601f4a27a81ab47fea228f1e244b2c4e3ce28bf))
703
+
704
+ ### Contributors to this release
705
+
706
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+66/-29 (#5839 #5837 #5836 #5832 #5831 )')
707
+ - <img src="https://avatars.githubusercontent.com/u/102841186?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [夜葬](https://github.com/geekact '+42/-0 (#5324 )')
708
+ - <img src="https://avatars.githubusercontent.com/u/65978976?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jonathan Budiman](https://github.com/JBudiman00 '+30/-0 (#5788 )')
709
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan '+3/-5 (#5791 )')
710
+
711
+ ### PRs
712
+
713
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
714
+
715
+ ```
716
+
717
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
718
+ ```
719
+
720
+ # [1.4.0](https://github.com/axios/axios/compare/v1.3.6...v1.4.0) (2023-04-27)
721
+
722
+ ### Bug Fixes
723
+
724
+ - **formdata:** add `multipart/form-data` content type for FormData payload on custom client environments; ([#5678](https://github.com/axios/axios/issues/5678)) ([bbb61e7](https://github.com/axios/axios/commit/bbb61e70cb1185adfb1cbbb86eaf6652c48d89d1))
725
+ - **package:** export package internals with unsafe path prefix; ([#5677](https://github.com/axios/axios/issues/5677)) ([df38c94](https://github.com/axios/axios/commit/df38c949f26414d88ba29ec1e353c4d4f97eaf09))
726
+
727
+ ### Features
728
+
729
+ - **dns:** added support for a custom lookup function; ([#5339](https://github.com/axios/axios/issues/5339)) ([2701911](https://github.com/axios/axios/commit/2701911260a1faa5cc5e1afe437121b330a3b7bb))
730
+ - **types:** export `AxiosHeaderValue` type. ([#5525](https://github.com/axios/axios/issues/5525)) ([726f1c8](https://github.com/axios/axios/commit/726f1c8e00cffa0461a8813a9bdcb8f8b9d762cf))
731
+
732
+ ### Performance Improvements
733
+
734
+ - **merge-config:** optimize mergeConfig performance by avoiding duplicate key visits; ([#5679](https://github.com/axios/axios/issues/5679)) ([e6f7053](https://github.com/axios/axios/commit/e6f7053bf1a3e87cf1f9da8677e12e3fe829d68e))
735
+
736
+ ### Contributors to this release
737
+
738
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+151/-16 (#5684 #5339 #5679 #5678 #5677 )')
739
+ - <img src="https://avatars.githubusercontent.com/u/47537704?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Arthur Fiorette](https://github.com/arthurfiorette '+19/-19 (#5525 )')
740
+ - <img src="https://avatars.githubusercontent.com/u/43876655?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [PIYUSH NEGI](https://github.com/npiyush97 '+2/-18 (#5670 )')
741
+
742
+ ### PRs
743
+
744
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
745
+
746
+ ```
747
+
748
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
749
+ ```
750
+
751
+ ## [1.3.6](https://github.com/axios/axios/compare/v1.3.5...v1.3.6) (2023-04-19)
752
+
753
+ ### Bug Fixes
754
+
755
+ - **types:** added transport to RawAxiosRequestConfig ([#5445](https://github.com/axios/axios/issues/5445)) ([6f360a2](https://github.com/axios/axios/commit/6f360a2531d8d70363fd9becef6a45a323f170e2))
756
+ - **utils:** make isFormData detection logic stricter to avoid unnecessary calling of the `toString` method on the target; ([#5661](https://github.com/axios/axios/issues/5661)) ([aa372f7](https://github.com/axios/axios/commit/aa372f7306295dfd1100c1c2c77ce95c95808e76))
757
+
758
+ ### Contributors to this release
759
+
760
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+48/-10 (#5665 #5661 #5663 )')
761
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan '+2/-0 (#5445 )')
762
+
763
+ ### PRs
764
+
765
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
766
+
767
+ ```
768
+
769
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
770
+ ```
771
+
772
+ ## [1.3.5](https://github.com/axios/axios/compare/v1.3.4...v1.3.5) (2023-04-05)
773
+
774
+ ### Bug Fixes
775
+
776
+ - **headers:** fixed isValidHeaderName to support full list of allowed characters; ([#5584](https://github.com/axios/axios/issues/5584)) ([e7decef](https://github.com/axios/axios/commit/e7decef6a99f4627e27ed9ea5b00ce8e201c3841))
777
+ - **params:** re-added the ability to set the function as `paramsSerializer` config; ([#5633](https://github.com/axios/axios/issues/5633)) ([a56c866](https://github.com/axios/axios/commit/a56c8661209d5ce5a645a05f294a0e08a6c1f6b3))
778
+
779
+ ### Contributors to this release
780
+
781
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+28/-10 (#5633 #5584 )')
782
+
783
+ ### PRs
784
+
785
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
786
+
787
+ ```
788
+
789
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
790
+ ```
791
+
792
+ ## [1.3.4](https://github.com/axios/axios/compare/v1.3.3...v1.3.4) (2023-02-22)
793
+
794
+ ### Bug Fixes
795
+
796
+ - **blob:** added a check to make sure the Blob class is available in the browser's global scope; ([#5548](https://github.com/axios/axios/issues/5548)) ([3772c8f](https://github.com/axios/axios/commit/3772c8fe74112a56e3e9551f894d899bc3a9443a))
797
+ - **http:** fixed regression bug when handling synchronous errors inside the adapter; ([#5564](https://github.com/axios/axios/issues/5564)) ([a3b246c](https://github.com/axios/axios/commit/a3b246c9de5c3bc4b5a742e15add55b375479451))
798
+
799
+ ### Contributors to this release
800
+
801
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+38/-26 (#5564 )')
802
+ - <img src="https://avatars.githubusercontent.com/u/19550000?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [lcysgsg](https://github.com/lcysgsg '+4/-0 (#5548 )')
803
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan '+3/-0 (#5444 )')
804
+
805
+ ### PRs
806
+
807
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
808
+
809
+ ```
810
+
811
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
812
+ ```
813
+
814
+ ## [1.3.3](https://github.com/axios/axios/compare/v1.3.2...v1.3.3) (2023-02-13)
815
+
816
+ ### Bug Fixes
817
+
818
+ - **formdata:** added a check to make sure the FormData class is available in the browser's global scope; ([#5545](https://github.com/axios/axios/issues/5545)) ([a6dfa72](https://github.com/axios/axios/commit/a6dfa72010db5ad52db8bd13c0f98e537e8fd05d))
819
+ - **formdata:** fixed setting NaN as Content-Length for form payload in some cases; ([#5535](https://github.com/axios/axios/issues/5535)) ([c19f7bf](https://github.com/axios/axios/commit/c19f7bf770f90ae8307f4ea3104f227056912da1))
820
+ - **headers:** fixed the filtering logic of the clear method; ([#5542](https://github.com/axios/axios/issues/5542)) ([ea87ebf](https://github.com/axios/axios/commit/ea87ebfe6d1699af072b9e7cd40faf8f14b0ab93))
821
+
822
+ ### Contributors to this release
823
+
824
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+11/-7 (#5545 #5535 #5542 )')
825
+ - <img src="https://avatars.githubusercontent.com/u/19842213?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [陈若枫](https://github.com/ruofee '+2/-2 (#5467 )')
826
+
827
+ ### PRs
828
+
829
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
830
+
831
+ ```
832
+
833
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
834
+ ```
835
+
836
+ ## [1.3.2](https://github.com/axios/axios/compare/v1.3.1...v1.3.2) (2023-02-03)
837
+
838
+ ### Bug Fixes
839
+
840
+ - **http:** treat http://localhost as base URL for relative paths to avoid `ERR_INVALID_URL` error; ([#5528](https://github.com/axios/axios/issues/5528)) ([128d56f](https://github.com/axios/axios/commit/128d56f4a0fb8f5f2ed6e0dd80bc9225fee9538c))
841
+ - **http:** use explicit import instead of TextEncoder global; ([#5530](https://github.com/axios/axios/issues/5530)) ([6b3c305](https://github.com/axios/axios/commit/6b3c305fc40c56428e0afabedc6f4d29c2830f6f))
842
+
843
+ ### Contributors to this release
844
+
845
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+2/-1 (#5530 #5528 )')
846
+
847
+ ### PRs
848
+
849
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
850
+
851
+ ```
852
+
853
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
854
+ ```
855
+
856
+ ## [1.3.1](https://github.com/axios/axios/compare/v1.3.0...v1.3.1) (2023-02-01)
857
+
858
+ ### Bug Fixes
859
+
860
+ - **formdata:** add hotfix to use the asynchronous API to compute the content-length header value; ([#5521](https://github.com/axios/axios/issues/5521)) ([96d336f](https://github.com/axios/axios/commit/96d336f527619f21da012fe1f117eeb53e5a2120))
861
+ - **serializer:** fixed serialization of array-like objects; ([#5518](https://github.com/axios/axios/issues/5518)) ([08104c0](https://github.com/axios/axios/commit/08104c028c0f9353897b1b6691d74c440fd0c32d))
862
+
863
+ ### Contributors to this release
864
+
865
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+27/-8 (#5521 #5518 )')
866
+
867
+ ### PRs
868
+
869
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
870
+
871
+ ```
872
+
873
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
874
+ ```
875
+
876
+ # [1.3.0](https://github.com/axios/axios/compare/v1.2.6...v1.3.0) (2023-01-31)
877
+
878
+ ### Bug Fixes
879
+
880
+ - **headers:** fixed & optimized clear method; ([#5507](https://github.com/axios/axios/issues/5507)) ([9915635](https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959))
881
+ - **http:** add zlib headers if missing ([#5497](https://github.com/axios/axios/issues/5497)) ([65e8d1e](https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c))
882
+
883
+ ### Features
884
+
885
+ - **fomdata:** added support for spec-compliant FormData & Blob types; ([#5316](https://github.com/axios/axios/issues/5316)) ([6ac574e](https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953))
886
+
887
+ ### Contributors to this release
888
+
889
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+352/-67 (#5514 #5512 #5510 #5509 #5508 #5316 #5507 )')
890
+ - <img src="https://avatars.githubusercontent.com/u/35015993?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [ItsNotGoodName](https://github.com/ItsNotGoodName '+43/-2 (#5497 )')
891
+
892
+ ### PRs
893
+
894
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
895
+
896
+ ```
897
+
898
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
899
+ ```
900
+
901
+ ## [1.2.6](https://github.com/axios/axios/compare/v1.2.5...v1.2.6) (2023-01-28)
902
+
903
+ ### Bug Fixes
904
+
905
+ - **headers:** added missed Authorization accessor; ([#5502](https://github.com/axios/axios/issues/5502)) ([342c0ba](https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26))
906
+ - **types:** fixed `CommonRequestHeadersList` & `CommonResponseHeadersList` types to be private in commonJS; ([#5503](https://github.com/axios/axios/issues/5503)) ([5a3d0a3](https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c))
907
+
908
+ ### Contributors to this release
909
+
910
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+24/-9 (#5503 #5502 )')
911
+
912
+ ### PRs
913
+
914
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
915
+
916
+ ```
917
+
918
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
919
+ ```
920
+
921
+ ## [1.2.5](https://github.com/axios/axios/compare/v1.2.4...v1.2.5) (2023-01-26)
922
+
923
+ ### Bug Fixes
924
+
925
+ - **types:** fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; ([#5499](https://github.com/axios/axios/issues/5499)) ([580f1e8](https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22))
926
+
927
+ ### Contributors to this release
928
+
929
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+82/-54 (#5499 )')
930
+ - ![avatar](https://avatars.githubusercontent.com/u/20516159?v=4&s=16) [Elliot Ford](https://github.com/EFord36 '+1/-1 (#5462 )')
931
+
932
+ ### PRs
933
+
934
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
935
+
936
+ ```
937
+
938
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
939
+ ```
940
+
941
+ ## [1.2.4](https://github.com/axios/axios/compare/v1.2.3...v1.2.4) (2023-01-22)
942
+
943
+ ### Bug Fixes
944
+
945
+ - **types:** renamed `RawAxiosRequestConfig` back to `AxiosRequestConfig`; ([#5486](https://github.com/axios/axios/issues/5486)) ([2a71f49](https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0))
946
+ - **types:** fix `AxiosRequestConfig` generic; ([#5478](https://github.com/axios/axios/issues/5478)) ([9bce81b](https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b))
947
+
948
+ ### Contributors to this release
949
+
950
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+242/-108 (#5486 #5482 )')
951
+ - ![avatar](https://avatars.githubusercontent.com/u/9430821?v=4&s=16) [Daniel Hillmann](https://github.com/hilleer '+1/-1 (#5478 )')
952
+
953
+ ### PRs
954
+
955
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
956
+
957
+ ```
958
+
959
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
960
+ ```
961
+
962
+ ## [1.2.3](https://github.com/axios/axios/compare/1.2.2...1.2.3) (2023-01-10)
963
+
964
+ ### Bug Fixes
965
+
966
+ - **types:** fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; ([#5420](https://github.com/axios/axios/issues/5420)) ([0811963](https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc))
967
+
968
+ ### Contributors to this release
969
+
970
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS '+938/-442 (#5456 #5455 #5453 #5451 #5449 #5447 #5446 #5443 #5442 #5439 #5420 )')
971
+
972
+ ### PRs
973
+
974
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
975
+
976
+ ```
977
+
978
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
979
+ ```
980
+
981
+ ## [1.2.2] - 2022-12-29
982
+
983
+ ### Fixed
984
+
985
+ - fix(ci): fix release script inputs [#5392](https://github.com/axios/axios/pull/5392)
986
+ - fix(ci): prerelease scipts [#5377](https://github.com/axios/axios/pull/5377)
987
+ - fix(ci): release scripts [#5376](https://github.com/axios/axios/pull/5376)
988
+ - fix(ci): typescript tests [#5375](https://github.com/axios/axios/pull/5375)
989
+ - fix: Brotli decompression [#5353](https://github.com/axios/axios/pull/5353)
990
+ - fix: add missing HttpStatusCode [#5345](https://github.com/axios/axios/pull/5345)
991
+
992
+ ### Chores
993
+
994
+ - chore(ci): set conventional-changelog header config [#5406](https://github.com/axios/axios/pull/5406)
995
+ - chore(ci): fix automatic contributors resolving [#5403](https://github.com/axios/axios/pull/5403)
996
+ - chore(ci): improved logging for the contributors list generator [#5398](https://github.com/axios/axios/pull/5398)
997
+ - chore(ci): fix release action [#5397](https://github.com/axios/axios/pull/5397)
998
+ - chore(ci): fix version bump script by adding bump argument for target version [#5393](https://github.com/axios/axios/pull/5393)
999
+ - chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 [#5342](https://github.com/axios/axios/pull/5342)
1000
+ - chore(ci): GitHub Actions Release script [#5384](https://github.com/axios/axios/pull/5384)
1001
+ - chore(ci): release scripts [#5364](https://github.com/axios/axios/pull/5364)
1002
+
1003
+ ### Contributors to this release
1004
+
1005
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1006
+ - ![avatar](https://avatars.githubusercontent.com/u/1652293?v=4&s=16) [Winnie](https://github.com/winniehell)
1007
+
1008
+ ## [1.2.1] - 2022-12-05
1009
+
1010
+ ### Changed
1011
+
1012
+ - feat(exports): export mergeConfig [#5151](https://github.com/axios/axios/pull/5151)
1013
+
1014
+ ### Fixed
1015
+
1016
+ - fix(CancelledError): include config [#4922](https://github.com/axios/axios/pull/4922)
1017
+ - fix(general): removing multiple/trailing/leading whitespace [#5022](https://github.com/axios/axios/pull/5022)
1018
+ - fix(headers): decompression for responses without Content-Length header [#5306](https://github.com/axios/axios/pull/5306)
1019
+ - fix(webWorker): exception to sending form data in web worker [#5139](https://github.com/axios/axios/pull/5139)
1020
+
1021
+ ### Refactors
1022
+
1023
+ - refactor(types): AxiosProgressEvent.event type to any [#5308](https://github.com/axios/axios/pull/5308)
1024
+ - refactor(types): add missing types for static AxiosError.from method [#4956](https://github.com/axios/axios/pull/4956)
1025
+
1026
+ ### Chores
1027
+
1028
+ - chore(docs): remove README link to non-existent upgrade guide [#5307](https://github.com/axios/axios/pull/5307)
1029
+ - chore(docs): typo in issue template name [#5159](https://github.com/axios/axios/pull/5159)
1030
+
1031
+ ### Contributors to this release
1032
+
1033
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1034
+ - [Zachary Lysobey](https://github.com/zachlysobey)
1035
+ - [Kevin Ennis](https://github.com/kevincennis)
1036
+ - [Philipp Loose](https://github.com/phloose)
1037
+ - [secondl1ght](https://github.com/secondl1ght)
1038
+ - [wenzheng](https://github.com/0x30)
1039
+ - [Ivan Barsukov](https://github.com/ovarn)
1040
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
1041
+
1042
+ ### PRs
1043
+
1044
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1045
+
1046
+ ```
1047
+
1048
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1049
+ ```
1050
+
1051
+ ## [1.2.0] - 2022-11-10
1052
+
1053
+ ### Changed
1054
+
1055
+ - changed: refactored module exports [#5162](https://github.com/axios/axios/pull/5162)
1056
+ - change: re-added support for loading Axios with require('axios').default [#5225](https://github.com/axios/axios/pull/5225)
1057
+
1058
+ ### Fixed
1059
+
1060
+ - fix: improve AxiosHeaders class [#5224](https://github.com/axios/axios/pull/5224)
1061
+ - fix: TypeScript type definitions for commonjs [#5196](https://github.com/axios/axios/pull/5196)
1062
+ - fix: type definition of use method on AxiosInterceptorManager to match the the README [#5071](https://github.com/axios/axios/pull/5071)
1063
+ - fix: \_\_dirname is not defined in the sandbox [#5269](https://github.com/axios/axios/pull/5269)
1064
+ - fix: AxiosError.toJSON method to avoid circular references [#5247](https://github.com/axios/axios/pull/5247)
1065
+ - fix: Z_BUF_ERROR when content-encoding is set but the response body is empty [#5250](https://github.com/axios/axios/pull/5250)
1066
+
1067
+ ### Refactors
1068
+
1069
+ - refactor: allowing adapters to be loaded by name [#5277](https://github.com/axios/axios/pull/5277)
1070
+
1071
+ ### Chores
1072
+
1073
+ - chore: force CI restart [#5243](https://github.com/axios/axios/pull/5243)
1074
+ - chore: update ECOSYSTEM.md [#5077](https://github.com/axios/axios/pull/5077)
1075
+ - chore: update get/index.html [#5116](https://github.com/axios/axios/pull/5116)
1076
+ - chore: update Sandbox UI/UX [#5205](https://github.com/axios/axios/pull/5205)
1077
+ - chore:(actions): remove git credentials after checkout [#5235](https://github.com/axios/axios/pull/5235)
1078
+ - chore(actions): bump actions/dependency-review-action from 2 to 3 [#5266](https://github.com/axios/axios/pull/5266)
1079
+ - chore(packages): bump loader-utils from 1.4.1 to 1.4.2 [#5295](https://github.com/axios/axios/pull/5295)
1080
+ - chore(packages): bump engine.io from 6.2.0 to 6.2.1 [#5294](https://github.com/axios/axios/pull/5294)
1081
+ - chore(packages): bump socket.io-parser from 4.0.4 to 4.0.5 [#5241](https://github.com/axios/axios/pull/5241)
1082
+ - chore(packages): bump loader-utils from 1.4.0 to 1.4.1 [#5245](https://github.com/axios/axios/pull/5245)
1083
+ - chore(docs): update Resources links in README [#5119](https://github.com/axios/axios/pull/5119)
1084
+ - chore(docs): update the link for JSON url [#5265](https://github.com/axios/axios/pull/5265)
1085
+ - chore(docs): fix broken links [#5218](https://github.com/axios/axios/pull/5218)
1086
+ - chore(docs): update and rename UPGRADE_GUIDE.md to MIGRATION_GUIDE.md [#5170](https://github.com/axios/axios/pull/5170)
1087
+ - chore(docs): typo fix line #856 and #920 [#5194](https://github.com/axios/axios/pull/5194)
1088
+ - chore(docs): typo fix #800 [#5193](https://github.com/axios/axios/pull/5193)
1089
+ - chore(docs): fix typos [#5184](https://github.com/axios/axios/pull/5184)
1090
+ - chore(docs): fix punctuation in README.md [#5197](https://github.com/axios/axios/pull/5197)
1091
+ - chore(docs): update readme in the Handling Errors section - issue reference #5260 [#5261](https://github.com/axios/axios/pull/5261)
1092
+ - chore: remove \b from filename [#5207](https://github.com/axios/axios/pull/5207)
1093
+ - chore(docs): update CHANGELOG.md [#5137](https://github.com/axios/axios/pull/5137)
1094
+ - chore: add sideEffects false to package.json [#5025](https://github.com/axios/axios/pull/5025)
1095
+
1096
+ ### Contributors to this release
1097
+
1098
+ - [Maddy Miller](https://github.com/me4502)
1099
+ - [Amit Saini](https://github.com/amitsainii)
1100
+ - [ecyrbe](https://github.com/ecyrbe)
1101
+ - [Ikko Ashimine](https://github.com/eltociear)
1102
+ - [Geeth Gunnampalli](https://github.com/thetechie7)
1103
+ - [Shreem Asati](https://github.com/shreem-123)
1104
+ - [Frieder Bluemle](https://github.com/friederbluemle)
1105
+ - [윤세영](https://github.com/yunseyeong)
1106
+ - [Claudio Busatto](https://github.com/cjcbusatto)
1107
+ - [Remco Haszing](https://github.com/remcohaszing)
1108
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1109
+ - [Csaba Maulis](https://github.com/om4csaba)
1110
+ - [MoPaMo](https://github.com/MoPaMo)
1111
+ - [Daniel Fjeldstad](https://github.com/w3bdesign)
1112
+ - [Adrien Brunet](https://github.com/adrien-may)
1113
+ - [Frazer Smith](https://github.com/Fdawgs)
1114
+ - [HaiTao](https://github.com/836334258)
1115
+ - [AZM](https://github.com/aziyatali)
1116
+ - [relbns](https://github.com/relbns)
1117
+
1118
+ ### PRs
1119
+
1120
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1121
+
1122
+ ```
1123
+
1124
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1125
+ ```
1126
+
1127
+ ## [1.1.3] - 2022-10-15
1128
+
1129
+ ### Added
1130
+
1131
+ - Added custom params serializer support [#5113](https://github.com/axios/axios/pull/5113)
1132
+
1133
+ ### Fixed
1134
+
1135
+ - Fixed top-level export to keep them in-line with static properties [#5109](https://github.com/axios/axios/pull/5109)
1136
+ - Stopped including null values to query string. [#5108](https://github.com/axios/axios/pull/5108)
1137
+ - Restored proxy config backwards compatibility with 0.x [#5097](https://github.com/axios/axios/pull/5097)
1138
+ - Added back AxiosHeaders in AxiosHeaderValue [#5103](https://github.com/axios/axios/pull/5103)
1139
+ - Pin CDN install instructions to a specific version [#5060](https://github.com/axios/axios/pull/5060)
1140
+ - Handling of array values fixed for AxiosHeaders [#5085](https://github.com/axios/axios/pull/5085)
1141
+
1142
+ ### Chores
1143
+
1144
+ - docs: match badge style, add link to them [#5046](https://github.com/axios/axios/pull/5046)
1145
+ - chore: fixing comments typo [#5054](https://github.com/axios/axios/pull/5054)
1146
+ - chore: update issue template [#5061](https://github.com/axios/axios/pull/5061)
1147
+ - chore: added progress capturing section to the docs; [#5084](https://github.com/axios/axios/pull/5084)
1148
+
1149
+ ### Contributors to this release
1150
+
1151
+ - [Jason Saayman](https://github.com/jasonsaayman)
1152
+ - [scarf](https://github.com/scarf005)
1153
+ - [Lenz Weber-Tronic](https://github.com/phryneas)
1154
+ - [Arvindh](https://github.com/itsarvindh)
1155
+ - [Félix Legrelle](https://github.com/FelixLgr)
1156
+ - [Patrick Petrovic](https://github.com/ppati000)
1157
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1158
+ - [littledian](https://github.com/littledian)
1159
+ - [ChronosMasterOfAllTime](https://github.com/ChronosMasterOfAllTime)
1160
+
1161
+ ### PRs
1162
+
1163
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1164
+
1165
+ ```
1166
+
1167
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1168
+ ```
1169
+
1170
+ ## [1.1.2] - 2022-10-07
1171
+
1172
+ ### Fixed
1173
+
1174
+ - Fixed broken exports for UMD builds.
1175
+
1176
+ ### Contributors to this release
1177
+
1178
+ - [Jason Saayman](https://github.com/jasonsaayman)
1179
+
1180
+ ### PRs
1181
+
1182
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1183
+
1184
+ ```
1185
+
1186
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1187
+ ```
1188
+
1189
+ ## [1.1.1] - 2022-10-07
1190
+
1191
+ ### Fixed
1192
+
1193
+ - Fixed broken exports for common js. This fix breaks a prior fix, I will fix both issues ASAP but the commonJS use is more impactful.
1194
+
1195
+ ### Contributors to this release
1196
+
1197
+ - [Jason Saayman](https://github.com/jasonsaayman)
1198
+
1199
+ ### PRs
1200
+
1201
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1202
+
1203
+ ```
1204
+
1205
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1206
+ ```
1207
+
1208
+ ## [1.1.0] - 2022-10-06
1209
+
1210
+ ### Fixed
1211
+
1212
+ - Fixed missing exports in type definition index.d.ts [#5003](https://github.com/axios/axios/pull/5003)
1213
+ - Fixed query params composing [#5018](https://github.com/axios/axios/pull/5018)
1214
+ - Fixed GenericAbortSignal interface by making it more generic [#5021](https://github.com/axios/axios/pull/5021)
1215
+ - Fixed adding "clear" to AxiosInterceptorManager [#5010](https://github.com/axios/axios/pull/5010)
1216
+ - Fixed commonjs & umd exports [#5030](https://github.com/axios/axios/pull/5030)
1217
+ - Fixed inability to access response headers when using axios 1.x with Jest [#5036](https://github.com/axios/axios/pull/5036)
1218
+
1219
+ ### Contributors to this release
1220
+
1221
+ - [Trim21](https://github.com/trim21)
1222
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1223
+ - [shingo.sasaki](https://github.com/s-sasaki-0529)
1224
+ - [Ivan Pepelko](https://github.com/ivanpepelko)
1225
+ - [Richard Kořínek](https://github.com/risa)
1226
+
1227
+ ### PRs
1228
+
1229
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
1230
+
1231
+ ```
1232
+
1233
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
1234
+ ```
1235
+
1236
+ ## [1.0.0] - 2022-10-04
1237
+
1238
+ ### Added
1239
+
1240
+ - Added stack trace to AxiosError [#4624](https://github.com/axios/axios/pull/4624)
1241
+ - Add AxiosError to AxiosStatic [#4654](https://github.com/axios/axios/pull/4654)
1242
+ - Replaced Rollup as our build runner [#4596](https://github.com/axios/axios/pull/4596)
1243
+ - Added generic TS types for the exposed toFormData helper [#4668](https://github.com/axios/axios/pull/4668)
1244
+ - Added listen callback function [#4096](https://github.com/axios/axios/pull/4096)
1245
+ - Added instructions for installing using PNPM [#4207](https://github.com/axios/axios/pull/4207)
1246
+ - Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill [#4229](https://github.com/axios/axios/pull/4229)
1247
+ - Added axios-url-template in ECOSYSTEM.md [#4238](https://github.com/axios/axios/pull/4238)
1248
+ - Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an axios instance [#4248](https://github.com/axios/axios/pull/4248)
1249
+ - Added react hook plugin [#4319](https://github.com/axios/axios/pull/4319)
1250
+ - Adding HTTP status code for transformResponse [#4580](https://github.com/axios/axios/pull/4580)
1251
+ - Added blob to the list of protocols supported by the browser [#4678](https://github.com/axios/axios/pull/4678)
1252
+ - Resolving proxy from env on redirect [#4436](https://github.com/axios/axios/pull/4436)
1253
+ - Added enhanced toFormData implementation with additional options [4704](https://github.com/axios/axios/pull/4704)
1254
+ - Adding Canceler parameters config and request [#4711](https://github.com/axios/axios/pull/4711)
1255
+ - Added automatic payload serialization to application/x-www-form-urlencoded [#4714](https://github.com/axios/axios/pull/4714)
1256
+ - Added the ability for webpack users to overwrite built-ins [#4715](https://github.com/axios/axios/pull/4715)
1257
+ - Added string[] to AxiosRequestHeaders type [#4322](https://github.com/axios/axios/pull/4322)
1258
+ - Added the ability for the url-encoded-form serializer to respect the formSerializer config [#4721](https://github.com/axios/axios/pull/4721)
1259
+ - Added isCancel type assert [#4293](https://github.com/axios/axios/pull/4293)
1260
+ - Added data URL support for node.js [#4725](https://github.com/axios/axios/pull/4725)
1261
+ - Adding types for progress event callbacks [#4675](https://github.com/axios/axios/pull/4675)
1262
+ - URL params serializer [#4734](https://github.com/axios/axios/pull/4734)
1263
+ - Added axios.formToJSON method [#4735](https://github.com/axios/axios/pull/4735)
1264
+ - Bower platform add data protocol [#4804](https://github.com/axios/axios/pull/4804)
1265
+ - Use WHATWG URL API instead of url.parse() [#4852](https://github.com/axios/axios/pull/4852)
1266
+ - Add ENUM containing Http Status Codes to typings [#4903](https://github.com/axios/axios/pull/4903)
1267
+ - Improve typing of timeout in index.d.ts [#4934](https://github.com/axios/axios/pull/4934)
1268
+
1269
+ ### Changed
1270
+
1271
+ - Updated AxiosError.config to be optional in the type definition [#4665](https://github.com/axios/axios/pull/4665)
1272
+ - Updated README emphasizing the URLSearchParam built-in interface over other solutions [#4590](https://github.com/axios/axios/pull/4590)
1273
+ - Include request and config when creating a CanceledError instance [#4659](https://github.com/axios/axios/pull/4659)
1274
+ - Changed func-names eslint rule to as-needed [#4492](https://github.com/axios/axios/pull/4492)
1275
+ - Replacing deprecated substr() with slice() as substr() is deprecated [#4468](https://github.com/axios/axios/pull/4468)
1276
+ - Updating HTTP links in README.md to use HTTPS [#4387](https://github.com/axios/axios/pull/4387)
1277
+ - Updated to a better trim() polyfill [#4072](https://github.com/axios/axios/pull/4072)
1278
+ - Updated types to allow specifying partial default headers on instance create [#4185](https://github.com/axios/axios/pull/4185)
1279
+ - Expanded isAxiosError types [#4344](https://github.com/axios/axios/pull/4344)
1280
+ - Updated type definition for axios instance methods [#4224](https://github.com/axios/axios/pull/4224)
1281
+ - Updated eslint config [#4722](https://github.com/axios/axios/pull/4722)
1282
+ - Updated Docs [#4742](https://github.com/axios/axios/pull/4742)
1283
+ - Refactored Axios to use ES2017 [#4787](https://github.com/axios/axios/pull/4787)
1284
+
1285
+ ### Deprecated
1286
+
1287
+ - There are multiple deprecations, refactors and fixes provided in this release. Please read through the full release notes to see how this may impact your project and use case.
1288
+
1289
+ ### Removed
1290
+
1291
+ - Removed incorrect argument for NetworkError constructor [#4656](https://github.com/axios/axios/pull/4656)
1292
+ - Removed Webpack [#4596](https://github.com/axios/axios/pull/4596)
1293
+ - Removed function that transform arguments to array [#4544](https://github.com/axios/axios/pull/4544)
1294
+
1295
+ ### Fixed
1296
+
1297
+ - Fixed grammar in README [#4649](https://github.com/axios/axios/pull/4649)
1298
+ - Fixed code error in README [#4599](https://github.com/axios/axios/pull/4599)
1299
+ - Optimized the code that checks cancellation [#4587](https://github.com/axios/axios/pull/4587)
1300
+ - Fix url pointing to defaults.js in README [#4532](https://github.com/axios/axios/pull/4532)
1301
+ - Use type alias instead of interface for AxiosPromise [#4505](https://github.com/axios/axios/pull/4505)
1302
+ - Fix some word spelling and lint style in code comments [#4500](https://github.com/axios/axios/pull/4500)
1303
+ - Edited readme with 3 updated browser icons of Chrome, FireFox and Safari [#4414](https://github.com/axios/axios/pull/4414)
1304
+ - Bump follow-redirects from 1.14.9 to 1.15.0 [#4673](https://github.com/axios/axios/pull/4673)
1305
+ - Fixing http tests to avoid hanging when assertions fail [#4435](https://github.com/axios/axios/pull/4435)
1306
+ - Fix TS definition for AxiosRequestTransformer [#4201](https://github.com/axios/axios/pull/4201)
1307
+ - Fix grammatical issues in README [#4232](https://github.com/axios/axios/pull/4232)
1308
+ - Fixing instance.defaults.headers type [#4557](https://github.com/axios/axios/pull/4557)
1309
+ - Fixed race condition on immediate requests cancellation [#4261](https://github.com/axios/axios/pull/4261)
1310
+ - Fixing Z_BUF_ERROR when no content [#4701](https://github.com/axios/axios/pull/4701)
1311
+ - Fixing proxy beforeRedirect regression [#4708](https://github.com/axios/axios/pull/4708)
1312
+ - Fixed AxiosError status code type [#4717](https://github.com/axios/axios/pull/4717)
1313
+ - Fixed AxiosError stack capturing [#4718](https://github.com/axios/axios/pull/4718)
1314
+ - Fixing AxiosRequestHeaders typings [#4334](https://github.com/axios/axios/pull/4334)
1315
+ - Fixed max body length defaults [#4731](https://github.com/axios/axios/pull/4731)
1316
+ - Fixed toFormData Blob issue on node>v17 [#4728](https://github.com/axios/axios/pull/4728)
1317
+ - Bump grunt from 1.5.2 to 1.5.3 [#4743](https://github.com/axios/axios/pull/4743)
1318
+ - Fixing content-type header repeated [#4745](https://github.com/axios/axios/pull/4745)
1319
+ - Fixed timeout error message for http [4738](https://github.com/axios/axios/pull/4738)
1320
+ - Request ignores false, 0 and empty string as body values [#4785](https://github.com/axios/axios/pull/4785)
1321
+ - Added back missing minified builds [#4805](https://github.com/axios/axios/pull/4805)
1322
+ - Fixed a type error [#4815](https://github.com/axios/axios/pull/4815)
1323
+ - Fixed a regression bug with unsubscribing from cancel token; [#4819](https://github.com/axios/axios/pull/4819)
1324
+ - Remove repeated compression algorithm [#4820](https://github.com/axios/axios/pull/4820)
1325
+ - The error of calling extend to pass parameters [#4857](https://github.com/axios/axios/pull/4857)
1326
+ - SerializerOptions.indexes allows boolean | null | undefined [#4862](https://github.com/axios/axios/pull/4862)
1327
+ - Require interceptors to return values [#4874](https://github.com/axios/axios/pull/4874)
1328
+ - Removed unused imports [#4949](https://github.com/axios/axios/pull/4949)
1329
+ - Allow null indexes on formSerializer and paramsSerializer [#4960](https://github.com/axios/axios/pull/4960)
1330
+
1331
+ ### Chores
1332
+
1333
+ - Set permissions for GitHub actions [#4765](https://github.com/axios/axios/pull/4765)
1334
+ - Included githubactions in the dependabot config [#4770](https://github.com/axios/axios/pull/4770)
1335
+ - Included dependency review [#4771](https://github.com/axios/axios/pull/4771)
1336
+ - Update security.md [#4784](https://github.com/axios/axios/pull/4784)
1337
+ - Remove unnecessary spaces [#4854](https://github.com/axios/axios/pull/4854)
1338
+ - Simplify the import path of AxiosError [#4875](https://github.com/axios/axios/pull/4875)
1339
+ - Fix Gitpod dead link [#4941](https://github.com/axios/axios/pull/4941)
1340
+ - Enable syntax highlighting for a code block [#4970](https://github.com/axios/axios/pull/4970)
1341
+ - Using Logo Axios in Readme.md [#4993](https://github.com/axios/axios/pull/4993)
1342
+ - Fix markup for note in README [#4825](https://github.com/axios/axios/pull/4825)
1343
+ - Fix typo and formatting, add colons [#4853](https://github.com/axios/axios/pull/4853)
1344
+ - Fix typo in readme [#4942](https://github.com/axios/axios/pull/4942)
1345
+
1346
+ ### Security
1347
+
1348
+ - Update SECURITY.md [#4687](https://github.com/axios/axios/pull/4687)
1349
+
1350
+ ### Contributors to this release
1351
+
1352
+ - [Bertrand Marron](https://github.com/tusbar)
1353
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1354
+ - [Dan Mooney](https://github.com/danmooney)
1355
+ - [Michael Li](https://github.com/xiaoyu-tamu)
1356
+ - [aong](https://github.com/yxwzaxns)
1357
+ - [Des Preston](https://github.com/despreston)
1358
+ - [Ted Robertson](https://github.com/tredondo)
1359
+ - [zhoulixiang](https://github.com/zh-lx)
1360
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
1361
+ - [Kumar Shanu](https://github.com/Kr-Shanu)
1362
+ - [JALAL](https://github.com/JLL32)
1363
+ - [Jingyi Lin](https://github.com/MageeLin)
1364
+ - [Philipp Loose](https://github.com/phloose)
1365
+ - [Alexander Shchukin](https://github.com/sashsvamir)
1366
+ - [Dave Cardwell](https://github.com/davecardwell)
1367
+ - [Cat Scarlet](https://github.com/catscarlet)
1368
+ - [Luca Pizzini](https://github.com/lpizzinidev)
1369
+ - [Kai](https://github.com/Schweinepriester)
1370
+ - [Maxime Bargiel](https://github.com/mbargiel)
1371
+ - [Brian Helba](https://github.com/brianhelba)
1372
+ - [reslear](https://github.com/reslear)
1373
+ - [Jamie Slome](https://github.com/JamieSlome)
1374
+ - [Landro3](https://github.com/Landro3)
1375
+ - [rafw87](https://github.com/rafw87)
1376
+ - [Afzal Sayed](https://github.com/afzalsayed96)
1377
+ - [Koki Oyatsu](https://github.com/kaishuu0123)
1378
+ - [Dave](https://github.com/wangcch)
1379
+ - [暴走老七](https://github.com/baozouai)
1380
+ - [Spencer](https://github.com/spalger)
1381
+ - [Adrian Wieprzkowicz](https://github.com/Argeento)
1382
+ - [Jamie Telin](https://github.com/lejahmie)
1383
+ - [毛呆](https://github.com/aweikalee)
1384
+ - [Kirill Shakirov](https://github.com/turisap)
1385
+ - [Rraji Abdelbari](https://github.com/estarossa0)
1386
+ - [Jelle Schutter](https://github.com/jelleschutter)
1387
+ - [Tom Ceuppens](https://github.com/KyorCode)
1388
+ - [Johann Cooper](https://github.com/JohannCooper)
1389
+ - [Dimitris Halatsis](https://github.com/mitsos1os)
1390
+ - [chenjigeng](https://github.com/chenjigeng)
1391
+ - [João Gabriel Quaresma](https://github.com/joaoGabriel55)
1392
+ - [Victor Augusto](https://github.com/VictorAugDB)
1393
+ - [neilnaveen](https://github.com/neilnaveen)
1394
+ - [Pavlos](https://github.com/psmoros)
1395
+ - [Kiryl Valkovich](https://github.com/visortelle)
1396
+ - [Naveen](https://github.com/naveensrinivasan)
1397
+ - [wenzheng](https://github.com/0x30)
1398
+ - [hcwhan](https://github.com/hcwhan)
1399
+ - [Bassel Rachid](https://github.com/basselworkforce)
1400
+ - [Grégoire Pineau](https://github.com/lyrixx)
1401
+ - [felipedamin](https://github.com/felipedamin)
1402
+ - [Karl Horky](https://github.com/karlhorky)
1403
+ - [Yue JIN](https://github.com/kingyue737)
1404
+ - [Usman Ali Siddiqui](https://github.com/usman250994)
1405
+ - [WD](https://github.com/techbirds)
1406
+ - [Günther Foidl](https://github.com/gfoidl)
1407
+ - [Stephen Jennings](https://github.com/jennings)
1408
+ - [C.T.Lin](https://github.com/chentsulin)
1409
+ - [mia-z](https://github.com/mia-z)
1410
+ - [Parth Banathia](https://github.com/Parth0105)
1411
+ - [parth0105pluang](https://github.com/parth0105pluang)
1412
+ - [Marco Weber](https://github.com/mrcwbr)
1413
+ - [Luca Pizzini](https://github.com/lpizzinidev)
1414
+ - [Willian Agostini](https://github.com/WillianAgostini)
1415
+
1416
+ - [Huyen Nguyen](https://github.com/huyenltnguyen)