@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":"cache.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cache/cache.js"],"sourcesContent":["'use strict'\n\nconst { kConstruct } = require('./symbols')\nconst { urlEquals, getFieldValues } = require('./util')\nconst { kEnumerableProperty, isDisturbed } = require('../../core/util')\nconst { webidl } = require('../fetch/webidl')\nconst { Response, cloneResponse, fromInnerResponse } = require('../fetch/response')\nconst { Request, fromInnerRequest } = require('../fetch/request')\nconst { kState } = require('../fetch/symbols')\nconst { fetching } = require('../fetch/index')\nconst { urlIsHttpHttpsScheme, createDeferredPromise, readAllBytes } = require('../fetch/util')\nconst assert = require('node:assert')\n\n/**\n * @see https://w3c.github.io/ServiceWorker/#dfn-cache-batch-operation\n * @typedef {Object} CacheBatchOperation\n * @property {'delete' | 'put'} type\n * @property {any} request\n * @property {any} response\n * @property {import('../../types/cache').CacheQueryOptions} options\n */\n\n/**\n * @see https://w3c.github.io/ServiceWorker/#dfn-request-response-list\n * @typedef {[any, any][]} requestResponseList\n */\n\nclass Cache {\n /**\n * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list\n * @type {requestResponseList}\n */\n #relevantRequestResponseList\n\n constructor () {\n if (arguments[0] !== kConstruct) {\n webidl.illegalConstructor()\n }\n\n webidl.util.markAsUncloneable(this)\n this.#relevantRequestResponseList = arguments[1]\n }\n\n async match (request, options = {}) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.match'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n request = webidl.converters.RequestInfo(request, prefix, 'request')\n options = webidl.converters.CacheQueryOptions(options, prefix, 'options')\n\n const p = this.#internalMatchAll(request, options, 1)\n\n if (p.length === 0) {\n return\n }\n\n return p[0]\n }\n\n async matchAll (request = undefined, options = {}) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.matchAll'\n if (request !== undefined) request = webidl.converters.RequestInfo(request, prefix, 'request')\n options = webidl.converters.CacheQueryOptions(options, prefix, 'options')\n\n return this.#internalMatchAll(request, options)\n }\n\n async add (request) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.add'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n request = webidl.converters.RequestInfo(request, prefix, 'request')\n\n // 1.\n const requests = [request]\n\n // 2.\n const responseArrayPromise = this.addAll(requests)\n\n // 3.\n return await responseArrayPromise\n }\n\n async addAll (requests) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.addAll'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n // 1.\n const responsePromises = []\n\n // 2.\n const requestList = []\n\n // 3.\n for (let request of requests) {\n if (request === undefined) {\n throw webidl.errors.conversionFailed({\n prefix,\n argument: 'Argument 1',\n types: ['undefined is not allowed']\n })\n }\n\n request = webidl.converters.RequestInfo(request)\n\n if (typeof request === 'string') {\n continue\n }\n\n // 3.1\n const r = request[kState]\n\n // 3.2\n if (!urlIsHttpHttpsScheme(r.url) || r.method !== 'GET') {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Expected http/s scheme when method is not GET.'\n })\n }\n }\n\n // 4.\n /** @type {ReturnType<typeof fetching>[]} */\n const fetchControllers = []\n\n // 5.\n for (const request of requests) {\n // 5.1\n const r = new Request(request)[kState]\n\n // 5.2\n if (!urlIsHttpHttpsScheme(r.url)) {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Expected http/s scheme.'\n })\n }\n\n // 5.4\n r.initiator = 'fetch'\n r.destination = 'subresource'\n\n // 5.5\n requestList.push(r)\n\n // 5.6\n const responsePromise = createDeferredPromise()\n\n // 5.7\n fetchControllers.push(fetching({\n request: r,\n processResponse (response) {\n // 1.\n if (response.type === 'error' || response.status === 206 || response.status < 200 || response.status > 299) {\n responsePromise.reject(webidl.errors.exception({\n header: 'Cache.addAll',\n message: 'Received an invalid status code or the request failed.'\n }))\n } else if (response.headersList.contains('vary')) { // 2.\n // 2.1\n const fieldValues = getFieldValues(response.headersList.get('vary'))\n\n // 2.2\n for (const fieldValue of fieldValues) {\n // 2.2.1\n if (fieldValue === '*') {\n responsePromise.reject(webidl.errors.exception({\n header: 'Cache.addAll',\n message: 'invalid vary field value'\n }))\n\n for (const controller of fetchControllers) {\n controller.abort()\n }\n\n return\n }\n }\n }\n },\n processResponseEndOfBody (response) {\n // 1.\n if (response.aborted) {\n responsePromise.reject(new DOMException('aborted', 'AbortError'))\n return\n }\n\n // 2.\n responsePromise.resolve(response)\n }\n }))\n\n // 5.8\n responsePromises.push(responsePromise.promise)\n }\n\n // 6.\n const p = Promise.all(responsePromises)\n\n // 7.\n const responses = await p\n\n // 7.1\n const operations = []\n\n // 7.2\n let index = 0\n\n // 7.3\n for (const response of responses) {\n // 7.3.1\n /** @type {CacheBatchOperation} */\n const operation = {\n type: 'put', // 7.3.2\n request: requestList[index], // 7.3.3\n response // 7.3.4\n }\n\n operations.push(operation) // 7.3.5\n\n index++ // 7.3.6\n }\n\n // 7.5\n const cacheJobPromise = createDeferredPromise()\n\n // 7.6.1\n let errorData = null\n\n // 7.6.2\n try {\n this.#batchCacheOperations(operations)\n } catch (e) {\n errorData = e\n }\n\n // 7.6.3\n queueMicrotask(() => {\n // 7.6.3.1\n if (errorData === null) {\n cacheJobPromise.resolve(undefined)\n } else {\n // 7.6.3.2\n cacheJobPromise.reject(errorData)\n }\n })\n\n // 7.7\n return cacheJobPromise.promise\n }\n\n async put (request, response) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.put'\n webidl.argumentLengthCheck(arguments, 2, prefix)\n\n request = webidl.converters.RequestInfo(request, prefix, 'request')\n response = webidl.converters.Response(response, prefix, 'response')\n\n // 1.\n let innerRequest = null\n\n // 2.\n if (request instanceof Request) {\n innerRequest = request[kState]\n } else { // 3.\n innerRequest = new Request(request)[kState]\n }\n\n // 4.\n if (!urlIsHttpHttpsScheme(innerRequest.url) || innerRequest.method !== 'GET') {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Expected an http/s scheme when method is not GET'\n })\n }\n\n // 5.\n const innerResponse = response[kState]\n\n // 6.\n if (innerResponse.status === 206) {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Got 206 status'\n })\n }\n\n // 7.\n if (innerResponse.headersList.contains('vary')) {\n // 7.1.\n const fieldValues = getFieldValues(innerResponse.headersList.get('vary'))\n\n // 7.2.\n for (const fieldValue of fieldValues) {\n // 7.2.1\n if (fieldValue === '*') {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Got * vary field value'\n })\n }\n }\n }\n\n // 8.\n if (innerResponse.body && (isDisturbed(innerResponse.body.stream) || innerResponse.body.stream.locked)) {\n throw webidl.errors.exception({\n header: prefix,\n message: 'Response body is locked or disturbed'\n })\n }\n\n // 9.\n const clonedResponse = cloneResponse(innerResponse)\n\n // 10.\n const bodyReadPromise = createDeferredPromise()\n\n // 11.\n if (innerResponse.body != null) {\n // 11.1\n const stream = innerResponse.body.stream\n\n // 11.2\n const reader = stream.getReader()\n\n // 11.3\n readAllBytes(reader).then(bodyReadPromise.resolve, bodyReadPromise.reject)\n } else {\n bodyReadPromise.resolve(undefined)\n }\n\n // 12.\n /** @type {CacheBatchOperation[]} */\n const operations = []\n\n // 13.\n /** @type {CacheBatchOperation} */\n const operation = {\n type: 'put', // 14.\n request: innerRequest, // 15.\n response: clonedResponse // 16.\n }\n\n // 17.\n operations.push(operation)\n\n // 19.\n const bytes = await bodyReadPromise.promise\n\n if (clonedResponse.body != null) {\n clonedResponse.body.source = bytes\n }\n\n // 19.1\n const cacheJobPromise = createDeferredPromise()\n\n // 19.2.1\n let errorData = null\n\n // 19.2.2\n try {\n this.#batchCacheOperations(operations)\n } catch (e) {\n errorData = e\n }\n\n // 19.2.3\n queueMicrotask(() => {\n // 19.2.3.1\n if (errorData === null) {\n cacheJobPromise.resolve()\n } else { // 19.2.3.2\n cacheJobPromise.reject(errorData)\n }\n })\n\n return cacheJobPromise.promise\n }\n\n async delete (request, options = {}) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.delete'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n request = webidl.converters.RequestInfo(request, prefix, 'request')\n options = webidl.converters.CacheQueryOptions(options, prefix, 'options')\n\n /**\n * @type {Request}\n */\n let r = null\n\n if (request instanceof Request) {\n r = request[kState]\n\n if (r.method !== 'GET' && !options.ignoreMethod) {\n return false\n }\n } else {\n assert(typeof request === 'string')\n\n r = new Request(request)[kState]\n }\n\n /** @type {CacheBatchOperation[]} */\n const operations = []\n\n /** @type {CacheBatchOperation} */\n const operation = {\n type: 'delete',\n request: r,\n options\n }\n\n operations.push(operation)\n\n const cacheJobPromise = createDeferredPromise()\n\n let errorData = null\n let requestResponses\n\n try {\n requestResponses = this.#batchCacheOperations(operations)\n } catch (e) {\n errorData = e\n }\n\n queueMicrotask(() => {\n if (errorData === null) {\n cacheJobPromise.resolve(!!requestResponses?.length)\n } else {\n cacheJobPromise.reject(errorData)\n }\n })\n\n return cacheJobPromise.promise\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#dom-cache-keys\n * @param {any} request\n * @param {import('../../types/cache').CacheQueryOptions} options\n * @returns {Promise<readonly Request[]>}\n */\n async keys (request = undefined, options = {}) {\n webidl.brandCheck(this, Cache)\n\n const prefix = 'Cache.keys'\n\n if (request !== undefined) request = webidl.converters.RequestInfo(request, prefix, 'request')\n options = webidl.converters.CacheQueryOptions(options, prefix, 'options')\n\n // 1.\n let r = null\n\n // 2.\n if (request !== undefined) {\n // 2.1\n if (request instanceof Request) {\n // 2.1.1\n r = request[kState]\n\n // 2.1.2\n if (r.method !== 'GET' && !options.ignoreMethod) {\n return []\n }\n } else if (typeof request === 'string') { // 2.2\n r = new Request(request)[kState]\n }\n }\n\n // 4.\n const promise = createDeferredPromise()\n\n // 5.\n // 5.1\n const requests = []\n\n // 5.2\n if (request === undefined) {\n // 5.2.1\n for (const requestResponse of this.#relevantRequestResponseList) {\n // 5.2.1.1\n requests.push(requestResponse[0])\n }\n } else { // 5.3\n // 5.3.1\n const requestResponses = this.#queryCache(r, options)\n\n // 5.3.2\n for (const requestResponse of requestResponses) {\n // 5.3.2.1\n requests.push(requestResponse[0])\n }\n }\n\n // 5.4\n queueMicrotask(() => {\n // 5.4.1\n const requestList = []\n\n // 5.4.2\n for (const request of requests) {\n const requestObject = fromInnerRequest(\n request,\n new AbortController().signal,\n 'immutable'\n )\n // 5.4.2.1\n requestList.push(requestObject)\n }\n\n // 5.4.3\n promise.resolve(Object.freeze(requestList))\n })\n\n return promise.promise\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#batch-cache-operations-algorithm\n * @param {CacheBatchOperation[]} operations\n * @returns {requestResponseList}\n */\n #batchCacheOperations (operations) {\n // 1.\n const cache = this.#relevantRequestResponseList\n\n // 2.\n const backupCache = [...cache]\n\n // 3.\n const addedItems = []\n\n // 4.1\n const resultList = []\n\n try {\n // 4.2\n for (const operation of operations) {\n // 4.2.1\n if (operation.type !== 'delete' && operation.type !== 'put') {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'operation type does not match \"delete\" or \"put\"'\n })\n }\n\n // 4.2.2\n if (operation.type === 'delete' && operation.response != null) {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'delete operation should not have an associated response'\n })\n }\n\n // 4.2.3\n if (this.#queryCache(operation.request, operation.options, addedItems).length) {\n throw new DOMException('???', 'InvalidStateError')\n }\n\n // 4.2.4\n let requestResponses\n\n // 4.2.5\n if (operation.type === 'delete') {\n // 4.2.5.1\n requestResponses = this.#queryCache(operation.request, operation.options)\n\n // TODO: the spec is wrong, this is needed to pass WPTs\n if (requestResponses.length === 0) {\n return []\n }\n\n // 4.2.5.2\n for (const requestResponse of requestResponses) {\n const idx = cache.indexOf(requestResponse)\n assert(idx !== -1)\n\n // 4.2.5.2.1\n cache.splice(idx, 1)\n }\n } else if (operation.type === 'put') { // 4.2.6\n // 4.2.6.1\n if (operation.response == null) {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'put operation should have an associated response'\n })\n }\n\n // 4.2.6.2\n const r = operation.request\n\n // 4.2.6.3\n if (!urlIsHttpHttpsScheme(r.url)) {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'expected http or https scheme'\n })\n }\n\n // 4.2.6.4\n if (r.method !== 'GET') {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'not get method'\n })\n }\n\n // 4.2.6.5\n if (operation.options != null) {\n throw webidl.errors.exception({\n header: 'Cache.#batchCacheOperations',\n message: 'options must not be defined'\n })\n }\n\n // 4.2.6.6\n requestResponses = this.#queryCache(operation.request)\n\n // 4.2.6.7\n for (const requestResponse of requestResponses) {\n const idx = cache.indexOf(requestResponse)\n assert(idx !== -1)\n\n // 4.2.6.7.1\n cache.splice(idx, 1)\n }\n\n // 4.2.6.8\n cache.push([operation.request, operation.response])\n\n // 4.2.6.10\n addedItems.push([operation.request, operation.response])\n }\n\n // 4.2.7\n resultList.push([operation.request, operation.response])\n }\n\n // 4.3\n return resultList\n } catch (e) { // 5.\n // 5.1\n this.#relevantRequestResponseList.length = 0\n\n // 5.2\n this.#relevantRequestResponseList = backupCache\n\n // 5.3\n throw e\n }\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#query-cache\n * @param {any} requestQuery\n * @param {import('../../types/cache').CacheQueryOptions} options\n * @param {requestResponseList} targetStorage\n * @returns {requestResponseList}\n */\n #queryCache (requestQuery, options, targetStorage) {\n /** @type {requestResponseList} */\n const resultList = []\n\n const storage = targetStorage ?? this.#relevantRequestResponseList\n\n for (const requestResponse of storage) {\n const [cachedRequest, cachedResponse] = requestResponse\n if (this.#requestMatchesCachedItem(requestQuery, cachedRequest, cachedResponse, options)) {\n resultList.push(requestResponse)\n }\n }\n\n return resultList\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#request-matches-cached-item-algorithm\n * @param {any} requestQuery\n * @param {any} request\n * @param {any | null} response\n * @param {import('../../types/cache').CacheQueryOptions | undefined} options\n * @returns {boolean}\n */\n #requestMatchesCachedItem (requestQuery, request, response = null, options) {\n // if (options?.ignoreMethod === false && request.method === 'GET') {\n // return false\n // }\n\n const queryURL = new URL(requestQuery.url)\n\n const cachedURL = new URL(request.url)\n\n if (options?.ignoreSearch) {\n cachedURL.search = ''\n\n queryURL.search = ''\n }\n\n if (!urlEquals(queryURL, cachedURL, true)) {\n return false\n }\n\n if (\n response == null ||\n options?.ignoreVary ||\n !response.headersList.contains('vary')\n ) {\n return true\n }\n\n const fieldValues = getFieldValues(response.headersList.get('vary'))\n\n for (const fieldValue of fieldValues) {\n if (fieldValue === '*') {\n return false\n }\n\n const requestValue = request.headersList.get(fieldValue)\n const queryValue = requestQuery.headersList.get(fieldValue)\n\n // If one has the header and the other doesn't, or one has\n // a different value than the other, return false\n if (requestValue !== queryValue) {\n return false\n }\n }\n\n return true\n }\n\n #internalMatchAll (request, options, maxResponses = Infinity) {\n // 1.\n let r = null\n\n // 2.\n if (request !== undefined) {\n if (request instanceof Request) {\n // 2.1.1\n r = request[kState]\n\n // 2.1.2\n if (r.method !== 'GET' && !options.ignoreMethod) {\n return []\n }\n } else if (typeof request === 'string') {\n // 2.2.1\n r = new Request(request)[kState]\n }\n }\n\n // 5.\n // 5.1\n const responses = []\n\n // 5.2\n if (request === undefined) {\n // 5.2.1\n for (const requestResponse of this.#relevantRequestResponseList) {\n responses.push(requestResponse[1])\n }\n } else { // 5.3\n // 5.3.1\n const requestResponses = this.#queryCache(r, options)\n\n // 5.3.2\n for (const requestResponse of requestResponses) {\n responses.push(requestResponse[1])\n }\n }\n\n // 5.4\n // We don't implement CORs so we don't need to loop over the responses, yay!\n\n // 5.5.1\n const responseList = []\n\n // 5.5.2\n for (const response of responses) {\n // 5.5.2.1\n const responseObject = fromInnerResponse(response, 'immutable')\n\n responseList.push(responseObject.clone())\n\n if (responseList.length >= maxResponses) {\n break\n }\n }\n\n // 6.\n return Object.freeze(responseList)\n }\n}\n\nObject.defineProperties(Cache.prototype, {\n [Symbol.toStringTag]: {\n value: 'Cache',\n configurable: true\n },\n match: kEnumerableProperty,\n matchAll: kEnumerableProperty,\n add: kEnumerableProperty,\n addAll: kEnumerableProperty,\n put: kEnumerableProperty,\n delete: kEnumerableProperty,\n keys: kEnumerableProperty\n})\n\nconst cacheQueryOptionConverters = [\n {\n key: 'ignoreSearch',\n converter: webidl.converters.boolean,\n defaultValue: () => false\n },\n {\n key: 'ignoreMethod',\n converter: webidl.converters.boolean,\n defaultValue: () => false\n },\n {\n key: 'ignoreVary',\n converter: webidl.converters.boolean,\n defaultValue: () => false\n }\n]\n\nwebidl.converters.CacheQueryOptions = webidl.dictionaryConverter(cacheQueryOptionConverters)\n\nwebidl.converters.MultiCacheQueryOptions = webidl.dictionaryConverter([\n ...cacheQueryOptionConverters,\n {\n key: 'cacheName',\n converter: webidl.converters.DOMString\n }\n])\n\nwebidl.converters.Response = webidl.interfaceConverter(Response)\n\nwebidl.converters['sequence<RequestInfo>'] = webidl.sequenceConverter(\n webidl.converters.RequestInfo\n)\n\nmodule.exports = {\n Cache\n}\n"],"names":["require$$0","require$$1","require$$2","require$$3","require$$4","require$$5","require$$6","require$$7","require$$8","require$$9"],"mappings":"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","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import { __require as requireSymbols } from './symbols.js';
|
|
2
|
+
import { __require as requireCache } from './cache.js';
|
|
3
|
+
import { __require as requireWebidl } from '../fetch/webidl.js';
|
|
4
|
+
import { __require as requireUtil } from '../../core/util.js';
|
|
5
|
+
|
|
6
|
+
var cachestorage;
|
|
7
|
+
var hasRequiredCachestorage;
|
|
8
|
+
|
|
9
|
+
function requireCachestorage () {
|
|
10
|
+
if (hasRequiredCachestorage) return cachestorage;
|
|
11
|
+
hasRequiredCachestorage = 1;
|
|
12
|
+
|
|
13
|
+
const { kConstruct } = requireSymbols();
|
|
14
|
+
const { Cache } = requireCache();
|
|
15
|
+
const { webidl } = requireWebidl();
|
|
16
|
+
const { kEnumerableProperty } = requireUtil();
|
|
17
|
+
|
|
18
|
+
class CacheStorage {
|
|
19
|
+
/**
|
|
20
|
+
* @see https://w3c.github.io/ServiceWorker/#dfn-relevant-name-to-cache-map
|
|
21
|
+
* @type {Map<string, import('./cache').requestResponseList}
|
|
22
|
+
*/
|
|
23
|
+
#caches = new Map()
|
|
24
|
+
|
|
25
|
+
constructor () {
|
|
26
|
+
if (arguments[0] !== kConstruct) {
|
|
27
|
+
webidl.illegalConstructor();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
webidl.util.markAsUncloneable(this);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async match (request, options = {}) {
|
|
34
|
+
webidl.brandCheck(this, CacheStorage);
|
|
35
|
+
webidl.argumentLengthCheck(arguments, 1, 'CacheStorage.match');
|
|
36
|
+
|
|
37
|
+
request = webidl.converters.RequestInfo(request);
|
|
38
|
+
options = webidl.converters.MultiCacheQueryOptions(options);
|
|
39
|
+
|
|
40
|
+
// 1.
|
|
41
|
+
if (options.cacheName != null) {
|
|
42
|
+
// 1.1.1.1
|
|
43
|
+
if (this.#caches.has(options.cacheName)) {
|
|
44
|
+
// 1.1.1.1.1
|
|
45
|
+
const cacheList = this.#caches.get(options.cacheName);
|
|
46
|
+
const cache = new Cache(kConstruct, cacheList);
|
|
47
|
+
|
|
48
|
+
return await cache.match(request, options)
|
|
49
|
+
}
|
|
50
|
+
} else { // 2.
|
|
51
|
+
// 2.2
|
|
52
|
+
for (const cacheList of this.#caches.values()) {
|
|
53
|
+
const cache = new Cache(kConstruct, cacheList);
|
|
54
|
+
|
|
55
|
+
// 2.2.1.2
|
|
56
|
+
const response = await cache.match(request, options);
|
|
57
|
+
|
|
58
|
+
if (response !== undefined) {
|
|
59
|
+
return response
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @see https://w3c.github.io/ServiceWorker/#cache-storage-has
|
|
67
|
+
* @param {string} cacheName
|
|
68
|
+
* @returns {Promise<boolean>}
|
|
69
|
+
*/
|
|
70
|
+
async has (cacheName) {
|
|
71
|
+
webidl.brandCheck(this, CacheStorage);
|
|
72
|
+
|
|
73
|
+
const prefix = 'CacheStorage.has';
|
|
74
|
+
webidl.argumentLengthCheck(arguments, 1, prefix);
|
|
75
|
+
|
|
76
|
+
cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName');
|
|
77
|
+
|
|
78
|
+
// 2.1.1
|
|
79
|
+
// 2.2
|
|
80
|
+
return this.#caches.has(cacheName)
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @see https://w3c.github.io/ServiceWorker/#dom-cachestorage-open
|
|
85
|
+
* @param {string} cacheName
|
|
86
|
+
* @returns {Promise<Cache>}
|
|
87
|
+
*/
|
|
88
|
+
async open (cacheName) {
|
|
89
|
+
webidl.brandCheck(this, CacheStorage);
|
|
90
|
+
|
|
91
|
+
const prefix = 'CacheStorage.open';
|
|
92
|
+
webidl.argumentLengthCheck(arguments, 1, prefix);
|
|
93
|
+
|
|
94
|
+
cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName');
|
|
95
|
+
|
|
96
|
+
// 2.1
|
|
97
|
+
if (this.#caches.has(cacheName)) {
|
|
98
|
+
// await caches.open('v1') !== await caches.open('v1')
|
|
99
|
+
|
|
100
|
+
// 2.1.1
|
|
101
|
+
const cache = this.#caches.get(cacheName);
|
|
102
|
+
|
|
103
|
+
// 2.1.1.1
|
|
104
|
+
return new Cache(kConstruct, cache)
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// 2.2
|
|
108
|
+
const cache = [];
|
|
109
|
+
|
|
110
|
+
// 2.3
|
|
111
|
+
this.#caches.set(cacheName, cache);
|
|
112
|
+
|
|
113
|
+
// 2.4
|
|
114
|
+
return new Cache(kConstruct, cache)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* @see https://w3c.github.io/ServiceWorker/#cache-storage-delete
|
|
119
|
+
* @param {string} cacheName
|
|
120
|
+
* @returns {Promise<boolean>}
|
|
121
|
+
*/
|
|
122
|
+
async delete (cacheName) {
|
|
123
|
+
webidl.brandCheck(this, CacheStorage);
|
|
124
|
+
|
|
125
|
+
const prefix = 'CacheStorage.delete';
|
|
126
|
+
webidl.argumentLengthCheck(arguments, 1, prefix);
|
|
127
|
+
|
|
128
|
+
cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName');
|
|
129
|
+
|
|
130
|
+
return this.#caches.delete(cacheName)
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @see https://w3c.github.io/ServiceWorker/#cache-storage-keys
|
|
135
|
+
* @returns {Promise<string[]>}
|
|
136
|
+
*/
|
|
137
|
+
async keys () {
|
|
138
|
+
webidl.brandCheck(this, CacheStorage);
|
|
139
|
+
|
|
140
|
+
// 2.1
|
|
141
|
+
const keys = this.#caches.keys();
|
|
142
|
+
|
|
143
|
+
// 2.2
|
|
144
|
+
return [...keys]
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
Object.defineProperties(CacheStorage.prototype, {
|
|
149
|
+
[Symbol.toStringTag]: {
|
|
150
|
+
value: 'CacheStorage',
|
|
151
|
+
configurable: true
|
|
152
|
+
},
|
|
153
|
+
match: kEnumerableProperty,
|
|
154
|
+
has: kEnumerableProperty,
|
|
155
|
+
open: kEnumerableProperty,
|
|
156
|
+
delete: kEnumerableProperty,
|
|
157
|
+
keys: kEnumerableProperty
|
|
158
|
+
});
|
|
159
|
+
|
|
160
|
+
cachestorage = {
|
|
161
|
+
CacheStorage
|
|
162
|
+
};
|
|
163
|
+
return cachestorage;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export { requireCachestorage as __require };
|
|
167
|
+
//# sourceMappingURL=cachestorage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cachestorage.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cache/cachestorage.js"],"sourcesContent":["'use strict'\n\nconst { kConstruct } = require('./symbols')\nconst { Cache } = require('./cache')\nconst { webidl } = require('../fetch/webidl')\nconst { kEnumerableProperty } = require('../../core/util')\n\nclass CacheStorage {\n /**\n * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-name-to-cache-map\n * @type {Map<string, import('./cache').requestResponseList}\n */\n #caches = new Map()\n\n constructor () {\n if (arguments[0] !== kConstruct) {\n webidl.illegalConstructor()\n }\n\n webidl.util.markAsUncloneable(this)\n }\n\n async match (request, options = {}) {\n webidl.brandCheck(this, CacheStorage)\n webidl.argumentLengthCheck(arguments, 1, 'CacheStorage.match')\n\n request = webidl.converters.RequestInfo(request)\n options = webidl.converters.MultiCacheQueryOptions(options)\n\n // 1.\n if (options.cacheName != null) {\n // 1.1.1.1\n if (this.#caches.has(options.cacheName)) {\n // 1.1.1.1.1\n const cacheList = this.#caches.get(options.cacheName)\n const cache = new Cache(kConstruct, cacheList)\n\n return await cache.match(request, options)\n }\n } else { // 2.\n // 2.2\n for (const cacheList of this.#caches.values()) {\n const cache = new Cache(kConstruct, cacheList)\n\n // 2.2.1.2\n const response = await cache.match(request, options)\n\n if (response !== undefined) {\n return response\n }\n }\n }\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#cache-storage-has\n * @param {string} cacheName\n * @returns {Promise<boolean>}\n */\n async has (cacheName) {\n webidl.brandCheck(this, CacheStorage)\n\n const prefix = 'CacheStorage.has'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName')\n\n // 2.1.1\n // 2.2\n return this.#caches.has(cacheName)\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#dom-cachestorage-open\n * @param {string} cacheName\n * @returns {Promise<Cache>}\n */\n async open (cacheName) {\n webidl.brandCheck(this, CacheStorage)\n\n const prefix = 'CacheStorage.open'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName')\n\n // 2.1\n if (this.#caches.has(cacheName)) {\n // await caches.open('v1') !== await caches.open('v1')\n\n // 2.1.1\n const cache = this.#caches.get(cacheName)\n\n // 2.1.1.1\n return new Cache(kConstruct, cache)\n }\n\n // 2.2\n const cache = []\n\n // 2.3\n this.#caches.set(cacheName, cache)\n\n // 2.4\n return new Cache(kConstruct, cache)\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#cache-storage-delete\n * @param {string} cacheName\n * @returns {Promise<boolean>}\n */\n async delete (cacheName) {\n webidl.brandCheck(this, CacheStorage)\n\n const prefix = 'CacheStorage.delete'\n webidl.argumentLengthCheck(arguments, 1, prefix)\n\n cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName')\n\n return this.#caches.delete(cacheName)\n }\n\n /**\n * @see https://w3c.github.io/ServiceWorker/#cache-storage-keys\n * @returns {Promise<string[]>}\n */\n async keys () {\n webidl.brandCheck(this, CacheStorage)\n\n // 2.1\n const keys = this.#caches.keys()\n\n // 2.2\n return [...keys]\n }\n}\n\nObject.defineProperties(CacheStorage.prototype, {\n [Symbol.toStringTag]: {\n value: 'CacheStorage',\n configurable: true\n },\n match: kEnumerableProperty,\n has: kEnumerableProperty,\n open: kEnumerableProperty,\n delete: kEnumerableProperty,\n keys: kEnumerableProperty\n})\n\nmodule.exports = {\n CacheStorage\n}\n"],"names":["require$$0","require$$1","require$$2","require$$3"],"mappings":"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","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { __require as requireSymbols$1 } from '../../core/symbols.js';
|
|
2
|
+
|
|
3
|
+
var symbols;
|
|
4
|
+
var hasRequiredSymbols;
|
|
5
|
+
|
|
6
|
+
function requireSymbols () {
|
|
7
|
+
if (hasRequiredSymbols) return symbols;
|
|
8
|
+
hasRequiredSymbols = 1;
|
|
9
|
+
|
|
10
|
+
symbols = {
|
|
11
|
+
kConstruct: requireSymbols$1().kConstruct
|
|
12
|
+
};
|
|
13
|
+
return symbols;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export { requireSymbols as __require };
|
|
17
|
+
//# sourceMappingURL=symbols.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"symbols.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cache/symbols.js"],"sourcesContent":["'use strict'\n\nmodule.exports = {\n kConstruct: require('../../core/symbols').kConstruct\n}\n"],"names":["require$$0"],"mappings":";;;;;;;;;AAEA,CAAA,OAAc,GAAG;GACf,UAAU,EAAEA,gBAAA,EAA6B,CAAC;AAC5C;;;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import require$$0 from 'node:assert';
|
|
2
|
+
import { __require as requireDataUrl } from '../fetch/data-url.js';
|
|
3
|
+
import { __require as requireUtil$1 } from '../fetch/util.js';
|
|
4
|
+
|
|
5
|
+
var util;
|
|
6
|
+
var hasRequiredUtil;
|
|
7
|
+
|
|
8
|
+
function requireUtil () {
|
|
9
|
+
if (hasRequiredUtil) return util;
|
|
10
|
+
hasRequiredUtil = 1;
|
|
11
|
+
|
|
12
|
+
const assert = require$$0;
|
|
13
|
+
const { URLSerializer } = requireDataUrl();
|
|
14
|
+
const { isValidHeaderName } = requireUtil$1();
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @see https://url.spec.whatwg.org/#concept-url-equals
|
|
18
|
+
* @param {URL} A
|
|
19
|
+
* @param {URL} B
|
|
20
|
+
* @param {boolean | undefined} excludeFragment
|
|
21
|
+
* @returns {boolean}
|
|
22
|
+
*/
|
|
23
|
+
function urlEquals (A, B, excludeFragment = false) {
|
|
24
|
+
const serializedA = URLSerializer(A, excludeFragment);
|
|
25
|
+
|
|
26
|
+
const serializedB = URLSerializer(B, excludeFragment);
|
|
27
|
+
|
|
28
|
+
return serializedA === serializedB
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @see https://github.com/chromium/chromium/blob/694d20d134cb553d8d89e5500b9148012b1ba299/content/browser/cache_storage/cache_storage_cache.cc#L260-L262
|
|
33
|
+
* @param {string} header
|
|
34
|
+
*/
|
|
35
|
+
function getFieldValues (header) {
|
|
36
|
+
assert(header !== null);
|
|
37
|
+
|
|
38
|
+
const values = [];
|
|
39
|
+
|
|
40
|
+
for (let value of header.split(',')) {
|
|
41
|
+
value = value.trim();
|
|
42
|
+
|
|
43
|
+
if (isValidHeaderName(value)) {
|
|
44
|
+
values.push(value);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return values
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
util = {
|
|
52
|
+
urlEquals,
|
|
53
|
+
getFieldValues
|
|
54
|
+
};
|
|
55
|
+
return util;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export { requireUtil as __require };
|
|
59
|
+
//# sourceMappingURL=util.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"util.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cache/util.js"],"sourcesContent":["'use strict'\n\nconst assert = require('node:assert')\nconst { URLSerializer } = require('../fetch/data-url')\nconst { isValidHeaderName } = require('../fetch/util')\n\n/**\n * @see https://url.spec.whatwg.org/#concept-url-equals\n * @param {URL} A\n * @param {URL} B\n * @param {boolean | undefined} excludeFragment\n * @returns {boolean}\n */\nfunction urlEquals (A, B, excludeFragment = false) {\n const serializedA = URLSerializer(A, excludeFragment)\n\n const serializedB = URLSerializer(B, excludeFragment)\n\n return serializedA === serializedB\n}\n\n/**\n * @see https://github.com/chromium/chromium/blob/694d20d134cb553d8d89e5500b9148012b1ba299/content/browser/cache_storage/cache_storage_cache.cc#L260-L262\n * @param {string} header\n */\nfunction getFieldValues (header) {\n assert(header !== null)\n\n const values = []\n\n for (let value of header.split(',')) {\n value = value.trim()\n\n if (isValidHeaderName(value)) {\n values.push(value)\n }\n }\n\n return values\n}\n\nmodule.exports = {\n urlEquals,\n getFieldValues\n}\n"],"names":["require$$1","require$$2"],"mappings":";;;;;;;;;;;AAEA,CAAA,MAAM,MAAM,GAAG;CACf,MAAM,EAAE,aAAa,EAAE,GAAGA,cAAA;CAC1B,MAAM,EAAE,iBAAiB,EAAE,GAAGC,aAAA;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;CACA,SAAS,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,eAAe,GAAG,KAAK,EAAE;AACnD,GAAE,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,EAAE,eAAe;;AAEtD,GAAE,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,EAAE,eAAe;;GAEpD,OAAO,WAAW,KAAK;AACzB,CAAA;;AAEA;AACA;AACA;AACA;CACA,SAAS,cAAc,EAAE,MAAM,EAAE;AACjC,GAAE,MAAM,CAAC,MAAM,KAAK,IAAI;;GAEtB,MAAM,MAAM,GAAG;;GAEf,KAAK,IAAI,KAAK,IAAI,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE;AACvC,KAAI,KAAK,GAAG,KAAK,CAAC,IAAI;;AAEtB,KAAI,IAAI,iBAAiB,CAAC,KAAK,CAAC,EAAE;AAClC,OAAM,MAAM,CAAC,IAAI,CAAC,KAAK;AACvB,KAAA;AACA,GAAA;;AAEA,GAAE,OAAO;AACT,CAAA;;AAEA,CAAA,IAAc,GAAG;AACjB,GAAE,SAAS;GACT;AACF;;;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var constants;
|
|
2
|
+
var hasRequiredConstants;
|
|
3
|
+
|
|
4
|
+
function requireConstants () {
|
|
5
|
+
if (hasRequiredConstants) return constants;
|
|
6
|
+
hasRequiredConstants = 1;
|
|
7
|
+
|
|
8
|
+
// https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size
|
|
9
|
+
const maxAttributeValueSize = 1024;
|
|
10
|
+
|
|
11
|
+
// https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size
|
|
12
|
+
const maxNameValuePairSize = 4096;
|
|
13
|
+
|
|
14
|
+
constants = {
|
|
15
|
+
maxAttributeValueSize,
|
|
16
|
+
maxNameValuePairSize
|
|
17
|
+
};
|
|
18
|
+
return constants;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export { requireConstants as __require };
|
|
22
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cookies/constants.js"],"sourcesContent":["'use strict'\n\n// https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size\nconst maxAttributeValueSize = 1024\n\n// https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size\nconst maxNameValuePairSize = 4096\n\nmodule.exports = {\n maxAttributeValueSize,\n maxNameValuePairSize\n}\n"],"names":[],"mappings":";;;;;;;AAEA;AACA,CAAA,MAAM,qBAAqB,GAAG;;AAE9B;AACA,CAAA,MAAM,oBAAoB,GAAG;;AAE7B,CAAA,SAAc,GAAG;AACjB,GAAE,qBAAqB;GACrB;AACF;;;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { __require as requireParse } from './parse.js';
|
|
2
|
+
import { __require as requireUtil } from './util.js';
|
|
3
|
+
import { __require as requireWebidl } from '../fetch/webidl.js';
|
|
4
|
+
import { __require as requireHeaders } from '../fetch/headers.js';
|
|
5
|
+
|
|
6
|
+
var cookies;
|
|
7
|
+
var hasRequiredCookies;
|
|
8
|
+
|
|
9
|
+
function requireCookies () {
|
|
10
|
+
if (hasRequiredCookies) return cookies;
|
|
11
|
+
hasRequiredCookies = 1;
|
|
12
|
+
|
|
13
|
+
const { parseSetCookie } = requireParse();
|
|
14
|
+
const { stringify } = requireUtil();
|
|
15
|
+
const { webidl } = requireWebidl();
|
|
16
|
+
const { Headers } = requireHeaders();
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @typedef {Object} Cookie
|
|
20
|
+
* @property {string} name
|
|
21
|
+
* @property {string} value
|
|
22
|
+
* @property {Date|number|undefined} expires
|
|
23
|
+
* @property {number|undefined} maxAge
|
|
24
|
+
* @property {string|undefined} domain
|
|
25
|
+
* @property {string|undefined} path
|
|
26
|
+
* @property {boolean|undefined} secure
|
|
27
|
+
* @property {boolean|undefined} httpOnly
|
|
28
|
+
* @property {'Strict'|'Lax'|'None'} sameSite
|
|
29
|
+
* @property {string[]} unparsed
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @param {Headers} headers
|
|
34
|
+
* @returns {Record<string, string>}
|
|
35
|
+
*/
|
|
36
|
+
function getCookies (headers) {
|
|
37
|
+
webidl.argumentLengthCheck(arguments, 1, 'getCookies');
|
|
38
|
+
|
|
39
|
+
webidl.brandCheck(headers, Headers, { strict: false });
|
|
40
|
+
|
|
41
|
+
const cookie = headers.get('cookie');
|
|
42
|
+
const out = {};
|
|
43
|
+
|
|
44
|
+
if (!cookie) {
|
|
45
|
+
return out
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
for (const piece of cookie.split(';')) {
|
|
49
|
+
const [name, ...value] = piece.split('=');
|
|
50
|
+
|
|
51
|
+
out[name.trim()] = value.join('=');
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return out
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @param {Headers} headers
|
|
59
|
+
* @param {string} name
|
|
60
|
+
* @param {{ path?: string, domain?: string }|undefined} attributes
|
|
61
|
+
* @returns {void}
|
|
62
|
+
*/
|
|
63
|
+
function deleteCookie (headers, name, attributes) {
|
|
64
|
+
webidl.brandCheck(headers, Headers, { strict: false });
|
|
65
|
+
|
|
66
|
+
const prefix = 'deleteCookie';
|
|
67
|
+
webidl.argumentLengthCheck(arguments, 2, prefix);
|
|
68
|
+
|
|
69
|
+
name = webidl.converters.DOMString(name, prefix, 'name');
|
|
70
|
+
attributes = webidl.converters.DeleteCookieAttributes(attributes);
|
|
71
|
+
|
|
72
|
+
// Matches behavior of
|
|
73
|
+
// https://github.com/denoland/deno_std/blob/63827b16330b82489a04614027c33b7904e08be5/http/cookie.ts#L278
|
|
74
|
+
setCookie(headers, {
|
|
75
|
+
name,
|
|
76
|
+
value: '',
|
|
77
|
+
expires: new Date(0),
|
|
78
|
+
...attributes
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @param {Headers} headers
|
|
84
|
+
* @returns {Cookie[]}
|
|
85
|
+
*/
|
|
86
|
+
function getSetCookies (headers) {
|
|
87
|
+
webidl.argumentLengthCheck(arguments, 1, 'getSetCookies');
|
|
88
|
+
|
|
89
|
+
webidl.brandCheck(headers, Headers, { strict: false });
|
|
90
|
+
|
|
91
|
+
const cookies = headers.getSetCookie();
|
|
92
|
+
|
|
93
|
+
if (!cookies) {
|
|
94
|
+
return []
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
return cookies.map((pair) => parseSetCookie(pair))
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* @param {Headers} headers
|
|
102
|
+
* @param {Cookie} cookie
|
|
103
|
+
* @returns {void}
|
|
104
|
+
*/
|
|
105
|
+
function setCookie (headers, cookie) {
|
|
106
|
+
webidl.argumentLengthCheck(arguments, 2, 'setCookie');
|
|
107
|
+
|
|
108
|
+
webidl.brandCheck(headers, Headers, { strict: false });
|
|
109
|
+
|
|
110
|
+
cookie = webidl.converters.Cookie(cookie);
|
|
111
|
+
|
|
112
|
+
const str = stringify(cookie);
|
|
113
|
+
|
|
114
|
+
if (str) {
|
|
115
|
+
headers.append('Set-Cookie', str);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
webidl.converters.DeleteCookieAttributes = webidl.dictionaryConverter([
|
|
120
|
+
{
|
|
121
|
+
converter: webidl.nullableConverter(webidl.converters.DOMString),
|
|
122
|
+
key: 'path',
|
|
123
|
+
defaultValue: () => null
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
converter: webidl.nullableConverter(webidl.converters.DOMString),
|
|
127
|
+
key: 'domain',
|
|
128
|
+
defaultValue: () => null
|
|
129
|
+
}
|
|
130
|
+
]);
|
|
131
|
+
|
|
132
|
+
webidl.converters.Cookie = webidl.dictionaryConverter([
|
|
133
|
+
{
|
|
134
|
+
converter: webidl.converters.DOMString,
|
|
135
|
+
key: 'name'
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
converter: webidl.converters.DOMString,
|
|
139
|
+
key: 'value'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
converter: webidl.nullableConverter((value) => {
|
|
143
|
+
if (typeof value === 'number') {
|
|
144
|
+
return webidl.converters['unsigned long long'](value)
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
return new Date(value)
|
|
148
|
+
}),
|
|
149
|
+
key: 'expires',
|
|
150
|
+
defaultValue: () => null
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
converter: webidl.nullableConverter(webidl.converters['long long']),
|
|
154
|
+
key: 'maxAge',
|
|
155
|
+
defaultValue: () => null
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
converter: webidl.nullableConverter(webidl.converters.DOMString),
|
|
159
|
+
key: 'domain',
|
|
160
|
+
defaultValue: () => null
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
converter: webidl.nullableConverter(webidl.converters.DOMString),
|
|
164
|
+
key: 'path',
|
|
165
|
+
defaultValue: () => null
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
converter: webidl.nullableConverter(webidl.converters.boolean),
|
|
169
|
+
key: 'secure',
|
|
170
|
+
defaultValue: () => null
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
converter: webidl.nullableConverter(webidl.converters.boolean),
|
|
174
|
+
key: 'httpOnly',
|
|
175
|
+
defaultValue: () => null
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
converter: webidl.converters.USVString,
|
|
179
|
+
key: 'sameSite',
|
|
180
|
+
allowedValues: ['Strict', 'Lax', 'None']
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
converter: webidl.sequenceConverter(webidl.converters.DOMString),
|
|
184
|
+
key: 'unparsed',
|
|
185
|
+
defaultValue: () => new Array(0)
|
|
186
|
+
}
|
|
187
|
+
]);
|
|
188
|
+
|
|
189
|
+
cookies = {
|
|
190
|
+
getCookies,
|
|
191
|
+
deleteCookie,
|
|
192
|
+
getSetCookies,
|
|
193
|
+
setCookie
|
|
194
|
+
};
|
|
195
|
+
return cookies;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export { requireCookies as __require };
|
|
199
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../../../../../../../../node_modules/@actions/http-client/node_modules/undici/lib/web/cookies/index.js"],"sourcesContent":["'use strict'\n\nconst { parseSetCookie } = require('./parse')\nconst { stringify } = require('./util')\nconst { webidl } = require('../fetch/webidl')\nconst { Headers } = require('../fetch/headers')\n\n/**\n * @typedef {Object} Cookie\n * @property {string} name\n * @property {string} value\n * @property {Date|number|undefined} expires\n * @property {number|undefined} maxAge\n * @property {string|undefined} domain\n * @property {string|undefined} path\n * @property {boolean|undefined} secure\n * @property {boolean|undefined} httpOnly\n * @property {'Strict'|'Lax'|'None'} sameSite\n * @property {string[]} unparsed\n */\n\n/**\n * @param {Headers} headers\n * @returns {Record<string, string>}\n */\nfunction getCookies (headers) {\n webidl.argumentLengthCheck(arguments, 1, 'getCookies')\n\n webidl.brandCheck(headers, Headers, { strict: false })\n\n const cookie = headers.get('cookie')\n const out = {}\n\n if (!cookie) {\n return out\n }\n\n for (const piece of cookie.split(';')) {\n const [name, ...value] = piece.split('=')\n\n out[name.trim()] = value.join('=')\n }\n\n return out\n}\n\n/**\n * @param {Headers} headers\n * @param {string} name\n * @param {{ path?: string, domain?: string }|undefined} attributes\n * @returns {void}\n */\nfunction deleteCookie (headers, name, attributes) {\n webidl.brandCheck(headers, Headers, { strict: false })\n\n const prefix = 'deleteCookie'\n webidl.argumentLengthCheck(arguments, 2, prefix)\n\n name = webidl.converters.DOMString(name, prefix, 'name')\n attributes = webidl.converters.DeleteCookieAttributes(attributes)\n\n // Matches behavior of\n // https://github.com/denoland/deno_std/blob/63827b16330b82489a04614027c33b7904e08be5/http/cookie.ts#L278\n setCookie(headers, {\n name,\n value: '',\n expires: new Date(0),\n ...attributes\n })\n}\n\n/**\n * @param {Headers} headers\n * @returns {Cookie[]}\n */\nfunction getSetCookies (headers) {\n webidl.argumentLengthCheck(arguments, 1, 'getSetCookies')\n\n webidl.brandCheck(headers, Headers, { strict: false })\n\n const cookies = headers.getSetCookie()\n\n if (!cookies) {\n return []\n }\n\n return cookies.map((pair) => parseSetCookie(pair))\n}\n\n/**\n * @param {Headers} headers\n * @param {Cookie} cookie\n * @returns {void}\n */\nfunction setCookie (headers, cookie) {\n webidl.argumentLengthCheck(arguments, 2, 'setCookie')\n\n webidl.brandCheck(headers, Headers, { strict: false })\n\n cookie = webidl.converters.Cookie(cookie)\n\n const str = stringify(cookie)\n\n if (str) {\n headers.append('Set-Cookie', str)\n }\n}\n\nwebidl.converters.DeleteCookieAttributes = webidl.dictionaryConverter([\n {\n converter: webidl.nullableConverter(webidl.converters.DOMString),\n key: 'path',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters.DOMString),\n key: 'domain',\n defaultValue: () => null\n }\n])\n\nwebidl.converters.Cookie = webidl.dictionaryConverter([\n {\n converter: webidl.converters.DOMString,\n key: 'name'\n },\n {\n converter: webidl.converters.DOMString,\n key: 'value'\n },\n {\n converter: webidl.nullableConverter((value) => {\n if (typeof value === 'number') {\n return webidl.converters['unsigned long long'](value)\n }\n\n return new Date(value)\n }),\n key: 'expires',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters['long long']),\n key: 'maxAge',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters.DOMString),\n key: 'domain',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters.DOMString),\n key: 'path',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters.boolean),\n key: 'secure',\n defaultValue: () => null\n },\n {\n converter: webidl.nullableConverter(webidl.converters.boolean),\n key: 'httpOnly',\n defaultValue: () => null\n },\n {\n converter: webidl.converters.USVString,\n key: 'sameSite',\n allowedValues: ['Strict', 'Lax', 'None']\n },\n {\n converter: webidl.sequenceConverter(webidl.converters.DOMString),\n key: 'unparsed',\n defaultValue: () => new Array(0)\n }\n])\n\nmodule.exports = {\n getCookies,\n deleteCookie,\n getSetCookies,\n setCookie\n}\n"],"names":["require$$0","require$$1","require$$2","require$$3"],"mappings":"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","x_google_ignoreList":[0]}
|