@relative-ci/core 5.3.0-beta.1 → 5.3.0-rc.1
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/lib/cjs/__/@actions/http-client/__/undici/index.js +226 -0
- package/lib/cjs/__/@actions/http-client/__/undici/index.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js +73 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js +131 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +276 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js +238 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js +246 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +131 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js +25 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js +405 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js +114 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js +266 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js +130 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js +222 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js +418 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js +417 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js +80 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js +166 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js +755 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +149 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +227 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1397 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +768 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js +650 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +206 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +83 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +177 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +129 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +211 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +49 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +126 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +299 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +50 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js +47 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +56 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +237 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +395 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js +397 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js +139 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +35 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +38 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js +33 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js +288 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +23 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +23 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js +28 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +183 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js +83 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +42 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +224 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +83 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +35 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +390 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +63 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +41 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js +435 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js +886 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +169 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +19 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js +65 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +24 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js +201 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +338 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js +294 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +417 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +508 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +49 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js +560 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +136 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +762 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +60 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js +146 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +499 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +275 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js +52 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +709 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2235 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1069 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js +640 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +21 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1662 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +716 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +302 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +361 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +92 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +22 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +417 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +391 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +78 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js +350 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +110 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +89 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +451 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +120 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +24 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js +336 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +618 -0
- package/lib/cjs/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
- package/lib/cjs/__/@actions/http-client/lib/index.js +2 -2
- package/lib/cjs/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
- package/lib/cjs/__/@octokit/core/dist-src/index.js.map +1 -0
- package/lib/cjs/__/@octokit/core/dist-src/version.js.map +1 -0
- package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
- package/lib/cjs/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
- package/lib/cjs/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
- package/lib/cjs/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
- package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
- package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
- package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
- package/lib/cjs/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
- package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
- package/lib/cjs/__/@octokit/request/dist-bundle/index.js.map +1 -0
- package/lib/cjs/__/@octokit/request-error/dist-src/index.js.map +1 -0
- package/lib/cjs/__/before-after-hook/index.js.map +1 -0
- package/lib/cjs/__/before-after-hook/lib/add.js.map +1 -0
- package/lib/cjs/__/before-after-hook/lib/register.js.map +1 -0
- package/lib/cjs/__/before-after-hook/lib/remove.js.map +1 -0
- package/lib/cjs/__/cross-spawn/index.js +1 -1
- package/lib/cjs/__/env-ci/lib/git.js +1 -1
- package/lib/cjs/__/{env-ci/__/execa → execa}/index.js +3 -3
- package/lib/cjs/__/execa/index.js.map +1 -0
- package/lib/cjs/__/execa/lib/command.js.map +1 -0
- package/lib/cjs/__/execa/lib/error.js.map +1 -0
- package/lib/cjs/__/execa/lib/promise.js.map +1 -0
- package/lib/cjs/__/execa/lib/stdio.js.map +1 -0
- package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
- package/lib/cjs/__/execa/lib/stream.js.map +1 -0
- package/lib/cjs/__/execa/lib/verbose.js.map +1 -0
- package/lib/cjs/__/get-stream/source/array-buffer.js.map +1 -0
- package/lib/cjs/__/human-signals/build/src/core.js.map +1 -0
- package/lib/cjs/__/human-signals/build/src/main.js.map +1 -0
- package/lib/cjs/__/human-signals/build/src/realtime.js.map +1 -0
- package/lib/cjs/__/human-signals/build/src/signals.js.map +1 -0
- package/lib/cjs/__/is-stream/index.js.map +1 -0
- package/lib/cjs/__/json-with-bigint/json-with-bigint.js +151 -0
- package/lib/cjs/__/json-with-bigint/json-with-bigint.js.map +1 -0
- package/lib/cjs/__/npm-run-path/__/path-key/index.js.map +1 -0
- package/lib/cjs/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
- package/lib/cjs/__/npm-run-path/index.js.map +1 -0
- package/lib/cjs/__/path-key/index.js +1 -1
- package/lib/cjs/__/signal-exit/dist/mjs/index.js.map +1 -0
- package/lib/cjs/__/signal-exit/dist/mjs/signals.js.map +1 -0
- package/lib/cjs/__/strip-final-newline/index.js.map +1 -0
- package/lib/cjs/__/undici/index.js +1 -1
- package/lib/cjs/__/undici/lib/api/api-connect.js +3 -3
- package/lib/cjs/__/undici/lib/api/api-pipeline.js +3 -3
- package/lib/cjs/__/undici/lib/api/api-request.js +3 -3
- package/lib/cjs/__/undici/lib/api/api-stream.js +3 -3
- package/lib/cjs/__/undici/lib/api/api-upgrade.js +3 -3
- package/lib/cjs/__/undici/lib/core/util.js +14 -14
- package/lib/cjs/__/undici/lib/fetch/body.js +8 -8
- package/lib/cjs/__/undici/lib/fetch/constants.js +3 -3
- package/lib/cjs/__/undici/lib/fetch/dataURL.js +5 -5
- package/lib/cjs/__/undici/lib/fetch/file.js +3 -3
- package/lib/cjs/__/undici/lib/fetch/formdata.js +3 -3
- package/lib/cjs/__/undici/lib/fetch/index.js +3 -3
- package/lib/cjs/__/undici/lib/fetch/index.js.map +1 -1
- package/lib/cjs/__/undici/lib/fetch/util.js +6 -6
- package/lib/cjs/__/undici/lib/fileapi/util.js +6 -6
- package/lib/cjs/__/undici/lib/websocket/events.js +3 -3
- package/lib/cjs/__/universal-user-agent/index.js.map +1 -0
- package/lib/cjs/_virtual/api-request2.js +6 -0
- package/lib/cjs/_virtual/api-request2.js.map +1 -0
- package/lib/cjs/_virtual/constants2.js +6 -0
- package/lib/cjs/_virtual/constants2.js.map +1 -0
- package/lib/cjs/_virtual/index10.js +2 -2
- package/lib/cjs/_virtual/index11.js +2 -2
- package/lib/cjs/_virtual/index14.js +2 -2
- package/lib/cjs/_virtual/index15.js +6 -0
- package/lib/cjs/_virtual/index15.js.map +1 -0
- package/lib/cjs/_virtual/index16.js +6 -0
- package/lib/cjs/_virtual/index16.js.map +1 -0
- package/lib/cjs/_virtual/index2.js +1 -1
- package/lib/cjs/_virtual/index3.js +1 -1
- package/lib/cjs/_virtual/index4.js +1 -1
- package/lib/cjs/_virtual/index8.js +2 -2
- package/lib/cjs/_virtual/mock-interceptor2.js +6 -0
- package/lib/cjs/_virtual/mock-interceptor2.js.map +1 -0
- package/lib/cjs/_virtual/utils4.js +6 -0
- package/lib/cjs/_virtual/utils4.js.map +1 -0
- package/lib/cjs/env/load.js +1 -1
- package/lib/cjs/env/load.js.map +1 -1
- package/lib/esm/__/@actions/http-client/__/undici/index.js +220 -0
- package/lib/esm/__/@actions/http-client/__/undici/index.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js +71 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/abort-signal.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js +124 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-connect.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js +268 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-pipeline.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js +231 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-request.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js +238 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-stream.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js +124 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/api-upgrade.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js +23 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/index.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js +398 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/readable.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js +108 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/api/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js +258 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/connect.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js +128 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/constants.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js +215 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/diagnostics.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js +416 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/errors.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js +411 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/request.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js +78 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js +164 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/tree.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js +742 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/core/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js +147 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/agent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js +225 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/balanced-pool.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js +1391 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h1.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js +761 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client-h2.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js +642 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/client.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js +204 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher-base.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js +77 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/dispatcher.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js +175 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/env-http-proxy-agent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js +127 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/fixed-queue.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js +209 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-base.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js +47 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool-stats.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js +124 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/pool.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js +293 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/proxy-agent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js +48 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/dispatcher/retry-agent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/global.js +45 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/global.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js +54 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/decorator-handler.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js +230 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/redirect-handler.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js +389 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/handler/retry-handler.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js +390 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dns.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js +137 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/dump.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js +33 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect-interceptor.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js +36 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/redirect.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js +31 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/interceptor/retry.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js +286 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/constants.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js +17 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp-wasm.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js +17 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/llhttp_simd-wasm.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js +26 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/llhttp/utils.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js +181 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-agent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js +77 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-client.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js +40 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-errors.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js +222 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-interceptor.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js +77 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-pool.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js +33 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js +383 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/mock-utils.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js +56 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pending-interceptors-formatter.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js +39 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/mock/pluralizer.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js +433 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/util/timers.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js +880 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cache.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js +167 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/cachestorage.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js +17 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js +59 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cache/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js +22 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/constants.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js +199 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/index.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js +332 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/parse.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js +292 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/cookies/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js +411 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource-stream.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js +502 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/eventsource.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js +47 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/eventsource/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js +551 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/body.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js +134 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/constants.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js +756 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/data-url.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js +58 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/dispatcher-weakref.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js +140 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/file.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js +492 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata-parser.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js +268 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/formdata.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js +50 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/global.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js +702 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/headers.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js +2224 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/index.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js +1061 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/request.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js +633 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/response.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js +19 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js +1652 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js +709 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fetch/webidl.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js +300 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/encoding.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js +359 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/filereader.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js +90 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/progressevent.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js +20 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js +409 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/fileapi/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js +389 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/connection.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js +76 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/constants.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js +344 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/events.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js +108 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/frame.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js +83 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/permessage-deflate.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js +444 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/receiver.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js +118 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/sender.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js +22 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/symbols.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js +330 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/util.js.map +1 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js +612 -0
- package/lib/esm/__/@actions/http-client/__/undici/lib/web/websocket/websocket.js.map +1 -0
- package/lib/esm/__/@actions/http-client/lib/index.js +2 -2
- package/lib/esm/__/@octokit/auth-token/dist-bundle/index.js.map +1 -0
- package/lib/esm/__/@octokit/core/dist-src/index.js.map +1 -0
- package/lib/esm/__/@octokit/core/dist-src/version.js.map +1 -0
- package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/endpoint/dist-bundle/index.js +1 -1
- package/lib/esm/__/@octokit/endpoint/dist-bundle/index.js.map +1 -0
- package/lib/esm/__/@octokit/graphql/dist-bundle/index.js.map +1 -0
- package/lib/esm/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +1 -0
- package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +1 -0
- package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +1 -0
- package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +1 -0
- package/lib/esm/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +1 -0
- package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request/dist-bundle/index.js +5 -4
- package/lib/esm/__/@octokit/request/dist-bundle/index.js.map +1 -0
- package/lib/esm/__/@octokit/request-error/dist-src/index.js.map +1 -0
- package/lib/esm/__/before-after-hook/index.js.map +1 -0
- package/lib/esm/__/before-after-hook/lib/add.js.map +1 -0
- package/lib/esm/__/before-after-hook/lib/register.js.map +1 -0
- package/lib/esm/__/before-after-hook/lib/remove.js.map +1 -0
- package/lib/esm/__/cross-spawn/index.js +1 -1
- package/lib/esm/__/env-ci/lib/git.js +1 -1
- package/lib/esm/__/{env-ci/__/execa → execa}/index.js +1 -1
- package/lib/esm/__/execa/index.js.map +1 -0
- package/lib/esm/__/execa/lib/command.js.map +1 -0
- package/lib/esm/__/execa/lib/error.js.map +1 -0
- package/lib/esm/__/execa/lib/promise.js.map +1 -0
- package/lib/esm/__/execa/lib/stdio.js.map +1 -0
- package/lib/esm/__/{env-ci/__/execa → execa}/lib/stream.js +1 -1
- package/lib/esm/__/execa/lib/stream.js.map +1 -0
- package/lib/esm/__/execa/lib/verbose.js.map +1 -0
- package/lib/esm/__/get-stream/source/array-buffer.js.map +1 -0
- package/lib/esm/__/human-signals/build/src/core.js.map +1 -0
- package/lib/esm/__/human-signals/build/src/main.js.map +1 -0
- package/lib/esm/__/human-signals/build/src/realtime.js.map +1 -0
- package/lib/esm/__/human-signals/build/src/signals.js.map +1 -0
- package/lib/esm/__/is-stream/index.js.map +1 -0
- package/lib/esm/__/java-properties/dist-node/index.js +1 -1
- package/lib/esm/__/json-with-bigint/json-with-bigint.js +148 -0
- package/lib/esm/__/json-with-bigint/json-with-bigint.js.map +1 -0
- package/lib/esm/__/npm-run-path/__/path-key/index.js.map +1 -0
- package/lib/esm/__/{env-ci/__/npm-run-path → npm-run-path}/index.js +1 -1
- package/lib/esm/__/npm-run-path/index.js.map +1 -0
- package/lib/esm/__/path-key/index.js +1 -1
- package/lib/esm/__/signal-exit/dist/mjs/index.js.map +1 -0
- package/lib/esm/__/signal-exit/dist/mjs/signals.js.map +1 -0
- package/lib/esm/__/strip-final-newline/index.js.map +1 -0
- package/lib/esm/__/undici/index.js +1 -1
- package/lib/esm/__/undici/lib/api/api-connect.js +2 -2
- package/lib/esm/__/undici/lib/api/api-pipeline.js +2 -2
- package/lib/esm/__/undici/lib/api/api-request.js +2 -2
- package/lib/esm/__/undici/lib/api/api-request.js.map +1 -1
- package/lib/esm/__/undici/lib/api/api-stream.js +2 -2
- package/lib/esm/__/undici/lib/api/api-stream.js.map +1 -1
- package/lib/esm/__/undici/lib/api/api-upgrade.js +2 -2
- package/lib/esm/__/undici/lib/api/api-upgrade.js.map +1 -1
- package/lib/esm/__/undici/lib/core/util.js +10 -10
- package/lib/esm/__/undici/lib/core/util.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/body.js +6 -6
- package/lib/esm/__/undici/lib/fetch/body.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/constants.js +2 -2
- package/lib/esm/__/undici/lib/fetch/constants.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/dataURL.js +4 -4
- package/lib/esm/__/undici/lib/fetch/dataURL.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/file.js +2 -2
- package/lib/esm/__/undici/lib/fetch/file.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/formdata.js +2 -2
- package/lib/esm/__/undici/lib/fetch/index.js +2 -2
- package/lib/esm/__/undici/lib/fetch/index.js.map +1 -1
- package/lib/esm/__/undici/lib/fetch/util.js +4 -4
- package/lib/esm/__/undici/lib/fetch/util.js.map +1 -1
- package/lib/esm/__/undici/lib/fileapi/util.js +4 -4
- package/lib/esm/__/undici/lib/fileapi/util.js.map +1 -1
- package/lib/esm/__/undici/lib/websocket/events.js +2 -2
- package/lib/esm/__/universal-user-agent/index.js.map +1 -0
- package/lib/esm/_virtual/api-request2.js +4 -0
- package/lib/esm/_virtual/api-request2.js.map +1 -0
- package/lib/esm/_virtual/constants2.js +4 -0
- package/lib/esm/_virtual/constants2.js.map +1 -0
- package/lib/esm/_virtual/index10.js +4 -2
- package/lib/esm/_virtual/index10.js.map +1 -1
- package/lib/esm/_virtual/index11.js +2 -2
- package/lib/esm/_virtual/index14.js +2 -2
- package/lib/esm/_virtual/index15.js +4 -0
- package/lib/esm/_virtual/index15.js.map +1 -0
- package/lib/esm/_virtual/index16.js +4 -0
- package/lib/esm/_virtual/index16.js.map +1 -0
- package/lib/esm/_virtual/index2.js +1 -1
- package/lib/esm/_virtual/index3.js +1 -1
- package/lib/esm/_virtual/index4.js +1 -1
- package/lib/esm/_virtual/index5.js +2 -6
- package/lib/esm/_virtual/index5.js.map +1 -1
- package/lib/esm/_virtual/index6.js +6 -2
- package/lib/esm/_virtual/index6.js.map +1 -1
- package/lib/esm/_virtual/index8.js +2 -4
- package/lib/esm/_virtual/index8.js.map +1 -1
- package/lib/esm/_virtual/index9.js +2 -2
- package/lib/esm/_virtual/mock-interceptor2.js +4 -0
- package/lib/esm/_virtual/mock-interceptor2.js.map +1 -0
- package/lib/esm/_virtual/utils4.js +4 -0
- package/lib/esm/_virtual/utils4.js.map +1 -0
- package/lib/esm/env/load.js +1 -1
- package/lib/esm/env/load.js.map +1 -1
- package/lib/types/env/load.d.ts +5 -5
- package/lib/types/utils/log-response.d.ts +5 -5
- package/lib/types/utils/logger.d.ts +5 -5
- package/package.json +9 -9
- package/lib/cjs/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/before-after-hook/index.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
- package/lib/cjs/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/command.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/error.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/promise.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/stdio.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/stream.js.map +0 -1
- package/lib/cjs/__/env-ci/__/execa/lib/verbose.js.map +0 -1
- package/lib/cjs/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
- package/lib/cjs/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
- package/lib/cjs/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
- package/lib/cjs/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
- package/lib/cjs/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
- package/lib/cjs/__/env-ci/__/is-stream/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/npm-run-path/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/path-key/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
- package/lib/cjs/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
- package/lib/cjs/__/env-ci/__/strip-final-newline/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/auth-token/dist-bundle/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/core/dist-src/version.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/endpoint/dist-bundle/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/graphql/dist-bundle/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/plugin-paginate-rest/dist-bundle/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/plugin-rest-endpoint-methods/dist-src/version.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/request/dist-bundle/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/@octokit/request-error/dist-src/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/before-after-hook/index.js.map +0 -1
- package/lib/esm/__/@actions/github/__/before-after-hook/lib/add.js.map +0 -1
- package/lib/esm/__/@actions/github/__/before-after-hook/lib/register.js.map +0 -1
- package/lib/esm/__/@actions/github/__/before-after-hook/lib/remove.js.map +0 -1
- package/lib/esm/__/@actions/github/__/universal-user-agent/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/command.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/error.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/promise.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/stdio.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/stream.js.map +0 -1
- package/lib/esm/__/env-ci/__/execa/lib/verbose.js.map +0 -1
- package/lib/esm/__/env-ci/__/get-stream/source/array-buffer.js.map +0 -1
- package/lib/esm/__/env-ci/__/human-signals/build/src/core.js.map +0 -1
- package/lib/esm/__/env-ci/__/human-signals/build/src/main.js.map +0 -1
- package/lib/esm/__/env-ci/__/human-signals/build/src/realtime.js.map +0 -1
- package/lib/esm/__/env-ci/__/human-signals/build/src/signals.js.map +0 -1
- package/lib/esm/__/env-ci/__/is-stream/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/npm-run-path/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/path-key/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/index.js.map +0 -1
- package/lib/esm/__/env-ci/__/signal-exit/dist/mjs/signals.js.map +0 -1
- package/lib/esm/__/env-ci/__/strip-final-newline/index.js.map +0 -1
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
- /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
- /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
- /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
- /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
- /package/lib/cjs/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
- /package/lib/cjs/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
- /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
- /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
- /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
- /package/lib/cjs/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
- /package/lib/cjs/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
- /package/lib/cjs/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
- /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
- /package/lib/cjs/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
- /package/lib/cjs/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
- /package/lib/cjs/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/auth-token/dist-bundle/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/core/dist-src/version.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/graphql/dist-bundle/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-paginate-rest/dist-bundle/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/plugin-rest-endpoint-methods/dist-src/version.js +0 -0
- /package/lib/esm/__/{@actions/github/__/@octokit → @octokit}/request-error/dist-src/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/add.js +0 -0
- /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/register.js +0 -0
- /package/lib/esm/__/{@actions/github/__/before-after-hook → before-after-hook}/lib/remove.js +0 -0
- /package/lib/esm/__/{env-ci/__/execa → execa}/lib/command.js +0 -0
- /package/lib/esm/__/{env-ci/__/execa → execa}/lib/error.js +0 -0
- /package/lib/esm/__/{env-ci/__/execa → execa}/lib/promise.js +0 -0
- /package/lib/esm/__/{env-ci/__/execa → execa}/lib/stdio.js +0 -0
- /package/lib/esm/__/{env-ci/__/execa → execa}/lib/verbose.js +0 -0
- /package/lib/esm/__/{env-ci/__/get-stream → get-stream}/source/array-buffer.js +0 -0
- /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/core.js +0 -0
- /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/main.js +0 -0
- /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/realtime.js +0 -0
- /package/lib/esm/__/{env-ci/__/human-signals → human-signals}/build/src/signals.js +0 -0
- /package/lib/esm/__/{env-ci/__/is-stream → is-stream}/index.js +0 -0
- /package/lib/esm/__/{env-ci → npm-run-path}/__/path-key/index.js +0 -0
- /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/index.js +0 -0
- /package/lib/esm/__/{env-ci/__/signal-exit → signal-exit}/dist/mjs/signals.js +0 -0
- /package/lib/esm/__/{env-ci/__/strip-final-newline → strip-final-newline}/index.js +0 -0
- /package/lib/esm/__/{@actions/github/__/universal-user-agent → universal-user-agent}/index.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diagnostics.js","sources":["../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/core/diagnostics.js"],"sourcesContent":["'use strict'\nconst diagnosticsChannel = require('node:diagnostics_channel')\nconst util = require('node:util')\n\nconst undiciDebugLog = util.debuglog('undici')\nconst fetchDebuglog = util.debuglog('fetch')\nconst websocketDebuglog = util.debuglog('websocket')\nlet isClientSet = false\nconst channels = {\n // Client\n beforeConnect: diagnosticsChannel.channel('undici:client:beforeConnect'),\n connected: diagnosticsChannel.channel('undici:client:connected'),\n connectError: diagnosticsChannel.channel('undici:client:connectError'),\n sendHeaders: diagnosticsChannel.channel('undici:client:sendHeaders'),\n // Request\n create: diagnosticsChannel.channel('undici:request:create'),\n bodySent: diagnosticsChannel.channel('undici:request:bodySent'),\n headers: diagnosticsChannel.channel('undici:request:headers'),\n trailers: diagnosticsChannel.channel('undici:request:trailers'),\n error: diagnosticsChannel.channel('undici:request:error'),\n // WebSocket\n open: diagnosticsChannel.channel('undici:websocket:open'),\n close: diagnosticsChannel.channel('undici:websocket:close'),\n socketError: diagnosticsChannel.channel('undici:websocket:socket_error'),\n ping: diagnosticsChannel.channel('undici:websocket:ping'),\n pong: diagnosticsChannel.channel('undici:websocket:pong')\n}\n\nif (undiciDebugLog.enabled || fetchDebuglog.enabled) {\n const debuglog = fetchDebuglog.enabled ? fetchDebuglog : undiciDebugLog\n\n // Track all Client events\n diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connecting to %s using %s%s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connected to %s using %s%s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host },\n error\n } = evt\n debuglog(\n 'connection to %s using %s%s errored - %s',\n `${host}${port ? `:${port}` : ''}`,\n protocol,\n version,\n error.message\n )\n })\n\n diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('sending request to %s %s/%s', method, origin, path)\n })\n\n // Track Request events\n diagnosticsChannel.channel('undici:request:headers').subscribe(evt => {\n const {\n request: { method, path, origin },\n response: { statusCode }\n } = evt\n debuglog(\n 'received response to %s %s/%s - HTTP %d',\n method,\n origin,\n path,\n statusCode\n )\n })\n\n diagnosticsChannel.channel('undici:request:trailers').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('trailers received from %s %s/%s', method, origin, path)\n })\n\n diagnosticsChannel.channel('undici:request:error').subscribe(evt => {\n const {\n request: { method, path, origin },\n error\n } = evt\n debuglog(\n 'request to %s %s/%s errored - %s',\n method,\n origin,\n path,\n error.message\n )\n })\n\n isClientSet = true\n}\n\nif (websocketDebuglog.enabled) {\n if (!isClientSet) {\n const debuglog = undiciDebugLog.enabled ? undiciDebugLog : websocketDebuglog\n diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connecting to %s%s using %s%s',\n host,\n port ? `:${port}` : '',\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connected').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host }\n } = evt\n debuglog(\n 'connected to %s%s using %s%s',\n host,\n port ? `:${port}` : '',\n protocol,\n version\n )\n })\n\n diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => {\n const {\n connectParams: { version, protocol, port, host },\n error\n } = evt\n debuglog(\n 'connection to %s%s using %s%s errored - %s',\n host,\n port ? `:${port}` : '',\n protocol,\n version,\n error.message\n )\n })\n\n diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => {\n const {\n request: { method, path, origin }\n } = evt\n debuglog('sending request to %s %s/%s', method, origin, path)\n })\n }\n\n // Track all WebSocket events\n diagnosticsChannel.channel('undici:websocket:open').subscribe(evt => {\n const {\n address: { address, port }\n } = evt\n websocketDebuglog('connection opened %s%s', address, port ? `:${port}` : '')\n })\n\n diagnosticsChannel.channel('undici:websocket:close').subscribe(evt => {\n const { websocket, code, reason } = evt\n websocketDebuglog(\n 'closed connection to %s - %s %s',\n websocket.url,\n code,\n reason\n )\n })\n\n diagnosticsChannel.channel('undici:websocket:socket_error').subscribe(err => {\n websocketDebuglog('connection errored - %s', err.message)\n })\n\n diagnosticsChannel.channel('undici:websocket:ping').subscribe(evt => {\n websocketDebuglog('ping received')\n })\n\n diagnosticsChannel.channel('undici:websocket:pong').subscribe(evt => {\n websocketDebuglog('pong received')\n })\n}\n\nmodule.exports = {\n channels\n}\n"],"names":["require$$0","require$$1"],"mappings":"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","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var errors;
|
|
4
|
+
var hasRequiredErrors;
|
|
5
|
+
|
|
6
|
+
function requireErrors () {
|
|
7
|
+
if (hasRequiredErrors) return errors;
|
|
8
|
+
hasRequiredErrors = 1;
|
|
9
|
+
|
|
10
|
+
const kUndiciError = Symbol.for('undici.error.UND_ERR');
|
|
11
|
+
class UndiciError extends Error {
|
|
12
|
+
constructor (message) {
|
|
13
|
+
super(message);
|
|
14
|
+
this.name = 'UndiciError';
|
|
15
|
+
this.code = 'UND_ERR';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static [Symbol.hasInstance] (instance) {
|
|
19
|
+
return instance && instance[kUndiciError] === true
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
[kUndiciError] = true
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const kConnectTimeoutError = Symbol.for('undici.error.UND_ERR_CONNECT_TIMEOUT');
|
|
26
|
+
class ConnectTimeoutError extends UndiciError {
|
|
27
|
+
constructor (message) {
|
|
28
|
+
super(message);
|
|
29
|
+
this.name = 'ConnectTimeoutError';
|
|
30
|
+
this.message = message || 'Connect Timeout Error';
|
|
31
|
+
this.code = 'UND_ERR_CONNECT_TIMEOUT';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static [Symbol.hasInstance] (instance) {
|
|
35
|
+
return instance && instance[kConnectTimeoutError] === true
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
[kConnectTimeoutError] = true
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const kHeadersTimeoutError = Symbol.for('undici.error.UND_ERR_HEADERS_TIMEOUT');
|
|
42
|
+
class HeadersTimeoutError extends UndiciError {
|
|
43
|
+
constructor (message) {
|
|
44
|
+
super(message);
|
|
45
|
+
this.name = 'HeadersTimeoutError';
|
|
46
|
+
this.message = message || 'Headers Timeout Error';
|
|
47
|
+
this.code = 'UND_ERR_HEADERS_TIMEOUT';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
static [Symbol.hasInstance] (instance) {
|
|
51
|
+
return instance && instance[kHeadersTimeoutError] === true
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
[kHeadersTimeoutError] = true
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const kHeadersOverflowError = Symbol.for('undici.error.UND_ERR_HEADERS_OVERFLOW');
|
|
58
|
+
class HeadersOverflowError extends UndiciError {
|
|
59
|
+
constructor (message) {
|
|
60
|
+
super(message);
|
|
61
|
+
this.name = 'HeadersOverflowError';
|
|
62
|
+
this.message = message || 'Headers Overflow Error';
|
|
63
|
+
this.code = 'UND_ERR_HEADERS_OVERFLOW';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
static [Symbol.hasInstance] (instance) {
|
|
67
|
+
return instance && instance[kHeadersOverflowError] === true
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
[kHeadersOverflowError] = true
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const kBodyTimeoutError = Symbol.for('undici.error.UND_ERR_BODY_TIMEOUT');
|
|
74
|
+
class BodyTimeoutError extends UndiciError {
|
|
75
|
+
constructor (message) {
|
|
76
|
+
super(message);
|
|
77
|
+
this.name = 'BodyTimeoutError';
|
|
78
|
+
this.message = message || 'Body Timeout Error';
|
|
79
|
+
this.code = 'UND_ERR_BODY_TIMEOUT';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
static [Symbol.hasInstance] (instance) {
|
|
83
|
+
return instance && instance[kBodyTimeoutError] === true
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
[kBodyTimeoutError] = true
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const kResponseStatusCodeError = Symbol.for('undici.error.UND_ERR_RESPONSE_STATUS_CODE');
|
|
90
|
+
class ResponseStatusCodeError extends UndiciError {
|
|
91
|
+
constructor (message, statusCode, headers, body) {
|
|
92
|
+
super(message);
|
|
93
|
+
this.name = 'ResponseStatusCodeError';
|
|
94
|
+
this.message = message || 'Response Status Code Error';
|
|
95
|
+
this.code = 'UND_ERR_RESPONSE_STATUS_CODE';
|
|
96
|
+
this.body = body;
|
|
97
|
+
this.status = statusCode;
|
|
98
|
+
this.statusCode = statusCode;
|
|
99
|
+
this.headers = headers;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
static [Symbol.hasInstance] (instance) {
|
|
103
|
+
return instance && instance[kResponseStatusCodeError] === true
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
[kResponseStatusCodeError] = true
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
const kInvalidArgumentError = Symbol.for('undici.error.UND_ERR_INVALID_ARG');
|
|
110
|
+
class InvalidArgumentError extends UndiciError {
|
|
111
|
+
constructor (message) {
|
|
112
|
+
super(message);
|
|
113
|
+
this.name = 'InvalidArgumentError';
|
|
114
|
+
this.message = message || 'Invalid Argument Error';
|
|
115
|
+
this.code = 'UND_ERR_INVALID_ARG';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
static [Symbol.hasInstance] (instance) {
|
|
119
|
+
return instance && instance[kInvalidArgumentError] === true
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
[kInvalidArgumentError] = true
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const kInvalidReturnValueError = Symbol.for('undici.error.UND_ERR_INVALID_RETURN_VALUE');
|
|
126
|
+
class InvalidReturnValueError extends UndiciError {
|
|
127
|
+
constructor (message) {
|
|
128
|
+
super(message);
|
|
129
|
+
this.name = 'InvalidReturnValueError';
|
|
130
|
+
this.message = message || 'Invalid Return Value Error';
|
|
131
|
+
this.code = 'UND_ERR_INVALID_RETURN_VALUE';
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
static [Symbol.hasInstance] (instance) {
|
|
135
|
+
return instance && instance[kInvalidReturnValueError] === true
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
[kInvalidReturnValueError] = true
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
const kAbortError = Symbol.for('undici.error.UND_ERR_ABORT');
|
|
142
|
+
class AbortError extends UndiciError {
|
|
143
|
+
constructor (message) {
|
|
144
|
+
super(message);
|
|
145
|
+
this.name = 'AbortError';
|
|
146
|
+
this.message = message || 'The operation was aborted';
|
|
147
|
+
this.code = 'UND_ERR_ABORT';
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
static [Symbol.hasInstance] (instance) {
|
|
151
|
+
return instance && instance[kAbortError] === true
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
[kAbortError] = true
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
const kRequestAbortedError = Symbol.for('undici.error.UND_ERR_ABORTED');
|
|
158
|
+
class RequestAbortedError extends AbortError {
|
|
159
|
+
constructor (message) {
|
|
160
|
+
super(message);
|
|
161
|
+
this.name = 'AbortError';
|
|
162
|
+
this.message = message || 'Request aborted';
|
|
163
|
+
this.code = 'UND_ERR_ABORTED';
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
static [Symbol.hasInstance] (instance) {
|
|
167
|
+
return instance && instance[kRequestAbortedError] === true
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
[kRequestAbortedError] = true
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const kInformationalError = Symbol.for('undici.error.UND_ERR_INFO');
|
|
174
|
+
class InformationalError extends UndiciError {
|
|
175
|
+
constructor (message) {
|
|
176
|
+
super(message);
|
|
177
|
+
this.name = 'InformationalError';
|
|
178
|
+
this.message = message || 'Request information';
|
|
179
|
+
this.code = 'UND_ERR_INFO';
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
static [Symbol.hasInstance] (instance) {
|
|
183
|
+
return instance && instance[kInformationalError] === true
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
[kInformationalError] = true
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
const kRequestContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_REQ_CONTENT_LENGTH_MISMATCH');
|
|
190
|
+
class RequestContentLengthMismatchError extends UndiciError {
|
|
191
|
+
constructor (message) {
|
|
192
|
+
super(message);
|
|
193
|
+
this.name = 'RequestContentLengthMismatchError';
|
|
194
|
+
this.message = message || 'Request body length does not match content-length header';
|
|
195
|
+
this.code = 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH';
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
static [Symbol.hasInstance] (instance) {
|
|
199
|
+
return instance && instance[kRequestContentLengthMismatchError] === true
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
[kRequestContentLengthMismatchError] = true
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
const kResponseContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_RES_CONTENT_LENGTH_MISMATCH');
|
|
206
|
+
class ResponseContentLengthMismatchError extends UndiciError {
|
|
207
|
+
constructor (message) {
|
|
208
|
+
super(message);
|
|
209
|
+
this.name = 'ResponseContentLengthMismatchError';
|
|
210
|
+
this.message = message || 'Response body length does not match content-length header';
|
|
211
|
+
this.code = 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH';
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
static [Symbol.hasInstance] (instance) {
|
|
215
|
+
return instance && instance[kResponseContentLengthMismatchError] === true
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
[kResponseContentLengthMismatchError] = true
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const kClientDestroyedError = Symbol.for('undici.error.UND_ERR_DESTROYED');
|
|
222
|
+
class ClientDestroyedError extends UndiciError {
|
|
223
|
+
constructor (message) {
|
|
224
|
+
super(message);
|
|
225
|
+
this.name = 'ClientDestroyedError';
|
|
226
|
+
this.message = message || 'The client is destroyed';
|
|
227
|
+
this.code = 'UND_ERR_DESTROYED';
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
static [Symbol.hasInstance] (instance) {
|
|
231
|
+
return instance && instance[kClientDestroyedError] === true
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
[kClientDestroyedError] = true
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
const kClientClosedError = Symbol.for('undici.error.UND_ERR_CLOSED');
|
|
238
|
+
class ClientClosedError extends UndiciError {
|
|
239
|
+
constructor (message) {
|
|
240
|
+
super(message);
|
|
241
|
+
this.name = 'ClientClosedError';
|
|
242
|
+
this.message = message || 'The client is closed';
|
|
243
|
+
this.code = 'UND_ERR_CLOSED';
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
static [Symbol.hasInstance] (instance) {
|
|
247
|
+
return instance && instance[kClientClosedError] === true
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
[kClientClosedError] = true
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
const kSocketError = Symbol.for('undici.error.UND_ERR_SOCKET');
|
|
254
|
+
class SocketError extends UndiciError {
|
|
255
|
+
constructor (message, socket) {
|
|
256
|
+
super(message);
|
|
257
|
+
this.name = 'SocketError';
|
|
258
|
+
this.message = message || 'Socket error';
|
|
259
|
+
this.code = 'UND_ERR_SOCKET';
|
|
260
|
+
this.socket = socket;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
static [Symbol.hasInstance] (instance) {
|
|
264
|
+
return instance && instance[kSocketError] === true
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
[kSocketError] = true
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
const kNotSupportedError = Symbol.for('undici.error.UND_ERR_NOT_SUPPORTED');
|
|
271
|
+
class NotSupportedError extends UndiciError {
|
|
272
|
+
constructor (message) {
|
|
273
|
+
super(message);
|
|
274
|
+
this.name = 'NotSupportedError';
|
|
275
|
+
this.message = message || 'Not supported error';
|
|
276
|
+
this.code = 'UND_ERR_NOT_SUPPORTED';
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
static [Symbol.hasInstance] (instance) {
|
|
280
|
+
return instance && instance[kNotSupportedError] === true
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
[kNotSupportedError] = true
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
const kBalancedPoolMissingUpstreamError = Symbol.for('undici.error.UND_ERR_BPL_MISSING_UPSTREAM');
|
|
287
|
+
class BalancedPoolMissingUpstreamError extends UndiciError {
|
|
288
|
+
constructor (message) {
|
|
289
|
+
super(message);
|
|
290
|
+
this.name = 'MissingUpstreamError';
|
|
291
|
+
this.message = message || 'No upstream has been added to the BalancedPool';
|
|
292
|
+
this.code = 'UND_ERR_BPL_MISSING_UPSTREAM';
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
static [Symbol.hasInstance] (instance) {
|
|
296
|
+
return instance && instance[kBalancedPoolMissingUpstreamError] === true
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
[kBalancedPoolMissingUpstreamError] = true
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
const kHTTPParserError = Symbol.for('undici.error.UND_ERR_HTTP_PARSER');
|
|
303
|
+
class HTTPParserError extends Error {
|
|
304
|
+
constructor (message, code, data) {
|
|
305
|
+
super(message);
|
|
306
|
+
this.name = 'HTTPParserError';
|
|
307
|
+
this.code = code ? `HPE_${code}` : undefined;
|
|
308
|
+
this.data = data ? data.toString() : undefined;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
static [Symbol.hasInstance] (instance) {
|
|
312
|
+
return instance && instance[kHTTPParserError] === true
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
[kHTTPParserError] = true
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
const kResponseExceededMaxSizeError = Symbol.for('undici.error.UND_ERR_RES_EXCEEDED_MAX_SIZE');
|
|
319
|
+
class ResponseExceededMaxSizeError extends UndiciError {
|
|
320
|
+
constructor (message) {
|
|
321
|
+
super(message);
|
|
322
|
+
this.name = 'ResponseExceededMaxSizeError';
|
|
323
|
+
this.message = message || 'Response content exceeded max size';
|
|
324
|
+
this.code = 'UND_ERR_RES_EXCEEDED_MAX_SIZE';
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
static [Symbol.hasInstance] (instance) {
|
|
328
|
+
return instance && instance[kResponseExceededMaxSizeError] === true
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
[kResponseExceededMaxSizeError] = true
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
const kRequestRetryError = Symbol.for('undici.error.UND_ERR_REQ_RETRY');
|
|
335
|
+
class RequestRetryError extends UndiciError {
|
|
336
|
+
constructor (message, code, { headers, data }) {
|
|
337
|
+
super(message);
|
|
338
|
+
this.name = 'RequestRetryError';
|
|
339
|
+
this.message = message || 'Request retry error';
|
|
340
|
+
this.code = 'UND_ERR_REQ_RETRY';
|
|
341
|
+
this.statusCode = code;
|
|
342
|
+
this.data = data;
|
|
343
|
+
this.headers = headers;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
static [Symbol.hasInstance] (instance) {
|
|
347
|
+
return instance && instance[kRequestRetryError] === true
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
[kRequestRetryError] = true
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
const kResponseError = Symbol.for('undici.error.UND_ERR_RESPONSE');
|
|
354
|
+
class ResponseError extends UndiciError {
|
|
355
|
+
constructor (message, code, { headers, data }) {
|
|
356
|
+
super(message);
|
|
357
|
+
this.name = 'ResponseError';
|
|
358
|
+
this.message = message || 'Response error';
|
|
359
|
+
this.code = 'UND_ERR_RESPONSE';
|
|
360
|
+
this.statusCode = code;
|
|
361
|
+
this.data = data;
|
|
362
|
+
this.headers = headers;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
static [Symbol.hasInstance] (instance) {
|
|
366
|
+
return instance && instance[kResponseError] === true
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
[kResponseError] = true
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
const kSecureProxyConnectionError = Symbol.for('undici.error.UND_ERR_PRX_TLS');
|
|
373
|
+
class SecureProxyConnectionError extends UndiciError {
|
|
374
|
+
constructor (cause, message, options) {
|
|
375
|
+
super(message, { cause, ...(options ?? {}) });
|
|
376
|
+
this.name = 'SecureProxyConnectionError';
|
|
377
|
+
this.message = message || 'Secure Proxy Connection failed';
|
|
378
|
+
this.code = 'UND_ERR_PRX_TLS';
|
|
379
|
+
this.cause = cause;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
static [Symbol.hasInstance] (instance) {
|
|
383
|
+
return instance && instance[kSecureProxyConnectionError] === true
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
[kSecureProxyConnectionError] = true
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
errors = {
|
|
390
|
+
AbortError,
|
|
391
|
+
HTTPParserError,
|
|
392
|
+
UndiciError,
|
|
393
|
+
HeadersTimeoutError,
|
|
394
|
+
HeadersOverflowError,
|
|
395
|
+
BodyTimeoutError,
|
|
396
|
+
RequestContentLengthMismatchError,
|
|
397
|
+
ConnectTimeoutError,
|
|
398
|
+
ResponseStatusCodeError,
|
|
399
|
+
InvalidArgumentError,
|
|
400
|
+
InvalidReturnValueError,
|
|
401
|
+
RequestAbortedError,
|
|
402
|
+
ClientDestroyedError,
|
|
403
|
+
ClientClosedError,
|
|
404
|
+
InformationalError,
|
|
405
|
+
SocketError,
|
|
406
|
+
NotSupportedError,
|
|
407
|
+
ResponseContentLengthMismatchError,
|
|
408
|
+
BalancedPoolMissingUpstreamError,
|
|
409
|
+
ResponseExceededMaxSizeError,
|
|
410
|
+
RequestRetryError,
|
|
411
|
+
ResponseError,
|
|
412
|
+
SecureProxyConnectionError
|
|
413
|
+
};
|
|
414
|
+
return errors;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
exports.__require = requireErrors;
|
|
418
|
+
//# sourceMappingURL=errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.js","sources":["../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/core/errors.js"],"sourcesContent":["'use strict'\n\nconst kUndiciError = Symbol.for('undici.error.UND_ERR')\nclass UndiciError extends Error {\n constructor (message) {\n super(message)\n this.name = 'UndiciError'\n this.code = 'UND_ERR'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kUndiciError] === true\n }\n\n [kUndiciError] = true\n}\n\nconst kConnectTimeoutError = Symbol.for('undici.error.UND_ERR_CONNECT_TIMEOUT')\nclass ConnectTimeoutError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'ConnectTimeoutError'\n this.message = message || 'Connect Timeout Error'\n this.code = 'UND_ERR_CONNECT_TIMEOUT'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kConnectTimeoutError] === true\n }\n\n [kConnectTimeoutError] = true\n}\n\nconst kHeadersTimeoutError = Symbol.for('undici.error.UND_ERR_HEADERS_TIMEOUT')\nclass HeadersTimeoutError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'HeadersTimeoutError'\n this.message = message || 'Headers Timeout Error'\n this.code = 'UND_ERR_HEADERS_TIMEOUT'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kHeadersTimeoutError] === true\n }\n\n [kHeadersTimeoutError] = true\n}\n\nconst kHeadersOverflowError = Symbol.for('undici.error.UND_ERR_HEADERS_OVERFLOW')\nclass HeadersOverflowError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'HeadersOverflowError'\n this.message = message || 'Headers Overflow Error'\n this.code = 'UND_ERR_HEADERS_OVERFLOW'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kHeadersOverflowError] === true\n }\n\n [kHeadersOverflowError] = true\n}\n\nconst kBodyTimeoutError = Symbol.for('undici.error.UND_ERR_BODY_TIMEOUT')\nclass BodyTimeoutError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'BodyTimeoutError'\n this.message = message || 'Body Timeout Error'\n this.code = 'UND_ERR_BODY_TIMEOUT'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kBodyTimeoutError] === true\n }\n\n [kBodyTimeoutError] = true\n}\n\nconst kResponseStatusCodeError = Symbol.for('undici.error.UND_ERR_RESPONSE_STATUS_CODE')\nclass ResponseStatusCodeError extends UndiciError {\n constructor (message, statusCode, headers, body) {\n super(message)\n this.name = 'ResponseStatusCodeError'\n this.message = message || 'Response Status Code Error'\n this.code = 'UND_ERR_RESPONSE_STATUS_CODE'\n this.body = body\n this.status = statusCode\n this.statusCode = statusCode\n this.headers = headers\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kResponseStatusCodeError] === true\n }\n\n [kResponseStatusCodeError] = true\n}\n\nconst kInvalidArgumentError = Symbol.for('undici.error.UND_ERR_INVALID_ARG')\nclass InvalidArgumentError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'InvalidArgumentError'\n this.message = message || 'Invalid Argument Error'\n this.code = 'UND_ERR_INVALID_ARG'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kInvalidArgumentError] === true\n }\n\n [kInvalidArgumentError] = true\n}\n\nconst kInvalidReturnValueError = Symbol.for('undici.error.UND_ERR_INVALID_RETURN_VALUE')\nclass InvalidReturnValueError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'InvalidReturnValueError'\n this.message = message || 'Invalid Return Value Error'\n this.code = 'UND_ERR_INVALID_RETURN_VALUE'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kInvalidReturnValueError] === true\n }\n\n [kInvalidReturnValueError] = true\n}\n\nconst kAbortError = Symbol.for('undici.error.UND_ERR_ABORT')\nclass AbortError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'AbortError'\n this.message = message || 'The operation was aborted'\n this.code = 'UND_ERR_ABORT'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kAbortError] === true\n }\n\n [kAbortError] = true\n}\n\nconst kRequestAbortedError = Symbol.for('undici.error.UND_ERR_ABORTED')\nclass RequestAbortedError extends AbortError {\n constructor (message) {\n super(message)\n this.name = 'AbortError'\n this.message = message || 'Request aborted'\n this.code = 'UND_ERR_ABORTED'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kRequestAbortedError] === true\n }\n\n [kRequestAbortedError] = true\n}\n\nconst kInformationalError = Symbol.for('undici.error.UND_ERR_INFO')\nclass InformationalError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'InformationalError'\n this.message = message || 'Request information'\n this.code = 'UND_ERR_INFO'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kInformationalError] === true\n }\n\n [kInformationalError] = true\n}\n\nconst kRequestContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_REQ_CONTENT_LENGTH_MISMATCH')\nclass RequestContentLengthMismatchError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'RequestContentLengthMismatchError'\n this.message = message || 'Request body length does not match content-length header'\n this.code = 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kRequestContentLengthMismatchError] === true\n }\n\n [kRequestContentLengthMismatchError] = true\n}\n\nconst kResponseContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_RES_CONTENT_LENGTH_MISMATCH')\nclass ResponseContentLengthMismatchError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'ResponseContentLengthMismatchError'\n this.message = message || 'Response body length does not match content-length header'\n this.code = 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kResponseContentLengthMismatchError] === true\n }\n\n [kResponseContentLengthMismatchError] = true\n}\n\nconst kClientDestroyedError = Symbol.for('undici.error.UND_ERR_DESTROYED')\nclass ClientDestroyedError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'ClientDestroyedError'\n this.message = message || 'The client is destroyed'\n this.code = 'UND_ERR_DESTROYED'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kClientDestroyedError] === true\n }\n\n [kClientDestroyedError] = true\n}\n\nconst kClientClosedError = Symbol.for('undici.error.UND_ERR_CLOSED')\nclass ClientClosedError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'ClientClosedError'\n this.message = message || 'The client is closed'\n this.code = 'UND_ERR_CLOSED'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kClientClosedError] === true\n }\n\n [kClientClosedError] = true\n}\n\nconst kSocketError = Symbol.for('undici.error.UND_ERR_SOCKET')\nclass SocketError extends UndiciError {\n constructor (message, socket) {\n super(message)\n this.name = 'SocketError'\n this.message = message || 'Socket error'\n this.code = 'UND_ERR_SOCKET'\n this.socket = socket\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kSocketError] === true\n }\n\n [kSocketError] = true\n}\n\nconst kNotSupportedError = Symbol.for('undici.error.UND_ERR_NOT_SUPPORTED')\nclass NotSupportedError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'NotSupportedError'\n this.message = message || 'Not supported error'\n this.code = 'UND_ERR_NOT_SUPPORTED'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kNotSupportedError] === true\n }\n\n [kNotSupportedError] = true\n}\n\nconst kBalancedPoolMissingUpstreamError = Symbol.for('undici.error.UND_ERR_BPL_MISSING_UPSTREAM')\nclass BalancedPoolMissingUpstreamError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'MissingUpstreamError'\n this.message = message || 'No upstream has been added to the BalancedPool'\n this.code = 'UND_ERR_BPL_MISSING_UPSTREAM'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kBalancedPoolMissingUpstreamError] === true\n }\n\n [kBalancedPoolMissingUpstreamError] = true\n}\n\nconst kHTTPParserError = Symbol.for('undici.error.UND_ERR_HTTP_PARSER')\nclass HTTPParserError extends Error {\n constructor (message, code, data) {\n super(message)\n this.name = 'HTTPParserError'\n this.code = code ? `HPE_${code}` : undefined\n this.data = data ? data.toString() : undefined\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kHTTPParserError] === true\n }\n\n [kHTTPParserError] = true\n}\n\nconst kResponseExceededMaxSizeError = Symbol.for('undici.error.UND_ERR_RES_EXCEEDED_MAX_SIZE')\nclass ResponseExceededMaxSizeError extends UndiciError {\n constructor (message) {\n super(message)\n this.name = 'ResponseExceededMaxSizeError'\n this.message = message || 'Response content exceeded max size'\n this.code = 'UND_ERR_RES_EXCEEDED_MAX_SIZE'\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kResponseExceededMaxSizeError] === true\n }\n\n [kResponseExceededMaxSizeError] = true\n}\n\nconst kRequestRetryError = Symbol.for('undici.error.UND_ERR_REQ_RETRY')\nclass RequestRetryError extends UndiciError {\n constructor (message, code, { headers, data }) {\n super(message)\n this.name = 'RequestRetryError'\n this.message = message || 'Request retry error'\n this.code = 'UND_ERR_REQ_RETRY'\n this.statusCode = code\n this.data = data\n this.headers = headers\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kRequestRetryError] === true\n }\n\n [kRequestRetryError] = true\n}\n\nconst kResponseError = Symbol.for('undici.error.UND_ERR_RESPONSE')\nclass ResponseError extends UndiciError {\n constructor (message, code, { headers, data }) {\n super(message)\n this.name = 'ResponseError'\n this.message = message || 'Response error'\n this.code = 'UND_ERR_RESPONSE'\n this.statusCode = code\n this.data = data\n this.headers = headers\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kResponseError] === true\n }\n\n [kResponseError] = true\n}\n\nconst kSecureProxyConnectionError = Symbol.for('undici.error.UND_ERR_PRX_TLS')\nclass SecureProxyConnectionError extends UndiciError {\n constructor (cause, message, options) {\n super(message, { cause, ...(options ?? {}) })\n this.name = 'SecureProxyConnectionError'\n this.message = message || 'Secure Proxy Connection failed'\n this.code = 'UND_ERR_PRX_TLS'\n this.cause = cause\n }\n\n static [Symbol.hasInstance] (instance) {\n return instance && instance[kSecureProxyConnectionError] === true\n }\n\n [kSecureProxyConnectionError] = true\n}\n\nmodule.exports = {\n AbortError,\n HTTPParserError,\n UndiciError,\n HeadersTimeoutError,\n HeadersOverflowError,\n BodyTimeoutError,\n RequestContentLengthMismatchError,\n ConnectTimeoutError,\n ResponseStatusCodeError,\n InvalidArgumentError,\n InvalidReturnValueError,\n RequestAbortedError,\n ClientDestroyedError,\n ClientClosedError,\n InformationalError,\n SocketError,\n NotSupportedError,\n ResponseContentLengthMismatchError,\n BalancedPoolMissingUpstreamError,\n ResponseExceededMaxSizeError,\n RequestRetryError,\n ResponseError,\n SecureProxyConnectionError\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
|