mcp-lab-agent 2.0.1 → 2.1.2
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.
- package/README.md +19 -12
- package/dist/index.js +1189 -481
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
- package/qa-lab-agent.config.json +12 -0
- package/slack-bot/.env +10 -0
- package/slack-bot/.env.example +10 -0
- package/slack-bot/README.md +66 -0
- package/slack-bot/node_modules/.package-lock.json +2782 -0
- package/slack-bot/node_modules/@slack/bolt/LICENSE +22 -0
- package/slack-bot/node_modules/@slack/bolt/README.md +142 -0
- package/slack-bot/node_modules/@slack/bolt/dist/App.d.ts +241 -0
- package/slack-bot/node_modules/@slack/bolt/dist/App.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/App.js +949 -0
- package/slack-bot/node_modules/@slack/bolt/dist/App.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.d.ts +64 -0
- package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.js +140 -0
- package/slack-bot/node_modules/@slack/bolt/dist/CustomFunction.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.d.ts +107 -0
- package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.js +196 -0
- package/slack-bot/node_modules/@slack/bolt/dist/WorkflowStep.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.d.ts +31 -0
- package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.js +71 -0
- package/slack-bot/node_modules/@slack/bolt/dist/conversation-store.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/errors.d.ts +92 -0
- package/slack-bot/node_modules/@slack/bolt/dist/errors.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/errors.js +149 -0
- package/slack-bot/node_modules/@slack/bolt/dist/errors.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/helpers.d.ts +38 -0
- package/slack-bot/node_modules/@slack/bolt/dist/helpers.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/helpers.js +139 -0
- package/slack-bot/node_modules/@slack/bolt/dist/helpers.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/index.d.ts +19 -0
- package/slack-bot/node_modules/@slack/bolt/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/index.js +54 -0
- package/slack-bot/node_modules/@slack/bolt/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.d.ts +62 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.js +339 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/builtin.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.d.ts +5 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.js +25 -0
- package/slack-bot/node_modules/@slack/bolt/dist/middleware/process.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.d.ts +96 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.js +205 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/AwsLambdaReceiver.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.d.ts +7 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/BufferedIncomingMessage.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.d.ts +93 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.js +438 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ExpressReceiver.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.d.ts +47 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.js +210 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPModuleFunctions.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.d.ts +94 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.js +375 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPReceiver.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.d.ts +30 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.js +64 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/HTTPResponseAck.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.d.ts +14 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/ParamsIncomingMessage.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.d.ts +12 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.js +29 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeFunctions.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.d.ts +69 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.js +179 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/SocketModeReceiver.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.d.ts +15 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.js +33 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/custom-routes.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.d.ts +5 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.js +19 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/http-utils.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.d.ts +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.js +32 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/render-html-for-install-path.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.d.ts +7 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.js +23 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-redirect-opts.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.d.ts +33 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.js +79 -0
- package/slack-bot/node_modules/@slack/bolt/dist/receivers/verify-request.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.d.ts +251 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/block-action.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.d.ts +47 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/dialog-action.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.d.ts +51 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.js +21 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.d.ts +66 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/interactive-message.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.d.ts +49 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/actions/workflow-step-edit.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.d.ts +36 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/command/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.d.ts +68 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.js +19 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/events/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.d.ts +17 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/helpers.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/index.d.ts +10 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/index.js +26 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.d.ts +87 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.js +17 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/middleware.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.d.ts +194 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/options/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.d.ts +16 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/receiver.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.d.ts +29 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/global-shortcut.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.d.ts +23 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.js +20 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.d.ts +43 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/shortcuts/message-shortcut.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.d.ts +23 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/utilities.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.d.ts +310 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.js +3 -0
- package/slack-bot/node_modules/@slack/bolt/dist/types/view/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/bolt/package.json +89 -0
- package/slack-bot/node_modules/@slack/logger/LICENSE +23 -0
- package/slack-bot/node_modules/@slack/logger/README.md +66 -0
- package/slack-bot/node_modules/@slack/logger/dist/index.d.ts +94 -0
- package/slack-bot/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/logger/dist/index.js +94 -0
- package/slack-bot/node_modules/@slack/logger/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/logger/package.json +43 -0
- package/slack-bot/node_modules/@slack/oauth/README.md +377 -0
- package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.d.ts +13 -0
- package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/authorize-result.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/callback-options.d.ts +36 -0
- package/slack-bot/node_modules/@slack/oauth/dist/callback-options.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/callback-options.js +69 -0
- package/slack-bot/node_modules/@slack/oauth/dist/callback-options.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.d.ts +2 -0
- package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.js +7 -0
- package/slack-bot/node_modules/@slack/oauth/dist/default-render-html-for-install-path.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/errors.d.ts +39 -0
- package/slack-bot/node_modules/@slack/oauth/dist/errors.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/errors.js +105 -0
- package/slack-bot/node_modules/@slack/oauth/dist/errors.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/index.d.ts +14 -0
- package/slack-bot/node_modules/@slack/oauth/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/index.js +38 -0
- package/slack-bot/node_modules/@slack/oauth/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.d.ts +22 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-path-options.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.d.ts +82 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider-options.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider.d.ts +117 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider.js +785 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-provider.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.d.ts +8 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/install-url-options.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-query.d.ts +9 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-query.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-query.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-query.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.d.ts +17 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.js +173 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/file-store.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.d.ts +4 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.js +11 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.d.ts +8 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/interface.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.d.ts +13 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.js +139 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation-stores/memory-store.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation.d.ts +95 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/installation.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/logger.d.ts +7 -0
- package/slack-bot/node_modules/@slack/oauth/dist/logger.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/logger.js +29 -0
- package/slack-bot/node_modules/@slack/oauth/dist/logger.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.d.ts +10 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.js +85 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/clear-state-store.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.d.ts +21 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.js +148 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/file-state-store.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.d.ts +4 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.js +11 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.d.ts +37 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.js +3 -0
- package/slack-bot/node_modules/@slack/oauth/dist/state-stores/interface.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/README.md +0 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.d.ts +100 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.js +92 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/oauth/node_modules/@slack/logger/package.json +52 -0
- package/slack-bot/node_modules/@slack/oauth/package.json +76 -0
- package/slack-bot/node_modules/@slack/socket-mode/README.md +232 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.d.ts +158 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.js +660 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeClient.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.d.ts +13 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.js +3 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/SocketModeOptions.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.d.ts +8 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.js +15 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/UnrecoverableSocketModeStartError.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/errors.d.ts +60 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/errors.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/errors.js +68 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/errors.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/index.d.ts +7 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/index.js +13 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/logger.d.ts +7 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/logger.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/logger.js +29 -0
- package/slack-bot/node_modules/@slack/socket-mode/dist/logger.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/README.md +0 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.d.ts +100 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.js +92 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/socket-mode/node_modules/@slack/logger/package.json +52 -0
- package/slack-bot/node_modules/@slack/socket-mode/package.json +76 -0
- package/slack-bot/node_modules/@slack/types/LICENSE +23 -0
- package/slack-bot/node_modules/@slack/types/README.md +32 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.d.ts +953 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.js +4 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/block-elements.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.d.ts +405 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/blocks.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.d.ts +237 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.js +4 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/composition-objects.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.d.ts +88 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/block-kit/extensions.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/calls.d.ts +26 -0
- package/slack-bot/node_modules/@slack/types/dist/calls.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/calls.js +6 -0
- package/slack-bot/node_modules/@slack/types/dist/calls.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/chunk.d.ts +42 -0
- package/slack-bot/node_modules/@slack/types/dist/chunk.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/chunk.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/chunk.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.d.ts +12 -0
- package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/common/bot-profile.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.d.ts +6 -0
- package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/common/status-emoji-display-info.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/dialog.d.ts +36 -0
- package/slack-bot/node_modules/@slack/types/dist/dialog.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/dialog.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/dialog.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/app.d.ts +204 -0
- package/slack-bot/node_modules/@slack/types/dist/events/app.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/app.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/app.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/assistant.d.ts +29 -0
- package/slack-bot/node_modules/@slack/types/dist/events/assistant.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/assistant.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/assistant.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/call.d.ts +8 -0
- package/slack-bot/node_modules/@slack/types/dist/events/call.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/call.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/call.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/channel.d.ts +85 -0
- package/slack-bot/node_modules/@slack/types/dist/events/channel.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/channel.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/channel.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/dnd.d.ts +24 -0
- package/slack-bot/node_modules/@slack/types/dist/events/dnd.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/dnd.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/dnd.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/email.d.ts +6 -0
- package/slack-bot/node_modules/@slack/types/dist/events/email.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/email.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/email.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/emoji.d.ts +11 -0
- package/slack-bot/node_modules/@slack/types/dist/events/emoji.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/emoji.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/emoji.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.d.ts +21 -0
- package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/entity-details-requested.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/file.d.ts +60 -0
- package/slack-bot/node_modules/@slack/types/dist/events/file.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/file.js +4 -0
- package/slack-bot/node_modules/@slack/types/dist/events/file.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/function.d.ts +33 -0
- package/slack-bot/node_modules/@slack/types/dist/events/function.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/function.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/function.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.d.ts +9 -0
- package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/grid-migration.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/group.d.ts +55 -0
- package/slack-bot/node_modules/@slack/types/dist/events/group.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/group.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/group.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/im.d.ts +26 -0
- package/slack-bot/node_modules/@slack/types/dist/events/im.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/im.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/im.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/index.d.ts +60 -0
- package/slack-bot/node_modules/@slack/types/dist/events/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/index.js +43 -0
- package/slack-bot/node_modules/@slack/types/dist/events/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/invite.d.ts +20 -0
- package/slack-bot/node_modules/@slack/types/dist/events/invite.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/invite.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/invite.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/link-shared.d.ts +16 -0
- package/slack-bot/node_modules/@slack/types/dist/events/link-shared.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/link-shared.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/link-shared.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/member.d.ts +19 -0
- package/slack-bot/node_modules/@slack/types/dist/events/member.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/member.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/member.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.d.ts +38 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message-metadata.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message.d.ts +306 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/message.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/pin.d.ts +60 -0
- package/slack-bot/node_modules/@slack/types/dist/events/pin.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/pin.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/pin.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/reaction.d.ts +23 -0
- package/slack-bot/node_modules/@slack/types/dist/events/reaction.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/reaction.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/reaction.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.d.ts +134 -0
- package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/shared-channel.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/star.d.ts +13 -0
- package/slack-bot/node_modules/@slack/types/dist/events/star.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/star.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/star.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.d.ts +82 -0
- package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/steps-from-apps.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/subteam.d.ts +66 -0
- package/slack-bot/node_modules/@slack/types/dist/events/subteam.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/subteam.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/subteam.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/team.d.ts +99 -0
- package/slack-bot/node_modules/@slack/types/dist/events/team.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/team.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/team.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/token.d.ts +8 -0
- package/slack-bot/node_modules/@slack/types/dist/events/token.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/token.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/token.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/user.d.ts +313 -0
- package/slack-bot/node_modules/@slack/types/dist/events/user.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/events/user.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/events/user.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/index.d.ts +12 -0
- package/slack-bot/node_modules/@slack/types/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/index.js +28 -0
- package/slack-bot/node_modules/@slack/types/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/message-attachments.d.ts +171 -0
- package/slack-bot/node_modules/@slack/types/dist/message-attachments.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/message-attachments.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/message-attachments.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/message-metadata.d.ts +281 -0
- package/slack-bot/node_modules/@slack/types/dist/message-metadata.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/message-metadata.js +27 -0
- package/slack-bot/node_modules/@slack/types/dist/message-metadata.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/views.d.ts +71 -0
- package/slack-bot/node_modules/@slack/types/dist/views.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/types/dist/views.js +3 -0
- package/slack-bot/node_modules/@slack/types/dist/views.js.map +1 -0
- package/slack-bot/node_modules/@slack/types/package.json +47 -0
- package/slack-bot/node_modules/@slack/web-api/README.md +399 -0
- package/slack-bot/node_modules/@slack/web-api/dist/WebClient.d.ts +192 -0
- package/slack-bot/node_modules/@slack/web-api/dist/WebClient.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/WebClient.js +734 -0
- package/slack-bot/node_modules/@slack/web-api/dist/WebClient.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/errors.d.ts +78 -0
- package/slack-bot/node_modules/@slack/web-api/dist/errors.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/errors.js +77 -0
- package/slack-bot/node_modules/@slack/web-api/dist/errors.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/file-upload.d.ts +108 -0
- package/slack-bot/node_modules/@slack/web-api/dist/file-upload.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/file-upload.js +329 -0
- package/slack-bot/node_modules/@slack/web-api/dist/file-upload.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/helpers.d.ts +7 -0
- package/slack-bot/node_modules/@slack/web-api/dist/helpers.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/helpers.js +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/helpers.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/index.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/index.js +35 -0
- package/slack-bot/node_modules/@slack/web-api/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/instrument.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/instrument.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/instrument.js +65 -0
- package/slack-bot/node_modules/@slack/web-api/dist/instrument.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/logger.d.ts +7 -0
- package/slack-bot/node_modules/@slack/web-api/dist/logger.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/logger.js +29 -0
- package/slack-bot/node_modules/@slack/web-api/dist/logger.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/methods.d.ts +1877 -0
- package/slack-bot/node_modules/@slack/web-api/dist/methods.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/methods.js +568 -0
- package/slack-bot/node_modules/@slack/web-api/dist/methods.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.d.ts +77 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAnalyticsGetFileResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.d.ts +63 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsActivitiesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApproveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.d.ts +58 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsApprovedListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsClearResolutionResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.d.ts +22 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigLookupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsConfigSetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsCancelResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.d.ts +67 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRequestsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.d.ts +58 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsRestrictedListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAppsUninstallResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyAssignEntitiesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyGetEntitiesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminAuthPolicyRemoveEntitiesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.d.ts +25 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.d.ts +21 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.d.ts +21 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminBarriersUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsArchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkArchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsBulkMoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPrivateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsConvertToPublicResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsDisconnectSharedResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.d.ts +17 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetConversationPrefsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetCustomRetentionResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsGetTeamsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsLookupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRemoveCustomRetentionResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRenameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessAddGroupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessListGroupsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsRestrictAccessRemoveGroupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.d.ts +69 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSearchResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetConversationPrefsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetCustomRetentionResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsSetTeamsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsUnarchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminConversationsWhitelistRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddAliasResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminEmojiRenameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.d.ts +35 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.d.ts +27 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsLookupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminFunctionsPermissionsSetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApproveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.d.ts +40 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsApprovedListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDeniedListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsDenyResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.d.ts +19 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminInviteRequestsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesAddAssignmentsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesListAssignmentsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminRolesRemoveAssignmentsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsAdminsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.d.ts +24 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsOwnersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDefaultChannelsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDescriptionResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetDiscoverabilityResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetIconResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminTeamsSettingsSetNameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddChannelsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsAddTeamsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.d.ts +54 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsListChannelsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsergroupsRemoveChannelsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersAssignResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionClearSettingsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionGetSettingsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionInvalidateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.d.ts +27 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetBulkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionResetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSessionSetSettingsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetAdminResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetExpirationResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetOwnerResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersSetRegularResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminUsersUnsupportedVersionsExportResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsCollaboratorsRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.d.ts +22 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsPermissionsLookupResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.d.ts +65 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsSearchResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AdminWorkflowsUnpublishResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ApiTestResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsConnectionsOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.d.ts +16 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsEventAuthorizationsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.d.ts +27 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.d.ts +112 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestExportResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.d.ts +19 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsManifestValidateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsRequestResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsResourcesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsScopesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsPermissionsUsersRequestResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AppsUninstallResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetStatusResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetSuggestedPromptsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AssistantThreadsSetTitleResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthRevokeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.d.ts +28 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTeamsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.d.ts +19 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/AuthTestResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.d.ts +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.d.ts +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksEditResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.d.ts +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BookmarksRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.d.ts +23 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/BotsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.d.ts +29 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.d.ts +27 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsEndResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsParticipantsRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/CallsUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsArchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.d.ts +38 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.d.ts +324 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsHistoryResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.d.ts +250 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsJoinResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsKickResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsLeaveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.d.ts +42 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsMarkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRenameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsRepliesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetPurposeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsSetTopicResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChannelsUnarchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatDeleteScheduledMessageResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatGetPermalinkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatMeMessageResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostEphemeralResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.d.ts +1001 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatPostMessageResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.d.ts +482 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduleMessageResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatScheduledMessagesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUnfurlResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.d.ts +721 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.js +38 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ChatUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsAcceptSharedInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsApproveSharedInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsArchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.d.ts +10 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCloseResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.d.ts +48 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsDeclineSharedInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.d.ts +1016 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsHistoryResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.d.ts +56 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.d.ts +51 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsInviteSharedResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.d.ts +61 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsJoinResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsKickResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsLeaveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.d.ts +100 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListConnectInvitesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.d.ts +71 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMarkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsMembersResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.d.ts +457 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRenameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.d.ts +985 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsRepliesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.d.ts +43 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetPurposeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.d.ts +43 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsSetTopicResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ConversationsUnarchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DialogOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndDndResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndEndSnoozeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.d.ts +11 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.d.ts +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndSetSnoozeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.d.ts +16 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/DndTeamInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/EmojiListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.d.ts +17 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCommentsEditResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.d.ts +77 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesCompleteUploadExternalResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesGetUploadURLExternalResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.d.ts +382 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.d.ts +611 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.js +41 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.d.ts +533 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.js +41 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteShareResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRemoteUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesRevokePublicURLResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesSharedPublicURLResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.d.ts +390 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FilesUploadResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteErrorResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/FunctionsCompleteSuccessResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsArchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCloseResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateChildResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.d.ts +38 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.d.ts +24 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsHistoryResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.d.ts +45 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.d.ts +46 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsInviteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsKickResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsLeaveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.d.ts +37 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsMarkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.d.ts +16 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRenameResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.d.ts +47 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsRepliesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetPurposeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsSetTopicResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/GroupsUnarchiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImCloseResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.d.ts +122 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImHistoryResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImMarkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.d.ts +47 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ImRepliesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MigrationExchangeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimCloseResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.d.ts +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimHistoryResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.d.ts +36 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimMarkResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.d.ts +64 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.d.ts +47 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/MpimRepliesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.d.ts +44 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthAccessResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthTokenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.d.ts +39 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2AccessResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.d.ts +43 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OauthV2ExchangeResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.d.ts +14 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectTokenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.d.ts +39 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/OpenIDConnectUserInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.d.ts +397 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/PinsRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.d.ts +480 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.js +31 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsGetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.d.ts +999 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ReactionsRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.d.ts +22 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersCompleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersDeleteResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.d.ts +24 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RemindersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmConnectResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.d.ts +1966 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/RtmStartResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.d.ts +1167 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.js +68 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchAllResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.d.ts +1089 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.js +49 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchFilesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.d.ts +1035 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.js +68 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/SearchMessagesResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsAddResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.d.ts +689 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/StarsRemoveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.d.ts +32 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamAccessLogsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillableInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamBillingInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamIntegrationLogsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.d.ts +13 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamPreferencesListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.d.ts +44 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/TeamProfileGetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.d.ts +18 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ToolingTokensRotateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsCreateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsDisableResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsEnableResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.d.ts +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.d.ts +9 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.d.ts +33 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsergroupsUsersUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.d.ts +73 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersConversationsResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersDeletePhotoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.d.ts +15 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersGetPresenceResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.d.ts +26 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersIdentityResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.d.ts +88 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersInfoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.d.ts +98 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersListResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.d.ts +76 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersLookupByEmailResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.d.ts +54 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileGetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.d.ts +54 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersProfileSetResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetActiveResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.d.ts +20 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPhotoResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/UsersSetPresenceResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.d.ts +251 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.js +32 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsOpenResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.d.ts +251 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.js +32 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPublishResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.d.ts +251 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.js +32 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsPushResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.d.ts +251 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.js +32 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/ViewsUpdateResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepCompletedResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsStepFailedResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.d.ts +8 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.js +12 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/WorkflowsUpdateStepResponse.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/index.d.ts +295 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/index.js +3 -0
- package/slack-bot/node_modules/@slack/web-api/dist/response/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.d.ts +27 -0
- package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.js +34 -0
- package/slack-bot/node_modules/@slack/web-api/dist/retry-policies.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/README.md +0 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.d.ts +100 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.d.ts.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.js +92 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/dist/index.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/@slack/logger/package.json +52 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/LICENSE +21 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/README.md +92 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/index.d.ts +64 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/index.js +336 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/package.json +56 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
- package/slack-bot/node_modules/@slack/web-api/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
- package/slack-bot/node_modules/@slack/web-api/package.json +92 -0
- package/slack-bot/node_modules/@types/body-parser/LICENSE +21 -0
- package/slack-bot/node_modules/@types/body-parser/README.md +15 -0
- package/slack-bot/node_modules/@types/body-parser/index.d.ts +95 -0
- package/slack-bot/node_modules/@types/body-parser/package.json +64 -0
- package/slack-bot/node_modules/@types/connect/LICENSE +21 -0
- package/slack-bot/node_modules/@types/connect/README.md +15 -0
- package/slack-bot/node_modules/@types/connect/index.d.ts +91 -0
- package/slack-bot/node_modules/@types/connect/package.json +32 -0
- package/slack-bot/node_modules/@types/express/LICENSE +21 -0
- package/slack-bot/node_modules/@types/express/README.md +15 -0
- package/slack-bot/node_modules/@types/express/index.d.ts +128 -0
- package/slack-bot/node_modules/@types/express/package.json +46 -0
- package/slack-bot/node_modules/@types/express-serve-static-core/LICENSE +21 -0
- package/slack-bot/node_modules/@types/express-serve-static-core/README.md +15 -0
- package/slack-bot/node_modules/@types/express-serve-static-core/index.d.ts +1281 -0
- package/slack-bot/node_modules/@types/express-serve-static-core/package.json +51 -0
- package/slack-bot/node_modules/@types/http-errors/LICENSE +21 -0
- package/slack-bot/node_modules/@types/http-errors/README.md +15 -0
- package/slack-bot/node_modules/@types/http-errors/index.d.ts +77 -0
- package/slack-bot/node_modules/@types/http-errors/package.json +36 -0
- package/slack-bot/node_modules/@types/is-stream/LICENSE +21 -0
- package/slack-bot/node_modules/@types/is-stream/README.md +16 -0
- package/slack-bot/node_modules/@types/is-stream/index.d.ts +18 -0
- package/slack-bot/node_modules/@types/is-stream/package.json +24 -0
- package/slack-bot/node_modules/@types/jsonwebtoken/LICENSE +21 -0
- package/slack-bot/node_modules/@types/jsonwebtoken/README.md +16 -0
- package/slack-bot/node_modules/@types/jsonwebtoken/index.d.ts +247 -0
- package/slack-bot/node_modules/@types/jsonwebtoken/package.json +82 -0
- package/slack-bot/node_modules/@types/mime/LICENSE +21 -0
- package/slack-bot/node_modules/@types/mime/Mime.d.ts +10 -0
- package/slack-bot/node_modules/@types/mime/README.md +15 -0
- package/slack-bot/node_modules/@types/mime/index.d.ts +31 -0
- package/slack-bot/node_modules/@types/mime/lite.d.ts +7 -0
- package/slack-bot/node_modules/@types/mime/package.json +30 -0
- package/slack-bot/node_modules/@types/node/LICENSE +21 -0
- package/slack-bot/node_modules/@types/node/README.md +15 -0
- package/slack-bot/node_modules/@types/node/assert/strict.d.ts +105 -0
- package/slack-bot/node_modules/@types/node/assert.d.ts +955 -0
- package/slack-bot/node_modules/@types/node/async_hooks.d.ts +623 -0
- package/slack-bot/node_modules/@types/node/buffer.buffer.d.ts +466 -0
- package/slack-bot/node_modules/@types/node/buffer.d.ts +1810 -0
- package/slack-bot/node_modules/@types/node/child_process.d.ts +1433 -0
- package/slack-bot/node_modules/@types/node/cluster.d.ts +486 -0
- package/slack-bot/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/slack-bot/node_modules/@types/node/console.d.ts +151 -0
- package/slack-bot/node_modules/@types/node/constants.d.ts +20 -0
- package/slack-bot/node_modules/@types/node/crypto.d.ts +4065 -0
- package/slack-bot/node_modules/@types/node/dgram.d.ts +564 -0
- package/slack-bot/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
- package/slack-bot/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/slack-bot/node_modules/@types/node/dns.d.ts +922 -0
- package/slack-bot/node_modules/@types/node/domain.d.ts +166 -0
- package/slack-bot/node_modules/@types/node/events.d.ts +1047 -0
- package/slack-bot/node_modules/@types/node/fs/promises.d.ts +1329 -0
- package/slack-bot/node_modules/@types/node/fs.d.ts +4678 -0
- package/slack-bot/node_modules/@types/node/globals.d.ts +150 -0
- package/slack-bot/node_modules/@types/node/globals.typedarray.d.ts +101 -0
- package/slack-bot/node_modules/@types/node/http.d.ts +2188 -0
- package/slack-bot/node_modules/@types/node/http2.d.ts +2480 -0
- package/slack-bot/node_modules/@types/node/https.d.ts +405 -0
- package/slack-bot/node_modules/@types/node/index.d.ts +115 -0
- package/slack-bot/node_modules/@types/node/inspector/promises.d.ts +41 -0
- package/slack-bot/node_modules/@types/node/inspector.d.ts +269 -0
- package/slack-bot/node_modules/@types/node/inspector.generated.d.ts +4401 -0
- package/slack-bot/node_modules/@types/node/module.d.ts +757 -0
- package/slack-bot/node_modules/@types/node/net.d.ts +933 -0
- package/slack-bot/node_modules/@types/node/os.d.ts +507 -0
- package/slack-bot/node_modules/@types/node/package.json +155 -0
- package/slack-bot/node_modules/@types/node/path/posix.d.ts +8 -0
- package/slack-bot/node_modules/@types/node/path/win32.d.ts +8 -0
- package/slack-bot/node_modules/@types/node/path.d.ts +187 -0
- package/slack-bot/node_modules/@types/node/perf_hooks.d.ts +643 -0
- package/slack-bot/node_modules/@types/node/process.d.ts +2175 -0
- package/slack-bot/node_modules/@types/node/punycode.d.ts +117 -0
- package/slack-bot/node_modules/@types/node/querystring.d.ts +152 -0
- package/slack-bot/node_modules/@types/node/quic.d.ts +910 -0
- package/slack-bot/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/slack-bot/node_modules/@types/node/readline.d.ts +542 -0
- package/slack-bot/node_modules/@types/node/repl.d.ts +415 -0
- package/slack-bot/node_modules/@types/node/sea.d.ts +162 -0
- package/slack-bot/node_modules/@types/node/sqlite.d.ts +1065 -0
- package/slack-bot/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/slack-bot/node_modules/@types/node/stream/promises.d.ts +211 -0
- package/slack-bot/node_modules/@types/node/stream/web.d.ts +296 -0
- package/slack-bot/node_modules/@types/node/stream.d.ts +1770 -0
- package/slack-bot/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/slack-bot/node_modules/@types/node/test/reporters.d.ts +96 -0
- package/slack-bot/node_modules/@types/node/test.d.ts +2275 -0
- package/slack-bot/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/slack-bot/node_modules/@types/node/timers.d.ts +159 -0
- package/slack-bot/node_modules/@types/node/tls.d.ts +1203 -0
- package/slack-bot/node_modules/@types/node/trace_events.d.ts +197 -0
- package/slack-bot/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
- package/slack-bot/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
- package/slack-bot/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
- package/slack-bot/node_modules/@types/node/ts5.6/index.d.ts +117 -0
- package/slack-bot/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
- package/slack-bot/node_modules/@types/node/ts5.7/index.d.ts +117 -0
- package/slack-bot/node_modules/@types/node/tty.d.ts +250 -0
- package/slack-bot/node_modules/@types/node/url.d.ts +541 -0
- package/slack-bot/node_modules/@types/node/util/types.d.ts +558 -0
- package/slack-bot/node_modules/@types/node/util.d.ts +1687 -0
- package/slack-bot/node_modules/@types/node/v8.d.ts +988 -0
- package/slack-bot/node_modules/@types/node/vm.d.ts +1208 -0
- package/slack-bot/node_modules/@types/node/wasi.d.ts +202 -0
- package/slack-bot/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
- package/slack-bot/node_modules/@types/node/web-globals/blob.d.ts +23 -0
- package/slack-bot/node_modules/@types/node/web-globals/console.d.ts +9 -0
- package/slack-bot/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
- package/slack-bot/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/slack-bot/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
- package/slack-bot/node_modules/@types/node/web-globals/events.d.ts +106 -0
- package/slack-bot/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
- package/slack-bot/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
- package/slack-bot/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
- package/slack-bot/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
- package/slack-bot/node_modules/@types/node/web-globals/performance.d.ts +45 -0
- package/slack-bot/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/slack-bot/node_modules/@types/node/web-globals/streams.d.ts +115 -0
- package/slack-bot/node_modules/@types/node/web-globals/timers.d.ts +44 -0
- package/slack-bot/node_modules/@types/node/web-globals/url.d.ts +24 -0
- package/slack-bot/node_modules/@types/node/worker_threads.d.ts +717 -0
- package/slack-bot/node_modules/@types/node/zlib.d.ts +682 -0
- package/slack-bot/node_modules/@types/promise.allsettled/LICENSE +21 -0
- package/slack-bot/node_modules/@types/promise.allsettled/README.md +15 -0
- package/slack-bot/node_modules/@types/promise.allsettled/auto.d.ts +5 -0
- package/slack-bot/node_modules/@types/promise.allsettled/implementation.d.ts +12 -0
- package/slack-bot/node_modules/@types/promise.allsettled/index.d.ts +27 -0
- package/slack-bot/node_modules/@types/promise.allsettled/package.json +35 -0
- package/slack-bot/node_modules/@types/promise.allsettled/polyfill.d.ts +5 -0
- package/slack-bot/node_modules/@types/promise.allsettled/requirePromise.d.ts +3 -0
- package/slack-bot/node_modules/@types/promise.allsettled/shim.d.ts +5 -0
- package/slack-bot/node_modules/@types/promise.allsettled/types.d.ts +14 -0
- package/slack-bot/node_modules/@types/qs/LICENSE +21 -0
- package/slack-bot/node_modules/@types/qs/README.md +15 -0
- package/slack-bot/node_modules/@types/qs/index.d.ts +83 -0
- package/slack-bot/node_modules/@types/qs/package.json +66 -0
- package/slack-bot/node_modules/@types/range-parser/LICENSE +21 -0
- package/slack-bot/node_modules/@types/range-parser/README.md +53 -0
- package/slack-bot/node_modules/@types/range-parser/index.d.ts +34 -0
- package/slack-bot/node_modules/@types/range-parser/package.json +25 -0
- package/slack-bot/node_modules/@types/retry/LICENSE +21 -0
- package/slack-bot/node_modules/@types/retry/README.md +16 -0
- package/slack-bot/node_modules/@types/retry/index.d.ts +151 -0
- package/slack-bot/node_modules/@types/retry/package.json +28 -0
- package/slack-bot/node_modules/@types/send/LICENSE +21 -0
- package/slack-bot/node_modules/@types/send/README.md +15 -0
- package/slack-bot/node_modules/@types/send/index.d.ts +187 -0
- package/slack-bot/node_modules/@types/send/package.json +38 -0
- package/slack-bot/node_modules/@types/serve-static/LICENSE +21 -0
- package/slack-bot/node_modules/@types/serve-static/README.md +15 -0
- package/slack-bot/node_modules/@types/serve-static/index.d.ts +107 -0
- package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/LICENSE +21 -0
- package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/README.md +15 -0
- package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/index.d.ts +225 -0
- package/slack-bot/node_modules/@types/serve-static/node_modules/@types/send/package.json +39 -0
- package/slack-bot/node_modules/@types/serve-static/package.json +45 -0
- package/slack-bot/node_modules/@types/tsscmp/LICENSE +21 -0
- package/slack-bot/node_modules/@types/tsscmp/README.md +23 -0
- package/slack-bot/node_modules/@types/tsscmp/index.d.ts +4 -0
- package/slack-bot/node_modules/@types/tsscmp/package.json +25 -0
- package/slack-bot/node_modules/@types/ws/LICENSE +21 -0
- package/slack-bot/node_modules/@types/ws/README.md +16 -0
- package/slack-bot/node_modules/@types/ws/index.d.ts +353 -0
- package/slack-bot/node_modules/@types/ws/package.json +57 -0
- package/slack-bot/node_modules/accepts/HISTORY.md +243 -0
- package/slack-bot/node_modules/accepts/LICENSE +23 -0
- package/slack-bot/node_modules/accepts/README.md +140 -0
- package/slack-bot/node_modules/accepts/index.js +238 -0
- package/slack-bot/node_modules/accepts/package.json +47 -0
- package/slack-bot/node_modules/array-buffer-byte-length/.eslintrc +9 -0
- package/slack-bot/node_modules/array-buffer-byte-length/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/array-buffer-byte-length/.nycrc +13 -0
- package/slack-bot/node_modules/array-buffer-byte-length/CHANGELOG.md +43 -0
- package/slack-bot/node_modules/array-buffer-byte-length/LICENSE +21 -0
- package/slack-bot/node_modules/array-buffer-byte-length/README.md +40 -0
- package/slack-bot/node_modules/array-buffer-byte-length/index.d.ts +4 -0
- package/slack-bot/node_modules/array-buffer-byte-length/index.js +14 -0
- package/slack-bot/node_modules/array-buffer-byte-length/package.json +94 -0
- package/slack-bot/node_modules/array-buffer-byte-length/test/index.js +29 -0
- package/slack-bot/node_modules/array-buffer-byte-length/tsconfig.json +9 -0
- package/slack-bot/node_modules/array-flatten/LICENSE +21 -0
- package/slack-bot/node_modules/array-flatten/README.md +43 -0
- package/slack-bot/node_modules/array-flatten/array-flatten.js +64 -0
- package/slack-bot/node_modules/array-flatten/package.json +39 -0
- package/slack-bot/node_modules/array.prototype.map/.editorconfig +20 -0
- package/slack-bot/node_modules/array.prototype.map/.eslintrc +36 -0
- package/slack-bot/node_modules/array.prototype.map/.nycrc +9 -0
- package/slack-bot/node_modules/array.prototype.map/CHANGELOG.md +126 -0
- package/slack-bot/node_modules/array.prototype.map/LICENSE +21 -0
- package/slack-bot/node_modules/array.prototype.map/README.md +66 -0
- package/slack-bot/node_modules/array.prototype.map/auto.js +3 -0
- package/slack-bot/node_modules/array.prototype.map/implementation.js +52 -0
- package/slack-bot/node_modules/array.prototype.map/index.js +26 -0
- package/slack-bot/node_modules/array.prototype.map/package.json +84 -0
- package/slack-bot/node_modules/array.prototype.map/polyfill.js +10 -0
- package/slack-bot/node_modules/array.prototype.map/shim.js +14 -0
- package/slack-bot/node_modules/array.prototype.map/test/implementation.js +51 -0
- package/slack-bot/node_modules/array.prototype.map/test/index.js +18 -0
- package/slack-bot/node_modules/array.prototype.map/test/shimmed.js +67 -0
- package/slack-bot/node_modules/array.prototype.map/test/tests.js +186 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/.editorconfig +13 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/.eslintrc +34 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/.nycrc +9 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/CHANGELOG.md +52 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/LICENSE +21 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/README.md +61 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/auto.js +3 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/implementation.js +84 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/index.js +18 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/package.json +102 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/polyfill.js +21 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/shim.js +18 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/test/implementation.js +32 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/test/index.js +29 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/test/shimmed.js +54 -0
- package/slack-bot/node_modules/arraybuffer.prototype.slice/test/tests.js +81 -0
- package/slack-bot/node_modules/async-function/.eslintrc +16 -0
- package/slack-bot/node_modules/async-function/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/async-function/.nycrc +9 -0
- package/slack-bot/node_modules/async-function/CHANGELOG.md +16 -0
- package/slack-bot/node_modules/async-function/LICENSE +21 -0
- package/slack-bot/node_modules/async-function/README.md +51 -0
- package/slack-bot/node_modules/async-function/index.d.mts +3 -0
- package/slack-bot/node_modules/async-function/index.d.ts +13 -0
- package/slack-bot/node_modules/async-function/index.js +8 -0
- package/slack-bot/node_modules/async-function/index.mjs +4 -0
- package/slack-bot/node_modules/async-function/legacy.js +18 -0
- package/slack-bot/node_modules/async-function/package.json +86 -0
- package/slack-bot/node_modules/async-function/require.mjs +5 -0
- package/slack-bot/node_modules/async-function/test/index.js +40 -0
- package/slack-bot/node_modules/async-function/tsconfig.json +9 -0
- package/slack-bot/node_modules/asynckit/LICENSE +21 -0
- package/slack-bot/node_modules/asynckit/README.md +233 -0
- package/slack-bot/node_modules/asynckit/bench.js +76 -0
- package/slack-bot/node_modules/asynckit/index.js +6 -0
- package/slack-bot/node_modules/asynckit/lib/abort.js +29 -0
- package/slack-bot/node_modules/asynckit/lib/async.js +34 -0
- package/slack-bot/node_modules/asynckit/lib/defer.js +26 -0
- package/slack-bot/node_modules/asynckit/lib/iterate.js +75 -0
- package/slack-bot/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/slack-bot/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/slack-bot/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/slack-bot/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/slack-bot/node_modules/asynckit/lib/state.js +37 -0
- package/slack-bot/node_modules/asynckit/lib/streamify.js +141 -0
- package/slack-bot/node_modules/asynckit/lib/terminator.js +29 -0
- package/slack-bot/node_modules/asynckit/package.json +63 -0
- package/slack-bot/node_modules/asynckit/parallel.js +43 -0
- package/slack-bot/node_modules/asynckit/serial.js +17 -0
- package/slack-bot/node_modules/asynckit/serialOrdered.js +75 -0
- package/slack-bot/node_modules/asynckit/stream.js +21 -0
- package/slack-bot/node_modules/available-typed-arrays/.eslintrc +5 -0
- package/slack-bot/node_modules/available-typed-arrays/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/available-typed-arrays/.nycrc +9 -0
- package/slack-bot/node_modules/available-typed-arrays/CHANGELOG.md +100 -0
- package/slack-bot/node_modules/available-typed-arrays/LICENSE +21 -0
- package/slack-bot/node_modules/available-typed-arrays/README.md +55 -0
- package/slack-bot/node_modules/available-typed-arrays/index.d.ts +8 -0
- package/slack-bot/node_modules/available-typed-arrays/index.js +17 -0
- package/slack-bot/node_modules/available-typed-arrays/package.json +93 -0
- package/slack-bot/node_modules/available-typed-arrays/test/index.js +18 -0
- package/slack-bot/node_modules/available-typed-arrays/tsconfig.json +49 -0
- package/slack-bot/node_modules/axios/CHANGELOG.md +1416 -0
- package/slack-bot/node_modules/axios/LICENSE +7 -0
- package/slack-bot/node_modules/axios/MIGRATION_GUIDE.md +877 -0
- package/slack-bot/node_modules/axios/README.md +1921 -0
- package/slack-bot/node_modules/axios/dist/axios.js +4463 -0
- package/slack-bot/node_modules/axios/dist/axios.js.map +1 -0
- package/slack-bot/node_modules/axios/dist/axios.min.js +5 -0
- package/slack-bot/node_modules/axios/dist/axios.min.js.map +1 -0
- package/slack-bot/node_modules/axios/dist/browser/axios.cjs +4239 -0
- package/slack-bot/node_modules/axios/dist/browser/axios.cjs.map +1 -0
- package/slack-bot/node_modules/axios/dist/esm/axios.js +4262 -0
- package/slack-bot/node_modules/axios/dist/esm/axios.js.map +1 -0
- package/slack-bot/node_modules/axios/dist/esm/axios.min.js +3 -0
- package/slack-bot/node_modules/axios/dist/esm/axios.min.js.map +1 -0
- package/slack-bot/node_modules/axios/dist/node/axios.cjs +5643 -0
- package/slack-bot/node_modules/axios/dist/node/axios.cjs.map +1 -0
- package/slack-bot/node_modules/axios/index.d.cts +716 -0
- package/slack-bot/node_modules/axios/index.d.ts +810 -0
- package/slack-bot/node_modules/axios/index.js +43 -0
- package/slack-bot/node_modules/axios/lib/adapters/README.md +36 -0
- package/slack-bot/node_modules/axios/lib/adapters/adapters.js +130 -0
- package/slack-bot/node_modules/axios/lib/adapters/fetch.js +334 -0
- package/slack-bot/node_modules/axios/lib/adapters/http.js +949 -0
- package/slack-bot/node_modules/axios/lib/adapters/xhr.js +222 -0
- package/slack-bot/node_modules/axios/lib/axios.js +89 -0
- package/slack-bot/node_modules/axios/lib/cancel/CancelToken.js +135 -0
- package/slack-bot/node_modules/axios/lib/cancel/CanceledError.js +22 -0
- package/slack-bot/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/slack-bot/node_modules/axios/lib/core/Axios.js +263 -0
- package/slack-bot/node_modules/axios/lib/core/AxiosError.js +90 -0
- package/slack-bot/node_modules/axios/lib/core/AxiosHeaders.js +344 -0
- package/slack-bot/node_modules/axios/lib/core/InterceptorManager.js +72 -0
- package/slack-bot/node_modules/axios/lib/core/README.md +8 -0
- package/slack-bot/node_modules/axios/lib/core/buildFullPath.js +22 -0
- package/slack-bot/node_modules/axios/lib/core/dispatchRequest.js +77 -0
- package/slack-bot/node_modules/axios/lib/core/mergeConfig.js +107 -0
- package/slack-bot/node_modules/axios/lib/core/settle.js +31 -0
- package/slack-bot/node_modules/axios/lib/core/transformData.js +28 -0
- package/slack-bot/node_modules/axios/lib/defaults/index.js +172 -0
- package/slack-bot/node_modules/axios/lib/defaults/transitional.js +8 -0
- package/slack-bot/node_modules/axios/lib/env/README.md +3 -0
- package/slack-bot/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/slack-bot/node_modules/axios/lib/env/data.js +1 -0
- package/slack-bot/node_modules/axios/lib/helpers/AxiosTransformStream.js +156 -0
- package/slack-bot/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +62 -0
- package/slack-bot/node_modules/axios/lib/helpers/HttpStatusCode.js +77 -0
- package/slack-bot/node_modules/axios/lib/helpers/README.md +7 -0
- package/slack-bot/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +29 -0
- package/slack-bot/node_modules/axios/lib/helpers/bind.js +14 -0
- package/slack-bot/node_modules/axios/lib/helpers/buildURL.js +66 -0
- package/slack-bot/node_modules/axios/lib/helpers/callbackify.js +18 -0
- package/slack-bot/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/slack-bot/node_modules/axios/lib/helpers/composeSignals.js +56 -0
- package/slack-bot/node_modules/axios/lib/helpers/cookies.js +48 -0
- package/slack-bot/node_modules/axios/lib/helpers/deprecatedMethod.js +31 -0
- package/slack-bot/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
- package/slack-bot/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
- package/slack-bot/node_modules/axios/lib/helpers/formDataToStream.js +118 -0
- package/slack-bot/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/slack-bot/node_modules/axios/lib/helpers/isAbsoluteURL.js +19 -0
- package/slack-bot/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/slack-bot/node_modules/axios/lib/helpers/isURLSameOrigin.js +16 -0
- package/slack-bot/node_modules/axios/lib/helpers/null.js +2 -0
- package/slack-bot/node_modules/axios/lib/helpers/parseHeaders.js +69 -0
- package/slack-bot/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/slack-bot/node_modules/axios/lib/helpers/progressEventReducer.js +51 -0
- package/slack-bot/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/slack-bot/node_modules/axios/lib/helpers/resolveConfig.js +70 -0
- package/slack-bot/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/slack-bot/node_modules/axios/lib/helpers/spread.js +28 -0
- package/slack-bot/node_modules/axios/lib/helpers/throttle.js +44 -0
- package/slack-bot/node_modules/axios/lib/helpers/toFormData.js +241 -0
- package/slack-bot/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
- package/slack-bot/node_modules/axios/lib/helpers/trackStream.js +89 -0
- package/slack-bot/node_modules/axios/lib/helpers/validator.js +110 -0
- package/slack-bot/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/slack-bot/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/slack-bot/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/slack-bot/node_modules/axios/lib/platform/browser/index.js +13 -0
- package/slack-bot/node_modules/axios/lib/platform/common/utils.js +52 -0
- package/slack-bot/node_modules/axios/lib/platform/index.js +7 -0
- package/slack-bot/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/slack-bot/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/slack-bot/node_modules/axios/lib/platform/node/index.js +37 -0
- package/slack-bot/node_modules/axios/lib/utils.js +919 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/CHANGELOG.md +659 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/License +19 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/README.md +355 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/index.d.ts +62 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/lib/browser.js +4 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/lib/form_data.js +494 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/lib/populate.js +10 -0
- package/slack-bot/node_modules/axios/node_modules/form-data/package.json +82 -0
- package/slack-bot/node_modules/axios/package.json +226 -0
- package/slack-bot/node_modules/body-parser/HISTORY.md +680 -0
- package/slack-bot/node_modules/body-parser/LICENSE +23 -0
- package/slack-bot/node_modules/body-parser/README.md +476 -0
- package/slack-bot/node_modules/body-parser/index.js +156 -0
- package/slack-bot/node_modules/body-parser/lib/read.js +205 -0
- package/slack-bot/node_modules/body-parser/lib/types/json.js +247 -0
- package/slack-bot/node_modules/body-parser/lib/types/raw.js +101 -0
- package/slack-bot/node_modules/body-parser/lib/types/text.js +121 -0
- package/slack-bot/node_modules/body-parser/lib/types/urlencoded.js +300 -0
- package/slack-bot/node_modules/body-parser/package.json +55 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/README.md +50 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/index.js +41 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/package.json +21 -0
- package/slack-bot/node_modules/buffer-equal-constant-time/test.js +42 -0
- package/slack-bot/node_modules/bytes/History.md +97 -0
- package/slack-bot/node_modules/bytes/LICENSE +23 -0
- package/slack-bot/node_modules/bytes/Readme.md +152 -0
- package/slack-bot/node_modules/bytes/index.js +170 -0
- package/slack-bot/node_modules/bytes/package.json +42 -0
- package/slack-bot/node_modules/call-bind/.eslintignore +1 -0
- package/slack-bot/node_modules/call-bind/.eslintrc +16 -0
- package/slack-bot/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/call-bind/.nycrc +9 -0
- package/slack-bot/node_modules/call-bind/CHANGELOG.md +106 -0
- package/slack-bot/node_modules/call-bind/LICENSE +21 -0
- package/slack-bot/node_modules/call-bind/README.md +64 -0
- package/slack-bot/node_modules/call-bind/callBound.js +15 -0
- package/slack-bot/node_modules/call-bind/index.js +24 -0
- package/slack-bot/node_modules/call-bind/package.json +93 -0
- package/slack-bot/node_modules/call-bind/test/callBound.js +54 -0
- package/slack-bot/node_modules/call-bind/test/index.js +74 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/slack-bot/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/slack-bot/node_modules/call-bound/.eslintrc +13 -0
- package/slack-bot/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/call-bound/.nycrc +9 -0
- package/slack-bot/node_modules/call-bound/CHANGELOG.md +42 -0
- package/slack-bot/node_modules/call-bound/LICENSE +21 -0
- package/slack-bot/node_modules/call-bound/README.md +53 -0
- package/slack-bot/node_modules/call-bound/index.d.ts +94 -0
- package/slack-bot/node_modules/call-bound/index.js +19 -0
- package/slack-bot/node_modules/call-bound/package.json +99 -0
- package/slack-bot/node_modules/call-bound/test/index.js +61 -0
- package/slack-bot/node_modules/call-bound/tsconfig.json +10 -0
- package/slack-bot/node_modules/combined-stream/License +19 -0
- package/slack-bot/node_modules/combined-stream/Readme.md +138 -0
- package/slack-bot/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/slack-bot/node_modules/combined-stream/package.json +25 -0
- package/slack-bot/node_modules/combined-stream/yarn.lock +17 -0
- package/slack-bot/node_modules/content-disposition/HISTORY.md +60 -0
- package/slack-bot/node_modules/content-disposition/LICENSE +22 -0
- package/slack-bot/node_modules/content-disposition/README.md +142 -0
- package/slack-bot/node_modules/content-disposition/index.js +458 -0
- package/slack-bot/node_modules/content-disposition/package.json +44 -0
- package/slack-bot/node_modules/content-type/HISTORY.md +29 -0
- package/slack-bot/node_modules/content-type/LICENSE +22 -0
- package/slack-bot/node_modules/content-type/README.md +94 -0
- package/slack-bot/node_modules/content-type/index.js +225 -0
- package/slack-bot/node_modules/content-type/package.json +42 -0
- package/slack-bot/node_modules/cookie/LICENSE +24 -0
- package/slack-bot/node_modules/cookie/README.md +317 -0
- package/slack-bot/node_modules/cookie/SECURITY.md +25 -0
- package/slack-bot/node_modules/cookie/index.js +335 -0
- package/slack-bot/node_modules/cookie/package.json +44 -0
- package/slack-bot/node_modules/cookie-signature/History.md +42 -0
- package/slack-bot/node_modules/cookie-signature/Readme.md +42 -0
- package/slack-bot/node_modules/cookie-signature/index.js +51 -0
- package/slack-bot/node_modules/cookie-signature/package.json +18 -0
- package/slack-bot/node_modules/data-view-buffer/.eslintrc +17 -0
- package/slack-bot/node_modules/data-view-buffer/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/data-view-buffer/.nycrc +13 -0
- package/slack-bot/node_modules/data-view-buffer/CHANGELOG.md +38 -0
- package/slack-bot/node_modules/data-view-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/data-view-buffer/README.md +43 -0
- package/slack-bot/node_modules/data-view-buffer/index.d.ts +4 -0
- package/slack-bot/node_modules/data-view-buffer/index.js +19 -0
- package/slack-bot/node_modules/data-view-buffer/package.json +88 -0
- package/slack-bot/node_modules/data-view-buffer/test/index.js +31 -0
- package/slack-bot/node_modules/data-view-buffer/tsconfig.json +10 -0
- package/slack-bot/node_modules/data-view-byte-length/.eslintrc +17 -0
- package/slack-bot/node_modules/data-view-byte-length/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/data-view-byte-length/.nycrc +13 -0
- package/slack-bot/node_modules/data-view-byte-length/CHANGELOG.md +36 -0
- package/slack-bot/node_modules/data-view-byte-length/LICENSE +21 -0
- package/slack-bot/node_modules/data-view-byte-length/README.md +43 -0
- package/slack-bot/node_modules/data-view-byte-length/index.d.ts +4 -0
- package/slack-bot/node_modules/data-view-byte-length/index.js +19 -0
- package/slack-bot/node_modules/data-view-byte-length/package.json +92 -0
- package/slack-bot/node_modules/data-view-byte-length/test/index.js +31 -0
- package/slack-bot/node_modules/data-view-byte-length/tsconfig.json +9 -0
- package/slack-bot/node_modules/data-view-byte-offset/.eslintrc +17 -0
- package/slack-bot/node_modules/data-view-byte-offset/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/data-view-byte-offset/.nycrc +13 -0
- package/slack-bot/node_modules/data-view-byte-offset/CHANGELOG.md +31 -0
- package/slack-bot/node_modules/data-view-byte-offset/LICENSE +21 -0
- package/slack-bot/node_modules/data-view-byte-offset/README.md +43 -0
- package/slack-bot/node_modules/data-view-byte-offset/index.d.ts +4 -0
- package/slack-bot/node_modules/data-view-byte-offset/index.js +19 -0
- package/slack-bot/node_modules/data-view-byte-offset/package.json +94 -0
- package/slack-bot/node_modules/data-view-byte-offset/test/index.js +31 -0
- package/slack-bot/node_modules/data-view-byte-offset/tsconfig.json +9 -0
- package/slack-bot/node_modules/debug/.coveralls.yml +1 -0
- package/slack-bot/node_modules/debug/.eslintrc +11 -0
- package/slack-bot/node_modules/debug/.travis.yml +14 -0
- package/slack-bot/node_modules/debug/CHANGELOG.md +362 -0
- package/slack-bot/node_modules/debug/LICENSE +19 -0
- package/slack-bot/node_modules/debug/Makefile +50 -0
- package/slack-bot/node_modules/debug/README.md +312 -0
- package/slack-bot/node_modules/debug/component.json +19 -0
- package/slack-bot/node_modules/debug/karma.conf.js +70 -0
- package/slack-bot/node_modules/debug/node.js +1 -0
- package/slack-bot/node_modules/debug/package.json +49 -0
- package/slack-bot/node_modules/debug/src/browser.js +185 -0
- package/slack-bot/node_modules/debug/src/debug.js +202 -0
- package/slack-bot/node_modules/debug/src/index.js +10 -0
- package/slack-bot/node_modules/debug/src/inspector-log.js +15 -0
- package/slack-bot/node_modules/debug/src/node.js +248 -0
- package/slack-bot/node_modules/define-data-property/.eslintrc +24 -0
- package/slack-bot/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/define-data-property/.nycrc +13 -0
- package/slack-bot/node_modules/define-data-property/CHANGELOG.md +70 -0
- package/slack-bot/node_modules/define-data-property/LICENSE +21 -0
- package/slack-bot/node_modules/define-data-property/README.md +67 -0
- package/slack-bot/node_modules/define-data-property/index.d.ts +12 -0
- package/slack-bot/node_modules/define-data-property/index.js +56 -0
- package/slack-bot/node_modules/define-data-property/package.json +106 -0
- package/slack-bot/node_modules/define-data-property/test/index.js +392 -0
- package/slack-bot/node_modules/define-data-property/tsconfig.json +59 -0
- package/slack-bot/node_modules/define-properties/.editorconfig +13 -0
- package/slack-bot/node_modules/define-properties/.eslintrc +19 -0
- package/slack-bot/node_modules/define-properties/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/define-properties/.nycrc +9 -0
- package/slack-bot/node_modules/define-properties/CHANGELOG.md +91 -0
- package/slack-bot/node_modules/define-properties/LICENSE +21 -0
- package/slack-bot/node_modules/define-properties/README.md +84 -0
- package/slack-bot/node_modules/define-properties/index.js +47 -0
- package/slack-bot/node_modules/define-properties/package.json +88 -0
- package/slack-bot/node_modules/delayed-stream/License +19 -0
- package/slack-bot/node_modules/delayed-stream/Makefile +7 -0
- package/slack-bot/node_modules/delayed-stream/Readme.md +141 -0
- package/slack-bot/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/slack-bot/node_modules/delayed-stream/package.json +27 -0
- package/slack-bot/node_modules/depd/History.md +103 -0
- package/slack-bot/node_modules/depd/LICENSE +22 -0
- package/slack-bot/node_modules/depd/Readme.md +280 -0
- package/slack-bot/node_modules/depd/index.js +538 -0
- package/slack-bot/node_modules/depd/lib/browser/index.js +77 -0
- package/slack-bot/node_modules/depd/package.json +45 -0
- package/slack-bot/node_modules/destroy/LICENSE +23 -0
- package/slack-bot/node_modules/destroy/README.md +63 -0
- package/slack-bot/node_modules/destroy/index.js +209 -0
- package/slack-bot/node_modules/destroy/package.json +48 -0
- package/slack-bot/node_modules/dotenv/CHANGELOG.md +520 -0
- package/slack-bot/node_modules/dotenv/LICENSE +23 -0
- package/slack-bot/node_modules/dotenv/README-es.md +411 -0
- package/slack-bot/node_modules/dotenv/README.md +645 -0
- package/slack-bot/node_modules/dotenv/SECURITY.md +1 -0
- package/slack-bot/node_modules/dotenv/config.d.ts +1 -0
- package/slack-bot/node_modules/dotenv/config.js +9 -0
- package/slack-bot/node_modules/dotenv/lib/cli-options.js +17 -0
- package/slack-bot/node_modules/dotenv/lib/env-options.js +28 -0
- package/slack-bot/node_modules/dotenv/lib/main.d.ts +162 -0
- package/slack-bot/node_modules/dotenv/lib/main.js +386 -0
- package/slack-bot/node_modules/dotenv/package.json +62 -0
- package/slack-bot/node_modules/dunder-proto/.eslintrc +5 -0
- package/slack-bot/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/dunder-proto/.nycrc +13 -0
- package/slack-bot/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/slack-bot/node_modules/dunder-proto/LICENSE +21 -0
- package/slack-bot/node_modules/dunder-proto/README.md +54 -0
- package/slack-bot/node_modules/dunder-proto/get.d.ts +5 -0
- package/slack-bot/node_modules/dunder-proto/get.js +30 -0
- package/slack-bot/node_modules/dunder-proto/package.json +76 -0
- package/slack-bot/node_modules/dunder-proto/set.d.ts +5 -0
- package/slack-bot/node_modules/dunder-proto/set.js +35 -0
- package/slack-bot/node_modules/dunder-proto/test/get.js +34 -0
- package/slack-bot/node_modules/dunder-proto/test/index.js +4 -0
- package/slack-bot/node_modules/dunder-proto/test/set.js +50 -0
- package/slack-bot/node_modules/dunder-proto/tsconfig.json +9 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/README.md +65 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/package.json +46 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
- package/slack-bot/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
- package/slack-bot/node_modules/ee-first/LICENSE +22 -0
- package/slack-bot/node_modules/ee-first/README.md +80 -0
- package/slack-bot/node_modules/ee-first/index.js +95 -0
- package/slack-bot/node_modules/ee-first/package.json +29 -0
- package/slack-bot/node_modules/encodeurl/LICENSE +22 -0
- package/slack-bot/node_modules/encodeurl/README.md +109 -0
- package/slack-bot/node_modules/encodeurl/index.js +60 -0
- package/slack-bot/node_modules/encodeurl/package.json +40 -0
- package/slack-bot/node_modules/es-abstract/.claude/settings.local.json +12 -0
- package/slack-bot/node_modules/es-abstract/.editorconfig +15 -0
- package/slack-bot/node_modules/es-abstract/.nycrc +15 -0
- package/slack-bot/node_modules/es-abstract/2015/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/2015/AbstractRelationalComparison.js +62 -0
- package/slack-bot/node_modules/es-abstract/2015/AdvanceStringIndex.js +44 -0
- package/slack-bot/node_modules/es-abstract/2015/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2015/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2015/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2015/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2015/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2015/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2015/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2015/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2015/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateListFromArrayLike.js +43 -0
- package/slack-bot/node_modules/es-abstract/2015/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2015/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2015/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2015/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2015/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2015/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/DetachArrayBuffer.js +38 -0
- package/slack-bot/node_modules/es-abstract/2015/EnumerableOwnNames.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2015/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/GetIterator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2015/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2015/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2015/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2015/GetSubstitution.js +98 -0
- package/slack-bot/node_modules/es-abstract/2015/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2015/GetValueFromBuffer.js +86 -0
- package/slack-bot/node_modules/es-abstract/2015/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2015/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2015/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2015/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2015/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2015/IntegerIndexedElementGet.js +57 -0
- package/slack-bot/node_modules/es-abstract/2015/IntegerIndexedElementSet.js +62 -0
- package/slack-bot/node_modules/es-abstract/2015/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2015/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2015/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2015/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2015/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2015/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2015/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/IsDetachedBuffer.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2015/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2015/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2015/IsPropertyDescriptor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2015/IsWordChar.js +37 -0
- package/slack-bot/node_modules/es-abstract/2015/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2015/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2015/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2015/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2015/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2015/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2015/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2015/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2015/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/ObjectCreate.js +50 -0
- package/slack-bot/node_modules/es-abstract/2015/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2015/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2015/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2015/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2015/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2015/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2015/QuoteJSONString.js +48 -0
- package/slack-bot/node_modules/es-abstract/2015/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2015/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2015/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2015/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2015/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2015/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2015/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2015/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2015/SetValueInBuffer.js +110 -0
- package/slack-bot/node_modules/es-abstract/2015/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2015/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2015/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2015/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2015/StringGetIndexProperty.js +50 -0
- package/slack-bot/node_modules/es-abstract/2015/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2015/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2015/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2015/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2015/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2015/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2015/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2015/ToInteger.js +12 -0
- package/slack-bot/node_modules/es-abstract/2015/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2015/ToNumber.js +48 -0
- package/slack-bot/node_modules/es-abstract/2015/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2015/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2015/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2015/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2015/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2015/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2015/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2015/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2015/Type.js +12 -0
- package/slack-bot/node_modules/es-abstract/2015/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2015/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2015/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2015/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2015/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2015/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2015/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2015/tables/typed-array-objects.js +32 -0
- package/slack-bot/node_modules/es-abstract/2015/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2015/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2015/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2015/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/2016/AbstractRelationalComparison.js +62 -0
- package/slack-bot/node_modules/es-abstract/2016/AdvanceStringIndex.js +44 -0
- package/slack-bot/node_modules/es-abstract/2016/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2016/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2016/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2016/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2016/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2016/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2016/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2016/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2016/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateListFromArrayLike.js +43 -0
- package/slack-bot/node_modules/es-abstract/2016/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2016/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2016/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2016/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2016/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2016/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/DetachArrayBuffer.js +38 -0
- package/slack-bot/node_modules/es-abstract/2016/EnumerableOwnNames.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2016/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/GetIterator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2016/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2016/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2016/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2016/GetSubstitution.js +98 -0
- package/slack-bot/node_modules/es-abstract/2016/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2016/GetValueFromBuffer.js +86 -0
- package/slack-bot/node_modules/es-abstract/2016/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2016/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2016/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2016/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2016/IntegerIndexedElementGet.js +57 -0
- package/slack-bot/node_modules/es-abstract/2016/IntegerIndexedElementSet.js +62 -0
- package/slack-bot/node_modules/es-abstract/2016/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2016/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2016/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2016/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2016/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2016/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2016/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/IsDetachedBuffer.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2016/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2016/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2016/IsPropertyDescriptor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/IsWordChar.js +37 -0
- package/slack-bot/node_modules/es-abstract/2016/IterableToArrayLike.js +34 -0
- package/slack-bot/node_modules/es-abstract/2016/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2016/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2016/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2016/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2016/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2016/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2016/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/ObjectCreate.js +50 -0
- package/slack-bot/node_modules/es-abstract/2016/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2016/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2016/QuoteJSONString.js +48 -0
- package/slack-bot/node_modules/es-abstract/2016/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2016/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2016/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2016/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2016/SameValueNonNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2016/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2016/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2016/SetValueInBuffer.js +110 -0
- package/slack-bot/node_modules/es-abstract/2016/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2016/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2016/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2016/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2016/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2016/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2016/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2016/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2016/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2016/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2016/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2016/ToInteger.js +12 -0
- package/slack-bot/node_modules/es-abstract/2016/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2016/ToNumber.js +48 -0
- package/slack-bot/node_modules/es-abstract/2016/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2016/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2016/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2016/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2016/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2016/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2016/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2016/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2016/Type.js +12 -0
- package/slack-bot/node_modules/es-abstract/2016/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2016/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2016/UTF16Decode.js +21 -0
- package/slack-bot/node_modules/es-abstract/2016/UTF16Encoding.js +25 -0
- package/slack-bot/node_modules/es-abstract/2016/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2016/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2016/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2016/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2016/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2016/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2016/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2016/tables/typed-array-objects.js +32 -0
- package/slack-bot/node_modules/es-abstract/2016/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2016/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2016/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2016/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/2017/AbstractRelationalComparison.js +62 -0
- package/slack-bot/node_modules/es-abstract/2017/AdvanceStringIndex.js +44 -0
- package/slack-bot/node_modules/es-abstract/2017/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2017/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2017/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2017/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2017/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2017/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2017/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2017/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2017/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateListFromArrayLike.js +43 -0
- package/slack-bot/node_modules/es-abstract/2017/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2017/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2017/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2017/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2017/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2017/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/DetachArrayBuffer.js +39 -0
- package/slack-bot/node_modules/es-abstract/2017/EnumerableOwnProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2017/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2017/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/GetIterator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2017/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2017/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2017/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2017/GetSubstitution.js +98 -0
- package/slack-bot/node_modules/es-abstract/2017/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2017/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2017/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2017/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2017/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2017/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2017/IntegerIndexedElementGet.js +58 -0
- package/slack-bot/node_modules/es-abstract/2017/IntegerIndexedElementSet.js +62 -0
- package/slack-bot/node_modules/es-abstract/2017/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2017/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2017/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2017/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2017/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2017/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2017/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2017/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2017/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2017/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2017/IsPropertyDescriptor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/IsWordChar.js +45 -0
- package/slack-bot/node_modules/es-abstract/2017/IterableToList.js +21 -0
- package/slack-bot/node_modules/es-abstract/2017/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2017/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2017/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2017/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2017/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2017/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2017/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/NumberToRawBytes.js +59 -0
- package/slack-bot/node_modules/es-abstract/2017/ObjectCreate.js +50 -0
- package/slack-bot/node_modules/es-abstract/2017/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2017/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2017/QuoteJSONString.js +48 -0
- package/slack-bot/node_modules/es-abstract/2017/RawBytesToNumber.js +58 -0
- package/slack-bot/node_modules/es-abstract/2017/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2017/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2017/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2017/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2017/SameValueNonNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2017/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2017/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2017/SetValueInBuffer.js +94 -0
- package/slack-bot/node_modules/es-abstract/2017/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2017/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2017/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2017/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2017/StringGetOwnProperty.js +47 -0
- package/slack-bot/node_modules/es-abstract/2017/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2017/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2017/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2017/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2017/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2017/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2017/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2017/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2017/ToInteger.js +12 -0
- package/slack-bot/node_modules/es-abstract/2017/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2017/ToNumber.js +48 -0
- package/slack-bot/node_modules/es-abstract/2017/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2017/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2017/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2017/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2017/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2017/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2017/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2017/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2017/Type.js +12 -0
- package/slack-bot/node_modules/es-abstract/2017/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2017/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2017/UTF16Decode.js +21 -0
- package/slack-bot/node_modules/es-abstract/2017/UTF16Encoding.js +25 -0
- package/slack-bot/node_modules/es-abstract/2017/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2017/ValidateAtomicAccess.js +34 -0
- package/slack-bot/node_modules/es-abstract/2017/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2017/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2017/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2017/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2017/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2017/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2017/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2017/tables/typed-array-objects.js +32 -0
- package/slack-bot/node_modules/es-abstract/2017/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2017/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2017/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2017/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/2018/AbstractRelationalComparison.js +59 -0
- package/slack-bot/node_modules/es-abstract/2018/AdvanceStringIndex.js +44 -0
- package/slack-bot/node_modules/es-abstract/2018/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2018/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2018/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2018/AsyncIteratorClose.js +64 -0
- package/slack-bot/node_modules/es-abstract/2018/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2018/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2018/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2018/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2018/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2018/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2018/CopyDataProperties.js +62 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateAsyncFromSyncIterator.js +169 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateListFromArrayLike.js +43 -0
- package/slack-bot/node_modules/es-abstract/2018/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2018/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2018/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2018/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2018/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2018/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2018/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2018/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2018/EnumerableOwnPropertyNames.js +37 -0
- package/slack-bot/node_modules/es-abstract/2018/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/GetIterator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2018/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2018/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2018/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2018/GetSubstitution.js +120 -0
- package/slack-bot/node_modules/es-abstract/2018/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2018/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2018/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2018/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2018/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2018/IntegerIndexedElementGet.js +58 -0
- package/slack-bot/node_modules/es-abstract/2018/IntegerIndexedElementSet.js +62 -0
- package/slack-bot/node_modules/es-abstract/2018/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2018/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2018/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2018/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2018/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2018/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2018/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2018/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2018/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/IsStringPrefix.js +43 -0
- package/slack-bot/node_modules/es-abstract/2018/IsWordChar.js +45 -0
- package/slack-bot/node_modules/es-abstract/2018/IterableToList.js +21 -0
- package/slack-bot/node_modules/es-abstract/2018/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2018/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2018/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2018/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2018/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2018/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/NumberToRawBytes.js +59 -0
- package/slack-bot/node_modules/es-abstract/2018/NumberToString.js +17 -0
- package/slack-bot/node_modules/es-abstract/2018/ObjectCreate.js +50 -0
- package/slack-bot/node_modules/es-abstract/2018/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2018/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2018/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2018/QuoteJSONString.js +45 -0
- package/slack-bot/node_modules/es-abstract/2018/RawBytesToNumber.js +58 -0
- package/slack-bot/node_modules/es-abstract/2018/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2018/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2018/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2018/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2018/SameValueNonNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2018/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2018/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2018/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2018/SetValueInBuffer.js +94 -0
- package/slack-bot/node_modules/es-abstract/2018/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2018/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2018/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2018/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2018/StringGetOwnProperty.js +47 -0
- package/slack-bot/node_modules/es-abstract/2018/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2018/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2018/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2018/TimeString.js +22 -0
- package/slack-bot/node_modules/es-abstract/2018/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2018/TimeZoneString.js +33 -0
- package/slack-bot/node_modules/es-abstract/2018/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2018/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2018/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2018/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2018/ToInteger.js +12 -0
- package/slack-bot/node_modules/es-abstract/2018/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2018/ToNumber.js +48 -0
- package/slack-bot/node_modules/es-abstract/2018/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2018/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2018/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2018/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2018/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2018/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2018/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2018/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2018/Type.js +12 -0
- package/slack-bot/node_modules/es-abstract/2018/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2018/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2018/UTF16Decode.js +21 -0
- package/slack-bot/node_modules/es-abstract/2018/UTF16Encoding.js +25 -0
- package/slack-bot/node_modules/es-abstract/2018/UnicodeEscape.js +24 -0
- package/slack-bot/node_modules/es-abstract/2018/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2018/ValidateAtomicAccess.js +34 -0
- package/slack-bot/node_modules/es-abstract/2018/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2018/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2018/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2018/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2018/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2018/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2018/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2018/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2018/tables/typed-array-objects.js +32 -0
- package/slack-bot/node_modules/es-abstract/2018/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2018/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2018/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2018/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2018/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/2019/AbstractRelationalComparison.js +59 -0
- package/slack-bot/node_modules/es-abstract/2019/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2019/AdvanceStringIndex.js +44 -0
- package/slack-bot/node_modules/es-abstract/2019/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2019/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2019/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2019/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2019/AsyncIteratorClose.js +64 -0
- package/slack-bot/node_modules/es-abstract/2019/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2019/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2019/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2019/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2019/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2019/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2019/CopyDataProperties.js +62 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateListFromArrayLike.js +43 -0
- package/slack-bot/node_modules/es-abstract/2019/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2019/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2019/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2019/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2019/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2019/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2019/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2019/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2019/EnumerableOwnPropertyNames.js +37 -0
- package/slack-bot/node_modules/es-abstract/2019/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2019/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/GetIterator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2019/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2019/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2019/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2019/GetSubstitution.js +120 -0
- package/slack-bot/node_modules/es-abstract/2019/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2019/GetValueFromBuffer.js +94 -0
- package/slack-bot/node_modules/es-abstract/2019/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2019/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2019/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2019/IntegerIndexedElementGet.js +58 -0
- package/slack-bot/node_modules/es-abstract/2019/IntegerIndexedElementSet.js +62 -0
- package/slack-bot/node_modules/es-abstract/2019/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2019/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2019/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2019/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2019/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2019/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2019/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2019/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2019/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/IsStringPrefix.js +43 -0
- package/slack-bot/node_modules/es-abstract/2019/IsWordChar.js +45 -0
- package/slack-bot/node_modules/es-abstract/2019/IterableToList.js +21 -0
- package/slack-bot/node_modules/es-abstract/2019/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2019/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2019/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2019/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2019/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2019/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/NumberToRawBytes.js +59 -0
- package/slack-bot/node_modules/es-abstract/2019/NumberToString.js +17 -0
- package/slack-bot/node_modules/es-abstract/2019/ObjectCreate.js +50 -0
- package/slack-bot/node_modules/es-abstract/2019/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2019/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2019/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2019/QuoteJSONString.js +51 -0
- package/slack-bot/node_modules/es-abstract/2019/RawBytesToNumber.js +58 -0
- package/slack-bot/node_modules/es-abstract/2019/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2019/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2019/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2019/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2019/SameValueNonNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2019/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2019/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2019/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2019/SetValueInBuffer.js +94 -0
- package/slack-bot/node_modules/es-abstract/2019/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2019/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2019/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2019/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2019/StringGetOwnProperty.js +47 -0
- package/slack-bot/node_modules/es-abstract/2019/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2019/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2019/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2019/TimeString.js +22 -0
- package/slack-bot/node_modules/es-abstract/2019/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2019/TimeZoneString.js +33 -0
- package/slack-bot/node_modules/es-abstract/2019/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2019/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2019/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2019/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2019/ToInteger.js +12 -0
- package/slack-bot/node_modules/es-abstract/2019/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2019/ToNumber.js +48 -0
- package/slack-bot/node_modules/es-abstract/2019/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2019/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2019/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2019/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2019/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2019/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2019/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2019/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2019/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2019/Type.js +12 -0
- package/slack-bot/node_modules/es-abstract/2019/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2019/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2019/UTF16Decode.js +21 -0
- package/slack-bot/node_modules/es-abstract/2019/UTF16Encoding.js +25 -0
- package/slack-bot/node_modules/es-abstract/2019/UnicodeEscape.js +24 -0
- package/slack-bot/node_modules/es-abstract/2019/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2019/ValidateAtomicAccess.js +34 -0
- package/slack-bot/node_modules/es-abstract/2019/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2019/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2019/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2019/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/2019/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2019/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2019/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2019/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2019/tables/typed-array-objects.js +32 -0
- package/slack-bot/node_modules/es-abstract/2019/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2019/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2019/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2019/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2019/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/AbstractEqualityComparison.js +56 -0
- package/slack-bot/node_modules/es-abstract/2020/AbstractRelationalComparison.js +80 -0
- package/slack-bot/node_modules/es-abstract/2020/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2020/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2020/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2020/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2020/ArraySpeciesCreate.js +46 -0
- package/slack-bot/node_modules/es-abstract/2020/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2020/AsyncIteratorClose.js +64 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/sameValue.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/sameValueZero.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2020/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2020/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2020/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2020/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2020/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2020/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2020/CopyDataProperties.js +62 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateListFromArrayLike.js +46 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2020/CreateRegExpStringIterator.js +100 -0
- package/slack-bot/node_modules/es-abstract/2020/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2020/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2020/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2020/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2020/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2020/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2020/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2020/EnumerableOwnPropertyNames.js +37 -0
- package/slack-bot/node_modules/es-abstract/2020/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2020/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/GetIterator.js +63 -0
- package/slack-bot/node_modules/es-abstract/2020/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2020/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2020/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2020/GetSubstitution.js +120 -0
- package/slack-bot/node_modules/es-abstract/2020/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2020/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2020/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2020/IntegerIndexedElementGet.js +53 -0
- package/slack-bot/node_modules/es-abstract/2020/IntegerIndexedElementSet.js +60 -0
- package/slack-bot/node_modules/es-abstract/2020/InternalizeJSONProperty.js +66 -0
- package/slack-bot/node_modules/es-abstract/2020/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2020/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2020/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2020/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2020/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2020/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2020/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2020/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2020/IsInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/IsNonNegativeInteger.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/IsStringPrefix.js +43 -0
- package/slack-bot/node_modules/es-abstract/2020/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2020/IsValidIntegerIndex.js +32 -0
- package/slack-bot/node_modules/es-abstract/2020/IsWordChar.js +45 -0
- package/slack-bot/node_modules/es-abstract/2020/IterableToList.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2020/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/2020/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2020/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2020/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/add.js +40 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/leftShift.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/signedRightShift.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/subtract.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2020/Number/unsignedRightShift.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2020/NumberToBigInt.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/NumericToRawBytes.js +62 -0
- package/slack-bot/node_modules/es-abstract/2020/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js +40 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2020/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2020/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2020/RawBytesToNumeric.js +67 -0
- package/slack-bot/node_modules/es-abstract/2020/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2020/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2020/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/SameValueNonNumeric.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2020/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2020/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2020/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2020/SetValueInBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2020/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2020/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2020/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2020/StringGetOwnProperty.js +47 -0
- package/slack-bot/node_modules/es-abstract/2020/StringPad.js +41 -0
- package/slack-bot/node_modules/es-abstract/2020/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2020/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2020/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2020/TimeString.js +22 -0
- package/slack-bot/node_modules/es-abstract/2020/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/TimeZoneString.js +33 -0
- package/slack-bot/node_modules/es-abstract/2020/ToBigInt.js +53 -0
- package/slack-bot/node_modules/es-abstract/2020/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2020/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2020/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2020/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2020/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2020/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2020/ToInteger.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/ToNumber.js +51 -0
- package/slack-bot/node_modules/es-abstract/2020/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2020/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2020/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2020/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2020/Type.js +15 -0
- package/slack-bot/node_modules/es-abstract/2020/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2020/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2020/UTF16DecodeString.js +22 -0
- package/slack-bot/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js +19 -0
- package/slack-bot/node_modules/es-abstract/2020/UTF16Encoding.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2020/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2020/ValidateAtomicAccess.js +34 -0
- package/slack-bot/node_modules/es-abstract/2020/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2020/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2020/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2020/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2020/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2020/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2020/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2020/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2020/tables/typed-array-objects.js +36 -0
- package/slack-bot/node_modules/es-abstract/2020/thisBigIntValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2020/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2020/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2020/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2020/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/AbstractEqualityComparison.js +56 -0
- package/slack-bot/node_modules/es-abstract/2021/AbstractRelationalComparison.js +80 -0
- package/slack-bot/node_modules/es-abstract/2021/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2021/AddToKeptObjects.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2021/ApplyStringOrNumericBinaryOperator.js +77 -0
- package/slack-bot/node_modules/es-abstract/2021/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2021/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2021/ArraySpeciesCreate.js +48 -0
- package/slack-bot/node_modules/es-abstract/2021/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2021/AsyncIteratorClose.js +70 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/sameValue.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/sameValueZero.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2021/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/ByteListBitwiseOp.js +39 -0
- package/slack-bot/node_modules/es-abstract/2021/ByteListEqual.js +31 -0
- package/slack-bot/node_modules/es-abstract/2021/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2021/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2021/ClearKeptObjects.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/CloneArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2021/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2021/CodePointsToString.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2021/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2021/CopyDataProperties.js +69 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateListFromArrayLike.js +44 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2021/CreateRegExpStringIterator.js +100 -0
- package/slack-bot/node_modules/es-abstract/2021/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2021/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2021/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2021/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2021/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2021/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2021/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2021/EnumerableOwnPropertyNames.js +37 -0
- package/slack-bot/node_modules/es-abstract/2021/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2021/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2021/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/GetIterator.js +63 -0
- package/slack-bot/node_modules/es-abstract/2021/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2021/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2021/GetPromiseResolve.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2021/GetSubstitution.js +119 -0
- package/slack-bot/node_modules/es-abstract/2021/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2021/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2021/IntegerIndexedElementGet.js +39 -0
- package/slack-bot/node_modules/es-abstract/2021/IntegerIndexedElementSet.js +44 -0
- package/slack-bot/node_modules/es-abstract/2021/InternalizeJSONProperty.js +66 -0
- package/slack-bot/node_modules/es-abstract/2021/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2021/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2021/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2021/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2021/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2021/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2021/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2021/IsIntegralNumber.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2021/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/IsStringPrefix.js +43 -0
- package/slack-bot/node_modules/es-abstract/2021/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2021/IsValidIntegerIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2021/IsWordChar.js +46 -0
- package/slack-bot/node_modules/es-abstract/2021/IterableToList.js +26 -0
- package/slack-bot/node_modules/es-abstract/2021/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2021/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/MakeDay.js +36 -0
- package/slack-bot/node_modules/es-abstract/2021/MakeTime.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2021/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2021/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/add.js +31 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/leftShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/signedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/subtract.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2021/Number/unsignedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2021/NumberToBigInt.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/NumericToRawBytes.js +62 -0
- package/slack-bot/node_modules/es-abstract/2021/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js +41 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2021/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2021/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2021/RawBytesToNumeric.js +67 -0
- package/slack-bot/node_modules/es-abstract/2021/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2021/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2021/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2021/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/SameValueNonNumeric.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2021/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2021/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2021/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2021/SetTypedArrayFromArrayLike.js +96 -0
- package/slack-bot/node_modules/es-abstract/2021/SetTypedArrayFromTypedArray.js +138 -0
- package/slack-bot/node_modules/es-abstract/2021/SetValueInBuffer.js +92 -0
- package/slack-bot/node_modules/es-abstract/2021/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2021/SplitMatch.js +35 -0
- package/slack-bot/node_modules/es-abstract/2021/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2021/StringGetOwnProperty.js +46 -0
- package/slack-bot/node_modules/es-abstract/2021/StringIndexOf.js +36 -0
- package/slack-bot/node_modules/es-abstract/2021/StringPad.js +41 -0
- package/slack-bot/node_modules/es-abstract/2021/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/StringToCodePoints.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2021/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2021/TimeString.js +22 -0
- package/slack-bot/node_modules/es-abstract/2021/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/TimeZoneString.js +38 -0
- package/slack-bot/node_modules/es-abstract/2021/ToBigInt.js +53 -0
- package/slack-bot/node_modules/es-abstract/2021/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2021/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2021/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2021/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2021/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2021/ToIntegerOrInfinity.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/ToNumber.js +51 -0
- package/slack-bot/node_modules/es-abstract/2021/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2021/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2021/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2021/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2021/Type.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2021/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2021/UTF16EncodeCodePoint.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js +19 -0
- package/slack-bot/node_modules/es-abstract/2021/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2021/ValidateAndApplyPropertyDescriptor.js +159 -0
- package/slack-bot/node_modules/es-abstract/2021/ValidateAtomicAccess.js +45 -0
- package/slack-bot/node_modules/es-abstract/2021/ValidateIntegerTypedArray.js +37 -0
- package/slack-bot/node_modules/es-abstract/2021/ValidateTypedArray.js +28 -0
- package/slack-bot/node_modules/es-abstract/2021/WeakRefDeref.js +23 -0
- package/slack-bot/node_modules/es-abstract/2021/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2021/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2021/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/clamp.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2021/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2021/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2021/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2021/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2021/substring.js +15 -0
- package/slack-bot/node_modules/es-abstract/2021/tables/typed-array-objects.js +36 -0
- package/slack-bot/node_modules/es-abstract/2021/thisBigIntValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2021/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2021/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2021/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2021/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2022/AddToKeptObjects.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2022/ApplyStringOrNumericBinaryOperator.js +77 -0
- package/slack-bot/node_modules/es-abstract/2022/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2022/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2022/ArraySpeciesCreate.js +48 -0
- package/slack-bot/node_modules/es-abstract/2022/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2022/AsyncIteratorClose.js +70 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/sameValue.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/sameValueZero.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2022/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/ByteListBitwiseOp.js +39 -0
- package/slack-bot/node_modules/es-abstract/2022/ByteListEqual.js +31 -0
- package/slack-bot/node_modules/es-abstract/2022/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/Canonicalize.js +51 -0
- package/slack-bot/node_modules/es-abstract/2022/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2022/ClearKeptObjects.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/CloneArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2022/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2022/CodePointsToString.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2022/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2022/CopyDataProperties.js +69 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateDataPropertyOrThrow.js +24 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateListFromArrayLike.js +44 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
- package/slack-bot/node_modules/es-abstract/2022/CreateRegExpStringIterator.js +100 -0
- package/slack-bot/node_modules/es-abstract/2022/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2022/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2022/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2022/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2022/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2022/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/DefineMethodProperty.js +42 -0
- package/slack-bot/node_modules/es-abstract/2022/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2022/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2022/EnumerableOwnPropertyNames.js +37 -0
- package/slack-bot/node_modules/es-abstract/2022/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2022/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2022/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/GetIterator.js +63 -0
- package/slack-bot/node_modules/es-abstract/2022/GetMatchIndexPair.js +24 -0
- package/slack-bot/node_modules/es-abstract/2022/GetMatchString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2022/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2022/GetPromiseResolve.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2022/GetStringIndex.js +27 -0
- package/slack-bot/node_modules/es-abstract/2022/GetSubstitution.js +137 -0
- package/slack-bot/node_modules/es-abstract/2022/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2022/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/InstallErrorCause.js +21 -0
- package/slack-bot/node_modules/es-abstract/2022/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2022/IntegerIndexedElementGet.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/IntegerIndexedElementSet.js +42 -0
- package/slack-bot/node_modules/es-abstract/2022/InternalizeJSONProperty.js +66 -0
- package/slack-bot/node_modules/es-abstract/2022/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2022/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2022/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2022/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2022/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2022/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/IsIntegralNumber.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/IsLessThan.js +87 -0
- package/slack-bot/node_modules/es-abstract/2022/IsLooselyEqual.js +58 -0
- package/slack-bot/node_modules/es-abstract/2022/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2022/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/IsStrictlyEqual.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/IsStringPrefix.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2022/IsValidIntegerIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2022/IsWordChar.js +46 -0
- package/slack-bot/node_modules/es-abstract/2022/IterableToList.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/IteratorClose.js +51 -0
- package/slack-bot/node_modules/es-abstract/2022/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/IteratorNext.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/IteratorStep.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/MakeDay.js +36 -0
- package/slack-bot/node_modules/es-abstract/2022/MakeMatchIndicesIndexPairArray.js +66 -0
- package/slack-bot/node_modules/es-abstract/2022/MakeTime.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2022/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2022/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/add.js +31 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/leftShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/signedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/subtract.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/toString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2022/Number/unsignedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/NumberToBigInt.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/NumericToRawBytes.js +62 -0
- package/slack-bot/node_modules/es-abstract/2022/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryGetOwnProperty.js +41 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2022/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2022/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2022/RawBytesToNumeric.js +67 -0
- package/slack-bot/node_modules/es-abstract/2022/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2022/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2022/RegExpHasFlag.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2022/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/SameValueNonNumeric.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2022/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2022/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2022/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2022/SetTypedArrayFromArrayLike.js +94 -0
- package/slack-bot/node_modules/es-abstract/2022/SetTypedArrayFromTypedArray.js +134 -0
- package/slack-bot/node_modules/es-abstract/2022/SetValueInBuffer.js +92 -0
- package/slack-bot/node_modules/es-abstract/2022/SortIndexedProperties.js +62 -0
- package/slack-bot/node_modules/es-abstract/2022/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2022/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/StringGetOwnProperty.js +46 -0
- package/slack-bot/node_modules/es-abstract/2022/StringIndexOf.js +36 -0
- package/slack-bot/node_modules/es-abstract/2022/StringPad.js +41 -0
- package/slack-bot/node_modules/es-abstract/2022/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/StringToCodePoints.js +22 -0
- package/slack-bot/node_modules/es-abstract/2022/StringToNumber.js +42 -0
- package/slack-bot/node_modules/es-abstract/2022/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2022/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2022/TimeString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/TimeZoneString.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/ToBigInt.js +51 -0
- package/slack-bot/node_modules/es-abstract/2022/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2022/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2022/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2022/ToInt16.js +10 -0
- package/slack-bot/node_modules/es-abstract/2022/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/ToInt8.js +10 -0
- package/slack-bot/node_modules/es-abstract/2022/ToIntegerOrInfinity.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/ToNumber.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2022/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2022/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2022/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/ToZeroPaddedDecimalString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2022/Type.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2022/TypedArrayElementSize.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/TypedArrayElementType.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2022/UTF16EncodeCodePoint.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/UTF16SurrogatePairToCodePoint.js +19 -0
- package/slack-bot/node_modules/es-abstract/2022/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2022/ValidateAndApplyPropertyDescriptor.js +171 -0
- package/slack-bot/node_modules/es-abstract/2022/ValidateAtomicAccess.js +40 -0
- package/slack-bot/node_modules/es-abstract/2022/ValidateIntegerTypedArray.js +38 -0
- package/slack-bot/node_modules/es-abstract/2022/ValidateTypedArray.js +26 -0
- package/slack-bot/node_modules/es-abstract/2022/WeakRefDeref.js +23 -0
- package/slack-bot/node_modules/es-abstract/2022/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2022/WordCharacters.js +46 -0
- package/slack-bot/node_modules/es-abstract/2022/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/clamp.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2022/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2022/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2022/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2022/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2022/substring.js +15 -0
- package/slack-bot/node_modules/es-abstract/2022/tables/typed-array-objects.js +36 -0
- package/slack-bot/node_modules/es-abstract/2022/thisBigIntValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2022/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2022/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2022/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2022/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2023/AddToKeptObjects.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2023/ApplyStringOrNumericBinaryOperator.js +77 -0
- package/slack-bot/node_modules/es-abstract/2023/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2023/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2023/ArraySpeciesCreate.js +48 -0
- package/slack-bot/node_modules/es-abstract/2023/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2023/AsyncIteratorClose.js +70 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/index.js +39 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/toString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2023/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2023/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/ByteListBitwiseOp.js +39 -0
- package/slack-bot/node_modules/es-abstract/2023/ByteListEqual.js +31 -0
- package/slack-bot/node_modules/es-abstract/2023/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/CanBeHeldWeakly.js +17 -0
- package/slack-bot/node_modules/es-abstract/2023/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/Canonicalize.js +52 -0
- package/slack-bot/node_modules/es-abstract/2023/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2023/ClearKeptObjects.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/CloneArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2023/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2023/CodePointsToString.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/CompareArrayElements.js +50 -0
- package/slack-bot/node_modules/es-abstract/2023/CompareTypedArrayElements.js +60 -0
- package/slack-bot/node_modules/es-abstract/2023/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2023/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2023/CopyDataProperties.js +69 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateDataPropertyOrThrow.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateListFromArrayLike.js +44 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateMethodProperty.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/CreateRegExpStringIterator.js +100 -0
- package/slack-bot/node_modules/es-abstract/2023/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2023/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2023/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2023/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2023/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2023/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/DefaultTimeZone.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/DefineMethodProperty.js +42 -0
- package/slack-bot/node_modules/es-abstract/2023/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2023/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2023/EnumerableOwnProperties.js +36 -0
- package/slack-bot/node_modules/es-abstract/2023/FindViaPredicate.js +43 -0
- package/slack-bot/node_modules/es-abstract/2023/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2023/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2023/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/GetIterator.js +53 -0
- package/slack-bot/node_modules/es-abstract/2023/GetIteratorFromMethod.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/GetMatchIndexPair.js +24 -0
- package/slack-bot/node_modules/es-abstract/2023/GetMatchString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2023/GetNamedTimeZoneEpochNanoseconds.js +72 -0
- package/slack-bot/node_modules/es-abstract/2023/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2023/GetPromiseResolve.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2023/GetStringIndex.js +27 -0
- package/slack-bot/node_modules/es-abstract/2023/GetSubstitution.js +138 -0
- package/slack-bot/node_modules/es-abstract/2023/GetUTCEpochNanoseconds.js +68 -0
- package/slack-bot/node_modules/es-abstract/2023/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/GetValueFromBuffer.js +96 -0
- package/slack-bot/node_modules/es-abstract/2023/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/InstallErrorCause.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2023/IntegerIndexedElementGet.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/IntegerIndexedElementSet.js +42 -0
- package/slack-bot/node_modules/es-abstract/2023/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2023/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2023/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2023/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2023/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2023/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/IsIntegralNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/IsLessThan.js +97 -0
- package/slack-bot/node_modules/es-abstract/2023/IsLooselyEqual.js +58 -0
- package/slack-bot/node_modules/es-abstract/2023/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2023/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/IsStrictlyEqual.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/IsStringWellFormedUnicode.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/IsTimeZoneOffsetString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2023/IsValidIntegerIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2023/IsWordChar.js +42 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorClose.js +65 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorNext.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorStep.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorToList.js +27 -0
- package/slack-bot/node_modules/es-abstract/2023/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/KeyForSymbol.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/MakeDay.js +36 -0
- package/slack-bot/node_modules/es-abstract/2023/MakeMatchIndicesIndexPairArray.js +66 -0
- package/slack-bot/node_modules/es-abstract/2023/MakeTime.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2023/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2023/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/add.js +31 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/leftShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/remainder.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/signedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/subtract.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/toString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2023/Number/unsignedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/NumberToBigInt.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/NumericToRawBytes.js +62 -0
- package/slack-bot/node_modules/es-abstract/2023/ObjectDefineProperties.js +37 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryGetOwnProperty.js +41 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2023/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2023/ParseHexOctet.js +40 -0
- package/slack-bot/node_modules/es-abstract/2023/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2023/RawBytesToNumeric.js +67 -0
- package/slack-bot/node_modules/es-abstract/2023/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2023/RegExpHasFlag.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2023/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2023/SameValueNonNumber.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2023/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2023/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2023/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2023/SetTypedArrayFromArrayLike.js +68 -0
- package/slack-bot/node_modules/es-abstract/2023/SetTypedArrayFromTypedArray.js +129 -0
- package/slack-bot/node_modules/es-abstract/2023/SetValueInBuffer.js +92 -0
- package/slack-bot/node_modules/es-abstract/2023/SortIndexedProperties.js +49 -0
- package/slack-bot/node_modules/es-abstract/2023/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2023/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/StringGetOwnProperty.js +46 -0
- package/slack-bot/node_modules/es-abstract/2023/StringIndexOf.js +36 -0
- package/slack-bot/node_modules/es-abstract/2023/StringPad.js +41 -0
- package/slack-bot/node_modules/es-abstract/2023/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/StringToCodePoints.js +22 -0
- package/slack-bot/node_modules/es-abstract/2023/StringToNumber.js +42 -0
- package/slack-bot/node_modules/es-abstract/2023/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2023/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2023/TimeString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/TimeZoneString.js +41 -0
- package/slack-bot/node_modules/es-abstract/2023/ToBigInt.js +51 -0
- package/slack-bot/node_modules/es-abstract/2023/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2023/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/ToIndex.js +24 -0
- package/slack-bot/node_modules/es-abstract/2023/ToInt16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/ToInt32.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/ToInt8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/ToIntegerOrInfinity.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/ToNumber.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2023/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2023/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2023/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/ToUint16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/ToUint32.js +21 -0
- package/slack-bot/node_modules/es-abstract/2023/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/ToUint8Clamp.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2023/Type.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/TypedArrayCreate.js +47 -0
- package/slack-bot/node_modules/es-abstract/2023/TypedArrayCreateSameType.js +35 -0
- package/slack-bot/node_modules/es-abstract/2023/TypedArrayElementSize.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/TypedArrayElementType.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2023/UTF16EncodeCodePoint.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/UTF16SurrogatePairToCodePoint.js +19 -0
- package/slack-bot/node_modules/es-abstract/2023/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2023/ValidateAndApplyPropertyDescriptor.js +171 -0
- package/slack-bot/node_modules/es-abstract/2023/ValidateAtomicAccess.js +40 -0
- package/slack-bot/node_modules/es-abstract/2023/ValidateIntegerTypedArray.js +38 -0
- package/slack-bot/node_modules/es-abstract/2023/ValidateTypedArray.js +26 -0
- package/slack-bot/node_modules/es-abstract/2023/WeakRefDeref.js +23 -0
- package/slack-bot/node_modules/es-abstract/2023/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2023/WordCharacters.js +47 -0
- package/slack-bot/node_modules/es-abstract/2023/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/clamp.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2023/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2023/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2023/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2023/substring.js +15 -0
- package/slack-bot/node_modules/es-abstract/2023/tables/typed-array-objects.js +36 -0
- package/slack-bot/node_modules/es-abstract/2023/thisBigIntValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2023/thisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2023/thisNumberValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2023/thisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2023/thisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2023/thisTimeValue.js +9 -0
- package/slack-bot/node_modules/es-abstract/2023/truncate.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2024/AddToKeptObjects.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/AddValueToKeyedGroup.js +45 -0
- package/slack-bot/node_modules/es-abstract/2024/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2024/AllCharacters.js +29 -0
- package/slack-bot/node_modules/es-abstract/2024/ApplyStringOrNumericBinaryOperator.js +77 -0
- package/slack-bot/node_modules/es-abstract/2024/ArrayBufferByteLength.js +41 -0
- package/slack-bot/node_modules/es-abstract/2024/ArrayBufferCopyAndDetach.js +101 -0
- package/slack-bot/node_modules/es-abstract/2024/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2024/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2024/ArraySpeciesCreate.js +48 -0
- package/slack-bot/node_modules/es-abstract/2024/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2024/AsyncIteratorClose.js +70 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/index.js +39 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/toString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2024/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2024/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/ByteListBitwiseOp.js +39 -0
- package/slack-bot/node_modules/es-abstract/2024/ByteListEqual.js +31 -0
- package/slack-bot/node_modules/es-abstract/2024/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/CanBeHeldWeakly.js +17 -0
- package/slack-bot/node_modules/es-abstract/2024/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/Canonicalize.js +52 -0
- package/slack-bot/node_modules/es-abstract/2024/CharacterComplement.js +34 -0
- package/slack-bot/node_modules/es-abstract/2024/CharacterRange.js +53 -0
- package/slack-bot/node_modules/es-abstract/2024/ClearKeptObjects.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/CloneArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2024/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2024/CodePointsToString.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/CompareArrayElements.js +50 -0
- package/slack-bot/node_modules/es-abstract/2024/CompareTypedArrayElements.js +60 -0
- package/slack-bot/node_modules/es-abstract/2024/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2024/CopyDataProperties.js +69 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateDataPropertyOrThrow.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateIterResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateListFromArrayLike.js +44 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/CreateRegExpStringIterator.js +101 -0
- package/slack-bot/node_modules/es-abstract/2024/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2024/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2024/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2024/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2024/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/DefineMethodProperty.js +42 -0
- package/slack-bot/node_modules/es-abstract/2024/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2024/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2024/EnumerableOwnProperties.js +36 -0
- package/slack-bot/node_modules/es-abstract/2024/FindViaPredicate.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2024/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/GetIterator.js +53 -0
- package/slack-bot/node_modules/es-abstract/2024/GetIteratorFromMethod.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/GetMatchIndexPair.js +24 -0
- package/slack-bot/node_modules/es-abstract/2024/GetMatchString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2024/GetNamedTimeZoneEpochNanoseconds.js +72 -0
- package/slack-bot/node_modules/es-abstract/2024/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2024/GetPromiseResolve.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2024/GetStringIndex.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/GetSubstitution.js +148 -0
- package/slack-bot/node_modules/es-abstract/2024/GetUTCEpochNanoseconds.js +68 -0
- package/slack-bot/node_modules/es-abstract/2024/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/GetValueFromBuffer.js +95 -0
- package/slack-bot/node_modules/es-abstract/2024/GetViewByteLength.js +47 -0
- package/slack-bot/node_modules/es-abstract/2024/GroupBy.js +75 -0
- package/slack-bot/node_modules/es-abstract/2024/HasEitherUnicodeFlag.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/InstallErrorCause.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2024/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2024/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2024/IsArrayBufferViewOutOfBounds.js +30 -0
- package/slack-bot/node_modules/es-abstract/2024/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2024/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2024/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2024/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/IsFixedLengthArrayBuffer.js +29 -0
- package/slack-bot/node_modules/es-abstract/2024/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/IsIntegralNumber.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/IsLessThan.js +97 -0
- package/slack-bot/node_modules/es-abstract/2024/IsLooselyEqual.js +58 -0
- package/slack-bot/node_modules/es-abstract/2024/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2024/IsPropertyKey.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/IsStrictlyEqual.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/IsStringWellFormedUnicode.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/IsTimeZoneOffsetString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/IsTypedArrayOutOfBounds.js +57 -0
- package/slack-bot/node_modules/es-abstract/2024/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2024/IsValidIntegerIndex.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/IsViewOutOfBounds.js +48 -0
- package/slack-bot/node_modules/es-abstract/2024/IsWordChar.js +42 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorClose.js +65 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorNext.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorStep.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorStepValue.js +49 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorToList.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/KeyForSymbol.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeDataViewWithBufferWitnessRecord.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeDay.js +36 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeFullYear.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeMatchIndicesIndexPairArray.js +66 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeTime.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/MakeTypedArrayWithBufferWitnessRecord.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2024/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2024/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/add.js +31 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/leftShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/remainder.js +38 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/signedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/subtract.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/toString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2024/Number/unsignedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/NumberToBigInt.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/NumericToRawBytes.js +62 -0
- package/slack-bot/node_modules/es-abstract/2024/ObjectDefineProperties.js +33 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryGetOwnProperty.js +41 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2024/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2024/ParseHexOctet.js +40 -0
- package/slack-bot/node_modules/es-abstract/2024/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2024/RawBytesToNumeric.js +67 -0
- package/slack-bot/node_modules/es-abstract/2024/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2024/RegExpHasFlag.js +38 -0
- package/slack-bot/node_modules/es-abstract/2024/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2024/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2024/SameValueNonNumber.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2024/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2024/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2024/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2024/SetTypedArrayFromArrayLike.js +64 -0
- package/slack-bot/node_modules/es-abstract/2024/SetTypedArrayFromTypedArray.js +133 -0
- package/slack-bot/node_modules/es-abstract/2024/SetValueInBuffer.js +92 -0
- package/slack-bot/node_modules/es-abstract/2024/SortIndexedProperties.js +49 -0
- package/slack-bot/node_modules/es-abstract/2024/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2024/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2024/StringGetOwnProperty.js +46 -0
- package/slack-bot/node_modules/es-abstract/2024/StringIndexOf.js +36 -0
- package/slack-bot/node_modules/es-abstract/2024/StringPad.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/StringToCodePoints.js +22 -0
- package/slack-bot/node_modules/es-abstract/2024/StringToNumber.js +42 -0
- package/slack-bot/node_modules/es-abstract/2024/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/SystemTimeZoneIdentifier.js +18 -0
- package/slack-bot/node_modules/es-abstract/2024/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2024/ThisBigIntValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/ThisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2024/ThisNumberValue.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/ThisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2024/ThisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2024/TimeString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/TimeZoneString.js +41 -0
- package/slack-bot/node_modules/es-abstract/2024/ToBigInt.js +51 -0
- package/slack-bot/node_modules/es-abstract/2024/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2024/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/ToIndex.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/ToInt16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/ToInt32.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/ToInt8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/ToIntegerOrInfinity.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/ToNumber.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2024/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2024/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2024/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2024/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/ToUint16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/ToUint32.js +21 -0
- package/slack-bot/node_modules/es-abstract/2024/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/ToUint8Clamp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2024/ToZeroPaddedDecimalString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2024/Type.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayByteLength.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayCreateFromConstructor.js +52 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayCreateSameType.js +35 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayElementSize.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayElementType.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayGetElement.js +37 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArrayLength.js +51 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArraySetElement.js +42 -0
- package/slack-bot/node_modules/es-abstract/2024/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2024/UTF16EncodeCodePoint.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2024/ValidateAndApplyPropertyDescriptor.js +171 -0
- package/slack-bot/node_modules/es-abstract/2024/ValidateAtomicAccess.js +43 -0
- package/slack-bot/node_modules/es-abstract/2024/ValidateAtomicAccessOnIntegerTypedArray.js +19 -0
- package/slack-bot/node_modules/es-abstract/2024/ValidateIntegerTypedArray.js +31 -0
- package/slack-bot/node_modules/es-abstract/2024/ValidateTypedArray.js +32 -0
- package/slack-bot/node_modules/es-abstract/2024/WeakRefDeref.js +23 -0
- package/slack-bot/node_modules/es-abstract/2024/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2024/WordCharacters.js +47 -0
- package/slack-bot/node_modules/es-abstract/2024/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2024/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/clamp.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2024/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2024/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2024/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2024/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2024/substring.js +15 -0
- package/slack-bot/node_modules/es-abstract/2024/tables/typed-array-objects.js +36 -0
- package/slack-bot/node_modules/es-abstract/2024/truncate.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/AddEntriesFromIterable.js +44 -0
- package/slack-bot/node_modules/es-abstract/2025/AddToKeptObjects.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/AddValueToKeyedGroup.js +45 -0
- package/slack-bot/node_modules/es-abstract/2025/AdvanceStringIndex.js +30 -0
- package/slack-bot/node_modules/es-abstract/2025/AllCharacters.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/ApplyStringOrNumericBinaryOperator.js +77 -0
- package/slack-bot/node_modules/es-abstract/2025/ArrayBufferByteLength.js +41 -0
- package/slack-bot/node_modules/es-abstract/2025/ArrayBufferCopyAndDetach.js +101 -0
- package/slack-bot/node_modules/es-abstract/2025/ArrayCreate.js +42 -0
- package/slack-bot/node_modules/es-abstract/2025/ArraySetLength.js +77 -0
- package/slack-bot/node_modules/es-abstract/2025/ArraySpeciesCreate.js +48 -0
- package/slack-bot/node_modules/es-abstract/2025/AsyncFromSyncIteratorContinuation.js +45 -0
- package/slack-bot/node_modules/es-abstract/2025/AsyncIteratorClose.js +70 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/add.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseNOT.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/divide.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/equal.js +13 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/exponentiate.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/index.js +39 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/leftShift.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/lessThan.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/multiply.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/remainder.js +28 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/signedRightShift.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/subtract.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/toString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/unaryMinus.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/BigInt/unsignedRightShift.js +13 -0
- package/slack-bot/node_modules/es-abstract/2025/BigIntBitwiseOp.js +63 -0
- package/slack-bot/node_modules/es-abstract/2025/BinaryAnd.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/BinaryOr.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/BinaryXor.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/ByteListBitwiseOp.js +39 -0
- package/slack-bot/node_modules/es-abstract/2025/ByteListEqual.js +31 -0
- package/slack-bot/node_modules/es-abstract/2025/Call.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/CanBeHeldWeakly.js +17 -0
- package/slack-bot/node_modules/es-abstract/2025/CanonicalNumericIndexString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/Canonicalize.js +52 -0
- package/slack-bot/node_modules/es-abstract/2025/CanonicalizeKeyedCollectionKey.js +7 -0
- package/slack-bot/node_modules/es-abstract/2025/CharacterComplement.js +34 -0
- package/slack-bot/node_modules/es-abstract/2025/CharacterRange.js +47 -0
- package/slack-bot/node_modules/es-abstract/2025/ClearKeptObjects.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/CloneArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2025/CodePointAt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2025/CodePointsToString.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/CompareArrayElements.js +50 -0
- package/slack-bot/node_modules/es-abstract/2025/CompareTypedArrayElements.js +60 -0
- package/slack-bot/node_modules/es-abstract/2025/CompletePropertyDescriptor.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/CompletionRecord.js +48 -0
- package/slack-bot/node_modules/es-abstract/2025/CopyDataProperties.js +69 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateAsyncFromSyncIterator.js +137 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateDataProperty.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateDataPropertyOrThrow.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateHTML.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateIteratorFromClosure.js +51 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateIteratorResultObject.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateListFromArrayLike.js +40 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateNonEnumerableDataPropertyOrThrow.js +28 -0
- package/slack-bot/node_modules/es-abstract/2025/CreateRegExpStringIterator.js +101 -0
- package/slack-bot/node_modules/es-abstract/2025/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/2025/DateString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/2025/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/2025/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2025/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/DefineMethodProperty.js +42 -0
- package/slack-bot/node_modules/es-abstract/2025/DefinePropertyOrThrow.js +39 -0
- package/slack-bot/node_modules/es-abstract/2025/DeletePropertyOrThrow.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/DetachArrayBuffer.js +46 -0
- package/slack-bot/node_modules/es-abstract/2025/EncodeForRegExpEscape.js +74 -0
- package/slack-bot/node_modules/es-abstract/2025/EnumerableOwnProperties.js +36 -0
- package/slack-bot/node_modules/es-abstract/2025/FindViaPredicate.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/FlattenIntoArray.js +55 -0
- package/slack-bot/node_modules/es-abstract/2025/FromPropertyDescriptor.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/GeneratorResume.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/GeneratorResumeAbrupt.js +55 -0
- package/slack-bot/node_modules/es-abstract/2025/GeneratorStart.js +46 -0
- package/slack-bot/node_modules/es-abstract/2025/GeneratorValidate.js +24 -0
- package/slack-bot/node_modules/es-abstract/2025/Get.js +24 -0
- package/slack-bot/node_modules/es-abstract/2025/GetArrayBufferMaxByteLengthOption.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/GetGlobalObject.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/GetIterator.js +53 -0
- package/slack-bot/node_modules/es-abstract/2025/GetIteratorDirect.js +24 -0
- package/slack-bot/node_modules/es-abstract/2025/GetIteratorFlattenable.js +48 -0
- package/slack-bot/node_modules/es-abstract/2025/GetIteratorFromMethod.js +28 -0
- package/slack-bot/node_modules/es-abstract/2025/GetMatchIndexPair.js +24 -0
- package/slack-bot/node_modules/es-abstract/2025/GetMatchString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/GetMethod.js +34 -0
- package/slack-bot/node_modules/es-abstract/2025/GetNamedTimeZoneEpochNanoseconds.js +72 -0
- package/slack-bot/node_modules/es-abstract/2025/GetOwnPropertyKeys.js +30 -0
- package/slack-bot/node_modules/es-abstract/2025/GetPromiseResolve.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/GetPrototypeFromConstructor.js +33 -0
- package/slack-bot/node_modules/es-abstract/2025/GetSetRecord.js +64 -0
- package/slack-bot/node_modules/es-abstract/2025/GetStringIndex.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/GetSubstitution.js +148 -0
- package/slack-bot/node_modules/es-abstract/2025/GetUTCEpochNanoseconds.js +68 -0
- package/slack-bot/node_modules/es-abstract/2025/GetV.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/GetValueFromBuffer.js +95 -0
- package/slack-bot/node_modules/es-abstract/2025/GetViewByteLength.js +47 -0
- package/slack-bot/node_modules/es-abstract/2025/GroupBy.js +75 -0
- package/slack-bot/node_modules/es-abstract/2025/HasEitherUnicodeFlag.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/HasOwnProperty.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/HasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/IfAbruptCloseIterator.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/InstallErrorCause.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/InstanceofOperator.js +30 -0
- package/slack-bot/node_modules/es-abstract/2025/InternalizeJSONProperty.js +68 -0
- package/slack-bot/node_modules/es-abstract/2025/Invoke.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/IsArray.js +4 -0
- package/slack-bot/node_modules/es-abstract/2025/IsArrayBufferViewOutOfBounds.js +30 -0
- package/slack-bot/node_modules/es-abstract/2025/IsBigIntElementType.js +7 -0
- package/slack-bot/node_modules/es-abstract/2025/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/2025/IsCompatiblePropertyDescriptor.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/IsConcatSpreadable.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/IsConstructor.js +40 -0
- package/slack-bot/node_modules/es-abstract/2025/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/IsDetachedBuffer.js +28 -0
- package/slack-bot/node_modules/es-abstract/2025/IsExtensible.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/IsFixedLengthArrayBuffer.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/IsLessThan.js +97 -0
- package/slack-bot/node_modules/es-abstract/2025/IsLooselyEqual.js +58 -0
- package/slack-bot/node_modules/es-abstract/2025/IsNoTearConfiguration.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/IsPromise.js +24 -0
- package/slack-bot/node_modules/es-abstract/2025/IsRegExp.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/IsSharedArrayBuffer.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/IsStrictlyEqual.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/IsStringWellFormedUnicode.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/IsTimeZoneOffsetString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/IsTypedArrayFixedLength.js +34 -0
- package/slack-bot/node_modules/es-abstract/2025/IsTypedArrayOutOfBounds.js +57 -0
- package/slack-bot/node_modules/es-abstract/2025/IsUnclampedIntegerElementType.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/IsUnsignedElementType.js +11 -0
- package/slack-bot/node_modules/es-abstract/2025/IsValidIntegerIndex.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/IsViewOutOfBounds.js +48 -0
- package/slack-bot/node_modules/es-abstract/2025/IsWordChar.js +42 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorClose.js +65 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorComplete.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorNext.js +36 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorStep.js +35 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorStepValue.js +32 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorToList.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/IteratorValue.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/KeyForSymbol.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/LengthOfArrayLike.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeDataViewWithBufferWitnessRecord.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeDay.js +36 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeFullYear.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeMatchIndicesIndexPairArray.js +66 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeTime.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/MakeTypedArrayWithBufferWitnessRecord.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/2025/NewPromiseCapability.js +34 -0
- package/slack-bot/node_modules/es-abstract/2025/NormalCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/add.js +31 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseAND.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseNOT.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/bitwiseXOR.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/divide.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/equal.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/exponentiate.js +74 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/index.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/leftShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/lessThan.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/multiply.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/remainder.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/sameValue.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/sameValueZero.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/signedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/subtract.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/toString.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/unaryMinus.js +17 -0
- package/slack-bot/node_modules/es-abstract/2025/Number/unsignedRightShift.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/NumberBitwiseOp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/NumberToBigInt.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/NumericToRawBytes.js +65 -0
- package/slack-bot/node_modules/es-abstract/2025/ObjectDefineProperties.js +33 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryCreateFromConstructor.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryDefineOwnProperty.js +54 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryGetOwnProperty.js +41 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryGetPrototypeOf.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryHasInstance.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryHasProperty.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryObjectCreate.js +56 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinarySetPrototypeOf.js +50 -0
- package/slack-bot/node_modules/es-abstract/2025/OrdinaryToPrimitive.js +36 -0
- package/slack-bot/node_modules/es-abstract/2025/ParseHexOctet.js +40 -0
- package/slack-bot/node_modules/es-abstract/2025/PromiseResolve.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/QuoteJSONString.js +52 -0
- package/slack-bot/node_modules/es-abstract/2025/RawBytesToNumeric.js +72 -0
- package/slack-bot/node_modules/es-abstract/2025/RegExpCreate.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/RegExpExec.js +29 -0
- package/slack-bot/node_modules/es-abstract/2025/RegExpHasFlag.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/RequireObjectCoercible.js +3 -0
- package/slack-bot/node_modules/es-abstract/2025/ReturnCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/SameType.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2025/SameValueNonNumber.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/SameValueZero.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/Set.js +45 -0
- package/slack-bot/node_modules/es-abstract/2025/SetDataHas.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/SetDataIndex.js +32 -0
- package/slack-bot/node_modules/es-abstract/2025/SetDataSize.js +30 -0
- package/slack-bot/node_modules/es-abstract/2025/SetFunctionLength.js +28 -0
- package/slack-bot/node_modules/es-abstract/2025/SetFunctionName.js +40 -0
- package/slack-bot/node_modules/es-abstract/2025/SetIntegrityLevel.js +57 -0
- package/slack-bot/node_modules/es-abstract/2025/SetTypedArrayFromArrayLike.js +64 -0
- package/slack-bot/node_modules/es-abstract/2025/SetTypedArrayFromTypedArray.js +133 -0
- package/slack-bot/node_modules/es-abstract/2025/SetValueInBuffer.js +92 -0
- package/slack-bot/node_modules/es-abstract/2025/SetterThatIgnoresPrototypeProperties.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/SortIndexedProperties.js +49 -0
- package/slack-bot/node_modules/es-abstract/2025/SpeciesConstructor.js +32 -0
- package/slack-bot/node_modules/es-abstract/2025/StringCreate.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/StringGetOwnProperty.js +46 -0
- package/slack-bot/node_modules/es-abstract/2025/StringIndexOf.js +36 -0
- package/slack-bot/node_modules/es-abstract/2025/StringLastIndexOf.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/StringPad.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/StringPaddingBuiltinsImpl.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/StringToBigInt.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/StringToCodePoints.js +22 -0
- package/slack-bot/node_modules/es-abstract/2025/StringToNumber.js +42 -0
- package/slack-bot/node_modules/es-abstract/2025/SymbolDescriptiveString.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/SystemTimeZoneIdentifier.js +18 -0
- package/slack-bot/node_modules/es-abstract/2025/TestIntegrityLevel.js +40 -0
- package/slack-bot/node_modules/es-abstract/2025/ThisBigIntValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/ThisBooleanValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2025/ThisNumberValue.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/ThisStringValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/2025/ThisSymbolValue.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/ThrowCompletion.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/2025/TimeString.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/TimeZoneString.js +41 -0
- package/slack-bot/node_modules/es-abstract/2025/ToBigInt.js +51 -0
- package/slack-bot/node_modules/es-abstract/2025/ToBigInt64.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/ToBigUint64.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/2025/ToDateString.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/ToIndex.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/ToInt16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/ToInt32.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/ToInt8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/ToIntegerOrInfinity.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/ToLength.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/ToNumber.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/ToNumeric.js +20 -0
- package/slack-bot/node_modules/es-abstract/2025/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/2025/ToPrimitive.js +12 -0
- package/slack-bot/node_modules/es-abstract/2025/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/2025/ToPropertyKey.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/ToString.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/ToUint16.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/ToUint32.js +21 -0
- package/slack-bot/node_modules/es-abstract/2025/ToUint8.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/ToUint8Clamp.js +26 -0
- package/slack-bot/node_modules/es-abstract/2025/ToZeroPaddedDecimalString.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/TrimString.js +27 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayByteLength.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayCreateFromConstructor.js +52 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayCreateSameType.js +35 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayElementSize.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayElementType.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayGetElement.js +37 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArrayLength.js +51 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArraySetElement.js +42 -0
- package/slack-bot/node_modules/es-abstract/2025/TypedArraySpeciesCreate.js +37 -0
- package/slack-bot/node_modules/es-abstract/2025/UTF16EncodeCodePoint.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/UTF16SurrogatePairToCodePoint.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/UnicodeEscape.js +25 -0
- package/slack-bot/node_modules/es-abstract/2025/UpdateModifiers.js +77 -0
- package/slack-bot/node_modules/es-abstract/2025/ValidateAndApplyPropertyDescriptor.js +171 -0
- package/slack-bot/node_modules/es-abstract/2025/ValidateAtomicAccess.js +43 -0
- package/slack-bot/node_modules/es-abstract/2025/ValidateAtomicAccessOnIntegerTypedArray.js +19 -0
- package/slack-bot/node_modules/es-abstract/2025/ValidateIntegerTypedArray.js +31 -0
- package/slack-bot/node_modules/es-abstract/2025/ValidateTypedArray.js +32 -0
- package/slack-bot/node_modules/es-abstract/2025/WeakRefDeref.js +23 -0
- package/slack-bot/node_modules/es-abstract/2025/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/2025/WordCharacters.js +47 -0
- package/slack-bot/node_modules/es-abstract/2025/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/2025/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/clamp.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/floor.js +14 -0
- package/slack-bot/node_modules/es-abstract/2025/max.js +5 -0
- package/slack-bot/node_modules/es-abstract/2025/min.js +5 -0
- package/slack-bot/node_modules/es-abstract/2025/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/2025/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/2025/substring.js +15 -0
- package/slack-bot/node_modules/es-abstract/2025/tables/typed-array-objects.js +38 -0
- package/slack-bot/node_modules/es-abstract/2025/truncate.js +15 -0
- package/slack-bot/node_modules/es-abstract/5/AbstractEqualityComparison.js +38 -0
- package/slack-bot/node_modules/es-abstract/5/AbstractRelationalComparison.js +62 -0
- package/slack-bot/node_modules/es-abstract/5/Canonicalize.js +38 -0
- package/slack-bot/node_modules/es-abstract/5/CheckObjectCoercible.js +9 -0
- package/slack-bot/node_modules/es-abstract/5/DateFromTime.js +52 -0
- package/slack-bot/node_modules/es-abstract/5/Day.js +11 -0
- package/slack-bot/node_modules/es-abstract/5/DayFromYear.js +10 -0
- package/slack-bot/node_modules/es-abstract/5/DayWithinYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/5/DaysInYear.js +18 -0
- package/slack-bot/node_modules/es-abstract/5/FromPropertyDescriptor.js +38 -0
- package/slack-bot/node_modules/es-abstract/5/HourFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/5/InLeapYear.js +19 -0
- package/slack-bot/node_modules/es-abstract/5/IsAccessorDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/5/IsCallable.js +5 -0
- package/slack-bot/node_modules/es-abstract/5/IsDataDescriptor.js +25 -0
- package/slack-bot/node_modules/es-abstract/5/IsGenericDescriptor.js +26 -0
- package/slack-bot/node_modules/es-abstract/5/IsPropertyDescriptor.js +11 -0
- package/slack-bot/node_modules/es-abstract/5/MakeDate.js +14 -0
- package/slack-bot/node_modules/es-abstract/5/MakeDay.js +33 -0
- package/slack-bot/node_modules/es-abstract/5/MakeTime.js +24 -0
- package/slack-bot/node_modules/es-abstract/5/MinFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/5/MonthFromTime.js +51 -0
- package/slack-bot/node_modules/es-abstract/5/SameValue.js +13 -0
- package/slack-bot/node_modules/es-abstract/5/SecFromTime.js +14 -0
- package/slack-bot/node_modules/es-abstract/5/StrictEqualityComparison.js +15 -0
- package/slack-bot/node_modules/es-abstract/5/TimeClip.js +20 -0
- package/slack-bot/node_modules/es-abstract/5/TimeFromYear.js +11 -0
- package/slack-bot/node_modules/es-abstract/5/TimeWithinDay.js +12 -0
- package/slack-bot/node_modules/es-abstract/5/ToBoolean.js +5 -0
- package/slack-bot/node_modules/es-abstract/5/ToInt32.js +9 -0
- package/slack-bot/node_modules/es-abstract/5/ToInteger.js +18 -0
- package/slack-bot/node_modules/es-abstract/5/ToNumber.js +34 -0
- package/slack-bot/node_modules/es-abstract/5/ToObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/5/ToPrimitive.js +5 -0
- package/slack-bot/node_modules/es-abstract/5/ToPropertyDescriptor.js +50 -0
- package/slack-bot/node_modules/es-abstract/5/ToString.js +12 -0
- package/slack-bot/node_modules/es-abstract/5/ToUint16.js +19 -0
- package/slack-bot/node_modules/es-abstract/5/ToUint32.js +9 -0
- package/slack-bot/node_modules/es-abstract/5/Type.js +26 -0
- package/slack-bot/node_modules/es-abstract/5/WeekDay.js +10 -0
- package/slack-bot/node_modules/es-abstract/5/YearFromTime.js +16 -0
- package/slack-bot/node_modules/es-abstract/5/abs.js +9 -0
- package/slack-bot/node_modules/es-abstract/5/floor.js +11 -0
- package/slack-bot/node_modules/es-abstract/5/modulo.js +9 -0
- package/slack-bot/node_modules/es-abstract/5/msFromTime.js +11 -0
- package/slack-bot/node_modules/es-abstract/CHANGELOG.md +962 -0
- package/slack-bot/node_modules/es-abstract/GetIntrinsic.js +5 -0
- package/slack-bot/node_modules/es-abstract/LICENSE +21 -0
- package/slack-bot/node_modules/es-abstract/README.md +43 -0
- package/slack-bot/node_modules/es-abstract/es2015.js +142 -0
- package/slack-bot/node_modules/es-abstract/es2016.js +149 -0
- package/slack-bot/node_modules/es-abstract/es2017.js +157 -0
- package/slack-bot/node_modules/es-abstract/es2018.js +169 -0
- package/slack-bot/node_modules/es-abstract/es2019.js +173 -0
- package/slack-bot/node_modules/es-abstract/es2020.js +197 -0
- package/slack-bot/node_modules/es-abstract/es2021.js +211 -0
- package/slack-bot/node_modules/es-abstract/es2022.js +224 -0
- package/slack-bot/node_modules/es-abstract/es2023.js +236 -0
- package/slack-bot/node_modules/es-abstract/es2024.js +255 -0
- package/slack-bot/node_modules/es-abstract/es2025.js +272 -0
- package/slack-bot/node_modules/es-abstract/es5.js +52 -0
- package/slack-bot/node_modules/es-abstract/es6.js +3 -0
- package/slack-bot/node_modules/es-abstract/es7.js +3 -0
- package/slack-bot/node_modules/es-abstract/eslint.config.mjs +129 -0
- package/slack-bot/node_modules/es-abstract/helpers/CharSet.js +130 -0
- package/slack-bot/node_modules/es-abstract/helpers/DefineOwnProperty.js +53 -0
- package/slack-bot/node_modules/es-abstract/helpers/IsArray.js +12 -0
- package/slack-bot/node_modules/es-abstract/helpers/OwnPropertyKeys.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/assertRecord.js +32 -0
- package/slack-bot/node_modules/es-abstract/helpers/assign.js +22 -0
- package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat16.js +47 -0
- package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat32.js +36 -0
- package/slack-bot/node_modules/es-abstract/helpers/bytesAsFloat64.js +42 -0
- package/slack-bot/node_modules/es-abstract/helpers/bytesAsInteger.js +32 -0
- package/slack-bot/node_modules/es-abstract/helpers/callBind.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/callBound.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/caseFolding.json +1430 -0
- package/slack-bot/node_modules/es-abstract/helpers/defaultEndianness.js +21 -0
- package/slack-bot/node_modules/es-abstract/helpers/every.js +10 -0
- package/slack-bot/node_modules/es-abstract/helpers/forEach.js +7 -0
- package/slack-bot/node_modules/es-abstract/helpers/fractionToBinaryString.js +33 -0
- package/slack-bot/node_modules/es-abstract/helpers/fromPropertyDescriptor.js +27 -0
- package/slack-bot/node_modules/es-abstract/helpers/getInferredName.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/getIteratorMethod.js +50 -0
- package/slack-bot/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/getProto.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/getSymbolDescription.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/intToBinaryString.js +21 -0
- package/slack-bot/node_modules/es-abstract/helpers/integerToNBytes.js +28 -0
- package/slack-bot/node_modules/es-abstract/helpers/isAbstractClosure.js +9 -0
- package/slack-bot/node_modules/es-abstract/helpers/isByteValue.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isCodePoint.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isFinite.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js +10 -0
- package/slack-bot/node_modules/es-abstract/helpers/isInteger.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/isLeadingSurrogate.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isLineTerminator.js +7 -0
- package/slack-bot/node_modules/es-abstract/helpers/isNaN.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isNegativeZero.js +6 -0
- package/slack-bot/node_modules/es-abstract/helpers/isObject.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isPrefixOf.js +13 -0
- package/slack-bot/node_modules/es-abstract/helpers/isPrimitive.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isPropertyKey.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isSamePropertyDescriptor.js +20 -0
- package/slack-bot/node_modules/es-abstract/helpers/isSameType.js +16 -0
- package/slack-bot/node_modules/es-abstract/helpers/isStringOrHole.js +9 -0
- package/slack-bot/node_modules/es-abstract/helpers/isStringOrUndefined.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/isTrailingSurrogate.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/maxSafeInteger.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/maxValue.js +3 -0
- package/slack-bot/node_modules/es-abstract/helpers/mod.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/modBigInt.js +6 -0
- package/slack-bot/node_modules/es-abstract/helpers/padTimeComponent.js +9 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/async-generator-request-record.js +13 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/data-view-with-buffer-witness-record.js +18 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/iterator-record-2023.js +7 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/iterator-record.js +12 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/match-record.js +18 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/promise-capability-record.js +16 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/property-descriptor.js +36 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/regexp-record.js +23 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/set-record.js +21 -0
- package/slack-bot/node_modules/es-abstract/helpers/records/typed-array-with-buffer-witness-record.js +18 -0
- package/slack-bot/node_modules/es-abstract/helpers/reduce.js +9 -0
- package/slack-bot/node_modules/es-abstract/helpers/regexTester.js +5 -0
- package/slack-bot/node_modules/es-abstract/helpers/setProto.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/sign.js +4 -0
- package/slack-bot/node_modules/es-abstract/helpers/some.js +10 -0
- package/slack-bot/node_modules/es-abstract/helpers/timeConstants.js +19 -0
- package/slack-bot/node_modules/es-abstract/helpers/timeValue.js +7 -0
- package/slack-bot/node_modules/es-abstract/helpers/typedArrayConstructors.js +23 -0
- package/slack-bot/node_modules/es-abstract/helpers/valueToFloat16Bytes.js +73 -0
- package/slack-bot/node_modules/es-abstract/helpers/valueToFloat32Bytes.js +67 -0
- package/slack-bot/node_modules/es-abstract/helpers/valueToFloat64Bytes.js +83 -0
- package/slack-bot/node_modules/es-abstract/index.js +38 -0
- package/slack-bot/node_modules/es-abstract/operations/2015.js +744 -0
- package/slack-bot/node_modules/es-abstract/operations/2016.js +813 -0
- package/slack-bot/node_modules/es-abstract/operations/2017.js +954 -0
- package/slack-bot/node_modules/es-abstract/operations/2018.js +1033 -0
- package/slack-bot/node_modules/es-abstract/operations/2019.js +1048 -0
- package/slack-bot/node_modules/es-abstract/operations/2020.js +1228 -0
- package/slack-bot/node_modules/es-abstract/operations/2021.js +1282 -0
- package/slack-bot/node_modules/es-abstract/operations/2022.js +1372 -0
- package/slack-bot/node_modules/es-abstract/operations/2023.js +1441 -0
- package/slack-bot/node_modules/es-abstract/operations/2024.js +1537 -0
- package/slack-bot/node_modules/es-abstract/operations/2025.js +1603 -0
- package/slack-bot/node_modules/es-abstract/operations/es5.js +50 -0
- package/slack-bot/node_modules/es-abstract/package.json +188 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/.eslintrc +10 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/LICENSE +21 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/README.md +3 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/index.js +30 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/package.json +30 -0
- package/slack-bot/node_modules/es-array-method-boxes-properly/test/index.js +11 -0
- package/slack-bot/node_modules/es-define-property/.eslintrc +13 -0
- package/slack-bot/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-define-property/.nycrc +9 -0
- package/slack-bot/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/slack-bot/node_modules/es-define-property/LICENSE +21 -0
- package/slack-bot/node_modules/es-define-property/README.md +49 -0
- package/slack-bot/node_modules/es-define-property/index.d.ts +3 -0
- package/slack-bot/node_modules/es-define-property/index.js +14 -0
- package/slack-bot/node_modules/es-define-property/package.json +81 -0
- package/slack-bot/node_modules/es-define-property/test/index.js +56 -0
- package/slack-bot/node_modules/es-define-property/tsconfig.json +10 -0
- package/slack-bot/node_modules/es-errors/.eslintrc +5 -0
- package/slack-bot/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-errors/CHANGELOG.md +40 -0
- package/slack-bot/node_modules/es-errors/LICENSE +21 -0
- package/slack-bot/node_modules/es-errors/README.md +55 -0
- package/slack-bot/node_modules/es-errors/eval.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/eval.js +4 -0
- package/slack-bot/node_modules/es-errors/index.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/index.js +4 -0
- package/slack-bot/node_modules/es-errors/package.json +80 -0
- package/slack-bot/node_modules/es-errors/range.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/range.js +4 -0
- package/slack-bot/node_modules/es-errors/ref.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/ref.js +4 -0
- package/slack-bot/node_modules/es-errors/syntax.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/syntax.js +4 -0
- package/slack-bot/node_modules/es-errors/test/index.js +19 -0
- package/slack-bot/node_modules/es-errors/tsconfig.json +49 -0
- package/slack-bot/node_modules/es-errors/type.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/type.js +4 -0
- package/slack-bot/node_modules/es-errors/uri.d.ts +3 -0
- package/slack-bot/node_modules/es-errors/uri.js +4 -0
- package/slack-bot/node_modules/es-get-iterator/.eslintrc +32 -0
- package/slack-bot/node_modules/es-get-iterator/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-get-iterator/.nycrc +9 -0
- package/slack-bot/node_modules/es-get-iterator/CHANGELOG.md +105 -0
- package/slack-bot/node_modules/es-get-iterator/LICENSE +21 -0
- package/slack-bot/node_modules/es-get-iterator/README.md +89 -0
- package/slack-bot/node_modules/es-get-iterator/index.js +189 -0
- package/slack-bot/node_modules/es-get-iterator/node.js +12 -0
- package/slack-bot/node_modules/es-get-iterator/node.mjs +11 -0
- package/slack-bot/node_modules/es-get-iterator/package.json +102 -0
- package/slack-bot/node_modules/es-get-iterator/test/core-js.js +5 -0
- package/slack-bot/node_modules/es-get-iterator/test/es6-shim.js +11 -0
- package/slack-bot/node_modules/es-get-iterator/test/index.js +178 -0
- package/slack-bot/node_modules/es-get-iterator/test/node.js +3 -0
- package/slack-bot/node_modules/es-get-iterator/test/node.mjs +10 -0
- package/slack-bot/node_modules/es-object-atoms/.eslintrc +16 -0
- package/slack-bot/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/slack-bot/node_modules/es-object-atoms/LICENSE +21 -0
- package/slack-bot/node_modules/es-object-atoms/README.md +63 -0
- package/slack-bot/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/slack-bot/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/slack-bot/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/slack-bot/node_modules/es-object-atoms/ToObject.js +10 -0
- package/slack-bot/node_modules/es-object-atoms/index.d.ts +3 -0
- package/slack-bot/node_modules/es-object-atoms/index.js +4 -0
- package/slack-bot/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/slack-bot/node_modules/es-object-atoms/isObject.js +6 -0
- package/slack-bot/node_modules/es-object-atoms/package.json +80 -0
- package/slack-bot/node_modules/es-object-atoms/test/index.js +38 -0
- package/slack-bot/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/slack-bot/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/slack-bot/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/slack-bot/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/slack-bot/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/slack-bot/node_modules/es-set-tostringtag/README.md +53 -0
- package/slack-bot/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/slack-bot/node_modules/es-set-tostringtag/index.js +35 -0
- package/slack-bot/node_modules/es-set-tostringtag/package.json +78 -0
- package/slack-bot/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/slack-bot/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/slack-bot/node_modules/es-to-primitive/.editorconfig +20 -0
- package/slack-bot/node_modules/es-to-primitive/.eslintignore +1 -0
- package/slack-bot/node_modules/es-to-primitive/.eslintrc +20 -0
- package/slack-bot/node_modules/es-to-primitive/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/es-to-primitive/.nycrc +9 -0
- package/slack-bot/node_modules/es-to-primitive/CHANGELOG.md +101 -0
- package/slack-bot/node_modules/es-to-primitive/LICENSE +22 -0
- package/slack-bot/node_modules/es-to-primitive/README.md +52 -0
- package/slack-bot/node_modules/es-to-primitive/es2015.d.ts +5 -0
- package/slack-bot/node_modules/es-to-primitive/es2015.js +82 -0
- package/slack-bot/node_modules/es-to-primitive/es5.d.ts +3 -0
- package/slack-bot/node_modules/es-to-primitive/es5.js +52 -0
- package/slack-bot/node_modules/es-to-primitive/es6.d.ts +3 -0
- package/slack-bot/node_modules/es-to-primitive/es6.js +4 -0
- package/slack-bot/node_modules/es-to-primitive/helpers/isPrimitive.js +6 -0
- package/slack-bot/node_modules/es-to-primitive/index.d.ts +11 -0
- package/slack-bot/node_modules/es-to-primitive/index.js +21 -0
- package/slack-bot/node_modules/es-to-primitive/package.json +97 -0
- package/slack-bot/node_modules/es-to-primitive/test/es2015.js +140 -0
- package/slack-bot/node_modules/es-to-primitive/test/es5.js +98 -0
- package/slack-bot/node_modules/es-to-primitive/test/es6.js +140 -0
- package/slack-bot/node_modules/es-to-primitive/test/index.js +20 -0
- package/slack-bot/node_modules/es-to-primitive/tsconfig.json +9 -0
- package/slack-bot/node_modules/escape-html/LICENSE +24 -0
- package/slack-bot/node_modules/escape-html/Readme.md +43 -0
- package/slack-bot/node_modules/escape-html/index.js +78 -0
- package/slack-bot/node_modules/escape-html/package.json +24 -0
- package/slack-bot/node_modules/etag/HISTORY.md +83 -0
- package/slack-bot/node_modules/etag/LICENSE +22 -0
- package/slack-bot/node_modules/etag/README.md +159 -0
- package/slack-bot/node_modules/etag/index.js +131 -0
- package/slack-bot/node_modules/etag/package.json +47 -0
- package/slack-bot/node_modules/eventemitter3/LICENSE +21 -0
- package/slack-bot/node_modules/eventemitter3/README.md +85 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.js +355 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.min.js +1 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.esm.min.js.map +1 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.js +363 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.min.js +1 -0
- package/slack-bot/node_modules/eventemitter3/dist/eventemitter3.umd.min.js.map +1 -0
- package/slack-bot/node_modules/eventemitter3/index.d.ts +135 -0
- package/slack-bot/node_modules/eventemitter3/index.js +336 -0
- package/slack-bot/node_modules/eventemitter3/index.mjs +4 -0
- package/slack-bot/node_modules/eventemitter3/package.json +62 -0
- package/slack-bot/node_modules/express/History.md +3667 -0
- package/slack-bot/node_modules/express/LICENSE +24 -0
- package/slack-bot/node_modules/express/Readme.md +260 -0
- package/slack-bot/node_modules/express/index.js +11 -0
- package/slack-bot/node_modules/express/lib/application.js +661 -0
- package/slack-bot/node_modules/express/lib/express.js +116 -0
- package/slack-bot/node_modules/express/lib/middleware/init.js +43 -0
- package/slack-bot/node_modules/express/lib/middleware/query.js +47 -0
- package/slack-bot/node_modules/express/lib/request.js +525 -0
- package/slack-bot/node_modules/express/lib/response.js +1179 -0
- package/slack-bot/node_modules/express/lib/router/index.js +673 -0
- package/slack-bot/node_modules/express/lib/router/layer.js +181 -0
- package/slack-bot/node_modules/express/lib/router/route.js +230 -0
- package/slack-bot/node_modules/express/lib/utils.js +303 -0
- package/slack-bot/node_modules/express/lib/view.js +182 -0
- package/slack-bot/node_modules/express/node_modules/path-to-regexp/LICENSE +21 -0
- package/slack-bot/node_modules/express/node_modules/path-to-regexp/Readme.md +35 -0
- package/slack-bot/node_modules/express/node_modules/path-to-regexp/index.js +156 -0
- package/slack-bot/node_modules/express/node_modules/path-to-regexp/package.json +30 -0
- package/slack-bot/node_modules/express/package.json +102 -0
- package/slack-bot/node_modules/finalhandler/HISTORY.md +216 -0
- package/slack-bot/node_modules/finalhandler/LICENSE +22 -0
- package/slack-bot/node_modules/finalhandler/README.md +147 -0
- package/slack-bot/node_modules/finalhandler/SECURITY.md +25 -0
- package/slack-bot/node_modules/finalhandler/index.js +341 -0
- package/slack-bot/node_modules/finalhandler/package.json +47 -0
- package/slack-bot/node_modules/finity/CODE_OF_CONDUCT.md +74 -0
- package/slack-bot/node_modules/finity/LICENSE +21 -0
- package/slack-bot/node_modules/finity/README.md +547 -0
- package/slack-bot/node_modules/finity/ROADMAP.md +23 -0
- package/slack-bot/node_modules/finity/index.d.ts +86 -0
- package/slack-bot/node_modules/finity/lib/Finity.js +22 -0
- package/slack-bot/node_modules/finity/lib/configuration/AsyncActionConfigurator.js +48 -0
- package/slack-bot/node_modules/finity/lib/configuration/BaseConfigurator.js +51 -0
- package/slack-bot/node_modules/finity/lib/configuration/GlobalConfigurator.js +63 -0
- package/slack-bot/node_modules/finity/lib/configuration/StateConfigurator.js +93 -0
- package/slack-bot/node_modules/finity/lib/configuration/StateMachineConfigurator.js +73 -0
- package/slack-bot/node_modules/finity/lib/configuration/TimerConfigurator.js +32 -0
- package/slack-bot/node_modules/finity/lib/configuration/TransitionConfigurator.js +51 -0
- package/slack-bot/node_modules/finity/lib/configuration/TriggerConfigurator.js +60 -0
- package/slack-bot/node_modules/finity/lib/configuration/delegateToAncestor.js +22 -0
- package/slack-bot/node_modules/finity/lib/configuration/index.js +42 -0
- package/slack-bot/node_modules/finity/lib/core/HierarchicalStateMachine.js +101 -0
- package/slack-bot/node_modules/finity/lib/core/StateMachine.js +293 -0
- package/slack-bot/node_modules/finity/lib/core/TaskScheduler.js +46 -0
- package/slack-bot/node_modules/finity/lib/index.js +10 -0
- package/slack-bot/node_modules/finity/lib/utils/invokeEach.js +13 -0
- package/slack-bot/node_modules/finity/lib/utils/mapValues.js +12 -0
- package/slack-bot/node_modules/finity/lib/utils/merge.js +10 -0
- package/slack-bot/node_modules/finity/package.json +68 -0
- package/slack-bot/node_modules/finity/umd/Finity.js +301 -0
- package/slack-bot/node_modules/finity/umd/Finity.min.js +1 -0
- package/slack-bot/node_modules/follow-redirects/LICENSE +18 -0
- package/slack-bot/node_modules/follow-redirects/README.md +155 -0
- package/slack-bot/node_modules/follow-redirects/debug.js +15 -0
- package/slack-bot/node_modules/follow-redirects/http.js +1 -0
- package/slack-bot/node_modules/follow-redirects/https.js +1 -0
- package/slack-bot/node_modules/follow-redirects/index.js +686 -0
- package/slack-bot/node_modules/follow-redirects/package.json +58 -0
- package/slack-bot/node_modules/for-each/.editorconfig +20 -0
- package/slack-bot/node_modules/for-each/.eslintrc +30 -0
- package/slack-bot/node_modules/for-each/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/for-each/.github/SECURITY.md +3 -0
- package/slack-bot/node_modules/for-each/.nycrc +8 -0
- package/slack-bot/node_modules/for-each/CHANGELOG.md +107 -0
- package/slack-bot/node_modules/for-each/LICENSE +22 -0
- package/slack-bot/node_modules/for-each/README.md +39 -0
- package/slack-bot/node_modules/for-each/index.d.ts +35 -0
- package/slack-bot/node_modules/for-each/index.js +69 -0
- package/slack-bot/node_modules/for-each/package.json +76 -0
- package/slack-bot/node_modules/for-each/test/test.js +224 -0
- package/slack-bot/node_modules/for-each/tsconfig.json +8 -0
- package/slack-bot/node_modules/form-data/CHANGELOG.md +651 -0
- package/slack-bot/node_modules/form-data/License +19 -0
- package/slack-bot/node_modules/form-data/README.md +350 -0
- package/slack-bot/node_modules/form-data/index.d.ts +51 -0
- package/slack-bot/node_modules/form-data/lib/browser.js +4 -0
- package/slack-bot/node_modules/form-data/lib/form_data.js +509 -0
- package/slack-bot/node_modules/form-data/lib/populate.js +10 -0
- package/slack-bot/node_modules/form-data/package.json +83 -0
- package/slack-bot/node_modules/forwarded/HISTORY.md +21 -0
- package/slack-bot/node_modules/forwarded/LICENSE +22 -0
- package/slack-bot/node_modules/forwarded/README.md +57 -0
- package/slack-bot/node_modules/forwarded/index.js +90 -0
- package/slack-bot/node_modules/forwarded/package.json +45 -0
- package/slack-bot/node_modules/fresh/HISTORY.md +70 -0
- package/slack-bot/node_modules/fresh/LICENSE +23 -0
- package/slack-bot/node_modules/fresh/README.md +119 -0
- package/slack-bot/node_modules/fresh/index.js +137 -0
- package/slack-bot/node_modules/fresh/package.json +46 -0
- package/slack-bot/node_modules/function-bind/.eslintrc +21 -0
- package/slack-bot/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/slack-bot/node_modules/function-bind/.nycrc +13 -0
- package/slack-bot/node_modules/function-bind/CHANGELOG.md +136 -0
- package/slack-bot/node_modules/function-bind/LICENSE +20 -0
- package/slack-bot/node_modules/function-bind/README.md +46 -0
- package/slack-bot/node_modules/function-bind/implementation.js +84 -0
- package/slack-bot/node_modules/function-bind/index.js +5 -0
- package/slack-bot/node_modules/function-bind/package.json +87 -0
- package/slack-bot/node_modules/function-bind/test/.eslintrc +9 -0
- package/slack-bot/node_modules/function-bind/test/index.js +252 -0
- package/slack-bot/node_modules/function.prototype.name/.editorconfig +24 -0
- package/slack-bot/node_modules/function.prototype.name/.eslintrc +15 -0
- package/slack-bot/node_modules/function.prototype.name/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/function.prototype.name/.nycrc +9 -0
- package/slack-bot/node_modules/function.prototype.name/CHANGELOG.md +141 -0
- package/slack-bot/node_modules/function.prototype.name/LICENSE +21 -0
- package/slack-bot/node_modules/function.prototype.name/README.md +55 -0
- package/slack-bot/node_modules/function.prototype.name/auto.js +3 -0
- package/slack-bot/node_modules/function.prototype.name/helpers/functionsHaveNames.js +5 -0
- package/slack-bot/node_modules/function.prototype.name/implementation.js +72 -0
- package/slack-bot/node_modules/function.prototype.name/index.js +18 -0
- package/slack-bot/node_modules/function.prototype.name/package.json +101 -0
- package/slack-bot/node_modules/function.prototype.name/polyfill.js +7 -0
- package/slack-bot/node_modules/function.prototype.name/shim.js +35 -0
- package/slack-bot/node_modules/function.prototype.name/test/implementation.js +20 -0
- package/slack-bot/node_modules/function.prototype.name/test/index.js +23 -0
- package/slack-bot/node_modules/function.prototype.name/test/shimmed.js +21 -0
- package/slack-bot/node_modules/function.prototype.name/test/tests.js +104 -0
- package/slack-bot/node_modules/function.prototype.name/test/uglified.js +17 -0
- package/slack-bot/node_modules/functions-have-names/.editorconfig +20 -0
- package/slack-bot/node_modules/functions-have-names/.eslintrc +19 -0
- package/slack-bot/node_modules/functions-have-names/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/functions-have-names/.nycrc +9 -0
- package/slack-bot/node_modules/functions-have-names/CHANGELOG.md +89 -0
- package/slack-bot/node_modules/functions-have-names/LICENSE +21 -0
- package/slack-bot/node_modules/functions-have-names/README.md +40 -0
- package/slack-bot/node_modules/functions-have-names/index.js +31 -0
- package/slack-bot/node_modules/functions-have-names/package.json +55 -0
- package/slack-bot/node_modules/functions-have-names/test/index.js +65 -0
- package/slack-bot/node_modules/generator-function/.eslintrc +16 -0
- package/slack-bot/node_modules/generator-function/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/generator-function/.nycrc +9 -0
- package/slack-bot/node_modules/generator-function/CHANGELOG.md +27 -0
- package/slack-bot/node_modules/generator-function/LICENSE.md +7 -0
- package/slack-bot/node_modules/generator-function/README.md +51 -0
- package/slack-bot/node_modules/generator-function/index.d.mts +3 -0
- package/slack-bot/node_modules/generator-function/index.d.ts +3 -0
- package/slack-bot/node_modules/generator-function/index.js +8 -0
- package/slack-bot/node_modules/generator-function/index.mjs +4 -0
- package/slack-bot/node_modules/generator-function/legacy.js +18 -0
- package/slack-bot/node_modules/generator-function/package.json +88 -0
- package/slack-bot/node_modules/generator-function/require.mjs +5 -0
- package/slack-bot/node_modules/generator-function/test/index.js +42 -0
- package/slack-bot/node_modules/generator-function/tsconfig.json +9 -0
- package/slack-bot/node_modules/get-intrinsic/.eslintrc +42 -0
- package/slack-bot/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/get-intrinsic/.nycrc +9 -0
- package/slack-bot/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/slack-bot/node_modules/get-intrinsic/LICENSE +21 -0
- package/slack-bot/node_modules/get-intrinsic/README.md +71 -0
- package/slack-bot/node_modules/get-intrinsic/index.js +378 -0
- package/slack-bot/node_modules/get-intrinsic/package.json +97 -0
- package/slack-bot/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/slack-bot/node_modules/get-proto/.eslintrc +10 -0
- package/slack-bot/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/get-proto/.nycrc +9 -0
- package/slack-bot/node_modules/get-proto/CHANGELOG.md +21 -0
- package/slack-bot/node_modules/get-proto/LICENSE +21 -0
- package/slack-bot/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/slack-bot/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/slack-bot/node_modules/get-proto/README.md +50 -0
- package/slack-bot/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/slack-bot/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/slack-bot/node_modules/get-proto/index.d.ts +5 -0
- package/slack-bot/node_modules/get-proto/index.js +27 -0
- package/slack-bot/node_modules/get-proto/package.json +81 -0
- package/slack-bot/node_modules/get-proto/test/index.js +68 -0
- package/slack-bot/node_modules/get-proto/tsconfig.json +9 -0
- package/slack-bot/node_modules/get-symbol-description/.eslintrc +14 -0
- package/slack-bot/node_modules/get-symbol-description/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/get-symbol-description/.nycrc +9 -0
- package/slack-bot/node_modules/get-symbol-description/CHANGELOG.md +61 -0
- package/slack-bot/node_modules/get-symbol-description/LICENSE +21 -0
- package/slack-bot/node_modules/get-symbol-description/README.md +43 -0
- package/slack-bot/node_modules/get-symbol-description/getInferredName.d.ts +5 -0
- package/slack-bot/node_modules/get-symbol-description/getInferredName.js +13 -0
- package/slack-bot/node_modules/get-symbol-description/index.d.ts +3 -0
- package/slack-bot/node_modules/get-symbol-description/index.js +49 -0
- package/slack-bot/node_modules/get-symbol-description/package.json +88 -0
- package/slack-bot/node_modules/get-symbol-description/test/index.js +74 -0
- package/slack-bot/node_modules/get-symbol-description/tsconfig.json +9 -0
- package/slack-bot/node_modules/globalthis/.eslintrc +18 -0
- package/slack-bot/node_modules/globalthis/.nycrc +10 -0
- package/slack-bot/node_modules/globalthis/CHANGELOG.md +109 -0
- package/slack-bot/node_modules/globalthis/LICENSE +21 -0
- package/slack-bot/node_modules/globalthis/README.md +70 -0
- package/slack-bot/node_modules/globalthis/auto.js +3 -0
- package/slack-bot/node_modules/globalthis/implementation.browser.js +11 -0
- package/slack-bot/node_modules/globalthis/implementation.js +3 -0
- package/slack-bot/node_modules/globalthis/index.js +19 -0
- package/slack-bot/node_modules/globalthis/package.json +99 -0
- package/slack-bot/node_modules/globalthis/polyfill.js +10 -0
- package/slack-bot/node_modules/globalthis/shim.js +29 -0
- package/slack-bot/node_modules/globalthis/test/implementation.js +11 -0
- package/slack-bot/node_modules/globalthis/test/index.js +11 -0
- package/slack-bot/node_modules/globalthis/test/native.js +26 -0
- package/slack-bot/node_modules/globalthis/test/shimmed.js +29 -0
- package/slack-bot/node_modules/globalthis/test/tests.js +36 -0
- package/slack-bot/node_modules/gopd/.eslintrc +16 -0
- package/slack-bot/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/gopd/CHANGELOG.md +45 -0
- package/slack-bot/node_modules/gopd/LICENSE +21 -0
- package/slack-bot/node_modules/gopd/README.md +40 -0
- package/slack-bot/node_modules/gopd/gOPD.d.ts +1 -0
- package/slack-bot/node_modules/gopd/gOPD.js +4 -0
- package/slack-bot/node_modules/gopd/index.d.ts +5 -0
- package/slack-bot/node_modules/gopd/index.js +15 -0
- package/slack-bot/node_modules/gopd/package.json +77 -0
- package/slack-bot/node_modules/gopd/test/index.js +36 -0
- package/slack-bot/node_modules/gopd/tsconfig.json +9 -0
- package/slack-bot/node_modules/has-bigints/.eslintrc +5 -0
- package/slack-bot/node_modules/has-bigints/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/has-bigints/.nycrc +9 -0
- package/slack-bot/node_modules/has-bigints/CHANGELOG.md +74 -0
- package/slack-bot/node_modules/has-bigints/LICENSE +21 -0
- package/slack-bot/node_modules/has-bigints/README.md +39 -0
- package/slack-bot/node_modules/has-bigints/index.d.ts +3 -0
- package/slack-bot/node_modules/has-bigints/index.js +11 -0
- package/slack-bot/node_modules/has-bigints/package.json +69 -0
- package/slack-bot/node_modules/has-bigints/test/index.js +44 -0
- package/slack-bot/node_modules/has-bigints/tsconfig.json +9 -0
- package/slack-bot/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/slack-bot/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/has-property-descriptors/.nycrc +9 -0
- package/slack-bot/node_modules/has-property-descriptors/CHANGELOG.md +35 -0
- package/slack-bot/node_modules/has-property-descriptors/LICENSE +21 -0
- package/slack-bot/node_modules/has-property-descriptors/README.md +43 -0
- package/slack-bot/node_modules/has-property-descriptors/index.js +22 -0
- package/slack-bot/node_modules/has-property-descriptors/package.json +77 -0
- package/slack-bot/node_modules/has-property-descriptors/test/index.js +57 -0
- package/slack-bot/node_modules/has-proto/.eslintrc +5 -0
- package/slack-bot/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/has-proto/CHANGELOG.md +61 -0
- package/slack-bot/node_modules/has-proto/LICENSE +21 -0
- package/slack-bot/node_modules/has-proto/README.md +57 -0
- package/slack-bot/node_modules/has-proto/accessor.d.ts +3 -0
- package/slack-bot/node_modules/has-proto/accessor.js +20 -0
- package/slack-bot/node_modules/has-proto/index.d.ts +3 -0
- package/slack-bot/node_modules/has-proto/index.js +15 -0
- package/slack-bot/node_modules/has-proto/mutator.d.ts +3 -0
- package/slack-bot/node_modules/has-proto/mutator.js +33 -0
- package/slack-bot/node_modules/has-proto/package.json +91 -0
- package/slack-bot/node_modules/has-proto/test/accessor.js +34 -0
- package/slack-bot/node_modules/has-proto/test/index.js +28 -0
- package/slack-bot/node_modules/has-proto/test/mutator.js +34 -0
- package/slack-bot/node_modules/has-proto/tsconfig.json +11 -0
- package/slack-bot/node_modules/has-symbols/.eslintrc +11 -0
- package/slack-bot/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/has-symbols/.nycrc +9 -0
- package/slack-bot/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/slack-bot/node_modules/has-symbols/LICENSE +21 -0
- package/slack-bot/node_modules/has-symbols/README.md +46 -0
- package/slack-bot/node_modules/has-symbols/index.d.ts +3 -0
- package/slack-bot/node_modules/has-symbols/index.js +14 -0
- package/slack-bot/node_modules/has-symbols/package.json +111 -0
- package/slack-bot/node_modules/has-symbols/shams.d.ts +3 -0
- package/slack-bot/node_modules/has-symbols/shams.js +45 -0
- package/slack-bot/node_modules/has-symbols/test/index.js +22 -0
- package/slack-bot/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/slack-bot/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/slack-bot/node_modules/has-symbols/test/tests.js +58 -0
- package/slack-bot/node_modules/has-symbols/tsconfig.json +10 -0
- package/slack-bot/node_modules/has-tostringtag/.eslintrc +5 -0
- package/slack-bot/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/has-tostringtag/.nycrc +13 -0
- package/slack-bot/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/slack-bot/node_modules/has-tostringtag/LICENSE +21 -0
- package/slack-bot/node_modules/has-tostringtag/README.md +46 -0
- package/slack-bot/node_modules/has-tostringtag/index.d.ts +3 -0
- package/slack-bot/node_modules/has-tostringtag/index.js +8 -0
- package/slack-bot/node_modules/has-tostringtag/package.json +108 -0
- package/slack-bot/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/slack-bot/node_modules/has-tostringtag/shams.js +8 -0
- package/slack-bot/node_modules/has-tostringtag/test/index.js +21 -0
- package/slack-bot/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/slack-bot/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/slack-bot/node_modules/has-tostringtag/test/tests.js +15 -0
- package/slack-bot/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/slack-bot/node_modules/hasown/.eslintrc +5 -0
- package/slack-bot/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/hasown/.nycrc +13 -0
- package/slack-bot/node_modules/hasown/CHANGELOG.md +40 -0
- package/slack-bot/node_modules/hasown/LICENSE +21 -0
- package/slack-bot/node_modules/hasown/README.md +40 -0
- package/slack-bot/node_modules/hasown/index.d.ts +3 -0
- package/slack-bot/node_modules/hasown/index.js +8 -0
- package/slack-bot/node_modules/hasown/package.json +92 -0
- package/slack-bot/node_modules/hasown/tsconfig.json +6 -0
- package/slack-bot/node_modules/http-errors/HISTORY.md +186 -0
- package/slack-bot/node_modules/http-errors/LICENSE +23 -0
- package/slack-bot/node_modules/http-errors/README.md +169 -0
- package/slack-bot/node_modules/http-errors/index.js +290 -0
- package/slack-bot/node_modules/http-errors/package.json +54 -0
- package/slack-bot/node_modules/iconv-lite/Changelog.md +162 -0
- package/slack-bot/node_modules/iconv-lite/LICENSE +21 -0
- package/slack-bot/node_modules/iconv-lite/README.md +156 -0
- package/slack-bot/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/slack-bot/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/slack-bot/node_modules/iconv-lite/encodings/index.js +22 -0
- package/slack-bot/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/slack-bot/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/slack-bot/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/slack-bot/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/slack-bot/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/slack-bot/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/slack-bot/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/slack-bot/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/slack-bot/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/slack-bot/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/slack-bot/node_modules/iconv-lite/lib/index.js +153 -0
- package/slack-bot/node_modules/iconv-lite/lib/streams.js +121 -0
- package/slack-bot/node_modules/iconv-lite/package.json +46 -0
- package/slack-bot/node_modules/inherits/LICENSE +16 -0
- package/slack-bot/node_modules/inherits/README.md +42 -0
- package/slack-bot/node_modules/inherits/inherits.js +9 -0
- package/slack-bot/node_modules/inherits/inherits_browser.js +27 -0
- package/slack-bot/node_modules/inherits/package.json +29 -0
- package/slack-bot/node_modules/internal-slot/.attw.json +5 -0
- package/slack-bot/node_modules/internal-slot/.editorconfig +20 -0
- package/slack-bot/node_modules/internal-slot/.eslintrc +11 -0
- package/slack-bot/node_modules/internal-slot/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/internal-slot/.nycrc +9 -0
- package/slack-bot/node_modules/internal-slot/CHANGELOG.md +114 -0
- package/slack-bot/node_modules/internal-slot/LICENSE +21 -0
- package/slack-bot/node_modules/internal-slot/README.md +58 -0
- package/slack-bot/node_modules/internal-slot/index.d.ts +12 -0
- package/slack-bot/node_modules/internal-slot/index.js +69 -0
- package/slack-bot/node_modules/internal-slot/package.json +79 -0
- package/slack-bot/node_modules/internal-slot/test/index.js +129 -0
- package/slack-bot/node_modules/internal-slot/tsconfig.json +9 -0
- package/slack-bot/node_modules/ipaddr.js/LICENSE +19 -0
- package/slack-bot/node_modules/ipaddr.js/README.md +233 -0
- package/slack-bot/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/slack-bot/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/slack-bot/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/slack-bot/node_modules/ipaddr.js/package.json +35 -0
- package/slack-bot/node_modules/is-arguments/.editorconfig +20 -0
- package/slack-bot/node_modules/is-arguments/.eslintrc +9 -0
- package/slack-bot/node_modules/is-arguments/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-arguments/.nycrc +9 -0
- package/slack-bot/node_modules/is-arguments/CHANGELOG.md +201 -0
- package/slack-bot/node_modules/is-arguments/LICENSE +20 -0
- package/slack-bot/node_modules/is-arguments/README.md +47 -0
- package/slack-bot/node_modules/is-arguments/index.d.ts +6 -0
- package/slack-bot/node_modules/is-arguments/index.js +44 -0
- package/slack-bot/node_modules/is-arguments/package.json +105 -0
- package/slack-bot/node_modules/is-arguments/test/index.js +47 -0
- package/slack-bot/node_modules/is-arguments/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-array-buffer/.eslintrc +17 -0
- package/slack-bot/node_modules/is-array-buffer/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-array-buffer/.nycrc +9 -0
- package/slack-bot/node_modules/is-array-buffer/CHANGELOG.md +91 -0
- package/slack-bot/node_modules/is-array-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/is-array-buffer/README.md +56 -0
- package/slack-bot/node_modules/is-array-buffer/index.d.ts +3 -0
- package/slack-bot/node_modules/is-array-buffer/index.js +43 -0
- package/slack-bot/node_modules/is-array-buffer/package.json +91 -0
- package/slack-bot/node_modules/is-array-buffer/test/index.js +49 -0
- package/slack-bot/node_modules/is-array-buffer/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-async-function/.eslintrc +9 -0
- package/slack-bot/node_modules/is-async-function/.nycrc +9 -0
- package/slack-bot/node_modules/is-async-function/CHANGELOG.md +189 -0
- package/slack-bot/node_modules/is-async-function/LICENSE +20 -0
- package/slack-bot/node_modules/is-async-function/README.md +41 -0
- package/slack-bot/node_modules/is-async-function/index.d.ts +9 -0
- package/slack-bot/node_modules/is-async-function/index.js +32 -0
- package/slack-bot/node_modules/is-async-function/package.json +110 -0
- package/slack-bot/node_modules/is-async-function/test/index.js +91 -0
- package/slack-bot/node_modules/is-async-function/test/uglified.js +9 -0
- package/slack-bot/node_modules/is-async-function/tsconfig.json +10 -0
- package/slack-bot/node_modules/is-bigint/.eslintrc +5 -0
- package/slack-bot/node_modules/is-bigint/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-bigint/.nycrc +9 -0
- package/slack-bot/node_modules/is-bigint/CHANGELOG.md +91 -0
- package/slack-bot/node_modules/is-bigint/LICENSE +21 -0
- package/slack-bot/node_modules/is-bigint/README.md +44 -0
- package/slack-bot/node_modules/is-bigint/index.d.ts +3 -0
- package/slack-bot/node_modules/is-bigint/index.js +41 -0
- package/slack-bot/node_modules/is-bigint/package.json +78 -0
- package/slack-bot/node_modules/is-bigint/test/index.js +65 -0
- package/slack-bot/node_modules/is-bigint/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-boolean-object/.editorconfig +22 -0
- package/slack-bot/node_modules/is-boolean-object/.eslintrc +12 -0
- package/slack-bot/node_modules/is-boolean-object/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-boolean-object/.nycrc +10 -0
- package/slack-bot/node_modules/is-boolean-object/CHANGELOG.md +143 -0
- package/slack-bot/node_modules/is-boolean-object/LICENSE +22 -0
- package/slack-bot/node_modules/is-boolean-object/README.md +57 -0
- package/slack-bot/node_modules/is-boolean-object/index.d.ts +3 -0
- package/slack-bot/node_modules/is-boolean-object/index.js +28 -0
- package/slack-bot/node_modules/is-boolean-object/package.json +100 -0
- package/slack-bot/node_modules/is-boolean-object/test/index.js +73 -0
- package/slack-bot/node_modules/is-boolean-object/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-callable/.editorconfig +31 -0
- package/slack-bot/node_modules/is-callable/.eslintrc +10 -0
- package/slack-bot/node_modules/is-callable/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-callable/.nycrc +9 -0
- package/slack-bot/node_modules/is-callable/CHANGELOG.md +158 -0
- package/slack-bot/node_modules/is-callable/LICENSE +22 -0
- package/slack-bot/node_modules/is-callable/README.md +83 -0
- package/slack-bot/node_modules/is-callable/index.js +101 -0
- package/slack-bot/node_modules/is-callable/package.json +106 -0
- package/slack-bot/node_modules/is-callable/test/index.js +244 -0
- package/slack-bot/node_modules/is-data-view/.editorconfig +20 -0
- package/slack-bot/node_modules/is-data-view/.eslintrc +17 -0
- package/slack-bot/node_modules/is-data-view/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-data-view/.nycrc +9 -0
- package/slack-bot/node_modules/is-data-view/CHANGELOG.md +35 -0
- package/slack-bot/node_modules/is-data-view/LICENSE +21 -0
- package/slack-bot/node_modules/is-data-view/README.md +69 -0
- package/slack-bot/node_modules/is-data-view/index.d.ts +3 -0
- package/slack-bot/node_modules/is-data-view/index.js +39 -0
- package/slack-bot/node_modules/is-data-view/package.json +100 -0
- package/slack-bot/node_modules/is-data-view/test/index.js +60 -0
- package/slack-bot/node_modules/is-data-view/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-date-object/.editorconfig +20 -0
- package/slack-bot/node_modules/is-date-object/.eslintrc +9 -0
- package/slack-bot/node_modules/is-date-object/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-date-object/.nycrc +10 -0
- package/slack-bot/node_modules/is-date-object/CHANGELOG.md +134 -0
- package/slack-bot/node_modules/is-date-object/LICENSE +22 -0
- package/slack-bot/node_modules/is-date-object/README.md +52 -0
- package/slack-bot/node_modules/is-date-object/index.d.ts +3 -0
- package/slack-bot/node_modules/is-date-object/index.js +27 -0
- package/slack-bot/node_modules/is-date-object/package.json +99 -0
- package/slack-bot/node_modules/is-date-object/test/index.js +38 -0
- package/slack-bot/node_modules/is-date-object/tsconfig.json +6 -0
- package/slack-bot/node_modules/is-electron/LICENSE +21 -0
- package/slack-bot/node_modules/is-electron/README.md +25 -0
- package/slack-bot/node_modules/is-electron/index.d.ts +2 -0
- package/slack-bot/node_modules/is-electron/index.js +21 -0
- package/slack-bot/node_modules/is-electron/package.json +34 -0
- package/slack-bot/node_modules/is-finalizationregistry/.eslintrc +9 -0
- package/slack-bot/node_modules/is-finalizationregistry/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-finalizationregistry/.nycrc +9 -0
- package/slack-bot/node_modules/is-finalizationregistry/CHANGELOG.md +78 -0
- package/slack-bot/node_modules/is-finalizationregistry/LICENSE +21 -0
- package/slack-bot/node_modules/is-finalizationregistry/README.md +54 -0
- package/slack-bot/node_modules/is-finalizationregistry/index.d.ts +3 -0
- package/slack-bot/node_modules/is-finalizationregistry/index.js +25 -0
- package/slack-bot/node_modules/is-finalizationregistry/package.json +82 -0
- package/slack-bot/node_modules/is-finalizationregistry/test/index.js +26 -0
- package/slack-bot/node_modules/is-finalizationregistry/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-generator-function/.eslintrc +9 -0
- package/slack-bot/node_modules/is-generator-function/.nvmrc +1 -0
- package/slack-bot/node_modules/is-generator-function/.nycrc +9 -0
- package/slack-bot/node_modules/is-generator-function/CHANGELOG.md +254 -0
- package/slack-bot/node_modules/is-generator-function/LICENSE +20 -0
- package/slack-bot/node_modules/is-generator-function/README.md +40 -0
- package/slack-bot/node_modules/is-generator-function/index.d.ts +3 -0
- package/slack-bot/node_modules/is-generator-function/index.js +31 -0
- package/slack-bot/node_modules/is-generator-function/package.json +107 -0
- package/slack-bot/node_modules/is-generator-function/test/corejs.js +6 -0
- package/slack-bot/node_modules/is-generator-function/test/index.js +80 -0
- package/slack-bot/node_modules/is-generator-function/test/uglified.js +9 -0
- package/slack-bot/node_modules/is-generator-function/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-map/.editorconfig +15 -0
- package/slack-bot/node_modules/is-map/.eslintrc +5 -0
- package/slack-bot/node_modules/is-map/.gitattributes +1 -0
- package/slack-bot/node_modules/is-map/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-map/.nycrc +9 -0
- package/slack-bot/node_modules/is-map/CHANGELOG.md +89 -0
- package/slack-bot/node_modules/is-map/LICENSE +21 -0
- package/slack-bot/node_modules/is-map/README.md +52 -0
- package/slack-bot/node_modules/is-map/index.d.ts +3 -0
- package/slack-bot/node_modules/is-map/index.js +47 -0
- package/slack-bot/node_modules/is-map/package.json +79 -0
- package/slack-bot/node_modules/is-map/test/index.js +59 -0
- package/slack-bot/node_modules/is-map/tsconfig.json +49 -0
- package/slack-bot/node_modules/is-negative-zero/.editorconfig +8 -0
- package/slack-bot/node_modules/is-negative-zero/.eslintrc +9 -0
- package/slack-bot/node_modules/is-negative-zero/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-negative-zero/.nycrc +9 -0
- package/slack-bot/node_modules/is-negative-zero/CHANGELOG.md +147 -0
- package/slack-bot/node_modules/is-negative-zero/LICENSE +20 -0
- package/slack-bot/node_modules/is-negative-zero/README.md +54 -0
- package/slack-bot/node_modules/is-negative-zero/index.d.ts +3 -0
- package/slack-bot/node_modules/is-negative-zero/index.js +7 -0
- package/slack-bot/node_modules/is-negative-zero/package.json +92 -0
- package/slack-bot/node_modules/is-negative-zero/test/index.js +29 -0
- package/slack-bot/node_modules/is-negative-zero/tsconfig.json +49 -0
- package/slack-bot/node_modules/is-number-object/.editorconfig +23 -0
- package/slack-bot/node_modules/is-number-object/.eslintrc +16 -0
- package/slack-bot/node_modules/is-number-object/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-number-object/.nycrc +10 -0
- package/slack-bot/node_modules/is-number-object/CHANGELOG.md +149 -0
- package/slack-bot/node_modules/is-number-object/LICENSE +22 -0
- package/slack-bot/node_modules/is-number-object/README.md +55 -0
- package/slack-bot/node_modules/is-number-object/index.d.ts +3 -0
- package/slack-bot/node_modules/is-number-object/index.js +29 -0
- package/slack-bot/node_modules/is-number-object/package.json +85 -0
- package/slack-bot/node_modules/is-number-object/test/index.js +40 -0
- package/slack-bot/node_modules/is-number-object/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-regex/.editorconfig +23 -0
- package/slack-bot/node_modules/is-regex/.eslintrc +10 -0
- package/slack-bot/node_modules/is-regex/.nycrc +10 -0
- package/slack-bot/node_modules/is-regex/CHANGELOG.md +233 -0
- package/slack-bot/node_modules/is-regex/LICENSE +20 -0
- package/slack-bot/node_modules/is-regex/README.md +52 -0
- package/slack-bot/node_modules/is-regex/index.d.ts +3 -0
- package/slack-bot/node_modules/is-regex/index.js +69 -0
- package/slack-bot/node_modules/is-regex/package.json +104 -0
- package/slack-bot/node_modules/is-regex/test/index.js +121 -0
- package/slack-bot/node_modules/is-regex/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-set/.editorconfig +15 -0
- package/slack-bot/node_modules/is-set/.eslintrc +5 -0
- package/slack-bot/node_modules/is-set/.gitattributes +1 -0
- package/slack-bot/node_modules/is-set/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-set/.nycrc +9 -0
- package/slack-bot/node_modules/is-set/CHANGELOG.md +81 -0
- package/slack-bot/node_modules/is-set/LICENSE +21 -0
- package/slack-bot/node_modules/is-set/README.md +50 -0
- package/slack-bot/node_modules/is-set/index.d.ts +3 -0
- package/slack-bot/node_modules/is-set/index.js +46 -0
- package/slack-bot/node_modules/is-set/package.json +72 -0
- package/slack-bot/node_modules/is-set/test/index.js +59 -0
- package/slack-bot/node_modules/is-set/tsconfig.json +49 -0
- package/slack-bot/node_modules/is-shared-array-buffer/.eslintrc +5 -0
- package/slack-bot/node_modules/is-shared-array-buffer/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-shared-array-buffer/.nycrc +9 -0
- package/slack-bot/node_modules/is-shared-array-buffer/CHANGELOG.md +75 -0
- package/slack-bot/node_modules/is-shared-array-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/is-shared-array-buffer/README.md +56 -0
- package/slack-bot/node_modules/is-shared-array-buffer/index.d.ts +3 -0
- package/slack-bot/node_modules/is-shared-array-buffer/index.js +24 -0
- package/slack-bot/node_modules/is-shared-array-buffer/package.json +92 -0
- package/slack-bot/node_modules/is-shared-array-buffer/test/index.js +39 -0
- package/slack-bot/node_modules/is-shared-array-buffer/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-stream/index.js +21 -0
- package/slack-bot/node_modules/is-stream/license +21 -0
- package/slack-bot/node_modules/is-stream/package.json +38 -0
- package/slack-bot/node_modules/is-stream/readme.md +42 -0
- package/slack-bot/node_modules/is-string/.eslintrc +9 -0
- package/slack-bot/node_modules/is-string/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-string/.nycrc +10 -0
- package/slack-bot/node_modules/is-string/CHANGELOG.md +146 -0
- package/slack-bot/node_modules/is-string/LICENSE +22 -0
- package/slack-bot/node_modules/is-string/README.md +56 -0
- package/slack-bot/node_modules/is-string/index.d.ts +3 -0
- package/slack-bot/node_modules/is-string/index.js +31 -0
- package/slack-bot/node_modules/is-string/package.json +95 -0
- package/slack-bot/node_modules/is-string/test/index.js +41 -0
- package/slack-bot/node_modules/is-string/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-symbol/.editorconfig +13 -0
- package/slack-bot/node_modules/is-symbol/.eslintrc +14 -0
- package/slack-bot/node_modules/is-symbol/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-symbol/.nycrc +9 -0
- package/slack-bot/node_modules/is-symbol/CHANGELOG.md +145 -0
- package/slack-bot/node_modules/is-symbol/LICENSE +22 -0
- package/slack-bot/node_modules/is-symbol/README.md +45 -0
- package/slack-bot/node_modules/is-symbol/index.d.ts +3 -0
- package/slack-bot/node_modules/is-symbol/index.js +40 -0
- package/slack-bot/node_modules/is-symbol/package.json +98 -0
- package/slack-bot/node_modules/is-symbol/test/index.js +88 -0
- package/slack-bot/node_modules/is-symbol/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-typed-array/.editorconfig +20 -0
- package/slack-bot/node_modules/is-typed-array/.eslintrc +13 -0
- package/slack-bot/node_modules/is-typed-array/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-typed-array/.nycrc +9 -0
- package/slack-bot/node_modules/is-typed-array/CHANGELOG.md +166 -0
- package/slack-bot/node_modules/is-typed-array/LICENSE +22 -0
- package/slack-bot/node_modules/is-typed-array/README.md +70 -0
- package/slack-bot/node_modules/is-typed-array/index.d.ts +9 -0
- package/slack-bot/node_modules/is-typed-array/index.js +8 -0
- package/slack-bot/node_modules/is-typed-array/package.json +129 -0
- package/slack-bot/node_modules/is-typed-array/test/index.js +111 -0
- package/slack-bot/node_modules/is-typed-array/tsconfig.json +6 -0
- package/slack-bot/node_modules/is-weakmap/.editorconfig +15 -0
- package/slack-bot/node_modules/is-weakmap/.eslintrc +5 -0
- package/slack-bot/node_modules/is-weakmap/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-weakmap/.nycrc +9 -0
- package/slack-bot/node_modules/is-weakmap/CHANGELOG.md +83 -0
- package/slack-bot/node_modules/is-weakmap/LICENSE +21 -0
- package/slack-bot/node_modules/is-weakmap/README.md +50 -0
- package/slack-bot/node_modules/is-weakmap/index.d.ts +3 -0
- package/slack-bot/node_modules/is-weakmap/index.js +46 -0
- package/slack-bot/node_modules/is-weakmap/package.json +81 -0
- package/slack-bot/node_modules/is-weakmap/test/index.js +59 -0
- package/slack-bot/node_modules/is-weakmap/tsconfig.json +49 -0
- package/slack-bot/node_modules/is-weakref/.eslintrc +5 -0
- package/slack-bot/node_modules/is-weakref/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-weakref/.nycrc +9 -0
- package/slack-bot/node_modules/is-weakref/CHANGELOG.md +82 -0
- package/slack-bot/node_modules/is-weakref/LICENSE +21 -0
- package/slack-bot/node_modules/is-weakref/README.md +52 -0
- package/slack-bot/node_modules/is-weakref/index.d.ts +3 -0
- package/slack-bot/node_modules/is-weakref/index.js +24 -0
- package/slack-bot/node_modules/is-weakref/package.json +82 -0
- package/slack-bot/node_modules/is-weakref/test/index.js +26 -0
- package/slack-bot/node_modules/is-weakref/tsconfig.json +9 -0
- package/slack-bot/node_modules/is-weakset/.editorconfig +15 -0
- package/slack-bot/node_modules/is-weakset/.eslintrc +13 -0
- package/slack-bot/node_modules/is-weakset/.gitattributes +1 -0
- package/slack-bot/node_modules/is-weakset/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/is-weakset/.nycrc +9 -0
- package/slack-bot/node_modules/is-weakset/CHANGELOG.md +107 -0
- package/slack-bot/node_modules/is-weakset/LICENSE +21 -0
- package/slack-bot/node_modules/is-weakset/README.md +50 -0
- package/slack-bot/node_modules/is-weakset/index.d.ts +3 -0
- package/slack-bot/node_modules/is-weakset/index.js +43 -0
- package/slack-bot/node_modules/is-weakset/package.json +87 -0
- package/slack-bot/node_modules/is-weakset/test/index.js +59 -0
- package/slack-bot/node_modules/is-weakset/tsconfig.json +9 -0
- package/slack-bot/node_modules/isarray/LICENSE +21 -0
- package/slack-bot/node_modules/isarray/README.md +38 -0
- package/slack-bot/node_modules/isarray/index.js +5 -0
- package/slack-bot/node_modules/isarray/package.json +48 -0
- package/slack-bot/node_modules/iterate-iterator/.eslintignore +1 -0
- package/slack-bot/node_modules/iterate-iterator/.eslintrc +16 -0
- package/slack-bot/node_modules/iterate-iterator/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/iterate-iterator/.nycrc +9 -0
- package/slack-bot/node_modules/iterate-iterator/CHANGELOG.md +56 -0
- package/slack-bot/node_modules/iterate-iterator/LICENSE +21 -0
- package/slack-bot/node_modules/iterate-iterator/README.md +66 -0
- package/slack-bot/node_modules/iterate-iterator/index.js +28 -0
- package/slack-bot/node_modules/iterate-iterator/package.json +73 -0
- package/slack-bot/node_modules/iterate-iterator/test/index.js +134 -0
- package/slack-bot/node_modules/iterate-value/.eslintrc +20 -0
- package/slack-bot/node_modules/iterate-value/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/iterate-value/.github/workflows/rebase.yml +15 -0
- package/slack-bot/node_modules/iterate-value/.travis.yml +8 -0
- package/slack-bot/node_modules/iterate-value/CHANGELOG.md +41 -0
- package/slack-bot/node_modules/iterate-value/LICENSE +21 -0
- package/slack-bot/node_modules/iterate-value/README.md +66 -0
- package/slack-bot/node_modules/iterate-value/index.js +16 -0
- package/slack-bot/node_modules/iterate-value/package.json +75 -0
- package/slack-bot/node_modules/iterate-value/test/index.js +144 -0
- package/slack-bot/node_modules/jsonwebtoken/LICENSE +21 -0
- package/slack-bot/node_modules/jsonwebtoken/README.md +396 -0
- package/slack-bot/node_modules/jsonwebtoken/decode.js +30 -0
- package/slack-bot/node_modules/jsonwebtoken/index.js +8 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/timespan.js +18 -0
- package/slack-bot/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
- package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/index.js +162 -0
- package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/license.md +21 -0
- package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/package.json +38 -0
- package/slack-bot/node_modules/jsonwebtoken/node_modules/ms/readme.md +59 -0
- package/slack-bot/node_modules/jsonwebtoken/package.json +70 -0
- package/slack-bot/node_modules/jsonwebtoken/sign.js +253 -0
- package/slack-bot/node_modules/jsonwebtoken/verify.js +263 -0
- package/slack-bot/node_modules/jwa/LICENSE +17 -0
- package/slack-bot/node_modules/jwa/README.md +150 -0
- package/slack-bot/node_modules/jwa/index.js +266 -0
- package/slack-bot/node_modules/jwa/opslevel.yml +6 -0
- package/slack-bot/node_modules/jwa/package.json +37 -0
- package/slack-bot/node_modules/jws/CHANGELOG.md +56 -0
- package/slack-bot/node_modules/jws/LICENSE +17 -0
- package/slack-bot/node_modules/jws/index.js +22 -0
- package/slack-bot/node_modules/jws/lib/data-stream.js +55 -0
- package/slack-bot/node_modules/jws/lib/sign-stream.js +83 -0
- package/slack-bot/node_modules/jws/lib/tostring.js +10 -0
- package/slack-bot/node_modules/jws/lib/verify-stream.js +125 -0
- package/slack-bot/node_modules/jws/opslevel.yml +6 -0
- package/slack-bot/node_modules/jws/package.json +34 -0
- package/slack-bot/node_modules/jws/readme.md +255 -0
- package/slack-bot/node_modules/lodash.includes/LICENSE +47 -0
- package/slack-bot/node_modules/lodash.includes/README.md +18 -0
- package/slack-bot/node_modules/lodash.includes/index.js +745 -0
- package/slack-bot/node_modules/lodash.includes/package.json +17 -0
- package/slack-bot/node_modules/lodash.isboolean/LICENSE +22 -0
- package/slack-bot/node_modules/lodash.isboolean/README.md +18 -0
- package/slack-bot/node_modules/lodash.isboolean/index.js +70 -0
- package/slack-bot/node_modules/lodash.isboolean/package.json +17 -0
- package/slack-bot/node_modules/lodash.isinteger/LICENSE +47 -0
- package/slack-bot/node_modules/lodash.isinteger/README.md +18 -0
- package/slack-bot/node_modules/lodash.isinteger/index.js +265 -0
- package/slack-bot/node_modules/lodash.isinteger/package.json +17 -0
- package/slack-bot/node_modules/lodash.isnumber/LICENSE +22 -0
- package/slack-bot/node_modules/lodash.isnumber/README.md +18 -0
- package/slack-bot/node_modules/lodash.isnumber/index.js +79 -0
- package/slack-bot/node_modules/lodash.isnumber/package.json +17 -0
- package/slack-bot/node_modules/lodash.isplainobject/LICENSE +47 -0
- package/slack-bot/node_modules/lodash.isplainobject/README.md +18 -0
- package/slack-bot/node_modules/lodash.isplainobject/index.js +139 -0
- package/slack-bot/node_modules/lodash.isplainobject/package.json +17 -0
- package/slack-bot/node_modules/lodash.isstring/LICENSE +22 -0
- package/slack-bot/node_modules/lodash.isstring/README.md +18 -0
- package/slack-bot/node_modules/lodash.isstring/index.js +95 -0
- package/slack-bot/node_modules/lodash.isstring/package.json +17 -0
- package/slack-bot/node_modules/lodash.once/LICENSE +47 -0
- package/slack-bot/node_modules/lodash.once/README.md +18 -0
- package/slack-bot/node_modules/lodash.once/index.js +294 -0
- package/slack-bot/node_modules/lodash.once/package.json +17 -0
- package/slack-bot/node_modules/math-intrinsics/.eslintrc +16 -0
- package/slack-bot/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/slack-bot/node_modules/math-intrinsics/LICENSE +21 -0
- package/slack-bot/node_modules/math-intrinsics/README.md +50 -0
- package/slack-bot/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/abs.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/slack-bot/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/floor.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/isFinite.js +12 -0
- package/slack-bot/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/isInteger.js +16 -0
- package/slack-bot/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/isNaN.js +6 -0
- package/slack-bot/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/slack-bot/node_modules/math-intrinsics/max.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/max.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/min.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/min.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/mod.js +9 -0
- package/slack-bot/node_modules/math-intrinsics/package.json +86 -0
- package/slack-bot/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/pow.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/round.d.ts +1 -0
- package/slack-bot/node_modules/math-intrinsics/round.js +4 -0
- package/slack-bot/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/slack-bot/node_modules/math-intrinsics/sign.js +11 -0
- package/slack-bot/node_modules/math-intrinsics/test/index.js +192 -0
- package/slack-bot/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/slack-bot/node_modules/media-typer/HISTORY.md +22 -0
- package/slack-bot/node_modules/media-typer/LICENSE +22 -0
- package/slack-bot/node_modules/media-typer/README.md +81 -0
- package/slack-bot/node_modules/media-typer/index.js +270 -0
- package/slack-bot/node_modules/media-typer/package.json +26 -0
- package/slack-bot/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/slack-bot/node_modules/merge-descriptors/LICENSE +23 -0
- package/slack-bot/node_modules/merge-descriptors/README.md +49 -0
- package/slack-bot/node_modules/merge-descriptors/index.js +60 -0
- package/slack-bot/node_modules/merge-descriptors/package.json +39 -0
- package/slack-bot/node_modules/methods/HISTORY.md +29 -0
- package/slack-bot/node_modules/methods/LICENSE +24 -0
- package/slack-bot/node_modules/methods/README.md +51 -0
- package/slack-bot/node_modules/methods/index.js +69 -0
- package/slack-bot/node_modules/methods/package.json +36 -0
- package/slack-bot/node_modules/mime/CHANGELOG.md +164 -0
- package/slack-bot/node_modules/mime/LICENSE +21 -0
- package/slack-bot/node_modules/mime/README.md +90 -0
- package/slack-bot/node_modules/mime/cli.js +8 -0
- package/slack-bot/node_modules/mime/mime.js +108 -0
- package/slack-bot/node_modules/mime/package.json +44 -0
- package/slack-bot/node_modules/mime/src/build.js +53 -0
- package/slack-bot/node_modules/mime/src/test.js +60 -0
- package/slack-bot/node_modules/mime/types.json +1 -0
- package/slack-bot/node_modules/mime-db/HISTORY.md +507 -0
- package/slack-bot/node_modules/mime-db/LICENSE +23 -0
- package/slack-bot/node_modules/mime-db/README.md +100 -0
- package/slack-bot/node_modules/mime-db/db.json +8519 -0
- package/slack-bot/node_modules/mime-db/index.js +12 -0
- package/slack-bot/node_modules/mime-db/package.json +60 -0
- package/slack-bot/node_modules/mime-types/HISTORY.md +397 -0
- package/slack-bot/node_modules/mime-types/LICENSE +23 -0
- package/slack-bot/node_modules/mime-types/README.md +113 -0
- package/slack-bot/node_modules/mime-types/index.js +188 -0
- package/slack-bot/node_modules/mime-types/package.json +44 -0
- package/slack-bot/node_modules/ms/index.js +152 -0
- package/slack-bot/node_modules/ms/license.md +21 -0
- package/slack-bot/node_modules/ms/package.json +37 -0
- package/slack-bot/node_modules/ms/readme.md +51 -0
- package/slack-bot/node_modules/negotiator/HISTORY.md +108 -0
- package/slack-bot/node_modules/negotiator/LICENSE +24 -0
- package/slack-bot/node_modules/negotiator/README.md +203 -0
- package/slack-bot/node_modules/negotiator/index.js +82 -0
- package/slack-bot/node_modules/negotiator/lib/charset.js +169 -0
- package/slack-bot/node_modules/negotiator/lib/encoding.js +184 -0
- package/slack-bot/node_modules/negotiator/lib/language.js +179 -0
- package/slack-bot/node_modules/negotiator/lib/mediaType.js +294 -0
- package/slack-bot/node_modules/negotiator/package.json +42 -0
- package/slack-bot/node_modules/object-inspect/.eslintrc +53 -0
- package/slack-bot/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/object-inspect/.nycrc +13 -0
- package/slack-bot/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/slack-bot/node_modules/object-inspect/LICENSE +21 -0
- package/slack-bot/node_modules/object-inspect/example/all.js +23 -0
- package/slack-bot/node_modules/object-inspect/example/circular.js +6 -0
- package/slack-bot/node_modules/object-inspect/example/fn.js +5 -0
- package/slack-bot/node_modules/object-inspect/example/inspect.js +10 -0
- package/slack-bot/node_modules/object-inspect/index.js +544 -0
- package/slack-bot/node_modules/object-inspect/package-support.json +20 -0
- package/slack-bot/node_modules/object-inspect/package.json +105 -0
- package/slack-bot/node_modules/object-inspect/readme.markdown +84 -0
- package/slack-bot/node_modules/object-inspect/test/bigint.js +58 -0
- package/slack-bot/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/slack-bot/node_modules/object-inspect/test/circular.js +16 -0
- package/slack-bot/node_modules/object-inspect/test/deep.js +12 -0
- package/slack-bot/node_modules/object-inspect/test/element.js +53 -0
- package/slack-bot/node_modules/object-inspect/test/err.js +48 -0
- package/slack-bot/node_modules/object-inspect/test/fakes.js +29 -0
- package/slack-bot/node_modules/object-inspect/test/fn.js +76 -0
- package/slack-bot/node_modules/object-inspect/test/global.js +17 -0
- package/slack-bot/node_modules/object-inspect/test/has.js +15 -0
- package/slack-bot/node_modules/object-inspect/test/holes.js +15 -0
- package/slack-bot/node_modules/object-inspect/test/indent-option.js +271 -0
- package/slack-bot/node_modules/object-inspect/test/inspect.js +139 -0
- package/slack-bot/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/slack-bot/node_modules/object-inspect/test/number.js +58 -0
- package/slack-bot/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/slack-bot/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/slack-bot/node_modules/object-inspect/test/undef.js +12 -0
- package/slack-bot/node_modules/object-inspect/test/values.js +261 -0
- package/slack-bot/node_modules/object-inspect/test-core-js.js +26 -0
- package/slack-bot/node_modules/object-inspect/util.inspect.js +1 -0
- package/slack-bot/node_modules/object-keys/.editorconfig +13 -0
- package/slack-bot/node_modules/object-keys/.eslintrc +17 -0
- package/slack-bot/node_modules/object-keys/.travis.yml +277 -0
- package/slack-bot/node_modules/object-keys/CHANGELOG.md +232 -0
- package/slack-bot/node_modules/object-keys/LICENSE +21 -0
- package/slack-bot/node_modules/object-keys/README.md +76 -0
- package/slack-bot/node_modules/object-keys/implementation.js +122 -0
- package/slack-bot/node_modules/object-keys/index.js +32 -0
- package/slack-bot/node_modules/object-keys/isArguments.js +17 -0
- package/slack-bot/node_modules/object-keys/package.json +88 -0
- package/slack-bot/node_modules/object-keys/test/index.js +5 -0
- package/slack-bot/node_modules/object.assign/.editorconfig +20 -0
- package/slack-bot/node_modules/object.assign/.eslintrc +28 -0
- package/slack-bot/node_modules/object.assign/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/object.assign/.nycrc +9 -0
- package/slack-bot/node_modules/object.assign/CHANGELOG.md +246 -0
- package/slack-bot/node_modules/object.assign/LICENSE +21 -0
- package/slack-bot/node_modules/object.assign/README.md +136 -0
- package/slack-bot/node_modules/object.assign/auto.js +3 -0
- package/slack-bot/node_modules/object.assign/dist/browser.js +1304 -0
- package/slack-bot/node_modules/object.assign/hasSymbols.js +43 -0
- package/slack-bot/node_modules/object.assign/implementation.js +46 -0
- package/slack-bot/node_modules/object.assign/index.js +22 -0
- package/slack-bot/node_modules/object.assign/package.json +96 -0
- package/slack-bot/node_modules/object.assign/polyfill.js +55 -0
- package/slack-bot/node_modules/object.assign/shim.js +14 -0
- package/slack-bot/node_modules/object.assign/test/implementation.js +19 -0
- package/slack-bot/node_modules/object.assign/test/index.js +17 -0
- package/slack-bot/node_modules/object.assign/test/native.js +49 -0
- package/slack-bot/node_modules/object.assign/test/ses-compat.js +12 -0
- package/slack-bot/node_modules/object.assign/test/shimmed.js +52 -0
- package/slack-bot/node_modules/object.assign/test/tests.js +232 -0
- package/slack-bot/node_modules/on-finished/HISTORY.md +98 -0
- package/slack-bot/node_modules/on-finished/LICENSE +23 -0
- package/slack-bot/node_modules/on-finished/README.md +162 -0
- package/slack-bot/node_modules/on-finished/index.js +234 -0
- package/slack-bot/node_modules/on-finished/package.json +39 -0
- package/slack-bot/node_modules/own-keys/.eslintrc +16 -0
- package/slack-bot/node_modules/own-keys/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/own-keys/.nycrc +9 -0
- package/slack-bot/node_modules/own-keys/CHANGELOG.md +23 -0
- package/slack-bot/node_modules/own-keys/LICENSE +21 -0
- package/slack-bot/node_modules/own-keys/README.md +45 -0
- package/slack-bot/node_modules/own-keys/index.d.ts +3 -0
- package/slack-bot/node_modules/own-keys/index.js +21 -0
- package/slack-bot/node_modules/own-keys/package.json +91 -0
- package/slack-bot/node_modules/own-keys/test/index.js +72 -0
- package/slack-bot/node_modules/own-keys/tsconfig.json +9 -0
- package/slack-bot/node_modules/p-finally/index.js +15 -0
- package/slack-bot/node_modules/p-finally/license +21 -0
- package/slack-bot/node_modules/p-finally/package.json +42 -0
- package/slack-bot/node_modules/p-finally/readme.md +47 -0
- package/slack-bot/node_modules/p-queue/dist/index.d.ts +101 -0
- package/slack-bot/node_modules/p-queue/dist/index.js +279 -0
- package/slack-bot/node_modules/p-queue/dist/lower-bound.d.ts +1 -0
- package/slack-bot/node_modules/p-queue/dist/lower-bound.js +21 -0
- package/slack-bot/node_modules/p-queue/dist/options.d.ts +64 -0
- package/slack-bot/node_modules/p-queue/dist/options.js +2 -0
- package/slack-bot/node_modules/p-queue/dist/priority-queue.d.ts +12 -0
- package/slack-bot/node_modules/p-queue/dist/priority-queue.js +32 -0
- package/slack-bot/node_modules/p-queue/dist/queue.d.ts +7 -0
- package/slack-bot/node_modules/p-queue/dist/queue.js +2 -0
- package/slack-bot/node_modules/p-queue/license +9 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/LICENSE +21 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/README.md +94 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/index.d.ts +134 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/index.js +336 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/package.json +56 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
- package/slack-bot/node_modules/p-queue/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
- package/slack-bot/node_modules/p-queue/package.json +92 -0
- package/slack-bot/node_modules/p-queue/readme.md +400 -0
- package/slack-bot/node_modules/p-retry/index.d.ts +106 -0
- package/slack-bot/node_modules/p-retry/index.js +85 -0
- package/slack-bot/node_modules/p-retry/license +9 -0
- package/slack-bot/node_modules/p-retry/package.json +51 -0
- package/slack-bot/node_modules/p-retry/readme.md +148 -0
- package/slack-bot/node_modules/p-timeout/index.d.ts +72 -0
- package/slack-bot/node_modules/p-timeout/index.js +57 -0
- package/slack-bot/node_modules/p-timeout/license +9 -0
- package/slack-bot/node_modules/p-timeout/package.json +45 -0
- package/slack-bot/node_modules/p-timeout/readme.md +87 -0
- package/slack-bot/node_modules/parseurl/HISTORY.md +58 -0
- package/slack-bot/node_modules/parseurl/LICENSE +24 -0
- package/slack-bot/node_modules/parseurl/README.md +133 -0
- package/slack-bot/node_modules/parseurl/index.js +158 -0
- package/slack-bot/node_modules/parseurl/package.json +40 -0
- package/slack-bot/node_modules/path-to-regexp/LICENSE +21 -0
- package/slack-bot/node_modules/path-to-regexp/Readme.md +224 -0
- package/slack-bot/node_modules/path-to-regexp/dist/index.d.ts +144 -0
- package/slack-bot/node_modules/path-to-regexp/dist/index.js +409 -0
- package/slack-bot/node_modules/path-to-regexp/dist/index.js.map +1 -0
- package/slack-bot/node_modules/path-to-regexp/package.json +64 -0
- package/slack-bot/node_modules/possible-typed-array-names/.eslintrc +5 -0
- package/slack-bot/node_modules/possible-typed-array-names/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/possible-typed-array-names/CHANGELOG.md +29 -0
- package/slack-bot/node_modules/possible-typed-array-names/LICENSE +21 -0
- package/slack-bot/node_modules/possible-typed-array-names/README.md +50 -0
- package/slack-bot/node_modules/possible-typed-array-names/index.d.ts +16 -0
- package/slack-bot/node_modules/possible-typed-array-names/index.js +17 -0
- package/slack-bot/node_modules/possible-typed-array-names/package.json +84 -0
- package/slack-bot/node_modules/possible-typed-array-names/test/index.js +19 -0
- package/slack-bot/node_modules/possible-typed-array-names/tsconfig.json +9 -0
- package/slack-bot/node_modules/promise.allsettled/.editorconfig +20 -0
- package/slack-bot/node_modules/promise.allsettled/.eslintrc +17 -0
- package/slack-bot/node_modules/promise.allsettled/.nycrc +9 -0
- package/slack-bot/node_modules/promise.allsettled/CHANGELOG.md +108 -0
- package/slack-bot/node_modules/promise.allsettled/LICENSE +21 -0
- package/slack-bot/node_modules/promise.allsettled/README.md +60 -0
- package/slack-bot/node_modules/promise.allsettled/auto.js +3 -0
- package/slack-bot/node_modules/promise.allsettled/implementation.js +37 -0
- package/slack-bot/node_modules/promise.allsettled/index.js +25 -0
- package/slack-bot/node_modules/promise.allsettled/package.json +92 -0
- package/slack-bot/node_modules/promise.allsettled/polyfill.js +10 -0
- package/slack-bot/node_modules/promise.allsettled/requirePromise.js +7 -0
- package/slack-bot/node_modules/promise.allsettled/shim.js +18 -0
- package/slack-bot/node_modules/promise.allsettled/test/.eslintrc +12 -0
- package/slack-bot/node_modules/promise.allsettled/test/builtin.js +30 -0
- package/slack-bot/node_modules/promise.allsettled/test/implementation.js +30 -0
- package/slack-bot/node_modules/promise.allsettled/test/index.js +21 -0
- package/slack-bot/node_modules/promise.allsettled/test/native.js +11 -0
- package/slack-bot/node_modules/promise.allsettled/test/promise-shimmed.js +7 -0
- package/slack-bot/node_modules/promise.allsettled/test/shimmed.js +13 -0
- package/slack-bot/node_modules/promise.allsettled/test/tests.js +134 -0
- package/slack-bot/node_modules/proxy-addr/HISTORY.md +161 -0
- package/slack-bot/node_modules/proxy-addr/LICENSE +22 -0
- package/slack-bot/node_modules/proxy-addr/README.md +139 -0
- package/slack-bot/node_modules/proxy-addr/index.js +327 -0
- package/slack-bot/node_modules/proxy-addr/package.json +47 -0
- package/slack-bot/node_modules/proxy-from-env/.eslintrc +29 -0
- package/slack-bot/node_modules/proxy-from-env/.travis.yml +10 -0
- package/slack-bot/node_modules/proxy-from-env/LICENSE +20 -0
- package/slack-bot/node_modules/proxy-from-env/README.md +131 -0
- package/slack-bot/node_modules/proxy-from-env/index.js +108 -0
- package/slack-bot/node_modules/proxy-from-env/package.json +34 -0
- package/slack-bot/node_modules/proxy-from-env/test.js +483 -0
- package/slack-bot/node_modules/qs/.editorconfig +46 -0
- package/slack-bot/node_modules/qs/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/qs/.github/SECURITY.md +11 -0
- package/slack-bot/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/slack-bot/node_modules/qs/.nycrc +13 -0
- package/slack-bot/node_modules/qs/CHANGELOG.md +644 -0
- package/slack-bot/node_modules/qs/LICENSE.md +29 -0
- package/slack-bot/node_modules/qs/README.md +740 -0
- package/slack-bot/node_modules/qs/dist/qs.js +141 -0
- package/slack-bot/node_modules/qs/eslint.config.mjs +56 -0
- package/slack-bot/node_modules/qs/lib/formats.js +23 -0
- package/slack-bot/node_modules/qs/lib/index.js +11 -0
- package/slack-bot/node_modules/qs/lib/parse.js +371 -0
- package/slack-bot/node_modules/qs/lib/stringify.js +356 -0
- package/slack-bot/node_modules/qs/lib/utils.js +340 -0
- package/slack-bot/node_modules/qs/package.json +94 -0
- package/slack-bot/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/slack-bot/node_modules/qs/test/parse.js +1512 -0
- package/slack-bot/node_modules/qs/test/stringify.js +1310 -0
- package/slack-bot/node_modules/qs/test/utils.js +397 -0
- package/slack-bot/node_modules/range-parser/HISTORY.md +56 -0
- package/slack-bot/node_modules/range-parser/LICENSE +23 -0
- package/slack-bot/node_modules/range-parser/README.md +84 -0
- package/slack-bot/node_modules/range-parser/index.js +162 -0
- package/slack-bot/node_modules/range-parser/package.json +44 -0
- package/slack-bot/node_modules/raw-body/LICENSE +22 -0
- package/slack-bot/node_modules/raw-body/README.md +223 -0
- package/slack-bot/node_modules/raw-body/index.d.ts +87 -0
- package/slack-bot/node_modules/raw-body/index.js +336 -0
- package/slack-bot/node_modules/raw-body/package.json +47 -0
- package/slack-bot/node_modules/reflect.getprototypeof/.eslintrc +17 -0
- package/slack-bot/node_modules/reflect.getprototypeof/.nycrc +9 -0
- package/slack-bot/node_modules/reflect.getprototypeof/CHANGELOG.md +115 -0
- package/slack-bot/node_modules/reflect.getprototypeof/LICENSE +21 -0
- package/slack-bot/node_modules/reflect.getprototypeof/README.md +77 -0
- package/slack-bot/node_modules/reflect.getprototypeof/auto.js +3 -0
- package/slack-bot/node_modules/reflect.getprototypeof/implementation.js +40 -0
- package/slack-bot/node_modules/reflect.getprototypeof/index.js +18 -0
- package/slack-bot/node_modules/reflect.getprototypeof/package.json +98 -0
- package/slack-bot/node_modules/reflect.getprototypeof/polyfill.js +14 -0
- package/slack-bot/node_modules/reflect.getprototypeof/shim.js +21 -0
- package/slack-bot/node_modules/reflect.getprototypeof/test/implementation.js +11 -0
- package/slack-bot/node_modules/reflect.getprototypeof/test/index.js +11 -0
- package/slack-bot/node_modules/reflect.getprototypeof/test/shimmed.js +28 -0
- package/slack-bot/node_modules/reflect.getprototypeof/test/tests.js +33 -0
- package/slack-bot/node_modules/regexp.prototype.flags/.editorconfig +13 -0
- package/slack-bot/node_modules/regexp.prototype.flags/.eslintrc +20 -0
- package/slack-bot/node_modules/regexp.prototype.flags/.nycrc +9 -0
- package/slack-bot/node_modules/regexp.prototype.flags/CHANGELOG.md +249 -0
- package/slack-bot/node_modules/regexp.prototype.flags/LICENSE +22 -0
- package/slack-bot/node_modules/regexp.prototype.flags/README.md +55 -0
- package/slack-bot/node_modules/regexp.prototype.flags/auto.js +3 -0
- package/slack-bot/node_modules/regexp.prototype.flags/implementation.js +39 -0
- package/slack-bot/node_modules/regexp.prototype.flags/index.js +18 -0
- package/slack-bot/node_modules/regexp.prototype.flags/package.json +105 -0
- package/slack-bot/node_modules/regexp.prototype.flags/polyfill.js +39 -0
- package/slack-bot/node_modules/regexp.prototype.flags/shim.js +26 -0
- package/slack-bot/node_modules/regexp.prototype.flags/test/builtin.js +46 -0
- package/slack-bot/node_modules/regexp.prototype.flags/test/implementation.js +20 -0
- package/slack-bot/node_modules/regexp.prototype.flags/test/index.js +17 -0
- package/slack-bot/node_modules/regexp.prototype.flags/test/shimmed.js +48 -0
- package/slack-bot/node_modules/regexp.prototype.flags/test/tests.js +143 -0
- package/slack-bot/node_modules/retry/License +21 -0
- package/slack-bot/node_modules/retry/README.md +227 -0
- package/slack-bot/node_modules/retry/example/dns.js +31 -0
- package/slack-bot/node_modules/retry/example/stop.js +40 -0
- package/slack-bot/node_modules/retry/index.js +1 -0
- package/slack-bot/node_modules/retry/lib/retry.js +100 -0
- package/slack-bot/node_modules/retry/lib/retry_operation.js +162 -0
- package/slack-bot/node_modules/retry/package.json +36 -0
- package/slack-bot/node_modules/safe-array-concat/.eslintrc +15 -0
- package/slack-bot/node_modules/safe-array-concat/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/safe-array-concat/.nycrc +13 -0
- package/slack-bot/node_modules/safe-array-concat/CHANGELOG.md +69 -0
- package/slack-bot/node_modules/safe-array-concat/LICENSE +21 -0
- package/slack-bot/node_modules/safe-array-concat/README.md +53 -0
- package/slack-bot/node_modules/safe-array-concat/index.d.ts +3 -0
- package/slack-bot/node_modules/safe-array-concat/index.js +43 -0
- package/slack-bot/node_modules/safe-array-concat/package.json +90 -0
- package/slack-bot/node_modules/safe-array-concat/test/index.js +100 -0
- package/slack-bot/node_modules/safe-array-concat/tsconfig.json +9 -0
- package/slack-bot/node_modules/safe-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/safe-buffer/README.md +584 -0
- package/slack-bot/node_modules/safe-buffer/index.d.ts +187 -0
- package/slack-bot/node_modules/safe-buffer/index.js +65 -0
- package/slack-bot/node_modules/safe-buffer/package.json +51 -0
- package/slack-bot/node_modules/safe-push-apply/.eslintrc +15 -0
- package/slack-bot/node_modules/safe-push-apply/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/safe-push-apply/.nycrc +13 -0
- package/slack-bot/node_modules/safe-push-apply/CHANGELOG.md +15 -0
- package/slack-bot/node_modules/safe-push-apply/LICENSE +21 -0
- package/slack-bot/node_modules/safe-push-apply/README.md +59 -0
- package/slack-bot/node_modules/safe-push-apply/index.d.ts +6 -0
- package/slack-bot/node_modules/safe-push-apply/index.js +15 -0
- package/slack-bot/node_modules/safe-push-apply/package.json +82 -0
- package/slack-bot/node_modules/safe-push-apply/test/index.js +30 -0
- package/slack-bot/node_modules/safe-push-apply/tsconfig.json +9 -0
- package/slack-bot/node_modules/safe-regex-test/.eslintrc +9 -0
- package/slack-bot/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/safe-regex-test/.nycrc +13 -0
- package/slack-bot/node_modules/safe-regex-test/CHANGELOG.md +55 -0
- package/slack-bot/node_modules/safe-regex-test/LICENSE +21 -0
- package/slack-bot/node_modules/safe-regex-test/README.md +46 -0
- package/slack-bot/node_modules/safe-regex-test/index.d.ts +3 -0
- package/slack-bot/node_modules/safe-regex-test/index.js +17 -0
- package/slack-bot/node_modules/safe-regex-test/package.json +87 -0
- package/slack-bot/node_modules/safe-regex-test/test/index.js +41 -0
- package/slack-bot/node_modules/safe-regex-test/tsconfig.json +9 -0
- package/slack-bot/node_modules/safer-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/slack-bot/node_modules/safer-buffer/Readme.md +156 -0
- package/slack-bot/node_modules/safer-buffer/dangerous.js +58 -0
- package/slack-bot/node_modules/safer-buffer/package.json +34 -0
- package/slack-bot/node_modules/safer-buffer/safer.js +77 -0
- package/slack-bot/node_modules/safer-buffer/tests.js +406 -0
- package/slack-bot/node_modules/semver/LICENSE +15 -0
- package/slack-bot/node_modules/semver/README.md +665 -0
- package/slack-bot/node_modules/semver/bin/semver.js +191 -0
- package/slack-bot/node_modules/semver/classes/comparator.js +143 -0
- package/slack-bot/node_modules/semver/classes/index.js +7 -0
- package/slack-bot/node_modules/semver/classes/range.js +557 -0
- package/slack-bot/node_modules/semver/classes/semver.js +333 -0
- package/slack-bot/node_modules/semver/functions/clean.js +8 -0
- package/slack-bot/node_modules/semver/functions/cmp.js +54 -0
- package/slack-bot/node_modules/semver/functions/coerce.js +62 -0
- package/slack-bot/node_modules/semver/functions/compare-build.js +9 -0
- package/slack-bot/node_modules/semver/functions/compare-loose.js +5 -0
- package/slack-bot/node_modules/semver/functions/compare.js +7 -0
- package/slack-bot/node_modules/semver/functions/diff.js +60 -0
- package/slack-bot/node_modules/semver/functions/eq.js +5 -0
- package/slack-bot/node_modules/semver/functions/gt.js +5 -0
- package/slack-bot/node_modules/semver/functions/gte.js +5 -0
- package/slack-bot/node_modules/semver/functions/inc.js +21 -0
- package/slack-bot/node_modules/semver/functions/lt.js +5 -0
- package/slack-bot/node_modules/semver/functions/lte.js +5 -0
- package/slack-bot/node_modules/semver/functions/major.js +5 -0
- package/slack-bot/node_modules/semver/functions/minor.js +5 -0
- package/slack-bot/node_modules/semver/functions/neq.js +5 -0
- package/slack-bot/node_modules/semver/functions/parse.js +18 -0
- package/slack-bot/node_modules/semver/functions/patch.js +5 -0
- package/slack-bot/node_modules/semver/functions/prerelease.js +8 -0
- package/slack-bot/node_modules/semver/functions/rcompare.js +5 -0
- package/slack-bot/node_modules/semver/functions/rsort.js +5 -0
- package/slack-bot/node_modules/semver/functions/satisfies.js +12 -0
- package/slack-bot/node_modules/semver/functions/sort.js +5 -0
- package/slack-bot/node_modules/semver/functions/valid.js +8 -0
- package/slack-bot/node_modules/semver/index.js +91 -0
- package/slack-bot/node_modules/semver/internal/constants.js +37 -0
- package/slack-bot/node_modules/semver/internal/debug.js +11 -0
- package/slack-bot/node_modules/semver/internal/identifiers.js +29 -0
- package/slack-bot/node_modules/semver/internal/lrucache.js +42 -0
- package/slack-bot/node_modules/semver/internal/parse-options.js +17 -0
- package/slack-bot/node_modules/semver/internal/re.js +223 -0
- package/slack-bot/node_modules/semver/package.json +78 -0
- package/slack-bot/node_modules/semver/preload.js +4 -0
- package/slack-bot/node_modules/semver/range.bnf +16 -0
- package/slack-bot/node_modules/semver/ranges/gtr.js +6 -0
- package/slack-bot/node_modules/semver/ranges/intersects.js +9 -0
- package/slack-bot/node_modules/semver/ranges/ltr.js +6 -0
- package/slack-bot/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/slack-bot/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/slack-bot/node_modules/semver/ranges/min-version.js +63 -0
- package/slack-bot/node_modules/semver/ranges/outside.js +82 -0
- package/slack-bot/node_modules/semver/ranges/simplify.js +49 -0
- package/slack-bot/node_modules/semver/ranges/subset.js +249 -0
- package/slack-bot/node_modules/semver/ranges/to-comparators.js +10 -0
- package/slack-bot/node_modules/semver/ranges/valid.js +13 -0
- package/slack-bot/node_modules/send/HISTORY.md +538 -0
- package/slack-bot/node_modules/send/LICENSE +23 -0
- package/slack-bot/node_modules/send/README.md +327 -0
- package/slack-bot/node_modules/send/SECURITY.md +24 -0
- package/slack-bot/node_modules/send/index.js +1142 -0
- package/slack-bot/node_modules/send/node_modules/ms/index.js +162 -0
- package/slack-bot/node_modules/send/node_modules/ms/license.md +21 -0
- package/slack-bot/node_modules/send/node_modules/ms/package.json +38 -0
- package/slack-bot/node_modules/send/node_modules/ms/readme.md +59 -0
- package/slack-bot/node_modules/send/package.json +62 -0
- package/slack-bot/node_modules/serve-static/HISTORY.md +493 -0
- package/slack-bot/node_modules/serve-static/LICENSE +25 -0
- package/slack-bot/node_modules/serve-static/README.md +257 -0
- package/slack-bot/node_modules/serve-static/index.js +209 -0
- package/slack-bot/node_modules/serve-static/package.json +42 -0
- package/slack-bot/node_modules/set-function-length/.eslintrc +27 -0
- package/slack-bot/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/set-function-length/.nycrc +13 -0
- package/slack-bot/node_modules/set-function-length/CHANGELOG.md +70 -0
- package/slack-bot/node_modules/set-function-length/LICENSE +21 -0
- package/slack-bot/node_modules/set-function-length/README.md +56 -0
- package/slack-bot/node_modules/set-function-length/env.d.ts +9 -0
- package/slack-bot/node_modules/set-function-length/env.js +25 -0
- package/slack-bot/node_modules/set-function-length/index.d.ts +7 -0
- package/slack-bot/node_modules/set-function-length/index.js +42 -0
- package/slack-bot/node_modules/set-function-length/package.json +102 -0
- package/slack-bot/node_modules/set-function-length/tsconfig.json +9 -0
- package/slack-bot/node_modules/set-function-name/.eslintrc +21 -0
- package/slack-bot/node_modules/set-function-name/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/set-function-name/CHANGELOG.md +48 -0
- package/slack-bot/node_modules/set-function-name/LICENSE +21 -0
- package/slack-bot/node_modules/set-function-name/README.md +61 -0
- package/slack-bot/node_modules/set-function-name/index.d.ts +5 -0
- package/slack-bot/node_modules/set-function-name/index.js +23 -0
- package/slack-bot/node_modules/set-function-name/package.json +99 -0
- package/slack-bot/node_modules/set-function-name/tsconfig.json +59 -0
- package/slack-bot/node_modules/set-proto/.eslintrc +10 -0
- package/slack-bot/node_modules/set-proto/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/set-proto/.nycrc +9 -0
- package/slack-bot/node_modules/set-proto/CHANGELOG.md +15 -0
- package/slack-bot/node_modules/set-proto/LICENSE +21 -0
- package/slack-bot/node_modules/set-proto/Object.setPrototypeOf.d.ts +8 -0
- package/slack-bot/node_modules/set-proto/Object.setPrototypeOf.js +6 -0
- package/slack-bot/node_modules/set-proto/README.md +52 -0
- package/slack-bot/node_modules/set-proto/Reflect.setPrototypeOf.d.ts +3 -0
- package/slack-bot/node_modules/set-proto/Reflect.setPrototypeOf.js +4 -0
- package/slack-bot/node_modules/set-proto/index.d.ts +8 -0
- package/slack-bot/node_modules/set-proto/index.js +25 -0
- package/slack-bot/node_modules/set-proto/package.json +82 -0
- package/slack-bot/node_modules/set-proto/test/index.js +40 -0
- package/slack-bot/node_modules/set-proto/tsconfig.json +9 -0
- package/slack-bot/node_modules/setprototypeof/LICENSE +13 -0
- package/slack-bot/node_modules/setprototypeof/README.md +31 -0
- package/slack-bot/node_modules/setprototypeof/index.d.ts +2 -0
- package/slack-bot/node_modules/setprototypeof/index.js +17 -0
- package/slack-bot/node_modules/setprototypeof/package.json +38 -0
- package/slack-bot/node_modules/setprototypeof/test/index.js +24 -0
- package/slack-bot/node_modules/side-channel/.editorconfig +9 -0
- package/slack-bot/node_modules/side-channel/.eslintrc +12 -0
- package/slack-bot/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/side-channel/.nycrc +13 -0
- package/slack-bot/node_modules/side-channel/CHANGELOG.md +110 -0
- package/slack-bot/node_modules/side-channel/LICENSE +21 -0
- package/slack-bot/node_modules/side-channel/README.md +61 -0
- package/slack-bot/node_modules/side-channel/index.d.ts +14 -0
- package/slack-bot/node_modules/side-channel/index.js +43 -0
- package/slack-bot/node_modules/side-channel/package.json +85 -0
- package/slack-bot/node_modules/side-channel/test/index.js +104 -0
- package/slack-bot/node_modules/side-channel/tsconfig.json +9 -0
- package/slack-bot/node_modules/side-channel-list/.editorconfig +9 -0
- package/slack-bot/node_modules/side-channel-list/.eslintrc +11 -0
- package/slack-bot/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/side-channel-list/.nycrc +13 -0
- package/slack-bot/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/slack-bot/node_modules/side-channel-list/LICENSE +21 -0
- package/slack-bot/node_modules/side-channel-list/README.md +62 -0
- package/slack-bot/node_modules/side-channel-list/index.d.ts +13 -0
- package/slack-bot/node_modules/side-channel-list/index.js +113 -0
- package/slack-bot/node_modules/side-channel-list/list.d.ts +14 -0
- package/slack-bot/node_modules/side-channel-list/package.json +77 -0
- package/slack-bot/node_modules/side-channel-list/test/index.js +104 -0
- package/slack-bot/node_modules/side-channel-list/tsconfig.json +9 -0
- package/slack-bot/node_modules/side-channel-map/.editorconfig +9 -0
- package/slack-bot/node_modules/side-channel-map/.eslintrc +11 -0
- package/slack-bot/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/side-channel-map/.nycrc +13 -0
- package/slack-bot/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/slack-bot/node_modules/side-channel-map/LICENSE +21 -0
- package/slack-bot/node_modules/side-channel-map/README.md +62 -0
- package/slack-bot/node_modules/side-channel-map/index.d.ts +15 -0
- package/slack-bot/node_modules/side-channel-map/index.js +68 -0
- package/slack-bot/node_modules/side-channel-map/package.json +80 -0
- package/slack-bot/node_modules/side-channel-map/test/index.js +114 -0
- package/slack-bot/node_modules/side-channel-map/tsconfig.json +9 -0
- package/slack-bot/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/slack-bot/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/slack-bot/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/slack-bot/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/slack-bot/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/slack-bot/node_modules/side-channel-weakmap/README.md +62 -0
- package/slack-bot/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/slack-bot/node_modules/side-channel-weakmap/index.js +84 -0
- package/slack-bot/node_modules/side-channel-weakmap/package.json +87 -0
- package/slack-bot/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/slack-bot/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/slack-bot/node_modules/statuses/HISTORY.md +87 -0
- package/slack-bot/node_modules/statuses/LICENSE +23 -0
- package/slack-bot/node_modules/statuses/README.md +139 -0
- package/slack-bot/node_modules/statuses/codes.json +65 -0
- package/slack-bot/node_modules/statuses/index.js +146 -0
- package/slack-bot/node_modules/statuses/package.json +49 -0
- package/slack-bot/node_modules/stop-iteration-iterator/.eslintrc +14 -0
- package/slack-bot/node_modules/stop-iteration-iterator/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/stop-iteration-iterator/.nycrc +13 -0
- package/slack-bot/node_modules/stop-iteration-iterator/CHANGELOG.md +31 -0
- package/slack-bot/node_modules/stop-iteration-iterator/LICENSE +21 -0
- package/slack-bot/node_modules/stop-iteration-iterator/README.md +42 -0
- package/slack-bot/node_modules/stop-iteration-iterator/index.d.ts +7 -0
- package/slack-bot/node_modules/stop-iteration-iterator/index.js +46 -0
- package/slack-bot/node_modules/stop-iteration-iterator/package.json +77 -0
- package/slack-bot/node_modules/stop-iteration-iterator/test/index.js +51 -0
- package/slack-bot/node_modules/stop-iteration-iterator/tsconfig.json +6 -0
- package/slack-bot/node_modules/string.prototype.trim/.editorconfig +20 -0
- package/slack-bot/node_modules/string.prototype.trim/.eslintrc +25 -0
- package/slack-bot/node_modules/string.prototype.trim/.nycrc +9 -0
- package/slack-bot/node_modules/string.prototype.trim/CHANGELOG.md +202 -0
- package/slack-bot/node_modules/string.prototype.trim/LICENSE +21 -0
- package/slack-bot/node_modules/string.prototype.trim/README.md +48 -0
- package/slack-bot/node_modules/string.prototype.trim/auto.js +3 -0
- package/slack-bot/node_modules/string.prototype.trim/implementation.js +21 -0
- package/slack-bot/node_modules/string.prototype.trim/index.js +23 -0
- package/slack-bot/node_modules/string.prototype.trim/package.json +106 -0
- package/slack-bot/node_modules/string.prototype.trim/polyfill.js +19 -0
- package/slack-bot/node_modules/string.prototype.trim/shim.js +20 -0
- package/slack-bot/node_modules/string.prototype.trim/test/implementation.js +21 -0
- package/slack-bot/node_modules/string.prototype.trim/test/index.js +17 -0
- package/slack-bot/node_modules/string.prototype.trim/test/shimmed.js +36 -0
- package/slack-bot/node_modules/string.prototype.trim/test/tests.js +62 -0
- package/slack-bot/node_modules/string.prototype.trimend/.editorconfig +20 -0
- package/slack-bot/node_modules/string.prototype.trimend/.eslintrc +24 -0
- package/slack-bot/node_modules/string.prototype.trimend/.nycrc +9 -0
- package/slack-bot/node_modules/string.prototype.trimend/CHANGELOG.md +128 -0
- package/slack-bot/node_modules/string.prototype.trimend/LICENSE +21 -0
- package/slack-bot/node_modules/string.prototype.trimend/README.md +46 -0
- package/slack-bot/node_modules/string.prototype.trimend/auto.js +3 -0
- package/slack-bot/node_modules/string.prototype.trimend/implementation.js +15 -0
- package/slack-bot/node_modules/string.prototype.trimend/index.js +23 -0
- package/slack-bot/node_modules/string.prototype.trimend/package.json +83 -0
- package/slack-bot/node_modules/string.prototype.trimend/polyfill.js +15 -0
- package/slack-bot/node_modules/string.prototype.trimend/shim.js +14 -0
- package/slack-bot/node_modules/string.prototype.trimend/test/implementation.js +20 -0
- package/slack-bot/node_modules/string.prototype.trimend/test/index.js +17 -0
- package/slack-bot/node_modules/string.prototype.trimend/test/shimmed.js +36 -0
- package/slack-bot/node_modules/string.prototype.trimend/test/tests.js +31 -0
- package/slack-bot/node_modules/string.prototype.trimstart/.editorconfig +20 -0
- package/slack-bot/node_modules/string.prototype.trimstart/.eslintrc +24 -0
- package/slack-bot/node_modules/string.prototype.trimstart/.nycrc +9 -0
- package/slack-bot/node_modules/string.prototype.trimstart/CHANGELOG.md +118 -0
- package/slack-bot/node_modules/string.prototype.trimstart/LICENSE +21 -0
- package/slack-bot/node_modules/string.prototype.trimstart/README.md +46 -0
- package/slack-bot/node_modules/string.prototype.trimstart/auto.js +3 -0
- package/slack-bot/node_modules/string.prototype.trimstart/implementation.js +15 -0
- package/slack-bot/node_modules/string.prototype.trimstart/index.js +23 -0
- package/slack-bot/node_modules/string.prototype.trimstart/package.json +82 -0
- package/slack-bot/node_modules/string.prototype.trimstart/polyfill.js +15 -0
- package/slack-bot/node_modules/string.prototype.trimstart/shim.js +14 -0
- package/slack-bot/node_modules/string.prototype.trimstart/test/implementation.js +20 -0
- package/slack-bot/node_modules/string.prototype.trimstart/test/index.js +18 -0
- package/slack-bot/node_modules/string.prototype.trimstart/test/shimmed.js +36 -0
- package/slack-bot/node_modules/string.prototype.trimstart/test/tests.js +31 -0
- package/slack-bot/node_modules/toidentifier/HISTORY.md +9 -0
- package/slack-bot/node_modules/toidentifier/LICENSE +21 -0
- package/slack-bot/node_modules/toidentifier/README.md +61 -0
- package/slack-bot/node_modules/toidentifier/index.js +32 -0
- package/slack-bot/node_modules/toidentifier/package.json +38 -0
- package/slack-bot/node_modules/tsscmp/.travis.yml +18 -0
- package/slack-bot/node_modules/tsscmp/LICENSE +21 -0
- package/slack-bot/node_modules/tsscmp/README.md +48 -0
- package/slack-bot/node_modules/tsscmp/appveyor.yml +29 -0
- package/slack-bot/node_modules/tsscmp/lib/index.js +38 -0
- package/slack-bot/node_modules/tsscmp/package.json +29 -0
- package/slack-bot/node_modules/tsscmp/test/benchmark/index.js +30 -0
- package/slack-bot/node_modules/tsscmp/test/unit/index.js +69 -0
- package/slack-bot/node_modules/type-is/HISTORY.md +259 -0
- package/slack-bot/node_modules/type-is/LICENSE +23 -0
- package/slack-bot/node_modules/type-is/README.md +170 -0
- package/slack-bot/node_modules/type-is/index.js +266 -0
- package/slack-bot/node_modules/type-is/package.json +45 -0
- package/slack-bot/node_modules/typed-array-buffer/.eslintrc +13 -0
- package/slack-bot/node_modules/typed-array-buffer/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/typed-array-buffer/.nycrc +13 -0
- package/slack-bot/node_modules/typed-array-buffer/CHANGELOG.md +50 -0
- package/slack-bot/node_modules/typed-array-buffer/LICENSE +21 -0
- package/slack-bot/node_modules/typed-array-buffer/README.md +42 -0
- package/slack-bot/node_modules/typed-array-buffer/index.d.ts +9 -0
- package/slack-bot/node_modules/typed-array-buffer/index.js +19 -0
- package/slack-bot/node_modules/typed-array-buffer/package.json +82 -0
- package/slack-bot/node_modules/typed-array-buffer/test/index.js +23 -0
- package/slack-bot/node_modules/typed-array-buffer/tsconfig.json +9 -0
- package/slack-bot/node_modules/typed-array-byte-length/.eslintrc +12 -0
- package/slack-bot/node_modules/typed-array-byte-length/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/typed-array-byte-length/.nycrc +13 -0
- package/slack-bot/node_modules/typed-array-byte-length/CHANGELOG.md +44 -0
- package/slack-bot/node_modules/typed-array-byte-length/LICENSE +21 -0
- package/slack-bot/node_modules/typed-array-byte-length/README.md +70 -0
- package/slack-bot/node_modules/typed-array-byte-length/index.d.ts +10 -0
- package/slack-bot/node_modules/typed-array-byte-length/index.js +85 -0
- package/slack-bot/node_modules/typed-array-byte-length/package.json +113 -0
- package/slack-bot/node_modules/typed-array-byte-length/test/index.js +83 -0
- package/slack-bot/node_modules/typed-array-byte-length/tsconfig.json +9 -0
- package/slack-bot/node_modules/typed-array-byte-offset/.eslintrc +8 -0
- package/slack-bot/node_modules/typed-array-byte-offset/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/typed-array-byte-offset/.nycrc +13 -0
- package/slack-bot/node_modules/typed-array-byte-offset/CHANGELOG.md +61 -0
- package/slack-bot/node_modules/typed-array-byte-offset/LICENSE +21 -0
- package/slack-bot/node_modules/typed-array-byte-offset/README.md +70 -0
- package/slack-bot/node_modules/typed-array-byte-offset/index.d.ts +14 -0
- package/slack-bot/node_modules/typed-array-byte-offset/index.js +79 -0
- package/slack-bot/node_modules/typed-array-byte-offset/package.json +116 -0
- package/slack-bot/node_modules/typed-array-byte-offset/test/index.js +78 -0
- package/slack-bot/node_modules/typed-array-byte-offset/tsconfig.json +10 -0
- package/slack-bot/node_modules/typed-array-length/.eslintrc +11 -0
- package/slack-bot/node_modules/typed-array-length/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/typed-array-length/.nycrc +13 -0
- package/slack-bot/node_modules/typed-array-length/CHANGELOG.md +106 -0
- package/slack-bot/node_modules/typed-array-length/LICENSE +21 -0
- package/slack-bot/node_modules/typed-array-length/README.md +64 -0
- package/slack-bot/node_modules/typed-array-length/index.d.ts +23 -0
- package/slack-bot/node_modules/typed-array-length/index.js +80 -0
- package/slack-bot/node_modules/typed-array-length/package.json +110 -0
- package/slack-bot/node_modules/typed-array-length/test/index.js +74 -0
- package/slack-bot/node_modules/typed-array-length/tsconfig.json +10 -0
- package/slack-bot/node_modules/unbox-primitive/.editorconfig +20 -0
- package/slack-bot/node_modules/unbox-primitive/.eslintrc +5 -0
- package/slack-bot/node_modules/unbox-primitive/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/unbox-primitive/.nycrc +13 -0
- package/slack-bot/node_modules/unbox-primitive/CHANGELOG.md +79 -0
- package/slack-bot/node_modules/unbox-primitive/LICENSE +21 -0
- package/slack-bot/node_modules/unbox-primitive/README.md +47 -0
- package/slack-bot/node_modules/unbox-primitive/index.d.ts +13 -0
- package/slack-bot/node_modules/unbox-primitive/index.js +42 -0
- package/slack-bot/node_modules/unbox-primitive/package.json +84 -0
- package/slack-bot/node_modules/unbox-primitive/test/index.js +59 -0
- package/slack-bot/node_modules/unbox-primitive/tsconfig.json +6 -0
- package/slack-bot/node_modules/undici-types/LICENSE +21 -0
- package/slack-bot/node_modules/undici-types/README.md +6 -0
- package/slack-bot/node_modules/undici-types/agent.d.ts +32 -0
- package/slack-bot/node_modules/undici-types/api.d.ts +43 -0
- package/slack-bot/node_modules/undici-types/balanced-pool.d.ts +30 -0
- package/slack-bot/node_modules/undici-types/cache-interceptor.d.ts +173 -0
- package/slack-bot/node_modules/undici-types/cache.d.ts +36 -0
- package/slack-bot/node_modules/undici-types/client-stats.d.ts +15 -0
- package/slack-bot/node_modules/undici-types/client.d.ts +108 -0
- package/slack-bot/node_modules/undici-types/connector.d.ts +34 -0
- package/slack-bot/node_modules/undici-types/content-type.d.ts +21 -0
- package/slack-bot/node_modules/undici-types/cookies.d.ts +30 -0
- package/slack-bot/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
- package/slack-bot/node_modules/undici-types/dispatcher.d.ts +276 -0
- package/slack-bot/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
- package/slack-bot/node_modules/undici-types/errors.d.ts +161 -0
- package/slack-bot/node_modules/undici-types/eventsource.d.ts +66 -0
- package/slack-bot/node_modules/undici-types/fetch.d.ts +211 -0
- package/slack-bot/node_modules/undici-types/formdata.d.ts +108 -0
- package/slack-bot/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/slack-bot/node_modules/undici-types/global-origin.d.ts +7 -0
- package/slack-bot/node_modules/undici-types/h2c-client.d.ts +73 -0
- package/slack-bot/node_modules/undici-types/handlers.d.ts +15 -0
- package/slack-bot/node_modules/undici-types/header.d.ts +160 -0
- package/slack-bot/node_modules/undici-types/index.d.ts +88 -0
- package/slack-bot/node_modules/undici-types/interceptors.d.ts +73 -0
- package/slack-bot/node_modules/undici-types/mock-agent.d.ts +68 -0
- package/slack-bot/node_modules/undici-types/mock-call-history.d.ts +111 -0
- package/slack-bot/node_modules/undici-types/mock-client.d.ts +27 -0
- package/slack-bot/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/slack-bot/node_modules/undici-types/mock-interceptor.d.ts +94 -0
- package/slack-bot/node_modules/undici-types/mock-pool.d.ts +27 -0
- package/slack-bot/node_modules/undici-types/package.json +55 -0
- package/slack-bot/node_modules/undici-types/patch.d.ts +29 -0
- package/slack-bot/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/slack-bot/node_modules/undici-types/pool.d.ts +41 -0
- package/slack-bot/node_modules/undici-types/proxy-agent.d.ts +29 -0
- package/slack-bot/node_modules/undici-types/readable.d.ts +68 -0
- package/slack-bot/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/slack-bot/node_modules/undici-types/retry-handler.d.ts +125 -0
- package/slack-bot/node_modules/undici-types/round-robin-pool.d.ts +41 -0
- package/slack-bot/node_modules/undici-types/snapshot-agent.d.ts +109 -0
- package/slack-bot/node_modules/undici-types/util.d.ts +18 -0
- package/slack-bot/node_modules/undici-types/utility.d.ts +7 -0
- package/slack-bot/node_modules/undici-types/webidl.d.ts +341 -0
- package/slack-bot/node_modules/undici-types/websocket.d.ts +186 -0
- package/slack-bot/node_modules/unpipe/HISTORY.md +4 -0
- package/slack-bot/node_modules/unpipe/LICENSE +22 -0
- package/slack-bot/node_modules/unpipe/README.md +43 -0
- package/slack-bot/node_modules/unpipe/index.js +69 -0
- package/slack-bot/node_modules/unpipe/package.json +27 -0
- package/slack-bot/node_modules/utils-merge/LICENSE +20 -0
- package/slack-bot/node_modules/utils-merge/README.md +34 -0
- package/slack-bot/node_modules/utils-merge/index.js +23 -0
- package/slack-bot/node_modules/utils-merge/package.json +40 -0
- package/slack-bot/node_modules/vary/HISTORY.md +39 -0
- package/slack-bot/node_modules/vary/LICENSE +22 -0
- package/slack-bot/node_modules/vary/README.md +101 -0
- package/slack-bot/node_modules/vary/index.js +149 -0
- package/slack-bot/node_modules/vary/package.json +43 -0
- package/slack-bot/node_modules/which-boxed-primitive/.editorconfig +20 -0
- package/slack-bot/node_modules/which-boxed-primitive/.eslintrc +5 -0
- package/slack-bot/node_modules/which-boxed-primitive/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/which-boxed-primitive/.nycrc +13 -0
- package/slack-bot/node_modules/which-boxed-primitive/CHANGELOG.md +82 -0
- package/slack-bot/node_modules/which-boxed-primitive/LICENSE +21 -0
- package/slack-bot/node_modules/which-boxed-primitive/README.md +73 -0
- package/slack-bot/node_modules/which-boxed-primitive/index.d.ts +11 -0
- package/slack-bot/node_modules/which-boxed-primitive/index.js +31 -0
- package/slack-bot/node_modules/which-boxed-primitive/package.json +83 -0
- package/slack-bot/node_modules/which-boxed-primitive/test/index.js +46 -0
- package/slack-bot/node_modules/which-boxed-primitive/tsconfig.json +9 -0
- package/slack-bot/node_modules/which-builtin-type/.eslintrc +14 -0
- package/slack-bot/node_modules/which-builtin-type/.nycrc +9 -0
- package/slack-bot/node_modules/which-builtin-type/CHANGELOG.md +113 -0
- package/slack-bot/node_modules/which-builtin-type/LICENSE +21 -0
- package/slack-bot/node_modules/which-builtin-type/README.md +67 -0
- package/slack-bot/node_modules/which-builtin-type/index.d.ts +21 -0
- package/slack-bot/node_modules/which-builtin-type/index.js +132 -0
- package/slack-bot/node_modules/which-builtin-type/package.json +111 -0
- package/slack-bot/node_modules/which-builtin-type/test/index.js +184 -0
- package/slack-bot/node_modules/which-builtin-type/tsconfig.json +9 -0
- package/slack-bot/node_modules/which-collection/.eslintrc +5 -0
- package/slack-bot/node_modules/which-collection/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/which-collection/.nycrc +13 -0
- package/slack-bot/node_modules/which-collection/CHANGELOG.md +63 -0
- package/slack-bot/node_modules/which-collection/LICENSE +21 -0
- package/slack-bot/node_modules/which-collection/README.md +65 -0
- package/slack-bot/node_modules/which-collection/index.d.ts +13 -0
- package/slack-bot/node_modules/which-collection/index.js +25 -0
- package/slack-bot/node_modules/which-collection/package.json +85 -0
- package/slack-bot/node_modules/which-collection/test/index.js +59 -0
- package/slack-bot/node_modules/which-collection/tsconfig.json +49 -0
- package/slack-bot/node_modules/which-typed-array/.editorconfig +20 -0
- package/slack-bot/node_modules/which-typed-array/.eslintrc +10 -0
- package/slack-bot/node_modules/which-typed-array/.github/FUNDING.yml +12 -0
- package/slack-bot/node_modules/which-typed-array/.nycrc +13 -0
- package/slack-bot/node_modules/which-typed-array/CHANGELOG.md +269 -0
- package/slack-bot/node_modules/which-typed-array/LICENSE +22 -0
- package/slack-bot/node_modules/which-typed-array/README.md +70 -0
- package/slack-bot/node_modules/which-typed-array/index.d.ts +66 -0
- package/slack-bot/node_modules/which-typed-array/index.js +122 -0
- package/slack-bot/node_modules/which-typed-array/package.json +130 -0
- package/slack-bot/node_modules/which-typed-array/test/index.js +105 -0
- package/slack-bot/node_modules/which-typed-array/tsconfig.json +9 -0
- package/slack-bot/node_modules/ws/LICENSE +21 -0
- package/slack-bot/node_modules/ws/README.md +495 -0
- package/slack-bot/node_modules/ws/browser.js +8 -0
- package/slack-bot/node_modules/ws/index.js +10 -0
- package/slack-bot/node_modules/ws/lib/buffer-util.js +129 -0
- package/slack-bot/node_modules/ws/lib/constants.js +10 -0
- package/slack-bot/node_modules/ws/lib/event-target.js +184 -0
- package/slack-bot/node_modules/ws/lib/extension.js +223 -0
- package/slack-bot/node_modules/ws/lib/limiter.js +55 -0
- package/slack-bot/node_modules/ws/lib/permessage-deflate.js +518 -0
- package/slack-bot/node_modules/ws/lib/receiver.js +607 -0
- package/slack-bot/node_modules/ws/lib/sender.js +409 -0
- package/slack-bot/node_modules/ws/lib/stream.js +180 -0
- package/slack-bot/node_modules/ws/lib/validation.js +104 -0
- package/slack-bot/node_modules/ws/lib/websocket-server.js +449 -0
- package/slack-bot/node_modules/ws/lib/websocket.js +1197 -0
- package/slack-bot/node_modules/ws/package.json +56 -0
- package/slack-bot/package-lock.json +2794 -0
- package/slack-bot/package.json +22 -0
- package/slack-bot/setup.js +51 -0
- package/slack-bot/src/config.js +50 -0
- package/slack-bot/src/handlers/app-mention.js +38 -0
- package/slack-bot/src/index.js +38 -0
- package/slack-bot/src/utils/report.js +38 -0
- package/slack-bot/src/workers/qa-job.js +111 -0
|
@@ -0,0 +1,4065 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `node:crypto` module provides cryptographic functionality that includes a
|
|
3
|
+
* set of wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify
|
|
4
|
+
* functions.
|
|
5
|
+
*
|
|
6
|
+
* ```js
|
|
7
|
+
* const { createHmac } = await import('node:crypto');
|
|
8
|
+
*
|
|
9
|
+
* const secret = 'abcdefg';
|
|
10
|
+
* const hash = createHmac('sha256', secret)
|
|
11
|
+
* .update('I love cupcakes')
|
|
12
|
+
* .digest('hex');
|
|
13
|
+
* console.log(hash);
|
|
14
|
+
* // Prints:
|
|
15
|
+
* // c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e
|
|
16
|
+
* ```
|
|
17
|
+
* @see [source](https://github.com/nodejs/node/blob/v25.x/lib/crypto.js)
|
|
18
|
+
*/
|
|
19
|
+
declare module "node:crypto" {
|
|
20
|
+
import { NonSharedBuffer } from "node:buffer";
|
|
21
|
+
import * as stream from "node:stream";
|
|
22
|
+
import { PeerCertificate } from "node:tls";
|
|
23
|
+
/**
|
|
24
|
+
* SPKAC is a Certificate Signing Request mechanism originally implemented by
|
|
25
|
+
* Netscape and was specified formally as part of HTML5's `keygen` element.
|
|
26
|
+
*
|
|
27
|
+
* `<keygen>` is deprecated since [HTML 5.2](https://www.w3.org/TR/html52/changes.html#features-removed) and new projects
|
|
28
|
+
* should not use this element anymore.
|
|
29
|
+
*
|
|
30
|
+
* The `node:crypto` module provides the `Certificate` class for working with SPKAC
|
|
31
|
+
* data. The most common usage is handling output generated by the HTML5 `<keygen>` element. Node.js uses [OpenSSL's SPKAC
|
|
32
|
+
* implementation](https://www.openssl.org/docs/man3.0/man1/openssl-spkac.html) internally.
|
|
33
|
+
* @since v0.11.8
|
|
34
|
+
*/
|
|
35
|
+
class Certificate {
|
|
36
|
+
/**
|
|
37
|
+
* ```js
|
|
38
|
+
* const { Certificate } = await import('node:crypto');
|
|
39
|
+
* const spkac = getSpkacSomehow();
|
|
40
|
+
* const challenge = Certificate.exportChallenge(spkac);
|
|
41
|
+
* console.log(challenge.toString('utf8'));
|
|
42
|
+
* // Prints: the challenge as a UTF8 string
|
|
43
|
+
* ```
|
|
44
|
+
* @since v9.0.0
|
|
45
|
+
* @param encoding The `encoding` of the `spkac` string.
|
|
46
|
+
* @return The challenge component of the `spkac` data structure, which includes a public key and a challenge.
|
|
47
|
+
*/
|
|
48
|
+
static exportChallenge(spkac: BinaryLike): NonSharedBuffer;
|
|
49
|
+
/**
|
|
50
|
+
* ```js
|
|
51
|
+
* const { Certificate } = await import('node:crypto');
|
|
52
|
+
* const spkac = getSpkacSomehow();
|
|
53
|
+
* const publicKey = Certificate.exportPublicKey(spkac);
|
|
54
|
+
* console.log(publicKey);
|
|
55
|
+
* // Prints: the public key as <Buffer ...>
|
|
56
|
+
* ```
|
|
57
|
+
* @since v9.0.0
|
|
58
|
+
* @param encoding The `encoding` of the `spkac` string.
|
|
59
|
+
* @return The public key component of the `spkac` data structure, which includes a public key and a challenge.
|
|
60
|
+
*/
|
|
61
|
+
static exportPublicKey(spkac: BinaryLike, encoding?: string): NonSharedBuffer;
|
|
62
|
+
/**
|
|
63
|
+
* ```js
|
|
64
|
+
* import { Buffer } from 'node:buffer';
|
|
65
|
+
* const { Certificate } = await import('node:crypto');
|
|
66
|
+
*
|
|
67
|
+
* const spkac = getSpkacSomehow();
|
|
68
|
+
* console.log(Certificate.verifySpkac(Buffer.from(spkac)));
|
|
69
|
+
* // Prints: true or false
|
|
70
|
+
* ```
|
|
71
|
+
* @since v9.0.0
|
|
72
|
+
* @param encoding The `encoding` of the `spkac` string.
|
|
73
|
+
* @return `true` if the given `spkac` data structure is valid, `false` otherwise.
|
|
74
|
+
*/
|
|
75
|
+
static verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;
|
|
76
|
+
/**
|
|
77
|
+
* @deprecated
|
|
78
|
+
* @param spkac
|
|
79
|
+
* @returns The challenge component of the `spkac` data structure,
|
|
80
|
+
* which includes a public key and a challenge.
|
|
81
|
+
*/
|
|
82
|
+
exportChallenge(spkac: BinaryLike): NonSharedBuffer;
|
|
83
|
+
/**
|
|
84
|
+
* @deprecated
|
|
85
|
+
* @param spkac
|
|
86
|
+
* @param encoding The encoding of the spkac string.
|
|
87
|
+
* @returns The public key component of the `spkac` data structure,
|
|
88
|
+
* which includes a public key and a challenge.
|
|
89
|
+
*/
|
|
90
|
+
exportPublicKey(spkac: BinaryLike, encoding?: string): NonSharedBuffer;
|
|
91
|
+
/**
|
|
92
|
+
* @deprecated
|
|
93
|
+
* @param spkac
|
|
94
|
+
* @returns `true` if the given `spkac` data structure is valid,
|
|
95
|
+
* `false` otherwise.
|
|
96
|
+
*/
|
|
97
|
+
verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;
|
|
98
|
+
}
|
|
99
|
+
namespace constants {
|
|
100
|
+
// https://nodejs.org/dist/latest-v25.x/docs/api/crypto.html#crypto-constants
|
|
101
|
+
const OPENSSL_VERSION_NUMBER: number;
|
|
102
|
+
/** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */
|
|
103
|
+
const SSL_OP_ALL: number;
|
|
104
|
+
/** Instructs OpenSSL to allow a non-[EC]DHE-based key exchange mode for TLS v1.3 */
|
|
105
|
+
const SSL_OP_ALLOW_NO_DHE_KEX: number;
|
|
106
|
+
/** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */
|
|
107
|
+
const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number;
|
|
108
|
+
/** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */
|
|
109
|
+
const SSL_OP_CIPHER_SERVER_PREFERENCE: number;
|
|
110
|
+
/** Instructs OpenSSL to use Cisco's version identifier of DTLS_BAD_VER. */
|
|
111
|
+
const SSL_OP_CISCO_ANYCONNECT: number;
|
|
112
|
+
/** Instructs OpenSSL to turn on cookie exchange. */
|
|
113
|
+
const SSL_OP_COOKIE_EXCHANGE: number;
|
|
114
|
+
/** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */
|
|
115
|
+
const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number;
|
|
116
|
+
/** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */
|
|
117
|
+
const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number;
|
|
118
|
+
/** Allows initial connection to servers that do not support RI. */
|
|
119
|
+
const SSL_OP_LEGACY_SERVER_CONNECT: number;
|
|
120
|
+
/** Instructs OpenSSL to disable support for SSL/TLS compression. */
|
|
121
|
+
const SSL_OP_NO_COMPRESSION: number;
|
|
122
|
+
/** Instructs OpenSSL to disable encrypt-then-MAC. */
|
|
123
|
+
const SSL_OP_NO_ENCRYPT_THEN_MAC: number;
|
|
124
|
+
const SSL_OP_NO_QUERY_MTU: number;
|
|
125
|
+
/** Instructs OpenSSL to disable renegotiation. */
|
|
126
|
+
const SSL_OP_NO_RENEGOTIATION: number;
|
|
127
|
+
/** Instructs OpenSSL to always start a new session when performing renegotiation. */
|
|
128
|
+
const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number;
|
|
129
|
+
/** Instructs OpenSSL to turn off SSL v2 */
|
|
130
|
+
const SSL_OP_NO_SSLv2: number;
|
|
131
|
+
/** Instructs OpenSSL to turn off SSL v3 */
|
|
132
|
+
const SSL_OP_NO_SSLv3: number;
|
|
133
|
+
/** Instructs OpenSSL to disable use of RFC4507bis tickets. */
|
|
134
|
+
const SSL_OP_NO_TICKET: number;
|
|
135
|
+
/** Instructs OpenSSL to turn off TLS v1 */
|
|
136
|
+
const SSL_OP_NO_TLSv1: number;
|
|
137
|
+
/** Instructs OpenSSL to turn off TLS v1.1 */
|
|
138
|
+
const SSL_OP_NO_TLSv1_1: number;
|
|
139
|
+
/** Instructs OpenSSL to turn off TLS v1.2 */
|
|
140
|
+
const SSL_OP_NO_TLSv1_2: number;
|
|
141
|
+
/** Instructs OpenSSL to turn off TLS v1.3 */
|
|
142
|
+
const SSL_OP_NO_TLSv1_3: number;
|
|
143
|
+
/** Instructs OpenSSL server to prioritize ChaCha20-Poly1305 when the client does. This option has no effect if `SSL_OP_CIPHER_SERVER_PREFERENCE` is not enabled. */
|
|
144
|
+
const SSL_OP_PRIORITIZE_CHACHA: number;
|
|
145
|
+
/** Instructs OpenSSL to disable version rollback attack detection. */
|
|
146
|
+
const SSL_OP_TLS_ROLLBACK_BUG: number;
|
|
147
|
+
const ENGINE_METHOD_RSA: number;
|
|
148
|
+
const ENGINE_METHOD_DSA: number;
|
|
149
|
+
const ENGINE_METHOD_DH: number;
|
|
150
|
+
const ENGINE_METHOD_RAND: number;
|
|
151
|
+
const ENGINE_METHOD_EC: number;
|
|
152
|
+
const ENGINE_METHOD_CIPHERS: number;
|
|
153
|
+
const ENGINE_METHOD_DIGESTS: number;
|
|
154
|
+
const ENGINE_METHOD_PKEY_METHS: number;
|
|
155
|
+
const ENGINE_METHOD_PKEY_ASN1_METHS: number;
|
|
156
|
+
const ENGINE_METHOD_ALL: number;
|
|
157
|
+
const ENGINE_METHOD_NONE: number;
|
|
158
|
+
const DH_CHECK_P_NOT_SAFE_PRIME: number;
|
|
159
|
+
const DH_CHECK_P_NOT_PRIME: number;
|
|
160
|
+
const DH_UNABLE_TO_CHECK_GENERATOR: number;
|
|
161
|
+
const DH_NOT_SUITABLE_GENERATOR: number;
|
|
162
|
+
const RSA_PKCS1_PADDING: number;
|
|
163
|
+
const RSA_SSLV23_PADDING: number;
|
|
164
|
+
const RSA_NO_PADDING: number;
|
|
165
|
+
const RSA_PKCS1_OAEP_PADDING: number;
|
|
166
|
+
const RSA_X931_PADDING: number;
|
|
167
|
+
const RSA_PKCS1_PSS_PADDING: number;
|
|
168
|
+
/** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */
|
|
169
|
+
const RSA_PSS_SALTLEN_DIGEST: number;
|
|
170
|
+
/** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */
|
|
171
|
+
const RSA_PSS_SALTLEN_MAX_SIGN: number;
|
|
172
|
+
/** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */
|
|
173
|
+
const RSA_PSS_SALTLEN_AUTO: number;
|
|
174
|
+
const POINT_CONVERSION_COMPRESSED: number;
|
|
175
|
+
const POINT_CONVERSION_UNCOMPRESSED: number;
|
|
176
|
+
const POINT_CONVERSION_HYBRID: number;
|
|
177
|
+
/** Specifies the built-in default cipher list used by Node.js (colon-separated values). */
|
|
178
|
+
const defaultCoreCipherList: string;
|
|
179
|
+
/** Specifies the active default cipher list used by the current Node.js process (colon-separated values). */
|
|
180
|
+
const defaultCipherList: string;
|
|
181
|
+
}
|
|
182
|
+
interface HashOptions extends stream.TransformOptions {
|
|
183
|
+
/**
|
|
184
|
+
* For XOF hash functions such as `shake256`, the
|
|
185
|
+
* outputLength option can be used to specify the desired output length in bytes.
|
|
186
|
+
*/
|
|
187
|
+
outputLength?: number | undefined;
|
|
188
|
+
}
|
|
189
|
+
/** @deprecated since v10.0.0 */
|
|
190
|
+
const fips: boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Creates and returns a `Hash` object that can be used to generate hash digests
|
|
193
|
+
* using the given `algorithm`. Optional `options` argument controls stream
|
|
194
|
+
* behavior. For XOF hash functions such as `'shake256'`, the `outputLength` option
|
|
195
|
+
* can be used to specify the desired output length in bytes.
|
|
196
|
+
*
|
|
197
|
+
* The `algorithm` is dependent on the available algorithms supported by the
|
|
198
|
+
* version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
|
|
199
|
+
* On recent releases of OpenSSL, `openssl list -digest-algorithms` will
|
|
200
|
+
* display the available digest algorithms.
|
|
201
|
+
*
|
|
202
|
+
* Example: generating the sha256 sum of a file
|
|
203
|
+
*
|
|
204
|
+
* ```js
|
|
205
|
+
* import {
|
|
206
|
+
* createReadStream,
|
|
207
|
+
* } from 'node:fs';
|
|
208
|
+
* import { argv } from 'node:process';
|
|
209
|
+
* const {
|
|
210
|
+
* createHash,
|
|
211
|
+
* } = await import('node:crypto');
|
|
212
|
+
*
|
|
213
|
+
* const filename = argv[2];
|
|
214
|
+
*
|
|
215
|
+
* const hash = createHash('sha256');
|
|
216
|
+
*
|
|
217
|
+
* const input = createReadStream(filename);
|
|
218
|
+
* input.on('readable', () => {
|
|
219
|
+
* // Only one element is going to be produced by the
|
|
220
|
+
* // hash stream.
|
|
221
|
+
* const data = input.read();
|
|
222
|
+
* if (data)
|
|
223
|
+
* hash.update(data);
|
|
224
|
+
* else {
|
|
225
|
+
* console.log(`${hash.digest('hex')} ${filename}`);
|
|
226
|
+
* }
|
|
227
|
+
* });
|
|
228
|
+
* ```
|
|
229
|
+
* @since v0.1.92
|
|
230
|
+
* @param options `stream.transform` options
|
|
231
|
+
*/
|
|
232
|
+
function createHash(algorithm: string, options?: HashOptions): Hash;
|
|
233
|
+
/**
|
|
234
|
+
* Creates and returns an `Hmac` object that uses the given `algorithm` and `key`.
|
|
235
|
+
* Optional `options` argument controls stream behavior.
|
|
236
|
+
*
|
|
237
|
+
* The `algorithm` is dependent on the available algorithms supported by the
|
|
238
|
+
* version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
|
|
239
|
+
* On recent releases of OpenSSL, `openssl list -digest-algorithms` will
|
|
240
|
+
* display the available digest algorithms.
|
|
241
|
+
*
|
|
242
|
+
* The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is
|
|
243
|
+
* a `KeyObject`, its type must be `secret`. If it is a string, please consider `caveats when using strings as inputs to cryptographic APIs`. If it was
|
|
244
|
+
* obtained from a cryptographically secure source of entropy, such as {@link randomBytes} or {@link generateKey}, its length should not
|
|
245
|
+
* exceed the block size of `algorithm` (e.g., 512 bits for SHA-256).
|
|
246
|
+
*
|
|
247
|
+
* Example: generating the sha256 HMAC of a file
|
|
248
|
+
*
|
|
249
|
+
* ```js
|
|
250
|
+
* import {
|
|
251
|
+
* createReadStream,
|
|
252
|
+
* } from 'node:fs';
|
|
253
|
+
* import { argv } from 'node:process';
|
|
254
|
+
* const {
|
|
255
|
+
* createHmac,
|
|
256
|
+
* } = await import('node:crypto');
|
|
257
|
+
*
|
|
258
|
+
* const filename = argv[2];
|
|
259
|
+
*
|
|
260
|
+
* const hmac = createHmac('sha256', 'a secret');
|
|
261
|
+
*
|
|
262
|
+
* const input = createReadStream(filename);
|
|
263
|
+
* input.on('readable', () => {
|
|
264
|
+
* // Only one element is going to be produced by the
|
|
265
|
+
* // hash stream.
|
|
266
|
+
* const data = input.read();
|
|
267
|
+
* if (data)
|
|
268
|
+
* hmac.update(data);
|
|
269
|
+
* else {
|
|
270
|
+
* console.log(`${hmac.digest('hex')} ${filename}`);
|
|
271
|
+
* }
|
|
272
|
+
* });
|
|
273
|
+
* ```
|
|
274
|
+
* @since v0.1.94
|
|
275
|
+
* @param options `stream.transform` options
|
|
276
|
+
*/
|
|
277
|
+
function createHmac(algorithm: string, key: BinaryLike | KeyObject, options?: stream.TransformOptions): Hmac;
|
|
278
|
+
// https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings
|
|
279
|
+
type BinaryToTextEncoding = "base64" | "base64url" | "hex" | "binary";
|
|
280
|
+
type CharacterEncoding = "utf8" | "utf-8" | "utf16le" | "utf-16le" | "latin1";
|
|
281
|
+
type LegacyCharacterEncoding = "ascii" | "binary" | "ucs2" | "ucs-2";
|
|
282
|
+
type Encoding = BinaryToTextEncoding | CharacterEncoding | LegacyCharacterEncoding;
|
|
283
|
+
type ECDHKeyFormat = "compressed" | "uncompressed" | "hybrid";
|
|
284
|
+
/**
|
|
285
|
+
* The `Hash` class is a utility for creating hash digests of data. It can be
|
|
286
|
+
* used in one of two ways:
|
|
287
|
+
*
|
|
288
|
+
* * As a `stream` that is both readable and writable, where data is written
|
|
289
|
+
* to produce a computed hash digest on the readable side, or
|
|
290
|
+
* * Using the `hash.update()` and `hash.digest()` methods to produce the
|
|
291
|
+
* computed hash.
|
|
292
|
+
*
|
|
293
|
+
* The {@link createHash} method is used to create `Hash` instances. `Hash`objects are not to be created directly using the `new` keyword.
|
|
294
|
+
*
|
|
295
|
+
* Example: Using `Hash` objects as streams:
|
|
296
|
+
*
|
|
297
|
+
* ```js
|
|
298
|
+
* const {
|
|
299
|
+
* createHash,
|
|
300
|
+
* } = await import('node:crypto');
|
|
301
|
+
*
|
|
302
|
+
* const hash = createHash('sha256');
|
|
303
|
+
*
|
|
304
|
+
* hash.on('readable', () => {
|
|
305
|
+
* // Only one element is going to be produced by the
|
|
306
|
+
* // hash stream.
|
|
307
|
+
* const data = hash.read();
|
|
308
|
+
* if (data) {
|
|
309
|
+
* console.log(data.toString('hex'));
|
|
310
|
+
* // Prints:
|
|
311
|
+
* // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50
|
|
312
|
+
* }
|
|
313
|
+
* });
|
|
314
|
+
*
|
|
315
|
+
* hash.write('some data to hash');
|
|
316
|
+
* hash.end();
|
|
317
|
+
* ```
|
|
318
|
+
*
|
|
319
|
+
* Example: Using `Hash` and piped streams:
|
|
320
|
+
*
|
|
321
|
+
* ```js
|
|
322
|
+
* import { createReadStream } from 'node:fs';
|
|
323
|
+
* import { stdout } from 'node:process';
|
|
324
|
+
* const { createHash } = await import('node:crypto');
|
|
325
|
+
*
|
|
326
|
+
* const hash = createHash('sha256');
|
|
327
|
+
*
|
|
328
|
+
* const input = createReadStream('test.js');
|
|
329
|
+
* input.pipe(hash).setEncoding('hex').pipe(stdout);
|
|
330
|
+
* ```
|
|
331
|
+
*
|
|
332
|
+
* Example: Using the `hash.update()` and `hash.digest()` methods:
|
|
333
|
+
*
|
|
334
|
+
* ```js
|
|
335
|
+
* const {
|
|
336
|
+
* createHash,
|
|
337
|
+
* } = await import('node:crypto');
|
|
338
|
+
*
|
|
339
|
+
* const hash = createHash('sha256');
|
|
340
|
+
*
|
|
341
|
+
* hash.update('some data to hash');
|
|
342
|
+
* console.log(hash.digest('hex'));
|
|
343
|
+
* // Prints:
|
|
344
|
+
* // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50
|
|
345
|
+
* ```
|
|
346
|
+
* @since v0.1.92
|
|
347
|
+
*/
|
|
348
|
+
class Hash extends stream.Transform {
|
|
349
|
+
private constructor();
|
|
350
|
+
/**
|
|
351
|
+
* Creates a new `Hash` object that contains a deep copy of the internal state
|
|
352
|
+
* of the current `Hash` object.
|
|
353
|
+
*
|
|
354
|
+
* The optional `options` argument controls stream behavior. For XOF hash
|
|
355
|
+
* functions such as `'shake256'`, the `outputLength` option can be used to
|
|
356
|
+
* specify the desired output length in bytes.
|
|
357
|
+
*
|
|
358
|
+
* An error is thrown when an attempt is made to copy the `Hash` object after
|
|
359
|
+
* its `hash.digest()` method has been called.
|
|
360
|
+
*
|
|
361
|
+
* ```js
|
|
362
|
+
* // Calculate a rolling hash.
|
|
363
|
+
* const {
|
|
364
|
+
* createHash,
|
|
365
|
+
* } = await import('node:crypto');
|
|
366
|
+
*
|
|
367
|
+
* const hash = createHash('sha256');
|
|
368
|
+
*
|
|
369
|
+
* hash.update('one');
|
|
370
|
+
* console.log(hash.copy().digest('hex'));
|
|
371
|
+
*
|
|
372
|
+
* hash.update('two');
|
|
373
|
+
* console.log(hash.copy().digest('hex'));
|
|
374
|
+
*
|
|
375
|
+
* hash.update('three');
|
|
376
|
+
* console.log(hash.copy().digest('hex'));
|
|
377
|
+
*
|
|
378
|
+
* // Etc.
|
|
379
|
+
* ```
|
|
380
|
+
* @since v13.1.0
|
|
381
|
+
* @param options `stream.transform` options
|
|
382
|
+
*/
|
|
383
|
+
copy(options?: HashOptions): Hash;
|
|
384
|
+
/**
|
|
385
|
+
* Updates the hash content with the given `data`, the encoding of which
|
|
386
|
+
* is given in `inputEncoding`.
|
|
387
|
+
* If `encoding` is not provided, and the `data` is a string, an
|
|
388
|
+
* encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
|
|
389
|
+
*
|
|
390
|
+
* This can be called many times with new data as it is streamed.
|
|
391
|
+
* @since v0.1.92
|
|
392
|
+
* @param inputEncoding The `encoding` of the `data` string.
|
|
393
|
+
*/
|
|
394
|
+
update(data: BinaryLike): Hash;
|
|
395
|
+
update(data: string, inputEncoding: Encoding): Hash;
|
|
396
|
+
/**
|
|
397
|
+
* Calculates the digest of all of the data passed to be hashed (using the `hash.update()` method).
|
|
398
|
+
* If `encoding` is provided a string will be returned; otherwise
|
|
399
|
+
* a `Buffer` is returned.
|
|
400
|
+
*
|
|
401
|
+
* The `Hash` object can not be used again after `hash.digest()` method has been
|
|
402
|
+
* called. Multiple calls will cause an error to be thrown.
|
|
403
|
+
* @since v0.1.92
|
|
404
|
+
* @param encoding The `encoding` of the return value.
|
|
405
|
+
*/
|
|
406
|
+
digest(): NonSharedBuffer;
|
|
407
|
+
digest(encoding: BinaryToTextEncoding): string;
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* The `Hmac` class is a utility for creating cryptographic HMAC digests. It can
|
|
411
|
+
* be used in one of two ways:
|
|
412
|
+
*
|
|
413
|
+
* * As a `stream` that is both readable and writable, where data is written
|
|
414
|
+
* to produce a computed HMAC digest on the readable side, or
|
|
415
|
+
* * Using the `hmac.update()` and `hmac.digest()` methods to produce the
|
|
416
|
+
* computed HMAC digest.
|
|
417
|
+
*
|
|
418
|
+
* The {@link createHmac} method is used to create `Hmac` instances. `Hmac`objects are not to be created directly using the `new` keyword.
|
|
419
|
+
*
|
|
420
|
+
* Example: Using `Hmac` objects as streams:
|
|
421
|
+
*
|
|
422
|
+
* ```js
|
|
423
|
+
* const {
|
|
424
|
+
* createHmac,
|
|
425
|
+
* } = await import('node:crypto');
|
|
426
|
+
*
|
|
427
|
+
* const hmac = createHmac('sha256', 'a secret');
|
|
428
|
+
*
|
|
429
|
+
* hmac.on('readable', () => {
|
|
430
|
+
* // Only one element is going to be produced by the
|
|
431
|
+
* // hash stream.
|
|
432
|
+
* const data = hmac.read();
|
|
433
|
+
* if (data) {
|
|
434
|
+
* console.log(data.toString('hex'));
|
|
435
|
+
* // Prints:
|
|
436
|
+
* // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e
|
|
437
|
+
* }
|
|
438
|
+
* });
|
|
439
|
+
*
|
|
440
|
+
* hmac.write('some data to hash');
|
|
441
|
+
* hmac.end();
|
|
442
|
+
* ```
|
|
443
|
+
*
|
|
444
|
+
* Example: Using `Hmac` and piped streams:
|
|
445
|
+
*
|
|
446
|
+
* ```js
|
|
447
|
+
* import { createReadStream } from 'node:fs';
|
|
448
|
+
* import { stdout } from 'node:process';
|
|
449
|
+
* const {
|
|
450
|
+
* createHmac,
|
|
451
|
+
* } = await import('node:crypto');
|
|
452
|
+
*
|
|
453
|
+
* const hmac = createHmac('sha256', 'a secret');
|
|
454
|
+
*
|
|
455
|
+
* const input = createReadStream('test.js');
|
|
456
|
+
* input.pipe(hmac).pipe(stdout);
|
|
457
|
+
* ```
|
|
458
|
+
*
|
|
459
|
+
* Example: Using the `hmac.update()` and `hmac.digest()` methods:
|
|
460
|
+
*
|
|
461
|
+
* ```js
|
|
462
|
+
* const {
|
|
463
|
+
* createHmac,
|
|
464
|
+
* } = await import('node:crypto');
|
|
465
|
+
*
|
|
466
|
+
* const hmac = createHmac('sha256', 'a secret');
|
|
467
|
+
*
|
|
468
|
+
* hmac.update('some data to hash');
|
|
469
|
+
* console.log(hmac.digest('hex'));
|
|
470
|
+
* // Prints:
|
|
471
|
+
* // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e
|
|
472
|
+
* ```
|
|
473
|
+
* @since v0.1.94
|
|
474
|
+
*/
|
|
475
|
+
class Hmac extends stream.Transform {
|
|
476
|
+
private constructor();
|
|
477
|
+
/**
|
|
478
|
+
* Updates the `Hmac` content with the given `data`, the encoding of which
|
|
479
|
+
* is given in `inputEncoding`.
|
|
480
|
+
* If `encoding` is not provided, and the `data` is a string, an
|
|
481
|
+
* encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
|
|
482
|
+
*
|
|
483
|
+
* This can be called many times with new data as it is streamed.
|
|
484
|
+
* @since v0.1.94
|
|
485
|
+
* @param inputEncoding The `encoding` of the `data` string.
|
|
486
|
+
*/
|
|
487
|
+
update(data: BinaryLike): Hmac;
|
|
488
|
+
update(data: string, inputEncoding: Encoding): Hmac;
|
|
489
|
+
/**
|
|
490
|
+
* Calculates the HMAC digest of all of the data passed using `hmac.update()`.
|
|
491
|
+
* If `encoding` is
|
|
492
|
+
* provided a string is returned; otherwise a `Buffer` is returned;
|
|
493
|
+
*
|
|
494
|
+
* The `Hmac` object can not be used again after `hmac.digest()` has been
|
|
495
|
+
* called. Multiple calls to `hmac.digest()` will result in an error being thrown.
|
|
496
|
+
* @since v0.1.94
|
|
497
|
+
* @param encoding The `encoding` of the return value.
|
|
498
|
+
*/
|
|
499
|
+
digest(): NonSharedBuffer;
|
|
500
|
+
digest(encoding: BinaryToTextEncoding): string;
|
|
501
|
+
}
|
|
502
|
+
type KeyFormat = "pem" | "der" | "jwk";
|
|
503
|
+
type KeyObjectType = "secret" | "public" | "private";
|
|
504
|
+
type PublicKeyExportType = "pkcs1" | "spki";
|
|
505
|
+
type PrivateKeyExportType = "pkcs1" | "pkcs8" | "sec1";
|
|
506
|
+
type KeyExportOptions =
|
|
507
|
+
| SymmetricKeyExportOptions
|
|
508
|
+
| PublicKeyExportOptions
|
|
509
|
+
| PrivateKeyExportOptions
|
|
510
|
+
| JwkKeyExportOptions;
|
|
511
|
+
interface SymmetricKeyExportOptions {
|
|
512
|
+
format?: "buffer" | undefined;
|
|
513
|
+
}
|
|
514
|
+
interface PublicKeyExportOptions<T extends PublicKeyExportType = PublicKeyExportType> {
|
|
515
|
+
type: T;
|
|
516
|
+
format: Exclude<KeyFormat, "jwk">;
|
|
517
|
+
}
|
|
518
|
+
interface PrivateKeyExportOptions<T extends PrivateKeyExportType = PrivateKeyExportType> {
|
|
519
|
+
type: T;
|
|
520
|
+
format: Exclude<KeyFormat, "jwk">;
|
|
521
|
+
cipher?: string | undefined;
|
|
522
|
+
passphrase?: string | Buffer | undefined;
|
|
523
|
+
}
|
|
524
|
+
interface JwkKeyExportOptions {
|
|
525
|
+
format: "jwk";
|
|
526
|
+
}
|
|
527
|
+
interface KeyPairExportOptions<
|
|
528
|
+
TPublic extends PublicKeyExportType = PublicKeyExportType,
|
|
529
|
+
TPrivate extends PrivateKeyExportType = PrivateKeyExportType,
|
|
530
|
+
> {
|
|
531
|
+
publicKeyEncoding?: PublicKeyExportOptions<TPublic> | JwkKeyExportOptions | undefined;
|
|
532
|
+
privateKeyEncoding?: PrivateKeyExportOptions<TPrivate> | JwkKeyExportOptions | undefined;
|
|
533
|
+
}
|
|
534
|
+
type KeyExportResult<T, Default> = T extends { format: infer F extends KeyFormat }
|
|
535
|
+
? { der: NonSharedBuffer; jwk: webcrypto.JsonWebKey; pem: string }[F]
|
|
536
|
+
: Default;
|
|
537
|
+
interface KeyPairExportResult<T extends KeyPairExportOptions> {
|
|
538
|
+
publicKey: KeyExportResult<T["publicKeyEncoding"], KeyObject>;
|
|
539
|
+
privateKey: KeyExportResult<T["privateKeyEncoding"], KeyObject>;
|
|
540
|
+
}
|
|
541
|
+
type KeyPairExportCallback<T extends KeyPairExportOptions> = (
|
|
542
|
+
err: Error | null,
|
|
543
|
+
publicKey: KeyExportResult<T["publicKeyEncoding"], KeyObject>,
|
|
544
|
+
privateKey: KeyExportResult<T["privateKeyEncoding"], KeyObject>,
|
|
545
|
+
) => void;
|
|
546
|
+
type MLDSAKeyType = `ml-dsa-${44 | 65 | 87}`;
|
|
547
|
+
type MLKEMKeyType = `ml-kem-${1024 | 512 | 768}`;
|
|
548
|
+
type SLHDSAKeyType = `slh-dsa-${"sha2" | "shake"}-${128 | 192 | 256}${"f" | "s"}`;
|
|
549
|
+
type AsymmetricKeyType =
|
|
550
|
+
| "dh"
|
|
551
|
+
| "dsa"
|
|
552
|
+
| "ec"
|
|
553
|
+
| "ed25519"
|
|
554
|
+
| "ed448"
|
|
555
|
+
| MLDSAKeyType
|
|
556
|
+
| MLKEMKeyType
|
|
557
|
+
| "rsa-pss"
|
|
558
|
+
| "rsa"
|
|
559
|
+
| SLHDSAKeyType
|
|
560
|
+
| "x25519"
|
|
561
|
+
| "x448";
|
|
562
|
+
interface AsymmetricKeyDetails {
|
|
563
|
+
/**
|
|
564
|
+
* Key size in bits (RSA, DSA).
|
|
565
|
+
*/
|
|
566
|
+
modulusLength?: number;
|
|
567
|
+
/**
|
|
568
|
+
* Public exponent (RSA).
|
|
569
|
+
*/
|
|
570
|
+
publicExponent?: bigint;
|
|
571
|
+
/**
|
|
572
|
+
* Name of the message digest (RSA-PSS).
|
|
573
|
+
*/
|
|
574
|
+
hashAlgorithm?: string;
|
|
575
|
+
/**
|
|
576
|
+
* Name of the message digest used by MGF1 (RSA-PSS).
|
|
577
|
+
*/
|
|
578
|
+
mgf1HashAlgorithm?: string;
|
|
579
|
+
/**
|
|
580
|
+
* Minimal salt length in bytes (RSA-PSS).
|
|
581
|
+
*/
|
|
582
|
+
saltLength?: number;
|
|
583
|
+
/**
|
|
584
|
+
* Size of q in bits (DSA).
|
|
585
|
+
*/
|
|
586
|
+
divisorLength?: number;
|
|
587
|
+
/**
|
|
588
|
+
* Name of the curve (EC).
|
|
589
|
+
*/
|
|
590
|
+
namedCurve?: string;
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key,
|
|
594
|
+
* and each kind of key exposes different functions. The {@link createSecretKey}, {@link createPublicKey} and {@link createPrivateKey} methods are used to create `KeyObject`instances. `KeyObject`
|
|
595
|
+
* objects are not to be created directly using the `new`keyword.
|
|
596
|
+
*
|
|
597
|
+
* Most applications should consider using the new `KeyObject` API instead of
|
|
598
|
+
* passing keys as strings or `Buffer`s due to improved security features.
|
|
599
|
+
*
|
|
600
|
+
* `KeyObject` instances can be passed to other threads via `postMessage()`.
|
|
601
|
+
* The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to
|
|
602
|
+
* be listed in the `transferList` argument.
|
|
603
|
+
* @since v11.6.0
|
|
604
|
+
*/
|
|
605
|
+
class KeyObject {
|
|
606
|
+
private constructor();
|
|
607
|
+
/**
|
|
608
|
+
* Example: Converting a `CryptoKey` instance to a `KeyObject`:
|
|
609
|
+
*
|
|
610
|
+
* ```js
|
|
611
|
+
* const { KeyObject } = await import('node:crypto');
|
|
612
|
+
* const { subtle } = globalThis.crypto;
|
|
613
|
+
*
|
|
614
|
+
* const key = await subtle.generateKey({
|
|
615
|
+
* name: 'HMAC',
|
|
616
|
+
* hash: 'SHA-256',
|
|
617
|
+
* length: 256,
|
|
618
|
+
* }, true, ['sign', 'verify']);
|
|
619
|
+
*
|
|
620
|
+
* const keyObject = KeyObject.from(key);
|
|
621
|
+
* console.log(keyObject.symmetricKeySize);
|
|
622
|
+
* // Prints: 32 (symmetric key size in bytes)
|
|
623
|
+
* ```
|
|
624
|
+
* @since v15.0.0
|
|
625
|
+
*/
|
|
626
|
+
static from(key: webcrypto.CryptoKey): KeyObject;
|
|
627
|
+
/**
|
|
628
|
+
* For asymmetric keys, this property represents the type of the key. See the
|
|
629
|
+
* supported [asymmetric key types](https://nodejs.org/docs/latest-v25.x/api/crypto.html#asymmetric-key-types).
|
|
630
|
+
*
|
|
631
|
+
* This property is `undefined` for unrecognized `KeyObject` types and symmetric
|
|
632
|
+
* keys.
|
|
633
|
+
* @since v11.6.0
|
|
634
|
+
*/
|
|
635
|
+
asymmetricKeyType?: AsymmetricKeyType;
|
|
636
|
+
/**
|
|
637
|
+
* This property exists only on asymmetric keys. Depending on the type of the key,
|
|
638
|
+
* this object contains information about the key. None of the information obtained
|
|
639
|
+
* through this property can be used to uniquely identify a key or to compromise
|
|
640
|
+
* the security of the key.
|
|
641
|
+
*
|
|
642
|
+
* For RSA-PSS keys, if the key material contains a `RSASSA-PSS-params` sequence,
|
|
643
|
+
* the `hashAlgorithm`, `mgf1HashAlgorithm`, and `saltLength` properties will be
|
|
644
|
+
* set.
|
|
645
|
+
*
|
|
646
|
+
* Other key details might be exposed via this API using additional attributes.
|
|
647
|
+
* @since v15.7.0
|
|
648
|
+
*/
|
|
649
|
+
asymmetricKeyDetails?: AsymmetricKeyDetails;
|
|
650
|
+
/**
|
|
651
|
+
* For symmetric keys, the following encoding options can be used:
|
|
652
|
+
*
|
|
653
|
+
* For public keys, the following encoding options can be used:
|
|
654
|
+
*
|
|
655
|
+
* For private keys, the following encoding options can be used:
|
|
656
|
+
*
|
|
657
|
+
* The result type depends on the selected encoding format, when PEM the
|
|
658
|
+
* result is a string, when DER it will be a buffer containing the data
|
|
659
|
+
* encoded as DER, when [JWK](https://tools.ietf.org/html/rfc7517) it will be an object.
|
|
660
|
+
*
|
|
661
|
+
* When [JWK](https://tools.ietf.org/html/rfc7517) encoding format was selected, all other encoding options are
|
|
662
|
+
* ignored.
|
|
663
|
+
*
|
|
664
|
+
* PKCS#1, SEC1, and PKCS#8 type keys can be encrypted by using a combination of
|
|
665
|
+
* the `cipher` and `format` options. The PKCS#8 `type` can be used with any`format` to encrypt any key algorithm (RSA, EC, or DH) by specifying a`cipher`. PKCS#1 and SEC1 can only be
|
|
666
|
+
* encrypted by specifying a `cipher`when the PEM `format` is used. For maximum compatibility, use PKCS#8 for
|
|
667
|
+
* encrypted private keys. Since PKCS#8 defines its own
|
|
668
|
+
* encryption mechanism, PEM-level encryption is not supported when encrypting
|
|
669
|
+
* a PKCS#8 key. See [RFC 5208](https://www.rfc-editor.org/rfc/rfc5208.txt) for PKCS#8 encryption and [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421.txt) for
|
|
670
|
+
* PKCS#1 and SEC1 encryption.
|
|
671
|
+
* @since v11.6.0
|
|
672
|
+
*/
|
|
673
|
+
export<T extends KeyExportOptions = {}>(options?: T): KeyExportResult<T, NonSharedBuffer>;
|
|
674
|
+
/**
|
|
675
|
+
* Returns `true` or `false` depending on whether the keys have exactly the same
|
|
676
|
+
* type, value, and parameters. This method is not [constant time](https://en.wikipedia.org/wiki/Timing_attack).
|
|
677
|
+
* @since v17.7.0, v16.15.0
|
|
678
|
+
* @param otherKeyObject A `KeyObject` with which to compare `keyObject`.
|
|
679
|
+
*/
|
|
680
|
+
equals(otherKeyObject: KeyObject): boolean;
|
|
681
|
+
/**
|
|
682
|
+
* For secret keys, this property represents the size of the key in bytes. This
|
|
683
|
+
* property is `undefined` for asymmetric keys.
|
|
684
|
+
* @since v11.6.0
|
|
685
|
+
*/
|
|
686
|
+
symmetricKeySize?: number;
|
|
687
|
+
/**
|
|
688
|
+
* Converts a `KeyObject` instance to a `CryptoKey`.
|
|
689
|
+
* @since 22.10.0
|
|
690
|
+
*/
|
|
691
|
+
toCryptoKey(
|
|
692
|
+
algorithm:
|
|
693
|
+
| webcrypto.AlgorithmIdentifier
|
|
694
|
+
| webcrypto.RsaHashedImportParams
|
|
695
|
+
| webcrypto.EcKeyImportParams
|
|
696
|
+
| webcrypto.HmacImportParams,
|
|
697
|
+
extractable: boolean,
|
|
698
|
+
keyUsages: readonly webcrypto.KeyUsage[],
|
|
699
|
+
): webcrypto.CryptoKey;
|
|
700
|
+
/**
|
|
701
|
+
* Depending on the type of this `KeyObject`, this property is either`'secret'` for secret (symmetric) keys, `'public'` for public (asymmetric) keys
|
|
702
|
+
* or `'private'` for private (asymmetric) keys.
|
|
703
|
+
* @since v11.6.0
|
|
704
|
+
*/
|
|
705
|
+
type: KeyObjectType;
|
|
706
|
+
}
|
|
707
|
+
type CipherCCMTypes = "aes-128-ccm" | "aes-192-ccm" | "aes-256-ccm";
|
|
708
|
+
type CipherGCMTypes = "aes-128-gcm" | "aes-192-gcm" | "aes-256-gcm";
|
|
709
|
+
type CipherOCBTypes = "aes-128-ocb" | "aes-192-ocb" | "aes-256-ocb";
|
|
710
|
+
type CipherChaCha20Poly1305Types = "chacha20-poly1305";
|
|
711
|
+
type BinaryLike = string | NodeJS.ArrayBufferView;
|
|
712
|
+
type CipherKey = BinaryLike | KeyObject;
|
|
713
|
+
interface CipherCCMOptions extends stream.TransformOptions {
|
|
714
|
+
authTagLength: number;
|
|
715
|
+
}
|
|
716
|
+
interface CipherGCMOptions extends stream.TransformOptions {
|
|
717
|
+
authTagLength?: number | undefined;
|
|
718
|
+
}
|
|
719
|
+
interface CipherOCBOptions extends stream.TransformOptions {
|
|
720
|
+
authTagLength: number;
|
|
721
|
+
}
|
|
722
|
+
interface CipherChaCha20Poly1305Options extends stream.TransformOptions {
|
|
723
|
+
/** @default 16 */
|
|
724
|
+
authTagLength?: number | undefined;
|
|
725
|
+
}
|
|
726
|
+
/**
|
|
727
|
+
* Creates and returns a `Cipher` object, with the given `algorithm`, `key` and
|
|
728
|
+
* initialization vector (`iv`).
|
|
729
|
+
*
|
|
730
|
+
* The `options` argument controls stream behavior and is optional except when a
|
|
731
|
+
* cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the
|
|
732
|
+
* authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication
|
|
733
|
+
* tag that will be returned by `getAuthTag()` and defaults to 16 bytes.
|
|
734
|
+
* For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes.
|
|
735
|
+
*
|
|
736
|
+
* The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
|
|
737
|
+
* recent OpenSSL releases, `openssl list -cipher-algorithms` will
|
|
738
|
+
* display the available cipher algorithms.
|
|
739
|
+
*
|
|
740
|
+
* The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded
|
|
741
|
+
* strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be
|
|
742
|
+
* a `KeyObject` of type `secret`. If the cipher does not need
|
|
743
|
+
* an initialization vector, `iv` may be `null`.
|
|
744
|
+
*
|
|
745
|
+
* When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
746
|
+
*
|
|
747
|
+
* Initialization vectors should be unpredictable and unique; ideally, they will be
|
|
748
|
+
* cryptographically random. They do not have to be secret: IVs are typically just
|
|
749
|
+
* added to ciphertext messages unencrypted. It may sound contradictory that
|
|
750
|
+
* something has to be unpredictable and unique, but does not have to be secret;
|
|
751
|
+
* remember that an attacker must not be able to predict ahead of time what a
|
|
752
|
+
* given IV will be.
|
|
753
|
+
* @since v0.1.94
|
|
754
|
+
* @param options `stream.transform` options
|
|
755
|
+
*/
|
|
756
|
+
function createCipheriv(
|
|
757
|
+
algorithm: CipherCCMTypes,
|
|
758
|
+
key: CipherKey,
|
|
759
|
+
iv: BinaryLike,
|
|
760
|
+
options: CipherCCMOptions,
|
|
761
|
+
): CipherCCM;
|
|
762
|
+
function createCipheriv(
|
|
763
|
+
algorithm: CipherOCBTypes,
|
|
764
|
+
key: CipherKey,
|
|
765
|
+
iv: BinaryLike,
|
|
766
|
+
options: CipherOCBOptions,
|
|
767
|
+
): CipherOCB;
|
|
768
|
+
function createCipheriv(
|
|
769
|
+
algorithm: CipherGCMTypes,
|
|
770
|
+
key: CipherKey,
|
|
771
|
+
iv: BinaryLike,
|
|
772
|
+
options?: CipherGCMOptions,
|
|
773
|
+
): CipherGCM;
|
|
774
|
+
function createCipheriv(
|
|
775
|
+
algorithm: CipherChaCha20Poly1305Types,
|
|
776
|
+
key: CipherKey,
|
|
777
|
+
iv: BinaryLike,
|
|
778
|
+
options?: CipherChaCha20Poly1305Options,
|
|
779
|
+
): CipherChaCha20Poly1305;
|
|
780
|
+
function createCipheriv(
|
|
781
|
+
algorithm: string,
|
|
782
|
+
key: CipherKey,
|
|
783
|
+
iv: BinaryLike | null,
|
|
784
|
+
options?: stream.TransformOptions,
|
|
785
|
+
): Cipheriv;
|
|
786
|
+
/**
|
|
787
|
+
* Instances of the `Cipheriv` class are used to encrypt data. The class can be
|
|
788
|
+
* used in one of two ways:
|
|
789
|
+
*
|
|
790
|
+
* * As a `stream` that is both readable and writable, where plain unencrypted
|
|
791
|
+
* data is written to produce encrypted data on the readable side, or
|
|
792
|
+
* * Using the `cipher.update()` and `cipher.final()` methods to produce
|
|
793
|
+
* the encrypted data.
|
|
794
|
+
*
|
|
795
|
+
* The {@link createCipheriv} method is
|
|
796
|
+
* used to create `Cipheriv` instances. `Cipheriv` objects are not to be created
|
|
797
|
+
* directly using the `new` keyword.
|
|
798
|
+
*
|
|
799
|
+
* Example: Using `Cipheriv` objects as streams:
|
|
800
|
+
*
|
|
801
|
+
* ```js
|
|
802
|
+
* const {
|
|
803
|
+
* scrypt,
|
|
804
|
+
* randomFill,
|
|
805
|
+
* createCipheriv,
|
|
806
|
+
* } = await import('node:crypto');
|
|
807
|
+
*
|
|
808
|
+
* const algorithm = 'aes-192-cbc';
|
|
809
|
+
* const password = 'Password used to generate key';
|
|
810
|
+
*
|
|
811
|
+
* // First, we'll generate the key. The key length is dependent on the algorithm.
|
|
812
|
+
* // In this case for aes192, it is 24 bytes (192 bits).
|
|
813
|
+
* scrypt(password, 'salt', 24, (err, key) => {
|
|
814
|
+
* if (err) throw err;
|
|
815
|
+
* // Then, we'll generate a random initialization vector
|
|
816
|
+
* randomFill(new Uint8Array(16), (err, iv) => {
|
|
817
|
+
* if (err) throw err;
|
|
818
|
+
*
|
|
819
|
+
* // Once we have the key and iv, we can create and use the cipher...
|
|
820
|
+
* const cipher = createCipheriv(algorithm, key, iv);
|
|
821
|
+
*
|
|
822
|
+
* let encrypted = '';
|
|
823
|
+
* cipher.setEncoding('hex');
|
|
824
|
+
*
|
|
825
|
+
* cipher.on('data', (chunk) => encrypted += chunk);
|
|
826
|
+
* cipher.on('end', () => console.log(encrypted));
|
|
827
|
+
*
|
|
828
|
+
* cipher.write('some clear text data');
|
|
829
|
+
* cipher.end();
|
|
830
|
+
* });
|
|
831
|
+
* });
|
|
832
|
+
* ```
|
|
833
|
+
*
|
|
834
|
+
* Example: Using `Cipheriv` and piped streams:
|
|
835
|
+
*
|
|
836
|
+
* ```js
|
|
837
|
+
* import {
|
|
838
|
+
* createReadStream,
|
|
839
|
+
* createWriteStream,
|
|
840
|
+
* } from 'node:fs';
|
|
841
|
+
*
|
|
842
|
+
* import {
|
|
843
|
+
* pipeline,
|
|
844
|
+
* } from 'node:stream';
|
|
845
|
+
*
|
|
846
|
+
* const {
|
|
847
|
+
* scrypt,
|
|
848
|
+
* randomFill,
|
|
849
|
+
* createCipheriv,
|
|
850
|
+
* } = await import('node:crypto');
|
|
851
|
+
*
|
|
852
|
+
* const algorithm = 'aes-192-cbc';
|
|
853
|
+
* const password = 'Password used to generate key';
|
|
854
|
+
*
|
|
855
|
+
* // First, we'll generate the key. The key length is dependent on the algorithm.
|
|
856
|
+
* // In this case for aes192, it is 24 bytes (192 bits).
|
|
857
|
+
* scrypt(password, 'salt', 24, (err, key) => {
|
|
858
|
+
* if (err) throw err;
|
|
859
|
+
* // Then, we'll generate a random initialization vector
|
|
860
|
+
* randomFill(new Uint8Array(16), (err, iv) => {
|
|
861
|
+
* if (err) throw err;
|
|
862
|
+
*
|
|
863
|
+
* const cipher = createCipheriv(algorithm, key, iv);
|
|
864
|
+
*
|
|
865
|
+
* const input = createReadStream('test.js');
|
|
866
|
+
* const output = createWriteStream('test.enc');
|
|
867
|
+
*
|
|
868
|
+
* pipeline(input, cipher, output, (err) => {
|
|
869
|
+
* if (err) throw err;
|
|
870
|
+
* });
|
|
871
|
+
* });
|
|
872
|
+
* });
|
|
873
|
+
* ```
|
|
874
|
+
*
|
|
875
|
+
* Example: Using the `cipher.update()` and `cipher.final()` methods:
|
|
876
|
+
*
|
|
877
|
+
* ```js
|
|
878
|
+
* const {
|
|
879
|
+
* scrypt,
|
|
880
|
+
* randomFill,
|
|
881
|
+
* createCipheriv,
|
|
882
|
+
* } = await import('node:crypto');
|
|
883
|
+
*
|
|
884
|
+
* const algorithm = 'aes-192-cbc';
|
|
885
|
+
* const password = 'Password used to generate key';
|
|
886
|
+
*
|
|
887
|
+
* // First, we'll generate the key. The key length is dependent on the algorithm.
|
|
888
|
+
* // In this case for aes192, it is 24 bytes (192 bits).
|
|
889
|
+
* scrypt(password, 'salt', 24, (err, key) => {
|
|
890
|
+
* if (err) throw err;
|
|
891
|
+
* // Then, we'll generate a random initialization vector
|
|
892
|
+
* randomFill(new Uint8Array(16), (err, iv) => {
|
|
893
|
+
* if (err) throw err;
|
|
894
|
+
*
|
|
895
|
+
* const cipher = createCipheriv(algorithm, key, iv);
|
|
896
|
+
*
|
|
897
|
+
* let encrypted = cipher.update('some clear text data', 'utf8', 'hex');
|
|
898
|
+
* encrypted += cipher.final('hex');
|
|
899
|
+
* console.log(encrypted);
|
|
900
|
+
* });
|
|
901
|
+
* });
|
|
902
|
+
* ```
|
|
903
|
+
* @since v0.1.94
|
|
904
|
+
*/
|
|
905
|
+
class Cipheriv extends stream.Transform {
|
|
906
|
+
private constructor();
|
|
907
|
+
/**
|
|
908
|
+
* Updates the cipher with `data`. If the `inputEncoding` argument is given,
|
|
909
|
+
* the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`, `TypedArray`, or `DataView`. If `data` is a `Buffer`,
|
|
910
|
+
* `TypedArray`, or `DataView`, then `inputEncoding` is ignored.
|
|
911
|
+
*
|
|
912
|
+
* The `outputEncoding` specifies the output format of the enciphered
|
|
913
|
+
* data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned.
|
|
914
|
+
*
|
|
915
|
+
* The `cipher.update()` method can be called multiple times with new data until `cipher.final()` is called. Calling `cipher.update()` after `cipher.final()` will result in an error being
|
|
916
|
+
* thrown.
|
|
917
|
+
* @since v0.1.94
|
|
918
|
+
* @param inputEncoding The `encoding` of the data.
|
|
919
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
920
|
+
*/
|
|
921
|
+
update(data: BinaryLike): NonSharedBuffer;
|
|
922
|
+
update(data: string, inputEncoding: Encoding): NonSharedBuffer;
|
|
923
|
+
update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;
|
|
924
|
+
update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;
|
|
925
|
+
/**
|
|
926
|
+
* Once the `cipher.final()` method has been called, the `Cipheriv` object can no
|
|
927
|
+
* longer be used to encrypt data. Attempts to call `cipher.final()` more than
|
|
928
|
+
* once will result in an error being thrown.
|
|
929
|
+
* @since v0.1.94
|
|
930
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
931
|
+
* @return Any remaining enciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.
|
|
932
|
+
*/
|
|
933
|
+
final(): NonSharedBuffer;
|
|
934
|
+
final(outputEncoding: BufferEncoding): string;
|
|
935
|
+
/**
|
|
936
|
+
* When using block encryption algorithms, the `Cipheriv` class will automatically
|
|
937
|
+
* add padding to the input data to the appropriate block size. To disable the
|
|
938
|
+
* default padding call `cipher.setAutoPadding(false)`.
|
|
939
|
+
*
|
|
940
|
+
* When `autoPadding` is `false`, the length of the entire input data must be a
|
|
941
|
+
* multiple of the cipher's block size or `cipher.final()` will throw an error.
|
|
942
|
+
* Disabling automatic padding is useful for non-standard padding, for instance
|
|
943
|
+
* using `0x0` instead of PKCS padding.
|
|
944
|
+
*
|
|
945
|
+
* The `cipher.setAutoPadding()` method must be called before `cipher.final()`.
|
|
946
|
+
* @since v0.7.1
|
|
947
|
+
* @param [autoPadding=true]
|
|
948
|
+
* @return for method chaining.
|
|
949
|
+
*/
|
|
950
|
+
setAutoPadding(autoPadding?: boolean): this;
|
|
951
|
+
}
|
|
952
|
+
interface CipherCCM extends Cipheriv {
|
|
953
|
+
setAAD(
|
|
954
|
+
buffer: NodeJS.ArrayBufferView,
|
|
955
|
+
options: {
|
|
956
|
+
plaintextLength: number;
|
|
957
|
+
},
|
|
958
|
+
): this;
|
|
959
|
+
getAuthTag(): NonSharedBuffer;
|
|
960
|
+
}
|
|
961
|
+
interface CipherGCM extends Cipheriv {
|
|
962
|
+
setAAD(
|
|
963
|
+
buffer: NodeJS.ArrayBufferView,
|
|
964
|
+
options?: {
|
|
965
|
+
plaintextLength: number;
|
|
966
|
+
},
|
|
967
|
+
): this;
|
|
968
|
+
getAuthTag(): NonSharedBuffer;
|
|
969
|
+
}
|
|
970
|
+
interface CipherOCB extends Cipheriv {
|
|
971
|
+
setAAD(
|
|
972
|
+
buffer: NodeJS.ArrayBufferView,
|
|
973
|
+
options?: {
|
|
974
|
+
plaintextLength: number;
|
|
975
|
+
},
|
|
976
|
+
): this;
|
|
977
|
+
getAuthTag(): NonSharedBuffer;
|
|
978
|
+
}
|
|
979
|
+
interface CipherChaCha20Poly1305 extends Cipheriv {
|
|
980
|
+
setAAD(
|
|
981
|
+
buffer: NodeJS.ArrayBufferView,
|
|
982
|
+
options: {
|
|
983
|
+
plaintextLength: number;
|
|
984
|
+
},
|
|
985
|
+
): this;
|
|
986
|
+
getAuthTag(): NonSharedBuffer;
|
|
987
|
+
}
|
|
988
|
+
/**
|
|
989
|
+
* Creates and returns a `Decipheriv` object that uses the given `algorithm`, `key` and initialization vector (`iv`).
|
|
990
|
+
*
|
|
991
|
+
* The `options` argument controls stream behavior and is optional except when a
|
|
992
|
+
* cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the `authTagLength` option is required and specifies the length of the
|
|
993
|
+
* authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength` option is not required but can be used to restrict accepted authentication tags
|
|
994
|
+
* to those with the specified length.
|
|
995
|
+
* For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes.
|
|
996
|
+
*
|
|
997
|
+
* The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
|
|
998
|
+
* recent OpenSSL releases, `openssl list -cipher-algorithms` will
|
|
999
|
+
* display the available cipher algorithms.
|
|
1000
|
+
*
|
|
1001
|
+
* The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded
|
|
1002
|
+
* strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be
|
|
1003
|
+
* a `KeyObject` of type `secret`. If the cipher does not need
|
|
1004
|
+
* an initialization vector, `iv` may be `null`.
|
|
1005
|
+
*
|
|
1006
|
+
* When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
1007
|
+
*
|
|
1008
|
+
* Initialization vectors should be unpredictable and unique; ideally, they will be
|
|
1009
|
+
* cryptographically random. They do not have to be secret: IVs are typically just
|
|
1010
|
+
* added to ciphertext messages unencrypted. It may sound contradictory that
|
|
1011
|
+
* something has to be unpredictable and unique, but does not have to be secret;
|
|
1012
|
+
* remember that an attacker must not be able to predict ahead of time what a given
|
|
1013
|
+
* IV will be.
|
|
1014
|
+
* @since v0.1.94
|
|
1015
|
+
* @param options `stream.transform` options
|
|
1016
|
+
*/
|
|
1017
|
+
function createDecipheriv(
|
|
1018
|
+
algorithm: CipherCCMTypes,
|
|
1019
|
+
key: CipherKey,
|
|
1020
|
+
iv: BinaryLike,
|
|
1021
|
+
options: CipherCCMOptions,
|
|
1022
|
+
): DecipherCCM;
|
|
1023
|
+
function createDecipheriv(
|
|
1024
|
+
algorithm: CipherOCBTypes,
|
|
1025
|
+
key: CipherKey,
|
|
1026
|
+
iv: BinaryLike,
|
|
1027
|
+
options: CipherOCBOptions,
|
|
1028
|
+
): DecipherOCB;
|
|
1029
|
+
function createDecipheriv(
|
|
1030
|
+
algorithm: CipherGCMTypes,
|
|
1031
|
+
key: CipherKey,
|
|
1032
|
+
iv: BinaryLike,
|
|
1033
|
+
options?: CipherGCMOptions,
|
|
1034
|
+
): DecipherGCM;
|
|
1035
|
+
function createDecipheriv(
|
|
1036
|
+
algorithm: CipherChaCha20Poly1305Types,
|
|
1037
|
+
key: CipherKey,
|
|
1038
|
+
iv: BinaryLike,
|
|
1039
|
+
options?: CipherChaCha20Poly1305Options,
|
|
1040
|
+
): DecipherChaCha20Poly1305;
|
|
1041
|
+
function createDecipheriv(
|
|
1042
|
+
algorithm: string,
|
|
1043
|
+
key: CipherKey,
|
|
1044
|
+
iv: BinaryLike | null,
|
|
1045
|
+
options?: stream.TransformOptions,
|
|
1046
|
+
): Decipheriv;
|
|
1047
|
+
/**
|
|
1048
|
+
* Instances of the `Decipheriv` class are used to decrypt data. The class can be
|
|
1049
|
+
* used in one of two ways:
|
|
1050
|
+
*
|
|
1051
|
+
* * As a `stream` that is both readable and writable, where plain encrypted
|
|
1052
|
+
* data is written to produce unencrypted data on the readable side, or
|
|
1053
|
+
* * Using the `decipher.update()` and `decipher.final()` methods to
|
|
1054
|
+
* produce the unencrypted data.
|
|
1055
|
+
*
|
|
1056
|
+
* The {@link createDecipheriv} method is
|
|
1057
|
+
* used to create `Decipheriv` instances. `Decipheriv` objects are not to be created
|
|
1058
|
+
* directly using the `new` keyword.
|
|
1059
|
+
*
|
|
1060
|
+
* Example: Using `Decipheriv` objects as streams:
|
|
1061
|
+
*
|
|
1062
|
+
* ```js
|
|
1063
|
+
* import { Buffer } from 'node:buffer';
|
|
1064
|
+
* const {
|
|
1065
|
+
* scryptSync,
|
|
1066
|
+
* createDecipheriv,
|
|
1067
|
+
* } = await import('node:crypto');
|
|
1068
|
+
*
|
|
1069
|
+
* const algorithm = 'aes-192-cbc';
|
|
1070
|
+
* const password = 'Password used to generate key';
|
|
1071
|
+
* // Key length is dependent on the algorithm. In this case for aes192, it is
|
|
1072
|
+
* // 24 bytes (192 bits).
|
|
1073
|
+
* // Use the async `crypto.scrypt()` instead.
|
|
1074
|
+
* const key = scryptSync(password, 'salt', 24);
|
|
1075
|
+
* // The IV is usually passed along with the ciphertext.
|
|
1076
|
+
* const iv = Buffer.alloc(16, 0); // Initialization vector.
|
|
1077
|
+
*
|
|
1078
|
+
* const decipher = createDecipheriv(algorithm, key, iv);
|
|
1079
|
+
*
|
|
1080
|
+
* let decrypted = '';
|
|
1081
|
+
* decipher.on('readable', () => {
|
|
1082
|
+
* let chunk;
|
|
1083
|
+
* while (null !== (chunk = decipher.read())) {
|
|
1084
|
+
* decrypted += chunk.toString('utf8');
|
|
1085
|
+
* }
|
|
1086
|
+
* });
|
|
1087
|
+
* decipher.on('end', () => {
|
|
1088
|
+
* console.log(decrypted);
|
|
1089
|
+
* // Prints: some clear text data
|
|
1090
|
+
* });
|
|
1091
|
+
*
|
|
1092
|
+
* // Encrypted with same algorithm, key and iv.
|
|
1093
|
+
* const encrypted =
|
|
1094
|
+
* 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';
|
|
1095
|
+
* decipher.write(encrypted, 'hex');
|
|
1096
|
+
* decipher.end();
|
|
1097
|
+
* ```
|
|
1098
|
+
*
|
|
1099
|
+
* Example: Using `Decipheriv` and piped streams:
|
|
1100
|
+
*
|
|
1101
|
+
* ```js
|
|
1102
|
+
* import {
|
|
1103
|
+
* createReadStream,
|
|
1104
|
+
* createWriteStream,
|
|
1105
|
+
* } from 'node:fs';
|
|
1106
|
+
* import { Buffer } from 'node:buffer';
|
|
1107
|
+
* const {
|
|
1108
|
+
* scryptSync,
|
|
1109
|
+
* createDecipheriv,
|
|
1110
|
+
* } = await import('node:crypto');
|
|
1111
|
+
*
|
|
1112
|
+
* const algorithm = 'aes-192-cbc';
|
|
1113
|
+
* const password = 'Password used to generate key';
|
|
1114
|
+
* // Use the async `crypto.scrypt()` instead.
|
|
1115
|
+
* const key = scryptSync(password, 'salt', 24);
|
|
1116
|
+
* // The IV is usually passed along with the ciphertext.
|
|
1117
|
+
* const iv = Buffer.alloc(16, 0); // Initialization vector.
|
|
1118
|
+
*
|
|
1119
|
+
* const decipher = createDecipheriv(algorithm, key, iv);
|
|
1120
|
+
*
|
|
1121
|
+
* const input = createReadStream('test.enc');
|
|
1122
|
+
* const output = createWriteStream('test.js');
|
|
1123
|
+
*
|
|
1124
|
+
* input.pipe(decipher).pipe(output);
|
|
1125
|
+
* ```
|
|
1126
|
+
*
|
|
1127
|
+
* Example: Using the `decipher.update()` and `decipher.final()` methods:
|
|
1128
|
+
*
|
|
1129
|
+
* ```js
|
|
1130
|
+
* import { Buffer } from 'node:buffer';
|
|
1131
|
+
* const {
|
|
1132
|
+
* scryptSync,
|
|
1133
|
+
* createDecipheriv,
|
|
1134
|
+
* } = await import('node:crypto');
|
|
1135
|
+
*
|
|
1136
|
+
* const algorithm = 'aes-192-cbc';
|
|
1137
|
+
* const password = 'Password used to generate key';
|
|
1138
|
+
* // Use the async `crypto.scrypt()` instead.
|
|
1139
|
+
* const key = scryptSync(password, 'salt', 24);
|
|
1140
|
+
* // The IV is usually passed along with the ciphertext.
|
|
1141
|
+
* const iv = Buffer.alloc(16, 0); // Initialization vector.
|
|
1142
|
+
*
|
|
1143
|
+
* const decipher = createDecipheriv(algorithm, key, iv);
|
|
1144
|
+
*
|
|
1145
|
+
* // Encrypted using same algorithm, key and iv.
|
|
1146
|
+
* const encrypted =
|
|
1147
|
+
* 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';
|
|
1148
|
+
* let decrypted = decipher.update(encrypted, 'hex', 'utf8');
|
|
1149
|
+
* decrypted += decipher.final('utf8');
|
|
1150
|
+
* console.log(decrypted);
|
|
1151
|
+
* // Prints: some clear text data
|
|
1152
|
+
* ```
|
|
1153
|
+
* @since v0.1.94
|
|
1154
|
+
*/
|
|
1155
|
+
class Decipheriv extends stream.Transform {
|
|
1156
|
+
private constructor();
|
|
1157
|
+
/**
|
|
1158
|
+
* Updates the decipher with `data`. If the `inputEncoding` argument is given,
|
|
1159
|
+
* the `data` argument is a string using the specified encoding. If the `inputEncoding` argument is not given, `data` must be a `Buffer`. If `data` is a `Buffer` then `inputEncoding` is
|
|
1160
|
+
* ignored.
|
|
1161
|
+
*
|
|
1162
|
+
* The `outputEncoding` specifies the output format of the enciphered
|
|
1163
|
+
* data. If the `outputEncoding` is specified, a string using the specified encoding is returned. If no `outputEncoding` is provided, a `Buffer` is returned.
|
|
1164
|
+
*
|
|
1165
|
+
* The `decipher.update()` method can be called multiple times with new data until `decipher.final()` is called. Calling `decipher.update()` after `decipher.final()` will result in an error
|
|
1166
|
+
* being thrown.
|
|
1167
|
+
* @since v0.1.94
|
|
1168
|
+
* @param inputEncoding The `encoding` of the `data` string.
|
|
1169
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
1170
|
+
*/
|
|
1171
|
+
update(data: NodeJS.ArrayBufferView): NonSharedBuffer;
|
|
1172
|
+
update(data: string, inputEncoding: Encoding): NonSharedBuffer;
|
|
1173
|
+
update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;
|
|
1174
|
+
update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;
|
|
1175
|
+
/**
|
|
1176
|
+
* Once the `decipher.final()` method has been called, the `Decipheriv` object can
|
|
1177
|
+
* no longer be used to decrypt data. Attempts to call `decipher.final()` more
|
|
1178
|
+
* than once will result in an error being thrown.
|
|
1179
|
+
* @since v0.1.94
|
|
1180
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
1181
|
+
* @return Any remaining deciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.
|
|
1182
|
+
*/
|
|
1183
|
+
final(): NonSharedBuffer;
|
|
1184
|
+
final(outputEncoding: BufferEncoding): string;
|
|
1185
|
+
/**
|
|
1186
|
+
* When data has been encrypted without standard block padding, calling `decipher.setAutoPadding(false)` will disable automatic padding to prevent `decipher.final()` from checking for and
|
|
1187
|
+
* removing padding.
|
|
1188
|
+
*
|
|
1189
|
+
* Turning auto padding off will only work if the input data's length is a
|
|
1190
|
+
* multiple of the ciphers block size.
|
|
1191
|
+
*
|
|
1192
|
+
* The `decipher.setAutoPadding()` method must be called before `decipher.final()`.
|
|
1193
|
+
* @since v0.7.1
|
|
1194
|
+
* @param [autoPadding=true]
|
|
1195
|
+
* @return for method chaining.
|
|
1196
|
+
*/
|
|
1197
|
+
setAutoPadding(auto_padding?: boolean): this;
|
|
1198
|
+
}
|
|
1199
|
+
interface DecipherCCM extends Decipheriv {
|
|
1200
|
+
setAuthTag(buffer: NodeJS.ArrayBufferView): this;
|
|
1201
|
+
setAAD(
|
|
1202
|
+
buffer: NodeJS.ArrayBufferView,
|
|
1203
|
+
options: {
|
|
1204
|
+
plaintextLength: number;
|
|
1205
|
+
},
|
|
1206
|
+
): this;
|
|
1207
|
+
}
|
|
1208
|
+
interface DecipherGCM extends Decipheriv {
|
|
1209
|
+
setAuthTag(buffer: NodeJS.ArrayBufferView): this;
|
|
1210
|
+
setAAD(
|
|
1211
|
+
buffer: NodeJS.ArrayBufferView,
|
|
1212
|
+
options?: {
|
|
1213
|
+
plaintextLength: number;
|
|
1214
|
+
},
|
|
1215
|
+
): this;
|
|
1216
|
+
}
|
|
1217
|
+
interface DecipherOCB extends Decipheriv {
|
|
1218
|
+
setAuthTag(buffer: NodeJS.ArrayBufferView): this;
|
|
1219
|
+
setAAD(
|
|
1220
|
+
buffer: NodeJS.ArrayBufferView,
|
|
1221
|
+
options?: {
|
|
1222
|
+
plaintextLength: number;
|
|
1223
|
+
},
|
|
1224
|
+
): this;
|
|
1225
|
+
}
|
|
1226
|
+
interface DecipherChaCha20Poly1305 extends Decipheriv {
|
|
1227
|
+
setAuthTag(buffer: NodeJS.ArrayBufferView): this;
|
|
1228
|
+
setAAD(
|
|
1229
|
+
buffer: NodeJS.ArrayBufferView,
|
|
1230
|
+
options: {
|
|
1231
|
+
plaintextLength: number;
|
|
1232
|
+
},
|
|
1233
|
+
): this;
|
|
1234
|
+
}
|
|
1235
|
+
interface PrivateKeyInput {
|
|
1236
|
+
key: string | Buffer;
|
|
1237
|
+
format?: KeyFormat | undefined;
|
|
1238
|
+
type?: PrivateKeyExportType | undefined;
|
|
1239
|
+
passphrase?: string | Buffer | undefined;
|
|
1240
|
+
encoding?: string | undefined;
|
|
1241
|
+
}
|
|
1242
|
+
interface PublicKeyInput {
|
|
1243
|
+
key: string | Buffer;
|
|
1244
|
+
format?: KeyFormat | undefined;
|
|
1245
|
+
type?: PublicKeyExportType | undefined;
|
|
1246
|
+
encoding?: string | undefined;
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Asynchronously generates a new random secret key of the given `length`. The `type` will determine which validations will be performed on the `length`.
|
|
1250
|
+
*
|
|
1251
|
+
* ```js
|
|
1252
|
+
* const {
|
|
1253
|
+
* generateKey,
|
|
1254
|
+
* } = await import('node:crypto');
|
|
1255
|
+
*
|
|
1256
|
+
* generateKey('hmac', { length: 512 }, (err, key) => {
|
|
1257
|
+
* if (err) throw err;
|
|
1258
|
+
* console.log(key.export().toString('hex')); // 46e..........620
|
|
1259
|
+
* });
|
|
1260
|
+
* ```
|
|
1261
|
+
*
|
|
1262
|
+
* The size of a generated HMAC key should not exceed the block size of the
|
|
1263
|
+
* underlying hash function. See {@link createHmac} for more information.
|
|
1264
|
+
* @since v15.0.0
|
|
1265
|
+
* @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.
|
|
1266
|
+
*/
|
|
1267
|
+
function generateKey(
|
|
1268
|
+
type: "hmac" | "aes",
|
|
1269
|
+
options: {
|
|
1270
|
+
length: number;
|
|
1271
|
+
},
|
|
1272
|
+
callback: (err: Error | null, key: KeyObject) => void,
|
|
1273
|
+
): void;
|
|
1274
|
+
/**
|
|
1275
|
+
* Synchronously generates a new random secret key of the given `length`. The `type` will determine which validations will be performed on the `length`.
|
|
1276
|
+
*
|
|
1277
|
+
* ```js
|
|
1278
|
+
* const {
|
|
1279
|
+
* generateKeySync,
|
|
1280
|
+
* } = await import('node:crypto');
|
|
1281
|
+
*
|
|
1282
|
+
* const key = generateKeySync('hmac', { length: 512 });
|
|
1283
|
+
* console.log(key.export().toString('hex')); // e89..........41e
|
|
1284
|
+
* ```
|
|
1285
|
+
*
|
|
1286
|
+
* The size of a generated HMAC key should not exceed the block size of the
|
|
1287
|
+
* underlying hash function. See {@link createHmac} for more information.
|
|
1288
|
+
* @since v15.0.0
|
|
1289
|
+
* @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.
|
|
1290
|
+
*/
|
|
1291
|
+
function generateKeySync(
|
|
1292
|
+
type: "hmac" | "aes",
|
|
1293
|
+
options: {
|
|
1294
|
+
length: number;
|
|
1295
|
+
},
|
|
1296
|
+
): KeyObject;
|
|
1297
|
+
interface JsonWebKeyInput {
|
|
1298
|
+
key: webcrypto.JsonWebKey;
|
|
1299
|
+
format: "jwk";
|
|
1300
|
+
}
|
|
1301
|
+
/**
|
|
1302
|
+
* Creates and returns a new key object containing a private key. If `key` is a
|
|
1303
|
+
* string or `Buffer`, `format` is assumed to be `'pem'`; otherwise, `key` must be an object with the properties described above.
|
|
1304
|
+
*
|
|
1305
|
+
* If the private key is encrypted, a `passphrase` must be specified. The length
|
|
1306
|
+
* of the passphrase is limited to 1024 bytes.
|
|
1307
|
+
* @since v11.6.0
|
|
1308
|
+
*/
|
|
1309
|
+
function createPrivateKey(key: PrivateKeyInput | string | Buffer | JsonWebKeyInput): KeyObject;
|
|
1310
|
+
/**
|
|
1311
|
+
* Creates and returns a new key object containing a public key. If `key` is a
|
|
1312
|
+
* string or `Buffer`, `format` is assumed to be `'pem'`; if `key` is a `KeyObject` with type `'private'`, the public key is derived from the given private key;
|
|
1313
|
+
* otherwise, `key` must be an object with the properties described above.
|
|
1314
|
+
*
|
|
1315
|
+
* If the format is `'pem'`, the `'key'` may also be an X.509 certificate.
|
|
1316
|
+
*
|
|
1317
|
+
* Because public keys can be derived from private keys, a private key may be
|
|
1318
|
+
* passed instead of a public key. In that case, this function behaves as if {@link createPrivateKey} had been called, except that the type of the
|
|
1319
|
+
* returned `KeyObject` will be `'public'` and that the private key cannot be
|
|
1320
|
+
* extracted from the returned `KeyObject`. Similarly, if a `KeyObject` with type `'private'` is given, a new `KeyObject` with type `'public'` will be returned
|
|
1321
|
+
* and it will be impossible to extract the private key from the returned object.
|
|
1322
|
+
* @since v11.6.0
|
|
1323
|
+
*/
|
|
1324
|
+
function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject | JsonWebKeyInput): KeyObject;
|
|
1325
|
+
/**
|
|
1326
|
+
* Creates and returns a new key object containing a secret key for symmetric
|
|
1327
|
+
* encryption or `Hmac`.
|
|
1328
|
+
* @since v11.6.0
|
|
1329
|
+
* @param encoding The string encoding when `key` is a string.
|
|
1330
|
+
*/
|
|
1331
|
+
function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject;
|
|
1332
|
+
function createSecretKey(key: string, encoding: BufferEncoding): KeyObject;
|
|
1333
|
+
/**
|
|
1334
|
+
* Creates and returns a `Sign` object that uses the given `algorithm`. Use {@link getHashes} to obtain the names of the available digest algorithms.
|
|
1335
|
+
* Optional `options` argument controls the `stream.Writable` behavior.
|
|
1336
|
+
*
|
|
1337
|
+
* In some cases, a `Sign` instance can be created using the name of a signature
|
|
1338
|
+
* algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use
|
|
1339
|
+
* the corresponding digest algorithm. This does not work for all signature
|
|
1340
|
+
* algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest
|
|
1341
|
+
* algorithm names.
|
|
1342
|
+
* @since v0.1.92
|
|
1343
|
+
* @param options `stream.Writable` options
|
|
1344
|
+
*/
|
|
1345
|
+
// TODO: signing algorithm type
|
|
1346
|
+
function createSign(algorithm: string, options?: stream.WritableOptions): Sign;
|
|
1347
|
+
type DSAEncoding = "der" | "ieee-p1363";
|
|
1348
|
+
interface SigningOptions {
|
|
1349
|
+
/**
|
|
1350
|
+
* @see crypto.constants.RSA_PKCS1_PADDING
|
|
1351
|
+
*/
|
|
1352
|
+
padding?: number | undefined;
|
|
1353
|
+
saltLength?: number | undefined;
|
|
1354
|
+
dsaEncoding?: DSAEncoding | undefined;
|
|
1355
|
+
context?: ArrayBuffer | NodeJS.ArrayBufferView | undefined;
|
|
1356
|
+
}
|
|
1357
|
+
interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions {}
|
|
1358
|
+
interface SignKeyObjectInput extends SigningOptions {
|
|
1359
|
+
key: KeyObject;
|
|
1360
|
+
}
|
|
1361
|
+
interface SignJsonWebKeyInput extends JsonWebKeyInput, SigningOptions {}
|
|
1362
|
+
interface VerifyPublicKeyInput extends PublicKeyInput, SigningOptions {}
|
|
1363
|
+
interface VerifyKeyObjectInput extends SigningOptions {
|
|
1364
|
+
key: KeyObject;
|
|
1365
|
+
}
|
|
1366
|
+
interface VerifyJsonWebKeyInput extends JsonWebKeyInput, SigningOptions {}
|
|
1367
|
+
type KeyLike = string | Buffer | KeyObject;
|
|
1368
|
+
/**
|
|
1369
|
+
* The `Sign` class is a utility for generating signatures. It can be used in one
|
|
1370
|
+
* of two ways:
|
|
1371
|
+
*
|
|
1372
|
+
* * As a writable `stream`, where data to be signed is written and the `sign.sign()` method is used to generate and return the signature, or
|
|
1373
|
+
* * Using the `sign.update()` and `sign.sign()` methods to produce the
|
|
1374
|
+
* signature.
|
|
1375
|
+
*
|
|
1376
|
+
* The {@link createSign} method is used to create `Sign` instances. The
|
|
1377
|
+
* argument is the string name of the hash function to use. `Sign` objects are not
|
|
1378
|
+
* to be created directly using the `new` keyword.
|
|
1379
|
+
*
|
|
1380
|
+
* Example: Using `Sign` and `Verify` objects as streams:
|
|
1381
|
+
*
|
|
1382
|
+
* ```js
|
|
1383
|
+
* const {
|
|
1384
|
+
* generateKeyPairSync,
|
|
1385
|
+
* createSign,
|
|
1386
|
+
* createVerify,
|
|
1387
|
+
* } = await import('node:crypto');
|
|
1388
|
+
*
|
|
1389
|
+
* const { privateKey, publicKey } = generateKeyPairSync('ec', {
|
|
1390
|
+
* namedCurve: 'sect239k1',
|
|
1391
|
+
* });
|
|
1392
|
+
*
|
|
1393
|
+
* const sign = createSign('SHA256');
|
|
1394
|
+
* sign.write('some data to sign');
|
|
1395
|
+
* sign.end();
|
|
1396
|
+
* const signature = sign.sign(privateKey, 'hex');
|
|
1397
|
+
*
|
|
1398
|
+
* const verify = createVerify('SHA256');
|
|
1399
|
+
* verify.write('some data to sign');
|
|
1400
|
+
* verify.end();
|
|
1401
|
+
* console.log(verify.verify(publicKey, signature, 'hex'));
|
|
1402
|
+
* // Prints: true
|
|
1403
|
+
* ```
|
|
1404
|
+
*
|
|
1405
|
+
* Example: Using the `sign.update()` and `verify.update()` methods:
|
|
1406
|
+
*
|
|
1407
|
+
* ```js
|
|
1408
|
+
* const {
|
|
1409
|
+
* generateKeyPairSync,
|
|
1410
|
+
* createSign,
|
|
1411
|
+
* createVerify,
|
|
1412
|
+
* } = await import('node:crypto');
|
|
1413
|
+
*
|
|
1414
|
+
* const { privateKey, publicKey } = generateKeyPairSync('rsa', {
|
|
1415
|
+
* modulusLength: 2048,
|
|
1416
|
+
* });
|
|
1417
|
+
*
|
|
1418
|
+
* const sign = createSign('SHA256');
|
|
1419
|
+
* sign.update('some data to sign');
|
|
1420
|
+
* sign.end();
|
|
1421
|
+
* const signature = sign.sign(privateKey);
|
|
1422
|
+
*
|
|
1423
|
+
* const verify = createVerify('SHA256');
|
|
1424
|
+
* verify.update('some data to sign');
|
|
1425
|
+
* verify.end();
|
|
1426
|
+
* console.log(verify.verify(publicKey, signature));
|
|
1427
|
+
* // Prints: true
|
|
1428
|
+
* ```
|
|
1429
|
+
* @since v0.1.92
|
|
1430
|
+
*/
|
|
1431
|
+
class Sign extends stream.Writable {
|
|
1432
|
+
private constructor();
|
|
1433
|
+
/**
|
|
1434
|
+
* Updates the `Sign` content with the given `data`, the encoding of which
|
|
1435
|
+
* is given in `inputEncoding`.
|
|
1436
|
+
* If `encoding` is not provided, and the `data` is a string, an
|
|
1437
|
+
* encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
|
|
1438
|
+
*
|
|
1439
|
+
* This can be called many times with new data as it is streamed.
|
|
1440
|
+
* @since v0.1.92
|
|
1441
|
+
* @param inputEncoding The `encoding` of the `data` string.
|
|
1442
|
+
*/
|
|
1443
|
+
update(data: BinaryLike): this;
|
|
1444
|
+
update(data: string, inputEncoding: Encoding): this;
|
|
1445
|
+
/**
|
|
1446
|
+
* Calculates the signature on all the data passed through using either `sign.update()` or `sign.write()`.
|
|
1447
|
+
*
|
|
1448
|
+
* If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an
|
|
1449
|
+
* object, the following additional properties can be passed:
|
|
1450
|
+
*
|
|
1451
|
+
* If `outputEncoding` is provided a string is returned; otherwise a `Buffer` is returned.
|
|
1452
|
+
*
|
|
1453
|
+
* The `Sign` object can not be again used after `sign.sign()` method has been
|
|
1454
|
+
* called. Multiple calls to `sign.sign()` will result in an error being thrown.
|
|
1455
|
+
* @since v0.1.92
|
|
1456
|
+
*/
|
|
1457
|
+
sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput): NonSharedBuffer;
|
|
1458
|
+
sign(
|
|
1459
|
+
privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,
|
|
1460
|
+
outputFormat: BinaryToTextEncoding,
|
|
1461
|
+
): string;
|
|
1462
|
+
}
|
|
1463
|
+
/**
|
|
1464
|
+
* Creates and returns a `Verify` object that uses the given algorithm.
|
|
1465
|
+
* Use {@link getHashes} to obtain an array of names of the available
|
|
1466
|
+
* signing algorithms. Optional `options` argument controls the `stream.Writable` behavior.
|
|
1467
|
+
*
|
|
1468
|
+
* In some cases, a `Verify` instance can be created using the name of a signature
|
|
1469
|
+
* algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use
|
|
1470
|
+
* the corresponding digest algorithm. This does not work for all signature
|
|
1471
|
+
* algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest
|
|
1472
|
+
* algorithm names.
|
|
1473
|
+
* @since v0.1.92
|
|
1474
|
+
* @param options `stream.Writable` options
|
|
1475
|
+
*/
|
|
1476
|
+
function createVerify(algorithm: string, options?: stream.WritableOptions): Verify;
|
|
1477
|
+
/**
|
|
1478
|
+
* The `Verify` class is a utility for verifying signatures. It can be used in one
|
|
1479
|
+
* of two ways:
|
|
1480
|
+
*
|
|
1481
|
+
* * As a writable `stream` where written data is used to validate against the
|
|
1482
|
+
* supplied signature, or
|
|
1483
|
+
* * Using the `verify.update()` and `verify.verify()` methods to verify
|
|
1484
|
+
* the signature.
|
|
1485
|
+
*
|
|
1486
|
+
* The {@link createVerify} method is used to create `Verify` instances. `Verify` objects are not to be created directly using the `new` keyword.
|
|
1487
|
+
*
|
|
1488
|
+
* See `Sign` for examples.
|
|
1489
|
+
* @since v0.1.92
|
|
1490
|
+
*/
|
|
1491
|
+
class Verify extends stream.Writable {
|
|
1492
|
+
private constructor();
|
|
1493
|
+
/**
|
|
1494
|
+
* Updates the `Verify` content with the given `data`, the encoding of which
|
|
1495
|
+
* is given in `inputEncoding`.
|
|
1496
|
+
* If `inputEncoding` is not provided, and the `data` is a string, an
|
|
1497
|
+
* encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or `DataView`, then `inputEncoding` is ignored.
|
|
1498
|
+
*
|
|
1499
|
+
* This can be called many times with new data as it is streamed.
|
|
1500
|
+
* @since v0.1.92
|
|
1501
|
+
* @param inputEncoding The `encoding` of the `data` string.
|
|
1502
|
+
*/
|
|
1503
|
+
update(data: BinaryLike): Verify;
|
|
1504
|
+
update(data: string, inputEncoding: Encoding): Verify;
|
|
1505
|
+
/**
|
|
1506
|
+
* Verifies the provided data using the given `object` and `signature`.
|
|
1507
|
+
*
|
|
1508
|
+
* If `object` is not a `KeyObject`, this function behaves as if `object` had been passed to {@link createPublicKey}. If it is an
|
|
1509
|
+
* object, the following additional properties can be passed:
|
|
1510
|
+
*
|
|
1511
|
+
* The `signature` argument is the previously calculated signature for the data, in
|
|
1512
|
+
* the `signatureEncoding`.
|
|
1513
|
+
* If a `signatureEncoding` is specified, the `signature` is expected to be a
|
|
1514
|
+
* string; otherwise `signature` is expected to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
1515
|
+
*
|
|
1516
|
+
* The `verify` object can not be used again after `verify.verify()` has been
|
|
1517
|
+
* called. Multiple calls to `verify.verify()` will result in an error being
|
|
1518
|
+
* thrown.
|
|
1519
|
+
*
|
|
1520
|
+
* Because public keys can be derived from private keys, a private key may
|
|
1521
|
+
* be passed instead of a public key.
|
|
1522
|
+
* @since v0.1.92
|
|
1523
|
+
*/
|
|
1524
|
+
verify(
|
|
1525
|
+
object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,
|
|
1526
|
+
signature: NodeJS.ArrayBufferView,
|
|
1527
|
+
): boolean;
|
|
1528
|
+
verify(
|
|
1529
|
+
object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,
|
|
1530
|
+
signature: string,
|
|
1531
|
+
signature_format?: BinaryToTextEncoding,
|
|
1532
|
+
): boolean;
|
|
1533
|
+
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Creates a `DiffieHellman` key exchange object using the supplied `prime` and an
|
|
1536
|
+
* optional specific `generator`.
|
|
1537
|
+
*
|
|
1538
|
+
* The `generator` argument can be a number, string, or `Buffer`. If `generator` is not specified, the value `2` is used.
|
|
1539
|
+
*
|
|
1540
|
+
* If `primeEncoding` is specified, `prime` is expected to be a string; otherwise
|
|
1541
|
+
* a `Buffer`, `TypedArray`, or `DataView` is expected.
|
|
1542
|
+
*
|
|
1543
|
+
* If `generatorEncoding` is specified, `generator` is expected to be a string;
|
|
1544
|
+
* otherwise a number, `Buffer`, `TypedArray`, or `DataView` is expected.
|
|
1545
|
+
* @since v0.11.12
|
|
1546
|
+
* @param primeEncoding The `encoding` of the `prime` string.
|
|
1547
|
+
* @param [generator=2]
|
|
1548
|
+
* @param generatorEncoding The `encoding` of the `generator` string.
|
|
1549
|
+
*/
|
|
1550
|
+
function createDiffieHellman(primeLength: number, generator?: number): DiffieHellman;
|
|
1551
|
+
function createDiffieHellman(
|
|
1552
|
+
prime: ArrayBuffer | NodeJS.ArrayBufferView,
|
|
1553
|
+
generator?: number | ArrayBuffer | NodeJS.ArrayBufferView,
|
|
1554
|
+
): DiffieHellman;
|
|
1555
|
+
function createDiffieHellman(
|
|
1556
|
+
prime: ArrayBuffer | NodeJS.ArrayBufferView,
|
|
1557
|
+
generator: string,
|
|
1558
|
+
generatorEncoding: BinaryToTextEncoding,
|
|
1559
|
+
): DiffieHellman;
|
|
1560
|
+
function createDiffieHellman(
|
|
1561
|
+
prime: string,
|
|
1562
|
+
primeEncoding: BinaryToTextEncoding,
|
|
1563
|
+
generator?: number | ArrayBuffer | NodeJS.ArrayBufferView,
|
|
1564
|
+
): DiffieHellman;
|
|
1565
|
+
function createDiffieHellman(
|
|
1566
|
+
prime: string,
|
|
1567
|
+
primeEncoding: BinaryToTextEncoding,
|
|
1568
|
+
generator: string,
|
|
1569
|
+
generatorEncoding: BinaryToTextEncoding,
|
|
1570
|
+
): DiffieHellman;
|
|
1571
|
+
/**
|
|
1572
|
+
* The `DiffieHellman` class is a utility for creating Diffie-Hellman key
|
|
1573
|
+
* exchanges.
|
|
1574
|
+
*
|
|
1575
|
+
* Instances of the `DiffieHellman` class can be created using the {@link createDiffieHellman} function.
|
|
1576
|
+
*
|
|
1577
|
+
* ```js
|
|
1578
|
+
* import assert from 'node:assert';
|
|
1579
|
+
*
|
|
1580
|
+
* const {
|
|
1581
|
+
* createDiffieHellman,
|
|
1582
|
+
* } = await import('node:crypto');
|
|
1583
|
+
*
|
|
1584
|
+
* // Generate Alice's keys...
|
|
1585
|
+
* const alice = createDiffieHellman(2048);
|
|
1586
|
+
* const aliceKey = alice.generateKeys();
|
|
1587
|
+
*
|
|
1588
|
+
* // Generate Bob's keys...
|
|
1589
|
+
* const bob = createDiffieHellman(alice.getPrime(), alice.getGenerator());
|
|
1590
|
+
* const bobKey = bob.generateKeys();
|
|
1591
|
+
*
|
|
1592
|
+
* // Exchange and generate the secret...
|
|
1593
|
+
* const aliceSecret = alice.computeSecret(bobKey);
|
|
1594
|
+
* const bobSecret = bob.computeSecret(aliceKey);
|
|
1595
|
+
*
|
|
1596
|
+
* // OK
|
|
1597
|
+
* assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));
|
|
1598
|
+
* ```
|
|
1599
|
+
* @since v0.5.0
|
|
1600
|
+
*/
|
|
1601
|
+
class DiffieHellman {
|
|
1602
|
+
private constructor();
|
|
1603
|
+
/**
|
|
1604
|
+
* Generates private and public Diffie-Hellman key values unless they have been
|
|
1605
|
+
* generated or computed already, and returns
|
|
1606
|
+
* the public key in the specified `encoding`. This key should be
|
|
1607
|
+
* transferred to the other party.
|
|
1608
|
+
* If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.
|
|
1609
|
+
*
|
|
1610
|
+
* This function is a thin wrapper around [`DH_generate_key()`](https://www.openssl.org/docs/man3.0/man3/DH_generate_key.html). In particular,
|
|
1611
|
+
* once a private key has been generated or set, calling this function only updates
|
|
1612
|
+
* the public key but does not generate a new private key.
|
|
1613
|
+
* @since v0.5.0
|
|
1614
|
+
* @param encoding The `encoding` of the return value.
|
|
1615
|
+
*/
|
|
1616
|
+
generateKeys(): NonSharedBuffer;
|
|
1617
|
+
generateKeys(encoding: BinaryToTextEncoding): string;
|
|
1618
|
+
/**
|
|
1619
|
+
* Computes the shared secret using `otherPublicKey` as the other
|
|
1620
|
+
* party's public key and returns the computed shared secret. The supplied
|
|
1621
|
+
* key is interpreted using the specified `inputEncoding`, and secret is
|
|
1622
|
+
* encoded using specified `outputEncoding`.
|
|
1623
|
+
* If the `inputEncoding` is not
|
|
1624
|
+
* provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
1625
|
+
*
|
|
1626
|
+
* If `outputEncoding` is given a string is returned; otherwise, a `Buffer` is returned.
|
|
1627
|
+
* @since v0.5.0
|
|
1628
|
+
* @param inputEncoding The `encoding` of an `otherPublicKey` string.
|
|
1629
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
1630
|
+
*/
|
|
1631
|
+
computeSecret(
|
|
1632
|
+
otherPublicKey: NodeJS.ArrayBufferView,
|
|
1633
|
+
inputEncoding?: null,
|
|
1634
|
+
outputEncoding?: null,
|
|
1635
|
+
): NonSharedBuffer;
|
|
1636
|
+
computeSecret(
|
|
1637
|
+
otherPublicKey: string,
|
|
1638
|
+
inputEncoding: BinaryToTextEncoding,
|
|
1639
|
+
outputEncoding?: null,
|
|
1640
|
+
): NonSharedBuffer;
|
|
1641
|
+
computeSecret(
|
|
1642
|
+
otherPublicKey: NodeJS.ArrayBufferView,
|
|
1643
|
+
inputEncoding: null,
|
|
1644
|
+
outputEncoding: BinaryToTextEncoding,
|
|
1645
|
+
): string;
|
|
1646
|
+
computeSecret(
|
|
1647
|
+
otherPublicKey: string,
|
|
1648
|
+
inputEncoding: BinaryToTextEncoding,
|
|
1649
|
+
outputEncoding: BinaryToTextEncoding,
|
|
1650
|
+
): string;
|
|
1651
|
+
/**
|
|
1652
|
+
* Returns the Diffie-Hellman prime in the specified `encoding`.
|
|
1653
|
+
* If `encoding` is provided a string is
|
|
1654
|
+
* returned; otherwise a `Buffer` is returned.
|
|
1655
|
+
* @since v0.5.0
|
|
1656
|
+
* @param encoding The `encoding` of the return value.
|
|
1657
|
+
*/
|
|
1658
|
+
getPrime(): NonSharedBuffer;
|
|
1659
|
+
getPrime(encoding: BinaryToTextEncoding): string;
|
|
1660
|
+
/**
|
|
1661
|
+
* Returns the Diffie-Hellman generator in the specified `encoding`.
|
|
1662
|
+
* If `encoding` is provided a string is
|
|
1663
|
+
* returned; otherwise a `Buffer` is returned.
|
|
1664
|
+
* @since v0.5.0
|
|
1665
|
+
* @param encoding The `encoding` of the return value.
|
|
1666
|
+
*/
|
|
1667
|
+
getGenerator(): NonSharedBuffer;
|
|
1668
|
+
getGenerator(encoding: BinaryToTextEncoding): string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Returns the Diffie-Hellman public key in the specified `encoding`.
|
|
1671
|
+
* If `encoding` is provided a
|
|
1672
|
+
* string is returned; otherwise a `Buffer` is returned.
|
|
1673
|
+
* @since v0.5.0
|
|
1674
|
+
* @param encoding The `encoding` of the return value.
|
|
1675
|
+
*/
|
|
1676
|
+
getPublicKey(): NonSharedBuffer;
|
|
1677
|
+
getPublicKey(encoding: BinaryToTextEncoding): string;
|
|
1678
|
+
/**
|
|
1679
|
+
* Returns the Diffie-Hellman private key in the specified `encoding`.
|
|
1680
|
+
* If `encoding` is provided a
|
|
1681
|
+
* string is returned; otherwise a `Buffer` is returned.
|
|
1682
|
+
* @since v0.5.0
|
|
1683
|
+
* @param encoding The `encoding` of the return value.
|
|
1684
|
+
*/
|
|
1685
|
+
getPrivateKey(): NonSharedBuffer;
|
|
1686
|
+
getPrivateKey(encoding: BinaryToTextEncoding): string;
|
|
1687
|
+
/**
|
|
1688
|
+
* Sets the Diffie-Hellman public key. If the `encoding` argument is provided, `publicKey` is expected
|
|
1689
|
+
* to be a string. If no `encoding` is provided, `publicKey` is expected
|
|
1690
|
+
* to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
1691
|
+
* @since v0.5.0
|
|
1692
|
+
* @param encoding The `encoding` of the `publicKey` string.
|
|
1693
|
+
*/
|
|
1694
|
+
setPublicKey(publicKey: NodeJS.ArrayBufferView): void;
|
|
1695
|
+
setPublicKey(publicKey: string, encoding: BufferEncoding): void;
|
|
1696
|
+
/**
|
|
1697
|
+
* Sets the Diffie-Hellman private key. If the `encoding` argument is provided,`privateKey` is expected
|
|
1698
|
+
* to be a string. If no `encoding` is provided, `privateKey` is expected
|
|
1699
|
+
* to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
1700
|
+
*
|
|
1701
|
+
* This function does not automatically compute the associated public key. Either `diffieHellman.setPublicKey()` or `diffieHellman.generateKeys()` can be
|
|
1702
|
+
* used to manually provide the public key or to automatically derive it.
|
|
1703
|
+
* @since v0.5.0
|
|
1704
|
+
* @param encoding The `encoding` of the `privateKey` string.
|
|
1705
|
+
*/
|
|
1706
|
+
setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;
|
|
1707
|
+
setPrivateKey(privateKey: string, encoding: BufferEncoding): void;
|
|
1708
|
+
/**
|
|
1709
|
+
* A bit field containing any warnings and/or errors resulting from a check
|
|
1710
|
+
* performed during initialization of the `DiffieHellman` object.
|
|
1711
|
+
*
|
|
1712
|
+
* The following values are valid for this property (as defined in `node:constants` module):
|
|
1713
|
+
*
|
|
1714
|
+
* * `DH_CHECK_P_NOT_SAFE_PRIME`
|
|
1715
|
+
* * `DH_CHECK_P_NOT_PRIME`
|
|
1716
|
+
* * `DH_UNABLE_TO_CHECK_GENERATOR`
|
|
1717
|
+
* * `DH_NOT_SUITABLE_GENERATOR`
|
|
1718
|
+
* @since v0.11.12
|
|
1719
|
+
*/
|
|
1720
|
+
verifyError: number;
|
|
1721
|
+
}
|
|
1722
|
+
/**
|
|
1723
|
+
* The `DiffieHellmanGroup` class takes a well-known modp group as its argument.
|
|
1724
|
+
* It works the same as `DiffieHellman`, except that it does not allow changing its keys after creation.
|
|
1725
|
+
* In other words, it does not implement `setPublicKey()` or `setPrivateKey()` methods.
|
|
1726
|
+
*
|
|
1727
|
+
* ```js
|
|
1728
|
+
* const { createDiffieHellmanGroup } = await import('node:crypto');
|
|
1729
|
+
* const dh = createDiffieHellmanGroup('modp1');
|
|
1730
|
+
* ```
|
|
1731
|
+
* The name (e.g. `'modp1'`) is taken from [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt) (modp1 and 2) and [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt):
|
|
1732
|
+
* ```bash
|
|
1733
|
+
* $ perl -ne 'print "$1\n" if /"(modp\d+)"/' src/node_crypto_groups.h
|
|
1734
|
+
* modp1 # 768 bits
|
|
1735
|
+
* modp2 # 1024 bits
|
|
1736
|
+
* modp5 # 1536 bits
|
|
1737
|
+
* modp14 # 2048 bits
|
|
1738
|
+
* modp15 # etc.
|
|
1739
|
+
* modp16
|
|
1740
|
+
* modp17
|
|
1741
|
+
* modp18
|
|
1742
|
+
* ```
|
|
1743
|
+
* @since v0.7.5
|
|
1744
|
+
*/
|
|
1745
|
+
const DiffieHellmanGroup: DiffieHellmanGroupConstructor;
|
|
1746
|
+
interface DiffieHellmanGroupConstructor {
|
|
1747
|
+
new(name: string): DiffieHellmanGroup;
|
|
1748
|
+
(name: string): DiffieHellmanGroup;
|
|
1749
|
+
readonly prototype: DiffieHellmanGroup;
|
|
1750
|
+
}
|
|
1751
|
+
type DiffieHellmanGroup = Omit<DiffieHellman, "setPublicKey" | "setPrivateKey">;
|
|
1752
|
+
/**
|
|
1753
|
+
* Creates a predefined `DiffieHellmanGroup` key exchange object. The
|
|
1754
|
+
* supported groups are listed in the documentation for `DiffieHellmanGroup`.
|
|
1755
|
+
*
|
|
1756
|
+
* The returned object mimics the interface of objects created by {@link createDiffieHellman}, but will not allow changing
|
|
1757
|
+
* the keys (with `diffieHellman.setPublicKey()`, for example). The
|
|
1758
|
+
* advantage of using this method is that the parties do not have to
|
|
1759
|
+
* generate nor exchange a group modulus beforehand, saving both processor
|
|
1760
|
+
* and communication time.
|
|
1761
|
+
*
|
|
1762
|
+
* Example (obtaining a shared secret):
|
|
1763
|
+
*
|
|
1764
|
+
* ```js
|
|
1765
|
+
* const {
|
|
1766
|
+
* getDiffieHellman,
|
|
1767
|
+
* } = await import('node:crypto');
|
|
1768
|
+
* const alice = getDiffieHellman('modp14');
|
|
1769
|
+
* const bob = getDiffieHellman('modp14');
|
|
1770
|
+
*
|
|
1771
|
+
* alice.generateKeys();
|
|
1772
|
+
* bob.generateKeys();
|
|
1773
|
+
*
|
|
1774
|
+
* const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex');
|
|
1775
|
+
* const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex');
|
|
1776
|
+
*
|
|
1777
|
+
* // aliceSecret and bobSecret should be the same
|
|
1778
|
+
* console.log(aliceSecret === bobSecret);
|
|
1779
|
+
* ```
|
|
1780
|
+
* @since v0.7.5
|
|
1781
|
+
*/
|
|
1782
|
+
function getDiffieHellman(groupName: string): DiffieHellmanGroup;
|
|
1783
|
+
/**
|
|
1784
|
+
* An alias for {@link getDiffieHellman}
|
|
1785
|
+
* @since v0.9.3
|
|
1786
|
+
*/
|
|
1787
|
+
function createDiffieHellmanGroup(name: string): DiffieHellmanGroup;
|
|
1788
|
+
/**
|
|
1789
|
+
* Provides an asynchronous Password-Based Key Derivation Function 2 (PBKDF2)
|
|
1790
|
+
* implementation. A selected HMAC digest algorithm specified by `digest` is
|
|
1791
|
+
* applied to derive a key of the requested byte length (`keylen`) from the `password`, `salt` and `iterations`.
|
|
1792
|
+
*
|
|
1793
|
+
* The supplied `callback` function is called with two arguments: `err` and `derivedKey`. If an error occurs while deriving the key, `err` will be set;
|
|
1794
|
+
* otherwise `err` will be `null`. By default, the successfully generated `derivedKey` will be passed to the callback as a `Buffer`. An error will be
|
|
1795
|
+
* thrown if any of the input arguments specify invalid values or types.
|
|
1796
|
+
*
|
|
1797
|
+
* The `iterations` argument must be a number set as high as possible. The
|
|
1798
|
+
* higher the number of iterations, the more secure the derived key will be,
|
|
1799
|
+
* but will take a longer amount of time to complete.
|
|
1800
|
+
*
|
|
1801
|
+
* The `salt` should be as unique as possible. It is recommended that a salt is
|
|
1802
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
1803
|
+
*
|
|
1804
|
+
* When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
1805
|
+
*
|
|
1806
|
+
* ```js
|
|
1807
|
+
* const {
|
|
1808
|
+
* pbkdf2,
|
|
1809
|
+
* } = await import('node:crypto');
|
|
1810
|
+
*
|
|
1811
|
+
* pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => {
|
|
1812
|
+
* if (err) throw err;
|
|
1813
|
+
* console.log(derivedKey.toString('hex')); // '3745e48...08d59ae'
|
|
1814
|
+
* });
|
|
1815
|
+
* ```
|
|
1816
|
+
*
|
|
1817
|
+
* An array of supported digest functions can be retrieved using {@link getHashes}.
|
|
1818
|
+
*
|
|
1819
|
+
* This API uses libuv's threadpool, which can have surprising and
|
|
1820
|
+
* negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
|
|
1821
|
+
* @since v0.5.5
|
|
1822
|
+
*/
|
|
1823
|
+
function pbkdf2(
|
|
1824
|
+
password: BinaryLike,
|
|
1825
|
+
salt: BinaryLike,
|
|
1826
|
+
iterations: number,
|
|
1827
|
+
keylen: number,
|
|
1828
|
+
digest: string,
|
|
1829
|
+
callback: (err: Error | null, derivedKey: NonSharedBuffer) => void,
|
|
1830
|
+
): void;
|
|
1831
|
+
/**
|
|
1832
|
+
* Provides a synchronous Password-Based Key Derivation Function 2 (PBKDF2)
|
|
1833
|
+
* implementation. A selected HMAC digest algorithm specified by `digest` is
|
|
1834
|
+
* applied to derive a key of the requested byte length (`keylen`) from the `password`, `salt` and `iterations`.
|
|
1835
|
+
*
|
|
1836
|
+
* If an error occurs an `Error` will be thrown, otherwise the derived key will be
|
|
1837
|
+
* returned as a `Buffer`.
|
|
1838
|
+
*
|
|
1839
|
+
* The `iterations` argument must be a number set as high as possible. The
|
|
1840
|
+
* higher the number of iterations, the more secure the derived key will be,
|
|
1841
|
+
* but will take a longer amount of time to complete.
|
|
1842
|
+
*
|
|
1843
|
+
* The `salt` should be as unique as possible. It is recommended that a salt is
|
|
1844
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
1845
|
+
*
|
|
1846
|
+
* When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
1847
|
+
*
|
|
1848
|
+
* ```js
|
|
1849
|
+
* const {
|
|
1850
|
+
* pbkdf2Sync,
|
|
1851
|
+
* } = await import('node:crypto');
|
|
1852
|
+
*
|
|
1853
|
+
* const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
|
|
1854
|
+
* console.log(key.toString('hex')); // '3745e48...08d59ae'
|
|
1855
|
+
* ```
|
|
1856
|
+
*
|
|
1857
|
+
* An array of supported digest functions can be retrieved using {@link getHashes}.
|
|
1858
|
+
* @since v0.9.3
|
|
1859
|
+
*/
|
|
1860
|
+
function pbkdf2Sync(
|
|
1861
|
+
password: BinaryLike,
|
|
1862
|
+
salt: BinaryLike,
|
|
1863
|
+
iterations: number,
|
|
1864
|
+
keylen: number,
|
|
1865
|
+
digest: string,
|
|
1866
|
+
): NonSharedBuffer;
|
|
1867
|
+
/**
|
|
1868
|
+
* Generates cryptographically strong pseudorandom data. The `size` argument
|
|
1869
|
+
* is a number indicating the number of bytes to generate.
|
|
1870
|
+
*
|
|
1871
|
+
* If a `callback` function is provided, the bytes are generated asynchronously
|
|
1872
|
+
* and the `callback` function is invoked with two arguments: `err` and `buf`.
|
|
1873
|
+
* If an error occurs, `err` will be an `Error` object; otherwise it is `null`. The `buf` argument is a `Buffer` containing the generated bytes.
|
|
1874
|
+
*
|
|
1875
|
+
* ```js
|
|
1876
|
+
* // Asynchronous
|
|
1877
|
+
* const {
|
|
1878
|
+
* randomBytes,
|
|
1879
|
+
* } = await import('node:crypto');
|
|
1880
|
+
*
|
|
1881
|
+
* randomBytes(256, (err, buf) => {
|
|
1882
|
+
* if (err) throw err;
|
|
1883
|
+
* console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`);
|
|
1884
|
+
* });
|
|
1885
|
+
* ```
|
|
1886
|
+
*
|
|
1887
|
+
* If the `callback` function is not provided, the random bytes are generated
|
|
1888
|
+
* synchronously and returned as a `Buffer`. An error will be thrown if
|
|
1889
|
+
* there is a problem generating the bytes.
|
|
1890
|
+
*
|
|
1891
|
+
* ```js
|
|
1892
|
+
* // Synchronous
|
|
1893
|
+
* const {
|
|
1894
|
+
* randomBytes,
|
|
1895
|
+
* } = await import('node:crypto');
|
|
1896
|
+
*
|
|
1897
|
+
* const buf = randomBytes(256);
|
|
1898
|
+
* console.log(
|
|
1899
|
+
* `${buf.length} bytes of random data: ${buf.toString('hex')}`);
|
|
1900
|
+
* ```
|
|
1901
|
+
*
|
|
1902
|
+
* The `crypto.randomBytes()` method will not complete until there is
|
|
1903
|
+
* sufficient entropy available.
|
|
1904
|
+
* This should normally never take longer than a few milliseconds. The only time
|
|
1905
|
+
* when generating the random bytes may conceivably block for a longer period of
|
|
1906
|
+
* time is right after boot, when the whole system is still low on entropy.
|
|
1907
|
+
*
|
|
1908
|
+
* This API uses libuv's threadpool, which can have surprising and
|
|
1909
|
+
* negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
|
|
1910
|
+
*
|
|
1911
|
+
* The asynchronous version of `crypto.randomBytes()` is carried out in a single
|
|
1912
|
+
* threadpool request. To minimize threadpool task length variation, partition
|
|
1913
|
+
* large `randomBytes` requests when doing so as part of fulfilling a client
|
|
1914
|
+
* request.
|
|
1915
|
+
* @since v0.5.8
|
|
1916
|
+
* @param size The number of bytes to generate. The `size` must not be larger than `2**31 - 1`.
|
|
1917
|
+
* @return if the `callback` function is not provided.
|
|
1918
|
+
*/
|
|
1919
|
+
function randomBytes(size: number): NonSharedBuffer;
|
|
1920
|
+
function randomBytes(size: number, callback: (err: Error | null, buf: NonSharedBuffer) => void): void;
|
|
1921
|
+
function pseudoRandomBytes(size: number): NonSharedBuffer;
|
|
1922
|
+
function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: NonSharedBuffer) => void): void;
|
|
1923
|
+
/**
|
|
1924
|
+
* Return a random integer `n` such that `min <= n < max`. This
|
|
1925
|
+
* implementation avoids [modulo bias](https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias).
|
|
1926
|
+
*
|
|
1927
|
+
* The range (`max - min`) must be less than 2**48. `min` and `max` must
|
|
1928
|
+
* be [safe integers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger).
|
|
1929
|
+
*
|
|
1930
|
+
* If the `callback` function is not provided, the random integer is
|
|
1931
|
+
* generated synchronously.
|
|
1932
|
+
*
|
|
1933
|
+
* ```js
|
|
1934
|
+
* // Asynchronous
|
|
1935
|
+
* const {
|
|
1936
|
+
* randomInt,
|
|
1937
|
+
* } = await import('node:crypto');
|
|
1938
|
+
*
|
|
1939
|
+
* randomInt(3, (err, n) => {
|
|
1940
|
+
* if (err) throw err;
|
|
1941
|
+
* console.log(`Random number chosen from (0, 1, 2): ${n}`);
|
|
1942
|
+
* });
|
|
1943
|
+
* ```
|
|
1944
|
+
*
|
|
1945
|
+
* ```js
|
|
1946
|
+
* // Synchronous
|
|
1947
|
+
* const {
|
|
1948
|
+
* randomInt,
|
|
1949
|
+
* } = await import('node:crypto');
|
|
1950
|
+
*
|
|
1951
|
+
* const n = randomInt(3);
|
|
1952
|
+
* console.log(`Random number chosen from (0, 1, 2): ${n}`);
|
|
1953
|
+
* ```
|
|
1954
|
+
*
|
|
1955
|
+
* ```js
|
|
1956
|
+
* // With `min` argument
|
|
1957
|
+
* const {
|
|
1958
|
+
* randomInt,
|
|
1959
|
+
* } = await import('node:crypto');
|
|
1960
|
+
*
|
|
1961
|
+
* const n = randomInt(1, 7);
|
|
1962
|
+
* console.log(`The dice rolled: ${n}`);
|
|
1963
|
+
* ```
|
|
1964
|
+
* @since v14.10.0, v12.19.0
|
|
1965
|
+
* @param [min=0] Start of random range (inclusive).
|
|
1966
|
+
* @param max End of random range (exclusive).
|
|
1967
|
+
* @param callback `function(err, n) {}`.
|
|
1968
|
+
*/
|
|
1969
|
+
function randomInt(max: number): number;
|
|
1970
|
+
function randomInt(min: number, max: number): number;
|
|
1971
|
+
function randomInt(max: number, callback: (err: Error | null, value: number) => void): void;
|
|
1972
|
+
function randomInt(min: number, max: number, callback: (err: Error | null, value: number) => void): void;
|
|
1973
|
+
/**
|
|
1974
|
+
* Synchronous version of {@link randomFill}.
|
|
1975
|
+
*
|
|
1976
|
+
* ```js
|
|
1977
|
+
* import { Buffer } from 'node:buffer';
|
|
1978
|
+
* const { randomFillSync } = await import('node:crypto');
|
|
1979
|
+
*
|
|
1980
|
+
* const buf = Buffer.alloc(10);
|
|
1981
|
+
* console.log(randomFillSync(buf).toString('hex'));
|
|
1982
|
+
*
|
|
1983
|
+
* randomFillSync(buf, 5);
|
|
1984
|
+
* console.log(buf.toString('hex'));
|
|
1985
|
+
*
|
|
1986
|
+
* // The above is equivalent to the following:
|
|
1987
|
+
* randomFillSync(buf, 5, 5);
|
|
1988
|
+
* console.log(buf.toString('hex'));
|
|
1989
|
+
* ```
|
|
1990
|
+
*
|
|
1991
|
+
* Any `ArrayBuffer`, `TypedArray` or `DataView` instance may be passed as`buffer`.
|
|
1992
|
+
*
|
|
1993
|
+
* ```js
|
|
1994
|
+
* import { Buffer } from 'node:buffer';
|
|
1995
|
+
* const { randomFillSync } = await import('node:crypto');
|
|
1996
|
+
*
|
|
1997
|
+
* const a = new Uint32Array(10);
|
|
1998
|
+
* console.log(Buffer.from(randomFillSync(a).buffer,
|
|
1999
|
+
* a.byteOffset, a.byteLength).toString('hex'));
|
|
2000
|
+
*
|
|
2001
|
+
* const b = new DataView(new ArrayBuffer(10));
|
|
2002
|
+
* console.log(Buffer.from(randomFillSync(b).buffer,
|
|
2003
|
+
* b.byteOffset, b.byteLength).toString('hex'));
|
|
2004
|
+
*
|
|
2005
|
+
* const c = new ArrayBuffer(10);
|
|
2006
|
+
* console.log(Buffer.from(randomFillSync(c)).toString('hex'));
|
|
2007
|
+
* ```
|
|
2008
|
+
* @since v7.10.0, v6.13.0
|
|
2009
|
+
* @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.
|
|
2010
|
+
* @param [offset=0]
|
|
2011
|
+
* @param [size=buffer.length - offset]
|
|
2012
|
+
* @return The object passed as `buffer` argument.
|
|
2013
|
+
*/
|
|
2014
|
+
function randomFillSync<T extends NodeJS.ArrayBufferView>(buffer: T, offset?: number, size?: number): T;
|
|
2015
|
+
/**
|
|
2016
|
+
* This function is similar to {@link randomBytes} but requires the first
|
|
2017
|
+
* argument to be a `Buffer` that will be filled. It also
|
|
2018
|
+
* requires that a callback is passed in.
|
|
2019
|
+
*
|
|
2020
|
+
* If the `callback` function is not provided, an error will be thrown.
|
|
2021
|
+
*
|
|
2022
|
+
* ```js
|
|
2023
|
+
* import { Buffer } from 'node:buffer';
|
|
2024
|
+
* const { randomFill } = await import('node:crypto');
|
|
2025
|
+
*
|
|
2026
|
+
* const buf = Buffer.alloc(10);
|
|
2027
|
+
* randomFill(buf, (err, buf) => {
|
|
2028
|
+
* if (err) throw err;
|
|
2029
|
+
* console.log(buf.toString('hex'));
|
|
2030
|
+
* });
|
|
2031
|
+
*
|
|
2032
|
+
* randomFill(buf, 5, (err, buf) => {
|
|
2033
|
+
* if (err) throw err;
|
|
2034
|
+
* console.log(buf.toString('hex'));
|
|
2035
|
+
* });
|
|
2036
|
+
*
|
|
2037
|
+
* // The above is equivalent to the following:
|
|
2038
|
+
* randomFill(buf, 5, 5, (err, buf) => {
|
|
2039
|
+
* if (err) throw err;
|
|
2040
|
+
* console.log(buf.toString('hex'));
|
|
2041
|
+
* });
|
|
2042
|
+
* ```
|
|
2043
|
+
*
|
|
2044
|
+
* Any `ArrayBuffer`, `TypedArray`, or `DataView` instance may be passed as `buffer`.
|
|
2045
|
+
*
|
|
2046
|
+
* While this includes instances of `Float32Array` and `Float64Array`, this
|
|
2047
|
+
* function should not be used to generate random floating-point numbers. The
|
|
2048
|
+
* result may contain `+Infinity`, `-Infinity`, and `NaN`, and even if the array
|
|
2049
|
+
* contains finite numbers only, they are not drawn from a uniform random
|
|
2050
|
+
* distribution and have no meaningful lower or upper bounds.
|
|
2051
|
+
*
|
|
2052
|
+
* ```js
|
|
2053
|
+
* import { Buffer } from 'node:buffer';
|
|
2054
|
+
* const { randomFill } = await import('node:crypto');
|
|
2055
|
+
*
|
|
2056
|
+
* const a = new Uint32Array(10);
|
|
2057
|
+
* randomFill(a, (err, buf) => {
|
|
2058
|
+
* if (err) throw err;
|
|
2059
|
+
* console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)
|
|
2060
|
+
* .toString('hex'));
|
|
2061
|
+
* });
|
|
2062
|
+
*
|
|
2063
|
+
* const b = new DataView(new ArrayBuffer(10));
|
|
2064
|
+
* randomFill(b, (err, buf) => {
|
|
2065
|
+
* if (err) throw err;
|
|
2066
|
+
* console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)
|
|
2067
|
+
* .toString('hex'));
|
|
2068
|
+
* });
|
|
2069
|
+
*
|
|
2070
|
+
* const c = new ArrayBuffer(10);
|
|
2071
|
+
* randomFill(c, (err, buf) => {
|
|
2072
|
+
* if (err) throw err;
|
|
2073
|
+
* console.log(Buffer.from(buf).toString('hex'));
|
|
2074
|
+
* });
|
|
2075
|
+
* ```
|
|
2076
|
+
*
|
|
2077
|
+
* This API uses libuv's threadpool, which can have surprising and
|
|
2078
|
+
* negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
|
|
2079
|
+
*
|
|
2080
|
+
* The asynchronous version of `crypto.randomFill()` is carried out in a single
|
|
2081
|
+
* threadpool request. To minimize threadpool task length variation, partition
|
|
2082
|
+
* large `randomFill` requests when doing so as part of fulfilling a client
|
|
2083
|
+
* request.
|
|
2084
|
+
* @since v7.10.0, v6.13.0
|
|
2085
|
+
* @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.
|
|
2086
|
+
* @param [offset=0]
|
|
2087
|
+
* @param [size=buffer.length - offset]
|
|
2088
|
+
* @param callback `function(err, buf) {}`.
|
|
2089
|
+
*/
|
|
2090
|
+
function randomFill<T extends NodeJS.ArrayBufferView>(
|
|
2091
|
+
buffer: T,
|
|
2092
|
+
callback: (err: Error | null, buf: T) => void,
|
|
2093
|
+
): void;
|
|
2094
|
+
function randomFill<T extends NodeJS.ArrayBufferView>(
|
|
2095
|
+
buffer: T,
|
|
2096
|
+
offset: number,
|
|
2097
|
+
callback: (err: Error | null, buf: T) => void,
|
|
2098
|
+
): void;
|
|
2099
|
+
function randomFill<T extends NodeJS.ArrayBufferView>(
|
|
2100
|
+
buffer: T,
|
|
2101
|
+
offset: number,
|
|
2102
|
+
size: number,
|
|
2103
|
+
callback: (err: Error | null, buf: T) => void,
|
|
2104
|
+
): void;
|
|
2105
|
+
interface ScryptOptions {
|
|
2106
|
+
cost?: number | undefined;
|
|
2107
|
+
blockSize?: number | undefined;
|
|
2108
|
+
parallelization?: number | undefined;
|
|
2109
|
+
N?: number | undefined;
|
|
2110
|
+
r?: number | undefined;
|
|
2111
|
+
p?: number | undefined;
|
|
2112
|
+
maxmem?: number | undefined;
|
|
2113
|
+
}
|
|
2114
|
+
/**
|
|
2115
|
+
* Provides an asynchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based
|
|
2116
|
+
* key derivation function that is designed to be expensive computationally and
|
|
2117
|
+
* memory-wise in order to make brute-force attacks unrewarding.
|
|
2118
|
+
*
|
|
2119
|
+
* The `salt` should be as unique as possible. It is recommended that a salt is
|
|
2120
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
2121
|
+
*
|
|
2122
|
+
* When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
2123
|
+
*
|
|
2124
|
+
* The `callback` function is called with two arguments: `err` and `derivedKey`. `err` is an exception object when key derivation fails, otherwise `err` is `null`. `derivedKey` is passed to the
|
|
2125
|
+
* callback as a `Buffer`.
|
|
2126
|
+
*
|
|
2127
|
+
* An exception is thrown when any of the input arguments specify invalid values
|
|
2128
|
+
* or types.
|
|
2129
|
+
*
|
|
2130
|
+
* ```js
|
|
2131
|
+
* const {
|
|
2132
|
+
* scrypt,
|
|
2133
|
+
* } = await import('node:crypto');
|
|
2134
|
+
*
|
|
2135
|
+
* // Using the factory defaults.
|
|
2136
|
+
* scrypt('password', 'salt', 64, (err, derivedKey) => {
|
|
2137
|
+
* if (err) throw err;
|
|
2138
|
+
* console.log(derivedKey.toString('hex')); // '3745e48...08d59ae'
|
|
2139
|
+
* });
|
|
2140
|
+
* // Using a custom N parameter. Must be a power of two.
|
|
2141
|
+
* scrypt('password', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
|
|
2142
|
+
* if (err) throw err;
|
|
2143
|
+
* console.log(derivedKey.toString('hex')); // '3745e48...aa39b34'
|
|
2144
|
+
* });
|
|
2145
|
+
* ```
|
|
2146
|
+
* @since v10.5.0
|
|
2147
|
+
*/
|
|
2148
|
+
function scrypt(
|
|
2149
|
+
password: BinaryLike,
|
|
2150
|
+
salt: BinaryLike,
|
|
2151
|
+
keylen: number,
|
|
2152
|
+
callback: (err: Error | null, derivedKey: NonSharedBuffer) => void,
|
|
2153
|
+
): void;
|
|
2154
|
+
function scrypt(
|
|
2155
|
+
password: BinaryLike,
|
|
2156
|
+
salt: BinaryLike,
|
|
2157
|
+
keylen: number,
|
|
2158
|
+
options: ScryptOptions,
|
|
2159
|
+
callback: (err: Error | null, derivedKey: NonSharedBuffer) => void,
|
|
2160
|
+
): void;
|
|
2161
|
+
/**
|
|
2162
|
+
* Provides a synchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based
|
|
2163
|
+
* key derivation function that is designed to be expensive computationally and
|
|
2164
|
+
* memory-wise in order to make brute-force attacks unrewarding.
|
|
2165
|
+
*
|
|
2166
|
+
* The `salt` should be as unique as possible. It is recommended that a salt is
|
|
2167
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
2168
|
+
*
|
|
2169
|
+
* When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
|
|
2170
|
+
*
|
|
2171
|
+
* An exception is thrown when key derivation fails, otherwise the derived key is
|
|
2172
|
+
* returned as a `Buffer`.
|
|
2173
|
+
*
|
|
2174
|
+
* An exception is thrown when any of the input arguments specify invalid values
|
|
2175
|
+
* or types.
|
|
2176
|
+
*
|
|
2177
|
+
* ```js
|
|
2178
|
+
* const {
|
|
2179
|
+
* scryptSync,
|
|
2180
|
+
* } = await import('node:crypto');
|
|
2181
|
+
* // Using the factory defaults.
|
|
2182
|
+
*
|
|
2183
|
+
* const key1 = scryptSync('password', 'salt', 64);
|
|
2184
|
+
* console.log(key1.toString('hex')); // '3745e48...08d59ae'
|
|
2185
|
+
* // Using a custom N parameter. Must be a power of two.
|
|
2186
|
+
* const key2 = scryptSync('password', 'salt', 64, { N: 1024 });
|
|
2187
|
+
* console.log(key2.toString('hex')); // '3745e48...aa39b34'
|
|
2188
|
+
* ```
|
|
2189
|
+
* @since v10.5.0
|
|
2190
|
+
*/
|
|
2191
|
+
function scryptSync(
|
|
2192
|
+
password: BinaryLike,
|
|
2193
|
+
salt: BinaryLike,
|
|
2194
|
+
keylen: number,
|
|
2195
|
+
options?: ScryptOptions,
|
|
2196
|
+
): NonSharedBuffer;
|
|
2197
|
+
interface RsaPublicKey {
|
|
2198
|
+
key: KeyLike;
|
|
2199
|
+
padding?: number | undefined;
|
|
2200
|
+
}
|
|
2201
|
+
interface RsaPrivateKey {
|
|
2202
|
+
key: KeyLike;
|
|
2203
|
+
passphrase?: string | undefined;
|
|
2204
|
+
/**
|
|
2205
|
+
* @default 'sha1'
|
|
2206
|
+
*/
|
|
2207
|
+
oaepHash?: string | undefined;
|
|
2208
|
+
oaepLabel?: NodeJS.TypedArray | undefined;
|
|
2209
|
+
padding?: number | undefined;
|
|
2210
|
+
}
|
|
2211
|
+
/**
|
|
2212
|
+
* Encrypts the content of `buffer` with `key` and returns a new `Buffer` with encrypted content. The returned data can be decrypted using
|
|
2213
|
+
* the corresponding private key, for example using {@link privateDecrypt}.
|
|
2214
|
+
*
|
|
2215
|
+
* If `key` is not a `KeyObject`, this function behaves as if `key` had been passed to {@link createPublicKey}. If it is an
|
|
2216
|
+
* object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_OAEP_PADDING`.
|
|
2217
|
+
*
|
|
2218
|
+
* Because RSA public keys can be derived from private keys, a private key may
|
|
2219
|
+
* be passed instead of a public key.
|
|
2220
|
+
* @since v0.11.14
|
|
2221
|
+
*/
|
|
2222
|
+
function publicEncrypt(
|
|
2223
|
+
key: RsaPublicKey | RsaPrivateKey | KeyLike,
|
|
2224
|
+
buffer: NodeJS.ArrayBufferView | string,
|
|
2225
|
+
): NonSharedBuffer;
|
|
2226
|
+
/**
|
|
2227
|
+
* Decrypts `buffer` with `key`.`buffer` was previously encrypted using
|
|
2228
|
+
* the corresponding private key, for example using {@link privateEncrypt}.
|
|
2229
|
+
*
|
|
2230
|
+
* If `key` is not a `KeyObject`, this function behaves as if `key` had been passed to {@link createPublicKey}. If it is an
|
|
2231
|
+
* object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_PADDING`.
|
|
2232
|
+
*
|
|
2233
|
+
* Because RSA public keys can be derived from private keys, a private key may
|
|
2234
|
+
* be passed instead of a public key.
|
|
2235
|
+
* @since v1.1.0
|
|
2236
|
+
*/
|
|
2237
|
+
function publicDecrypt(
|
|
2238
|
+
key: RsaPublicKey | RsaPrivateKey | KeyLike,
|
|
2239
|
+
buffer: NodeJS.ArrayBufferView | string,
|
|
2240
|
+
): NonSharedBuffer;
|
|
2241
|
+
/**
|
|
2242
|
+
* Decrypts `buffer` with `privateKey`. `buffer` was previously encrypted using
|
|
2243
|
+
* the corresponding public key, for example using {@link publicEncrypt}.
|
|
2244
|
+
*
|
|
2245
|
+
* If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an
|
|
2246
|
+
* object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_OAEP_PADDING`.
|
|
2247
|
+
* @since v0.11.14
|
|
2248
|
+
*/
|
|
2249
|
+
function privateDecrypt(
|
|
2250
|
+
privateKey: RsaPrivateKey | KeyLike,
|
|
2251
|
+
buffer: NodeJS.ArrayBufferView | string,
|
|
2252
|
+
): NonSharedBuffer;
|
|
2253
|
+
/**
|
|
2254
|
+
* Encrypts `buffer` with `privateKey`. The returned data can be decrypted using
|
|
2255
|
+
* the corresponding public key, for example using {@link publicDecrypt}.
|
|
2256
|
+
*
|
|
2257
|
+
* If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an
|
|
2258
|
+
* object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_PADDING`.
|
|
2259
|
+
* @since v1.1.0
|
|
2260
|
+
*/
|
|
2261
|
+
function privateEncrypt(
|
|
2262
|
+
privateKey: RsaPrivateKey | KeyLike,
|
|
2263
|
+
buffer: NodeJS.ArrayBufferView | string,
|
|
2264
|
+
): NonSharedBuffer;
|
|
2265
|
+
/**
|
|
2266
|
+
* ```js
|
|
2267
|
+
* const {
|
|
2268
|
+
* getCiphers,
|
|
2269
|
+
* } = await import('node:crypto');
|
|
2270
|
+
*
|
|
2271
|
+
* console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
|
|
2272
|
+
* ```
|
|
2273
|
+
* @since v0.9.3
|
|
2274
|
+
* @return An array with the names of the supported cipher algorithms.
|
|
2275
|
+
*/
|
|
2276
|
+
function getCiphers(): string[];
|
|
2277
|
+
/**
|
|
2278
|
+
* ```js
|
|
2279
|
+
* const {
|
|
2280
|
+
* getCurves,
|
|
2281
|
+
* } = await import('node:crypto');
|
|
2282
|
+
*
|
|
2283
|
+
* console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...]
|
|
2284
|
+
* ```
|
|
2285
|
+
* @since v2.3.0
|
|
2286
|
+
* @return An array with the names of the supported elliptic curves.
|
|
2287
|
+
*/
|
|
2288
|
+
function getCurves(): string[];
|
|
2289
|
+
/**
|
|
2290
|
+
* @since v10.0.0
|
|
2291
|
+
* @return `1` if and only if a FIPS compliant crypto provider is currently in use, `0` otherwise. A future semver-major release may change the return type of this API to a {boolean}.
|
|
2292
|
+
*/
|
|
2293
|
+
function getFips(): 1 | 0;
|
|
2294
|
+
/**
|
|
2295
|
+
* Enables the FIPS compliant crypto provider in a FIPS-enabled Node.js build.
|
|
2296
|
+
* Throws an error if FIPS mode is not available.
|
|
2297
|
+
* @since v10.0.0
|
|
2298
|
+
* @param bool `true` to enable FIPS mode.
|
|
2299
|
+
*/
|
|
2300
|
+
function setFips(bool: boolean): void;
|
|
2301
|
+
/**
|
|
2302
|
+
* ```js
|
|
2303
|
+
* const {
|
|
2304
|
+
* getHashes,
|
|
2305
|
+
* } = await import('node:crypto');
|
|
2306
|
+
*
|
|
2307
|
+
* console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]
|
|
2308
|
+
* ```
|
|
2309
|
+
* @since v0.9.3
|
|
2310
|
+
* @return An array of the names of the supported hash algorithms, such as `'RSA-SHA256'`. Hash algorithms are also called "digest" algorithms.
|
|
2311
|
+
*/
|
|
2312
|
+
function getHashes(): string[];
|
|
2313
|
+
/**
|
|
2314
|
+
* The `ECDH` class is a utility for creating Elliptic Curve Diffie-Hellman (ECDH)
|
|
2315
|
+
* key exchanges.
|
|
2316
|
+
*
|
|
2317
|
+
* Instances of the `ECDH` class can be created using the {@link createECDH} function.
|
|
2318
|
+
*
|
|
2319
|
+
* ```js
|
|
2320
|
+
* import assert from 'node:assert';
|
|
2321
|
+
*
|
|
2322
|
+
* const {
|
|
2323
|
+
* createECDH,
|
|
2324
|
+
* } = await import('node:crypto');
|
|
2325
|
+
*
|
|
2326
|
+
* // Generate Alice's keys...
|
|
2327
|
+
* const alice = createECDH('secp521r1');
|
|
2328
|
+
* const aliceKey = alice.generateKeys();
|
|
2329
|
+
*
|
|
2330
|
+
* // Generate Bob's keys...
|
|
2331
|
+
* const bob = createECDH('secp521r1');
|
|
2332
|
+
* const bobKey = bob.generateKeys();
|
|
2333
|
+
*
|
|
2334
|
+
* // Exchange and generate the secret...
|
|
2335
|
+
* const aliceSecret = alice.computeSecret(bobKey);
|
|
2336
|
+
* const bobSecret = bob.computeSecret(aliceKey);
|
|
2337
|
+
*
|
|
2338
|
+
* assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));
|
|
2339
|
+
* // OK
|
|
2340
|
+
* ```
|
|
2341
|
+
* @since v0.11.14
|
|
2342
|
+
*/
|
|
2343
|
+
class ECDH {
|
|
2344
|
+
private constructor();
|
|
2345
|
+
/**
|
|
2346
|
+
* Converts the EC Diffie-Hellman public key specified by `key` and `curve` to the
|
|
2347
|
+
* format specified by `format`. The `format` argument specifies point encoding
|
|
2348
|
+
* and can be `'compressed'`, `'uncompressed'` or `'hybrid'`. The supplied key is
|
|
2349
|
+
* interpreted using the specified `inputEncoding`, and the returned key is encoded
|
|
2350
|
+
* using the specified `outputEncoding`.
|
|
2351
|
+
*
|
|
2352
|
+
* Use {@link getCurves} to obtain a list of available curve names.
|
|
2353
|
+
* On recent OpenSSL releases, `openssl ecparam -list_curves` will also display
|
|
2354
|
+
* the name and description of each available elliptic curve.
|
|
2355
|
+
*
|
|
2356
|
+
* If `format` is not specified the point will be returned in `'uncompressed'` format.
|
|
2357
|
+
*
|
|
2358
|
+
* If the `inputEncoding` is not provided, `key` is expected to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
2359
|
+
*
|
|
2360
|
+
* Example (uncompressing a key):
|
|
2361
|
+
*
|
|
2362
|
+
* ```js
|
|
2363
|
+
* const {
|
|
2364
|
+
* createECDH,
|
|
2365
|
+
* ECDH,
|
|
2366
|
+
* } = await import('node:crypto');
|
|
2367
|
+
*
|
|
2368
|
+
* const ecdh = createECDH('secp256k1');
|
|
2369
|
+
* ecdh.generateKeys();
|
|
2370
|
+
*
|
|
2371
|
+
* const compressedKey = ecdh.getPublicKey('hex', 'compressed');
|
|
2372
|
+
*
|
|
2373
|
+
* const uncompressedKey = ECDH.convertKey(compressedKey,
|
|
2374
|
+
* 'secp256k1',
|
|
2375
|
+
* 'hex',
|
|
2376
|
+
* 'hex',
|
|
2377
|
+
* 'uncompressed');
|
|
2378
|
+
*
|
|
2379
|
+
* // The converted key and the uncompressed public key should be the same
|
|
2380
|
+
* console.log(uncompressedKey === ecdh.getPublicKey('hex'));
|
|
2381
|
+
* ```
|
|
2382
|
+
* @since v10.0.0
|
|
2383
|
+
* @param inputEncoding The `encoding` of the `key` string.
|
|
2384
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
2385
|
+
* @param [format='uncompressed']
|
|
2386
|
+
*/
|
|
2387
|
+
static convertKey(
|
|
2388
|
+
key: BinaryLike,
|
|
2389
|
+
curve: string,
|
|
2390
|
+
inputEncoding?: BinaryToTextEncoding,
|
|
2391
|
+
outputEncoding?: "latin1" | "hex" | "base64" | "base64url",
|
|
2392
|
+
format?: "uncompressed" | "compressed" | "hybrid",
|
|
2393
|
+
): NonSharedBuffer | string;
|
|
2394
|
+
/**
|
|
2395
|
+
* Generates private and public EC Diffie-Hellman key values, and returns
|
|
2396
|
+
* the public key in the specified `format` and `encoding`. This key should be
|
|
2397
|
+
* transferred to the other party.
|
|
2398
|
+
*
|
|
2399
|
+
* The `format` argument specifies point encoding and can be `'compressed'` or `'uncompressed'`. If `format` is not specified, the point will be returned in`'uncompressed'` format.
|
|
2400
|
+
*
|
|
2401
|
+
* If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.
|
|
2402
|
+
* @since v0.11.14
|
|
2403
|
+
* @param encoding The `encoding` of the return value.
|
|
2404
|
+
* @param [format='uncompressed']
|
|
2405
|
+
*/
|
|
2406
|
+
generateKeys(): NonSharedBuffer;
|
|
2407
|
+
generateKeys(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;
|
|
2408
|
+
/**
|
|
2409
|
+
* Computes the shared secret using `otherPublicKey` as the other
|
|
2410
|
+
* party's public key and returns the computed shared secret. The supplied
|
|
2411
|
+
* key is interpreted using specified `inputEncoding`, and the returned secret
|
|
2412
|
+
* is encoded using the specified `outputEncoding`.
|
|
2413
|
+
* If the `inputEncoding` is not
|
|
2414
|
+
* provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
2415
|
+
*
|
|
2416
|
+
* If `outputEncoding` is given a string will be returned; otherwise a `Buffer` is returned.
|
|
2417
|
+
*
|
|
2418
|
+
* `ecdh.computeSecret` will throw an`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY` error when `otherPublicKey` lies outside of the elliptic curve. Since `otherPublicKey` is
|
|
2419
|
+
* usually supplied from a remote user over an insecure network,
|
|
2420
|
+
* be sure to handle this exception accordingly.
|
|
2421
|
+
* @since v0.11.14
|
|
2422
|
+
* @param inputEncoding The `encoding` of the `otherPublicKey` string.
|
|
2423
|
+
* @param outputEncoding The `encoding` of the return value.
|
|
2424
|
+
*/
|
|
2425
|
+
computeSecret(otherPublicKey: NodeJS.ArrayBufferView): NonSharedBuffer;
|
|
2426
|
+
computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): NonSharedBuffer;
|
|
2427
|
+
computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string;
|
|
2428
|
+
computeSecret(
|
|
2429
|
+
otherPublicKey: string,
|
|
2430
|
+
inputEncoding: BinaryToTextEncoding,
|
|
2431
|
+
outputEncoding: BinaryToTextEncoding,
|
|
2432
|
+
): string;
|
|
2433
|
+
/**
|
|
2434
|
+
* If `encoding` is specified, a string is returned; otherwise a `Buffer` is
|
|
2435
|
+
* returned.
|
|
2436
|
+
* @since v0.11.14
|
|
2437
|
+
* @param encoding The `encoding` of the return value.
|
|
2438
|
+
* @return The EC Diffie-Hellman in the specified `encoding`.
|
|
2439
|
+
*/
|
|
2440
|
+
getPrivateKey(): NonSharedBuffer;
|
|
2441
|
+
getPrivateKey(encoding: BinaryToTextEncoding): string;
|
|
2442
|
+
/**
|
|
2443
|
+
* The `format` argument specifies point encoding and can be `'compressed'` or `'uncompressed'`. If `format` is not specified the point will be returned in`'uncompressed'` format.
|
|
2444
|
+
*
|
|
2445
|
+
* If `encoding` is specified, a string is returned; otherwise a `Buffer` is
|
|
2446
|
+
* returned.
|
|
2447
|
+
* @since v0.11.14
|
|
2448
|
+
* @param encoding The `encoding` of the return value.
|
|
2449
|
+
* @param [format='uncompressed']
|
|
2450
|
+
* @return The EC Diffie-Hellman public key in the specified `encoding` and `format`.
|
|
2451
|
+
*/
|
|
2452
|
+
getPublicKey(encoding?: null, format?: ECDHKeyFormat): NonSharedBuffer;
|
|
2453
|
+
getPublicKey(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;
|
|
2454
|
+
/**
|
|
2455
|
+
* Sets the EC Diffie-Hellman private key.
|
|
2456
|
+
* If `encoding` is provided, `privateKey` is expected
|
|
2457
|
+
* to be a string; otherwise `privateKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.
|
|
2458
|
+
*
|
|
2459
|
+
* If `privateKey` is not valid for the curve specified when the `ECDH` object was
|
|
2460
|
+
* created, an error is thrown. Upon setting the private key, the associated
|
|
2461
|
+
* public point (key) is also generated and set in the `ECDH` object.
|
|
2462
|
+
* @since v0.11.14
|
|
2463
|
+
* @param encoding The `encoding` of the `privateKey` string.
|
|
2464
|
+
*/
|
|
2465
|
+
setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;
|
|
2466
|
+
setPrivateKey(privateKey: string, encoding: BinaryToTextEncoding): void;
|
|
2467
|
+
}
|
|
2468
|
+
/**
|
|
2469
|
+
* Creates an Elliptic Curve Diffie-Hellman (`ECDH`) key exchange object using a
|
|
2470
|
+
* predefined curve specified by the `curveName` string. Use {@link getCurves} to obtain a list of available curve names. On recent
|
|
2471
|
+
* OpenSSL releases, `openssl ecparam -list_curves` will also display the name
|
|
2472
|
+
* and description of each available elliptic curve.
|
|
2473
|
+
* @since v0.11.14
|
|
2474
|
+
*/
|
|
2475
|
+
function createECDH(curveName: string): ECDH;
|
|
2476
|
+
/**
|
|
2477
|
+
* This function compares the underlying bytes that represent the given `ArrayBuffer`, `TypedArray`, or `DataView` instances using a constant-time
|
|
2478
|
+
* algorithm.
|
|
2479
|
+
*
|
|
2480
|
+
* This function does not leak timing information that
|
|
2481
|
+
* would allow an attacker to guess one of the values. This is suitable for
|
|
2482
|
+
* comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/).
|
|
2483
|
+
*
|
|
2484
|
+
* `a` and `b` must both be `Buffer`s, `TypedArray`s, or `DataView`s, and they
|
|
2485
|
+
* must have the same byte length. An error is thrown if `a` and `b` have
|
|
2486
|
+
* different byte lengths.
|
|
2487
|
+
*
|
|
2488
|
+
* If at least one of `a` and `b` is a `TypedArray` with more than one byte per
|
|
2489
|
+
* entry, such as `Uint16Array`, the result will be computed using the platform
|
|
2490
|
+
* byte order.
|
|
2491
|
+
*
|
|
2492
|
+
* **When both of the inputs are `Float32Array`s or `Float64Array`s, this function might return unexpected results due to IEEE 754**
|
|
2493
|
+
* **encoding of floating-point numbers. In particular, neither `x === y` nor `Object.is(x, y)` implies that the byte representations of two floating-point**
|
|
2494
|
+
* **numbers `x` and `y` are equal.**
|
|
2495
|
+
*
|
|
2496
|
+
* Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code
|
|
2497
|
+
* is timing-safe. Care should be taken to ensure that the surrounding code does
|
|
2498
|
+
* not introduce timing vulnerabilities.
|
|
2499
|
+
* @since v6.6.0
|
|
2500
|
+
*/
|
|
2501
|
+
function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean;
|
|
2502
|
+
interface DHKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {
|
|
2503
|
+
/**
|
|
2504
|
+
* The prime parameter
|
|
2505
|
+
*/
|
|
2506
|
+
prime?: Buffer | undefined;
|
|
2507
|
+
/**
|
|
2508
|
+
* Prime length in bits
|
|
2509
|
+
*/
|
|
2510
|
+
primeLength?: number | undefined;
|
|
2511
|
+
/**
|
|
2512
|
+
* Custom generator
|
|
2513
|
+
* @default 2
|
|
2514
|
+
*/
|
|
2515
|
+
generator?: number | undefined;
|
|
2516
|
+
/**
|
|
2517
|
+
* Diffie-Hellman group name
|
|
2518
|
+
* @see {@link getDiffieHellman}
|
|
2519
|
+
*/
|
|
2520
|
+
groupName?: string | undefined;
|
|
2521
|
+
}
|
|
2522
|
+
interface DSAKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {
|
|
2523
|
+
/**
|
|
2524
|
+
* Key size in bits
|
|
2525
|
+
*/
|
|
2526
|
+
modulusLength: number;
|
|
2527
|
+
/**
|
|
2528
|
+
* Size of q in bits
|
|
2529
|
+
*/
|
|
2530
|
+
divisorLength: number;
|
|
2531
|
+
}
|
|
2532
|
+
interface ECKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8" | "sec1"> {
|
|
2533
|
+
/**
|
|
2534
|
+
* Name of the curve to use
|
|
2535
|
+
*/
|
|
2536
|
+
namedCurve: string;
|
|
2537
|
+
/**
|
|
2538
|
+
* Must be `'named'` or `'explicit'`
|
|
2539
|
+
* @default 'named'
|
|
2540
|
+
*/
|
|
2541
|
+
paramEncoding?: "explicit" | "named" | undefined;
|
|
2542
|
+
}
|
|
2543
|
+
interface ED25519KeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2544
|
+
interface ED448KeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2545
|
+
interface MLDSAKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2546
|
+
interface MLKEMKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2547
|
+
interface RSAPSSKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {
|
|
2548
|
+
/**
|
|
2549
|
+
* Key size in bits
|
|
2550
|
+
*/
|
|
2551
|
+
modulusLength: number;
|
|
2552
|
+
/**
|
|
2553
|
+
* Public exponent
|
|
2554
|
+
* @default 0x10001
|
|
2555
|
+
*/
|
|
2556
|
+
publicExponent?: number | undefined;
|
|
2557
|
+
/**
|
|
2558
|
+
* Name of the message digest
|
|
2559
|
+
*/
|
|
2560
|
+
hashAlgorithm?: string | undefined;
|
|
2561
|
+
/**
|
|
2562
|
+
* Name of the message digest used by MGF1
|
|
2563
|
+
*/
|
|
2564
|
+
mgf1HashAlgorithm?: string | undefined;
|
|
2565
|
+
/**
|
|
2566
|
+
* Minimal salt length in bytes
|
|
2567
|
+
*/
|
|
2568
|
+
saltLength?: string | undefined;
|
|
2569
|
+
}
|
|
2570
|
+
interface RSAKeyPairOptions extends KeyPairExportOptions<"pkcs1" | "spki", "pkcs1" | "pkcs8"> {
|
|
2571
|
+
/**
|
|
2572
|
+
* Key size in bits
|
|
2573
|
+
*/
|
|
2574
|
+
modulusLength: number;
|
|
2575
|
+
/**
|
|
2576
|
+
* Public exponent
|
|
2577
|
+
* @default 0x10001
|
|
2578
|
+
*/
|
|
2579
|
+
publicExponent?: number | undefined;
|
|
2580
|
+
}
|
|
2581
|
+
interface SLHDSAKeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2582
|
+
interface X25519KeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2583
|
+
interface X448KeyPairOptions extends KeyPairExportOptions<"spki", "pkcs8"> {}
|
|
2584
|
+
/**
|
|
2585
|
+
* Generates a new asymmetric key pair of the given `type`. See the
|
|
2586
|
+
* supported [asymmetric key types](https://nodejs.org/docs/latest-v25.x/api/crypto.html#asymmetric-key-types).
|
|
2587
|
+
*
|
|
2588
|
+
* If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function
|
|
2589
|
+
* behaves as if `keyObject.export()` had been called on its result. Otherwise,
|
|
2590
|
+
* the respective part of the key is returned as a `KeyObject`.
|
|
2591
|
+
*
|
|
2592
|
+
* When encoding public keys, it is recommended to use `'spki'`. When encoding
|
|
2593
|
+
* private keys, it is recommended to use `'pkcs8'` with a strong passphrase,
|
|
2594
|
+
* and to keep the passphrase confidential.
|
|
2595
|
+
*
|
|
2596
|
+
* ```js
|
|
2597
|
+
* const {
|
|
2598
|
+
* generateKeyPairSync,
|
|
2599
|
+
* } = await import('node:crypto');
|
|
2600
|
+
*
|
|
2601
|
+
* const {
|
|
2602
|
+
* publicKey,
|
|
2603
|
+
* privateKey,
|
|
2604
|
+
* } = generateKeyPairSync('rsa', {
|
|
2605
|
+
* modulusLength: 4096,
|
|
2606
|
+
* publicKeyEncoding: {
|
|
2607
|
+
* type: 'spki',
|
|
2608
|
+
* format: 'pem',
|
|
2609
|
+
* },
|
|
2610
|
+
* privateKeyEncoding: {
|
|
2611
|
+
* type: 'pkcs8',
|
|
2612
|
+
* format: 'pem',
|
|
2613
|
+
* cipher: 'aes-256-cbc',
|
|
2614
|
+
* passphrase: 'top secret',
|
|
2615
|
+
* },
|
|
2616
|
+
* });
|
|
2617
|
+
* ```
|
|
2618
|
+
*
|
|
2619
|
+
* The return value `{ publicKey, privateKey }` represents the generated key pair.
|
|
2620
|
+
* When PEM encoding was selected, the respective key will be a string, otherwise
|
|
2621
|
+
* it will be a buffer containing the data encoded as DER.
|
|
2622
|
+
* @since v10.12.0
|
|
2623
|
+
* @param type The asymmetric key type to generate. See the
|
|
2624
|
+
* supported [asymmetric key types](https://nodejs.org/docs/latest-v25.x/api/crypto.html#asymmetric-key-types).
|
|
2625
|
+
*/
|
|
2626
|
+
function generateKeyPairSync<T extends DHKeyPairOptions>(
|
|
2627
|
+
type: "dh",
|
|
2628
|
+
options: T,
|
|
2629
|
+
): KeyPairExportResult<T>;
|
|
2630
|
+
function generateKeyPairSync<T extends DSAKeyPairOptions>(
|
|
2631
|
+
type: "dsa",
|
|
2632
|
+
options: T,
|
|
2633
|
+
): KeyPairExportResult<T>;
|
|
2634
|
+
function generateKeyPairSync<T extends ECKeyPairOptions>(
|
|
2635
|
+
type: "ec",
|
|
2636
|
+
options: T,
|
|
2637
|
+
): KeyPairExportResult<T>;
|
|
2638
|
+
function generateKeyPairSync<T extends ED25519KeyPairOptions = {}>(
|
|
2639
|
+
type: "ed25519",
|
|
2640
|
+
options?: T,
|
|
2641
|
+
): KeyPairExportResult<T>;
|
|
2642
|
+
function generateKeyPairSync<T extends ED448KeyPairOptions = {}>(
|
|
2643
|
+
type: "ed448",
|
|
2644
|
+
options?: T,
|
|
2645
|
+
): KeyPairExportResult<T>;
|
|
2646
|
+
function generateKeyPairSync<T extends MLDSAKeyPairOptions = {}>(
|
|
2647
|
+
type: MLDSAKeyType,
|
|
2648
|
+
options?: T,
|
|
2649
|
+
): KeyPairExportResult<T>;
|
|
2650
|
+
function generateKeyPairSync<T extends MLKEMKeyPairOptions = {}>(
|
|
2651
|
+
type: MLKEMKeyType,
|
|
2652
|
+
options?: T,
|
|
2653
|
+
): KeyPairExportResult<T>;
|
|
2654
|
+
function generateKeyPairSync<T extends RSAPSSKeyPairOptions>(
|
|
2655
|
+
type: "rsa-pss",
|
|
2656
|
+
options: T,
|
|
2657
|
+
): KeyPairExportResult<T>;
|
|
2658
|
+
function generateKeyPairSync<T extends RSAKeyPairOptions>(
|
|
2659
|
+
type: "rsa",
|
|
2660
|
+
options: T,
|
|
2661
|
+
): KeyPairExportResult<T>;
|
|
2662
|
+
function generateKeyPairSync<T extends SLHDSAKeyPairOptions = {}>(
|
|
2663
|
+
type: SLHDSAKeyType,
|
|
2664
|
+
options?: T,
|
|
2665
|
+
): KeyPairExportResult<T>;
|
|
2666
|
+
function generateKeyPairSync<T extends X25519KeyPairOptions = {}>(
|
|
2667
|
+
type: "x25519",
|
|
2668
|
+
options?: T,
|
|
2669
|
+
): KeyPairExportResult<T>;
|
|
2670
|
+
function generateKeyPairSync<T extends X448KeyPairOptions = {}>(
|
|
2671
|
+
type: "x448",
|
|
2672
|
+
options?: T,
|
|
2673
|
+
): KeyPairExportResult<T>;
|
|
2674
|
+
/**
|
|
2675
|
+
* Generates a new asymmetric key pair of the given `type`. See the
|
|
2676
|
+
* supported [asymmetric key types](https://nodejs.org/docs/latest-v25.x/api/crypto.html#asymmetric-key-types).
|
|
2677
|
+
*
|
|
2678
|
+
* If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function
|
|
2679
|
+
* behaves as if `keyObject.export()` had been called on its result. Otherwise,
|
|
2680
|
+
* the respective part of the key is returned as a `KeyObject`.
|
|
2681
|
+
*
|
|
2682
|
+
* It is recommended to encode public keys as `'spki'` and private keys as `'pkcs8'` with encryption for long-term storage:
|
|
2683
|
+
*
|
|
2684
|
+
* ```js
|
|
2685
|
+
* const {
|
|
2686
|
+
* generateKeyPair,
|
|
2687
|
+
* } = await import('node:crypto');
|
|
2688
|
+
*
|
|
2689
|
+
* generateKeyPair('rsa', {
|
|
2690
|
+
* modulusLength: 4096,
|
|
2691
|
+
* publicKeyEncoding: {
|
|
2692
|
+
* type: 'spki',
|
|
2693
|
+
* format: 'pem',
|
|
2694
|
+
* },
|
|
2695
|
+
* privateKeyEncoding: {
|
|
2696
|
+
* type: 'pkcs8',
|
|
2697
|
+
* format: 'pem',
|
|
2698
|
+
* cipher: 'aes-256-cbc',
|
|
2699
|
+
* passphrase: 'top secret',
|
|
2700
|
+
* },
|
|
2701
|
+
* }, (err, publicKey, privateKey) => {
|
|
2702
|
+
* // Handle errors and use the generated key pair.
|
|
2703
|
+
* });
|
|
2704
|
+
* ```
|
|
2705
|
+
*
|
|
2706
|
+
* On completion, `callback` will be called with `err` set to `undefined` and `publicKey` / `privateKey` representing the generated key pair.
|
|
2707
|
+
*
|
|
2708
|
+
* If this method is invoked as its `util.promisify()` ed version, it returns
|
|
2709
|
+
* a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
|
|
2710
|
+
* @since v10.12.0
|
|
2711
|
+
* @param type The asymmetric key type to generate. See the
|
|
2712
|
+
* supported [asymmetric key types](https://nodejs.org/docs/latest-v25.x/api/crypto.html#asymmetric-key-types).
|
|
2713
|
+
*/
|
|
2714
|
+
function generateKeyPair<T extends DHKeyPairOptions>(
|
|
2715
|
+
type: "dh",
|
|
2716
|
+
options: T,
|
|
2717
|
+
callback: KeyPairExportCallback<T>,
|
|
2718
|
+
): void;
|
|
2719
|
+
function generateKeyPair<T extends DSAKeyPairOptions>(
|
|
2720
|
+
type: "dsa",
|
|
2721
|
+
options: T,
|
|
2722
|
+
callback: KeyPairExportCallback<T>,
|
|
2723
|
+
): void;
|
|
2724
|
+
function generateKeyPair<T extends ECKeyPairOptions>(
|
|
2725
|
+
type: "ec",
|
|
2726
|
+
options: T,
|
|
2727
|
+
callback: KeyPairExportCallback<T>,
|
|
2728
|
+
): void;
|
|
2729
|
+
function generateKeyPair<T extends ED25519KeyPairOptions = {}>(
|
|
2730
|
+
type: "ed25519",
|
|
2731
|
+
options: T | undefined,
|
|
2732
|
+
callback: KeyPairExportCallback<T>,
|
|
2733
|
+
): void;
|
|
2734
|
+
function generateKeyPair<T extends ED448KeyPairOptions = {}>(
|
|
2735
|
+
type: "ed448",
|
|
2736
|
+
options: T | undefined,
|
|
2737
|
+
callback: KeyPairExportCallback<T>,
|
|
2738
|
+
): void;
|
|
2739
|
+
function generateKeyPair<T extends MLDSAKeyPairOptions = {}>(
|
|
2740
|
+
type: MLDSAKeyType,
|
|
2741
|
+
options: T | undefined,
|
|
2742
|
+
callback: KeyPairExportCallback<T>,
|
|
2743
|
+
): void;
|
|
2744
|
+
function generateKeyPair<T extends MLKEMKeyPairOptions = {}>(
|
|
2745
|
+
type: MLKEMKeyType,
|
|
2746
|
+
options: T | undefined,
|
|
2747
|
+
callback: KeyPairExportCallback<T>,
|
|
2748
|
+
): void;
|
|
2749
|
+
function generateKeyPair<T extends RSAPSSKeyPairOptions>(
|
|
2750
|
+
type: "rsa-pss",
|
|
2751
|
+
options: T,
|
|
2752
|
+
callback: KeyPairExportCallback<T>,
|
|
2753
|
+
): void;
|
|
2754
|
+
function generateKeyPair<T extends RSAKeyPairOptions>(
|
|
2755
|
+
type: "rsa",
|
|
2756
|
+
options: T,
|
|
2757
|
+
callback: KeyPairExportCallback<T>,
|
|
2758
|
+
): void;
|
|
2759
|
+
function generateKeyPair<T extends SLHDSAKeyPairOptions = {}>(
|
|
2760
|
+
type: SLHDSAKeyType,
|
|
2761
|
+
options: T | undefined,
|
|
2762
|
+
callback: KeyPairExportCallback<T>,
|
|
2763
|
+
): void;
|
|
2764
|
+
function generateKeyPair<T extends X25519KeyPairOptions = {}>(
|
|
2765
|
+
type: "x25519",
|
|
2766
|
+
options: T | undefined,
|
|
2767
|
+
callback: KeyPairExportCallback<T>,
|
|
2768
|
+
): void;
|
|
2769
|
+
function generateKeyPair<T extends X448KeyPairOptions = {}>(
|
|
2770
|
+
type: "x448",
|
|
2771
|
+
options: T | undefined,
|
|
2772
|
+
callback: KeyPairExportCallback<T>,
|
|
2773
|
+
): void;
|
|
2774
|
+
namespace generateKeyPair {
|
|
2775
|
+
function __promisify__<T extends DHKeyPairOptions>(
|
|
2776
|
+
type: "dh",
|
|
2777
|
+
options: T,
|
|
2778
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2779
|
+
function __promisify__<T extends DSAKeyPairOptions>(
|
|
2780
|
+
type: "dsa",
|
|
2781
|
+
options: T,
|
|
2782
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2783
|
+
function __promisify__<T extends ECKeyPairOptions>(
|
|
2784
|
+
type: "ec",
|
|
2785
|
+
options: T,
|
|
2786
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2787
|
+
function __promisify__<T extends ED25519KeyPairOptions = {}>(
|
|
2788
|
+
type: "ed25519",
|
|
2789
|
+
options?: T,
|
|
2790
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2791
|
+
function __promisify__<T extends ED448KeyPairOptions = {}>(
|
|
2792
|
+
type: "ed448",
|
|
2793
|
+
options?: T,
|
|
2794
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2795
|
+
function __promisify__<T extends MLDSAKeyPairOptions = {}>(
|
|
2796
|
+
type: MLDSAKeyType,
|
|
2797
|
+
options?: T,
|
|
2798
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2799
|
+
function __promisify__<T extends MLKEMKeyPairOptions = {}>(
|
|
2800
|
+
type: MLKEMKeyType,
|
|
2801
|
+
options?: T,
|
|
2802
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2803
|
+
function __promisify__<T extends RSAPSSKeyPairOptions>(
|
|
2804
|
+
type: "rsa-pss",
|
|
2805
|
+
options: T,
|
|
2806
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2807
|
+
function __promisify__<T extends RSAKeyPairOptions>(
|
|
2808
|
+
type: "rsa",
|
|
2809
|
+
options: T,
|
|
2810
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2811
|
+
function __promisify__<T extends SLHDSAKeyPairOptions = {}>(
|
|
2812
|
+
type: SLHDSAKeyType,
|
|
2813
|
+
options?: T,
|
|
2814
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2815
|
+
function __promisify__<T extends X25519KeyPairOptions = {}>(
|
|
2816
|
+
type: "x25519",
|
|
2817
|
+
options?: T,
|
|
2818
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2819
|
+
function __promisify__<T extends X448KeyPairOptions = {}>(
|
|
2820
|
+
type: "x448",
|
|
2821
|
+
options?: T,
|
|
2822
|
+
): Promise<KeyPairExportResult<T>>;
|
|
2823
|
+
}
|
|
2824
|
+
/**
|
|
2825
|
+
* Calculates and returns the signature for `data` using the given private key and
|
|
2826
|
+
* algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is
|
|
2827
|
+
* dependent upon the key type.
|
|
2828
|
+
*
|
|
2829
|
+
* `algorithm` is required to be `null` or `undefined` for Ed25519, Ed448, and
|
|
2830
|
+
* ML-DSA.
|
|
2831
|
+
*
|
|
2832
|
+
* If `key` is not a `KeyObject`, this function behaves as if `key` had been
|
|
2833
|
+
* passed to {@link createPrivateKey}. If it is an object, the following
|
|
2834
|
+
* additional properties can be passed:
|
|
2835
|
+
*
|
|
2836
|
+
* If the `callback` function is provided this function uses libuv's threadpool.
|
|
2837
|
+
* @since v12.0.0
|
|
2838
|
+
*/
|
|
2839
|
+
function sign(
|
|
2840
|
+
algorithm: string | null | undefined,
|
|
2841
|
+
data: NodeJS.ArrayBufferView,
|
|
2842
|
+
key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,
|
|
2843
|
+
): NonSharedBuffer;
|
|
2844
|
+
function sign(
|
|
2845
|
+
algorithm: string | null | undefined,
|
|
2846
|
+
data: NodeJS.ArrayBufferView,
|
|
2847
|
+
key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,
|
|
2848
|
+
callback: (error: Error | null, data: NonSharedBuffer) => void,
|
|
2849
|
+
): void;
|
|
2850
|
+
/**
|
|
2851
|
+
* Verifies the given signature for `data` using the given key and algorithm. If
|
|
2852
|
+
* `algorithm` is `null` or `undefined`, then the algorithm is dependent upon the
|
|
2853
|
+
* key type.
|
|
2854
|
+
*
|
|
2855
|
+
* `algorithm` is required to be `null` or `undefined` for Ed25519, Ed448, and
|
|
2856
|
+
* ML-DSA.
|
|
2857
|
+
*
|
|
2858
|
+
* If `key` is not a `KeyObject`, this function behaves as if `key` had been
|
|
2859
|
+
* passed to {@link createPublicKey}. If it is an object, the following
|
|
2860
|
+
* additional properties can be passed:
|
|
2861
|
+
*
|
|
2862
|
+
* The `signature` argument is the previously calculated signature for the `data`.
|
|
2863
|
+
*
|
|
2864
|
+
* Because public keys can be derived from private keys, a private key or a public
|
|
2865
|
+
* key may be passed for `key`.
|
|
2866
|
+
*
|
|
2867
|
+
* If the `callback` function is provided this function uses libuv's threadpool.
|
|
2868
|
+
* @since v12.0.0
|
|
2869
|
+
*/
|
|
2870
|
+
function verify(
|
|
2871
|
+
algorithm: string | null | undefined,
|
|
2872
|
+
data: NodeJS.ArrayBufferView,
|
|
2873
|
+
key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,
|
|
2874
|
+
signature: NodeJS.ArrayBufferView,
|
|
2875
|
+
): boolean;
|
|
2876
|
+
function verify(
|
|
2877
|
+
algorithm: string | null | undefined,
|
|
2878
|
+
data: NodeJS.ArrayBufferView,
|
|
2879
|
+
key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,
|
|
2880
|
+
signature: NodeJS.ArrayBufferView,
|
|
2881
|
+
callback: (error: Error | null, result: boolean) => void,
|
|
2882
|
+
): void;
|
|
2883
|
+
/**
|
|
2884
|
+
* Key decapsulation using a KEM algorithm with a private key.
|
|
2885
|
+
*
|
|
2886
|
+
* Supported key types and their KEM algorithms are:
|
|
2887
|
+
*
|
|
2888
|
+
* * `'rsa'` RSA Secret Value Encapsulation
|
|
2889
|
+
* * `'ec'` DHKEM(P-256, HKDF-SHA256), DHKEM(P-384, HKDF-SHA256), DHKEM(P-521, HKDF-SHA256)
|
|
2890
|
+
* * `'x25519'` DHKEM(X25519, HKDF-SHA256)
|
|
2891
|
+
* * `'x448'` DHKEM(X448, HKDF-SHA512)
|
|
2892
|
+
* * `'ml-kem-512'` ML-KEM
|
|
2893
|
+
* * `'ml-kem-768'` ML-KEM
|
|
2894
|
+
* * `'ml-kem-1024'` ML-KEM
|
|
2895
|
+
*
|
|
2896
|
+
* If `key` is not a {@link KeyObject}, this function behaves as if `key` had been
|
|
2897
|
+
* passed to `crypto.createPrivateKey()`.
|
|
2898
|
+
*
|
|
2899
|
+
* If the `callback` function is provided this function uses libuv's threadpool.
|
|
2900
|
+
* @since v24.7.0
|
|
2901
|
+
*/
|
|
2902
|
+
function decapsulate(
|
|
2903
|
+
key: KeyLike | PrivateKeyInput | JsonWebKeyInput,
|
|
2904
|
+
ciphertext: ArrayBuffer | NodeJS.ArrayBufferView,
|
|
2905
|
+
): NonSharedBuffer;
|
|
2906
|
+
function decapsulate(
|
|
2907
|
+
key: KeyLike | PrivateKeyInput | JsonWebKeyInput,
|
|
2908
|
+
ciphertext: ArrayBuffer | NodeJS.ArrayBufferView,
|
|
2909
|
+
callback: (err: Error, sharedKey: NonSharedBuffer) => void,
|
|
2910
|
+
): void;
|
|
2911
|
+
/**
|
|
2912
|
+
* Computes the Diffie-Hellman shared secret based on a `privateKey` and a `publicKey`.
|
|
2913
|
+
* Both keys must have the same `asymmetricKeyType` and must support either the DH or
|
|
2914
|
+
* ECDH operation.
|
|
2915
|
+
*
|
|
2916
|
+
* If the `callback` function is provided this function uses libuv's threadpool.
|
|
2917
|
+
* @since v13.9.0, v12.17.0
|
|
2918
|
+
*/
|
|
2919
|
+
function diffieHellman(options: { privateKey: KeyObject; publicKey: KeyObject }): NonSharedBuffer;
|
|
2920
|
+
function diffieHellman(
|
|
2921
|
+
options: { privateKey: KeyObject; publicKey: KeyObject },
|
|
2922
|
+
callback: (err: Error | null, secret: NonSharedBuffer) => void,
|
|
2923
|
+
): void;
|
|
2924
|
+
/**
|
|
2925
|
+
* Key encapsulation using a KEM algorithm with a public key.
|
|
2926
|
+
*
|
|
2927
|
+
* Supported key types and their KEM algorithms are:
|
|
2928
|
+
*
|
|
2929
|
+
* * `'rsa'` RSA Secret Value Encapsulation
|
|
2930
|
+
* * `'ec'` DHKEM(P-256, HKDF-SHA256), DHKEM(P-384, HKDF-SHA256), DHKEM(P-521, HKDF-SHA256)
|
|
2931
|
+
* * `'x25519'` DHKEM(X25519, HKDF-SHA256)
|
|
2932
|
+
* * `'x448'` DHKEM(X448, HKDF-SHA512)
|
|
2933
|
+
* * `'ml-kem-512'` ML-KEM
|
|
2934
|
+
* * `'ml-kem-768'` ML-KEM
|
|
2935
|
+
* * `'ml-kem-1024'` ML-KEM
|
|
2936
|
+
*
|
|
2937
|
+
* If `key` is not a {@link KeyObject}, this function behaves as if `key` had been
|
|
2938
|
+
* passed to `crypto.createPublicKey()`.
|
|
2939
|
+
*
|
|
2940
|
+
* If the `callback` function is provided this function uses libuv's threadpool.
|
|
2941
|
+
* @since v24.7.0
|
|
2942
|
+
*/
|
|
2943
|
+
function encapsulate(
|
|
2944
|
+
key: KeyLike | PublicKeyInput | JsonWebKeyInput,
|
|
2945
|
+
): { sharedKey: NonSharedBuffer; ciphertext: NonSharedBuffer };
|
|
2946
|
+
function encapsulate(
|
|
2947
|
+
key: KeyLike | PublicKeyInput | JsonWebKeyInput,
|
|
2948
|
+
callback: (err: Error, result: { sharedKey: NonSharedBuffer; ciphertext: NonSharedBuffer }) => void,
|
|
2949
|
+
): void;
|
|
2950
|
+
interface OneShotDigestOptions {
|
|
2951
|
+
/**
|
|
2952
|
+
* Encoding used to encode the returned digest.
|
|
2953
|
+
* @default 'hex'
|
|
2954
|
+
*/
|
|
2955
|
+
outputEncoding?: BinaryToTextEncoding | "buffer" | undefined;
|
|
2956
|
+
/**
|
|
2957
|
+
* For XOF hash functions such as 'shake256', the outputLength option
|
|
2958
|
+
* can be used to specify the desired output length in bytes.
|
|
2959
|
+
*/
|
|
2960
|
+
outputLength?: number | undefined;
|
|
2961
|
+
}
|
|
2962
|
+
interface OneShotDigestOptionsWithStringEncoding extends OneShotDigestOptions {
|
|
2963
|
+
outputEncoding?: BinaryToTextEncoding | undefined;
|
|
2964
|
+
}
|
|
2965
|
+
interface OneShotDigestOptionsWithBufferEncoding extends OneShotDigestOptions {
|
|
2966
|
+
outputEncoding: "buffer";
|
|
2967
|
+
}
|
|
2968
|
+
/**
|
|
2969
|
+
* A utility for creating one-shot hash digests of data. It can be faster than
|
|
2970
|
+
* the object-based `crypto.createHash()` when hashing a smaller amount of data
|
|
2971
|
+
* (<= 5MB) that's readily available. If the data can be big or if it is streamed,
|
|
2972
|
+
* it's still recommended to use `crypto.createHash()` instead.
|
|
2973
|
+
*
|
|
2974
|
+
* The `algorithm` is dependent on the available algorithms supported by the
|
|
2975
|
+
* version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
|
|
2976
|
+
* On recent releases of OpenSSL, `openssl list -digest-algorithms` will
|
|
2977
|
+
* display the available digest algorithms.
|
|
2978
|
+
*
|
|
2979
|
+
* If `options` is a string, then it specifies the `outputEncoding`.
|
|
2980
|
+
*
|
|
2981
|
+
* Example:
|
|
2982
|
+
*
|
|
2983
|
+
* ```js
|
|
2984
|
+
* import crypto from 'node:crypto';
|
|
2985
|
+
* import { Buffer } from 'node:buffer';
|
|
2986
|
+
*
|
|
2987
|
+
* // Hashing a string and return the result as a hex-encoded string.
|
|
2988
|
+
* const string = 'Node.js';
|
|
2989
|
+
* // 10b3493287f831e81a438811a1ffba01f8cec4b7
|
|
2990
|
+
* console.log(crypto.hash('sha1', string));
|
|
2991
|
+
*
|
|
2992
|
+
* // Encode a base64-encoded string into a Buffer, hash it and return
|
|
2993
|
+
* // the result as a buffer.
|
|
2994
|
+
* const base64 = 'Tm9kZS5qcw==';
|
|
2995
|
+
* // <Buffer 10 b3 49 32 87 f8 31 e8 1a 43 88 11 a1 ff ba 01 f8 ce c4 b7>
|
|
2996
|
+
* console.log(crypto.hash('sha1', Buffer.from(base64, 'base64'), 'buffer'));
|
|
2997
|
+
* ```
|
|
2998
|
+
* @since v21.7.0, v20.12.0
|
|
2999
|
+
* @param data When `data` is a string, it will be encoded as UTF-8 before being hashed. If a different
|
|
3000
|
+
* input encoding is desired for a string input, user could encode the string
|
|
3001
|
+
* into a `TypedArray` using either `TextEncoder` or `Buffer.from()` and passing
|
|
3002
|
+
* the encoded `TypedArray` into this API instead.
|
|
3003
|
+
*/
|
|
3004
|
+
function hash(
|
|
3005
|
+
algorithm: string,
|
|
3006
|
+
data: BinaryLike,
|
|
3007
|
+
options?: OneShotDigestOptionsWithStringEncoding | BinaryToTextEncoding,
|
|
3008
|
+
): string;
|
|
3009
|
+
function hash(
|
|
3010
|
+
algorithm: string,
|
|
3011
|
+
data: BinaryLike,
|
|
3012
|
+
options: OneShotDigestOptionsWithBufferEncoding | "buffer",
|
|
3013
|
+
): NonSharedBuffer;
|
|
3014
|
+
function hash(
|
|
3015
|
+
algorithm: string,
|
|
3016
|
+
data: BinaryLike,
|
|
3017
|
+
options: OneShotDigestOptions | BinaryToTextEncoding | "buffer",
|
|
3018
|
+
): string | NonSharedBuffer;
|
|
3019
|
+
type CipherMode = "cbc" | "ccm" | "cfb" | "ctr" | "ecb" | "gcm" | "ocb" | "ofb" | "stream" | "wrap" | "xts";
|
|
3020
|
+
interface CipherInfoOptions {
|
|
3021
|
+
/**
|
|
3022
|
+
* A test key length.
|
|
3023
|
+
*/
|
|
3024
|
+
keyLength?: number | undefined;
|
|
3025
|
+
/**
|
|
3026
|
+
* A test IV length.
|
|
3027
|
+
*/
|
|
3028
|
+
ivLength?: number | undefined;
|
|
3029
|
+
}
|
|
3030
|
+
interface CipherInfo {
|
|
3031
|
+
/**
|
|
3032
|
+
* The name of the cipher.
|
|
3033
|
+
*/
|
|
3034
|
+
name: string;
|
|
3035
|
+
/**
|
|
3036
|
+
* The nid of the cipher.
|
|
3037
|
+
*/
|
|
3038
|
+
nid: number;
|
|
3039
|
+
/**
|
|
3040
|
+
* The block size of the cipher in bytes.
|
|
3041
|
+
* This property is omitted when mode is 'stream'.
|
|
3042
|
+
*/
|
|
3043
|
+
blockSize?: number | undefined;
|
|
3044
|
+
/**
|
|
3045
|
+
* The expected or default initialization vector length in bytes.
|
|
3046
|
+
* This property is omitted if the cipher does not use an initialization vector.
|
|
3047
|
+
*/
|
|
3048
|
+
ivLength?: number | undefined;
|
|
3049
|
+
/**
|
|
3050
|
+
* The expected or default key length in bytes.
|
|
3051
|
+
*/
|
|
3052
|
+
keyLength: number;
|
|
3053
|
+
/**
|
|
3054
|
+
* The cipher mode.
|
|
3055
|
+
*/
|
|
3056
|
+
mode: CipherMode;
|
|
3057
|
+
}
|
|
3058
|
+
/**
|
|
3059
|
+
* Returns information about a given cipher.
|
|
3060
|
+
*
|
|
3061
|
+
* Some ciphers accept variable length keys and initialization vectors. By default,
|
|
3062
|
+
* the `crypto.getCipherInfo()` method will return the default values for these
|
|
3063
|
+
* ciphers. To test if a given key length or iv length is acceptable for given
|
|
3064
|
+
* cipher, use the `keyLength` and `ivLength` options. If the given values are
|
|
3065
|
+
* unacceptable, `undefined` will be returned.
|
|
3066
|
+
* @since v15.0.0
|
|
3067
|
+
* @param nameOrNid The name or nid of the cipher to query.
|
|
3068
|
+
*/
|
|
3069
|
+
function getCipherInfo(nameOrNid: string | number, options?: CipherInfoOptions): CipherInfo | undefined;
|
|
3070
|
+
/**
|
|
3071
|
+
* HKDF is a simple key derivation function defined in RFC 5869\. The given `ikm`, `salt` and `info` are used with the `digest` to derive a key of `keylen` bytes.
|
|
3072
|
+
*
|
|
3073
|
+
* The supplied `callback` function is called with two arguments: `err` and `derivedKey`. If an errors occurs while deriving the key, `err` will be set;
|
|
3074
|
+
* otherwise `err` will be `null`. The successfully generated `derivedKey` will
|
|
3075
|
+
* be passed to the callback as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). An error will be thrown if any
|
|
3076
|
+
* of the input arguments specify invalid values or types.
|
|
3077
|
+
*
|
|
3078
|
+
* ```js
|
|
3079
|
+
* import { Buffer } from 'node:buffer';
|
|
3080
|
+
* const {
|
|
3081
|
+
* hkdf,
|
|
3082
|
+
* } = await import('node:crypto');
|
|
3083
|
+
*
|
|
3084
|
+
* hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => {
|
|
3085
|
+
* if (err) throw err;
|
|
3086
|
+
* console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653'
|
|
3087
|
+
* });
|
|
3088
|
+
* ```
|
|
3089
|
+
* @since v15.0.0
|
|
3090
|
+
* @param digest The digest algorithm to use.
|
|
3091
|
+
* @param ikm The input keying material. Must be provided but can be zero-length.
|
|
3092
|
+
* @param salt The salt value. Must be provided but can be zero-length.
|
|
3093
|
+
* @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.
|
|
3094
|
+
* @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`
|
|
3095
|
+
* generates 64-byte hashes, making the maximum HKDF output 16320 bytes).
|
|
3096
|
+
*/
|
|
3097
|
+
function hkdf(
|
|
3098
|
+
digest: string,
|
|
3099
|
+
irm: BinaryLike | KeyObject,
|
|
3100
|
+
salt: BinaryLike,
|
|
3101
|
+
info: BinaryLike,
|
|
3102
|
+
keylen: number,
|
|
3103
|
+
callback: (err: Error | null, derivedKey: ArrayBuffer) => void,
|
|
3104
|
+
): void;
|
|
3105
|
+
/**
|
|
3106
|
+
* Provides a synchronous HKDF key derivation function as defined in RFC 5869\. The
|
|
3107
|
+
* given `ikm`, `salt` and `info` are used with the `digest` to derive a key of `keylen` bytes.
|
|
3108
|
+
*
|
|
3109
|
+
* The successfully generated `derivedKey` will be returned as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer).
|
|
3110
|
+
*
|
|
3111
|
+
* An error will be thrown if any of the input arguments specify invalid values or
|
|
3112
|
+
* types, or if the derived key cannot be generated.
|
|
3113
|
+
*
|
|
3114
|
+
* ```js
|
|
3115
|
+
* import { Buffer } from 'node:buffer';
|
|
3116
|
+
* const {
|
|
3117
|
+
* hkdfSync,
|
|
3118
|
+
* } = await import('node:crypto');
|
|
3119
|
+
*
|
|
3120
|
+
* const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64);
|
|
3121
|
+
* console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653'
|
|
3122
|
+
* ```
|
|
3123
|
+
* @since v15.0.0
|
|
3124
|
+
* @param digest The digest algorithm to use.
|
|
3125
|
+
* @param ikm The input keying material. Must be provided but can be zero-length.
|
|
3126
|
+
* @param salt The salt value. Must be provided but can be zero-length.
|
|
3127
|
+
* @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.
|
|
3128
|
+
* @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`
|
|
3129
|
+
* generates 64-byte hashes, making the maximum HKDF output 16320 bytes).
|
|
3130
|
+
*/
|
|
3131
|
+
function hkdfSync(
|
|
3132
|
+
digest: string,
|
|
3133
|
+
ikm: BinaryLike | KeyObject,
|
|
3134
|
+
salt: BinaryLike,
|
|
3135
|
+
info: BinaryLike,
|
|
3136
|
+
keylen: number,
|
|
3137
|
+
): ArrayBuffer;
|
|
3138
|
+
interface SecureHeapUsage {
|
|
3139
|
+
/**
|
|
3140
|
+
* The total allocated secure heap size as specified using the `--secure-heap=n` command-line flag.
|
|
3141
|
+
*/
|
|
3142
|
+
total: number;
|
|
3143
|
+
/**
|
|
3144
|
+
* The minimum allocation from the secure heap as specified using the `--secure-heap-min` command-line flag.
|
|
3145
|
+
*/
|
|
3146
|
+
min: number;
|
|
3147
|
+
/**
|
|
3148
|
+
* The total number of bytes currently allocated from the secure heap.
|
|
3149
|
+
*/
|
|
3150
|
+
used: number;
|
|
3151
|
+
/**
|
|
3152
|
+
* The calculated ratio of `used` to `total` allocated bytes.
|
|
3153
|
+
*/
|
|
3154
|
+
utilization: number;
|
|
3155
|
+
}
|
|
3156
|
+
/**
|
|
3157
|
+
* @since v15.6.0
|
|
3158
|
+
*/
|
|
3159
|
+
function secureHeapUsed(): SecureHeapUsage;
|
|
3160
|
+
interface RandomUUIDOptions {
|
|
3161
|
+
/**
|
|
3162
|
+
* By default, to improve performance,
|
|
3163
|
+
* Node.js will pre-emptively generate and persistently cache enough
|
|
3164
|
+
* random data to generate up to 128 random UUIDs. To generate a UUID
|
|
3165
|
+
* without using the cache, set `disableEntropyCache` to `true`.
|
|
3166
|
+
*
|
|
3167
|
+
* @default `false`
|
|
3168
|
+
*/
|
|
3169
|
+
disableEntropyCache?: boolean | undefined;
|
|
3170
|
+
}
|
|
3171
|
+
type UUID = `${string}-${string}-${string}-${string}-${string}`;
|
|
3172
|
+
/**
|
|
3173
|
+
* Generates a random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) version 4 UUID. The UUID is generated using a
|
|
3174
|
+
* cryptographic pseudorandom number generator.
|
|
3175
|
+
* @since v15.6.0, v14.17.0
|
|
3176
|
+
*/
|
|
3177
|
+
function randomUUID(options?: RandomUUIDOptions): UUID;
|
|
3178
|
+
interface X509CheckOptions {
|
|
3179
|
+
/**
|
|
3180
|
+
* @default 'always'
|
|
3181
|
+
*/
|
|
3182
|
+
subject?: "always" | "default" | "never" | undefined;
|
|
3183
|
+
/**
|
|
3184
|
+
* @default true
|
|
3185
|
+
*/
|
|
3186
|
+
wildcards?: boolean | undefined;
|
|
3187
|
+
/**
|
|
3188
|
+
* @default true
|
|
3189
|
+
*/
|
|
3190
|
+
partialWildcards?: boolean | undefined;
|
|
3191
|
+
/**
|
|
3192
|
+
* @default false
|
|
3193
|
+
*/
|
|
3194
|
+
multiLabelWildcards?: boolean | undefined;
|
|
3195
|
+
/**
|
|
3196
|
+
* @default false
|
|
3197
|
+
*/
|
|
3198
|
+
singleLabelSubdomains?: boolean | undefined;
|
|
3199
|
+
}
|
|
3200
|
+
/**
|
|
3201
|
+
* Encapsulates an X509 certificate and provides read-only access to
|
|
3202
|
+
* its information.
|
|
3203
|
+
*
|
|
3204
|
+
* ```js
|
|
3205
|
+
* const { X509Certificate } = await import('node:crypto');
|
|
3206
|
+
*
|
|
3207
|
+
* const x509 = new X509Certificate('{... pem encoded cert ...}');
|
|
3208
|
+
*
|
|
3209
|
+
* console.log(x509.subject);
|
|
3210
|
+
* ```
|
|
3211
|
+
* @since v15.6.0
|
|
3212
|
+
*/
|
|
3213
|
+
class X509Certificate {
|
|
3214
|
+
/**
|
|
3215
|
+
* Will be \`true\` if this is a Certificate Authority (CA) certificate.
|
|
3216
|
+
* @since v15.6.0
|
|
3217
|
+
*/
|
|
3218
|
+
readonly ca: boolean;
|
|
3219
|
+
/**
|
|
3220
|
+
* The SHA-1 fingerprint of this certificate.
|
|
3221
|
+
*
|
|
3222
|
+
* Because SHA-1 is cryptographically broken and because the security of SHA-1 is
|
|
3223
|
+
* significantly worse than that of algorithms that are commonly used to sign
|
|
3224
|
+
* certificates, consider using `x509.fingerprint256` instead.
|
|
3225
|
+
* @since v15.6.0
|
|
3226
|
+
*/
|
|
3227
|
+
readonly fingerprint: string;
|
|
3228
|
+
/**
|
|
3229
|
+
* The SHA-256 fingerprint of this certificate.
|
|
3230
|
+
* @since v15.6.0
|
|
3231
|
+
*/
|
|
3232
|
+
readonly fingerprint256: string;
|
|
3233
|
+
/**
|
|
3234
|
+
* The SHA-512 fingerprint of this certificate.
|
|
3235
|
+
*
|
|
3236
|
+
* Because computing the SHA-256 fingerprint is usually faster and because it is
|
|
3237
|
+
* only half the size of the SHA-512 fingerprint, `x509.fingerprint256` may be
|
|
3238
|
+
* a better choice. While SHA-512 presumably provides a higher level of security in
|
|
3239
|
+
* general, the security of SHA-256 matches that of most algorithms that are
|
|
3240
|
+
* commonly used to sign certificates.
|
|
3241
|
+
* @since v17.2.0, v16.14.0
|
|
3242
|
+
*/
|
|
3243
|
+
readonly fingerprint512: string;
|
|
3244
|
+
/**
|
|
3245
|
+
* The complete subject of this certificate.
|
|
3246
|
+
* @since v15.6.0
|
|
3247
|
+
*/
|
|
3248
|
+
readonly subject: string;
|
|
3249
|
+
/**
|
|
3250
|
+
* The subject alternative name specified for this certificate.
|
|
3251
|
+
*
|
|
3252
|
+
* This is a comma-separated list of subject alternative names. Each entry begins
|
|
3253
|
+
* with a string identifying the kind of the subject alternative name followed by
|
|
3254
|
+
* a colon and the value associated with the entry.
|
|
3255
|
+
*
|
|
3256
|
+
* Earlier versions of Node.js incorrectly assumed that it is safe to split this
|
|
3257
|
+
* property at the two-character sequence `', '` (see [CVE-2021-44532](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532)). However,
|
|
3258
|
+
* both malicious and legitimate certificates can contain subject alternative names
|
|
3259
|
+
* that include this sequence when represented as a string.
|
|
3260
|
+
*
|
|
3261
|
+
* After the prefix denoting the type of the entry, the remainder of each entry
|
|
3262
|
+
* might be enclosed in quotes to indicate that the value is a JSON string literal.
|
|
3263
|
+
* For backward compatibility, Node.js only uses JSON string literals within this
|
|
3264
|
+
* property when necessary to avoid ambiguity. Third-party code should be prepared
|
|
3265
|
+
* to handle both possible entry formats.
|
|
3266
|
+
* @since v15.6.0
|
|
3267
|
+
*/
|
|
3268
|
+
readonly subjectAltName: string | undefined;
|
|
3269
|
+
/**
|
|
3270
|
+
* A textual representation of the certificate's authority information access
|
|
3271
|
+
* extension.
|
|
3272
|
+
*
|
|
3273
|
+
* This is a line feed separated list of access descriptions. Each line begins with
|
|
3274
|
+
* the access method and the kind of the access location, followed by a colon and
|
|
3275
|
+
* the value associated with the access location.
|
|
3276
|
+
*
|
|
3277
|
+
* After the prefix denoting the access method and the kind of the access location,
|
|
3278
|
+
* the remainder of each line might be enclosed in quotes to indicate that the
|
|
3279
|
+
* value is a JSON string literal. For backward compatibility, Node.js only uses
|
|
3280
|
+
* JSON string literals within this property when necessary to avoid ambiguity.
|
|
3281
|
+
* Third-party code should be prepared to handle both possible entry formats.
|
|
3282
|
+
* @since v15.6.0
|
|
3283
|
+
*/
|
|
3284
|
+
readonly infoAccess: string | undefined;
|
|
3285
|
+
/**
|
|
3286
|
+
* An array detailing the key usages for this certificate.
|
|
3287
|
+
* @since v15.6.0
|
|
3288
|
+
*/
|
|
3289
|
+
readonly keyUsage: string[];
|
|
3290
|
+
/**
|
|
3291
|
+
* The issuer identification included in this certificate.
|
|
3292
|
+
* @since v15.6.0
|
|
3293
|
+
*/
|
|
3294
|
+
readonly issuer: string;
|
|
3295
|
+
/**
|
|
3296
|
+
* The issuer certificate or `undefined` if the issuer certificate is not
|
|
3297
|
+
* available.
|
|
3298
|
+
* @since v15.9.0
|
|
3299
|
+
*/
|
|
3300
|
+
readonly issuerCertificate: X509Certificate | undefined;
|
|
3301
|
+
/**
|
|
3302
|
+
* The public key `KeyObject` for this certificate.
|
|
3303
|
+
* @since v15.6.0
|
|
3304
|
+
*/
|
|
3305
|
+
readonly publicKey: KeyObject;
|
|
3306
|
+
/**
|
|
3307
|
+
* A `Buffer` containing the DER encoding of this certificate.
|
|
3308
|
+
* @since v15.6.0
|
|
3309
|
+
*/
|
|
3310
|
+
readonly raw: NonSharedBuffer;
|
|
3311
|
+
/**
|
|
3312
|
+
* The serial number of this certificate.
|
|
3313
|
+
*
|
|
3314
|
+
* Serial numbers are assigned by certificate authorities and do not uniquely
|
|
3315
|
+
* identify certificates. Consider using `x509.fingerprint256` as a unique
|
|
3316
|
+
* identifier instead.
|
|
3317
|
+
* @since v15.6.0
|
|
3318
|
+
*/
|
|
3319
|
+
readonly serialNumber: string;
|
|
3320
|
+
/**
|
|
3321
|
+
* The algorithm used to sign the certificate or `undefined` if the signature algorithm is unknown by OpenSSL.
|
|
3322
|
+
* @since v24.9.0
|
|
3323
|
+
*/
|
|
3324
|
+
readonly signatureAlgorithm: string | undefined;
|
|
3325
|
+
/**
|
|
3326
|
+
* The OID of the algorithm used to sign the certificate.
|
|
3327
|
+
* @since v24.9.0
|
|
3328
|
+
*/
|
|
3329
|
+
readonly signatureAlgorithmOid: string;
|
|
3330
|
+
/**
|
|
3331
|
+
* The date/time from which this certificate is considered valid.
|
|
3332
|
+
* @since v15.6.0
|
|
3333
|
+
*/
|
|
3334
|
+
readonly validFrom: string;
|
|
3335
|
+
/**
|
|
3336
|
+
* The date/time from which this certificate is valid, encapsulated in a `Date` object.
|
|
3337
|
+
* @since v22.10.0
|
|
3338
|
+
*/
|
|
3339
|
+
readonly validFromDate: Date;
|
|
3340
|
+
/**
|
|
3341
|
+
* The date/time until which this certificate is considered valid.
|
|
3342
|
+
* @since v15.6.0
|
|
3343
|
+
*/
|
|
3344
|
+
readonly validTo: string;
|
|
3345
|
+
/**
|
|
3346
|
+
* The date/time until which this certificate is valid, encapsulated in a `Date` object.
|
|
3347
|
+
* @since v22.10.0
|
|
3348
|
+
*/
|
|
3349
|
+
readonly validToDate: Date;
|
|
3350
|
+
constructor(buffer: BinaryLike);
|
|
3351
|
+
/**
|
|
3352
|
+
* Checks whether the certificate matches the given email address.
|
|
3353
|
+
*
|
|
3354
|
+
* If the `'subject'` option is undefined or set to `'default'`, the certificate
|
|
3355
|
+
* subject is only considered if the subject alternative name extension either does
|
|
3356
|
+
* not exist or does not contain any email addresses.
|
|
3357
|
+
*
|
|
3358
|
+
* If the `'subject'` option is set to `'always'` and if the subject alternative
|
|
3359
|
+
* name extension either does not exist or does not contain a matching email
|
|
3360
|
+
* address, the certificate subject is considered.
|
|
3361
|
+
*
|
|
3362
|
+
* If the `'subject'` option is set to `'never'`, the certificate subject is never
|
|
3363
|
+
* considered, even if the certificate contains no subject alternative names.
|
|
3364
|
+
* @since v15.6.0
|
|
3365
|
+
* @return Returns `email` if the certificate matches, `undefined` if it does not.
|
|
3366
|
+
*/
|
|
3367
|
+
checkEmail(email: string, options?: Pick<X509CheckOptions, "subject">): string | undefined;
|
|
3368
|
+
/**
|
|
3369
|
+
* Checks whether the certificate matches the given host name.
|
|
3370
|
+
*
|
|
3371
|
+
* If the certificate matches the given host name, the matching subject name is
|
|
3372
|
+
* returned. The returned name might be an exact match (e.g., `foo.example.com`)
|
|
3373
|
+
* or it might contain wildcards (e.g., `*.example.com`). Because host name
|
|
3374
|
+
* comparisons are case-insensitive, the returned subject name might also differ
|
|
3375
|
+
* from the given `name` in capitalization.
|
|
3376
|
+
*
|
|
3377
|
+
* If the `'subject'` option is undefined or set to `'default'`, the certificate
|
|
3378
|
+
* subject is only considered if the subject alternative name extension either does
|
|
3379
|
+
* not exist or does not contain any DNS names. This behavior is consistent with [RFC 2818](https://www.rfc-editor.org/rfc/rfc2818.txt) ("HTTP Over TLS").
|
|
3380
|
+
*
|
|
3381
|
+
* If the `'subject'` option is set to `'always'` and if the subject alternative
|
|
3382
|
+
* name extension either does not exist or does not contain a matching DNS name,
|
|
3383
|
+
* the certificate subject is considered.
|
|
3384
|
+
*
|
|
3385
|
+
* If the `'subject'` option is set to `'never'`, the certificate subject is never
|
|
3386
|
+
* considered, even if the certificate contains no subject alternative names.
|
|
3387
|
+
* @since v15.6.0
|
|
3388
|
+
* @return Returns a subject name that matches `name`, or `undefined` if no subject name matches `name`.
|
|
3389
|
+
*/
|
|
3390
|
+
checkHost(name: string, options?: X509CheckOptions): string | undefined;
|
|
3391
|
+
/**
|
|
3392
|
+
* Checks whether the certificate matches the given IP address (IPv4 or IPv6).
|
|
3393
|
+
*
|
|
3394
|
+
* Only [RFC 5280](https://www.rfc-editor.org/rfc/rfc5280.txt) `iPAddress` subject alternative names are considered, and they
|
|
3395
|
+
* must match the given `ip` address exactly. Other subject alternative names as
|
|
3396
|
+
* well as the subject field of the certificate are ignored.
|
|
3397
|
+
* @since v15.6.0
|
|
3398
|
+
* @return Returns `ip` if the certificate matches, `undefined` if it does not.
|
|
3399
|
+
*/
|
|
3400
|
+
checkIP(ip: string): string | undefined;
|
|
3401
|
+
/**
|
|
3402
|
+
* Checks whether this certificate was potentially issued by the given `otherCert`
|
|
3403
|
+
* by comparing the certificate metadata.
|
|
3404
|
+
*
|
|
3405
|
+
* This is useful for pruning a list of possible issuer certificates which have been
|
|
3406
|
+
* selected using a more rudimentary filtering routine, i.e. just based on subject
|
|
3407
|
+
* and issuer names.
|
|
3408
|
+
*
|
|
3409
|
+
* Finally, to verify that this certificate's signature was produced by a private key
|
|
3410
|
+
* corresponding to `otherCert`'s public key use `x509.verify(publicKey)`
|
|
3411
|
+
* with `otherCert`'s public key represented as a `KeyObject`
|
|
3412
|
+
* like so
|
|
3413
|
+
*
|
|
3414
|
+
* ```js
|
|
3415
|
+
* if (!x509.verify(otherCert.publicKey)) {
|
|
3416
|
+
* throw new Error('otherCert did not issue x509');
|
|
3417
|
+
* }
|
|
3418
|
+
* ```
|
|
3419
|
+
* @since v15.6.0
|
|
3420
|
+
*/
|
|
3421
|
+
checkIssued(otherCert: X509Certificate): boolean;
|
|
3422
|
+
/**
|
|
3423
|
+
* Checks whether the public key for this certificate is consistent with
|
|
3424
|
+
* the given private key.
|
|
3425
|
+
* @since v15.6.0
|
|
3426
|
+
* @param privateKey A private key.
|
|
3427
|
+
*/
|
|
3428
|
+
checkPrivateKey(privateKey: KeyObject): boolean;
|
|
3429
|
+
/**
|
|
3430
|
+
* There is no standard JSON encoding for X509 certificates. The`toJSON()` method returns a string containing the PEM encoded
|
|
3431
|
+
* certificate.
|
|
3432
|
+
* @since v15.6.0
|
|
3433
|
+
*/
|
|
3434
|
+
toJSON(): string;
|
|
3435
|
+
/**
|
|
3436
|
+
* Returns information about this certificate using the legacy `certificate object` encoding.
|
|
3437
|
+
* @since v15.6.0
|
|
3438
|
+
*/
|
|
3439
|
+
toLegacyObject(): PeerCertificate;
|
|
3440
|
+
/**
|
|
3441
|
+
* Returns the PEM-encoded certificate.
|
|
3442
|
+
* @since v15.6.0
|
|
3443
|
+
*/
|
|
3444
|
+
toString(): string;
|
|
3445
|
+
/**
|
|
3446
|
+
* Verifies that this certificate was signed by the given public key.
|
|
3447
|
+
* Does not perform any other validation checks on the certificate.
|
|
3448
|
+
* @since v15.6.0
|
|
3449
|
+
* @param publicKey A public key.
|
|
3450
|
+
*/
|
|
3451
|
+
verify(publicKey: KeyObject): boolean;
|
|
3452
|
+
}
|
|
3453
|
+
type LargeNumberLike = NodeJS.ArrayBufferView | SharedArrayBuffer | ArrayBuffer | bigint;
|
|
3454
|
+
interface GeneratePrimeOptions {
|
|
3455
|
+
add?: LargeNumberLike | undefined;
|
|
3456
|
+
rem?: LargeNumberLike | undefined;
|
|
3457
|
+
/**
|
|
3458
|
+
* @default false
|
|
3459
|
+
*/
|
|
3460
|
+
safe?: boolean | undefined;
|
|
3461
|
+
bigint?: boolean | undefined;
|
|
3462
|
+
}
|
|
3463
|
+
interface GeneratePrimeOptionsBigInt extends GeneratePrimeOptions {
|
|
3464
|
+
bigint: true;
|
|
3465
|
+
}
|
|
3466
|
+
interface GeneratePrimeOptionsArrayBuffer extends GeneratePrimeOptions {
|
|
3467
|
+
bigint?: false | undefined;
|
|
3468
|
+
}
|
|
3469
|
+
/**
|
|
3470
|
+
* Generates a pseudorandom prime of `size` bits.
|
|
3471
|
+
*
|
|
3472
|
+
* If `options.safe` is `true`, the prime will be a safe prime -- that is, `(prime - 1) / 2` will also be a prime.
|
|
3473
|
+
*
|
|
3474
|
+
* The `options.add` and `options.rem` parameters can be used to enforce additional
|
|
3475
|
+
* requirements, e.g., for Diffie-Hellman:
|
|
3476
|
+
*
|
|
3477
|
+
* * If `options.add` and `options.rem` are both set, the prime will satisfy the
|
|
3478
|
+
* condition that `prime % add = rem`.
|
|
3479
|
+
* * If only `options.add` is set and `options.safe` is not `true`, the prime will
|
|
3480
|
+
* satisfy the condition that `prime % add = 1`.
|
|
3481
|
+
* * If only `options.add` is set and `options.safe` is set to `true`, the prime
|
|
3482
|
+
* will instead satisfy the condition that `prime % add = 3`. This is necessary
|
|
3483
|
+
* because `prime % add = 1` for `options.add > 2` would contradict the condition
|
|
3484
|
+
* enforced by `options.safe`.
|
|
3485
|
+
* * `options.rem` is ignored if `options.add` is not given.
|
|
3486
|
+
*
|
|
3487
|
+
* Both `options.add` and `options.rem` must be encoded as big-endian sequences
|
|
3488
|
+
* if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or `DataView`.
|
|
3489
|
+
*
|
|
3490
|
+
* By default, the prime is encoded as a big-endian sequence of octets
|
|
3491
|
+
* in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a
|
|
3492
|
+
* [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.
|
|
3493
|
+
* @since v15.8.0
|
|
3494
|
+
* @param size The size (in bits) of the prime to generate.
|
|
3495
|
+
*/
|
|
3496
|
+
function generatePrime(size: number, callback: (err: Error | null, prime: ArrayBuffer) => void): void;
|
|
3497
|
+
function generatePrime(
|
|
3498
|
+
size: number,
|
|
3499
|
+
options: GeneratePrimeOptionsBigInt,
|
|
3500
|
+
callback: (err: Error | null, prime: bigint) => void,
|
|
3501
|
+
): void;
|
|
3502
|
+
function generatePrime(
|
|
3503
|
+
size: number,
|
|
3504
|
+
options: GeneratePrimeOptionsArrayBuffer,
|
|
3505
|
+
callback: (err: Error | null, prime: ArrayBuffer) => void,
|
|
3506
|
+
): void;
|
|
3507
|
+
function generatePrime(
|
|
3508
|
+
size: number,
|
|
3509
|
+
options: GeneratePrimeOptions,
|
|
3510
|
+
callback: (err: Error | null, prime: ArrayBuffer | bigint) => void,
|
|
3511
|
+
): void;
|
|
3512
|
+
/**
|
|
3513
|
+
* Generates a pseudorandom prime of `size` bits.
|
|
3514
|
+
*
|
|
3515
|
+
* If `options.safe` is `true`, the prime will be a safe prime -- that is, `(prime - 1) / 2` will also be a prime.
|
|
3516
|
+
*
|
|
3517
|
+
* The `options.add` and `options.rem` parameters can be used to enforce additional
|
|
3518
|
+
* requirements, e.g., for Diffie-Hellman:
|
|
3519
|
+
*
|
|
3520
|
+
* * If `options.add` and `options.rem` are both set, the prime will satisfy the
|
|
3521
|
+
* condition that `prime % add = rem`.
|
|
3522
|
+
* * If only `options.add` is set and `options.safe` is not `true`, the prime will
|
|
3523
|
+
* satisfy the condition that `prime % add = 1`.
|
|
3524
|
+
* * If only `options.add` is set and `options.safe` is set to `true`, the prime
|
|
3525
|
+
* will instead satisfy the condition that `prime % add = 3`. This is necessary
|
|
3526
|
+
* because `prime % add = 1` for `options.add > 2` would contradict the condition
|
|
3527
|
+
* enforced by `options.safe`.
|
|
3528
|
+
* * `options.rem` is ignored if `options.add` is not given.
|
|
3529
|
+
*
|
|
3530
|
+
* Both `options.add` and `options.rem` must be encoded as big-endian sequences
|
|
3531
|
+
* if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or `DataView`.
|
|
3532
|
+
*
|
|
3533
|
+
* By default, the prime is encoded as a big-endian sequence of octets
|
|
3534
|
+
* in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a
|
|
3535
|
+
* [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.
|
|
3536
|
+
* @since v15.8.0
|
|
3537
|
+
* @param size The size (in bits) of the prime to generate.
|
|
3538
|
+
*/
|
|
3539
|
+
function generatePrimeSync(size: number): ArrayBuffer;
|
|
3540
|
+
function generatePrimeSync(size: number, options: GeneratePrimeOptionsBigInt): bigint;
|
|
3541
|
+
function generatePrimeSync(size: number, options: GeneratePrimeOptionsArrayBuffer): ArrayBuffer;
|
|
3542
|
+
function generatePrimeSync(size: number, options: GeneratePrimeOptions): ArrayBuffer | bigint;
|
|
3543
|
+
interface CheckPrimeOptions {
|
|
3544
|
+
/**
|
|
3545
|
+
* The number of Miller-Rabin probabilistic primality iterations to perform.
|
|
3546
|
+
* When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most `2**-64` for random input.
|
|
3547
|
+
* Care must be used when selecting a number of checks.
|
|
3548
|
+
* Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details.
|
|
3549
|
+
*
|
|
3550
|
+
* @default 0
|
|
3551
|
+
*/
|
|
3552
|
+
checks?: number | undefined;
|
|
3553
|
+
}
|
|
3554
|
+
/**
|
|
3555
|
+
* Checks the primality of the `candidate`.
|
|
3556
|
+
* @since v15.8.0
|
|
3557
|
+
* @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.
|
|
3558
|
+
*/
|
|
3559
|
+
function checkPrime(value: LargeNumberLike, callback: (err: Error | null, result: boolean) => void): void;
|
|
3560
|
+
function checkPrime(
|
|
3561
|
+
value: LargeNumberLike,
|
|
3562
|
+
options: CheckPrimeOptions,
|
|
3563
|
+
callback: (err: Error | null, result: boolean) => void,
|
|
3564
|
+
): void;
|
|
3565
|
+
/**
|
|
3566
|
+
* Checks the primality of the `candidate`.
|
|
3567
|
+
* @since v15.8.0
|
|
3568
|
+
* @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.
|
|
3569
|
+
* @return `true` if the candidate is a prime with an error probability less than `0.25 ** options.checks`.
|
|
3570
|
+
*/
|
|
3571
|
+
function checkPrimeSync(candidate: LargeNumberLike, options?: CheckPrimeOptions): boolean;
|
|
3572
|
+
/**
|
|
3573
|
+
* Load and set the `engine` for some or all OpenSSL functions (selected by flags).
|
|
3574
|
+
*
|
|
3575
|
+
* `engine` could be either an id or a path to the engine's shared library.
|
|
3576
|
+
*
|
|
3577
|
+
* The optional `flags` argument uses `ENGINE_METHOD_ALL` by default. The `flags` is a bit field taking one of or a mix of the following flags (defined in `crypto.constants`):
|
|
3578
|
+
*
|
|
3579
|
+
* * `crypto.constants.ENGINE_METHOD_RSA`
|
|
3580
|
+
* * `crypto.constants.ENGINE_METHOD_DSA`
|
|
3581
|
+
* * `crypto.constants.ENGINE_METHOD_DH`
|
|
3582
|
+
* * `crypto.constants.ENGINE_METHOD_RAND`
|
|
3583
|
+
* * `crypto.constants.ENGINE_METHOD_EC`
|
|
3584
|
+
* * `crypto.constants.ENGINE_METHOD_CIPHERS`
|
|
3585
|
+
* * `crypto.constants.ENGINE_METHOD_DIGESTS`
|
|
3586
|
+
* * `crypto.constants.ENGINE_METHOD_PKEY_METHS`
|
|
3587
|
+
* * `crypto.constants.ENGINE_METHOD_PKEY_ASN1_METHS`
|
|
3588
|
+
* * `crypto.constants.ENGINE_METHOD_ALL`
|
|
3589
|
+
* * `crypto.constants.ENGINE_METHOD_NONE`
|
|
3590
|
+
* @since v0.11.11
|
|
3591
|
+
* @param flags
|
|
3592
|
+
*/
|
|
3593
|
+
function setEngine(engine: string, flags?: number): void;
|
|
3594
|
+
/**
|
|
3595
|
+
* A convenient alias for {@link webcrypto.getRandomValues}. This
|
|
3596
|
+
* implementation is not compliant with the Web Crypto spec, to write
|
|
3597
|
+
* web-compatible code use {@link webcrypto.getRandomValues} instead.
|
|
3598
|
+
* @since v17.4.0
|
|
3599
|
+
* @return Returns `typedArray`.
|
|
3600
|
+
*/
|
|
3601
|
+
function getRandomValues<
|
|
3602
|
+
T extends Exclude<
|
|
3603
|
+
NodeJS.NonSharedTypedArray,
|
|
3604
|
+
NodeJS.NonSharedFloat16Array | NodeJS.NonSharedFloat32Array | NodeJS.NonSharedFloat64Array
|
|
3605
|
+
>,
|
|
3606
|
+
>(typedArray: T): T;
|
|
3607
|
+
type Argon2Algorithm = "argon2d" | "argon2i" | "argon2id";
|
|
3608
|
+
interface Argon2Parameters {
|
|
3609
|
+
/**
|
|
3610
|
+
* REQUIRED, this is the password for password hashing applications of Argon2.
|
|
3611
|
+
*/
|
|
3612
|
+
message: string | ArrayBuffer | NodeJS.ArrayBufferView;
|
|
3613
|
+
/**
|
|
3614
|
+
* REQUIRED, must be at least 8 bytes long. This is the salt for password hashing applications of Argon2.
|
|
3615
|
+
*/
|
|
3616
|
+
nonce: string | ArrayBuffer | NodeJS.ArrayBufferView;
|
|
3617
|
+
/**
|
|
3618
|
+
* REQUIRED, degree of parallelism determines how many computational chains (lanes)
|
|
3619
|
+
* can be run. Must be greater than 1 and less than `2**24-1`.
|
|
3620
|
+
*/
|
|
3621
|
+
parallelism: number;
|
|
3622
|
+
/**
|
|
3623
|
+
* REQUIRED, the length of the key to generate. Must be greater than 4 and
|
|
3624
|
+
* less than `2**32-1`.
|
|
3625
|
+
*/
|
|
3626
|
+
tagLength: number;
|
|
3627
|
+
/**
|
|
3628
|
+
* REQUIRED, memory cost in 1KiB blocks. Must be greater than
|
|
3629
|
+
* `8 * parallelism` and less than `2**32-1`. The actual number of blocks is rounded
|
|
3630
|
+
* down to the nearest multiple of `4 * parallelism`.
|
|
3631
|
+
*/
|
|
3632
|
+
memory: number;
|
|
3633
|
+
/**
|
|
3634
|
+
* REQUIRED, number of passes (iterations). Must be greater than 1 and less
|
|
3635
|
+
* than `2**32-1`.
|
|
3636
|
+
*/
|
|
3637
|
+
passes: number;
|
|
3638
|
+
/**
|
|
3639
|
+
* OPTIONAL, Random additional input,
|
|
3640
|
+
* similar to the salt, that should **NOT** be stored with the derived key. This is known as pepper in
|
|
3641
|
+
* password hashing applications. If used, must have a length not greater than `2**32-1` bytes.
|
|
3642
|
+
*/
|
|
3643
|
+
secret?: string | ArrayBuffer | NodeJS.ArrayBufferView | undefined;
|
|
3644
|
+
/**
|
|
3645
|
+
* OPTIONAL, Additional data to
|
|
3646
|
+
* be added to the hash, functionally equivalent to salt or secret, but meant for
|
|
3647
|
+
* non-random data. If used, must have a length not greater than `2**32-1` bytes.
|
|
3648
|
+
*/
|
|
3649
|
+
associatedData?: string | ArrayBuffer | NodeJS.ArrayBufferView | undefined;
|
|
3650
|
+
}
|
|
3651
|
+
/**
|
|
3652
|
+
* Provides an asynchronous [Argon2](https://www.rfc-editor.org/rfc/rfc9106.html) implementation. Argon2 is a password-based
|
|
3653
|
+
* key derivation function that is designed to be expensive computationally and
|
|
3654
|
+
* memory-wise in order to make brute-force attacks unrewarding.
|
|
3655
|
+
*
|
|
3656
|
+
* The `nonce` should be as unique as possible. It is recommended that a nonce is
|
|
3657
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
3658
|
+
*
|
|
3659
|
+
* When passing strings for `message`, `nonce`, `secret` or `associatedData`, please
|
|
3660
|
+
* consider [caveats when using strings as inputs to cryptographic APIs](https://nodejs.org/docs/latest-v25.x/api/crypto.html#using-strings-as-inputs-to-cryptographic-apis).
|
|
3661
|
+
*
|
|
3662
|
+
* The `callback` function is called with two arguments: `err` and `derivedKey`.
|
|
3663
|
+
* `err` is an exception object when key derivation fails, otherwise `err` is
|
|
3664
|
+
* `null`. `derivedKey` is passed to the callback as a `Buffer`.
|
|
3665
|
+
*
|
|
3666
|
+
* An exception is thrown when any of the input arguments specify invalid values
|
|
3667
|
+
* or types.
|
|
3668
|
+
*
|
|
3669
|
+
* ```js
|
|
3670
|
+
* const { argon2, randomBytes } = await import('node:crypto');
|
|
3671
|
+
*
|
|
3672
|
+
* const parameters = {
|
|
3673
|
+
* message: 'password',
|
|
3674
|
+
* nonce: randomBytes(16),
|
|
3675
|
+
* parallelism: 4,
|
|
3676
|
+
* tagLength: 64,
|
|
3677
|
+
* memory: 65536,
|
|
3678
|
+
* passes: 3,
|
|
3679
|
+
* };
|
|
3680
|
+
*
|
|
3681
|
+
* argon2('argon2id', parameters, (err, derivedKey) => {
|
|
3682
|
+
* if (err) throw err;
|
|
3683
|
+
* console.log(derivedKey.toString('hex')); // 'af91dad...9520f15'
|
|
3684
|
+
* });
|
|
3685
|
+
* ```
|
|
3686
|
+
* @since v24.7.0
|
|
3687
|
+
* @param algorithm Variant of Argon2, one of `"argon2d"`, `"argon2i"` or `"argon2id"`.
|
|
3688
|
+
* @experimental
|
|
3689
|
+
*/
|
|
3690
|
+
function argon2(
|
|
3691
|
+
algorithm: Argon2Algorithm,
|
|
3692
|
+
parameters: Argon2Parameters,
|
|
3693
|
+
callback: (err: Error | null, derivedKey: NonSharedBuffer) => void,
|
|
3694
|
+
): void;
|
|
3695
|
+
/**
|
|
3696
|
+
* Provides a synchronous [Argon2][] implementation. Argon2 is a password-based
|
|
3697
|
+
* key derivation function that is designed to be expensive computationally and
|
|
3698
|
+
* memory-wise in order to make brute-force attacks unrewarding.
|
|
3699
|
+
*
|
|
3700
|
+
* The `nonce` should be as unique as possible. It is recommended that a nonce is
|
|
3701
|
+
* random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
|
|
3702
|
+
*
|
|
3703
|
+
* When passing strings for `message`, `nonce`, `secret` or `associatedData`, please
|
|
3704
|
+
* consider [caveats when using strings as inputs to cryptographic APIs](https://nodejs.org/docs/latest-v25.x/api/crypto.html#using-strings-as-inputs-to-cryptographic-apis).
|
|
3705
|
+
*
|
|
3706
|
+
* An exception is thrown when key derivation fails, otherwise the derived key is
|
|
3707
|
+
* returned as a `Buffer`.
|
|
3708
|
+
*
|
|
3709
|
+
* An exception is thrown when any of the input arguments specify invalid values
|
|
3710
|
+
* or types.
|
|
3711
|
+
*
|
|
3712
|
+
* ```js
|
|
3713
|
+
* const { argon2Sync, randomBytes } = await import('node:crypto');
|
|
3714
|
+
*
|
|
3715
|
+
* const parameters = {
|
|
3716
|
+
* message: 'password',
|
|
3717
|
+
* nonce: randomBytes(16),
|
|
3718
|
+
* parallelism: 4,
|
|
3719
|
+
* tagLength: 64,
|
|
3720
|
+
* memory: 65536,
|
|
3721
|
+
* passes: 3,
|
|
3722
|
+
* };
|
|
3723
|
+
*
|
|
3724
|
+
* const derivedKey = argon2Sync('argon2id', parameters);
|
|
3725
|
+
* console.log(derivedKey.toString('hex')); // 'af91dad...9520f15'
|
|
3726
|
+
* ```
|
|
3727
|
+
* @since v24.7.0
|
|
3728
|
+
* @experimental
|
|
3729
|
+
*/
|
|
3730
|
+
function argon2Sync(algorithm: Argon2Algorithm, parameters: Argon2Parameters): NonSharedBuffer;
|
|
3731
|
+
/**
|
|
3732
|
+
* A convenient alias for `crypto.webcrypto.subtle`.
|
|
3733
|
+
* @since v17.4.0
|
|
3734
|
+
*/
|
|
3735
|
+
const subtle: webcrypto.SubtleCrypto;
|
|
3736
|
+
/**
|
|
3737
|
+
* An implementation of the Web Crypto API standard.
|
|
3738
|
+
*
|
|
3739
|
+
* See the {@link https://nodejs.org/docs/latest/api/webcrypto.html Web Crypto API documentation} for details.
|
|
3740
|
+
* @since v15.0.0
|
|
3741
|
+
*/
|
|
3742
|
+
const webcrypto: webcrypto.Crypto;
|
|
3743
|
+
namespace webcrypto {
|
|
3744
|
+
type AlgorithmIdentifier = Algorithm | string;
|
|
3745
|
+
type BigInteger = NodeJS.NonSharedUint8Array;
|
|
3746
|
+
type KeyFormat = "jwk" | "pkcs8" | "raw" | "raw-public" | "raw-secret" | "raw-seed" | "spki";
|
|
3747
|
+
type KeyType = "private" | "public" | "secret";
|
|
3748
|
+
type KeyUsage =
|
|
3749
|
+
| "decapsulateBits"
|
|
3750
|
+
| "decapsulateKey"
|
|
3751
|
+
| "decrypt"
|
|
3752
|
+
| "deriveBits"
|
|
3753
|
+
| "deriveKey"
|
|
3754
|
+
| "encapsulateBits"
|
|
3755
|
+
| "encapsulateKey"
|
|
3756
|
+
| "encrypt"
|
|
3757
|
+
| "sign"
|
|
3758
|
+
| "unwrapKey"
|
|
3759
|
+
| "verify"
|
|
3760
|
+
| "wrapKey";
|
|
3761
|
+
type HashAlgorithmIdentifier = AlgorithmIdentifier;
|
|
3762
|
+
type NamedCurve = string;
|
|
3763
|
+
interface AeadParams extends Algorithm {
|
|
3764
|
+
additionalData?: NodeJS.BufferSource;
|
|
3765
|
+
iv: NodeJS.BufferSource;
|
|
3766
|
+
tagLength: number;
|
|
3767
|
+
}
|
|
3768
|
+
interface AesCbcParams extends Algorithm {
|
|
3769
|
+
iv: NodeJS.BufferSource;
|
|
3770
|
+
}
|
|
3771
|
+
interface AesCtrParams extends Algorithm {
|
|
3772
|
+
counter: NodeJS.BufferSource;
|
|
3773
|
+
length: number;
|
|
3774
|
+
}
|
|
3775
|
+
interface AesDerivedKeyParams extends Algorithm {
|
|
3776
|
+
length: number;
|
|
3777
|
+
}
|
|
3778
|
+
interface AesKeyAlgorithm extends KeyAlgorithm {
|
|
3779
|
+
length: number;
|
|
3780
|
+
}
|
|
3781
|
+
interface AesKeyGenParams extends Algorithm {
|
|
3782
|
+
length: number;
|
|
3783
|
+
}
|
|
3784
|
+
interface Algorithm {
|
|
3785
|
+
name: string;
|
|
3786
|
+
}
|
|
3787
|
+
interface Argon2Params extends Algorithm {
|
|
3788
|
+
associatedData?: NodeJS.BufferSource;
|
|
3789
|
+
memory: number;
|
|
3790
|
+
nonce: NodeJS.BufferSource;
|
|
3791
|
+
parallelism: number;
|
|
3792
|
+
passes: number;
|
|
3793
|
+
secretValue?: NodeJS.BufferSource;
|
|
3794
|
+
version?: number;
|
|
3795
|
+
}
|
|
3796
|
+
interface CShakeParams extends Algorithm {
|
|
3797
|
+
customization?: NodeJS.BufferSource;
|
|
3798
|
+
functionName?: NodeJS.BufferSource;
|
|
3799
|
+
length: number;
|
|
3800
|
+
}
|
|
3801
|
+
interface ContextParams extends Algorithm {
|
|
3802
|
+
context?: NodeJS.BufferSource;
|
|
3803
|
+
}
|
|
3804
|
+
interface EcKeyAlgorithm extends KeyAlgorithm {
|
|
3805
|
+
namedCurve: NamedCurve;
|
|
3806
|
+
}
|
|
3807
|
+
interface EcKeyGenParams extends Algorithm {
|
|
3808
|
+
namedCurve: NamedCurve;
|
|
3809
|
+
}
|
|
3810
|
+
interface EcKeyImportParams extends Algorithm {
|
|
3811
|
+
namedCurve: NamedCurve;
|
|
3812
|
+
}
|
|
3813
|
+
interface EcdhKeyDeriveParams extends Algorithm {
|
|
3814
|
+
public: CryptoKey;
|
|
3815
|
+
}
|
|
3816
|
+
interface EcdsaParams extends Algorithm {
|
|
3817
|
+
hash: HashAlgorithmIdentifier;
|
|
3818
|
+
}
|
|
3819
|
+
interface HkdfParams extends Algorithm {
|
|
3820
|
+
hash: HashAlgorithmIdentifier;
|
|
3821
|
+
info: NodeJS.BufferSource;
|
|
3822
|
+
salt: NodeJS.BufferSource;
|
|
3823
|
+
}
|
|
3824
|
+
interface HmacImportParams extends Algorithm {
|
|
3825
|
+
hash: HashAlgorithmIdentifier;
|
|
3826
|
+
length?: number;
|
|
3827
|
+
}
|
|
3828
|
+
interface HmacKeyAlgorithm extends KeyAlgorithm {
|
|
3829
|
+
hash: KeyAlgorithm;
|
|
3830
|
+
length: number;
|
|
3831
|
+
}
|
|
3832
|
+
interface HmacKeyGenParams extends Algorithm {
|
|
3833
|
+
hash: HashAlgorithmIdentifier;
|
|
3834
|
+
length?: number;
|
|
3835
|
+
}
|
|
3836
|
+
interface JsonWebKey {
|
|
3837
|
+
alg?: string;
|
|
3838
|
+
crv?: string;
|
|
3839
|
+
d?: string;
|
|
3840
|
+
dp?: string;
|
|
3841
|
+
dq?: string;
|
|
3842
|
+
e?: string;
|
|
3843
|
+
ext?: boolean;
|
|
3844
|
+
k?: string;
|
|
3845
|
+
key_ops?: string[];
|
|
3846
|
+
kty?: string;
|
|
3847
|
+
n?: string;
|
|
3848
|
+
oth?: RsaOtherPrimesInfo[];
|
|
3849
|
+
p?: string;
|
|
3850
|
+
q?: string;
|
|
3851
|
+
qi?: string;
|
|
3852
|
+
use?: string;
|
|
3853
|
+
x?: string;
|
|
3854
|
+
y?: string;
|
|
3855
|
+
}
|
|
3856
|
+
interface KeyAlgorithm {
|
|
3857
|
+
name: string;
|
|
3858
|
+
}
|
|
3859
|
+
interface KmacImportParams extends Algorithm {
|
|
3860
|
+
length?: number;
|
|
3861
|
+
}
|
|
3862
|
+
interface KmacKeyAlgorithm extends KeyAlgorithm {
|
|
3863
|
+
length: number;
|
|
3864
|
+
}
|
|
3865
|
+
interface KmacKeyGenParams extends Algorithm {
|
|
3866
|
+
length?: number;
|
|
3867
|
+
}
|
|
3868
|
+
interface KmacParams extends Algorithm {
|
|
3869
|
+
customization?: NodeJS.BufferSource;
|
|
3870
|
+
length: number;
|
|
3871
|
+
}
|
|
3872
|
+
interface Pbkdf2Params extends Algorithm {
|
|
3873
|
+
hash: HashAlgorithmIdentifier;
|
|
3874
|
+
iterations: number;
|
|
3875
|
+
salt: NodeJS.BufferSource;
|
|
3876
|
+
}
|
|
3877
|
+
interface RsaHashedImportParams extends Algorithm {
|
|
3878
|
+
hash: HashAlgorithmIdentifier;
|
|
3879
|
+
}
|
|
3880
|
+
interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm {
|
|
3881
|
+
hash: KeyAlgorithm;
|
|
3882
|
+
}
|
|
3883
|
+
interface RsaHashedKeyGenParams extends RsaKeyGenParams {
|
|
3884
|
+
hash: HashAlgorithmIdentifier;
|
|
3885
|
+
}
|
|
3886
|
+
interface RsaKeyAlgorithm extends KeyAlgorithm {
|
|
3887
|
+
modulusLength: number;
|
|
3888
|
+
publicExponent: BigInteger;
|
|
3889
|
+
}
|
|
3890
|
+
interface RsaKeyGenParams extends Algorithm {
|
|
3891
|
+
modulusLength: number;
|
|
3892
|
+
publicExponent: BigInteger;
|
|
3893
|
+
}
|
|
3894
|
+
interface RsaOaepParams extends Algorithm {
|
|
3895
|
+
label?: NodeJS.BufferSource;
|
|
3896
|
+
}
|
|
3897
|
+
interface RsaOtherPrimesInfo {
|
|
3898
|
+
d?: string;
|
|
3899
|
+
r?: string;
|
|
3900
|
+
t?: string;
|
|
3901
|
+
}
|
|
3902
|
+
interface RsaPssParams extends Algorithm {
|
|
3903
|
+
saltLength: number;
|
|
3904
|
+
}
|
|
3905
|
+
interface Crypto {
|
|
3906
|
+
readonly subtle: SubtleCrypto;
|
|
3907
|
+
getRandomValues<
|
|
3908
|
+
T extends Exclude<
|
|
3909
|
+
NodeJS.NonSharedTypedArray,
|
|
3910
|
+
NodeJS.NonSharedFloat16Array | NodeJS.NonSharedFloat32Array | NodeJS.NonSharedFloat64Array
|
|
3911
|
+
>,
|
|
3912
|
+
>(
|
|
3913
|
+
typedArray: T,
|
|
3914
|
+
): T;
|
|
3915
|
+
randomUUID(): UUID;
|
|
3916
|
+
}
|
|
3917
|
+
interface CryptoKey {
|
|
3918
|
+
readonly algorithm: KeyAlgorithm;
|
|
3919
|
+
readonly extractable: boolean;
|
|
3920
|
+
readonly type: KeyType;
|
|
3921
|
+
readonly usages: KeyUsage[];
|
|
3922
|
+
}
|
|
3923
|
+
interface CryptoKeyPair {
|
|
3924
|
+
privateKey: CryptoKey;
|
|
3925
|
+
publicKey: CryptoKey;
|
|
3926
|
+
}
|
|
3927
|
+
interface EncapsulatedBits {
|
|
3928
|
+
sharedKey: ArrayBuffer;
|
|
3929
|
+
ciphertext: ArrayBuffer;
|
|
3930
|
+
}
|
|
3931
|
+
interface EncapsulatedKey {
|
|
3932
|
+
sharedKey: CryptoKey;
|
|
3933
|
+
ciphertext: ArrayBuffer;
|
|
3934
|
+
}
|
|
3935
|
+
interface SubtleCrypto {
|
|
3936
|
+
decapsulateBits(
|
|
3937
|
+
decapsulationAlgorithm: AlgorithmIdentifier,
|
|
3938
|
+
decapsulationKey: CryptoKey,
|
|
3939
|
+
ciphertext: NodeJS.BufferSource,
|
|
3940
|
+
): Promise<ArrayBuffer>;
|
|
3941
|
+
decapsulateKey(
|
|
3942
|
+
decapsulationAlgorithm: AlgorithmIdentifier,
|
|
3943
|
+
decapsulationKey: CryptoKey,
|
|
3944
|
+
ciphertext: NodeJS.BufferSource,
|
|
3945
|
+
sharedKeyAlgorithm: AlgorithmIdentifier | HmacImportParams | AesDerivedKeyParams | KmacImportParams,
|
|
3946
|
+
extractable: boolean,
|
|
3947
|
+
usages: KeyUsage[],
|
|
3948
|
+
): Promise<CryptoKey>;
|
|
3949
|
+
decrypt(
|
|
3950
|
+
algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AeadParams,
|
|
3951
|
+
key: CryptoKey,
|
|
3952
|
+
data: NodeJS.BufferSource,
|
|
3953
|
+
): Promise<ArrayBuffer>;
|
|
3954
|
+
deriveBits(
|
|
3955
|
+
algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params | Argon2Params,
|
|
3956
|
+
baseKey: CryptoKey,
|
|
3957
|
+
length?: number | null,
|
|
3958
|
+
): Promise<ArrayBuffer>;
|
|
3959
|
+
deriveKey(
|
|
3960
|
+
algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params | Argon2Params,
|
|
3961
|
+
baseKey: CryptoKey,
|
|
3962
|
+
derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | KmacImportParams,
|
|
3963
|
+
extractable: boolean,
|
|
3964
|
+
keyUsages: readonly KeyUsage[],
|
|
3965
|
+
): Promise<CryptoKey>;
|
|
3966
|
+
digest(algorithm: AlgorithmIdentifier | CShakeParams, data: NodeJS.BufferSource): Promise<ArrayBuffer>;
|
|
3967
|
+
encapsulateBits(
|
|
3968
|
+
encapsulationAlgorithm: AlgorithmIdentifier,
|
|
3969
|
+
encapsulationKey: CryptoKey,
|
|
3970
|
+
): Promise<EncapsulatedBits>;
|
|
3971
|
+
encapsulateKey(
|
|
3972
|
+
encapsulationAlgorithm: AlgorithmIdentifier,
|
|
3973
|
+
encapsulationKey: CryptoKey,
|
|
3974
|
+
sharedKeyAlgorithm: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | KmacImportParams,
|
|
3975
|
+
extractable: boolean,
|
|
3976
|
+
usages: KeyUsage[],
|
|
3977
|
+
): Promise<EncapsulatedKey>;
|
|
3978
|
+
encrypt(
|
|
3979
|
+
algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AeadParams,
|
|
3980
|
+
key: CryptoKey,
|
|
3981
|
+
data: NodeJS.BufferSource,
|
|
3982
|
+
): Promise<ArrayBuffer>;
|
|
3983
|
+
exportKey(format: "jwk", key: CryptoKey): Promise<JsonWebKey>;
|
|
3984
|
+
exportKey(format: Exclude<KeyFormat, "jwk">, key: CryptoKey): Promise<ArrayBuffer>;
|
|
3985
|
+
exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
3986
|
+
generateKey(
|
|
3987
|
+
algorithm: RsaHashedKeyGenParams | EcKeyGenParams,
|
|
3988
|
+
extractable: boolean,
|
|
3989
|
+
keyUsages: KeyUsage[],
|
|
3990
|
+
): Promise<CryptoKeyPair>;
|
|
3991
|
+
generateKey(
|
|
3992
|
+
algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params | KmacKeyGenParams,
|
|
3993
|
+
extractable: boolean,
|
|
3994
|
+
keyUsages: KeyUsage[],
|
|
3995
|
+
): Promise<CryptoKey>;
|
|
3996
|
+
generateKey(
|
|
3997
|
+
algorithm: AlgorithmIdentifier,
|
|
3998
|
+
extractable: boolean,
|
|
3999
|
+
keyUsages: KeyUsage[],
|
|
4000
|
+
): Promise<CryptoKeyPair | CryptoKey>;
|
|
4001
|
+
getPublicKey(key: CryptoKey, keyUsages: KeyUsage[]): Promise<CryptoKey>;
|
|
4002
|
+
importKey(
|
|
4003
|
+
format: "jwk",
|
|
4004
|
+
keyData: JsonWebKey,
|
|
4005
|
+
algorithm:
|
|
4006
|
+
| AlgorithmIdentifier
|
|
4007
|
+
| RsaHashedImportParams
|
|
4008
|
+
| EcKeyImportParams
|
|
4009
|
+
| HmacImportParams
|
|
4010
|
+
| AesKeyAlgorithm
|
|
4011
|
+
| KmacImportParams,
|
|
4012
|
+
extractable: boolean,
|
|
4013
|
+
keyUsages: KeyUsage[],
|
|
4014
|
+
): Promise<CryptoKey>;
|
|
4015
|
+
importKey(
|
|
4016
|
+
format: Exclude<KeyFormat, "jwk">,
|
|
4017
|
+
keyData: NodeJS.BufferSource,
|
|
4018
|
+
algorithm:
|
|
4019
|
+
| AlgorithmIdentifier
|
|
4020
|
+
| RsaHashedImportParams
|
|
4021
|
+
| EcKeyImportParams
|
|
4022
|
+
| HmacImportParams
|
|
4023
|
+
| AesKeyAlgorithm
|
|
4024
|
+
| KmacImportParams,
|
|
4025
|
+
extractable: boolean,
|
|
4026
|
+
keyUsages: KeyUsage[],
|
|
4027
|
+
): Promise<CryptoKey>;
|
|
4028
|
+
sign(
|
|
4029
|
+
algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | ContextParams | KmacParams,
|
|
4030
|
+
key: CryptoKey,
|
|
4031
|
+
data: NodeJS.BufferSource,
|
|
4032
|
+
): Promise<ArrayBuffer>;
|
|
4033
|
+
unwrapKey(
|
|
4034
|
+
format: KeyFormat,
|
|
4035
|
+
wrappedKey: NodeJS.BufferSource,
|
|
4036
|
+
unwrappingKey: CryptoKey,
|
|
4037
|
+
unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AeadParams,
|
|
4038
|
+
unwrappedKeyAlgorithm:
|
|
4039
|
+
| AlgorithmIdentifier
|
|
4040
|
+
| RsaHashedImportParams
|
|
4041
|
+
| EcKeyImportParams
|
|
4042
|
+
| HmacImportParams
|
|
4043
|
+
| AesKeyAlgorithm
|
|
4044
|
+
| KmacImportParams,
|
|
4045
|
+
extractable: boolean,
|
|
4046
|
+
keyUsages: KeyUsage[],
|
|
4047
|
+
): Promise<CryptoKey>;
|
|
4048
|
+
verify(
|
|
4049
|
+
algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | ContextParams | KmacParams,
|
|
4050
|
+
key: CryptoKey,
|
|
4051
|
+
signature: NodeJS.BufferSource,
|
|
4052
|
+
data: NodeJS.BufferSource,
|
|
4053
|
+
): Promise<boolean>;
|
|
4054
|
+
wrapKey(
|
|
4055
|
+
format: KeyFormat,
|
|
4056
|
+
key: CryptoKey,
|
|
4057
|
+
wrappingKey: CryptoKey,
|
|
4058
|
+
wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AeadParams,
|
|
4059
|
+
): Promise<ArrayBuffer>;
|
|
4060
|
+
}
|
|
4061
|
+
}
|
|
4062
|
+
}
|
|
4063
|
+
declare module "crypto" {
|
|
4064
|
+
export * from "node:crypto";
|
|
4065
|
+
}
|