diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 15ae51217b..b967e62855 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -99,13 +99,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- - name: "Install wasi-sdk-20 (linux)"
+ - name: "Install wasi-sdk-30 (linux)"
run: |
set -x
- curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz
- tar xf wasi-sdk-20.0-linux.tar.gz
+ curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-x86_64-linux.tar.gz
+ tar xf wasi-sdk-30.0-x86_64-linux.tar.gz
sudo mkdir -p /opt/wasi-sdk
- sudo mv wasi-sdk-20.0/* /opt/wasi-sdk/
+ sudo mv wasi-sdk-30.0-x86_64-linux/* /opt/wasi-sdk/
ls /opt/wasi-sdk/
- run: |
/opt/wasi-sdk/bin/clang-format --version
@@ -171,10 +171,10 @@ jobs:
with:
node-version: 'lts/*'
- run: npm ci
- - name: Install Rust 1.81.0
+ - name: Install Rust 1.88.0
run: |
- rustup toolchain install 1.81.0
- rustup target add wasm32-wasip1 --toolchain 1.81.0
+ rustup toolchain install 1.88.0
+ rustup target add wasm32-wasip1 --toolchain 1.88.0
- name: Restore wasm-tools from cache
uses: actions/cache@v3
id: wasm-tools
@@ -207,10 +207,10 @@ jobs:
with:
node-version: 'lts/*'
- run: npm ci
- - name: Install Rust 1.81.0
+ - name: Install Rust 1.88.0
run: |
- rustup toolchain install 1.81.0
- rustup target add wasm32-wasip1 --toolchain 1.81.0
+ rustup toolchain install 1.88.0
+ rustup target add wasm32-wasip1 --toolchain 1.88.0
- name: Restore wasm-tools from cache
uses: actions/cache@v3
id: wasm-tools
diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml
index 088e6c2c3f..7bb364fbad 100644
--- a/.github/workflows/release-please.yml
+++ b/.github/workflows/release-please.yml
@@ -100,10 +100,10 @@ jobs:
with:
node-version: 'lts/*'
- run: npm ci
- - name: Install Rust 1.81.0
+ - name: Install Rust 1.88.0
run: |
- rustup toolchain install 1.81.0
- rustup target add wasm32-wasip1 --toolchain 1.81.0
+ rustup toolchain install 1.88.0
+ rustup target add wasm32-wasip1 --toolchain 1.88.0
- name: Restore wasm-tools from cache
uses: actions/cache@v3
id: wasm-tools
diff --git a/.gitignore b/.gitignore
index 88cbfa3b17..b5b72e78c3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,5 +21,8 @@ wpt-runtime.wasm
docs-app/bin/main.wasm
docs-app/pkg/*.tar.gz
+# Local wasmtime install
+/packages/wasmtime/bin
+
yarn-error.log
-.vscode
\ No newline at end of file
+.vscode
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index cacce522c5..a70eacd9b0 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -41,13 +41,13 @@ To build from source, you need to have the following tools installed to successf
```sh
cargo install cbindgen
```
-- [wasi-sdk, version 20](https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-20),
+- [wasi-sdk, version 30](https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-30),
with alternate [install instructions](https://github.com/WebAssembly/wasi-sdk#install)
```sh
- curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz
- tar xf wasi-sdk-20.0-linux.tar.gz
+ curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-x86_64-linux.tar.gz
+ tar xf wasi-sdk-30.0-x86_64-linux.tar.gz
sudo mkdir -p /opt/wasi-sdk
- sudo mv wasi-sdk-20.0/* /opt/wasi-sdk/
+ sudo mv wasi-sdk-30.0-x86_64-linux/* /opt/wasi-sdk/
```
Build the runtime using npm:
@@ -101,13 +101,13 @@ npm run build
cargo install --locked wasm-tools
```
-- [wasi-sdk, version 20](https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-20),
+- [wasi-sdk, version 30](https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-30),
with alternate [install instructions](https://github.com/WebAssembly/wasi-sdk#install)
```sh
- curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-macos.tar.gz
- tar xf wasi-sdk-20.0-macos.tar.gz
+ curl -sS -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-arm64-macos.tar.gz
+ tar xf wasi-sdk-30.0-arm64-macos.tar.gz
sudo mkdir -p /opt/wasi-sdk
- sudo mv wasi-sdk-20.0/* /opt/wasi-sdk/
+ sudo mv wasi-sdk-30.0-arm64-macos/* /opt/wasi-sdk/
```
Build the runtime using npm:
diff --git a/documentation/app/package-lock.json b/documentation/app/package-lock.json
index e7f4b29ea0..1d00ab4d05 100644
--- a/documentation/app/package-lock.json
+++ b/documentation/app/package-lock.json
@@ -1226,9 +1226,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1246,9 +1243,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1266,9 +1260,6 @@
"ppc64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1286,9 +1277,6 @@
"riscv64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1306,9 +1294,6 @@
"s390x"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1326,9 +1311,6 @@
"x64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1346,9 +1328,6 @@
"x64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1555,9 +1534,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1575,9 +1551,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1595,9 +1568,6 @@
"riscv64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1615,9 +1585,6 @@
"s390x"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1635,9 +1602,6 @@
"x64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -1655,9 +1619,6 @@
"x64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
diff --git a/documentation/docs/backend/Backend/Backend.mdx b/documentation/docs/backend/Backend/Backend.mdx
index 7eb81130a4..d982e98fa3 100644
--- a/documentation/docs/backend/Backend/Backend.mdx
+++ b/documentation/docs/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -110,6 +110,18 @@ This includes all configuration options above except for `name`, `target`, `host
A new `Backend` object.
+### Disable TLS verification
+
+TLS certificate verification for a backend can be disabled by leaving the following fields **unset** in your `backendConfiguration`:
+
+- `sniHostname`
+- `caCertificate`
+- `certificateHostname`
+
+If these fields are not configured, the Compute app does not validate the certificate presented by the backend. As a result, it will accept certificates that are expired, self-signed, issued for a different hostname or otherwise invalid.
+
+However, as a best practice, your origin should serve a valid TLS certificate and your Compute app should verify it to help protect backend connections from man-in-the-middle attacks.
+
## Examples
In this example an explicit Dynamic Backend is created and supplied to the fetch request, the response is then returned to the client.
@@ -163,13 +175,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +190,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/docs/backend/setDefaultDynamicBackendConfig.mdx b/documentation/docs/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/docs/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/docs/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/docs/config-store/ConfigStore/prototype/get.mdx b/documentation/docs/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/docs/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/docs/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/docs/dictionary/Dictionary/prototype/get.mdx b/documentation/docs/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/docs/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/docs/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/docs/globals/FetchEvent/FetchEvent.mdx b/documentation/docs/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/docs/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/docs/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/docs/globals/Request/Request.mdx b/documentation/docs/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/docs/globals/Request/Request.mdx
+++ b/documentation/docs/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/docs/globals/Response/prototype/ip.mdx b/documentation/docs/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/docs/globals/Response/prototype/ip.mdx
+++ b/documentation/docs/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/docs/globals/Response/prototype/port.mdx b/documentation/docs/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/docs/globals/Response/prototype/port.mdx
+++ b/documentation/docs/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/docs/globals/fetch.mdx b/documentation/docs/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/docs/globals/fetch.mdx
+++ b/documentation/docs/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/package-lock.json b/documentation/package-lock.json
index 6b138998f7..ae96d282c2 100644
--- a/documentation/package-lock.json
+++ b/documentation/package-lock.json
@@ -19,25 +19,21 @@
}
},
"node_modules/@algolia/abtesting": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.21.0.tgz",
- "integrity": "sha512-kGvHfBa9oQCvZh0YXeguSToBD9GNJ+gzUZQ9KPTg+KSsM36obYcsKPoX0NnlJtPflHXu7RkMaIi44xs9meR6Zw==",
+ "version": "1.21.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/abtesting/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -45,52 +41,44 @@
}
},
"node_modules/@algolia/abtesting/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/abtesting/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/autocomplete-core": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.8.tgz",
- "integrity": "sha512-3YEorYg44niXcm7gkft3nXYItHd44e8tmh4D33CTszPgP0QWkaLEaFywiNyJBo7UL/mqObA/G9RYuU7R8tN1IA==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-plugin-algolia-insights": "1.19.8",
- "@algolia/autocomplete-shared": "1.19.8"
+ "@algolia/autocomplete-plugin-algolia-insights": "1.19.9",
+ "@algolia/autocomplete-shared": "1.19.9"
}
},
"node_modules/@algolia/autocomplete-js": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-js/-/autocomplete-js-1.19.8.tgz",
- "integrity": "sha512-9Sfr9Un3vObdtnj6IqzxoD9XisjFJxA9WAyVxmOkwTD9aVluyNwDeEWeGLy12xhRyILjA5C7byto159cZcdEEA==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-core": "1.19.8",
- "@algolia/autocomplete-preset-algolia": "1.19.8",
- "@algolia/autocomplete-shared": "1.19.8",
+ "@algolia/autocomplete-core": "1.19.9",
+ "@algolia/autocomplete-preset-algolia": "1.19.9",
+ "@algolia/autocomplete-shared": "1.19.9",
"htm": "^3.1.1",
"preact": "^10.13.2"
},
@@ -100,26 +88,22 @@
}
},
"node_modules/@algolia/autocomplete-plugin-algolia-insights": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.8.tgz",
- "integrity": "sha512-ZvJWO8ZZJDpc1LNM2TTBdmQsZBLMR4rU5iNR2OYvEeFBiaf/0ESnRSSLQbryarJY4SVxtoz6A2ZtDMNM+iQEAA==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-shared": "1.19.8"
+ "@algolia/autocomplete-shared": "1.19.9"
},
"peerDependencies": {
"search-insights": ">= 1 < 3"
}
},
"node_modules/@algolia/autocomplete-preset-algolia": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.19.8.tgz",
- "integrity": "sha512-5XhJe5uXXLrt+C1MjIv1/BfGNHZyD1xkAYMVANTjdY+PXwO4o+3YIK2XGU0MxHTGryy70G6+xVO9TB7xA+3hGQ==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/autocomplete-shared": "1.19.8"
+ "@algolia/autocomplete-shared": "1.19.9"
},
"peerDependencies": {
"@algolia/client-search": ">= 4.9.1 < 6",
@@ -127,9 +111,7 @@
}
},
"node_modules/@algolia/autocomplete-shared": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.8.tgz",
- "integrity": "sha512-h5hf2t8ejF6vlOgvLaZzQbWs5SyH2z4PAWygNAvvD/2RI29hdQ54ldUGwqVuj9Srs+n8XUKTPUqb7fvhBhQrnQ==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -138,16 +120,12 @@
}
},
"node_modules/@algolia/autocomplete-theme-classic": {
- "version": "1.19.8",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.19.8.tgz",
- "integrity": "sha512-FYmpeOyL5Wy444ZGp1IW57fevpMSBMewN37j+0WULMTJZGobnvTgVEKjYIgtv5Ku4/RNNp54rtEx2/OU6l8GYA==",
+ "version": "1.19.9",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/cache-browser-local-storage": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.27.0.tgz",
- "integrity": "sha512-YGog2s57sO20lvpa+hv5XLAAmiTI1kHsCMRtPVfiaOdIQnvRla21lfH08onqEbZihOPVI8GULwt79zQB2ymKzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -156,15 +134,11 @@
},
"node_modules/@algolia/cache-common": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.27.0.tgz",
- "integrity": "sha512-Sr8zjNXj82p6lO4W9CdzfF0m0/9h/H6VAdSHOTtimm/cTzXIYXRI2IZq7+Nt2ljJ7Ukx+7dIFcxQjE57eQSPsw==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/cache-in-memory": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.27.0.tgz",
- "integrity": "sha512-abgMRTcVD0IllNvMM9JFhxtyLn1v6Ey7mQ7+BGS3JCzvkCX7KZqlS0BIuVUDgx9sPIfOeNsG/awGzMmP50TwZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -172,25 +146,21 @@
}
},
"node_modules/@algolia/client-abtesting": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.55.0.tgz",
- "integrity": "sha512-Zt2GjIm7vsaf7K23tk5JmtcVNc38G9p0C2L2Lrm06miyLE/NL2etHtHInvuLc1DjxTp7Y2nId4X/tzwo372K8Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-abtesting/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -198,26 +168,22 @@
}
},
"node_modules/@algolia/client-abtesting/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-abtesting/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -225,8 +191,6 @@
},
"node_modules/@algolia/client-account": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.27.0.tgz",
- "integrity": "sha512-sSHxwrKTKJrwfoR/LcQJZfmiWJcM5d9Rp7afMChxOcdGdkSdIwrNBC8SCcHRenA3GsZ6mg+j6px7KWYxJ34btA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -237,8 +201,6 @@
},
"node_modules/@algolia/client-analytics": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.27.0.tgz",
- "integrity": "sha512-MqIDyxODljn9ZC4oqjQD0kez2a4zjIJ9ywA/b7cIiUiK/tDjZNTVjYd9WXMKQlXnWUwfrfXJZClVVqN1iCXS+Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -250,8 +212,6 @@
},
"node_modules/@algolia/client-common": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.27.0.tgz",
- "integrity": "sha512-ZrT6l/YPQgyIUuBCxcYPeXol2VBLUMuNb1rKXrm6z1f/iTiwqtnEEb16/6CC11+Re0ZGXrdcMVrgDRrzveQ1aQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -260,25 +220,21 @@
}
},
"node_modules/@algolia/client-insights": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.55.0.tgz",
- "integrity": "sha512-RydkKDhx0GWTYuw0ndTXHGM8hD8hgwftKE65FfnJZb5bPc9CevOqv3qNPUQiviAwkqT9hQNH31uDGeV3yZkgfA==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-insights/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -286,26 +242,22 @@
}
},
"node_modules/@algolia/client-insights/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-insights/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -313,8 +265,6 @@
},
"node_modules/@algolia/client-personalization": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.27.0.tgz",
- "integrity": "sha512-OZqaFFVm+10hAlmxpiTWi/o2n+YKBESbSqSy2yXAumPH/kaK4moJHFblbh8IkV3KZR0lLm4hzPtn8Q2nWNiDUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -324,25 +274,21 @@
}
},
"node_modules/@algolia/client-query-suggestions": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.55.0.tgz",
- "integrity": "sha512-LBEJ/q+hn1nJ0aYg5IcWgLNCPjWHTahWmpHNx1qUZMho+9CyWM6LaEnhac45UHjQm/j0m374HP685VrpL133lA==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-query-suggestions/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -350,26 +296,22 @@
}
},
"node_modules/@algolia/client-query-suggestions/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-query-suggestions/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -377,8 +319,6 @@
},
"node_modules/@algolia/client-search": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.27.0.tgz",
- "integrity": "sha512-qmX/f67ay0eZ4V5Io8fWWOcUVo/gqre2yei1PnmEhQU2Gul6ushg25QnNrfu4BODiRrw1rwYveZaLCiHvcUxrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -389,31 +329,25 @@
},
"node_modules/@algolia/events": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz",
- "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/ingestion": {
- "version": "1.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.55.0.tgz",
- "integrity": "sha512-80tKsQgxXWo+jK0v4YGCHqyTEXawhAKYyr3kOdN51ElfRqUFjZNPVhZk6vRiqSqXfvrH85ytacT3cbJR6+qolA==",
+ "version": "1.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/ingestion/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -421,26 +355,22 @@
}
},
"node_modules/@algolia/ingestion/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/ingestion/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -448,15 +378,11 @@
},
"node_modules/@algolia/logger-common": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.27.0.tgz",
- "integrity": "sha512-pIrmQRXtDV+zTMVXKtKCosC2rWhn0F0TdUeb9etA6RiAz6jY6bY6f0+JX7YekDK09SnmZMLIyUa7Jci+Ied9bw==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/logger-console": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.27.0.tgz",
- "integrity": "sha512-UWvta8BxsR/u5z9eI088mOSLQaGtmoCtXeN3DYJurlxAdJwPuKtEb5+433kxA6/E9f2/JgoW89KZ1vNP9pcHBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -464,25 +390,21 @@
}
},
"node_modules/@algolia/monitoring": {
- "version": "1.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.55.0.tgz",
- "integrity": "sha512-4UjmAL8ywGW4rCfK6Qmgw3wIjbrO2wl2s4Eq56JTiN40L2t0XTv0HZkYAmr6nfeiXO0he/2crvZRX6SATSepag==",
+ "version": "1.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/monitoring/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -490,26 +412,22 @@
}
},
"node_modules/@algolia/monitoring/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/monitoring/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -517,8 +435,6 @@
},
"node_modules/@algolia/recommend": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.27.0.tgz",
- "integrity": "sha512-CFy54xDjrsazPi3KN04yPmLRDT72AKokc3RLOdWQvG0/uEUjj7dhWqe9qenxpL4ydsjO7S1eY5YqmX+uMGonlg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -537,8 +453,6 @@
},
"node_modules/@algolia/requester-browser-xhr": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.27.0.tgz",
- "integrity": "sha512-dTenMBIIpyp5o3C2ZnfbsuSlD/lL9jPkk6T+2+qm38fyw2nf49ANbcHFE79NgiGrnmw7QrYveCs9NIP3Wk4v6g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -547,28 +461,22 @@
},
"node_modules/@algolia/requester-common": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.27.0.tgz",
- "integrity": "sha512-VC3prAQVgWTubMStb3mJz6i61Hqbtagi2LeIbgNtoFJFff3XZDcAaO1D5r0GYl2+DrB2VzUHnQXbkiuI+HHYyg==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/requester-fetch": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.55.0.tgz",
- "integrity": "sha512-6IDSB5o5dkDPQ4LdOW0Yuw/qy5MdWlO2xDHgPVZgW4YDjbxvnX5PAiV7/WWZdWyVObScZZnnHpPbiqfYs/zBLg==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-fetch/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -577,8 +485,6 @@
},
"node_modules/@algolia/requester-node-http": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.27.0.tgz",
- "integrity": "sha512-y8nUqaUQeSOQ5oaNo0b2QPznyBFW9LoIwljyUphJ+gUZpU6O/j2/C8ovoqDpIe6J0etqHg5RCcBizrCFZuLpyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -587,8 +493,6 @@
},
"node_modules/@algolia/transporter": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.27.0.tgz",
- "integrity": "sha512-PvSbELU4VjN3xSX79ki+zIdOGhTxyJXWvRDzkUjfTx2iNfPWDdTjzKbP1o+268coJztxrkuBwJz90Urek7o1Kw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -599,8 +503,6 @@
},
"node_modules/@babel/code-frame": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
- "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -614,8 +516,6 @@
},
"node_modules/@babel/compat-data": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
- "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -624,8 +524,6 @@
},
"node_modules/@babel/core": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
- "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -655,8 +553,6 @@
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -665,8 +561,6 @@
},
"node_modules/@babel/generator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
- "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -682,8 +576,6 @@
},
"node_modules/@babel/helper-annotate-as-pure": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz",
- "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -695,8 +587,6 @@
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
- "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -712,8 +602,6 @@
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -722,8 +610,6 @@
},
"node_modules/@babel/helper-create-class-features-plugin": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz",
- "integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -744,8 +630,6 @@
},
"node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -754,8 +638,6 @@
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.29.7.tgz",
- "integrity": "sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -772,8 +654,6 @@
},
"node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -782,8 +662,6 @@
},
"node_modules/@babel/helper-define-polyfill-provider": {
"version": "0.6.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz",
- "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -799,8 +677,6 @@
},
"node_modules/@babel/helper-globals": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
- "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -809,8 +685,6 @@
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz",
- "integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -823,8 +697,6 @@
},
"node_modules/@babel/helper-module-imports": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
- "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -837,8 +709,6 @@
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
- "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -855,8 +725,6 @@
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz",
- "integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -868,8 +736,6 @@
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
- "integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -878,8 +744,6 @@
},
"node_modules/@babel/helper-remap-async-to-generator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.29.7.tgz",
- "integrity": "sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -896,8 +760,6 @@
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz",
- "integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -914,8 +776,6 @@
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz",
- "integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -928,8 +788,6 @@
},
"node_modules/@babel/helper-string-parser": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
- "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -938,8 +796,6 @@
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
- "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -948,8 +804,6 @@
},
"node_modules/@babel/helper-validator-option": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
- "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -958,8 +812,6 @@
},
"node_modules/@babel/helper-wrap-function": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.29.7.tgz",
- "integrity": "sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -973,8 +825,6 @@
},
"node_modules/@babel/helpers": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
- "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -987,8 +837,6 @@
},
"node_modules/@babel/parser": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
- "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1003,8 +851,6 @@
},
"node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.29.7.tgz",
- "integrity": "sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1020,8 +866,6 @@
},
"node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.29.7.tgz",
- "integrity": "sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1036,8 +880,6 @@
},
"node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.29.7.tgz",
- "integrity": "sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1052,8 +894,6 @@
},
"node_modules/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array/-/plugin-bugfix-safari-rest-destructuring-rhs-array-7.29.7.tgz",
- "integrity": "sha512-oBNVCvnO5tND+xSopWvV8WNGfpTfgP4Zr/YXXSj8zfmcPktp5Ku/aZlsIowgSD4fjmgHn6sGmB9APVsU5zOdhA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1069,8 +909,6 @@
},
"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.29.7.tgz",
- "integrity": "sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1087,8 +925,6 @@
},
"node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.29.7.tgz",
- "integrity": "sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1104,8 +940,6 @@
},
"node_modules/@babel/plugin-proposal-private-property-in-object": {
"version": "7.21.0-placeholder-for-preset-env.2",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
- "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1117,8 +951,6 @@
},
"node_modules/@babel/plugin-syntax-dynamic-import": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1130,8 +962,6 @@
},
"node_modules/@babel/plugin-syntax-import-assertions": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.29.7.tgz",
- "integrity": "sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1146,8 +976,6 @@
},
"node_modules/@babel/plugin-syntax-import-attributes": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz",
- "integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1162,8 +990,6 @@
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.29.7.tgz",
- "integrity": "sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1178,8 +1004,6 @@
},
"node_modules/@babel/plugin-syntax-typescript": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.29.7.tgz",
- "integrity": "sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1194,8 +1018,6 @@
},
"node_modules/@babel/plugin-syntax-unicode-sets-regex": {
"version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
- "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1211,8 +1033,6 @@
},
"node_modules/@babel/plugin-transform-arrow-functions": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.29.7.tgz",
- "integrity": "sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1227,8 +1047,6 @@
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.7.tgz",
- "integrity": "sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1245,8 +1063,6 @@
},
"node_modules/@babel/plugin-transform-async-to-generator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.29.7.tgz",
- "integrity": "sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1263,8 +1079,6 @@
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.29.7.tgz",
- "integrity": "sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1279,8 +1093,6 @@
},
"node_modules/@babel/plugin-transform-block-scoping": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.29.7.tgz",
- "integrity": "sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1295,8 +1107,6 @@
},
"node_modules/@babel/plugin-transform-class-properties": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.29.7.tgz",
- "integrity": "sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1312,8 +1122,6 @@
},
"node_modules/@babel/plugin-transform-class-static-block": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.29.7.tgz",
- "integrity": "sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1329,8 +1137,6 @@
},
"node_modules/@babel/plugin-transform-classes": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.29.7.tgz",
- "integrity": "sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1350,8 +1156,6 @@
},
"node_modules/@babel/plugin-transform-computed-properties": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.29.7.tgz",
- "integrity": "sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1367,8 +1171,6 @@
},
"node_modules/@babel/plugin-transform-destructuring": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.29.7.tgz",
- "integrity": "sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1384,8 +1186,6 @@
},
"node_modules/@babel/plugin-transform-dotall-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.29.7.tgz",
- "integrity": "sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1401,8 +1201,6 @@
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.29.7.tgz",
- "integrity": "sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1417,8 +1215,6 @@
},
"node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.7.tgz",
- "integrity": "sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1434,8 +1230,6 @@
},
"node_modules/@babel/plugin-transform-dynamic-import": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.29.7.tgz",
- "integrity": "sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1450,8 +1244,6 @@
},
"node_modules/@babel/plugin-transform-explicit-resource-management": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.29.7.tgz",
- "integrity": "sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1467,8 +1259,6 @@
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.29.7.tgz",
- "integrity": "sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1483,8 +1273,6 @@
},
"node_modules/@babel/plugin-transform-export-namespace-from": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.29.7.tgz",
- "integrity": "sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1499,8 +1287,6 @@
},
"node_modules/@babel/plugin-transform-for-of": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.29.7.tgz",
- "integrity": "sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1516,8 +1302,6 @@
},
"node_modules/@babel/plugin-transform-function-name": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.29.7.tgz",
- "integrity": "sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1534,8 +1318,6 @@
},
"node_modules/@babel/plugin-transform-json-strings": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.29.7.tgz",
- "integrity": "sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1550,8 +1332,6 @@
},
"node_modules/@babel/plugin-transform-literals": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.29.7.tgz",
- "integrity": "sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1566,8 +1346,6 @@
},
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.29.7.tgz",
- "integrity": "sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1582,8 +1360,6 @@
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.29.7.tgz",
- "integrity": "sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1598,8 +1374,6 @@
},
"node_modules/@babel/plugin-transform-modules-amd": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.29.7.tgz",
- "integrity": "sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1615,8 +1389,6 @@
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.29.7.tgz",
- "integrity": "sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1632,8 +1404,6 @@
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.7.tgz",
- "integrity": "sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1651,8 +1421,6 @@
},
"node_modules/@babel/plugin-transform-modules-umd": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.29.7.tgz",
- "integrity": "sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1668,8 +1436,6 @@
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.7.tgz",
- "integrity": "sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1685,8 +1451,6 @@
},
"node_modules/@babel/plugin-transform-new-target": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.29.7.tgz",
- "integrity": "sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1701,8 +1465,6 @@
},
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.29.7.tgz",
- "integrity": "sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1717,8 +1479,6 @@
},
"node_modules/@babel/plugin-transform-numeric-separator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.29.7.tgz",
- "integrity": "sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1733,8 +1493,6 @@
},
"node_modules/@babel/plugin-transform-object-rest-spread": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.29.7.tgz",
- "integrity": "sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1753,8 +1511,6 @@
},
"node_modules/@babel/plugin-transform-object-super": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.29.7.tgz",
- "integrity": "sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1770,8 +1526,6 @@
},
"node_modules/@babel/plugin-transform-optional-catch-binding": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.29.7.tgz",
- "integrity": "sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1786,8 +1540,6 @@
},
"node_modules/@babel/plugin-transform-optional-chaining": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.29.7.tgz",
- "integrity": "sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1803,8 +1555,6 @@
},
"node_modules/@babel/plugin-transform-parameters": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.29.7.tgz",
- "integrity": "sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1819,8 +1569,6 @@
},
"node_modules/@babel/plugin-transform-private-methods": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.29.7.tgz",
- "integrity": "sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1836,8 +1584,6 @@
},
"node_modules/@babel/plugin-transform-private-property-in-object": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.29.7.tgz",
- "integrity": "sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1854,8 +1600,6 @@
},
"node_modules/@babel/plugin-transform-property-literals": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.29.7.tgz",
- "integrity": "sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1870,8 +1614,6 @@
},
"node_modules/@babel/plugin-transform-react-constant-elements": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.29.7.tgz",
- "integrity": "sha512-J0wGhKan+rIiE2OhfhRptySLrJ6SjQYM6b6N1FMlhyhCcw1Mig8vQjWchyB+bgHGDvaWo6Diu6CLRMra2uMtmg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1886,8 +1628,6 @@
},
"node_modules/@babel/plugin-transform-react-display-name": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.29.7.tgz",
- "integrity": "sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1902,8 +1642,6 @@
},
"node_modules/@babel/plugin-transform-react-jsx": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.29.7.tgz",
- "integrity": "sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1922,8 +1660,6 @@
},
"node_modules/@babel/plugin-transform-react-jsx-development": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.29.7.tgz",
- "integrity": "sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1938,8 +1674,6 @@
},
"node_modules/@babel/plugin-transform-react-pure-annotations": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.29.7.tgz",
- "integrity": "sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1955,8 +1689,6 @@
},
"node_modules/@babel/plugin-transform-regenerator": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.7.tgz",
- "integrity": "sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1971,8 +1703,6 @@
},
"node_modules/@babel/plugin-transform-regexp-modifiers": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.29.7.tgz",
- "integrity": "sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1988,8 +1718,6 @@
},
"node_modules/@babel/plugin-transform-reserved-words": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.29.7.tgz",
- "integrity": "sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2004,8 +1732,6 @@
},
"node_modules/@babel/plugin-transform-runtime": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.29.7.tgz",
- "integrity": "sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2025,8 +1751,6 @@
},
"node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -2035,8 +1759,6 @@
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.29.7.tgz",
- "integrity": "sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2051,8 +1773,6 @@
},
"node_modules/@babel/plugin-transform-spread": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.29.7.tgz",
- "integrity": "sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2068,8 +1788,6 @@
},
"node_modules/@babel/plugin-transform-sticky-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.29.7.tgz",
- "integrity": "sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2084,8 +1802,6 @@
},
"node_modules/@babel/plugin-transform-template-literals": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.29.7.tgz",
- "integrity": "sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2100,8 +1816,6 @@
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.29.7.tgz",
- "integrity": "sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2116,8 +1830,6 @@
},
"node_modules/@babel/plugin-transform-typescript": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.29.7.tgz",
- "integrity": "sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2136,8 +1848,6 @@
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.29.7.tgz",
- "integrity": "sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2152,8 +1862,6 @@
},
"node_modules/@babel/plugin-transform-unicode-property-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.29.7.tgz",
- "integrity": "sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2169,8 +1877,6 @@
},
"node_modules/@babel/plugin-transform-unicode-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.29.7.tgz",
- "integrity": "sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2186,8 +1892,6 @@
},
"node_modules/@babel/plugin-transform-unicode-sets-regex": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.29.7.tgz",
- "integrity": "sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2203,8 +1907,6 @@
},
"node_modules/@babel/preset-env": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.29.7.tgz",
- "integrity": "sha512-GYzX36n1nsciIb0uyH0GHwxwtNwPQIcpxSeiVLDtG/B7jB5xXgchnmL1f/jCX5o+pwnaDBtO60ONSJhEBJfxYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2289,8 +1991,6 @@
},
"node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.14.2",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz",
- "integrity": "sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2303,8 +2003,6 @@
},
"node_modules/@babel/preset-env/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -2313,8 +2011,6 @@
},
"node_modules/@babel/preset-modules": {
"version": "0.1.6-no-external-plugins",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
- "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2328,8 +2024,6 @@
},
"node_modules/@babel/preset-react": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.29.7.tgz",
- "integrity": "sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2349,8 +2043,6 @@
},
"node_modules/@babel/preset-typescript": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.29.7.tgz",
- "integrity": "sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2369,8 +2061,6 @@
},
"node_modules/@babel/runtime": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
- "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2379,8 +2069,6 @@
},
"node_modules/@babel/template": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
- "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2394,8 +2082,6 @@
},
"node_modules/@babel/traverse": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
- "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2413,8 +2099,6 @@
},
"node_modules/@babel/types": {
"version": "7.29.7",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
- "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2427,8 +2111,6 @@
},
"node_modules/@cmfcmf/docusaurus-search-local": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@cmfcmf/docusaurus-search-local/-/docusaurus-search-local-2.0.1.tgz",
- "integrity": "sha512-4Gk313a+9HGetIFB9f087Qrmba5svx0zY9xZ10QKd79Nic0IsY0/JktDqFMZ51IDuL+9yIMOsdeKb313ce2mnw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2456,8 +2138,6 @@
},
"node_modules/@colors/colors": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
- "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -2467,8 +2147,6 @@
},
"node_modules/@csstools/cascade-layer-name-parser": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz",
- "integrity": "sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A==",
"dev": true,
"funding": [
{
@@ -2491,8 +2169,6 @@
},
"node_modules/@csstools/color-helpers": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
- "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
"dev": true,
"funding": [
{
@@ -2511,8 +2187,6 @@
},
"node_modules/@csstools/css-calc": {
"version": "2.1.4",
- "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
- "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
"dev": true,
"funding": [
{
@@ -2535,8 +2209,6 @@
},
"node_modules/@csstools/css-color-parser": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
- "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
"dev": true,
"funding": [
{
@@ -2563,8 +2235,6 @@
},
"node_modules/@csstools/css-parser-algorithms": {
"version": "3.0.5",
- "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
- "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
"dev": true,
"funding": [
{
@@ -2586,8 +2256,6 @@
},
"node_modules/@csstools/css-tokenizer": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
- "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
"dev": true,
"funding": [
{
@@ -2606,8 +2274,6 @@
},
"node_modules/@csstools/media-query-list-parser": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz",
- "integrity": "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==",
"dev": true,
"funding": [
{
@@ -2630,8 +2296,6 @@
},
"node_modules/@csstools/postcss-alpha-function": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz",
- "integrity": "sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==",
"dev": true,
"funding": [
{
@@ -2660,8 +2324,6 @@
},
"node_modules/@csstools/postcss-cascade-layers": {
"version": "5.0.2",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz",
- "integrity": "sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==",
"dev": true,
"funding": [
{
@@ -2687,8 +2349,6 @@
},
"node_modules/@csstools/postcss-cascade-layers/node_modules/@csstools/selector-specificity": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz",
- "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==",
"dev": true,
"funding": [
{
@@ -2710,8 +2370,6 @@
},
"node_modules/@csstools/postcss-cascade-layers/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2724,8 +2382,6 @@
},
"node_modules/@csstools/postcss-color-function": {
"version": "4.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz",
- "integrity": "sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==",
"dev": true,
"funding": [
{
@@ -2754,8 +2410,6 @@
},
"node_modules/@csstools/postcss-color-function-display-p3-linear": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz",
- "integrity": "sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==",
"dev": true,
"funding": [
{
@@ -2784,8 +2438,6 @@
},
"node_modules/@csstools/postcss-color-mix-function": {
"version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz",
- "integrity": "sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==",
"dev": true,
"funding": [
{
@@ -2814,8 +2466,6 @@
},
"node_modules/@csstools/postcss-color-mix-variadic-function-arguments": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz",
- "integrity": "sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==",
"dev": true,
"funding": [
{
@@ -2844,8 +2494,6 @@
},
"node_modules/@csstools/postcss-content-alt-text": {
"version": "2.0.8",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz",
- "integrity": "sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==",
"dev": true,
"funding": [
{
@@ -2873,8 +2521,6 @@
},
"node_modules/@csstools/postcss-contrast-color-function": {
"version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz",
- "integrity": "sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==",
"dev": true,
"funding": [
{
@@ -2903,8 +2549,6 @@
},
"node_modules/@csstools/postcss-exponential-functions": {
"version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz",
- "integrity": "sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==",
"dev": true,
"funding": [
{
@@ -2931,8 +2575,6 @@
},
"node_modules/@csstools/postcss-font-format-keywords": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz",
- "integrity": "sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==",
"dev": true,
"funding": [
{
@@ -2958,8 +2600,6 @@
},
"node_modules/@csstools/postcss-gamut-mapping": {
"version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz",
- "integrity": "sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==",
"dev": true,
"funding": [
{
@@ -2986,8 +2626,6 @@
},
"node_modules/@csstools/postcss-gradients-interpolation-method": {
"version": "5.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz",
- "integrity": "sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==",
"dev": true,
"funding": [
{
@@ -3016,8 +2654,6 @@
},
"node_modules/@csstools/postcss-hwb-function": {
"version": "4.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz",
- "integrity": "sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==",
"dev": true,
"funding": [
{
@@ -3046,8 +2682,6 @@
},
"node_modules/@csstools/postcss-ic-unit": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz",
- "integrity": "sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==",
"dev": true,
"funding": [
{
@@ -3074,8 +2708,6 @@
},
"node_modules/@csstools/postcss-initial": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.1.tgz",
- "integrity": "sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==",
"dev": true,
"funding": [
{
@@ -3097,8 +2729,6 @@
},
"node_modules/@csstools/postcss-is-pseudo-class": {
"version": "5.0.3",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz",
- "integrity": "sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==",
"dev": true,
"funding": [
{
@@ -3124,8 +2754,6 @@
},
"node_modules/@csstools/postcss-is-pseudo-class/node_modules/@csstools/selector-specificity": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz",
- "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==",
"dev": true,
"funding": [
{
@@ -3147,8 +2775,6 @@
},
"node_modules/@csstools/postcss-is-pseudo-class/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3161,8 +2787,6 @@
},
"node_modules/@csstools/postcss-light-dark-function": {
"version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz",
- "integrity": "sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==",
"dev": true,
"funding": [
{
@@ -3190,8 +2814,6 @@
},
"node_modules/@csstools/postcss-logical-float-and-clear": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz",
- "integrity": "sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==",
"dev": true,
"funding": [
{
@@ -3213,8 +2835,6 @@
},
"node_modules/@csstools/postcss-logical-overflow": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz",
- "integrity": "sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==",
"dev": true,
"funding": [
{
@@ -3236,8 +2856,6 @@
},
"node_modules/@csstools/postcss-logical-overscroll-behavior": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz",
- "integrity": "sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==",
"dev": true,
"funding": [
{
@@ -3259,8 +2877,6 @@
},
"node_modules/@csstools/postcss-logical-resize": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz",
- "integrity": "sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==",
"dev": true,
"funding": [
{
@@ -3285,8 +2901,6 @@
},
"node_modules/@csstools/postcss-logical-viewport-units": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz",
- "integrity": "sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==",
"dev": true,
"funding": [
{
@@ -3312,8 +2926,6 @@
},
"node_modules/@csstools/postcss-media-minmax": {
"version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz",
- "integrity": "sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==",
"dev": true,
"funding": [
{
@@ -3341,8 +2953,6 @@
},
"node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": {
"version": "3.0.5",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz",
- "integrity": "sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==",
"dev": true,
"funding": [
{
@@ -3369,8 +2979,6 @@
},
"node_modules/@csstools/postcss-nested-calc": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz",
- "integrity": "sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==",
"dev": true,
"funding": [
{
@@ -3396,8 +3004,6 @@
},
"node_modules/@csstools/postcss-normalize-display-values": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz",
- "integrity": "sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==",
"dev": true,
"funding": [
{
@@ -3422,8 +3028,6 @@
},
"node_modules/@csstools/postcss-oklab-function": {
"version": "4.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz",
- "integrity": "sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==",
"dev": true,
"funding": [
{
@@ -3452,8 +3056,6 @@
},
"node_modules/@csstools/postcss-position-area-property": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-1.0.0.tgz",
- "integrity": "sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==",
"dev": true,
"funding": [
{
@@ -3475,8 +3077,6 @@
},
"node_modules/@csstools/postcss-progressive-custom-properties": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz",
- "integrity": "sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==",
"dev": true,
"funding": [
{
@@ -3501,8 +3101,6 @@
},
"node_modules/@csstools/postcss-property-rule-prelude-list": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-1.0.0.tgz",
- "integrity": "sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==",
"dev": true,
"funding": [
{
@@ -3528,8 +3126,6 @@
},
"node_modules/@csstools/postcss-random-function": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz",
- "integrity": "sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==",
"dev": true,
"funding": [
{
@@ -3556,8 +3152,6 @@
},
"node_modules/@csstools/postcss-relative-color-syntax": {
"version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz",
- "integrity": "sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==",
"dev": true,
"funding": [
{
@@ -3586,8 +3180,6 @@
},
"node_modules/@csstools/postcss-scope-pseudo-class": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.1.tgz",
- "integrity": "sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==",
"dev": true,
"funding": [
{
@@ -3612,8 +3204,6 @@
},
"node_modules/@csstools/postcss-scope-pseudo-class/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3626,8 +3216,6 @@
},
"node_modules/@csstools/postcss-sign-functions": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz",
- "integrity": "sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==",
"dev": true,
"funding": [
{
@@ -3654,8 +3242,6 @@
},
"node_modules/@csstools/postcss-stepped-value-functions": {
"version": "4.0.9",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz",
- "integrity": "sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==",
"dev": true,
"funding": [
{
@@ -3682,8 +3268,6 @@
},
"node_modules/@csstools/postcss-syntax-descriptor-syntax-production": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-1.0.1.tgz",
- "integrity": "sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==",
"dev": true,
"funding": [
{
@@ -3708,8 +3292,6 @@
},
"node_modules/@csstools/postcss-system-ui-font-family": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-1.0.0.tgz",
- "integrity": "sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==",
"dev": true,
"funding": [
{
@@ -3735,8 +3317,6 @@
},
"node_modules/@csstools/postcss-text-decoration-shorthand": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz",
- "integrity": "sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==",
"dev": true,
"funding": [
{
@@ -3762,8 +3342,6 @@
},
"node_modules/@csstools/postcss-trigonometric-functions": {
"version": "4.0.9",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz",
- "integrity": "sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==",
"dev": true,
"funding": [
{
@@ -3790,8 +3368,6 @@
},
"node_modules/@csstools/postcss-unset-value": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz",
- "integrity": "sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==",
"dev": true,
"funding": [
{
@@ -3813,8 +3389,6 @@
},
"node_modules/@csstools/utilities": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-2.0.0.tgz",
- "integrity": "sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==",
"dev": true,
"funding": [
{
@@ -3836,8 +3410,6 @@
},
"node_modules/@discoveryjs/json-ext": {
"version": "0.5.7",
- "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
- "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3846,8 +3418,6 @@
},
"node_modules/@docsearch/core": {
"version": "4.6.3",
- "resolved": "https://registry.npmjs.org/@docsearch/core/-/core-4.6.3.tgz",
- "integrity": "sha512-rUOujwIpxJRgD7+kicVsI3D5sqBvdiRTquzWBpTEXZs8ZXfGbfzpus5HqumaNYTppN2HvH8E2yNuRwYdHJeOlA==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -3869,15 +3439,11 @@
},
"node_modules/@docsearch/css": {
"version": "4.6.3",
- "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-4.6.3.tgz",
- "integrity": "sha512-nlOwcXcsNAptQl4vlL4MA78qNJKO0Qlds5GuBjCoePgkebTXLSf8Qt1oyZ3YBshYupKXG9VRGEsk1zr23d+bzQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@docsearch/react": {
"version": "4.6.3",
- "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-4.6.3.tgz",
- "integrity": "sha512-Bg2wdDsoQVlNCcEKuEJAU04tvHCqgx8rIu+uIoM4pRtcx3TBKJuXutJik3LTA8LRc9YEyHkrYUrmcC0D7BYf+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3908,8 +3474,6 @@
},
"node_modules/@docsearch/react/node_modules/@algolia/autocomplete-core": {
"version": "1.19.2",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz",
- "integrity": "sha512-mKv7RyuAzXvwmq+0XRK8HqZXt9iZ5Kkm2huLjgn5JoCPtDy+oh9yxUMfDDaVCw0oyzZ1isdJBc7l9nuCyyR7Nw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3919,8 +3483,6 @@
},
"node_modules/@docsearch/react/node_modules/@algolia/autocomplete-plugin-algolia-insights": {
"version": "1.19.2",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz",
- "integrity": "sha512-TjxbcC/r4vwmnZaPwrHtkXNeqvlpdyR+oR9Wi2XyfORkiGkLTVhX2j+O9SaCCINbKoDfc+c2PB8NjfOnz7+oKg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3932,8 +3494,6 @@
},
"node_modules/@docsearch/react/node_modules/@algolia/autocomplete-shared": {
"version": "1.19.2",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz",
- "integrity": "sha512-jEazxZTVD2nLrC+wYlVHQgpBoBB5KPStrJxLzsIFl6Kqd1AlG9sIAGl39V5tECLpIQzB3Qa2T6ZPJ1ChkwMK/w==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -3943,8 +3503,6 @@
},
"node_modules/@docusaurus/babel": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.10.1.tgz",
- "integrity": "sha512-DZzFO1K3v/GoEt1fx1DiYHF4en+PuhtQf1AkQJa5zu3CoeKSpr5cpQRUlz3jr0m44wyzmSXu9bVpfir+N4+8bg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3969,8 +3527,6 @@
},
"node_modules/@docusaurus/bundler": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.10.1.tgz",
- "integrity": "sha512-HIqQPvbqnnQRe4NsBd1774KRarjXqS6wHsWELtyuSs1gCfvixJO2jUGH/OEBtr1Gvzpw+ze5CjGMvSJ8UE1KUw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4013,8 +3569,6 @@
},
"node_modules/@docusaurus/core": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.10.1.tgz",
- "integrity": "sha512-3pf2fXXw0eVk8WnC3T4LIigRDupcpvngpKo9Vy7mYyBhuddc0klDUuZAIfzMoK6z05pdlk6EFC/vBSX43+1O5w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4081,8 +3635,6 @@
},
"node_modules/@docusaurus/cssnano-preset": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.10.1.tgz",
- "integrity": "sha512-eNfHGcTKCSq6xmcavAkX3RRclHaE2xRCMParlDXLdXVP01/a2e/jKXMj/0ULnLFQSNwwuI62L0Ge8J+nZsR7UQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4097,8 +3649,6 @@
},
"node_modules/@docusaurus/logger": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.10.1.tgz",
- "integrity": "sha512-oPjNFnfJsRCkePVjkGrxWGq4MvJKRQT0r9jOP0eRBTZ7Wr9FAbzdP/Gjs0I2Ss6YRkPoEgygKG112OkE6skvJw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4111,8 +3661,6 @@
},
"node_modules/@docusaurus/mdx-loader": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.10.1.tgz",
- "integrity": "sha512-GRmeb/wQ+iXRrFwcHBfgQhrJxGElgCsoTWZYDhccjsZVne1p8MK/EpQVIloXttz76TCe78kKD5AEG9n1xc1oxQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4151,8 +3699,6 @@
},
"node_modules/@docusaurus/module-type-aliases": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.10.1.tgz",
- "integrity": "sha512-YoOZKUdGlp8xSYhuAkGdSo5Ydkbq4V4eK3sD8v0a2hloxCWdQbNBhkc+Ko9QyjpESc0BYcIGM5iHVAy5hdFV6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4171,8 +3717,6 @@
},
"node_modules/@docusaurus/plugin-content-blog": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.10.1.tgz",
- "integrity": "sha512-mmkgE6Q2+K74tnkou7tXlpDLvoCU/qkSa2GSQ3XUiHWvcebCoDQzS670RR3tO8PmaWlIyWWISYWzZLuMfxunRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4207,8 +3751,6 @@
},
"node_modules/@docusaurus/plugin-content-docs": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.10.1.tgz",
- "integrity": "sha512-2jRVrtzjf8LClGTHQlwlwuD3wQXRx3WEoF7XUarJ8Ou+0onV+SLtejsyfY9JLpfUh9hPhXM4pbBGkyAY4Bi3HQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4241,8 +3783,6 @@
},
"node_modules/@docusaurus/plugin-content-pages": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.10.1.tgz",
- "integrity": "sha512-huJpaRPMl42nsFwuCXvV8bVDj2MazuwRJIUylI/RSlmZeJssVoZXeCjVf1y+1Drtpa9SKcdGn8yoJ76IRJijtw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4265,8 +3805,6 @@
},
"node_modules/@docusaurus/plugin-css-cascade-layers": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.10.1.tgz",
- "integrity": "sha512-r//fn+MNHkE1wCof8T29VAQezt1enGCpsFxoziBbvLgBM4JfXN2P3rxrBaavHmvLvm7lYkpJeitcDthwnmWCTw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4282,8 +3820,6 @@
},
"node_modules/@docusaurus/plugin-debug": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.10.1.tgz",
- "integrity": "sha512-9KqOpKNfAyqGZykRb9LhIT/vyRF6sm/ykhjj/39JvaJahDS+jZJE0Z1Wfz9q3DUNDTMNN0Q7u/kk4rKKU+IJuA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4304,8 +3840,6 @@
},
"node_modules/@docusaurus/plugin-google-analytics": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.10.1.tgz",
- "integrity": "sha512-8o0P1KtmgdYQHH+oInitPpRWI0Of5XednAX4+DMhQNSmGSRNrsEEHg1ebv35m9AgRClfAytCJ5jA9KvcASTyuA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4324,8 +3858,6 @@
},
"node_modules/@docusaurus/plugin-google-gtag": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.10.1.tgz",
- "integrity": "sha512-pu3xIUo5o/zCMLfUY9BO5KOwSH0zIsAGyFRPvXHayFSA5XIhCU/SFuB0g0ZNjFn9niZLCaNvoeAuOGFJZq0fdw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4345,8 +3877,6 @@
},
"node_modules/@docusaurus/plugin-google-tag-manager": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.10.1.tgz",
- "integrity": "sha512-f6fyGHiCm7kJHBtAisGQS5oNBnpnMTYQZxDXeVrnw/3zWU+LMA22pr6UHGYkBKDbN+qPC5QHG3NuOfzQLq3+Lw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4365,8 +3895,6 @@
},
"node_modules/@docusaurus/plugin-sitemap": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.10.1.tgz",
- "integrity": "sha512-C26MbmmqgdjkDq1htaZ3aD7LzEDKFWXfpyQpt0EOUThuq5nV77zDaedV20yHcVo9p+3ey9aZ4pbHA0D3QcZTzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4390,8 +3918,6 @@
},
"node_modules/@docusaurus/plugin-svgr": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.10.1.tgz",
- "integrity": "sha512-6SFxsmjWFkVLDmBUvFK6i72QjUwqyQFe4Ovz+SUJophJjOyVG3ZZG5IQpBC/kX/Gfv1yWeU9nWauH6F6Q7QX/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4414,8 +3940,6 @@
},
"node_modules/@docusaurus/preset-classic": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.10.1.tgz",
- "integrity": "sha512-YO/FL8v1zmbxoTso6mjMz/RDjhaTJxb1UpFFTDdY5847LLDCeyYiYlrhyTbgN1RIN3xnkLKZ9Lj1x8hUzI4JOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4445,8 +3969,6 @@
},
"node_modules/@docusaurus/theme-classic": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.10.1.tgz",
- "integrity": "sha512-VU1RK0qb2pab0si4r7HFK37cYco8VzqLj3u1PspVipSr/z/GPVKHO4/HXbnePqHoWDk8urjyGSeatH0NIMBM1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4487,8 +4009,6 @@
},
"node_modules/@docusaurus/theme-common": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.10.1.tgz",
- "integrity": "sha512-0YtmIeoNo1fIw65LO8+/1dPgmDV86UmhMkow37gzjytuiCSQm9xob6PJy0L4kuQEMTLfUOGvkXvZr7GPrHquMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4516,8 +4036,6 @@
},
"node_modules/@docusaurus/theme-search-algolia": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.10.1.tgz",
- "integrity": "sha512-OTaARARVZj2GvkJQjB+1jOIxntRaXea+G+fMsNqrZBAU1O1vJKDW22R7kECOHW27oJCLFN9HKaZeRrfAUyviug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4548,25 +4066,21 @@
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-analytics": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.55.0.tgz",
- "integrity": "sha512-7BueMuWYg/KBA2EX9zsQ+3OAleEyrJcB+SV5Al/9pLjMQq5mXB/8M5HaUPqZwN812g5kLzj9j43VThlZgWq0hg==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-common": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.55.0.tgz",
- "integrity": "sha512-pJZIyhvUrs+B7c5Lw0iP5yP/NsqJMda7pKRYbfG4KtfGIVSMcAalZhdqL5UX8Z9DOC4KxO9tKV5RDeVjZU0VfQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"engines": {
@@ -4574,100 +4088,88 @@
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-personalization": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.55.0.tgz",
- "integrity": "sha512-XiS7gdFq/COWiwdWXZ8+RHuewfEo03TkGESk44zU8zTc/Z6R8fm4DNmV52swJKkeB2N9iC7NKpgpM22OOkcgTw==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-search": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.55.0.tgz",
- "integrity": "sha512-2/9jUXKH4IcdU5qxH6cbDH46ZBe46G7xr+MrcHwgEXZcUfdAvUgLSH53MAWuMgxvw0G5yoqiWMifHc62Os0fiQ==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/recommend": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.55.0.tgz",
- "integrity": "sha512-LMpJPtIkfDsHIx5Ga+baNr22ntYbY+e2wT7MSIc/FjAnu9wnBFhx1H/GfhmP/c5/IvbThDX+3ilxPRjSfCI8aA==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/client-common": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/requester-browser-xhr": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.55.0.tgz",
- "integrity": "sha512-tDymJ7nFOAoUuecma3usK6o94dp8m4HYFDGh4ByYQXWkv14cpmDn+nWdylmcZO0Qvco107vqDo4+Anksnl8w1Q==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/requester-node-http": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.55.0.tgz",
- "integrity": "sha512-Yyyne4l//vDSdg4MhYJkaVne+KEPi833eCj3/T/87ernTwrvP6j9biXXZELsN8sLI/f2ndV/vugDIy2jdJQB6g==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.55.0"
+ "@algolia/client-common": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@docusaurus/theme-search-algolia/node_modules/algoliasearch": {
- "version": "5.55.0",
- "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.55.0.tgz",
- "integrity": "sha512-af+rI+tUVeS9KWHPAZQHIHPOIC3StPRR6IwQu2nz1aQoTL6Gs5Ty3KsHCgbXMHOpoh9QqSjq8F3KJ8xmaCZSBA==",
+ "version": "5.55.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/abtesting": "1.21.0",
- "@algolia/client-abtesting": "5.55.0",
- "@algolia/client-analytics": "5.55.0",
- "@algolia/client-common": "5.55.0",
- "@algolia/client-insights": "5.55.0",
- "@algolia/client-personalization": "5.55.0",
- "@algolia/client-query-suggestions": "5.55.0",
- "@algolia/client-search": "5.55.0",
- "@algolia/ingestion": "1.55.0",
- "@algolia/monitoring": "1.55.0",
- "@algolia/recommend": "5.55.0",
- "@algolia/requester-browser-xhr": "5.55.0",
- "@algolia/requester-fetch": "5.55.0",
- "@algolia/requester-node-http": "5.55.0"
+ "@algolia/abtesting": "1.21.1",
+ "@algolia/client-abtesting": "5.55.1",
+ "@algolia/client-analytics": "5.55.1",
+ "@algolia/client-common": "5.55.1",
+ "@algolia/client-insights": "5.55.1",
+ "@algolia/client-personalization": "5.55.1",
+ "@algolia/client-query-suggestions": "5.55.1",
+ "@algolia/client-search": "5.55.1",
+ "@algolia/ingestion": "1.55.1",
+ "@algolia/monitoring": "1.55.1",
+ "@algolia/recommend": "5.55.1",
+ "@algolia/requester-browser-xhr": "5.55.1",
+ "@algolia/requester-fetch": "5.55.1",
+ "@algolia/requester-node-http": "5.55.1"
},
"engines": {
"node": ">= 14.0.0"
@@ -4675,8 +4177,6 @@
},
"node_modules/@docusaurus/theme-translations": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.10.1.tgz",
- "integrity": "sha512-cLMyaKivjBVWKMJuWqyFVVgtqe8DPJNPkog0bn8W1MDVAKcPdxRFycBfC1We1RaNp7Rdk513bmtW78RR6OBxBw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4689,8 +4189,6 @@
},
"node_modules/@docusaurus/types": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.10.1.tgz",
- "integrity": "sha512-XYMK8k1szDCFMw2V+Xyen0g7Kee1sP3dtFnl7vkGkZOkeAJ/oPDQPL8iz4HBKOo/cwU8QeV6onVjMqtP+tFzsw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4712,8 +4210,6 @@
},
"node_modules/@docusaurus/types/node_modules/webpack-merge": {
"version": "5.10.0",
- "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz",
- "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4727,8 +4223,6 @@
},
"node_modules/@docusaurus/utils": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.10.1.tgz",
- "integrity": "sha512-3ojeJry9xBYdJO6qoyyzqeJFSJBVx2mXhyDzSdjwL2+URFQMf+h25gG38iswGImicK0ELjTd1EL2xzk8hf3QPw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4760,8 +4254,6 @@
},
"node_modules/@docusaurus/utils-common": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.10.1.tgz",
- "integrity": "sha512-5mFSgEADtnFxFH7RLw02QA5MpU5JVUCj0MPeIvi/aF4Fi45tQRIuTwXoXDqJ+1VfQJuYJGz3SI63wmGz4HvXzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4774,8 +4266,6 @@
},
"node_modules/@docusaurus/utils-validation": {
"version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.10.1.tgz",
- "integrity": "sha512-cRv1X69jwaWv47waglllgZVWzeBFLhl53XT/XED/83BerVBTC5FTP8WTcVl8Z6sZOegDSwitu/wpCSPCDOT6lg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4794,15 +4284,11 @@
},
"node_modules/@hapi/hoek": {
"version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
- "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@hapi/topo": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz",
- "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -4811,8 +4297,6 @@
},
"node_modules/@jest/schemas": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
- "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4824,8 +4308,6 @@
},
"node_modules/@jest/types": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
- "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4842,8 +4324,6 @@
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.13",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4853,8 +4333,6 @@
},
"node_modules/@jridgewell/remapping": {
"version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4864,8 +4342,6 @@
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4874,8 +4350,6 @@
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.11",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz",
- "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4885,15 +4359,11 @@
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
"dev": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.31",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4903,8 +4373,6 @@
},
"node_modules/@jsonjoy.com/base64": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz",
- "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4920,8 +4388,6 @@
},
"node_modules/@jsonjoy.com/buffers": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz",
- "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4937,8 +4403,6 @@
},
"node_modules/@jsonjoy.com/codegen": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz",
- "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4953,14 +4417,12 @@
}
},
"node_modules/@jsonjoy.com/fs-core": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.7.tgz",
- "integrity": "sha512-GDKuYHjP7vAI1kjBo73V+STKr9XIMZknW/xirpRW/EcShX0IKSev/ALafeRfC8Q331nodrXUFu04PugPB0MAhw==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-builtins": "4.57.7",
- "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-node-builtins": "4.57.8",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
"thingies": "^2.5.0"
},
"engines": {
@@ -4975,15 +4437,13 @@
}
},
"node_modules/@jsonjoy.com/fs-fsa": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.7.tgz",
- "integrity": "sha512-1rWsah2nZtRbNeP+c61QcfGfVrJXBmBD0Hm7Akvv4C9MKEasXnbiOS//iH3T3HwUSSBATGrfSp0Xi8nlNhATeQ==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.7",
- "@jsonjoy.com/fs-node-builtins": "4.57.7",
- "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-core": "4.57.8",
+ "@jsonjoy.com/fs-node-builtins": "4.57.8",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
"thingies": "^2.5.0"
},
"engines": {
@@ -4998,17 +4458,15 @@
}
},
"node_modules/@jsonjoy.com/fs-node": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.7.tgz",
- "integrity": "sha512-xhnyeyEVTiIOibFvda/5n89nChMLCPKHHM2WQ+GGDf6+U/IrQBW3Qx6x+Uq1bkDbxBkybLOdIGoBtVBrE8Nngg==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.7",
- "@jsonjoy.com/fs-node-builtins": "4.57.7",
- "@jsonjoy.com/fs-node-utils": "4.57.7",
- "@jsonjoy.com/fs-print": "4.57.7",
- "@jsonjoy.com/fs-snapshot": "4.57.7",
+ "@jsonjoy.com/fs-core": "4.57.8",
+ "@jsonjoy.com/fs-node-builtins": "4.57.8",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
+ "@jsonjoy.com/fs-print": "4.57.8",
+ "@jsonjoy.com/fs-snapshot": "4.57.8",
"glob-to-regex.js": "^1.0.0",
"thingies": "^2.5.0"
},
@@ -5024,9 +4482,7 @@
}
},
"node_modules/@jsonjoy.com/fs-node-builtins": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.7.tgz",
- "integrity": "sha512-LWqfY1m+uAosjwM1RrKhMkUnP9jcq1RUczHsNO779ovm1E9v8I/pmj04eBAcoBjhC7ltcPbNFGyRJ5JqSJ7Jdg==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -5041,15 +4497,13 @@
}
},
"node_modules/@jsonjoy.com/fs-node-to-fsa": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.7.tgz",
- "integrity": "sha512-9T0zC9LKcAWXDoTLRdLMoJ0seOvJ5bgDKq1tSBoQAFQpPDstQUeV1Oe7PLypdu7F2D3ddRstmwgeNUEN/VaZ4Q==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-fsa": "4.57.7",
- "@jsonjoy.com/fs-node-builtins": "4.57.7",
- "@jsonjoy.com/fs-node-utils": "4.57.7"
+ "@jsonjoy.com/fs-fsa": "4.57.8",
+ "@jsonjoy.com/fs-node-builtins": "4.57.8",
+ "@jsonjoy.com/fs-node-utils": "4.57.8"
},
"engines": {
"node": ">=10.0"
@@ -5063,13 +4517,11 @@
}
},
"node_modules/@jsonjoy.com/fs-node-utils": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.7.tgz",
- "integrity": "sha512-jjWSDOsfcog2cZnUCwX5AHmlIq6b6wx5Pz/2LAcNjJ62Rajwg89Fy7ubN+lDHew0/1reLDa9Z5urybYadhh37g==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-builtins": "4.57.7"
+ "@jsonjoy.com/fs-node-builtins": "4.57.8"
},
"engines": {
"node": ">=10.0"
@@ -5083,13 +4535,11 @@
}
},
"node_modules/@jsonjoy.com/fs-print": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.7.tgz",
- "integrity": "sha512-mFM4P4Gjq0QQHkLnXzPYPEMFrAoe6a5Myedgb6+CmL+nGd3MKvTxYPuD7N1dLIH9RBy1fLdzxd80qvuK8xrx3Q==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
"tree-dump": "^1.1.0"
},
"engines": {
@@ -5104,14 +4554,12 @@
}
},
"node_modules/@jsonjoy.com/fs-snapshot": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.7.tgz",
- "integrity": "sha512-1GS3+plfm2giB3PqokiqyydyqYTPLcCQIKSkp0TdMNRh3KVk7rqRM6U785FLlVRG7XLmkc0KWr215OY+22K3QA==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@jsonjoy.com/buffers": "^17.65.0",
- "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
"@jsonjoy.com/json-pack": "^17.65.0",
"@jsonjoy.com/util": "^17.65.0"
},
@@ -5128,8 +4576,6 @@
},
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz",
- "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -5145,8 +4591,6 @@
},
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz",
- "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -5162,8 +4606,6 @@
},
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz",
- "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5189,8 +4631,6 @@
},
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz",
- "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5209,8 +4649,6 @@
},
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": {
"version": "17.67.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz",
- "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5230,8 +4668,6 @@
},
"node_modules/@jsonjoy.com/json-pack": {
"version": "1.21.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz",
- "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5257,8 +4693,6 @@
},
"node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz",
- "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -5274,8 +4708,6 @@
},
"node_modules/@jsonjoy.com/json-pointer": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz",
- "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5295,8 +4727,6 @@
},
"node_modules/@jsonjoy.com/util": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz",
- "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5316,8 +4746,6 @@
},
"node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz",
- "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -5333,15 +4761,11 @@
},
"node_modules/@leichtgewicht/ip-codec": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
- "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==",
"dev": true,
"license": "MIT"
},
"node_modules/@mdx-js/mdx": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz",
- "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5378,8 +4802,6 @@
},
"node_modules/@mdx-js/react": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz",
- "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5396,8 +4818,6 @@
},
"node_modules/@noble/hashes": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
- "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5409,8 +4829,6 @@
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5423,8 +4841,6 @@
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5433,8 +4849,6 @@
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5447,8 +4861,6 @@
},
"node_modules/@peculiar/asn1-cms": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz",
- "integrity": "sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5461,8 +4873,6 @@
},
"node_modules/@peculiar/asn1-csr": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz",
- "integrity": "sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5474,8 +4884,6 @@
},
"node_modules/@peculiar/asn1-ecc": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz",
- "integrity": "sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5487,8 +4895,6 @@
},
"node_modules/@peculiar/asn1-pfx": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz",
- "integrity": "sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5502,8 +4908,6 @@
},
"node_modules/@peculiar/asn1-pkcs8": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz",
- "integrity": "sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5515,8 +4919,6 @@
},
"node_modules/@peculiar/asn1-pkcs9": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz",
- "integrity": "sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5532,8 +4934,6 @@
},
"node_modules/@peculiar/asn1-rsa": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz",
- "integrity": "sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5545,8 +4945,6 @@
},
"node_modules/@peculiar/asn1-schema": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz",
- "integrity": "sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5557,8 +4955,6 @@
},
"node_modules/@peculiar/asn1-x509": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz",
- "integrity": "sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5570,8 +4966,6 @@
},
"node_modules/@peculiar/asn1-x509-attr": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz",
- "integrity": "sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5583,8 +4977,6 @@
},
"node_modules/@peculiar/utils": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz",
- "integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5593,8 +4985,6 @@
},
"node_modules/@peculiar/x509": {
"version": "1.14.3",
- "resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz",
- "integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5616,8 +5006,6 @@
},
"node_modules/@pnpm/config.env-replace": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz",
- "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5626,8 +5014,6 @@
},
"node_modules/@pnpm/network.ca-file": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz",
- "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5639,15 +5025,11 @@
},
"node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": {
"version": "4.2.10",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
- "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
"dev": true,
"license": "ISC"
},
"node_modules/@pnpm/npm-conf": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-3.0.3.tgz",
- "integrity": "sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5661,15 +5043,11 @@
},
"node_modules/@polka/url": {
"version": "1.0.0-next.29",
- "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
- "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
"dev": true,
"license": "MIT"
},
"node_modules/@sideway/address": {
"version": "4.1.5",
- "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz",
- "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -5678,29 +5056,21 @@
},
"node_modules/@sideway/formula": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz",
- "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@sideway/pinpoint": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz",
- "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@sinclair/typebox": {
"version": "0.27.10",
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.10.tgz",
- "integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==",
"dev": true,
"license": "MIT"
},
"node_modules/@sindresorhus/is": {
"version": "4.6.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
- "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5712,8 +5082,6 @@
},
"node_modules/@slorber/remark-comment": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz",
- "integrity": "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5724,8 +5092,6 @@
},
"node_modules/@svgr/babel-plugin-add-jsx-attribute": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz",
- "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5741,8 +5107,6 @@
},
"node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz",
- "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5758,8 +5122,6 @@
},
"node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz",
- "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5775,8 +5137,6 @@
},
"node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz",
- "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5792,8 +5152,6 @@
},
"node_modules/@svgr/babel-plugin-svg-dynamic-title": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz",
- "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5809,8 +5167,6 @@
},
"node_modules/@svgr/babel-plugin-svg-em-dimensions": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz",
- "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5826,8 +5182,6 @@
},
"node_modules/@svgr/babel-plugin-transform-react-native-svg": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz",
- "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5843,8 +5197,6 @@
},
"node_modules/@svgr/babel-plugin-transform-svg-component": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz",
- "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5860,8 +5212,6 @@
},
"node_modules/@svgr/babel-preset": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz",
- "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5887,8 +5237,6 @@
},
"node_modules/@svgr/core": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz",
- "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5908,8 +5256,6 @@
},
"node_modules/@svgr/hast-util-to-babel-ast": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz",
- "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5926,8 +5272,6 @@
},
"node_modules/@svgr/plugin-jsx": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz",
- "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5949,8 +5293,6 @@
},
"node_modules/@svgr/plugin-svgo": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz",
- "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5971,8 +5313,6 @@
},
"node_modules/@svgr/webpack": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz",
- "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5994,15 +5334,13 @@
}
},
"node_modules/@swc/core": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.41.tgz",
- "integrity": "sha512-03nQq/082QRJJiOvp3FGbgxTGyyxMxohPTjhk/W9bD2J0tk4ukITI7goOhOO2WbaHn/lsPmo/zf8+DIXhwpgYQ==",
+ "version": "1.15.43",
"dev": true,
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@swc/counter": "^0.1.3",
- "@swc/types": "^0.1.26"
+ "@swc/types": "^0.1.27"
},
"engines": {
"node": ">=10"
@@ -6012,18 +5350,18 @@
"url": "https://opencollective.com/swc"
},
"optionalDependencies": {
- "@swc/core-darwin-arm64": "1.15.41",
- "@swc/core-darwin-x64": "1.15.41",
- "@swc/core-linux-arm-gnueabihf": "1.15.41",
- "@swc/core-linux-arm64-gnu": "1.15.41",
- "@swc/core-linux-arm64-musl": "1.15.41",
- "@swc/core-linux-ppc64-gnu": "1.15.41",
- "@swc/core-linux-s390x-gnu": "1.15.41",
- "@swc/core-linux-x64-gnu": "1.15.41",
- "@swc/core-linux-x64-musl": "1.15.41",
- "@swc/core-win32-arm64-msvc": "1.15.41",
- "@swc/core-win32-ia32-msvc": "1.15.41",
- "@swc/core-win32-x64-msvc": "1.15.41"
+ "@swc/core-darwin-arm64": "1.15.43",
+ "@swc/core-darwin-x64": "1.15.43",
+ "@swc/core-linux-arm-gnueabihf": "1.15.43",
+ "@swc/core-linux-arm64-gnu": "1.15.43",
+ "@swc/core-linux-arm64-musl": "1.15.43",
+ "@swc/core-linux-ppc64-gnu": "1.15.43",
+ "@swc/core-linux-s390x-gnu": "1.15.43",
+ "@swc/core-linux-x64-gnu": "1.15.43",
+ "@swc/core-linux-x64-musl": "1.15.43",
+ "@swc/core-win32-arm64-msvc": "1.15.43",
+ "@swc/core-win32-ia32-msvc": "1.15.43",
+ "@swc/core-win32-x64-msvc": "1.15.43"
},
"peerDependencies": {
"@swc/helpers": ">=0.5.17"
@@ -6035,9 +5373,7 @@
}
},
"node_modules/@swc/core-darwin-arm64": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.41.tgz",
- "integrity": "sha512-kREh6J5paQFvP3i7f/4FbqRNOJREutVFVOkder4GVyCBQ39YmER55cW/y1NNjwrchzFqgYswFn0mMDCqbqKzrw==",
+ "version": "1.15.43",
"cpu": [
"arm64"
],
@@ -6052,9 +5388,9 @@
}
},
"node_modules/@swc/core-darwin-x64": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.41.tgz",
- "integrity": "sha512-N8B56ESFazZAWZyIkecADSPCwlLEinW7QLMEeotCpv4J7VXwfH+OLkmRL8o96UZ+1355fwHxDTS6/wK7yucvkA==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.43.tgz",
+ "integrity": "sha512-lp3d4Lamc8dt5huYdGLSR+9hLxmfr1jb0l+4XXG2zPqZwYWRN9R0U2qYoTrggiU2RWW0oV9VbWM3kBnqIc2kdQ==",
"cpu": [
"x64"
],
@@ -6069,9 +5405,9 @@
}
},
"node_modules/@swc/core-linux-arm-gnueabihf": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.41.tgz",
- "integrity": "sha512-6XrId2fyle0mS5xxON8rU84mPd2Cq1kDJRj+4BnQKTd7u+2kSA6Ww+JkOP0iTNqOqt9OXhPOEAjBHAuonWcdCg==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.43.tgz",
+ "integrity": "sha512-JWTQQELtsG5GgphDrr/XqqmM2pDN3cZqbMS0Mrg+iTiXL3F74sn/S2IyYE/5u4h2KLkTf9qQ7dXyxsbx7YzkeA==",
"cpu": [
"arm"
],
@@ -6086,9 +5422,9 @@
}
},
"node_modules/@swc/core-linux-arm64-gnu": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.41.tgz",
- "integrity": "sha512-ynLIarxlkVnqHn1D0fKOVht6mNU5ks6lrH+MY3kkS+XFaGGgDxFZVjWKJlkYTKm3RCvBTfA8Ng5fLufXheMRKQ==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.43.tgz",
+ "integrity": "sha512-B4otJRdPWIsmiSBf0uG7Z/+vMWmkufjz5MmYxubwKuZazDW14Zd3symga1N62QR4RT+kEFeHEgsXfZGyn/w0hw==",
"cpu": [
"arm64"
],
@@ -6106,9 +5442,9 @@
}
},
"node_modules/@swc/core-linux-arm64-musl": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.41.tgz",
- "integrity": "sha512-dXu/5vd4gh8symyhRF+4G7gOPkjmb4pONhh7sl+6GSiW0LOKZlfu5kXmyFbTz9smOT7jgr002qY9b1nujjXt2A==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.43.tgz",
+ "integrity": "sha512-6zB6OnpViBxYy4tgY3v2i6AZY9fwkcHZ032UOwtwUuW1d19sdT07qF0kZe6/3UR1tUaK6jjg2rmVcUIBCEYVjQ==",
"cpu": [
"arm64"
],
@@ -6126,9 +5462,9 @@
}
},
"node_modules/@swc/core-linux-ppc64-gnu": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.41.tgz",
- "integrity": "sha512-XGO6zVPXoPE0gf/XnI4jBbafNT13AYgoh6ns0JCSdOetI/kqVf0vhpz7NuNgAzZrMVCsmieqjPoTwViDgh4mOQ==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.43.tgz",
+ "integrity": "sha512-coxE1ZWdB3uSDVNoEtYNrRi/1epvckZx9cTJ8ICUxTMTxGk+yvQ/Twacp3ruZSaMPGCriUjP86C37VhaT6nyRg==",
"cpu": [
"ppc64"
],
@@ -6146,9 +5482,9 @@
}
},
"node_modules/@swc/core-linux-s390x-gnu": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.41.tgz",
- "integrity": "sha512-0WUglRwyZtW+iMi7J3iFdrCxreZZIKf4egTwEQfIYRsqFax69A0OrFj+NIoFSE03xBT/IFRrg+S8K6f9Ky+4hA==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.43.tgz",
+ "integrity": "sha512-lXfLhs+LpBsD5inuYx+YDH5WsPPBQ95KPUiy8P5wq9ob9xKDZFqwNfU2QW6bGO8NqRO/H9JQomTSt5Yyh+FGfA==",
"cpu": [
"s390x"
],
@@ -6166,9 +5502,9 @@
}
},
"node_modules/@swc/core-linux-x64-gnu": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.41.tgz",
- "integrity": "sha512-VxkuQK59c0tHm6uJZCUrS3cyA2JhGGfdU6e41SZz0x/JS+4Sm7C1mIc97In14vkZJopEt7yXA2TouCqZDSygEA==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.43.tgz",
+ "integrity": "sha512-07XnKwTmKy8TGOZG3D9fRnLWGynxPjwQnZLVmBFbo6F+7vHYzBIOuwXEhemrChBWb6yDNZsVCcMWCPX6FDD2xg==",
"cpu": [
"x64"
],
@@ -6186,9 +5522,9 @@
}
},
"node_modules/@swc/core-linux-x64-musl": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.41.tgz",
- "integrity": "sha512-/0qXIu1ZxggLuovLb22vFfKHq2AA4n6Whw5UwmVCHk4pkw7KWnPIQpMCEqUMPsNkFJig7PPp/TSYFu8ZEb2rtQ==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.43.tgz",
+ "integrity": "sha512-TJc+bsSIaBh+hZvZ5GRtW/K1bw66TJ9vsUwvVIsZdiWxU5ObLwZvfcnZ3UpgVfMnFibRes9uriJrQNBHEEogRQ==",
"cpu": [
"x64"
],
@@ -6206,9 +5542,9 @@
}
},
"node_modules/@swc/core-win32-arm64-msvc": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.41.tgz",
- "integrity": "sha512-Y481sMNZM6rECh9VO4+y26N1lWEDAyxnBZskUf37fl90uHE946VHfmiVQWT0uMFOhyJJFovGTRuF4W82dwewUg==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.43.tgz",
+ "integrity": "sha512-jfd7s2/bUQYkOHLs+LWQNKZdmDa8+sufKLllhpWAhVQ2GDCwsHe3vR/j+OSiItZNtkzFuaawa3+SAKz9y5gYfw==",
"cpu": [
"arm64"
],
@@ -6223,9 +5559,9 @@
}
},
"node_modules/@swc/core-win32-ia32-msvc": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.41.tgz",
- "integrity": "sha512-BAchBD5qeUzy3hiPSLJtaaoSm4blCLyYffOF1bGE4ETcV+OisqjUAwDQMJj++4bTpvMCDzwC+Bj3PmQyBCtscw==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.43.tgz",
+ "integrity": "sha512-rLAE8JvucqEW1ZGohxPQrQWPBQeJG4+ypKbWfdlU/qmKScvCkxf9/Jxnzki1dkUQCQ7P5Enp13RlvqOlvx/32g==",
"cpu": [
"ia32"
],
@@ -6240,9 +5576,9 @@
}
},
"node_modules/@swc/core-win32-x64-msvc": {
- "version": "1.15.41",
- "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.41.tgz",
- "integrity": "sha512-WOkA+fJ/ViVBQDsSV9JC52NACTe5PhlurA6viASDZGb7HR3KS01ZG7RZ+Bg6SVQFIoq3gSbTsskQVe6EbHFAYw==",
+ "version": "1.15.43",
+ "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.43.tgz",
+ "integrity": "sha512-h8MLDHZcfIukwQWj03rIJZx1I0E81AYj2X7J/nGErG4nz+QAv6G1Z+peotvinL3lqpbo32tLYSMFo32/ySzxKg==",
"cpu": [
"x64"
],
@@ -6258,15 +5594,11 @@
},
"node_modules/@swc/counter": {
"version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
- "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/@swc/types": {
"version": "0.1.27",
- "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.27.tgz",
- "integrity": "sha512-K6h3iUlqeM946U4sXFYeahefR1YBbXJvko+hv8WS8/0BNJ4OHiHRywMnQUJCqkR7Y9+hqQ1TvEpiKqUhz7NEFg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -6275,8 +5607,6 @@
},
"node_modules/@szmarczak/http-timer": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
- "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6288,8 +5618,6 @@
},
"node_modules/@types/body-parser": {
"version": "1.19.6",
- "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz",
- "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6299,8 +5627,6 @@
},
"node_modules/@types/bonjour": {
"version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz",
- "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6309,8 +5635,6 @@
},
"node_modules/@types/connect": {
"version": "3.4.38",
- "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
- "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6319,8 +5643,6 @@
},
"node_modules/@types/connect-history-api-fallback": {
"version": "1.5.4",
- "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz",
- "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6330,8 +5652,6 @@
},
"node_modules/@types/debug": {
"version": "4.1.13",
- "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
- "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6340,15 +5660,11 @@
},
"node_modules/@types/estree": {
"version": "1.0.9",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
- "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/estree-jsx": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
- "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6357,8 +5673,6 @@
},
"node_modules/@types/express": {
"version": "4.17.25",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz",
- "integrity": "sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6370,8 +5684,6 @@
},
"node_modules/@types/express-serve-static-core": {
"version": "4.19.8",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz",
- "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6383,15 +5695,11 @@
},
"node_modules/@types/gtag.js": {
"version": "0.0.20",
- "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.20.tgz",
- "integrity": "sha512-wwAbk3SA2QeU67unN7zPxjEHmPmlXwZXZvQEpbEUQuMCRGgKyE1m6XDuTUA9b6pCGb/GqJmdfMOY5LuDjJSbbg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/hast": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
- "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6400,36 +5708,26 @@
},
"node_modules/@types/history": {
"version": "4.7.11",
- "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz",
- "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/html-minifier-terser": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
- "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/http-cache-semantics": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
- "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/http-errors": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz",
- "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/http-proxy": {
"version": "1.17.17",
- "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz",
- "integrity": "sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6438,15 +5736,11 @@
},
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
- "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/istanbul-lib-report": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
- "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6455,8 +5749,6 @@
},
"node_modules/@types/istanbul-reports": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
- "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6465,15 +5757,11 @@
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/mdast": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
- "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6482,60 +5770,44 @@
},
"node_modules/@types/mdx": {
"version": "2.0.14",
- "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.14.tgz",
- "integrity": "sha512-T48PeuJtvLosNTPVhfnIp3i/n3a4g4Bad7YCq5k64D4u7NwDrAotikQ+5+sjtUvBmxCMlbo3dVL+C2dP0rWHzg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/mime": {
"version": "1.3.5",
- "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
- "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/ms": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
- "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "25.9.3",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.3.tgz",
- "integrity": "sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==",
+ "version": "26.0.1",
"dev": true,
"license": "MIT",
"dependencies": {
- "undici-types": ">=7.24.0 <7.24.7"
+ "undici-types": "~8.3.0"
}
},
"node_modules/@types/prismjs": {
"version": "1.26.6",
- "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.6.tgz",
- "integrity": "sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/qs": {
"version": "6.15.1",
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz",
- "integrity": "sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/range-parser": {
"version": "1.2.7",
- "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
- "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/react": {
"version": "19.2.17",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
- "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6544,8 +5816,6 @@
},
"node_modules/@types/react-router": {
"version": "5.1.20",
- "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz",
- "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6555,8 +5825,6 @@
},
"node_modules/@types/react-router-config": {
"version": "5.0.11",
- "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz",
- "integrity": "sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6567,8 +5835,6 @@
},
"node_modules/@types/react-router-dom": {
"version": "5.3.3",
- "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz",
- "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6579,15 +5845,11 @@
},
"node_modules/@types/retry": {
"version": "0.12.2",
- "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz",
- "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/sax": {
"version": "1.2.7",
- "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz",
- "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6596,8 +5858,6 @@
},
"node_modules/@types/send": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz",
- "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6606,8 +5866,6 @@
},
"node_modules/@types/serve-index": {
"version": "1.9.4",
- "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz",
- "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6616,8 +5874,6 @@
},
"node_modules/@types/serve-static": {
"version": "1.15.10",
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz",
- "integrity": "sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6628,8 +5884,6 @@
},
"node_modules/@types/serve-static/node_modules/@types/send": {
"version": "0.17.6",
- "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz",
- "integrity": "sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6639,8 +5893,6 @@
},
"node_modules/@types/sockjs": {
"version": "0.3.36",
- "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz",
- "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6649,15 +5901,11 @@
},
"node_modules/@types/unist": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
- "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/ws": {
"version": "8.18.1",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
- "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6666,8 +5914,6 @@
},
"node_modules/@types/yargs": {
"version": "17.0.35",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz",
- "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6676,22 +5922,16 @@
},
"node_modules/@types/yargs-parser": {
"version": "21.0.3",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
- "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz",
- "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==",
+ "version": "1.3.2",
"dev": true,
"license": "ISC"
},
"node_modules/@webassemblyjs/ast": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
- "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6701,29 +5941,21 @@
},
"node_modules/@webassemblyjs/floating-point-hex-parser": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
- "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-api-error": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
- "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-buffer": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
- "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-numbers": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
- "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6734,15 +5966,11 @@
},
"node_modules/@webassemblyjs/helper-wasm-bytecode": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
- "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-wasm-section": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
- "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6754,8 +5982,6 @@
},
"node_modules/@webassemblyjs/ieee754": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
- "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6764,8 +5990,6 @@
},
"node_modules/@webassemblyjs/leb128": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
- "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -6774,15 +5998,11 @@
},
"node_modules/@webassemblyjs/utf8": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
- "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/wasm-edit": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
- "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6798,8 +6018,6 @@
},
"node_modules/@webassemblyjs/wasm-gen": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
- "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6812,8 +6030,6 @@
},
"node_modules/@webassemblyjs/wasm-opt": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
- "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6825,8 +6041,6 @@
},
"node_modules/@webassemblyjs/wasm-parser": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
- "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6840,8 +6054,6 @@
},
"node_modules/@webassemblyjs/wast-printer": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
- "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6851,22 +6063,16 @@
},
"node_modules/@xtuc/ieee754": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@xtuc/long": {
"version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/accepts": {
"version": "1.3.8",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
- "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6879,8 +6085,6 @@
},
"node_modules/accepts/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6889,8 +6093,6 @@
},
"node_modules/accepts/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6902,8 +6104,6 @@
},
"node_modules/accepts/node_modules/negotiator": {
"version": "0.6.3",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
- "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6912,8 +6112,6 @@
},
"node_modules/acorn": {
"version": "8.17.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
- "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -6925,8 +6123,6 @@
},
"node_modules/acorn-import-phases": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz",
- "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6938,8 +6134,6 @@
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -6948,8 +6142,6 @@
},
"node_modules/acorn-walk": {
"version": "8.3.5",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz",
- "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6961,8 +6153,6 @@
},
"node_modules/address": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
- "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6971,8 +6161,6 @@
},
"node_modules/aggregate-error": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6985,8 +6173,6 @@
},
"node_modules/ajv": {
"version": "8.20.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
- "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7002,8 +6188,6 @@
},
"node_modules/ajv-formats": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
- "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7020,8 +6204,6 @@
},
"node_modules/ajv-keywords": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7033,8 +6215,6 @@
},
"node_modules/algoliasearch": {
"version": "4.27.0",
- "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.27.0.tgz",
- "integrity": "sha512-C88C5grLa5VOCp9eYZJt+q99ik7yNdm92l7Q9+4XK0Md8kL05Lg8l2v9ZVX0uMW3mH9pAFxMMXlLOvqNumA4lw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7057,8 +6237,6 @@
},
"node_modules/algoliasearch-helper": {
"version": "3.29.1",
- "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.29.1.tgz",
- "integrity": "sha512-6ck2YFudF2Pje7szQoPBiRFTGfd+1I+0I/WfLPGn0bj1kvrFoOQmNyedNiDxTk3/r4IfSLDYk+RA4G7u8H6+yA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7070,8 +6248,6 @@
},
"node_modules/ansi-align": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
- "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7080,15 +6256,11 @@
},
"node_modules/ansi-align/node_modules/emoji-regex": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/ansi-align/node_modules/string-width": {
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7102,8 +6274,6 @@
},
"node_modules/ansi-html-community": {
"version": "0.0.8",
- "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
- "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
"dev": true,
"engines": [
"node >= 0.8.0"
@@ -7115,8 +6285,6 @@
},
"node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7125,8 +6293,6 @@
},
"node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7141,8 +6307,6 @@
},
"node_modules/ansis": {
"version": "3.17.0",
- "resolved": "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz",
- "integrity": "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==",
"dev": true,
"license": "ISC",
"engines": {
@@ -7151,8 +6315,6 @@
},
"node_modules/anymatch": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7165,29 +6327,21 @@
},
"node_modules/arg": {
"version": "5.0.2",
- "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
- "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
"dev": true,
"license": "MIT"
},
"node_modules/argparse": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"dev": true,
"license": "Python-2.0"
},
"node_modules/array-flatten": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
"dev": true,
"license": "MIT"
},
"node_modules/array-union": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7196,8 +6350,6 @@
},
"node_modules/asn1js": {
"version": "3.0.10",
- "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz",
- "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -7211,8 +6363,6 @@
},
"node_modules/astring": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz",
- "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -7220,9 +6370,7 @@
}
},
"node_modules/autoprefixer": {
- "version": "10.5.0",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz",
- "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==",
+ "version": "10.5.2",
"dev": true,
"funding": [
{
@@ -7240,8 +6388,8 @@
],
"license": "MIT",
"dependencies": {
- "browserslist": "^4.28.2",
- "caniuse-lite": "^1.0.30001787",
+ "browserslist": "^4.28.4",
+ "caniuse-lite": "^1.0.30001799",
"fraction.js": "^5.3.4",
"picocolors": "^1.1.1",
"postcss-value-parser": "^4.2.0"
@@ -7258,8 +6406,6 @@
},
"node_modules/babel-loader": {
"version": "9.2.1",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz",
- "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7276,8 +6422,6 @@
},
"node_modules/babel-plugin-dynamic-import-node": {
"version": "2.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
- "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7286,8 +6430,6 @@
},
"node_modules/babel-plugin-polyfill-corejs2": {
"version": "0.4.17",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz",
- "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7301,8 +6443,6 @@
},
"node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -7311,8 +6451,6 @@
},
"node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.13.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz",
- "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7325,8 +6463,6 @@
},
"node_modules/babel-plugin-polyfill-regenerator": {
"version": "0.6.8",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz",
- "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7338,8 +6474,6 @@
},
"node_modules/bail": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
- "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7349,15 +6483,11 @@
},
"node_modules/balanced-match": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true,
"license": "MIT"
},
"node_modules/baseline-browser-mapping": {
- "version": "2.10.38",
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.38.tgz",
- "integrity": "sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw==",
+ "version": "2.10.40",
"dev": true,
"license": "Apache-2.0",
"bin": {
@@ -7369,15 +6499,11 @@
},
"node_modules/batch": {
"version": "0.6.1",
- "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
- "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==",
"dev": true,
"license": "MIT"
},
"node_modules/big.js": {
"version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7386,8 +6512,6 @@
},
"node_modules/binary-extensions": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7399,8 +6523,6 @@
},
"node_modules/body-parser": {
"version": "1.20.5",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
- "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7424,8 +6546,6 @@
},
"node_modules/body-parser/node_modules/bytes": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7434,8 +6554,6 @@
},
"node_modules/body-parser/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7444,15 +6562,11 @@
},
"node_modules/body-parser/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/bonjour-service": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.4.1.tgz",
- "integrity": "sha512-9KM4QMPKnaJqaja1v7gYO/+TXZGLtzPA05NmUTqDAJjcsWeVoOXKMvU9g0gfuuoYTQqJZ924hivICd5R/bCJbA==",
+ "version": "1.4.2",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7462,15 +6576,11 @@
},
"node_modules/boolbase": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
"dev": true,
"license": "ISC"
},
"node_modules/boxen": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz",
- "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7492,8 +6602,6 @@
},
"node_modules/brace-expansion": {
"version": "1.1.15",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz",
- "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7503,8 +6611,6 @@
},
"node_modules/braces": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7515,9 +6621,7 @@
}
},
"node_modules/browserslist": {
- "version": "4.28.2",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
- "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
+ "version": "4.28.4",
"dev": true,
"funding": [
{
@@ -7535,10 +6639,10 @@
],
"license": "MIT",
"dependencies": {
- "baseline-browser-mapping": "^2.10.12",
- "caniuse-lite": "^1.0.30001782",
- "electron-to-chromium": "^1.5.328",
- "node-releases": "^2.0.36",
+ "baseline-browser-mapping": "^2.10.38",
+ "caniuse-lite": "^1.0.30001799",
+ "electron-to-chromium": "^1.5.376",
+ "node-releases": "^2.0.48",
"update-browserslist-db": "^1.2.3"
},
"bin": {
@@ -7550,15 +6654,11 @@
},
"node_modules/buffer-from": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"dev": true,
"license": "MIT"
},
"node_modules/bundle-name": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
- "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7573,8 +6673,6 @@
},
"node_modules/bytes": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
- "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7583,8 +6681,6 @@
},
"node_modules/bytestreamjs": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz",
- "integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -7593,8 +6689,6 @@
},
"node_modules/cacheable-lookup": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
- "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7603,8 +6697,6 @@
},
"node_modules/cacheable-request": {
"version": "10.2.14",
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
- "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7622,8 +6714,6 @@
},
"node_modules/call-bind": {
"version": "1.0.9",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz",
- "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7641,8 +6731,6 @@
},
"node_modules/call-bind-apply-helpers": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7655,8 +6743,6 @@
},
"node_modules/call-bound": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7672,8 +6758,6 @@
},
"node_modules/callsites": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7682,8 +6766,6 @@
},
"node_modules/camel-case": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
- "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7693,8 +6775,6 @@
},
"node_modules/camelcase": {
"version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7706,8 +6786,6 @@
},
"node_modules/caniuse-api": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7719,8 +6797,6 @@
},
"node_modules/caniuse-lite": {
"version": "1.0.30001799",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
- "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
"dev": true,
"funding": [
{
@@ -7740,8 +6816,6 @@
},
"node_modules/ccount": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
- "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7751,8 +6825,6 @@
},
"node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7768,8 +6840,6 @@
},
"node_modules/char-regex": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7778,8 +6848,6 @@
},
"node_modules/character-entities": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
- "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7789,8 +6857,6 @@
},
"node_modules/character-entities-html4": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
- "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7800,8 +6866,6 @@
},
"node_modules/character-entities-legacy": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
- "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7811,8 +6875,6 @@
},
"node_modules/character-reference-invalid": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
- "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7822,8 +6884,6 @@
},
"node_modules/cheerio": {
"version": "1.0.0-rc.9",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.9.tgz",
- "integrity": "sha512-QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7844,8 +6904,6 @@
},
"node_modules/cheerio-select": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz",
- "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -7861,8 +6919,6 @@
},
"node_modules/chokidar": {
"version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7886,8 +6942,6 @@
},
"node_modules/chrome-trace-event": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
- "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7896,8 +6950,6 @@
},
"node_modules/ci-info": {
"version": "3.9.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"dev": true,
"funding": [
{
@@ -7912,8 +6964,6 @@
},
"node_modules/clean-css": {
"version": "5.3.3",
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
- "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7925,8 +6975,6 @@
},
"node_modules/clean-css/node_modules/source-map": {
"version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -7935,8 +6983,6 @@
},
"node_modules/clean-stack": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7945,8 +6991,6 @@
},
"node_modules/cli-boxes": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
- "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7958,8 +7002,6 @@
},
"node_modules/cli-table3": {
"version": "0.6.5",
- "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
- "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7974,15 +7016,11 @@
},
"node_modules/cli-table3/node_modules/emoji-regex": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/cli-table3/node_modules/string-width": {
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7996,8 +7034,6 @@
},
"node_modules/clone-deep": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
- "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8011,8 +7047,6 @@
},
"node_modules/clsx": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
- "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8021,8 +7055,6 @@
},
"node_modules/collapse-white-space": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz",
- "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -8032,8 +7064,6 @@
},
"node_modules/color-convert": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8045,29 +7075,21 @@
},
"node_modules/color-name": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
"node_modules/colord": {
"version": "2.9.3",
- "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
- "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
"dev": true,
"license": "MIT"
},
"node_modules/colorette": {
"version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
"dev": true,
"license": "MIT"
},
"node_modules/combine-promises": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz",
- "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8076,8 +7098,6 @@
},
"node_modules/comma-separated-tokens": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
- "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -8087,8 +7107,6 @@
},
"node_modules/commander": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
- "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8097,15 +7115,11 @@
},
"node_modules/common-path-prefix": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
- "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
"dev": true,
"license": "ISC"
},
"node_modules/compressible": {
"version": "2.0.18",
- "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
- "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8117,8 +7131,6 @@
},
"node_modules/compressible/node_modules/mime-db": {
"version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8127,8 +7139,6 @@
},
"node_modules/compression": {
"version": "1.8.1",
- "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz",
- "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8146,8 +7156,6 @@
},
"node_modules/compression/node_modules/bytes": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8156,8 +7164,6 @@
},
"node_modules/compression/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8166,22 +7172,16 @@
},
"node_modules/compression/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/concat-map": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true,
"license": "MIT"
},
"node_modules/config-chain": {
"version": "1.1.13",
- "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
- "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8191,15 +7191,11 @@
},
"node_modules/config-chain/node_modules/ini": {
"version": "1.3.8",
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
"dev": true,
"license": "ISC"
},
"node_modules/configstore": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz",
- "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -8218,8 +7214,6 @@
},
"node_modules/connect-history-api-fallback": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
- "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8228,8 +7222,6 @@
},
"node_modules/consola": {
"version": "3.4.2",
- "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz",
- "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8238,8 +7230,6 @@
},
"node_modules/content-disposition": {
"version": "0.5.2",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
- "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8248,8 +7238,6 @@
},
"node_modules/content-type": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8258,15 +7246,11 @@
},
"node_modules/convert-source-map": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"dev": true,
"license": "MIT"
},
"node_modules/cookie": {
"version": "0.7.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
- "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8275,15 +7259,11 @@
},
"node_modules/cookie-signature": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
- "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
"dev": true,
"license": "MIT"
},
"node_modules/copy-text-to-clipboard": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz",
- "integrity": "sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8295,8 +7275,6 @@
},
"node_modules/copy-webpack-plugin": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz",
- "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8320,8 +7298,6 @@
},
"node_modules/copy-webpack-plugin/node_modules/glob-parent": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -8333,8 +7309,6 @@
},
"node_modules/copy-webpack-plugin/node_modules/globby": {
"version": "13.2.2",
- "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz",
- "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8353,8 +7327,6 @@
},
"node_modules/copy-webpack-plugin/node_modules/slash": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
- "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8366,8 +7338,6 @@
},
"node_modules/core-js": {
"version": "3.49.0",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz",
- "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -8378,8 +7348,6 @@
},
"node_modules/core-js-compat": {
"version": "3.49.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz",
- "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8392,15 +7360,11 @@
},
"node_modules/core-util-is": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
"dev": true,
"license": "MIT"
},
"node_modules/cosmiconfig": {
"version": "8.3.6",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
- "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8426,8 +7390,6 @@
},
"node_modules/cross-spawn": {
"version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8441,8 +7403,6 @@
},
"node_modules/crypto-random-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
- "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8457,8 +7417,6 @@
},
"node_modules/crypto-random-string/node_modules/type-fest": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
- "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -8470,8 +7428,6 @@
},
"node_modules/css-blank-pseudo": {
"version": "7.0.1",
- "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz",
- "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==",
"dev": true,
"funding": [
{
@@ -8496,8 +7452,6 @@
},
"node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8510,8 +7464,6 @@
},
"node_modules/css-declaration-sorter": {
"version": "7.4.0",
- "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz",
- "integrity": "sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==",
"dev": true,
"license": "ISC",
"engines": {
@@ -8523,8 +7475,6 @@
},
"node_modules/css-has-pseudo": {
"version": "7.0.3",
- "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz",
- "integrity": "sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==",
"dev": true,
"funding": [
{
@@ -8551,8 +7501,6 @@
},
"node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz",
- "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==",
"dev": true,
"funding": [
{
@@ -8574,8 +7522,6 @@
},
"node_modules/css-has-pseudo/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8588,8 +7534,6 @@
},
"node_modules/css-loader": {
"version": "6.11.0",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz",
- "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8624,8 +7568,6 @@
},
"node_modules/css-minimizer-webpack-plugin": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz",
- "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8669,8 +7611,6 @@
},
"node_modules/css-prefers-color-scheme": {
"version": "10.0.0",
- "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz",
- "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==",
"dev": true,
"funding": [
{
@@ -8692,8 +7632,6 @@
},
"node_modules/css-select": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
- "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -8709,8 +7647,6 @@
},
"node_modules/css-tree": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
- "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8723,8 +7659,6 @@
},
"node_modules/css-what": {
"version": "6.2.2",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
- "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -8736,8 +7670,6 @@
},
"node_modules/cssdb": {
"version": "8.9.0",
- "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.9.0.tgz",
- "integrity": "sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==",
"dev": true,
"funding": [
{
@@ -8753,8 +7685,6 @@
},
"node_modules/cssesc": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -8766,8 +7696,6 @@
},
"node_modules/cssnano": {
"version": "6.1.2",
- "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz",
- "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8787,8 +7715,6 @@
},
"node_modules/cssnano-preset-advanced": {
"version": "6.1.2",
- "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz",
- "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8809,8 +7735,6 @@
},
"node_modules/cssnano-preset-default": {
"version": "6.1.2",
- "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz",
- "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8854,8 +7778,6 @@
},
"node_modules/cssnano-utils": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz",
- "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8867,8 +7789,6 @@
},
"node_modules/csso": {
"version": "5.0.5",
- "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
- "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8881,8 +7801,6 @@
},
"node_modules/csso/node_modules/css-tree": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
- "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8896,29 +7814,21 @@
},
"node_modules/csso/node_modules/mdn-data": {
"version": "2.0.28",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
- "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
"dev": true,
"license": "CC0-1.0"
},
"node_modules/csstype": {
"version": "3.2.3",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
"dev": true,
"license": "MIT"
},
"node_modules/debounce": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz",
- "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==",
"dev": true,
"license": "MIT"
},
"node_modules/debug": {
"version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8935,8 +7845,6 @@
},
"node_modules/decode-named-character-reference": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
- "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8949,8 +7857,6 @@
},
"node_modules/decompress-response": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
- "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8965,8 +7871,6 @@
},
"node_modules/decompress-response/node_modules/mimic-response": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
- "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8978,8 +7882,6 @@
},
"node_modules/deep-extend": {
"version": "0.6.0",
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8988,8 +7890,6 @@
},
"node_modules/deepmerge": {
"version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8998,8 +7898,6 @@
},
"node_modules/default-browser": {
"version": "5.5.0",
- "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz",
- "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9015,8 +7913,6 @@
},
"node_modules/default-browser-id": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz",
- "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9028,8 +7924,6 @@
},
"node_modules/defer-to-connect": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
- "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9038,8 +7932,6 @@
},
"node_modules/define-data-property": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
- "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9056,8 +7948,6 @@
},
"node_modules/define-lazy-prop": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
- "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9066,8 +7956,6 @@
},
"node_modules/define-properties": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
- "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9084,8 +7972,6 @@
},
"node_modules/depd": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9094,8 +7980,6 @@
},
"node_modules/dequal": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9104,8 +7988,6 @@
},
"node_modules/destroy": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9115,15 +7997,11 @@
},
"node_modules/detect-node": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
- "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
"dev": true,
"license": "MIT"
},
"node_modules/detect-port": {
"version": "1.6.1",
- "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz",
- "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9140,8 +8018,6 @@
},
"node_modules/devlop": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
- "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9154,8 +8030,6 @@
},
"node_modules/dir-glob": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9167,8 +8041,6 @@
},
"node_modules/dns-packet": {
"version": "5.6.1",
- "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz",
- "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9180,8 +8052,6 @@
},
"node_modules/dom-converter": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
- "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9190,8 +8060,6 @@
},
"node_modules/dom-serializer": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
- "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9205,8 +8073,6 @@
},
"node_modules/dom-serializer/node_modules/entities": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"dev": true,
"license": "BSD-2-Clause",
"funding": {
@@ -9215,8 +8081,6 @@
},
"node_modules/domelementtype": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
"dev": true,
"funding": [
{
@@ -9228,8 +8092,6 @@
},
"node_modules/domhandler": {
"version": "4.3.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
- "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -9244,8 +8106,6 @@
},
"node_modules/domutils": {
"version": "2.8.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
- "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -9259,8 +8119,6 @@
},
"node_modules/dot-case": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
- "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9270,8 +8128,6 @@
},
"node_modules/dot-prop": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
- "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9286,8 +8142,6 @@
},
"node_modules/dot-prop/node_modules/is-obj": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9296,8 +8150,6 @@
},
"node_modules/dunder-proto": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9311,50 +8163,36 @@
},
"node_modules/duplexer": {
"version": "0.1.2",
- "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
- "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
"dev": true,
"license": "MIT"
},
"node_modules/eastasianwidth": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
"dev": true,
"license": "MIT"
},
"node_modules/ee-first": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
"dev": true,
"license": "MIT"
},
"node_modules/electron-to-chromium": {
- "version": "1.5.375",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.375.tgz",
- "integrity": "sha512-ZWP5eB4BVPW/ZYo9252hQZHZ5XavtsTgpbhcmMmRwymavC5AsLWQWBPaKMeNd2LW0KGby5HPXvj7+sr4ta5j/Q==",
+ "version": "1.5.379",
"dev": true,
"license": "ISC"
},
"node_modules/emoji-regex": {
"version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
"dev": true,
"license": "MIT"
},
"node_modules/emojilib": {
"version": "2.4.0",
- "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz",
- "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==",
"dev": true,
"license": "MIT"
},
"node_modules/emojis-list": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9363,8 +8201,6 @@
},
"node_modules/emoticon": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-4.1.0.tgz",
- "integrity": "sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -9374,8 +8210,6 @@
},
"node_modules/encodeurl": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9383,9 +8217,7 @@
}
},
"node_modules/enhanced-resolve": {
- "version": "5.24.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.0.tgz",
- "integrity": "sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ==",
+ "version": "5.24.1",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9398,8 +8230,6 @@
},
"node_modules/entities": {
"version": "4.5.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -9411,8 +8241,6 @@
},
"node_modules/error-ex": {
"version": "1.3.4",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
- "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9421,8 +8249,6 @@
},
"node_modules/es-define-property": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9431,8 +8257,6 @@
},
"node_modules/es-errors": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9441,15 +8265,11 @@
},
"node_modules/es-module-lexer": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
- "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
"dev": true,
"license": "MIT"
},
"node_modules/es-object-atoms": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
- "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9461,8 +8281,6 @@
},
"node_modules/esast-util-from-estree": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz",
- "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9478,8 +8296,6 @@
},
"node_modules/esast-util-from-js": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz",
- "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9495,8 +8311,6 @@
},
"node_modules/escalade": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9505,8 +8319,6 @@
},
"node_modules/escape-goat": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz",
- "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9518,15 +8330,11 @@
},
"node_modules/escape-html": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
"dev": true,
"license": "MIT"
},
"node_modules/escape-string-regexp": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9538,8 +8346,6 @@
},
"node_modules/eslint-scope": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -9552,8 +8358,6 @@
},
"node_modules/esprima": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
"dev": true,
"license": "BSD-2-Clause",
"bin": {
@@ -9566,8 +8370,6 @@
},
"node_modules/esrecurse": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -9579,8 +8381,6 @@
},
"node_modules/esrecurse/node_modules/estraverse": {
"version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -9589,8 +8389,6 @@
},
"node_modules/estraverse": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -9599,8 +8397,6 @@
},
"node_modules/estree-util-attach-comments": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz",
- "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9613,8 +8409,6 @@
},
"node_modules/estree-util-build-jsx": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz",
- "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9630,8 +8424,6 @@
},
"node_modules/estree-util-is-identifier-name": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
- "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -9641,8 +8433,6 @@
},
"node_modules/estree-util-scope": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz",
- "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9656,8 +8446,6 @@
},
"node_modules/estree-util-to-js": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz",
- "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9672,8 +8460,6 @@
},
"node_modules/estree-util-value-to-estree": {
"version": "3.5.0",
- "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.5.0.tgz",
- "integrity": "sha512-aMV56R27Gv3QmfmF1MY12GWkGzzeAezAX+UplqHVASfjc9wNzI/X6hC0S9oxq61WT4aQesLGslWP9tKk6ghRZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9685,8 +8471,6 @@
},
"node_modules/estree-util-visit": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz",
- "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9700,8 +8484,6 @@
},
"node_modules/estree-walker": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
- "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9710,8 +8492,6 @@
},
"node_modules/esutils": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -9720,8 +8500,6 @@
},
"node_modules/eta": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz",
- "integrity": "sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9733,8 +8511,6 @@
},
"node_modules/etag": {
"version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9743,8 +8519,6 @@
},
"node_modules/eval": {
"version": "0.1.8",
- "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz",
- "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==",
"dev": true,
"dependencies": {
"@types/node": "*",
@@ -9756,15 +8530,11 @@
},
"node_modules/eventemitter3": {
"version": "4.0.7",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
- "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
"dev": true,
"license": "MIT"
},
"node_modules/events": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9773,8 +8543,6 @@
},
"node_modules/execa": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9797,8 +8565,6 @@
},
"node_modules/express": {
"version": "4.22.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz",
- "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9844,8 +8610,6 @@
},
"node_modules/express/node_modules/content-disposition": {
"version": "0.5.4",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
- "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9857,8 +8621,6 @@
},
"node_modules/express/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9867,22 +8629,16 @@
},
"node_modules/express/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/express/node_modules/path-to-regexp": {
"version": "0.1.13",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
- "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
"dev": true,
"license": "MIT"
},
"node_modules/express/node_modules/range-parser": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9891,15 +8647,11 @@
},
"node_modules/extend": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"dev": true,
"license": "MIT"
},
"node_modules/extend-shallow": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9911,15 +8663,11 @@
},
"node_modules/fast-deep-equal": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-glob": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
- "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9935,15 +8683,11 @@
},
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-uri": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
- "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
"dev": true,
"funding": [
{
@@ -9959,8 +8703,6 @@
},
"node_modules/fastq": {
"version": "1.20.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
- "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -9969,8 +8711,6 @@
},
"node_modules/fault": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz",
- "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9983,8 +8723,6 @@
},
"node_modules/faye-websocket": {
"version": "0.11.4",
- "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz",
- "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -9996,8 +8734,6 @@
},
"node_modules/feed": {
"version": "4.2.2",
- "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz",
- "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10009,8 +8745,6 @@
},
"node_modules/file-loader": {
"version": "6.2.0",
- "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
- "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10030,8 +8764,6 @@
},
"node_modules/file-loader/node_modules/ajv": {
"version": "6.15.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
- "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10047,8 +8779,6 @@
},
"node_modules/file-loader/node_modules/ajv-keywords": {
"version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -10057,15 +8787,11 @@
},
"node_modules/file-loader/node_modules/json-schema-traverse": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true,
"license": "MIT"
},
"node_modules/file-loader/node_modules/schema-utils": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10083,8 +8809,6 @@
},
"node_modules/fill-range": {
"version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10096,8 +8820,6 @@
},
"node_modules/finalhandler": {
"version": "1.3.2",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
- "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10115,8 +8837,6 @@
},
"node_modules/finalhandler/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10125,15 +8845,11 @@
},
"node_modules/finalhandler/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/find-cache-dir": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
- "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10149,8 +8865,6 @@
},
"node_modules/find-up": {
"version": "6.3.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz",
- "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10166,8 +8880,6 @@
},
"node_modules/flat": {
"version": "5.0.2",
- "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
- "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
"dev": true,
"license": "BSD-3-Clause",
"bin": {
@@ -10176,8 +8888,6 @@
},
"node_modules/follow-redirects": {
"version": "1.16.0",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
- "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
"dev": true,
"funding": [
{
@@ -10197,8 +8907,6 @@
},
"node_modules/form-data-encoder": {
"version": "2.1.4",
- "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz",
- "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10207,8 +8915,6 @@
},
"node_modules/format": {
"version": "0.2.2",
- "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
- "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==",
"dev": true,
"engines": {
"node": ">=0.4.x"
@@ -10216,8 +8922,6 @@
},
"node_modules/forwarded": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10226,8 +8930,6 @@
},
"node_modules/fraction.js": {
"version": "5.3.4",
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
- "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10240,8 +8942,6 @@
},
"node_modules/fresh": {
"version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10250,8 +8950,6 @@
},
"node_modules/fs-extra": {
"version": "11.3.5",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz",
- "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10265,10 +8963,7 @@
},
"node_modules/fsevents": {
"version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"dev": true,
- "hasInstallScript": true,
"license": "MIT",
"optional": true,
"os": [
@@ -10280,8 +8975,6 @@
},
"node_modules/function-bind": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -10290,8 +8983,6 @@
},
"node_modules/gensync": {
"version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10300,8 +8991,6 @@
},
"node_modules/get-intrinsic": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10325,15 +9014,11 @@
},
"node_modules/get-own-enumerable-property-symbols": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
- "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==",
"dev": true,
"license": "ISC"
},
"node_modules/get-proto": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10346,8 +9031,6 @@
},
"node_modules/get-stream": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10359,15 +9042,11 @@
},
"node_modules/github-slugger": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz",
- "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==",
"dev": true,
"license": "ISC"
},
"node_modules/glob-parent": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10379,8 +9058,6 @@
},
"node_modules/glob-to-regex.js": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz",
- "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -10394,17 +9071,8 @@
"tslib": "2"
}
},
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true,
- "license": "BSD-2-Clause"
- },
"node_modules/global-dirs": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz",
- "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10419,8 +9087,6 @@
},
"node_modules/globby": {
"version": "11.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
- "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10440,8 +9106,6 @@
},
"node_modules/gopd": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10453,8 +9117,6 @@
},
"node_modules/got": {
"version": "12.6.1",
- "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
- "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10479,8 +9141,6 @@
},
"node_modules/got/node_modules/@sindresorhus/is": {
"version": "5.6.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
- "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10492,15 +9152,11 @@
},
"node_modules/graceful-fs": {
"version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"dev": true,
"license": "ISC"
},
"node_modules/gray-matter": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
- "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10515,8 +9171,6 @@
},
"node_modules/gray-matter/node_modules/argparse": {
"version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10525,8 +9179,6 @@
},
"node_modules/gray-matter/node_modules/js-yaml": {
"version": "3.14.2",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
- "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10539,8 +9191,6 @@
},
"node_modules/gzip-size": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz",
- "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10555,15 +9205,11 @@
},
"node_modules/handle-thing": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
- "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==",
"dev": true,
"license": "MIT"
},
"node_modules/has-flag": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10572,8 +9218,6 @@
},
"node_modules/has-property-descriptors": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
- "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10585,8 +9229,6 @@
},
"node_modules/has-symbols": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10598,8 +9240,6 @@
},
"node_modules/has-yarn": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz",
- "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10611,8 +9251,6 @@
},
"node_modules/hasown": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
- "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10624,8 +9262,6 @@
},
"node_modules/hast-util-from-parse5": {
"version": "8.0.3",
- "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
- "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10645,8 +9281,6 @@
},
"node_modules/hast-util-parse-selector": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
- "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10659,8 +9293,6 @@
},
"node_modules/hast-util-raw": {
"version": "9.1.0",
- "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz",
- "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10685,8 +9317,6 @@
},
"node_modules/hast-util-raw/node_modules/entities": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
- "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -10698,8 +9328,6 @@
},
"node_modules/hast-util-raw/node_modules/parse5": {
"version": "7.3.0",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
- "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10711,8 +9339,6 @@
},
"node_modules/hast-util-to-estree": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz",
- "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10740,8 +9366,6 @@
},
"node_modules/hast-util-to-jsx-runtime": {
"version": "2.3.6",
- "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
- "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10768,8 +9392,6 @@
},
"node_modules/hast-util-to-parse5": {
"version": "8.0.1",
- "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz",
- "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10788,8 +9410,6 @@
},
"node_modules/hast-util-whitespace": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
- "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10802,8 +9422,6 @@
},
"node_modules/hastscript": {
"version": "9.0.1",
- "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
- "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10820,8 +9438,6 @@
},
"node_modules/he": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
- "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
"dev": true,
"license": "MIT",
"bin": {
@@ -10830,8 +9446,6 @@
},
"node_modules/history": {
"version": "4.10.1",
- "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz",
- "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10845,8 +9459,6 @@
},
"node_modules/hoist-non-react-statics": {
"version": "3.3.2",
- "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
- "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -10855,8 +9467,6 @@
},
"node_modules/hpack.js": {
"version": "2.1.6",
- "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
- "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10868,15 +9478,11 @@
},
"node_modules/hpack.js/node_modules/isarray": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
"dev": true,
"license": "MIT"
},
"node_modules/hpack.js/node_modules/readable-stream": {
"version": "2.3.8",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
- "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10891,15 +9497,11 @@
},
"node_modules/hpack.js/node_modules/safe-buffer": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"dev": true,
"license": "MIT"
},
"node_modules/hpack.js/node_modules/string_decoder": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10908,22 +9510,16 @@
},
"node_modules/htm": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/htm/-/htm-3.1.1.tgz",
- "integrity": "sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/html-escaper": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
"dev": true,
"license": "MIT"
},
"node_modules/html-minifier-terser": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz",
- "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10944,8 +9540,6 @@
},
"node_modules/html-minifier-terser/node_modules/commander": {
"version": "10.0.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
- "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10954,8 +9548,6 @@
},
"node_modules/html-tags": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz",
- "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10967,8 +9559,6 @@
},
"node_modules/html-void-elements": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
- "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -10978,8 +9568,6 @@
},
"node_modules/html-webpack-plugin": {
"version": "5.6.7",
- "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz",
- "integrity": "sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11011,8 +9599,6 @@
},
"node_modules/html-webpack-plugin/node_modules/commander": {
"version": "8.3.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
- "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11021,8 +9607,6 @@
},
"node_modules/html-webpack-plugin/node_modules/html-minifier-terser": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
- "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11043,8 +9627,6 @@
},
"node_modules/htmlparser2": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
- "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
"dev": true,
"funding": [
"https://github.com/fb55/htmlparser2?sponsor=1",
@@ -11063,8 +9645,6 @@
},
"node_modules/htmlparser2/node_modules/entities": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"dev": true,
"license": "BSD-2-Clause",
"funding": {
@@ -11073,22 +9653,16 @@
},
"node_modules/http-cache-semantics": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
- "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
"dev": true,
"license": "BSD-2-Clause"
},
"node_modules/http-deceiver": {
"version": "1.2.7",
- "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
- "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==",
"dev": true,
"license": "MIT"
},
"node_modules/http-errors": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
- "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11108,15 +9682,11 @@
},
"node_modules/http-parser-js": {
"version": "0.5.10",
- "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz",
- "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==",
"dev": true,
"license": "MIT"
},
"node_modules/http-proxy": {
"version": "1.18.1",
- "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
- "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11129,9 +9699,7 @@
}
},
"node_modules/http-proxy-middleware": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz",
- "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==",
+ "version": "2.0.10",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11155,8 +9723,6 @@
},
"node_modules/http-proxy-middleware/node_modules/is-plain-obj": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
- "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11168,8 +9734,6 @@
},
"node_modules/http2-wrapper": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
- "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11182,8 +9746,6 @@
},
"node_modules/human-signals": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -11192,8 +9754,6 @@
},
"node_modules/hyperdyperid": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz",
- "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11202,8 +9762,6 @@
},
"node_modules/iconv-lite": {
"version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11215,8 +9773,6 @@
},
"node_modules/icss-utils": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
- "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
"dev": true,
"license": "ISC",
"engines": {
@@ -11228,8 +9784,6 @@
},
"node_modules/ignore": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11238,8 +9792,6 @@
},
"node_modules/image-size": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz",
- "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11251,8 +9803,6 @@
},
"node_modules/import-fresh": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11268,8 +9818,6 @@
},
"node_modules/import-lazy": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz",
- "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11278,8 +9826,6 @@
},
"node_modules/imurmurhash": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11288,8 +9834,6 @@
},
"node_modules/indent-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11298,8 +9842,6 @@
},
"node_modules/infima": {
"version": "0.2.0-alpha.45",
- "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz",
- "integrity": "sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11308,15 +9850,11 @@
},
"node_modules/inherits": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
"dev": true,
"license": "ISC"
},
"node_modules/ini": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
- "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
"dev": true,
"license": "ISC",
"engines": {
@@ -11325,15 +9863,11 @@
},
"node_modules/inline-style-parser": {
"version": "0.2.7",
- "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
- "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
"dev": true,
"license": "MIT"
},
"node_modules/invariant": {
"version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11342,8 +9876,6 @@
},
"node_modules/ipaddr.js": {
"version": "2.4.0",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.4.0.tgz",
- "integrity": "sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11352,8 +9884,6 @@
},
"node_modules/is-alphabetical": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
- "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -11363,8 +9893,6 @@
},
"node_modules/is-alphanumerical": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
- "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11378,15 +9906,11 @@
},
"node_modules/is-arrayish": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
"dev": true,
"license": "MIT"
},
"node_modules/is-binary-path": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11398,8 +9922,6 @@
},
"node_modules/is-ci": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz",
- "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11411,8 +9933,6 @@
},
"node_modules/is-core-module": {
"version": "2.16.2",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz",
- "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11427,8 +9947,6 @@
},
"node_modules/is-decimal": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
- "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
"dev": true,
"license": "MIT",
"funding": {
@@ -11438,8 +9956,6 @@
},
"node_modules/is-docker": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11454,8 +9970,6 @@
},
"node_modules/is-extendable": {
"version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11464,8 +9978,6 @@
},
"node_modules/is-extglob": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11474,8 +9986,6 @@
},
"node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11484,8 +9994,6 @@
},
"node_modules/is-glob": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11497,8 +10005,6 @@
},
"node_modules/is-hexadecimal": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
- "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -11508,8 +10014,6 @@
},
"node_modules/is-inside-container": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
- "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11527,8 +10031,6 @@
},
"node_modules/is-inside-container/node_modules/is-docker": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
- "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11543,8 +10045,6 @@
},
"node_modules/is-installed-globally": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
- "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11560,8 +10060,6 @@
},
"node_modules/is-network-error": {
"version": "1.3.2",
- "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz",
- "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11573,8 +10071,6 @@
},
"node_modules/is-npm": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.1.0.tgz",
- "integrity": "sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11586,8 +10082,6 @@
},
"node_modules/is-number": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11596,8 +10090,6 @@
},
"node_modules/is-obj": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
- "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11606,8 +10098,6 @@
},
"node_modules/is-path-inside": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11616,8 +10106,6 @@
},
"node_modules/is-plain-obj": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11629,8 +10117,6 @@
},
"node_modules/is-plain-object": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11642,8 +10128,6 @@
},
"node_modules/is-regexp": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
- "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11652,8 +10136,6 @@
},
"node_modules/is-stream": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11665,15 +10147,11 @@
},
"node_modules/is-typedarray": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
"dev": true,
"license": "MIT"
},
"node_modules/is-wsl": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11685,8 +10163,6 @@
},
"node_modules/is-yarn-global": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz",
- "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11695,22 +10171,16 @@
},
"node_modules/isarray": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==",
"dev": true,
"license": "MIT"
},
"node_modules/isexe": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
"dev": true,
"license": "ISC"
},
"node_modules/isobject": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11719,8 +10189,6 @@
},
"node_modules/jest-util": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
- "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11737,8 +10205,6 @@
},
"node_modules/jest-worker": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
- "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11753,8 +10219,6 @@
},
"node_modules/jest-worker/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11769,8 +10233,6 @@
},
"node_modules/jiti": {
"version": "1.21.7",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
- "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11779,8 +10241,6 @@
},
"node_modules/joi": {
"version": "17.13.4",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.4.tgz",
- "integrity": "sha512-1RuuER6kmt8K8I3nIWvPZKi5RQCb568ZPyY4Pwjlua+yo+63ZTmIwxLZH0heBmiKN4uxjvCiarDrjaeH84xicQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -11793,15 +10253,11 @@
},
"node_modules/js-tokens": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"dev": true,
"license": "MIT"
},
"node_modules/js-yaml": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
- "integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
"dev": true,
"funding": [
{
@@ -11823,8 +10279,6 @@
},
"node_modules/jsesc": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11836,29 +10290,21 @@
},
"node_modules/json-buffer": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
"dev": true,
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
"dev": true,
"license": "MIT"
},
"node_modules/json-schema-traverse": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"license": "MIT"
},
"node_modules/json5": {
"version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -11870,8 +10316,6 @@
},
"node_modules/jsonfile": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
- "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11883,8 +10327,6 @@
},
"node_modules/keyv": {
"version": "4.5.4",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11893,8 +10335,6 @@
},
"node_modules/kind-of": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11903,8 +10343,6 @@
},
"node_modules/kleur": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11913,8 +10351,6 @@
},
"node_modules/latest-version": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz",
- "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11929,8 +10365,6 @@
},
"node_modules/launch-editor": {
"version": "2.14.1",
- "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.14.1.tgz",
- "integrity": "sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11940,8 +10374,6 @@
},
"node_modules/leven": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11950,8 +10382,6 @@
},
"node_modules/lilconfig": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
- "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11963,15 +10393,11 @@
},
"node_modules/lines-and-columns": {
"version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"dev": true,
"license": "MIT"
},
"node_modules/loader-runner": {
"version": "4.3.2",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz",
- "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11984,8 +10410,6 @@
},
"node_modules/loader-utils": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
- "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11999,8 +10423,6 @@
},
"node_modules/locate-path": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
- "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12015,36 +10437,26 @@
},
"node_modules/lodash": {
"version": "4.18.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
- "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.debounce": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.memoize": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
- "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.uniq": {
"version": "4.5.0",
- "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
- "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
"dev": true,
"license": "MIT"
},
"node_modules/longest-streak": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
- "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
"dev": true,
"license": "MIT",
"funding": {
@@ -12054,8 +10466,6 @@
},
"node_modules/loose-envify": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12067,8 +10477,6 @@
},
"node_modules/lower-case": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
- "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12077,8 +10485,6 @@
},
"node_modules/lowercase-keys": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
- "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12090,8 +10496,6 @@
},
"node_modules/lru-cache": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12100,22 +10504,16 @@
},
"node_modules/lunr-languages": {
"version": "1.20.0",
- "resolved": "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.20.0.tgz",
- "integrity": "sha512-3LVgE7ekWXt04NBci/hjm+NXJxXZeRXuyClL0kA0HONyBOjxhP3ZQkuWIM4Ok3pbeptUW/rj3XcJcJuJVPwPYA==",
"dev": true,
"license": "MPL-1.1"
},
"node_modules/mark.js": {
"version": "8.11.1",
- "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz",
- "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==",
"dev": true,
"license": "MIT"
},
"node_modules/markdown-extensions": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz",
- "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12127,8 +10525,6 @@
},
"node_modules/markdown-table": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
- "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -12138,8 +10534,6 @@
},
"node_modules/math-intrinsics": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12148,8 +10542,6 @@
},
"node_modules/mdast-util-directive": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz",
- "integrity": "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12170,8 +10562,6 @@
},
"node_modules/mdast-util-find-and-replace": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
- "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12187,8 +10577,6 @@
},
"node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
- "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12200,8 +10588,6 @@
},
"node_modules/mdast-util-from-markdown": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
- "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12225,8 +10611,6 @@
},
"node_modules/mdast-util-from-markdown/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12242,8 +10626,6 @@
},
"node_modules/mdast-util-frontmatter": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz",
- "integrity": "sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12261,8 +10643,6 @@
},
"node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
- "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12274,8 +10654,6 @@
},
"node_modules/mdast-util-gfm": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
- "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12294,8 +10672,6 @@
},
"node_modules/mdast-util-gfm-autolink-literal": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
- "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12312,8 +10688,6 @@
},
"node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -12333,8 +10707,6 @@
},
"node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12350,8 +10722,6 @@
},
"node_modules/mdast-util-gfm-footnote": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
- "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12368,8 +10738,6 @@
},
"node_modules/mdast-util-gfm-strikethrough": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
- "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12384,8 +10752,6 @@
},
"node_modules/mdast-util-gfm-table": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
- "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12402,8 +10768,6 @@
},
"node_modules/mdast-util-gfm-task-list-item": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
- "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12419,8 +10783,6 @@
},
"node_modules/mdast-util-mdx": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz",
- "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12437,8 +10799,6 @@
},
"node_modules/mdast-util-mdx-expression": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
- "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12456,8 +10816,6 @@
},
"node_modules/mdast-util-mdx-jsx": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
- "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12481,8 +10839,6 @@
},
"node_modules/mdast-util-mdxjs-esm": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
- "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12500,8 +10856,6 @@
},
"node_modules/mdast-util-phrasing": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
- "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12515,8 +10869,6 @@
},
"node_modules/mdast-util-to-hast": {
"version": "13.2.1",
- "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
- "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12537,8 +10889,6 @@
},
"node_modules/mdast-util-to-markdown": {
"version": "2.1.2",
- "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
- "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12559,8 +10909,6 @@
},
"node_modules/mdast-util-to-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
- "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12573,15 +10921,11 @@
},
"node_modules/mdn-data": {
"version": "2.0.30",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
- "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
"dev": true,
"license": "CC0-1.0"
},
"node_modules/media-typer": {
"version": "0.3.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12589,20 +10933,18 @@
}
},
"node_modules/memfs": {
- "version": "4.57.7",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.57.7.tgz",
- "integrity": "sha512-YZPphUQZSRGk6ddPlsNuMbztrLwsbUATFNZcqKscSbSJZ4g0+Y3vSZLJ/rfnGZaB1FFhC7SrywZXev6i8lnHgg==",
+ "version": "4.57.8",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.7",
- "@jsonjoy.com/fs-fsa": "4.57.7",
- "@jsonjoy.com/fs-node": "4.57.7",
- "@jsonjoy.com/fs-node-builtins": "4.57.7",
- "@jsonjoy.com/fs-node-to-fsa": "4.57.7",
- "@jsonjoy.com/fs-node-utils": "4.57.7",
- "@jsonjoy.com/fs-print": "4.57.7",
- "@jsonjoy.com/fs-snapshot": "4.57.7",
+ "@jsonjoy.com/fs-core": "4.57.8",
+ "@jsonjoy.com/fs-fsa": "4.57.8",
+ "@jsonjoy.com/fs-node": "4.57.8",
+ "@jsonjoy.com/fs-node-builtins": "4.57.8",
+ "@jsonjoy.com/fs-node-to-fsa": "4.57.8",
+ "@jsonjoy.com/fs-node-utils": "4.57.8",
+ "@jsonjoy.com/fs-print": "4.57.8",
+ "@jsonjoy.com/fs-snapshot": "4.57.8",
"@jsonjoy.com/json-pack": "^1.11.0",
"@jsonjoy.com/util": "^1.9.0",
"glob-to-regex.js": "^1.0.1",
@@ -12620,8 +10962,6 @@
},
"node_modules/merge-descriptors": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
- "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -12630,15 +10970,11 @@
},
"node_modules/merge-stream": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true,
"license": "MIT"
},
"node_modules/merge2": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12647,8 +10983,6 @@
},
"node_modules/methods": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12657,8 +10991,6 @@
},
"node_modules/micromark": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
- "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
"dev": true,
"funding": [
{
@@ -12693,8 +11025,6 @@
},
"node_modules/micromark-core-commonmark": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
- "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
"dev": true,
"funding": [
{
@@ -12728,8 +11058,6 @@
},
"node_modules/micromark-core-commonmark/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -12749,8 +11077,6 @@
},
"node_modules/micromark-core-commonmark/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -12770,8 +11096,6 @@
},
"node_modules/micromark-core-commonmark/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12787,8 +11111,6 @@
},
"node_modules/micromark-extension-directive": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz",
- "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12807,8 +11129,6 @@
},
"node_modules/micromark-extension-directive/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -12828,8 +11148,6 @@
},
"node_modules/micromark-extension-directive/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -12849,8 +11167,6 @@
},
"node_modules/micromark-extension-directive/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12866,8 +11182,6 @@
},
"node_modules/micromark-extension-frontmatter": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz",
- "integrity": "sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12883,8 +11197,6 @@
},
"node_modules/micromark-extension-frontmatter/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -12904,8 +11216,6 @@
},
"node_modules/micromark-extension-frontmatter/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12921,8 +11231,6 @@
},
"node_modules/micromark-extension-gfm": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
- "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12942,8 +11250,6 @@
},
"node_modules/micromark-extension-gfm-autolink-literal": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
- "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12959,8 +11265,6 @@
},
"node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -12980,8 +11284,6 @@
},
"node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -12997,8 +11299,6 @@
},
"node_modules/micromark-extension-gfm-footnote": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
- "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13018,8 +11318,6 @@
},
"node_modules/micromark-extension-gfm-footnote/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13039,8 +11337,6 @@
},
"node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13060,8 +11356,6 @@
},
"node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13077,8 +11371,6 @@
},
"node_modules/micromark-extension-gfm-strikethrough": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
- "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13096,8 +11388,6 @@
},
"node_modules/micromark-extension-gfm-strikethrough/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13113,8 +11403,6 @@
},
"node_modules/micromark-extension-gfm-table": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
- "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13131,8 +11419,6 @@
},
"node_modules/micromark-extension-gfm-table/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13152,8 +11438,6 @@
},
"node_modules/micromark-extension-gfm-table/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13173,8 +11457,6 @@
},
"node_modules/micromark-extension-gfm-table/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13190,8 +11472,6 @@
},
"node_modules/micromark-extension-gfm-tagfilter": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
- "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13204,8 +11484,6 @@
},
"node_modules/micromark-extension-gfm-task-list-item": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
- "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13222,8 +11500,6 @@
},
"node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13243,8 +11519,6 @@
},
"node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13264,8 +11538,6 @@
},
"node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13281,8 +11553,6 @@
},
"node_modules/micromark-extension-mdx-expression": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz",
- "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==",
"dev": true,
"funding": [
{
@@ -13308,8 +11578,6 @@
},
"node_modules/micromark-extension-mdx-expression/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13329,8 +11597,6 @@
},
"node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13350,8 +11616,6 @@
},
"node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13367,8 +11631,6 @@
},
"node_modules/micromark-extension-mdx-jsx": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz",
- "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13390,8 +11652,6 @@
},
"node_modules/micromark-extension-mdx-jsx/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13411,8 +11671,6 @@
},
"node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13432,8 +11690,6 @@
},
"node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13449,8 +11705,6 @@
},
"node_modules/micromark-extension-mdx-md": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz",
- "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13463,8 +11717,6 @@
},
"node_modules/micromark-extension-mdxjs": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz",
- "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13484,8 +11736,6 @@
},
"node_modules/micromark-extension-mdxjs-esm": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz",
- "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13506,8 +11756,6 @@
},
"node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13527,8 +11775,6 @@
},
"node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13544,8 +11790,6 @@
},
"node_modules/micromark-factory-destination": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
- "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
"dev": true,
"funding": [
{
@@ -13566,8 +11810,6 @@
},
"node_modules/micromark-factory-destination/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13587,8 +11829,6 @@
},
"node_modules/micromark-factory-destination/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13604,8 +11844,6 @@
},
"node_modules/micromark-factory-label": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
- "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
"dev": true,
"funding": [
{
@@ -13627,8 +11865,6 @@
},
"node_modules/micromark-factory-label/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13648,8 +11884,6 @@
},
"node_modules/micromark-factory-label/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13665,8 +11899,6 @@
},
"node_modules/micromark-factory-mdx-expression": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz",
- "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==",
"dev": true,
"funding": [
{
@@ -13693,8 +11925,6 @@
},
"node_modules/micromark-factory-mdx-expression/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13714,8 +11944,6 @@
},
"node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13735,8 +11963,6 @@
},
"node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13752,8 +11978,6 @@
},
"node_modules/micromark-factory-space": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz",
- "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==",
"dev": true,
"funding": [
{
@@ -13773,8 +11997,6 @@
},
"node_modules/micromark-factory-space/node_modules/micromark-util-types": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz",
- "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==",
"dev": true,
"funding": [
{
@@ -13790,8 +12012,6 @@
},
"node_modules/micromark-factory-title": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
- "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
"dev": true,
"funding": [
{
@@ -13813,8 +12033,6 @@
},
"node_modules/micromark-factory-title/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13834,8 +12052,6 @@
},
"node_modules/micromark-factory-title/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13855,8 +12071,6 @@
},
"node_modules/micromark-factory-title/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13872,8 +12086,6 @@
},
"node_modules/micromark-factory-whitespace": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
- "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
"dev": true,
"funding": [
{
@@ -13895,8 +12107,6 @@
},
"node_modules/micromark-factory-whitespace/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -13916,8 +12126,6 @@
},
"node_modules/micromark-factory-whitespace/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -13937,8 +12145,6 @@
},
"node_modules/micromark-factory-whitespace/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -13954,8 +12160,6 @@
},
"node_modules/micromark-util-character": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz",
- "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==",
"dev": true,
"funding": [
{
@@ -13975,8 +12179,6 @@
},
"node_modules/micromark-util-character/node_modules/micromark-util-types": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz",
- "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==",
"dev": true,
"funding": [
{
@@ -13992,8 +12194,6 @@
},
"node_modules/micromark-util-chunked": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
- "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
"dev": true,
"funding": [
{
@@ -14012,8 +12212,6 @@
},
"node_modules/micromark-util-chunked/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14029,8 +12227,6 @@
},
"node_modules/micromark-util-classify-character": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
- "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
"dev": true,
"funding": [
{
@@ -14051,8 +12247,6 @@
},
"node_modules/micromark-util-classify-character/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -14072,8 +12266,6 @@
},
"node_modules/micromark-util-classify-character/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14089,8 +12281,6 @@
},
"node_modules/micromark-util-combine-extensions": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
- "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
"dev": true,
"funding": [
{
@@ -14110,8 +12300,6 @@
},
"node_modules/micromark-util-decode-numeric-character-reference": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
- "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
"dev": true,
"funding": [
{
@@ -14130,8 +12318,6 @@
},
"node_modules/micromark-util-decode-numeric-character-reference/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14147,8 +12333,6 @@
},
"node_modules/micromark-util-decode-string": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
- "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
"dev": true,
"funding": [
{
@@ -14170,8 +12354,6 @@
},
"node_modules/micromark-util-decode-string/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -14191,8 +12373,6 @@
},
"node_modules/micromark-util-decode-string/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14208,8 +12388,6 @@
},
"node_modules/micromark-util-encode": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
- "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
"dev": true,
"funding": [
{
@@ -14225,8 +12403,6 @@
},
"node_modules/micromark-util-events-to-acorn": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz",
- "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==",
"dev": true,
"funding": [
{
@@ -14251,8 +12427,6 @@
},
"node_modules/micromark-util-events-to-acorn/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14268,8 +12442,6 @@
},
"node_modules/micromark-util-html-tag-name": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
- "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
"dev": true,
"funding": [
{
@@ -14285,8 +12457,6 @@
},
"node_modules/micromark-util-normalize-identifier": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
- "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
"dev": true,
"funding": [
{
@@ -14305,8 +12475,6 @@
},
"node_modules/micromark-util-normalize-identifier/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14322,8 +12490,6 @@
},
"node_modules/micromark-util-resolve-all": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
- "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
"dev": true,
"funding": [
{
@@ -14342,8 +12508,6 @@
},
"node_modules/micromark-util-sanitize-uri": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
- "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
"dev": true,
"funding": [
{
@@ -14364,8 +12528,6 @@
},
"node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -14385,8 +12547,6 @@
},
"node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14402,8 +12562,6 @@
},
"node_modules/micromark-util-subtokenize": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
- "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
"dev": true,
"funding": [
{
@@ -14425,8 +12583,6 @@
},
"node_modules/micromark-util-subtokenize/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14442,8 +12598,6 @@
},
"node_modules/micromark-util-symbol": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz",
- "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==",
"dev": true,
"funding": [
{
@@ -14459,8 +12613,6 @@
},
"node_modules/micromark-util-types": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
- "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
"dev": true,
"funding": [
{
@@ -14476,8 +12628,6 @@
},
"node_modules/micromark/node_modules/micromark-factory-space": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
"dev": true,
"funding": [
{
@@ -14497,8 +12647,6 @@
},
"node_modules/micromark/node_modules/micromark-util-character": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
"dev": true,
"funding": [
{
@@ -14518,8 +12666,6 @@
},
"node_modules/micromark/node_modules/micromark-util-symbol": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
"dev": true,
"funding": [
{
@@ -14535,8 +12681,6 @@
},
"node_modules/micromatch": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14549,8 +12693,6 @@
},
"node_modules/mime": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -14562,8 +12704,6 @@
},
"node_modules/mime-db": {
"version": "1.33.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
- "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14572,8 +12712,6 @@
},
"node_modules/mime-types": {
"version": "2.1.18",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
- "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14585,8 +12723,6 @@
},
"node_modules/mimic-fn": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14595,8 +12731,6 @@
},
"node_modules/mimic-response": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
- "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14608,8 +12742,6 @@
},
"node_modules/mini-css-extract-plugin": {
"version": "2.10.2",
- "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz",
- "integrity": "sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14629,15 +12761,11 @@
},
"node_modules/minimalistic-assert": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
- "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
"dev": true,
"license": "ISC"
},
"node_modules/minimatch": {
"version": "3.1.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
- "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -14649,18 +12777,100 @@
},
"node_modules/minimist": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
"dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/minimizer-webpack-plugin": {
+ "version": "5.6.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jest-worker": "^27.4.5",
+ "schema-utils": "^4.3.0",
+ "terser": "^5.31.1"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@minify-html/node": {
+ "optional": true
+ },
+ "@swc/core": {
+ "optional": true
+ },
+ "@swc/css": {
+ "optional": true
+ },
+ "@swc/html": {
+ "optional": true
+ },
+ "clean-css": {
+ "optional": true
+ },
+ "cssnano": {
+ "optional": true
+ },
+ "csso": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "html-minifier-terser": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "postcss": {
+ "optional": true
+ },
+ "uglify-js": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/minimizer-webpack-plugin/node_modules/jest-worker": {
+ "version": "27.5.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/minimizer-webpack-plugin/node_modules/supports-color": {
+ "version": "8.1.1",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
"node_modules/mrmime": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
- "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14669,15 +12879,11 @@
},
"node_modules/ms": {
"version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"dev": true,
"license": "MIT"
},
"node_modules/multicast-dns": {
"version": "7.2.5",
- "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz",
- "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14689,9 +12895,7 @@
}
},
"node_modules/nanoid": {
- "version": "3.3.12",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
- "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
+ "version": "3.3.15",
"dev": true,
"funding": [
{
@@ -14709,8 +12913,6 @@
},
"node_modules/negotiator": {
"version": "0.6.4",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
- "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14719,15 +12921,11 @@
},
"node_modules/neo-async": {
"version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"dev": true,
"license": "MIT"
},
"node_modules/no-case": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
- "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14737,8 +12935,6 @@
},
"node_modules/node-emoji": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz",
- "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14752,9 +12948,7 @@
}
},
"node_modules/node-releases": {
- "version": "2.0.47",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.47.tgz",
- "integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
+ "version": "2.0.50",
"dev": true,
"license": "MIT",
"engines": {
@@ -14763,8 +12957,6 @@
},
"node_modules/normalize-path": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14773,8 +12965,6 @@
},
"node_modules/normalize-url": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.1.1.tgz",
- "integrity": "sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14786,8 +12976,6 @@
},
"node_modules/npm-run-path": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14799,15 +12987,11 @@
},
"node_modules/nprogress": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz",
- "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==",
"dev": true,
"license": "MIT"
},
"node_modules/nth-check": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
- "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -14819,8 +13003,6 @@
},
"node_modules/null-loader": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz",
- "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14840,8 +13022,6 @@
},
"node_modules/null-loader/node_modules/ajv": {
"version": "6.15.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
- "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14857,8 +13037,6 @@
},
"node_modules/null-loader/node_modules/ajv-keywords": {
"version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -14867,15 +13045,11 @@
},
"node_modules/null-loader/node_modules/json-schema-traverse": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true,
"license": "MIT"
},
"node_modules/null-loader/node_modules/schema-utils": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14893,8 +13067,6 @@
},
"node_modules/object-assign": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14903,8 +13075,6 @@
},
"node_modules/object-inspect": {
"version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14916,8 +13086,6 @@
},
"node_modules/object-keys": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14926,8 +13094,6 @@
},
"node_modules/object.assign": {
"version": "4.1.7",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
- "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14947,15 +13113,11 @@
},
"node_modules/obuf": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
- "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
"dev": true,
"license": "MIT"
},
"node_modules/on-finished": {
"version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14967,8 +13129,6 @@
},
"node_modules/on-headers": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
- "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14977,8 +13137,6 @@
},
"node_modules/onetime": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14993,8 +13151,6 @@
},
"node_modules/open": {
"version": "8.4.2",
- "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
- "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15011,8 +13167,6 @@
},
"node_modules/opener": {
"version": "1.5.2",
- "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz",
- "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==",
"dev": true,
"license": "(WTFPL OR MIT)",
"bin": {
@@ -15021,8 +13175,6 @@
},
"node_modules/p-cancelable": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
- "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15031,8 +13183,6 @@
},
"node_modules/p-finally": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15041,8 +13191,6 @@
},
"node_modules/p-limit": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
- "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15057,8 +13205,6 @@
},
"node_modules/p-locate": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz",
- "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15073,8 +13219,6 @@
},
"node_modules/p-map": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15089,8 +13233,6 @@
},
"node_modules/p-queue": {
"version": "6.6.2",
- "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
- "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15106,8 +13248,6 @@
},
"node_modules/p-retry": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz",
- "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15124,8 +13264,6 @@
},
"node_modules/p-timeout": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
- "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15137,8 +13275,6 @@
},
"node_modules/package-json": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz",
- "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15156,8 +13292,6 @@
},
"node_modules/param-case": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
- "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15167,8 +13301,6 @@
},
"node_modules/parent-module": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15180,8 +13312,6 @@
},
"node_modules/parse-entities": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
- "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15200,15 +13330,11 @@
},
"node_modules/parse-entities/node_modules/@types/unist": {
"version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
- "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
"dev": true,
"license": "MIT"
},
"node_modules/parse-json": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15226,22 +13352,16 @@
},
"node_modules/parse-numeric-range": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz",
- "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==",
"dev": true,
"license": "ISC"
},
"node_modules/parse5": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
"dev": true,
"license": "MIT"
},
"node_modules/parse5-htmlparser2-tree-adapter": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
- "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15250,8 +13370,6 @@
},
"node_modules/parseurl": {
"version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15260,8 +13378,6 @@
},
"node_modules/pascal-case": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
- "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15271,8 +13387,6 @@
},
"node_modules/path-exists": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
- "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15281,15 +13395,11 @@
},
"node_modules/path-is-inside": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==",
"dev": true,
"license": "(WTFPL OR MIT)"
},
"node_modules/path-key": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15298,15 +13408,11 @@
},
"node_modules/path-parse": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
"dev": true,
"license": "MIT"
},
"node_modules/path-to-regexp": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz",
- "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15315,8 +13421,6 @@
},
"node_modules/path-type": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15325,15 +13429,11 @@
},
"node_modules/picocolors": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
"dev": true,
"license": "ISC"
},
"node_modules/picomatch": {
"version": "2.3.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
- "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15345,8 +13445,6 @@
},
"node_modules/pkg-dir": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz",
- "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15361,8 +13459,6 @@
},
"node_modules/pkijs": {
"version": "3.4.0",
- "resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz",
- "integrity": "sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -15379,8 +13475,6 @@
},
"node_modules/postcss": {
"version": "8.5.15",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
- "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"dev": true,
"funding": [
{
@@ -15408,8 +13502,6 @@
},
"node_modules/postcss-attribute-case-insensitive": {
"version": "7.0.1",
- "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz",
- "integrity": "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==",
"dev": true,
"funding": [
{
@@ -15434,8 +13526,6 @@
},
"node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15448,8 +13538,6 @@
},
"node_modules/postcss-calc": {
"version": "9.0.1",
- "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz",
- "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15465,8 +13553,6 @@
},
"node_modules/postcss-clamp": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz",
- "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15481,8 +13567,6 @@
},
"node_modules/postcss-color-functional-notation": {
"version": "7.0.12",
- "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz",
- "integrity": "sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==",
"dev": true,
"funding": [
{
@@ -15511,8 +13595,6 @@
},
"node_modules/postcss-color-hex-alpha": {
"version": "10.0.0",
- "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz",
- "integrity": "sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==",
"dev": true,
"funding": [
{
@@ -15538,8 +13620,6 @@
},
"node_modules/postcss-color-rebeccapurple": {
"version": "10.0.0",
- "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz",
- "integrity": "sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==",
"dev": true,
"funding": [
{
@@ -15565,8 +13645,6 @@
},
"node_modules/postcss-colormin": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz",
- "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15584,8 +13662,6 @@
},
"node_modules/postcss-convert-values": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz",
- "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15601,8 +13677,6 @@
},
"node_modules/postcss-custom-media": {
"version": "11.0.6",
- "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz",
- "integrity": "sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==",
"dev": true,
"funding": [
{
@@ -15630,8 +13704,6 @@
},
"node_modules/postcss-custom-properties": {
"version": "14.0.6",
- "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz",
- "integrity": "sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==",
"dev": true,
"funding": [
{
@@ -15660,8 +13732,6 @@
},
"node_modules/postcss-custom-selectors": {
"version": "8.0.5",
- "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz",
- "integrity": "sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==",
"dev": true,
"funding": [
{
@@ -15689,8 +13759,6 @@
},
"node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15703,8 +13771,6 @@
},
"node_modules/postcss-dir-pseudo-class": {
"version": "9.0.1",
- "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz",
- "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==",
"dev": true,
"funding": [
{
@@ -15729,8 +13795,6 @@
},
"node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15743,8 +13807,6 @@
},
"node_modules/postcss-discard-comments": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz",
- "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15756,8 +13818,6 @@
},
"node_modules/postcss-discard-duplicates": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz",
- "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15769,8 +13829,6 @@
},
"node_modules/postcss-discard-empty": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz",
- "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15782,8 +13840,6 @@
},
"node_modules/postcss-discard-overridden": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz",
- "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15795,8 +13851,6 @@
},
"node_modules/postcss-discard-unused": {
"version": "6.0.5",
- "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz",
- "integrity": "sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15811,8 +13865,6 @@
},
"node_modules/postcss-double-position-gradients": {
"version": "6.0.4",
- "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz",
- "integrity": "sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==",
"dev": true,
"funding": [
{
@@ -15839,8 +13891,6 @@
},
"node_modules/postcss-focus-visible": {
"version": "10.0.1",
- "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz",
- "integrity": "sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==",
"dev": true,
"funding": [
{
@@ -15865,8 +13915,6 @@
},
"node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15879,8 +13927,6 @@
},
"node_modules/postcss-focus-within": {
"version": "9.0.1",
- "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz",
- "integrity": "sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==",
"dev": true,
"funding": [
{
@@ -15905,8 +13951,6 @@
},
"node_modules/postcss-focus-within/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15919,8 +13963,6 @@
},
"node_modules/postcss-font-variant": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz",
- "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -15929,8 +13971,6 @@
},
"node_modules/postcss-gap-properties": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz",
- "integrity": "sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==",
"dev": true,
"funding": [
{
@@ -15952,8 +13992,6 @@
},
"node_modules/postcss-image-set-function": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz",
- "integrity": "sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==",
"dev": true,
"funding": [
{
@@ -15979,8 +14017,6 @@
},
"node_modules/postcss-lab-function": {
"version": "7.0.12",
- "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz",
- "integrity": "sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==",
"dev": true,
"funding": [
{
@@ -16009,8 +14045,6 @@
},
"node_modules/postcss-loader": {
"version": "7.3.4",
- "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz",
- "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16032,8 +14066,6 @@
},
"node_modules/postcss-logical": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.1.0.tgz",
- "integrity": "sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==",
"dev": true,
"funding": [
{
@@ -16058,8 +14090,6 @@
},
"node_modules/postcss-merge-idents": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz",
- "integrity": "sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16075,8 +14105,6 @@
},
"node_modules/postcss-merge-longhand": {
"version": "6.0.5",
- "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz",
- "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16092,8 +14120,6 @@
},
"node_modules/postcss-merge-rules": {
"version": "6.1.1",
- "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz",
- "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16111,8 +14137,6 @@
},
"node_modules/postcss-minify-font-values": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz",
- "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16127,8 +14151,6 @@
},
"node_modules/postcss-minify-gradients": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz",
- "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16145,8 +14167,6 @@
},
"node_modules/postcss-minify-params": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz",
- "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16163,8 +14183,6 @@
},
"node_modules/postcss-minify-selectors": {
"version": "6.0.4",
- "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz",
- "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16179,8 +14197,6 @@
},
"node_modules/postcss-modules-extract-imports": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz",
- "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==",
"dev": true,
"license": "ISC",
"engines": {
@@ -16192,8 +14208,6 @@
},
"node_modules/postcss-modules-local-by-default": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz",
- "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16210,8 +14224,6 @@
},
"node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16224,8 +14236,6 @@
},
"node_modules/postcss-modules-scope": {
"version": "3.2.1",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz",
- "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -16240,8 +14250,6 @@
},
"node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16254,8 +14262,6 @@
},
"node_modules/postcss-modules-values": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
- "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -16270,8 +14276,6 @@
},
"node_modules/postcss-nesting": {
"version": "13.0.2",
- "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.2.tgz",
- "integrity": "sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==",
"dev": true,
"funding": [
{
@@ -16298,8 +14302,6 @@
},
"node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz",
- "integrity": "sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==",
"dev": true,
"funding": [
{
@@ -16321,8 +14323,6 @@
},
"node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz",
- "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==",
"dev": true,
"funding": [
{
@@ -16344,8 +14344,6 @@
},
"node_modules/postcss-nesting/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16358,8 +14356,6 @@
},
"node_modules/postcss-normalize-charset": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz",
- "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16371,8 +14367,6 @@
},
"node_modules/postcss-normalize-display-values": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz",
- "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16387,8 +14381,6 @@
},
"node_modules/postcss-normalize-positions": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz",
- "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16403,8 +14395,6 @@
},
"node_modules/postcss-normalize-repeat-style": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz",
- "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16419,8 +14409,6 @@
},
"node_modules/postcss-normalize-string": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz",
- "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16435,8 +14423,6 @@
},
"node_modules/postcss-normalize-timing-functions": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz",
- "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16451,8 +14437,6 @@
},
"node_modules/postcss-normalize-unicode": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz",
- "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16468,8 +14452,6 @@
},
"node_modules/postcss-normalize-url": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz",
- "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16484,8 +14466,6 @@
},
"node_modules/postcss-normalize-whitespace": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz",
- "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16500,8 +14480,6 @@
},
"node_modules/postcss-opacity-percentage": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz",
- "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==",
"dev": true,
"funding": [
{
@@ -16523,8 +14501,6 @@
},
"node_modules/postcss-ordered-values": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz",
- "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16540,8 +14516,6 @@
},
"node_modules/postcss-overflow-shorthand": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz",
- "integrity": "sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==",
"dev": true,
"funding": [
{
@@ -16566,8 +14540,6 @@
},
"node_modules/postcss-page-break": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz",
- "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -16576,8 +14548,6 @@
},
"node_modules/postcss-place": {
"version": "10.0.0",
- "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz",
- "integrity": "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==",
"dev": true,
"funding": [
{
@@ -16602,8 +14572,6 @@
},
"node_modules/postcss-preset-env": {
"version": "10.6.1",
- "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.6.1.tgz",
- "integrity": "sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==",
"dev": true,
"funding": [
{
@@ -16698,8 +14666,6 @@
},
"node_modules/postcss-pseudo-class-any-link": {
"version": "10.0.1",
- "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz",
- "integrity": "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==",
"dev": true,
"funding": [
{
@@ -16724,8 +14690,6 @@
},
"node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16738,8 +14702,6 @@
},
"node_modules/postcss-reduce-idents": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz",
- "integrity": "sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16754,8 +14716,6 @@
},
"node_modules/postcss-reduce-initial": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz",
- "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16771,8 +14731,6 @@
},
"node_modules/postcss-reduce-transforms": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz",
- "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16787,8 +14745,6 @@
},
"node_modules/postcss-replace-overflow-wrap": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz",
- "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -16797,8 +14753,6 @@
},
"node_modules/postcss-selector-not": {
"version": "8.0.1",
- "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz",
- "integrity": "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==",
"dev": true,
"funding": [
{
@@ -16823,8 +14777,6 @@
},
"node_modules/postcss-selector-not/node_modules/postcss-selector-parser": {
"version": "7.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz",
- "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16837,8 +14789,6 @@
},
"node_modules/postcss-selector-parser": {
"version": "6.1.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.4.tgz",
- "integrity": "sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16851,8 +14801,6 @@
},
"node_modules/postcss-sort-media-queries": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz",
- "integrity": "sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16867,8 +14815,6 @@
},
"node_modules/postcss-svgo": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz",
- "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16884,8 +14830,6 @@
},
"node_modules/postcss-unique-selectors": {
"version": "6.0.4",
- "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz",
- "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16900,15 +14844,11 @@
},
"node_modules/postcss-value-parser": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
"dev": true,
"license": "MIT"
},
"node_modules/postcss-zindex": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz",
- "integrity": "sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16919,9 +14859,7 @@
}
},
"node_modules/preact": {
- "version": "10.29.2",
- "resolved": "https://registry.npmjs.org/preact/-/preact-10.29.2.tgz",
- "integrity": "sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==",
+ "version": "10.29.3",
"dev": true,
"license": "MIT",
"funding": {
@@ -16931,8 +14869,6 @@
},
"node_modules/pretty-error": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz",
- "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16942,8 +14878,6 @@
},
"node_modules/pretty-time": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz",
- "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16952,8 +14886,6 @@
},
"node_modules/prism-react-renderer": {
"version": "2.4.1",
- "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz",
- "integrity": "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16966,8 +14898,6 @@
},
"node_modules/prismjs": {
"version": "1.30.0",
- "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
- "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16976,15 +14906,11 @@
},
"node_modules/process-nextick-args": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"dev": true,
"license": "MIT"
},
"node_modules/prompts": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16997,8 +14923,6 @@
},
"node_modules/prop-types": {
"version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17009,8 +14933,6 @@
},
"node_modules/property-information": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz",
- "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -17020,15 +14942,11 @@
},
"node_modules/proto-list": {
"version": "1.2.4",
- "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
- "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==",
"dev": true,
"license": "ISC"
},
"node_modules/proxy-addr": {
"version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17041,8 +14959,6 @@
},
"node_modules/proxy-addr/node_modules/ipaddr.js": {
"version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17051,8 +14967,6 @@
},
"node_modules/punycode": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17061,8 +14975,6 @@
},
"node_modules/pupa": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.3.0.tgz",
- "integrity": "sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17077,8 +14989,6 @@
},
"node_modules/pvtsutils": {
"version": "1.3.6",
- "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz",
- "integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17087,8 +14997,6 @@
},
"node_modules/pvutils": {
"version": "1.1.5",
- "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz",
- "integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17096,13 +15004,12 @@
}
},
"node_modules/qs": {
- "version": "6.15.2",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
- "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
+ "version": "6.15.3",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
- "side-channel": "^1.1.0"
+ "es-define-property": "^1.0.1",
+ "side-channel": "^1.1.1"
},
"engines": {
"node": ">=0.6"
@@ -17113,8 +15020,6 @@
},
"node_modules/queue-microtask": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"dev": true,
"funding": [
{
@@ -17134,8 +15039,6 @@
},
"node_modules/quick-lru": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
- "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17147,8 +15050,6 @@
},
"node_modules/randombytes": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17157,8 +15058,6 @@
},
"node_modules/range-parser": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
- "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17167,8 +15066,6 @@
},
"node_modules/raw-body": {
"version": "2.5.3",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
- "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17183,8 +15080,6 @@
},
"node_modules/raw-body/node_modules/bytes": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17193,8 +15088,6 @@
},
"node_modules/rc": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
"dev": true,
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
"dependencies": {
@@ -17209,15 +15102,11 @@
},
"node_modules/rc/node_modules/ini": {
"version": "1.3.8",
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
"dev": true,
"license": "ISC"
},
"node_modules/rc/node_modules/strip-json-comments": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17226,8 +15115,6 @@
},
"node_modules/react": {
"version": "19.2.7",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
- "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17236,8 +15123,6 @@
},
"node_modules/react-dom": {
"version": "19.2.7",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
- "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17249,16 +15134,12 @@
},
"node_modules/react-fast-compare": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz",
- "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==",
"dev": true,
"license": "MIT"
},
"node_modules/react-helmet-async": {
"name": "@slorber/react-helmet-async",
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@slorber/react-helmet-async/-/react-helmet-async-1.3.0.tgz",
- "integrity": "sha512-e9/OK8VhwUSc67diWI8Rb3I0YgI9/SBQtnhe9aEuK6MhZm7ntZZimXgwXnd8W96YTmSOb9M4d8LwhRZyhWr/1A==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -17275,15 +15156,11 @@
},
"node_modules/react-is": {
"version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
"dev": true,
"license": "MIT"
},
"node_modules/react-json-view-lite": {
"version": "2.5.0",
- "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz",
- "integrity": "sha512-tk7o7QG9oYyELWHL8xiMQ8x4WzjCzbWNyig3uexmkLb54r8jO0yH3WCWx8UZS0c49eSA4QUmG5caiRJ8fAn58g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17296,8 +15173,6 @@
"node_modules/react-loadable": {
"name": "@docusaurus/react-loadable",
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz",
- "integrity": "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17309,8 +15184,6 @@
},
"node_modules/react-loadable-ssr-addon-v5-slorber": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.3.tgz",
- "integrity": "sha512-GXfh9VLwB5ERaCsU6RULh7tkemeX15aNh6wuMEBtfdyMa7fFG8TXrhXlx1SoEK2Ty/l6XIkzzYIQmyaWW3JgdQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17326,8 +15199,6 @@
},
"node_modules/react-router": {
"version": "5.3.4",
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz",
- "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17347,8 +15218,6 @@
},
"node_modules/react-router-config": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz",
- "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17361,8 +15230,6 @@
},
"node_modules/react-router-dom": {
"version": "5.3.4",
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz",
- "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17380,8 +15247,6 @@
},
"node_modules/readable-stream": {
"version": "3.6.2",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
- "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17395,8 +15260,6 @@
},
"node_modules/readdirp": {
"version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17408,8 +15271,6 @@
},
"node_modules/recma-build-jsx": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
- "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17424,8 +15285,6 @@
},
"node_modules/recma-jsx": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz",
- "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17445,8 +15304,6 @@
},
"node_modules/recma-parse": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz",
- "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17462,8 +15319,6 @@
},
"node_modules/recma-stringify": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz",
- "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17479,22 +15334,16 @@
},
"node_modules/reflect-metadata": {
"version": "0.2.2",
- "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
- "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/regenerate": {
"version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
"dev": true,
"license": "MIT"
},
"node_modules/regenerate-unicode-properties": {
"version": "10.2.2",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz",
- "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17506,8 +15355,6 @@
},
"node_modules/regexpu-core": {
"version": "6.4.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz",
- "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17524,8 +15371,6 @@
},
"node_modules/registry-auth-token": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.1.tgz",
- "integrity": "sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17537,8 +15382,6 @@
},
"node_modules/registry-url": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz",
- "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17553,15 +15396,11 @@
},
"node_modules/regjsgen": {
"version": "0.8.0",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz",
- "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==",
"dev": true,
"license": "MIT"
},
"node_modules/regjsparser": {
"version": "0.13.2",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.2.tgz",
- "integrity": "sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -17573,8 +15412,6 @@
},
"node_modules/rehype-raw": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz",
- "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17589,8 +15426,6 @@
},
"node_modules/rehype-recma": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz",
- "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17605,8 +15440,6 @@
},
"node_modules/relateurl": {
"version": "0.2.7",
- "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
- "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17615,8 +15448,6 @@
},
"node_modules/remark-directive": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz",
- "integrity": "sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17632,8 +15463,6 @@
},
"node_modules/remark-emoji": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-4.0.1.tgz",
- "integrity": "sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17649,8 +15478,6 @@
},
"node_modules/remark-frontmatter": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz",
- "integrity": "sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17666,8 +15493,6 @@
},
"node_modules/remark-gfm": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
- "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17685,8 +15510,6 @@
},
"node_modules/remark-mdx": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz",
- "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17700,8 +15523,6 @@
},
"node_modules/remark-parse": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
- "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17717,8 +15538,6 @@
},
"node_modules/remark-rehype": {
"version": "11.1.2",
- "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
- "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17735,8 +15554,6 @@
},
"node_modules/remark-stringify": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
- "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17751,8 +15568,6 @@
},
"node_modules/renderkid": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz",
- "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17765,8 +15580,6 @@
},
"node_modules/require-from-string": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17775,8 +15588,6 @@
},
"node_modules/require-like": {
"version": "0.1.2",
- "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz",
- "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==",
"dev": true,
"engines": {
"node": "*"
@@ -17784,15 +15595,11 @@
},
"node_modules/requires-port": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
"dev": true,
"license": "MIT"
},
"node_modules/resolve": {
"version": "1.22.12",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz",
- "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17813,15 +15620,11 @@
},
"node_modules/resolve-alpn": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
- "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==",
"dev": true,
"license": "MIT"
},
"node_modules/resolve-from": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17830,15 +15633,11 @@
},
"node_modules/resolve-pathname": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz",
- "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==",
"dev": true,
"license": "MIT"
},
"node_modules/responselike": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
- "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17853,8 +15652,6 @@
},
"node_modules/retry": {
"version": "0.13.1",
- "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
- "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17863,8 +15660,6 @@
},
"node_modules/reusify": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17874,8 +15669,6 @@
},
"node_modules/rtlcss": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz",
- "integrity": "sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17893,8 +15686,6 @@
},
"node_modules/run-applescript": {
"version": "7.1.0",
- "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
- "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -17906,8 +15697,6 @@
},
"node_modules/run-parallel": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"dev": true,
"funding": [
{
@@ -17930,8 +15719,6 @@
},
"node_modules/safe-buffer": {
"version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"dev": true,
"funding": [
{
@@ -17951,15 +15738,11 @@
},
"node_modules/safer-buffer": {
"version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
"dev": true,
"license": "MIT"
},
"node_modules/sax": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz",
- "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -17968,22 +15751,16 @@
},
"node_modules/scheduler": {
"version": "0.27.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
"dev": true,
"license": "MIT"
},
"node_modules/schema-dts": {
"version": "1.1.5",
- "resolved": "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.5.tgz",
- "integrity": "sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/schema-utils": {
"version": "4.3.3",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz",
- "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18002,16 +15779,12 @@
},
"node_modules/search-insights": {
"version": "2.17.3",
- "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz",
- "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==",
"dev": true,
"license": "MIT",
"peer": true
},
"node_modules/section-matter": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18024,15 +15797,11 @@
},
"node_modules/select-hose": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
- "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==",
"dev": true,
"license": "MIT"
},
"node_modules/selfsigned": {
"version": "5.5.0",
- "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz",
- "integrity": "sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18044,9 +15813,7 @@
}
},
"node_modules/semver": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
- "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
+ "version": "7.8.5",
"dev": true,
"license": "ISC",
"bin": {
@@ -18058,8 +15825,6 @@
},
"node_modules/semver-diff": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz",
- "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18074,8 +15839,6 @@
},
"node_modules/send": {
"version": "0.19.2",
- "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
- "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18099,8 +15862,6 @@
},
"node_modules/send/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18109,15 +15870,11 @@
},
"node_modules/send/node_modules/debug/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/send/node_modules/range-parser": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18126,8 +15883,6 @@
},
"node_modules/serialize-javascript": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
- "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -18136,8 +15891,6 @@
},
"node_modules/serve-handler": {
"version": "6.1.7",
- "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.7.tgz",
- "integrity": "sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18152,15 +15905,11 @@
},
"node_modules/serve-handler/node_modules/path-to-regexp": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz",
- "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==",
"dev": true,
"license": "MIT"
},
"node_modules/serve-index": {
"version": "1.9.2",
- "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz",
- "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18182,8 +15931,6 @@
},
"node_modules/serve-index/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18192,8 +15939,6 @@
},
"node_modules/serve-index/node_modules/depd": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
- "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18202,8 +15947,6 @@
},
"node_modules/serve-index/node_modules/http-errors": {
"version": "1.8.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz",
- "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18219,8 +15962,6 @@
},
"node_modules/serve-index/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18229,8 +15970,6 @@
},
"node_modules/serve-index/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18242,15 +15981,11 @@
},
"node_modules/serve-index/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/serve-index/node_modules/statuses": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
- "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18259,8 +15994,6 @@
},
"node_modules/serve-static": {
"version": "1.16.3",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
- "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18275,8 +16008,6 @@
},
"node_modules/set-function-length": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
- "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18293,15 +16024,11 @@
},
"node_modules/setprototypeof": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
"dev": true,
"license": "ISC"
},
"node_modules/shallow-clone": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
- "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18313,15 +16040,11 @@
},
"node_modules/shallowequal": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
- "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
"dev": true,
"license": "MIT"
},
"node_modules/shebang-command": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18333,8 +16056,6 @@
},
"node_modules/shebang-regex": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18342,9 +16063,7 @@
}
},
"node_modules/shell-quote": {
- "version": "1.8.4",
- "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.4.tgz",
- "integrity": "sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==",
+ "version": "1.9.0",
"dev": true,
"license": "MIT",
"engines": {
@@ -18356,8 +16075,6 @@
},
"node_modules/side-channel": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
- "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18376,8 +16093,6 @@
},
"node_modules/side-channel-list": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
- "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18393,8 +16108,6 @@
},
"node_modules/side-channel-map": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18412,8 +16125,6 @@
},
"node_modules/side-channel-weakmap": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18432,15 +16143,11 @@
},
"node_modules/signal-exit": {
"version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
"dev": true,
"license": "ISC"
},
"node_modules/sirv": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz",
- "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18454,15 +16161,11 @@
},
"node_modules/sisteransi": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
"dev": true,
"license": "MIT"
},
"node_modules/sitemap": {
"version": "7.1.3",
- "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.3.tgz",
- "integrity": "sha512-tAjEd+wt/YwnEbfNB2ht51ybBJxbEWwe5ki/Z//Wh0rpBFTCUSj46GnxUKEWzhfuJTsee8x3lybHxFgUMig2hw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18481,15 +16184,11 @@
},
"node_modules/sitemap/node_modules/@types/node": {
"version": "17.0.45",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz",
- "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==",
"dev": true,
"license": "MIT"
},
"node_modules/skin-tone": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz",
- "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18501,8 +16200,6 @@
},
"node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18511,8 +16208,6 @@
},
"node_modules/snake-case": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz",
- "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18522,8 +16217,6 @@
},
"node_modules/sockjs": {
"version": "0.3.24",
- "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
- "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18534,8 +16227,6 @@
},
"node_modules/sort-css-media-queries": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz",
- "integrity": "sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18544,8 +16235,6 @@
},
"node_modules/source-map": {
"version": "0.7.6",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
- "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -18554,8 +16243,6 @@
},
"node_modules/source-map-js": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -18564,8 +16251,6 @@
},
"node_modules/source-map-support": {
"version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18575,8 +16260,6 @@
},
"node_modules/source-map-support/node_modules/source-map": {
"version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -18585,8 +16268,6 @@
},
"node_modules/space-separated-tokens": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
- "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
"dev": true,
"license": "MIT",
"funding": {
@@ -18596,8 +16277,6 @@
},
"node_modules/spdy": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
- "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18613,8 +16292,6 @@
},
"node_modules/spdy-transport": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
- "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18628,15 +16305,11 @@
},
"node_modules/sprintf-js": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/srcset": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz",
- "integrity": "sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18648,8 +16321,6 @@
},
"node_modules/statuses": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
- "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18658,15 +16329,11 @@
},
"node_modules/std-env": {
"version": "3.10.0",
- "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz",
- "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==",
"dev": true,
"license": "MIT"
},
"node_modules/string_decoder": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18675,8 +16342,6 @@
},
"node_modules/string-width": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18693,8 +16358,6 @@
},
"node_modules/string-width/node_modules/ansi-regex": {
"version": "6.2.2",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
- "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18706,8 +16369,6 @@
},
"node_modules/string-width/node_modules/strip-ansi": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
- "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18722,8 +16383,6 @@
},
"node_modules/stringify-entities": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
- "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18737,8 +16396,6 @@
},
"node_modules/stringify-object": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz",
- "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -18752,8 +16409,6 @@
},
"node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18765,8 +16420,6 @@
},
"node_modules/strip-bom-string": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18775,8 +16428,6 @@
},
"node_modules/strip-final-newline": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18785,8 +16436,6 @@
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18798,8 +16447,6 @@
},
"node_modules/style-to-js": {
"version": "1.1.21",
- "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
- "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18808,8 +16455,6 @@
},
"node_modules/style-to-object": {
"version": "1.0.14",
- "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
- "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18818,8 +16463,6 @@
},
"node_modules/stylehacks": {
"version": "6.1.1",
- "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz",
- "integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18835,8 +16478,6 @@
},
"node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18848,8 +16489,6 @@
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18861,15 +16500,11 @@
},
"node_modules/svg-parser": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
- "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==",
"dev": true,
"license": "MIT"
},
"node_modules/svgo": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.3.tgz",
- "integrity": "sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18894,8 +16529,6 @@
},
"node_modules/svgo/node_modules/commander": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18904,8 +16537,6 @@
},
"node_modules/svgo/node_modules/css-select": {
"version": "5.2.2",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz",
- "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -18921,8 +16552,6 @@
},
"node_modules/svgo/node_modules/dom-serializer": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
- "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18936,8 +16565,6 @@
},
"node_modules/svgo/node_modules/domhandler": {
"version": "5.0.3",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
- "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -18952,8 +16579,6 @@
},
"node_modules/svgo/node_modules/domutils": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
- "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -18967,8 +16592,6 @@
},
"node_modules/swc-loader": {
"version": "0.2.7",
- "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.7.tgz",
- "integrity": "sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18981,8 +16604,6 @@
},
"node_modules/tapable": {
"version": "2.3.3",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
- "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18995,8 +16616,6 @@
},
"node_modules/terser": {
"version": "5.48.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.48.0.tgz",
- "integrity": "sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -19014,8 +16633,6 @@
},
"node_modules/terser-webpack-plugin": {
"version": "5.6.1",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz",
- "integrity": "sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19075,8 +16692,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/jest-worker": {
"version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19090,8 +16705,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19106,15 +16719,11 @@
},
"node_modules/terser/node_modules/commander": {
"version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"dev": true,
"license": "MIT"
},
"node_modules/thingies": {
"version": "2.6.0",
- "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.6.0.tgz",
- "integrity": "sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19130,29 +16739,21 @@
},
"node_modules/thunky": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
- "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
"dev": true,
"license": "MIT"
},
"node_modules/tiny-invariant": {
"version": "1.3.3",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
- "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
"dev": true,
"license": "MIT"
},
"node_modules/tiny-warning": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz",
- "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==",
"dev": true,
"license": "MIT"
},
"node_modules/tinypool": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz",
- "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19161,8 +16762,6 @@
},
"node_modules/to-regex-range": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19174,8 +16773,6 @@
},
"node_modules/toidentifier": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19184,8 +16781,6 @@
},
"node_modules/totalist": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
- "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19194,8 +16789,6 @@
},
"node_modules/tree-dump": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz",
- "integrity": "sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -19211,8 +16804,6 @@
},
"node_modules/trim-lines": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
- "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
"dev": true,
"license": "MIT",
"funding": {
@@ -19222,8 +16813,6 @@
},
"node_modules/trough": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
- "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -19233,15 +16822,11 @@
},
"node_modules/tslib": {
"version": "2.8.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"dev": true,
"license": "0BSD"
},
"node_modules/tsyringe": {
"version": "4.10.0",
- "resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz",
- "integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19253,15 +16838,11 @@
},
"node_modules/tsyringe/node_modules/tslib": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"dev": true,
"license": "0BSD"
},
"node_modules/type-fest": {
"version": "2.19.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
- "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -19273,8 +16854,6 @@
},
"node_modules/type-is": {
"version": "1.6.18",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
- "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19287,8 +16866,6 @@
},
"node_modules/type-is/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19297,8 +16874,6 @@
},
"node_modules/type-is/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19310,8 +16885,6 @@
},
"node_modules/typedarray-to-buffer": {
"version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19319,16 +16892,12 @@
}
},
"node_modules/undici-types": {
- "version": "7.24.6",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
- "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
+ "version": "8.3.0",
"dev": true,
"license": "MIT"
},
"node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz",
- "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19337,8 +16906,6 @@
},
"node_modules/unicode-emoji-modifier-base": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz",
- "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19347,8 +16914,6 @@
},
"node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19361,8 +16926,6 @@
},
"node_modules/unicode-match-property-value-ecmascript": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz",
- "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19371,8 +16934,6 @@
},
"node_modules/unicode-property-aliases-ecmascript": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz",
- "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19381,8 +16942,6 @@
},
"node_modules/unified": {
"version": "11.0.5",
- "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
- "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19401,8 +16960,6 @@
},
"node_modules/unique-string": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz",
- "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19417,8 +16974,6 @@
},
"node_modules/unist-util-is": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
- "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19431,8 +16986,6 @@
},
"node_modules/unist-util-position": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
- "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19445,8 +16998,6 @@
},
"node_modules/unist-util-position-from-estree": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz",
- "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19459,8 +17010,6 @@
},
"node_modules/unist-util-stringify-position": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
- "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19473,8 +17022,6 @@
},
"node_modules/unist-util-visit": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
- "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19489,8 +17036,6 @@
},
"node_modules/unist-util-visit-parents": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
- "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19504,8 +17049,6 @@
},
"node_modules/universalify": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19514,8 +17057,6 @@
},
"node_modules/unpipe": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19524,8 +17065,6 @@
},
"node_modules/update-browserslist-db": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
- "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
"dev": true,
"funding": [
{
@@ -19555,8 +17094,6 @@
},
"node_modules/update-notifier": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz",
- "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -19584,8 +17121,6 @@
},
"node_modules/update-notifier/node_modules/boxen": {
"version": "7.1.1",
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz",
- "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19607,8 +17142,6 @@
},
"node_modules/update-notifier/node_modules/camelcase": {
"version": "7.0.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
- "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19620,8 +17153,6 @@
},
"node_modules/update-notifier/node_modules/chalk": {
"version": "5.6.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
- "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19633,8 +17164,6 @@
},
"node_modules/uri-js": {
"version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -19643,8 +17172,6 @@
},
"node_modules/url-loader": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
- "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19671,8 +17198,6 @@
},
"node_modules/url-loader/node_modules/ajv": {
"version": "6.15.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
- "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19688,8 +17213,6 @@
},
"node_modules/url-loader/node_modules/ajv-keywords": {
"version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -19698,15 +17221,11 @@
},
"node_modules/url-loader/node_modules/json-schema-traverse": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true,
"license": "MIT"
},
"node_modules/url-loader/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19715,8 +17234,6 @@
},
"node_modules/url-loader/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19728,8 +17245,6 @@
},
"node_modules/url-loader/node_modules/schema-utils": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19747,22 +17262,16 @@
},
"node_modules/util-deprecate": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
"dev": true,
"license": "MIT"
},
"node_modules/utila": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
- "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==",
"dev": true,
"license": "MIT"
},
"node_modules/utility-types": {
"version": "3.11.0",
- "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz",
- "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19771,8 +17280,6 @@
},
"node_modules/utils-merge": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19781,9 +17288,6 @@
},
"node_modules/uuid": {
"version": "8.3.2",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
- "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
- "deprecated": "uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).",
"dev": true,
"license": "MIT",
"bin": {
@@ -19792,15 +17296,11 @@
},
"node_modules/value-equal": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
- "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==",
"dev": true,
"license": "MIT"
},
"node_modules/vary": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19809,8 +17309,6 @@
},
"node_modules/vfile": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
- "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19824,8 +17322,6 @@
},
"node_modules/vfile-location": {
"version": "5.0.3",
- "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
- "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19839,8 +17335,6 @@
},
"node_modules/vfile-message": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
- "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19854,8 +17348,6 @@
},
"node_modules/watchpack": {
"version": "2.5.2",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.2.tgz",
- "integrity": "sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19867,8 +17359,6 @@
},
"node_modules/wbuf": {
"version": "1.7.3",
- "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
- "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19877,8 +17367,6 @@
},
"node_modules/web-namespaces": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
- "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -19887,9 +17375,7 @@
}
},
"node_modules/webpack": {
- "version": "5.107.2",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.107.2.tgz",
- "integrity": "sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ==",
+ "version": "5.108.1",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19902,19 +17388,18 @@
"acorn-import-phases": "^1.0.3",
"browserslist": "^4.28.1",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.22.0",
+ "enhanced-resolve": "^5.22.2",
"es-module-lexer": "^2.1.0",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.2.11",
"loader-runner": "^4.3.2",
"mime-db": "^1.54.0",
+ "minimizer-webpack-plugin": "^5.6.1",
"neo-async": "^2.6.2",
"schema-utils": "^4.3.3",
"tapable": "^2.3.0",
- "terser-webpack-plugin": "^5.5.0",
- "watchpack": "^2.5.1",
+ "watchpack": "^2.5.2",
"webpack-sources": "^3.5.0"
},
"bin": {
@@ -19935,8 +17420,6 @@
},
"node_modules/webpack-bundle-analyzer": {
"version": "4.10.2",
- "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz",
- "integrity": "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -19962,8 +17445,6 @@
},
"node_modules/webpack-bundle-analyzer/node_modules/commander": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19972,8 +17453,6 @@
},
"node_modules/webpack-dev-middleware": {
"version": "7.4.5",
- "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz",
- "integrity": "sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20002,8 +17481,6 @@
},
"node_modules/webpack-dev-middleware/node_modules/mime-db": {
"version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20012,8 +17489,6 @@
},
"node_modules/webpack-dev-middleware/node_modules/mime-types": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20028,19 +17503,19 @@
}
},
"node_modules/webpack-dev-middleware/node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "version": "1.3.0",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.6"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/webpack-dev-server": {
"version": "5.2.5",
- "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.5.tgz",
- "integrity": "sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20097,8 +17572,6 @@
},
"node_modules/webpack-dev-server/node_modules/define-lazy-prop": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
- "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20110,8 +17583,6 @@
},
"node_modules/webpack-dev-server/node_modules/open": {
"version": "10.2.0",
- "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz",
- "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20129,8 +17600,6 @@
},
"node_modules/webpack-dev-server/node_modules/ws": {
"version": "8.21.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
- "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20151,8 +17620,6 @@
},
"node_modules/webpack-merge": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz",
- "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20166,8 +17633,6 @@
},
"node_modules/webpack-sources": {
"version": "3.5.0",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.0.tgz",
- "integrity": "sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20176,8 +17641,6 @@
},
"node_modules/webpack/node_modules/mime-db": {
"version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20186,8 +17649,6 @@
},
"node_modules/webpackbar": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-7.0.0.tgz",
- "integrity": "sha512-aS9soqSO2iCHgqHoCrj4LbfGQUboDCYJPSFOAchEK+9psIjNrfSWW4Y0YEz67MKURNvMmfo0ycOg9d/+OOf9/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20214,8 +17675,6 @@
},
"node_modules/websocket-driver": {
"version": "0.7.5",
- "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.5.tgz",
- "integrity": "sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -20229,8 +17688,6 @@
},
"node_modules/websocket-extensions": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
- "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -20239,8 +17696,6 @@
},
"node_modules/which": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -20255,8 +17710,6 @@
},
"node_modules/widest-line": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
- "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20271,15 +17724,11 @@
},
"node_modules/wildcard": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz",
- "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==",
"dev": true,
"license": "MIT"
},
"node_modules/wrap-ansi": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20296,8 +17745,6 @@
},
"node_modules/wrap-ansi/node_modules/ansi-regex": {
"version": "6.2.2",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
- "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20309,8 +17756,6 @@
},
"node_modules/wrap-ansi/node_modules/ansi-styles": {
"version": "6.2.3",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
- "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20322,8 +17767,6 @@
},
"node_modules/wrap-ansi/node_modules/strip-ansi": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
- "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20338,8 +17781,6 @@
},
"node_modules/write-file-atomic": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -20351,8 +17792,6 @@
},
"node_modules/ws": {
"version": "7.5.11",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.11.tgz",
- "integrity": "sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20373,8 +17812,6 @@
},
"node_modules/wsl-utils": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz",
- "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20389,8 +17826,6 @@
},
"node_modules/wsl-utils/node_modules/is-wsl": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz",
- "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20405,8 +17840,6 @@
},
"node_modules/xdg-basedir": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz",
- "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20418,8 +17851,6 @@
},
"node_modules/xml-js": {
"version": "1.6.11",
- "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz",
- "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -20431,15 +17862,11 @@
},
"node_modules/yallist": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true,
"license": "ISC"
},
"node_modules/yocto-queue": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz",
- "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -20451,8 +17878,6 @@
},
"node_modules/zwitch": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
- "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
"dev": true,
"license": "MIT",
"funding": {
diff --git a/documentation/versioned_docs/version-1.13.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-1.13.0/config-store/ConfigStore/prototype/get.mdx
index ce1cef4b49..1835410d81 100644
--- a/documentation/versioned_docs/version-1.13.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-1.13.0/config-store/ConfigStore/prototype/get.mdx
@@ -4,7 +4,8 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# ConfigStore.prototype.get
@@ -13,7 +14,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -29,7 +30,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -86,12 +87,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/Dictionary.mdx b/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/Dictionary.mdx
index f3c058dc54..8774eefb87 100644
--- a/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/Dictionary.mdx
+++ b/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/Dictionary.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# `Dictionary()`
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
:::
@@ -41,7 +42,7 @@ A new `Dictionary` object.
- Thrown if no Dictionary exists with the provided name
- Thrown if the provided name is longer than 255 in length
- Thrown if the provided name is an empty string
- - Thrown if the provided name does not start with an ascii alphabetical character
+ - Thrown if the provided name does not start with an ascii alphabetical character
- Thrown if the provided name does not contain only ascii alphanumeric, underscore, and whitespace characters
## Examples
@@ -91,12 +92,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/prototype/get.mdx
index 9bdc33ae2e..9ccddf34b4 100644
--- a/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-1.13.0/dictionary/Dictionary/prototype/get.mdx
@@ -4,15 +4,16 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# Dictionary.prototype.get
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -21,7 +22,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -94,12 +95,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-1.13.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-1.13.0/globals/FetchEvent/FetchEvent.mdx
index 9e5e18d906..c8bb3f3858 100644
--- a/documentation/versioned_docs/version-1.13.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-1.13.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,25 +4,26 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : A [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - : Information about the downstream client that made the request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : A [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-2.5.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-2.5.0/config-store/ConfigStore/prototype/get.mdx
index ce1cef4b49..1835410d81 100644
--- a/documentation/versioned_docs/version-2.5.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-2.5.0/config-store/ConfigStore/prototype/get.mdx
@@ -4,7 +4,8 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# ConfigStore.prototype.get
@@ -13,7 +14,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -29,7 +30,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -86,12 +87,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/Dictionary.mdx b/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/Dictionary.mdx
index f3c058dc54..8774eefb87 100644
--- a/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/Dictionary.mdx
+++ b/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/Dictionary.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# `Dictionary()`
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
:::
@@ -41,7 +42,7 @@ A new `Dictionary` object.
- Thrown if no Dictionary exists with the provided name
- Thrown if the provided name is longer than 255 in length
- Thrown if the provided name is an empty string
- - Thrown if the provided name does not start with an ascii alphabetical character
+ - Thrown if the provided name does not start with an ascii alphabetical character
- Thrown if the provided name does not contain only ascii alphanumeric, underscore, and whitespace characters
## Examples
@@ -91,12 +92,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/prototype/get.mdx
index 9bdc33ae2e..9ccddf34b4 100644
--- a/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-2.5.0/dictionary/Dictionary/prototype/get.mdx
@@ -4,15 +4,16 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
-import {Fiddle} from '@site/src/components/fiddle';
+
+import { Fiddle } from '@site/src/components/fiddle';
# Dictionary.prototype.get
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -21,7 +22,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -94,12 +95,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-2.5.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-2.5.0/globals/FetchEvent/FetchEvent.mdx
index 9e5e18d906..c8bb3f3858 100644
--- a/documentation/versioned_docs/version-2.5.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-2.5.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,25 +4,26 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : A [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - : Information about the downstream client that made the request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : A [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.38.4/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.38.4/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.38.4/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.38.4/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.38.4/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.38.4/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.38.4/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.38.4/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.38.4/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.38.4/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.38.4/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.38.4/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.38.4/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.38.4/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.38.4/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.38.4/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.38.4/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.38.4/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.38.4/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.38.4/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.38.4/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.38.4/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.38.4/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.38.4/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.38.4/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.38.4/globals/fetch.mdx b/documentation/versioned_docs/version-3.38.4/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.38.4/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.38.4/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.0/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.39.0/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.39.0/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.39.0/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.0/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.39.0/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.39.0/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.39.0/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.39.0/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.39.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.0/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.39.0/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.39.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.0/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.39.0/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.39.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.39.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.39.0/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.39.0/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.39.0/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.39.0/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.39.0/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.0/globals/fetch.mdx b/documentation/versioned_docs/version-3.39.0/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.39.0/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.39.0/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.1/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.39.1/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.39.1/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.39.1/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.1/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.39.1/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.39.1/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.39.1/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.1/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.39.1/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.39.1/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.1/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.1/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.39.1/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.39.1/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.1/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.1/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.39.1/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.39.1/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.39.1/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.39.1/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.39.1/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.39.1/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.39.1/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.39.1/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.1/globals/fetch.mdx b/documentation/versioned_docs/version-3.39.1/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.39.1/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.39.1/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.2/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.39.2/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.39.2/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.39.2/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.2/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.39.2/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.39.2/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.39.2/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.2/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.39.2/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.39.2/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.2/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.2/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.39.2/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.39.2/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.2/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.2/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.39.2/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.39.2/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.39.2/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.39.2/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.39.2/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.39.2/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.39.2/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.39.2/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.2/globals/fetch.mdx b/documentation/versioned_docs/version-3.39.2/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.39.2/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.39.2/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.3/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.39.3/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.39.3/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.39.3/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.3/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.39.3/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.39.3/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.39.3/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.39.3/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.39.3/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.39.3/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.3/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.3/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.39.3/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.39.3/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.39.3/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.39.3/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.39.3/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.39.3/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.39.3/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.39.3/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.39.3/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.39.3/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.39.3/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.39.3/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.39.3/globals/fetch.mdx b/documentation/versioned_docs/version-3.39.3/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.39.3/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.39.3/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.40.0/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.40.0/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.40.0/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.40.0/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.40.0/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.40.0/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.40.0/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.40.0/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.40.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.40.0/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.40.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.40.0/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.40.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.40.0/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.40.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.40.0/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.40.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.40.0/globals/FetchEvent/FetchEvent.mdx
index b6f45447bf..affa64c108 100644
--- a/documentation/versioned_docs/version-3.40.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.40.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,49 +4,50 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.40.0/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.40.0/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.40.0/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.40.0/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.40.0/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.40.0/globals/fetch.mdx b/documentation/versioned_docs/version-3.40.0/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.40.0/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.40.0/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.40.1/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.40.1/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.40.1/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.40.1/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.40.1/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.40.1/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.40.1/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.40.1/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.40.1/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.40.1/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.40.1/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.40.1/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.40.1/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.40.1/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.40.1/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.40.1/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.40.1/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.40.1/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.40.1/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.40.1/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.40.1/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.40.1/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.40.1/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.40.1/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.40.1/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.40.1/globals/fetch.mdx b/documentation/versioned_docs/version-3.40.1/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.40.1/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.40.1/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.41.0/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.41.0/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.41.0/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.41.0/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.41.0/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.41.0/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.41.0/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.41.0/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.41.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.41.0/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.41.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.41.0/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.41.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.41.0/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.41.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.41.0/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.41.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.41.0/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.41.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.41.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.41.0/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.41.0/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.41.0/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.41.0/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.41.0/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.41.0/globals/fetch.mdx b/documentation/versioned_docs/version-3.41.0/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.41.0/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.41.0/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.41.2/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.41.2/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.41.2/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.41.2/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.41.2/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.41.2/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.41.2/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.41.2/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.41.2/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.41.2/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.41.2/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.41.2/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.41.2/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.41.2/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.41.2/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.41.2/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.41.2/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.41.2/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.41.2/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.41.2/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.41.2/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.41.2/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.41.2/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.41.2/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.41.2/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.41.2/globals/fetch.mdx b/documentation/versioned_docs/version-3.41.2/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.41.2/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.41.2/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.42.0/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.42.0/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.42.0/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.42.0/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.42.0/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.42.0/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.42.0/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.42.0/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.42.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.42.0/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.42.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.42.0/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.42.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.42.0/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.42.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.42.0/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.42.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.42.0/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.42.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.42.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.42.0/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.42.0/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.42.0/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.42.0/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.42.0/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.42.0/globals/fetch.mdx b/documentation/versioned_docs/version-3.42.0/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.42.0/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.42.0/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.42.1/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.42.1/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.42.1/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.42.1/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.42.1/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.42.1/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.42.1/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.42.1/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.42.1/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.42.1/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.42.1/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.42.1/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.42.1/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.42.1/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.42.1/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.42.1/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.42.1/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.42.1/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.42.1/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.42.1/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.42.1/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.42.1/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.42.1/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.42.1/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.42.1/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.42.1/globals/fetch.mdx b/documentation/versioned_docs/version-3.42.1/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.42.1/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.42.1/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.43.0/backend/Backend/Backend.mdx b/documentation/versioned_docs/version-3.43.0/backend/Backend/Backend.mdx
index 7eb81130a4..6e52340125 100644
--- a/documentation/versioned_docs/version-3.43.0/backend/Backend/Backend.mdx
+++ b/documentation/versioned_docs/version-3.43.0/backend/Backend/Backend.mdx
@@ -9,14 +9,14 @@ pagination_prev: null
The **`Backend` constructor** lets you dynamically create new [Fastly Backends](https://developer.fastly.com/reference/api/services/backend/) for your Fastly Compute service.
->**Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
+> **Note**: Dynamic backends are by default disabled at the Fastly service level. Contact [Fastly Support](https://support.fastly.com/hc/en-us/requests/new?ticket_form_id=360000269711) to request dynamic backends on Fastly Services.
To disable the usage of dynamic backends, see [enforceExplicitBackends](../enforceExplicitBackends.mdx).
## Syntax
```js
-new Backend(backendConfiguration)
+new Backend(backendConfiguration);
```
> **Note:** `Backend()` can only be constructed with `new`. Attempting to call it without `new` throws a [`TypeError`](../../globals/TypeError/TypeError.mdx).
@@ -86,7 +86,7 @@ new Backend(backendConfiguration)
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -99,7 +99,7 @@ new Backend(backendConfiguration)
- Number of probes to send to the backend before it is considered dead.
- `grpc` _: boolean_ _**optional**_
- **_Experimental feature_**
- - When enabled, sets that this backend is to be used for gRPC traffic.
+ - When enabled, sets that this backend is to be used for gRPC traffic.
- _Warning: When using this experimental feature, no guarantees are provided for behaviours for backends that do not provide gRPC traffic._
All optional generic options can have their defaults set via [`setDefaultDynamicBackendConfig()`](../setDefaultDynamicBackendConfig.mdx).
@@ -163,13 +163,13 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Backend } from "fastly:backend";
+import { Backend } from 'fastly:backend';
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com",
+ hostOverride: 'www.fastly.com',
connectTimeout: 1000,
firstByteTimeout: 15000,
betweenBytesTimeout: 10000,
@@ -178,10 +178,10 @@ async function app() {
tlsMaxVersion: 1.3,
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.43.0/backend/setDefaultDynamicBackendConfig.mdx b/documentation/versioned_docs/version-3.43.0/backend/setDefaultDynamicBackendConfig.mdx
index 7dc81863b0..5db8b780d0 100644
--- a/documentation/versioned_docs/version-3.43.0/backend/setDefaultDynamicBackendConfig.mdx
+++ b/documentation/versioned_docs/version-3.43.0/backend/setDefaultDynamicBackendConfig.mdx
@@ -58,7 +58,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
- `certificate` _: string_
- The PEM certificate string.
- `key` _: SecretStoreEntry_
- - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
+ - The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](pathname://../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](pathname://../fastly:secret-store/SecretStore/fromBytes.mdx).
- `httpKeepalive` _: number_ _**optional**_
- Enable HTTP keepalive, setting the timout in milliseconds.
- `tcpKeepalive` _: boolean | object_ _**optional**_
@@ -73,7 +73,7 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
## Syntax
```js
-setDefaultDynamicBackendConfig(defaultConfig)
+setDefaultDynamicBackendConfig(defaultConfig);
```
### Return value
@@ -84,7 +84,6 @@ None.
In this example an explicit Dynamic Backend is created and supplied to the fetch request, with timeouts and TLS options provided from the default backend configuration options.
-
event.respondWith(app(event)));
```js
///
-import { allowDynamicBackends } from "fastly:experimental";
-import { Backend } from "fastly:backend";
+import { allowDynamicBackends } from 'fastly:experimental';
+import { Backend } from 'fastly:backend';
allowDynamicBackends(true);
setDefaultDynamicBackendConfig({
connectTimeout: 1000,
@@ -148,20 +147,20 @@ setDefaultDynamicBackendConfig({
betweenBytesTimeout: 10_000,
useSSL: true,
sslMinVersion: 1.3,
- sslMaxVersion: 1.3
+ sslMaxVersion: 1.3,
});
async function app() {
// For any request, return the fastly homepage -- without defining a backend!
const backend = new Backend({
name: 'fastly',
target: 'fastly.com',
- hostOverride: "www.fastly.com"
+ hostOverride: 'www.fastly.com',
});
return fetch('https://www.fastly.com/', {
- backend // Here we are configuring this request to use the backend from above.
+ backend, // Here we are configuring this request to use the backend from above.
});
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
diff --git a/documentation/versioned_docs/version-3.43.0/config-store/ConfigStore/prototype/get.mdx b/documentation/versioned_docs/version-3.43.0/config-store/ConfigStore/prototype/get.mdx
index efa38f84a7..4c4fa4a10f 100644
--- a/documentation/versioned_docs/version-3.43.0/config-store/ConfigStore/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.43.0/config-store/ConfigStore/prototype/get.mdx
@@ -12,7 +12,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -28,7 +28,7 @@ A `string` representing the specified ConfigStore value or `null` if the key doe
Get a value for a key in the config-store. If the provided key does not exist in the ConfigStore then this returns `null`.
-The `get()` method requires its `this` value to be a [`ConfigStore`](../../../fastly%3Aconfig-store/ConfigStore/ConfigStore.mdx) object.
+The `get()` method requires its `this` value to be a [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) object.
If the `this` value does not inherit from `ConfigStore.prototype`, a [`TypeError`](../../../globals/TypeError/TypeError.mdx) is thrown.
@@ -85,12 +85,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { ConfigStore } from "fastly:config-store";
-async function app (event) {
+import { ConfigStore } from 'fastly:config-store';
+async function app(event) {
const config = new ConfigStore('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.43.0/dictionary/Dictionary/prototype/get.mdx b/documentation/versioned_docs/version-3.43.0/dictionary/Dictionary/prototype/get.mdx
index d4d166844a..73da5f6053 100644
--- a/documentation/versioned_docs/version-3.43.0/dictionary/Dictionary/prototype/get.mdx
+++ b/documentation/versioned_docs/version-3.43.0/dictionary/Dictionary/prototype/get.mdx
@@ -9,9 +9,9 @@ pagination_prev: null
:::info
-This Class is deprecated, it has been renamed to [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
+This Class is deprecated, it has been renamed to [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) and can be imported via `import { ConfigStore } from 'fastly:config-store'`
-The `get()` method exists on the [`ConfigStore`](../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
+The `get()` method exists on the [`ConfigStore`](pathname://../../../fastly:config-store/ConfigStore/ConfigStore.mdx) Class.
:::
@@ -20,7 +20,7 @@ The **`get()`** method returns the value associated with the provided key in the
## Syntax
```js
-get(key)
+get(key);
```
### Parameters
@@ -93,12 +93,12 @@ addEventListener("fetch", event => event.respondWith(app(event)));
```js
///
-import { Dictionary } from "fastly:dictionary";
-async function app (event) {
+import { Dictionary } from 'fastly:dictionary';
+async function app(event) {
const config = new Dictionary('animals');
return new Response(config.get('cat'));
}
-addEventListener("fetch", event => event.respondWith(app(event)));
+addEventListener('fetch', (event) => event.respondWith(app(event)));
```
-
\ No newline at end of file
+
diff --git a/documentation/versioned_docs/version-3.43.0/globals/FetchEvent/FetchEvent.mdx b/documentation/versioned_docs/version-3.43.0/globals/FetchEvent/FetchEvent.mdx
index 833dbe52d3..3828c9075e 100644
--- a/documentation/versioned_docs/version-3.43.0/globals/FetchEvent/FetchEvent.mdx
+++ b/documentation/versioned_docs/version-3.43.0/globals/FetchEvent/FetchEvent.mdx
@@ -4,51 +4,52 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# FetchEvent
-This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
+This is the event type for `fetch` events. It contains information about the fetch, including the request and how the receiver will treat the response.
It provides the [`event.respondWith()`](./prototype/respondWith.mdx) method, which allows us to provide a response to this fetch.
## Instance properties
- `FetchEvent.request` _**readonly**_
- - : The `Request` that was received by the application.
+ - : The `Request` that was received by the application.
- `FetchEvent.client` _**readonly**_
- - : Information about the downstream client that made the request.
- While these fields are always defined on Compute, they may be *null* when not available in testing environments
- such as Viceroy.
- - `FetchEvent.client.requestId` _**readonly**_
- - : A UUID generated by Compute for each request.
- - `FetchEvent.client.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the downstream client.
- - `FetchEvent.client.geo` _**readonly**_
- - : Either `null`, or a [geolocation dictionary](../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
- - `FetchEvent.client.tlsJA3MD5` _**readonly**_
- - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
- - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
- - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
- - `FetchEvent.client.tlsProtocol` _**readonly**_
- - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
- - `FetchEvent.client.tlsClientCertificate` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
- - `FetchEvent.client.tlsClientHello` _**readonly**_
- - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
- - `FetchEvent.client.tlsJA4` _**readonly**_
- - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
- - `FetchEvent.client.h2Fingerprint` _**readonly**_
- - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
- - `FetchEvent.client.ohFingerprint` _**readonly**_
- - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
+ - : Information about the downstream client that made the request.
+ While these fields are always defined on Compute, they may be _null_ when not available in testing environments
+ such as Viceroy.
+ - `FetchEvent.client.requestId` _**readonly**_
+ - : A UUID generated by Compute for each request.
+ - `FetchEvent.client.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the downstream client.
+ - `FetchEvent.client.geo` _**readonly**_
+ - : Either `null`, or a [geolocation dictionary](pathname://../../fastly:geolocation/getGeolocationForIpAddress.mdx) corresponding to the IP address of the downstream client.
+ - `FetchEvent.client.tlsJA3MD5` _**readonly**_
+ - : Either `null` or a string representation of the JA3 hash of the TLS ClientHello message.
+ - `FetchEvent.client.tlsCipherOpensslName` _**readonly**_
+ - : Either `null` or a string representation of the cipher suite used to secure the client TLS connection.
+ - `FetchEvent.client.tlsProtocol` _**readonly**_
+ - : Either `null` or a string representation of the TLS protocol version used to secure the client TLS connection.
+ - `FetchEvent.client.tlsClientCertificate` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw client certificate in the mutual TLS handshake message. It is in PEM format. Returns an empty ArrayBuffer if this is not mTLS or available.
+ - `FetchEvent.client.tlsClientHello` _**readonly**_
+ - : Either `null` or an ArrayBuffer containing the raw bytes sent by the client in the TLS ClientHello message.
+ - `FetchEvent.client.tlsJA4` _**readonly**_
+ - : Either `null` or a string representation of the JA4 fingerprint of the TLS ClientHello message.
+ - `FetchEvent.client.h2Fingerprint` _**readonly**_
+ - : Either `null` or a string representation of the HTTP/2 fingerprint for HTTP/2 connections. Returns `null` for HTTP/1.1 connections.
+ - `FetchEvent.client.ohFingerprint` _**readonly**_
+ - : Either `null` or a string representation of the Original Header fingerprint based on the order and presence of request headers.
- `FetchEvent.server` _**readonly**_
- - : Information about the server receiving the request for the Fastly Compute service.
- - `FetchEvent.server.address` _**readonly**_
- - : A string representation of the IPv4 or IPv6 address of the server which received the request.
+ - : Information about the server receiving the request for the Fastly Compute service.
+ - `FetchEvent.server.address` _**readonly**_
+ - : A string representation of the IPv4 or IPv6 address of the server which received the request.
## Instance methods
- [`FetchEvent.respondWith()`](./prototype/respondWith.mdx)
- - : Provide (a promise for) a response for this request.
+ - : Provide (a promise for) a response for this request.
- [`FetchEvent.sendEarlyHints()`](./prototype/sendEarlyHints.mdx)
- - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
+ - : Send a [103 Early Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/103) response for this request.
- [`FetchEvent.waitUntil()`](./prototype/waitUntil.mdx)
- - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
+ - : Extends the lifetime of the event. Used to notify the host environment of tasks that extend beyond the returning of a response, such as streaming and caching.
diff --git a/documentation/versioned_docs/version-3.43.0/globals/Request/Request.mdx b/documentation/versioned_docs/version-3.43.0/globals/Request/Request.mdx
index 2d450ee1fb..8c7498105c 100644
--- a/documentation/versioned_docs/version-3.43.0/globals/Request/Request.mdx
+++ b/documentation/versioned_docs/version-3.43.0/globals/Request/Request.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Request()
The **`Request()`** constructor creates a new
@@ -12,8 +13,8 @@ The **`Request()`** constructor creates a new
## Syntax
```js
-new Request(input)
-new Request(input, options)
+new Request(input);
+new Request(input, options);
```
### Parameters
@@ -39,7 +40,7 @@ new Request(input, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, a `ReadableStream` object, a [`Blob`](../../globals/Blob/Blob.mdx) object, or a [`FormData`](../../globals/FormData/FormData.mdx) object.
- `backend` _**Fastly-specific**_
- - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
+ - `cacheOverride` _**Fastly-specific**_, see [`CacheOverride`](pathname://../../fastly:cache-override/CacheOverride/CacheOverride.mdx).
- `cacheKey` _**Fastly-specific**_
- `manualFramingHeaders`_: boolean_ _**optional**_ _**Fastly-specific**_
- : The default value is `false`, which means that the framing headers are automatically created based on the message body.
@@ -51,4 +52,4 @@ new Request(input, options)
If a `Content-Length` is permitted by the specification, but the value does not match the size of the actual body, the body will either be truncated (if it is too long), or the connection will be hung up early (if it is too short).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- - Whether to automatically gzip decompress the Response or not.
\ No newline at end of file
+ - Whether to automatically gzip decompress the Response or not.
diff --git a/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/ip.mdx b/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/ip.mdx
index e028e2de2f..111290b74f 100644
--- a/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/ip.mdx
+++ b/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/ip.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.ip
The **`ip`** getter of the `Response` interface returns the IP address associated with the request, as either an IPv6 or IPv4 string.
In the case where no IP address is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with an IP, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with an IP, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/port.mdx b/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/port.mdx
index 81ac10da16..c98d88fb93 100644
--- a/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/port.mdx
+++ b/documentation/versioned_docs/version-3.43.0/globals/Response/prototype/port.mdx
@@ -4,13 +4,14 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# Response.port
The **`port`** getter of the `Response` interface returns the port associated with the request, as a number.
In the case where no port is available (say the response is cached, or was manually created), `undefined` will be returned.
-To ensure an origin request with a port, pass a [`CacheOverride`](../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
+To ensure an origin request with a port, pass a [`CacheOverride`](pathname://../../../fastly:cache-override/CacheOverride/CacheOverride.mdx) value.
## Value
diff --git a/documentation/versioned_docs/version-3.43.0/globals/fetch.mdx b/documentation/versioned_docs/version-3.43.0/globals/fetch.mdx
index 6b9170d39f..a956d0a820 100644
--- a/documentation/versioned_docs/version-3.43.0/globals/fetch.mdx
+++ b/documentation/versioned_docs/version-3.43.0/globals/fetch.mdx
@@ -4,6 +4,7 @@ hide_table_of_contents: false
pagination_next: null
pagination_prev: null
---
+
# fetch()
The global **`fetch()`** method starts the process of fetching a
@@ -41,13 +42,13 @@ Dynamic backends are a compute feature that allow services to define backends fo
If the `backend` option is not provided when making `fetch()` requests, a backend will be automatically created by extracting the protocol, host, and port from the provided URL.
-In addition, custom backend configuration options can then also be provided through the [`Backend()`](../fastly:backend/Backend/Backend.mdx) constructor.
+In addition, custom backend configuration options can then also be provided through the [`Backend()`](pathname://../fastly:backend/Backend/Backend.mdx) constructor.
## Syntax
```js
-fetch(resource)
-fetch(resource, options)
+fetch(resource);
+fetch(resource, options);
```
### Parameters
@@ -73,10 +74,10 @@ fetch(resource, options)
- `body`
- : Any body that you want to add to your request: this can be an `ArrayBuffer`, a `TypedArray`, a `DataView`, a `URLSearchParams`, string object or literal, or a `ReadableStream` object.
- `backend` _**Fastly-specific**_
- - *Fastly-specific*
+ - _Fastly-specific_
- `cacheOverride` _**Fastly-specific**_
- `cacheKey` _**Fastly-specific**_
- - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](../fastly:image-optimizer/imageOptimizerOptions.mdx).
+ - `imageOptimizerOptions` _**Fastly-specific**_, see [`imageOptimizerOptions`](pathname://../fastly:image-optimizer/imageOptimizerOptions.mdx).
- `fastly` _**Fastly-specific**_
- `decompressGzip`_: boolean_ _**optional**_
- Whether to automatically gzip decompress the Response or not.
diff --git a/integration-tests/js-compute/fixtures/app/src/cache-override.js b/integration-tests/js-compute/fixtures/app/src/cache-override.js
index 89ca275795..90f56bf529 100644
--- a/integration-tests/js-compute/fixtures/app/src/cache-override.js
+++ b/integration-tests/js-compute/fixtures/app/src/cache-override.js
@@ -170,6 +170,8 @@ import { isRunningLocally, routes } from './routes.js';
}
});
routes.set('/cache-override/fetch/null-304-body', async (event) => {
+ if (isRunningLocally()) return;
+
const resp = await fetch(
new Request('https://http-me.fastly.dev/body=foo?status=304', {
method: 'POST',
diff --git a/integration-tests/js-compute/fixtures/app/src/request-clone.js b/integration-tests/js-compute/fixtures/app/src/request-clone.js
index 1cbc2c3a9e..982ecf249d 100644
--- a/integration-tests/js-compute/fixtures/app/src/request-clone.js
+++ b/integration-tests/js-compute/fixtures/app/src/request-clone.js
@@ -46,6 +46,36 @@ routes.set('/request/clone/valid', async () => {
assert(newRequest.bodyUsed, false, 'newRequest.bodyUsed');
assert(newRequest.body, null, 'newRequest.body');
});
+routes.set('/request/clone/headers-are-independent', () => {
+ const request = new Request('https://www.fastly.com', {
+ headers: { 'x-foo': 'original' },
+ method: 'get',
+ });
+ const cloned = request.clone();
+
+ // Mutating the clone's headers must not affect the original
+ cloned.headers.set('x-foo', 'mutated');
+ assert(
+ request.headers.get('x-foo'),
+ 'original',
+ 'original header unchanged after mutating clone',
+ );
+
+ // Mutating the original's headers must not affect the clone
+ request.headers.set('x-bar', 'added');
+ assert(
+ cloned.headers.get('x-bar'),
+ null,
+ 'clone does not see header added to original',
+ );
+
+ // Clone must carry the headers that existed at clone time
+ assert(
+ cloned.headers.get('x-foo'),
+ 'mutated',
+ 'clone has header value set on it',
+ );
+});
routes.set('/request/clone/invalid', async () => {
const request = new Request('https://www.fastly.com', {
headers: {
diff --git a/integration-tests/js-compute/fixtures/app/tests.json b/integration-tests/js-compute/fixtures/app/tests.json
index beaa9e61be..0ab6adebd9 100644
--- a/integration-tests/js-compute/fixtures/app/tests.json
+++ b/integration-tests/js-compute/fixtures/app/tests.json
@@ -1222,6 +1222,7 @@
"GET /request/clone/called-as-constructor": {},
"GET /request/clone/called-unbound": {},
"GET /request/clone/valid": {},
+ "GET /request/clone/headers-are-independent": {},
"GET /request/clone/invalid": {},
"POST /request/body-async-simple/no-workaround": {
"environments": ["viceroy", "compute"],
diff --git a/integration-tests/js-compute/fixtures/reusable-sandboxes/src/dynamic-backend.js b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/dynamic-backend.js
new file mode 100644
index 0000000000..be4552b636
--- /dev/null
+++ b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/dynamic-backend.js
@@ -0,0 +1,18 @@
+///
+import { Backend } from 'fastly:backend';
+import { assert } from './assertions.js';
+import { isRunningLocally, routes } from './routes.js';
+
+routes.set('/backend/ephemeral', async () => {
+ if (isRunningLocally()) {
+ return;
+ }
+ assert(!Backend.exists('ephemeral'));
+ new Backend({
+ name: 'ephemeral',
+ target: 'http-me.fastly.dev',
+ hostOverride: 'http-me.fastly.dev',
+ useSSL: true,
+ });
+ assert(Backend.exists('ephemeral'));
+});
diff --git a/integration-tests/js-compute/fixtures/reusable-sandboxes/src/index.js b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/index.js
index 00faeb4372..21dee146fd 100644
--- a/integration-tests/js-compute/fixtures/reusable-sandboxes/src/index.js
+++ b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/index.js
@@ -9,6 +9,7 @@ import { setReusableSandboxOptions } from 'fastly:experimental';
setReusableSandboxOptions({ maxRequests: 9001 });
+import './dynamic-backend.js';
import './interleave.js';
addEventListener('fetch', (event) => {
diff --git a/integration-tests/js-compute/fixtures/reusable-sandboxes/src/interleave.js b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/interleave.js
index e976f4f4fb..257b372b8f 100644
--- a/integration-tests/js-compute/fixtures/reusable-sandboxes/src/interleave.js
+++ b/integration-tests/js-compute/fixtures/reusable-sandboxes/src/interleave.js
@@ -11,6 +11,9 @@ import { CacheOverride } from 'fastly:cache-override';
import { getGeolocationForIpAddress } from 'fastly:geolocation';
import { createFanoutHandoff } from 'fastly:fanout';
import { routes } from './routes.js';
+import { enableDebugLogging } from 'fastly:experimental';
+
+enableDebugLogging(true);
function timeout(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
diff --git a/integration-tests/js-compute/fixtures/reusable-sandboxes/tests.json b/integration-tests/js-compute/fixtures/reusable-sandboxes/tests.json
index 949059d38d..ed496cdcc0 100644
--- a/integration-tests/js-compute/fixtures/reusable-sandboxes/tests.json
+++ b/integration-tests/js-compute/fixtures/reusable-sandboxes/tests.json
@@ -99,5 +99,18 @@
"QuuxName": "QuuxValue"
}
}
+ },
+
+ "session #3, request #1: GET /backend/ephemeral": {
+ "downstream_request": {
+ "method": "GET",
+ "pathname": "/backend/ephemeral"
+ }
+ },
+ "session #3, request #2: GET /backend/ephemeral": {
+ "downstream_request": {
+ "method": "GET",
+ "pathname": "/backend/ephemeral"
+ }
}
}
diff --git a/integration-tests/js-compute/test.js b/integration-tests/js-compute/test.js
index 4749c1a2a1..575f3427d8 100755
--- a/integration-tests/js-compute/test.js
+++ b/integration-tests/js-compute/test.js
@@ -31,10 +31,35 @@ async function killPortProcess(port) {
const startTime = Date.now();
const __dirname = dirname(fileURLToPath(import.meta.url));
-async function sleep(seconds) {
- return new Promise((resolve) => {
- setTimeout(resolve, 1_000 * seconds);
- });
+const green = '\u001b[32m';
+const red = '\u001b[31m';
+const reset = '\u001b[0m';
+const white = '\u001b[39m';
+const info = '\u2139';
+const tick = '\u2714';
+const cross = '\u2716';
+
+function appendBuildFlag(config, flag) {
+ const buildArgs = config.scripts.build.split(' ');
+ buildArgs.splice(-1, null, flag);
+ config.scripts.build = buildArgs.join(' ');
+}
+
+async function resolveFastlyApiToken() {
+ try {
+ zx.verbose = false;
+ process.env.FASTLY_API_TOKEN = String(
+ await $`fastly auth show --reveal | grep 'Token:' | cut -d ' ' -f2-`,
+ ).trim();
+ } catch {
+ console.error(
+ 'No environment variable named FASTLY_API_TOKEN has been set and no default fastly profile exists.',
+ );
+ console.error(
+ 'In order to run the tests, either create a fastly profile using `fastly profile create` or export a fastly token under the name FASTLY_API_TOKEN',
+ );
+ process.exit(1);
+ }
}
let args = argv.slice(2);
@@ -54,20 +79,7 @@ const bail = args.includes('--bail');
const ci = args.includes('--ci');
if (!local && process.env.FASTLY_API_TOKEN === undefined) {
- try {
- zx.verbose = false;
- process.env.FASTLY_API_TOKEN = String(
- await $`fastly auth show --reveal | grep 'Token:' | cut -d ' ' -f2-`,
- ).trim();
- } catch {
- console.error(
- 'No environment variable named FASTLY_API_TOKEN has been set and no default fastly profile exists.',
- );
- console.error(
- 'In order to run the tests, either create a fastly profile using `fastly profile create` or export a fastly token under the name FASTLY_API_TOKEN',
- );
- process.exit(1);
- }
+ await resolveFastlyApiToken();
}
const FASTLY_API_TOKEN = process.env.FASTLY_API_TOKEN;
@@ -76,11 +88,7 @@ const branchName = (await zx`git branch --show-current`).stdout
.trim()
.replace(/[^a-zA-Z0-9_-]/g, '_');
-var fixture = 'app';
-
-if (fixtureArg !== undefined) {
- fixture = fixtureArg.split('=')[1];
-}
+const fixture = fixtureArg !== undefined ? fixtureArg.split('=')[1] : 'app';
// Service names are carefully unique to support parallel runs
const serviceName = `${GLOBAL_PREFIX}app-${branchName}${aot ? '--aot' : ''}${httpCache ? '--http' : ''}${process.env.SUFFIX_STRING ? '--' + process.env.SUFFIX_STRING : ''}`;
@@ -114,27 +122,228 @@ const config = TOML.parse(
),
);
config.name = serviceName;
-if (aot) {
- const buildArgs = config.scripts.build.split(' ');
- buildArgs.splice(-1, null, '--enable-aot');
- config.scripts.build = buildArgs.join(' ');
-}
-if (debugBuild) {
- const buildArgs = config.scripts.build.split(' ');
- buildArgs.splice(-1, null, '--debug-build');
- config.scripts.build = buildArgs.join(' ');
-}
-if (httpCache) {
- const buildArgs = config.scripts.build.split(' ');
- buildArgs.splice(-1, null, '--enable-http-cache');
- config.scripts.build = buildArgs.join(' ');
-}
+if (aot) appendBuildFlag(config, '--enable-aot');
+if (debugBuild) appendBuildFlag(config, '--debug-build');
+if (httpCache) appendBuildFlag(config, '--enable-http-cache');
await writeFile(
join(fixturePath, 'fastly.toml'),
TOML.stringify(config),
'utf-8',
);
+async function waitUntilServiceReady() {
+ // Local uses a hand-tuned backoff since we expect the build to take ~10s.
+ const localReadyBackoff = [
+ 6000, 3000, 1500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500,
+ 500, 500, 500, 500, 500, 500, 500, 500,
+ // after >20s the build is unusually slow; start backing off before timeout
+ 1500, 3000, 6000, 12000, 24000,
+ ].values();
+
+ await Promise.all([
+ retry(
+ 27,
+ local ? localReadyBackoff : expBackoff('60s', '10s'),
+ async () => {
+ const response = await request(domain);
+ if (response.statusCode !== 200) {
+ throw new Error(
+ `Application "${fixture}" :: Not yet available on domain: ${domain}`,
+ );
+ }
+ },
+ ),
+ // we need to wait for the service resource links to all activate,
+ // and we don't currently have a reliable way to poll on that
+ local ? null : new Promise((resolve) => setTimeout(resolve, 60_000)),
+ ]);
+}
+
+async function teardownRemoteService() {
+ const teardownPath = join(__dirname, 'teardown.js');
+ if (existsSync(teardownPath)) {
+ core.startGroup('Tear down the extra set-up for the service');
+ await zx`${teardownPath} ${serviceId} ${ci ? serviceName : ''}`;
+ core.endGroup();
+ }
+ core.startGroup('Delete service');
+ try {
+ await $`fastly service delete --quiet --service-name "${serviceName}" --force --token $FASTLY_API_TOKEN`;
+ } catch (e) {
+ console.log('Failed to delete service:', e.message);
+ }
+ core.endGroup();
+}
+
+function chunks(arr, size) {
+ const output = [];
+ for (let i = 0; i < arr.length; i += size) {
+ output.push(arr.slice(i, i + size));
+ }
+ return output;
+}
+
+async function getBodyChunks(response, bodyStreaming) {
+ const bodyChunks = [];
+ let readChunks = async () => {
+ switch (bodyStreaming) {
+ case 'first-chunk-only':
+ for await (const chunk of response.body) {
+ bodyChunks.push(chunk);
+ response.body.on('error', () => {});
+ break;
+ }
+ break;
+ case 'none':
+ response.body.on('error', () => {});
+ break;
+ case 'full':
+ default:
+ for await (const chunk of response.body) {
+ bodyChunks.push(chunk);
+ }
+ }
+ };
+ let downstreamTimeout;
+ let timeoutPromise = new Promise((_, reject) => {
+ downstreamTimeout = setTimeout(() => {
+ reject(new Error(`Test downstream response body chunk timeout`));
+ }, 30_000);
+ });
+ await Promise.race([readChunks(), timeoutPromise]);
+ clearTimeout(downstreamTimeout);
+ return bodyChunks;
+}
+
+async function runLocalTest(title, test) {
+ const url = `${domain}${test.downstream_request.pathname}`;
+ return (bail || !test.flake ? (_, __, fn) => fn() : retry)(
+ 5,
+ expBackoff('10s', '1s'),
+ async () => {
+ try {
+ const response = await request(url, {
+ method: test.downstream_request.method || 'GET',
+ headers: test.downstream_request.headers || undefined,
+ body: test.downstream_request.body || undefined,
+ });
+ const bodyChunks = await getBodyChunks(response, test.body_streaming);
+ await compareDownstreamResponse(
+ test.downstream_response,
+ response,
+ bodyChunks,
+ );
+ return { title, test, skipped: false };
+ } catch (error) {
+ console.error('\n' + test.downstream_request.pathname);
+ throw new Error(`${title} ${error.message}`, { cause: error });
+ }
+ },
+ );
+}
+
+async function runComputeTest(title, test) {
+ const url = `${domain}${test.downstream_request.pathname}`;
+ const onInfo = test.downstream_info
+ ? async (status, headers) => {
+ if (
+ test.downstream_info.status !== undefined &&
+ test.downstream_info.status != status
+ ) {
+ throw new Error(
+ `[DownstreamInfo: Status mismatch] Expected: ${test.downstream_info.status} - Got: ${status}`,
+ );
+ }
+ if (headers) {
+ compareHeaders(
+ test.downstream_info.headers,
+ headers,
+ test.downstream_info.headersExhaustive,
+ );
+ }
+ }
+ : undefined;
+
+ return retry(
+ test.flake ? 15 : bail ? 1 : 4,
+ expBackoff(test.flake ? '60s' : '30s', test.flake ? '30s' : '1s'),
+ async () => {
+ try {
+ const response = await request(url, {
+ method: test.downstream_request.method || 'GET',
+ headers: test.downstream_request.headers || undefined,
+ body: test.downstream_request.body || undefined,
+ onInfo,
+ });
+ const bodyChunks = await getBodyChunks(response, test.body_streaming);
+ await compareDownstreamResponse(
+ test.downstream_response,
+ response,
+ bodyChunks,
+ );
+ return { title, test, skipped: false };
+ } catch (error) {
+ console.error('\n' + test.downstream_request.pathname);
+ throw new Error(`${title} ${error.message}`);
+ }
+ },
+ );
+}
+
+async function runTest(title, test) {
+ // Apply defaults
+ if (!test.downstream_request) {
+ const [method, pathname, extra] = title.split(' ');
+ if (typeof extra === 'string')
+ throw new Error('Cannot infer downstream_request from title');
+ test.downstream_request = { method, pathname };
+ }
+ if (!test.downstream_response) {
+ test.downstream_response = { status: 200 };
+ }
+ if (!test.environments) {
+ test.environments = ['viceroy', 'compute'];
+ }
+
+ // Basic test filtering
+ if (
+ test.skip ||
+ (filter.length > 0 && filter.every((f) => !title.includes(f)))
+ ) {
+ return {
+ title,
+ test,
+ skipped: true,
+ skipReason: test.skip ? 'MARKED AS SKIPPED (pending further work)' : null,
+ };
+ }
+
+ // Feature-based test filtering
+ if (
+ (!httpCache && test.features?.includes('http-cache')) ||
+ (httpCache && test.features?.includes('skip-http-cache'))
+ ) {
+ return {
+ title,
+ test,
+ skipped: true,
+ skipReason: `feature "http-cache" ${httpCache ? '' : 'not '}"enabled`,
+ };
+ }
+
+ if (local) {
+ if (!test.environments.includes('viceroy')) {
+ return { title, test, skipped: true, skipReason: 'no environments' };
+ }
+ return runLocalTest(title, test);
+ } else {
+ if (!test.environments.includes('compute')) {
+ return { title, test, skipped: true, skipReason: 'no environments' };
+ }
+ return runComputeTest(title, test);
+ }
+}
+
let passed = 0;
const failed = [];
try {
@@ -152,17 +361,15 @@ try {
// It can take time for the new domain to show up on the list.
await Promise.all([
- (async () => {
- await retry(27, expBackoff('60s', '10s'), async () => {
- // get the public domain of the deployed application
- const domainListing = JSON.parse(
- await $`fastly service domain list --quiet --version latest --json`,
- )[0];
- domain = `https://${domainListing.Name}`;
- serviceId = domainListing.ServiceID;
- core.notice(`Service is running on ${domain}`);
- });
- })(),
+ retry(27, expBackoff('60s', '10s'), async () => {
+ // get the public domain of the deployed application
+ const domainListing = JSON.parse(
+ await $`fastly service domain list --quiet --version latest --json`,
+ )[0];
+ domain = `https://${domainListing.Name}`;
+ serviceId = domainListing.ServiceID;
+ core.notice(`Service is running on ${domain}`);
+ }),
new Promise((resolve) => setTimeout(resolve, 60_000)),
]);
} else {
@@ -181,37 +388,7 @@ try {
}
}
- await Promise.all([
- (async () => {
- await retry(
- 27,
- local
- ? [
- // we expect it to take ~10 seconds to deploy, so focus on that time
- 6000,
- 3000, 1500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500,
- 500, 500, 500, 500, 500, 500, 500, 500,
- // after more than 20 seconds, means we have an unusually slow build, start backoff before timeout
- 1500,
- 3000, 6000, 12000, 24000,
- ].values()
- : expBackoff('60s', '10s'),
- async () => {
- const response = await request(domain);
- if (response.statusCode !== 200) {
- throw new Error(
- `Application "${fixture}" :: Not yet available on domain: ${domain}`,
- );
- }
- },
- );
- })(),
- // we need to wait for the service resource links to all activate,
- // and we don't currently have a reliable way to poll on that
- // (perhaps we could poll on the highest version as seen from setup.js resource-link return output
- // being fully activated?)
- local ? null : new Promise((resolve) => setTimeout(resolve, 60_000)),
- ]);
+ await waitUntilServiceReady();
core.endGroup();
@@ -221,212 +398,15 @@ try {
with: { type: 'json' },
});
- function chunks(arr, size) {
- const output = [];
- for (let i = 0; i < arr.length; i += size) {
- output.push(arr.slice(i, i + size));
- }
- return output;
- }
-
+ const chunkSize = serial ? 1 : 100;
+ const runChunk = bail
+ ? Promise.all.bind(Promise)
+ : Promise.allSettled.bind(Promise);
let results = [];
- let chunkSize = serial ? 1 : 100;
for (const chunk of chunks(Object.entries(tests), chunkSize)) {
results.push(
- ...(await (
- bail ? Promise.all.bind(Promise) : Promise.allSettled.bind(Promise)
- )(
- chunk.map(async ([title, test]) => {
- // test defaults
- if (!test.downstream_request) {
- const [method, pathname, extra] = title.split(' ');
- if (typeof extra === 'string')
- throw new Error('Cannot infer downstream_request from title');
- test.downstream_request = { method, pathname };
- }
- if (!test.downstream_response) {
- test.downstream_response = {
- status: 200,
- };
- }
- if (!test.environments) {
- test.environments = ['viceroy', 'compute'];
- }
-
- // basic test filtering
- if (
- test.skip ||
- (filter.length > 0 && filter.every((f) => !title.includes(f)))
- ) {
- return {
- title,
- test,
- skipped: true,
- skipReason: test.skip
- ? 'MARKED AS SKIPPED (pending further work)'
- : null, // dont mention filtered tests
- };
- }
- // feature based test filtering
- if (
- (!httpCache &&
- test.features &&
- test.features.includes('http-cache')) ||
- (httpCache &&
- test.features &&
- test.features.includes('skip-http-cache'))
- ) {
- return {
- title,
- test,
- skipped: true,
- skipReason: `feature "http-cache" ${httpCache ? '' : 'not '}"enabled`,
- };
- }
- async function getBodyChunks(response) {
- const bodyChunks = [];
- let downstreamTimeout;
- await Promise.race([
- (async () => {
- // This body_streaming property allows us to test different cases
- // of consumer streamining behaviours.
- switch (test.body_streaming) {
- case 'first-chunk-only':
- for await (const chunk of response.body) {
- bodyChunks.push(chunk);
- response.body.on('error', () => {});
- break;
- }
- break;
- case 'none':
- response.body.on('error', () => {});
- break;
- case 'full':
- default:
- for await (const chunk of response.body) {
- bodyChunks.push(chunk);
- }
- }
- })(),
- new Promise((_, reject) => {
- downstreamTimeout = setTimeout(() => {
- reject(
- new Error(`Test downstream response body chunk timeout`),
- );
- }, 30_000);
- }),
- ]);
- clearTimeout(downstreamTimeout);
- return bodyChunks;
- }
- let onInfoHandler = test.downstream_info
- ? async (status, headers) => {
- if (
- test.downstream_info.status !== undefined &&
- test.downstream_info.status != status
- ) {
- throw new Error(
- `[DownstreamInfo: Status mismatch] Expected: ${configResponse.status} - Got: ${status}}`,
- );
- }
- if (headers) {
- compareHeaders(
- configResponse.headers,
- headers,
- configResponse.headersExhaustive,
- );
- }
- }
- : undefined;
-
- if (local) {
- if (test.environments.includes('viceroy')) {
- return (bail || !test.flake ? (_, __, fn) => fn() : retry)(
- 5,
- expBackoff('10s', '1s'),
- async () => {
- let path = test.downstream_request.pathname;
- let url = `${domain}${path}`;
- try {
- const response = await request(url, {
- method: test.downstream_request.method || 'GET',
- headers: test.downstream_request.headers || undefined,
- body: test.downstream_request.body || undefined,
- });
- const bodyChunks = await getBodyChunks(response);
- await compareDownstreamResponse(
- test.downstream_response,
- response,
- bodyChunks,
- );
- return {
- title,
- test,
- skipped: false,
- };
- } catch (error) {
- console.error('\n' + test.downstream_request.pathname);
- throw new Error(`${title} ${error.message}`, {
- cause: error,
- });
- }
- },
- );
- } else {
- return {
- title,
- test,
- skipped: true,
- skipReason: 'no environments',
- };
- }
- } else {
- if (test.environments.includes('compute')) {
- return retry(
- test.flake ? 15 : bail ? 1 : 4,
- expBackoff(
- test.flake ? '60s' : '30s',
- test.flake ? '30s' : '1s',
- ),
- async () => {
- let path = test.downstream_request.pathname;
- let url = `${domain}${path}`;
- try {
- const response = await request(url, {
- method: test.downstream_request.method || 'GET',
- headers: test.downstream_request.headers || undefined,
- body: test.downstream_request.body || undefined,
- onInfo: onInfoHandler,
- });
- const bodyChunks = await getBodyChunks(response);
- await compareDownstreamResponse(
- test.downstream_response,
- response,
- bodyChunks,
- );
- return {
- title,
- test,
- skipped: false,
- };
- } catch (error) {
- console.error('\n' + test.downstream_request.pathname);
- throw new Error(`${title} ${error.message}`);
- }
- },
- );
- } else {
- return {
- title,
- test,
- skipped: true,
- skipReason: 'no environments',
- };
- }
- }
- }),
- )),
+ ...(await runChunk(chunk.map(([title, test]) => runTest(title, test)))),
);
}
@@ -434,13 +414,6 @@ try {
console.log('Test results');
core.startGroup('Test results');
- const green = '\u001b[32m';
- const red = '\u001b[31m';
- const reset = '\u001b[0m';
- const white = '\u001b[39m';
- const info = '\u2139';
- const tick = '\u2714';
- const cross = '\u2716';
for (const result of results) {
if (result.status === 'fulfilled' || bail) {
const value = bail ? result : result.value;
@@ -481,21 +454,7 @@ try {
}
// No need to tear down the service if what failed was setting it up.
if (!local && !skipTeardown && serviceId) {
- const teardownPath = join(__dirname, 'teardown.js');
- if (existsSync(teardownPath)) {
- core.startGroup('Tear down the extra set-up for the service');
- await zx`${teardownPath} ${serviceId} ${ci ? serviceName : ''}`;
- core.endGroup();
- }
-
- core.startGroup('Delete service');
- // Delete the service now the tests have finished
- try {
- await $`fastly service delete --quiet --service-name "${serviceName}" --force --token $FASTLY_API_TOKEN`;
- } catch (e) {
- console.log('Failed to delete service:', e.message);
- }
- core.endGroup();
+ await teardownRemoteService();
}
if (process.exitCode == undefined || process.exitCode == 0) {
console.log(
diff --git a/package-lock.json b/package-lock.json
index 535518aa07..00e412c6d1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -7,17 +7,20 @@
"": {
"name": "@fastly/js-compute",
"version": "3.43.1",
+ "bundleDependencies": [
+ "@fastly/wasmtime"
+ ],
"license": "Apache-2.0",
"dependencies": {
"@bytecodealliance/jco": "^1.7.0",
- "@bytecodealliance/weval": "^0.3.2",
- "@bytecodealliance/wizer": "^7.0.5",
+ "@bytecodealliance/weval": "^0.4.1",
+ "@fastly/wasmtime": "file:packages/wasmtime",
"@jridgewell/remapping": "^2.3.5",
"@jridgewell/trace-mapping": "^0.3.31",
"acorn": "^8.13.0",
"acorn-walk": "^8.3.4",
"cosmiconfig": "^9.0.1",
- "esbuild": "^0.25.0",
+ "esbuild": "^0.28.1",
"magic-string": "^0.30.12",
"npm": "^11.14.1",
"picomatch": "^4.0.4",
@@ -54,8 +57,6 @@
},
"node_modules/@babel/code-frame": {
"version": "7.25.7",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz",
- "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==",
"license": "MIT",
"dependencies": {
"@babel/highlight": "^7.25.7",
@@ -67,8 +68,6 @@
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz",
- "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -76,8 +75,6 @@
},
"node_modules/@babel/highlight": {
"version": "7.25.7",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz",
- "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.25.7",
@@ -91,8 +88,6 @@
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"license": "MIT",
"dependencies": {
"color-convert": "^1.9.0"
@@ -103,8 +98,6 @@
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
@@ -117,8 +110,6 @@
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
@@ -126,8 +117,6 @@
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -135,8 +124,6 @@
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"license": "MIT",
"dependencies": {
"has-flag": "^3.0.0"
@@ -147,8 +134,6 @@
},
"node_modules/@bytecodealliance/componentize-js": {
"version": "0.13.0",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/componentize-js/-/componentize-js-0.13.0.tgz",
- "integrity": "sha512-SBmuSiw2CQTBnmE5+944ujFG9VykovteE2q5XLsTblJgey67TAxrIjlLsygDypFbi2JUGNJJ6t9Y0HSarBgKxQ==",
"workspaces": [
"."
],
@@ -159,10 +144,21 @@
"es-module-lexer": "^1.5.4"
}
},
+ "node_modules/@bytecodealliance/componentize-js/node_modules/@bytecodealliance/weval": {
+ "version": "0.3.4",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@napi-rs/lzma": "^1.1.2",
+ "decompress": "^4.2.1",
+ "decompress-tar": "^4.1.1",
+ "decompress-unzip": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
"node_modules/@bytecodealliance/jco": {
"version": "1.7.0",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/jco/-/jco-1.7.0.tgz",
- "integrity": "sha512-DOoYzWmCjm5N3O1WE+g9VXUHXgKEJ3OatV3KhLYgaG1t9+sj+voS3PZA0JbWuA6vEkBT73Kg4yd4bJgIe1yFXA==",
"license": "(Apache-2.0 WITH LLVM-exception)",
"workspaces": [
"packages/preview2-shim"
@@ -183,14 +179,10 @@
},
"node_modules/@bytecodealliance/preview2-shim": {
"version": "0.17.0",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/preview2-shim/-/preview2-shim-0.17.0.tgz",
- "integrity": "sha512-JorcEwe4ud0x5BS/Ar2aQWOQoFzjq/7jcnxYXCvSMh0oRm0dQXzOA+hqLDBnOMks1LLBA7dmiLLsEBl09Yd6iQ==",
"license": "(Apache-2.0 WITH LLVM-exception)"
},
"node_modules/@bytecodealliance/weval": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/weval/-/weval-0.3.2.tgz",
- "integrity": "sha512-yH28sdq0Y0Oc29LbbWCEx2PvRFi0D7CEhWdNHPovl/L7thzlNlFWCRcOLanB0XgXQ5rygTpVVBFH0/50tWMg2w==",
+ "version": "0.4.1",
"license": "Apache-2.0",
"dependencies": {
"@napi-rs/lzma": "^1.1.2",
@@ -204,8 +196,6 @@
},
"node_modules/@bytecodealliance/wizer": {
"version": "7.0.5",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer/-/wizer-7.0.5.tgz",
- "integrity": "sha512-xIbLzKxmUNaPwDWorcGtdxh1mcgDiXI8fe9KiDaSICKfCl9VtUKVyXIc3ix+VpwFczBbdhek+TlMiiCf+9lpOQ==",
"license": "Apache-2.0",
"bin": {
"wizer": "wizer.js"
@@ -224,8 +214,6 @@
},
"node_modules/@bytecodealliance/wizer-darwin-arm64": {
"version": "7.0.5",
- "resolved": "https://registry.npmjs.org/@bytecodealliance/wizer-darwin-arm64/-/wizer-darwin-arm64-7.0.5.tgz",
- "integrity": "sha512-Tp0SgVQR568SVPvSfyWDT00yL4ry/w9FS2qy8ZwaP0EauYyjFSZojj6mESX6x9fpYkEnQdprgfdvhw5h1hTwCQ==",
"cpu": [
"arm64"
],
@@ -319,20 +307,20 @@
}
},
"node_modules/@emnapi/core": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.3.1.tgz",
- "integrity": "sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.0.tgz",
+ "integrity": "sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q==",
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/wasi-threads": "1.0.1",
+ "@emnapi/wasi-threads": "1.2.2",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
- "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.0.tgz",
+ "integrity": "sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==",
"license": "MIT",
"optional": true,
"dependencies": {
@@ -340,9 +328,9 @@
}
},
"node_modules/@emnapi/wasi-threads": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz",
- "integrity": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
+ "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
"license": "MIT",
"optional": true,
"dependencies": {
@@ -350,9 +338,9 @@
}
},
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz",
- "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
"cpu": [
"ppc64"
],
@@ -366,9 +354,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz",
- "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
"cpu": [
"arm"
],
@@ -382,9 +370,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz",
- "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
"cpu": [
"arm64"
],
@@ -398,9 +386,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz",
- "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
"cpu": [
"x64"
],
@@ -414,9 +402,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz",
- "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
"cpu": [
"arm64"
],
@@ -430,9 +418,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz",
- "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
"cpu": [
"x64"
],
@@ -446,9 +434,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz",
- "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
"cpu": [
"arm64"
],
@@ -462,9 +450,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz",
- "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
"cpu": [
"x64"
],
@@ -478,9 +466,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz",
- "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
"cpu": [
"arm"
],
@@ -494,9 +482,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz",
- "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
"cpu": [
"arm64"
],
@@ -510,9 +498,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz",
- "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
"cpu": [
"ia32"
],
@@ -526,9 +514,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz",
- "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
"cpu": [
"loong64"
],
@@ -542,9 +530,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz",
- "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
"cpu": [
"mips64el"
],
@@ -558,9 +546,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz",
- "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
"cpu": [
"ppc64"
],
@@ -574,9 +562,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz",
- "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
"cpu": [
"riscv64"
],
@@ -590,9 +578,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz",
- "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
"cpu": [
"s390x"
],
@@ -606,9 +594,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz",
- "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
"cpu": [
"x64"
],
@@ -622,9 +610,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz",
- "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
"cpu": [
"arm64"
],
@@ -638,9 +626,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz",
- "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
"cpu": [
"x64"
],
@@ -654,9 +642,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz",
- "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
"cpu": [
"arm64"
],
@@ -670,9 +658,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz",
- "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
"cpu": [
"x64"
],
@@ -685,10 +673,26 @@
"node": ">=18"
}
},
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/sunos-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz",
- "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
"cpu": [
"x64"
],
@@ -702,9 +706,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz",
- "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
"cpu": [
"arm64"
],
@@ -718,9 +722,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz",
- "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
"cpu": [
"ia32"
],
@@ -734,9 +738,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz",
- "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
"cpu": [
"x64"
],
@@ -751,8 +755,6 @@
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.9.0",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
- "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -770,8 +772,6 @@
},
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
"version": "3.4.3",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -783,8 +783,6 @@
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.2",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
- "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
"dev": true,
"license": "MIT",
"engines": {
@@ -793,8 +791,6 @@
},
"node_modules/@eslint/config-array": {
"version": "0.21.1",
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
- "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -808,8 +804,6 @@
},
"node_modules/@eslint/config-helpers": {
"version": "0.4.2",
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
- "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -821,8 +815,6 @@
},
"node_modules/@eslint/core": {
"version": "0.17.0",
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
- "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -834,8 +826,6 @@
},
"node_modules/@eslint/eslintrc": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
- "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -858,8 +848,6 @@
},
"node_modules/@eslint/js": {
"version": "9.39.1",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz",
- "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -871,8 +859,6 @@
},
"node_modules/@eslint/object-schema": {
"version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
- "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -881,8 +867,6 @@
},
"node_modules/@eslint/plugin-kit": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
- "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -893,10 +877,12 @@
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
+ "node_modules/@fastly/wasmtime": {
+ "resolved": "packages/wasmtime",
+ "link": true
+ },
"node_modules/@humanfs/core": {
"version": "0.19.1",
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
- "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -905,8 +891,6 @@
},
"node_modules/@humanfs/node": {
"version": "0.16.7",
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
- "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -919,8 +903,6 @@
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -933,8 +915,6 @@
},
"node_modules/@humanwhocodes/retry": {
"version": "0.4.3",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
- "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -947,8 +927,6 @@
},
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -957,8 +935,6 @@
},
"node_modules/@jakechampion/cli-testing-library": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@jakechampion/cli-testing-library/-/cli-testing-library-1.0.0.tgz",
- "integrity": "sha512-3DEr4qQEOyJA7bkzzVoWeACCDOLPlRH/xRD0059oJPsfvR5qprt/VHMaDdUzAHeAq0/ChIwIwZzKtHGnJIqukw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -967,8 +943,6 @@
},
"node_modules/@jest/schemas": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
- "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -980,8 +954,6 @@
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
@@ -994,8 +966,6 @@
},
"node_modules/@jridgewell/remapping": {
"version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
@@ -1004,8 +974,6 @@
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -1013,8 +981,6 @@
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -1022,8 +988,6 @@
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
- "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
@@ -1032,14 +996,10 @@
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.31",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
@@ -1048,8 +1008,6 @@
},
"node_modules/@napi-rs/lzma": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/@napi-rs/lzma/-/lzma-1.4.1.tgz",
- "integrity": "sha512-5f8K9NHjwHjZKGm3SS+7CFxXQhz8rbg2umBm/9g0xQRXBdYEI31N5z1ACuk9bmBQOusXAq9CArGfs/ZQso2rUA==",
"license": "MIT",
"engines": {
"node": ">= 10"
@@ -1112,8 +1070,6 @@
},
"node_modules/@napi-rs/lzma-darwin-arm64": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/@napi-rs/lzma-darwin-arm64/-/lzma-darwin-arm64-1.4.1.tgz",
- "integrity": "sha512-sDfOhQQFqV8lGbpgJN9DqNLBPR7QOfYjcWUv8FOGPaVP1LPJDnrc5uCpRWWEa2zIKmTiO8P9xzIl0TDzrYmghg==",
"cpu": [
"arm64"
],
@@ -1181,6 +1137,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1197,6 +1156,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1213,6 +1175,9 @@
"cpu": [
"ppc64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1229,6 +1194,9 @@
"cpu": [
"riscv64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1245,6 +1213,9 @@
"cpu": [
"s390x"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1261,6 +1232,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1277,6 +1251,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1351,21 +1328,19 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.5.tgz",
- "integrity": "sha512-kwUxR7J9WLutBbulqg1dfOrMTwhMdXLdcGUhcbCcGwnPLt3gz19uHVdwH1syKVDbE022ZS2vZxOWflFLS0YTjw==",
+ "version": "0.2.12",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
+ "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/core": "^1.1.0",
- "@emnapi/runtime": "^1.1.0",
- "@tybys/wasm-util": "^0.9.0"
+ "@emnapi/core": "^1.4.3",
+ "@emnapi/runtime": "^1.4.3",
+ "@tybys/wasm-util": "^0.10.0"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1378,8 +1353,6 @@
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1388,8 +1361,6 @@
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1402,15 +1373,11 @@
},
"node_modules/@sinclair/typebox": {
"version": "0.27.8",
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
- "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
"dev": true,
"license": "MIT"
},
"node_modules/@tsd/typescript": {
"version": "5.9.3",
- "resolved": "https://registry.npmjs.org/@tsd/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-JSSdNiS0wgd8GHhBwnMAI18Y8XPhLVN+dNelPfZCXFhy9Lb3NbnFyp9JKxxr54jSUkEJPk3cidvCoHducSaRMQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1418,9 +1385,9 @@
}
},
"node_modules/@tybys/wasm-util": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz",
- "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
"license": "MIT",
"optional": true,
"dependencies": {
@@ -1429,8 +1396,6 @@
},
"node_modules/@types/debug": {
"version": "4.1.12",
- "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
- "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1439,8 +1404,6 @@
},
"node_modules/@types/eslint": {
"version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz",
- "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1450,29 +1413,21 @@
},
"node_modules/@types/estree": {
"version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
- "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/mdast": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
- "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1481,23 +1436,17 @@
},
"node_modules/@types/minimist": {
"version": "1.2.5",
- "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz",
- "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/ms": {
"version": "0.7.34",
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
- "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/node": {
"version": "24.10.1",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz",
- "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"undici-types": "~7.16.0"
@@ -1505,29 +1454,29 @@
},
"node_modules/@types/normalize-package-data": {
"version": "2.4.4",
- "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
- "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/picomatch": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/@types/picomatch/-/picomatch-4.0.2.tgz",
- "integrity": "sha512-qHHxQ+P9PysNEGbALT8f8YOSHW0KJu6l2xU8DYY0fu/EmGxXdVnuTLvFUvBgPJMSqXq29SYHveejeAha+4AYgA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/unist": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
- "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
"dev": true,
"license": "MIT"
},
+ "node_modules/@types/yauzl": {
+ "version": "2.10.3",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@typescript-eslint/eslint-plugin": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.1.tgz",
- "integrity": "sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1556,8 +1505,6 @@
},
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
"version": "7.0.5",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
- "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1566,8 +1513,6 @@
},
"node_modules/@typescript-eslint/parser": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.48.1.tgz",
- "integrity": "sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1591,8 +1536,6 @@
},
"node_modules/@typescript-eslint/project-service": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.48.1.tgz",
- "integrity": "sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1613,8 +1556,6 @@
},
"node_modules/@typescript-eslint/scope-manager": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz",
- "integrity": "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1631,8 +1572,6 @@
},
"node_modules/@typescript-eslint/tsconfig-utils": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz",
- "integrity": "sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1648,8 +1587,6 @@
},
"node_modules/@typescript-eslint/type-utils": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.48.1.tgz",
- "integrity": "sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1673,8 +1610,6 @@
},
"node_modules/@typescript-eslint/types": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.1.tgz",
- "integrity": "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1687,8 +1622,6 @@
},
"node_modules/@typescript-eslint/typescript-estree": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz",
- "integrity": "sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1714,9 +1647,9 @@
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz",
- "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.1.tgz",
+ "integrity": "sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1725,8 +1658,6 @@
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
"version": "9.0.9",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
- "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -1741,8 +1672,6 @@
},
"node_modules/@typescript-eslint/utils": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.48.1.tgz",
- "integrity": "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1765,8 +1694,6 @@
},
"node_modules/@typescript-eslint/visitor-keys": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz",
- "integrity": "sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1783,8 +1710,6 @@
},
"node_modules/acorn": {
"version": "8.15.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
- "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
@@ -1795,8 +1720,6 @@
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -1805,8 +1728,6 @@
},
"node_modules/acorn-walk": {
"version": "8.3.4",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
- "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
"license": "MIT",
"dependencies": {
"acorn": "^8.11.0"
@@ -1834,8 +1755,6 @@
},
"node_modules/ansi-escapes": {
"version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1850,8 +1769,6 @@
},
"node_modules/ansi-regex": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"license": "MIT",
"engines": {
"node": ">=12"
@@ -1862,8 +1779,6 @@
},
"node_modules/ansi-styles": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1875,14 +1790,10 @@
},
"node_modules/argparse": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"license": "Python-2.0"
},
"node_modules/array-union": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1891,8 +1802,6 @@
},
"node_modules/arrify": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
- "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1901,15 +1810,10 @@
},
"node_modules/b4a": {
"version": "1.6.7",
- "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
- "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
- "dev": true,
"license": "Apache-2.0"
},
"node_modules/bail": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
- "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -1919,15 +1823,11 @@
},
"node_modules/balanced-match": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true,
"license": "MIT"
},
"node_modules/bare-cov": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/bare-cov/-/bare-cov-1.0.1.tgz",
- "integrity": "sha512-r/qCY1ZWUvD0QY04ZHgRy8qXW/x+vD+Iofg1l/OiYmTz4h46oMF7DHWl/NkgUZBKK2X6QoE4Q/w/JvJDmh5+HQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -1939,10 +1839,87 @@
"v8-to-istanbul": "^9.3.0"
}
},
+ "node_modules/bare-events": {
+ "version": "2.8.3",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "bare-abort-controller": "*"
+ },
+ "peerDependenciesMeta": {
+ "bare-abort-controller": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/bare-fs": {
+ "version": "4.7.1",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bare-events": "^2.5.4",
+ "bare-path": "^3.0.0",
+ "bare-stream": "^2.6.4",
+ "bare-url": "^2.2.2",
+ "fast-fifo": "^1.3.2"
+ },
+ "engines": {
+ "bare": ">=1.16.0"
+ },
+ "peerDependencies": {
+ "bare-buffer": "*"
+ },
+ "peerDependenciesMeta": {
+ "bare-buffer": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/bare-os": {
+ "version": "3.9.1",
+ "license": "Apache-2.0",
+ "engines": {
+ "bare": ">=1.14.0"
+ }
+ },
+ "node_modules/bare-path": {
+ "version": "3.0.0",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bare-os": "^3.0.1"
+ }
+ },
+ "node_modules/bare-stream": {
+ "version": "2.13.1",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "streamx": "^2.25.0",
+ "teex": "^1.0.1"
+ },
+ "peerDependencies": {
+ "bare-abort-controller": "*",
+ "bare-buffer": "*",
+ "bare-events": "*"
+ },
+ "peerDependenciesMeta": {
+ "bare-abort-controller": {
+ "optional": true
+ },
+ "bare-buffer": {
+ "optional": true
+ },
+ "bare-events": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/bare-url": {
+ "version": "2.4.3",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bare-path": "^3.0.0"
+ }
+ },
"node_modules/base64-js": {
"version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
@@ -1961,8 +1938,6 @@
},
"node_modules/binaryen": {
"version": "119.0.0",
- "resolved": "https://registry.npmjs.org/binaryen/-/binaryen-119.0.0.tgz",
- "integrity": "sha512-DTdcs8ijrj2OIEftWVPVkYsgJ8MzlYH+uSsC8156g88E7CNaG8kEfWNGSXxb3tPlzadrm6sD3mgSEKKZJu4Q3g==",
"license": "Apache-2.0",
"bin": {
"wasm-as": "bin/wasm-as",
@@ -1978,8 +1953,6 @@
},
"node_modules/bl": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz",
- "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
"license": "MIT",
"dependencies": {
"readable-stream": "^2.3.5",
@@ -1987,9 +1960,9 @@
}
},
"node_modules/brace-expansion": {
- "version": "1.1.14",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz",
- "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==",
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz",
+ "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1999,8 +1972,6 @@
},
"node_modules/braces": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2012,8 +1983,6 @@
},
"node_modules/brittle": {
"version": "3.7.0",
- "resolved": "https://registry.npmjs.org/brittle/-/brittle-3.7.0.tgz",
- "integrity": "sha512-WfEnI1jqwQvvds19Hu2KN3/ducDwnBe1U/URZk1gLgKd7yh4gvsN/8mViZ4NCF2gz+oZ054LIhAMWjsvmE/WBg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -2031,8 +2000,6 @@
},
"node_modules/buffer": {
"version": "5.7.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"funding": [
{
"type": "github",
@@ -2055,8 +2022,6 @@
},
"node_modules/buffer-alloc": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
- "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
"license": "MIT",
"dependencies": {
"buffer-alloc-unsafe": "^1.1.0",
@@ -2065,14 +2030,10 @@
},
"node_modules/buffer-alloc-unsafe": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
- "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
"license": "MIT"
},
"node_modules/buffer-crc32": {
"version": "0.2.13",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
- "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
"license": "MIT",
"engines": {
"node": "*"
@@ -2080,20 +2041,14 @@
},
"node_modules/buffer-fill": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
- "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==",
"license": "MIT"
},
"node_modules/buffer-from": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"license": "MIT"
},
"node_modules/callsites": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"license": "MIT",
"engines": {
"node": ">=6"
@@ -2101,8 +2056,6 @@
},
"node_modules/camelcase": {
"version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2111,8 +2064,6 @@
},
"node_modules/camelcase-keys": {
"version": "6.2.2",
- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz",
- "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2129,8 +2080,6 @@
},
"node_modules/chalk": {
"version": "5.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
- "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
"license": "MIT",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
@@ -2141,8 +2090,6 @@
},
"node_modules/chalk-template": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz",
- "integrity": "sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==",
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0"
@@ -2156,8 +2103,6 @@
},
"node_modules/character-entities": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
- "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -2167,8 +2112,6 @@
},
"node_modules/cli-cursor": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
- "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
"license": "MIT",
"dependencies": {
"restore-cursor": "^5.0.0"
@@ -2182,8 +2125,6 @@
},
"node_modules/cli-spinners": {
"version": "2.9.2",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
- "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
"license": "MIT",
"engines": {
"node": ">=6"
@@ -2194,8 +2135,6 @@
},
"node_modules/color-convert": {
"version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"license": "MIT",
"dependencies": {
"color-name": "1.1.3"
@@ -2203,14 +2142,10 @@
},
"node_modules/color-name": {
"version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"license": "MIT"
},
"node_modules/commander": {
"version": "12.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
- "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -2218,28 +2153,20 @@
},
"node_modules/concat-map": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true,
"license": "MIT"
},
"node_modules/convert-source-map": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"dev": true,
"license": "MIT"
},
"node_modules/core-util-is": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
"license": "MIT"
},
"node_modules/cosmiconfig": {
"version": "9.0.1",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.1.tgz",
- "integrity": "sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==",
"license": "MIT",
"dependencies": {
"env-paths": "^2.2.1",
@@ -2264,8 +2191,6 @@
},
"node_modules/cross-spawn": {
"version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2279,9 +2204,6 @@
},
"node_modules/debug": {
"version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -2297,8 +2219,6 @@
},
"node_modules/decamelize": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2307,8 +2227,6 @@
},
"node_modules/decamelize-keys": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz",
- "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2324,8 +2242,6 @@
},
"node_modules/decamelize-keys/node_modules/map-obj": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
- "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2334,8 +2250,6 @@
},
"node_modules/decode-named-character-reference": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
- "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2348,8 +2262,6 @@
},
"node_modules/decompress": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz",
- "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==",
"license": "MIT",
"dependencies": {
"decompress-tar": "^4.0.0",
@@ -2367,8 +2279,6 @@
},
"node_modules/decompress-tar": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
- "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
"license": "MIT",
"dependencies": {
"file-type": "^5.2.0",
@@ -2381,8 +2291,6 @@
},
"node_modules/decompress-tarbz2": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
- "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
"license": "MIT",
"dependencies": {
"decompress-tar": "^4.1.0",
@@ -2397,8 +2305,6 @@
},
"node_modules/decompress-tarbz2/node_modules/file-type": {
"version": "6.2.0",
- "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
- "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -2406,8 +2312,6 @@
},
"node_modules/decompress-targz": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
- "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
"license": "MIT",
"dependencies": {
"decompress-tar": "^4.1.1",
@@ -2420,8 +2324,6 @@
},
"node_modules/decompress-unzip": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
- "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==",
"license": "MIT",
"dependencies": {
"file-type": "^3.8.0",
@@ -2435,8 +2337,6 @@
},
"node_modules/decompress-unzip/node_modules/file-type": {
"version": "3.9.0",
- "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
- "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -2444,15 +2344,11 @@
},
"node_modules/deep-is": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
"dev": true,
"license": "MIT"
},
"node_modules/dequal": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2461,8 +2357,6 @@
},
"node_modules/devlop": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
- "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2475,8 +2369,6 @@
},
"node_modules/diff-sequences": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
- "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2485,8 +2377,6 @@
},
"node_modules/dir-glob": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2498,14 +2388,10 @@
},
"node_modules/emoji-regex": {
"version": "10.4.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
- "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
"license": "MIT"
},
"node_modules/end-of-stream": {
"version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"license": "MIT",
"dependencies": {
"once": "^1.4.0"
@@ -2513,8 +2399,6 @@
},
"node_modules/env-paths": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
- "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
"license": "MIT",
"engines": {
"node": ">=6"
@@ -2522,8 +2406,6 @@
},
"node_modules/error-ex": {
"version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"license": "MIT",
"dependencies": {
"is-arrayish": "^0.2.1"
@@ -2531,8 +2413,6 @@
},
"node_modules/error-stack-parser": {
"version": "2.1.4",
- "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
- "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2541,14 +2421,12 @@
},
"node_modules/es-module-lexer": {
"version": "1.5.4",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
- "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==",
"license": "MIT"
},
"node_modules/esbuild": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz",
- "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
"hasInstallScript": true,
"license": "MIT",
"bin": {
@@ -2558,37 +2436,36 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.25.0",
- "@esbuild/android-arm": "0.25.0",
- "@esbuild/android-arm64": "0.25.0",
- "@esbuild/android-x64": "0.25.0",
- "@esbuild/darwin-arm64": "0.25.0",
- "@esbuild/darwin-x64": "0.25.0",
- "@esbuild/freebsd-arm64": "0.25.0",
- "@esbuild/freebsd-x64": "0.25.0",
- "@esbuild/linux-arm": "0.25.0",
- "@esbuild/linux-arm64": "0.25.0",
- "@esbuild/linux-ia32": "0.25.0",
- "@esbuild/linux-loong64": "0.25.0",
- "@esbuild/linux-mips64el": "0.25.0",
- "@esbuild/linux-ppc64": "0.25.0",
- "@esbuild/linux-riscv64": "0.25.0",
- "@esbuild/linux-s390x": "0.25.0",
- "@esbuild/linux-x64": "0.25.0",
- "@esbuild/netbsd-arm64": "0.25.0",
- "@esbuild/netbsd-x64": "0.25.0",
- "@esbuild/openbsd-arm64": "0.25.0",
- "@esbuild/openbsd-x64": "0.25.0",
- "@esbuild/sunos-x64": "0.25.0",
- "@esbuild/win32-arm64": "0.25.0",
- "@esbuild/win32-ia32": "0.25.0",
- "@esbuild/win32-x64": "0.25.0"
+ "@esbuild/aix-ppc64": "0.28.1",
+ "@esbuild/android-arm": "0.28.1",
+ "@esbuild/android-arm64": "0.28.1",
+ "@esbuild/android-x64": "0.28.1",
+ "@esbuild/darwin-arm64": "0.28.1",
+ "@esbuild/darwin-x64": "0.28.1",
+ "@esbuild/freebsd-arm64": "0.28.1",
+ "@esbuild/freebsd-x64": "0.28.1",
+ "@esbuild/linux-arm": "0.28.1",
+ "@esbuild/linux-arm64": "0.28.1",
+ "@esbuild/linux-ia32": "0.28.1",
+ "@esbuild/linux-loong64": "0.28.1",
+ "@esbuild/linux-mips64el": "0.28.1",
+ "@esbuild/linux-ppc64": "0.28.1",
+ "@esbuild/linux-riscv64": "0.28.1",
+ "@esbuild/linux-s390x": "0.28.1",
+ "@esbuild/linux-x64": "0.28.1",
+ "@esbuild/netbsd-arm64": "0.28.1",
+ "@esbuild/netbsd-x64": "0.28.1",
+ "@esbuild/openbsd-arm64": "0.28.1",
+ "@esbuild/openbsd-x64": "0.28.1",
+ "@esbuild/openharmony-arm64": "0.28.1",
+ "@esbuild/sunos-x64": "0.28.1",
+ "@esbuild/win32-arm64": "0.28.1",
+ "@esbuild/win32-ia32": "0.28.1",
+ "@esbuild/win32-x64": "0.28.1"
}
},
"node_modules/escalade": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2597,8 +2474,6 @@
},
"node_modules/escape-string-regexp": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2610,8 +2485,6 @@
},
"node_modules/eslint": {
"version": "9.39.1",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz",
- "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2670,8 +2543,6 @@
},
"node_modules/eslint-formatter-pretty": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/eslint-formatter-pretty/-/eslint-formatter-pretty-4.1.0.tgz",
- "integrity": "sha512-IsUTtGxF1hrH6lMWiSl1WbGaiP01eT6kzywdY1U+zLc0MP+nwEnUiS9UI8IaOTUhTeQJLlCEWIbXINBH4YJbBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2693,8 +2564,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2703,8 +2572,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2719,8 +2586,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2736,8 +2601,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/color-convert": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2749,22 +2612,16 @@
},
"node_modules/eslint-formatter-pretty/node_modules/color-name": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
"node_modules/eslint-formatter-pretty/node_modules/emoji-regex": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/eslint-formatter-pretty/node_modules/is-unicode-supported": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
- "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2776,8 +2633,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/log-symbols": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
- "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2793,8 +2648,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/string-width": {
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2808,8 +2661,6 @@
},
"node_modules/eslint-formatter-pretty/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2821,15 +2672,11 @@
},
"node_modules/eslint-rule-docs": {
"version": "1.1.235",
- "resolved": "https://registry.npmjs.org/eslint-rule-docs/-/eslint-rule-docs-1.1.235.tgz",
- "integrity": "sha512-+TQ+x4JdTnDoFEXXb3fDvfGOwnyNV7duH8fXWTPD1ieaBmB8omj7Gw/pMBBu4uI2uJCCU8APDaQJzWuXnTsH4A==",
"dev": true,
"license": "MIT"
},
"node_modules/eslint-scope": {
"version": "8.4.0",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
- "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -2845,8 +2692,6 @@
},
"node_modules/eslint-visitor-keys": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
- "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -2858,8 +2703,6 @@
},
"node_modules/eslint/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2874,8 +2717,6 @@
},
"node_modules/eslint/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2891,8 +2732,6 @@
},
"node_modules/eslint/node_modules/color-convert": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2904,15 +2743,11 @@
},
"node_modules/eslint/node_modules/color-name": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
"node_modules/espree": {
"version": "10.4.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
- "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -2929,8 +2764,6 @@
},
"node_modules/esquery": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
- "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -2942,8 +2775,6 @@
},
"node_modules/esrecurse": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -2955,8 +2786,6 @@
},
"node_modules/estraverse": {
"version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -2965,32 +2794,66 @@
},
"node_modules/esutils": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.10.0"
}
},
+ "node_modules/events-universal": {
+ "version": "1.0.1",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bare-events": "^2.7.0"
+ }
+ },
"node_modules/extend": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"dev": true,
"license": "MIT"
},
+ "node_modules/extract-zip": {
+ "version": "2.0.1",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "get-stream": "^5.1.0",
+ "yauzl": "^2.10.0"
+ },
+ "bin": {
+ "extract-zip": "cli.js"
+ },
+ "engines": {
+ "node": ">= 10.17.0"
+ },
+ "optionalDependencies": {
+ "@types/yauzl": "^2.9.1"
+ }
+ },
+ "node_modules/extract-zip/node_modules/get-stream": {
+ "version": "5.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true,
"license": "MIT"
},
+ "node_modules/fast-fifo": {
+ "version": "1.3.2",
+ "license": "MIT"
+ },
"node_modules/fast-glob": {
"version": "3.3.2",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
- "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3006,8 +2869,6 @@
},
"node_modules/fast-glob/node_modules/glob-parent": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3019,22 +2880,16 @@
},
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-levenshtein": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
"dev": true,
"license": "MIT"
},
"node_modules/fastq": {
"version": "1.17.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
- "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3043,8 +2898,6 @@
},
"node_modules/fd-slicer": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
- "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
"license": "MIT",
"dependencies": {
"pend": "~1.2.0"
@@ -3052,8 +2905,6 @@
},
"node_modules/fdir": {
"version": "6.5.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3070,8 +2921,6 @@
},
"node_modules/file-entry-cache": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3083,8 +2932,6 @@
},
"node_modules/file-type": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
- "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -3092,8 +2939,6 @@
},
"node_modules/fill-range": {
"version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3105,8 +2950,6 @@
},
"node_modules/find-up": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3122,8 +2965,6 @@
},
"node_modules/flat-cache": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3136,21 +2977,15 @@
},
"node_modules/flatted": {
"version": "3.4.2",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
- "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
"dev": true,
"license": "ISC"
},
"node_modules/fs-constants": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
- "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
"license": "MIT"
},
"node_modules/function-bind": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -3159,8 +2994,6 @@
},
"node_modules/get-bin-path": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/get-bin-path/-/get-bin-path-11.0.0.tgz",
- "integrity": "sha512-hvX/hynZJ6sxeItamADFBZo0WmLoG/qZBlRCLRv+J+oN8USw1ZxefIGJSFPu1GGd3OHWVFJKvCCN970wmpiHzg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -3172,8 +3005,6 @@
},
"node_modules/get-east-asian-width": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
- "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -3184,8 +3015,6 @@
},
"node_modules/get-stream": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
- "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==",
"license": "MIT",
"dependencies": {
"object-assign": "^4.0.1",
@@ -3197,8 +3026,6 @@
},
"node_modules/glob-parent": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3210,8 +3037,6 @@
},
"node_modules/globals": {
"version": "14.0.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3223,8 +3048,6 @@
},
"node_modules/globbie": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/globbie/-/globbie-1.0.1.tgz",
- "integrity": "sha512-gcokK9aku5LU7KgbQAmtjtxmBbp0viw7qNZr6aA3p/YqSg7G1rZXA9wx2xsUSi3F3pashx0wmUs68lMXXNbSgw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -3234,8 +3057,6 @@
},
"node_modules/globby": {
"version": "11.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
- "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3255,21 +3076,15 @@
},
"node_modules/graceful-fs": {
"version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"license": "ISC"
},
"node_modules/graphemer": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
- "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
"dev": true,
"license": "MIT"
},
"node_modules/hard-rejection": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz",
- "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3278,8 +3093,6 @@
},
"node_modules/has-flag": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3288,8 +3101,6 @@
},
"node_modules/hasown": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3301,8 +3112,6 @@
},
"node_modules/hosted-git-info": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz",
- "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3314,15 +3123,11 @@
},
"node_modules/html-escaper": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
"dev": true,
"license": "MIT"
},
"node_modules/ieee754": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"funding": [
{
"type": "github",
@@ -3341,8 +3146,6 @@
},
"node_modules/ignore": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3351,8 +3154,6 @@
},
"node_modules/import-fresh": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
"license": "MIT",
"dependencies": {
"parent-module": "^1.0.0",
@@ -3367,8 +3168,6 @@
},
"node_modules/imurmurhash": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3377,8 +3176,6 @@
},
"node_modules/indent-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3387,14 +3184,10 @@
},
"node_modules/inherits": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
"license": "ISC"
},
"node_modules/irregular-plurals": {
"version": "3.5.0",
- "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz",
- "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3403,14 +3196,10 @@
},
"node_modules/is-arrayish": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
"license": "MIT"
},
"node_modules/is-core-module": {
"version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3425,8 +3214,6 @@
},
"node_modules/is-extglob": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3435,8 +3222,6 @@
},
"node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3445,8 +3230,6 @@
},
"node_modules/is-glob": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3458,8 +3241,6 @@
},
"node_modules/is-interactive": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
- "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
"license": "MIT",
"engines": {
"node": ">=12"
@@ -3470,14 +3251,10 @@
},
"node_modules/is-natural-number": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
- "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==",
"license": "MIT"
},
"node_modules/is-number": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3486,8 +3263,6 @@
},
"node_modules/is-plain-obj": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
- "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3496,8 +3271,6 @@
},
"node_modules/is-stream": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -3505,8 +3278,6 @@
},
"node_modules/is-unicode-supported": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
- "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -3517,21 +3288,15 @@
},
"node_modules/isarray": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
"license": "MIT"
},
"node_modules/isexe": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
"dev": true,
"license": "ISC"
},
"node_modules/istanbul-lib-coverage": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
- "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -3540,8 +3305,6 @@
},
"node_modules/istanbul-lib-report": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3555,8 +3318,6 @@
},
"node_modules/istanbul-lib-report/node_modules/make-dir": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
- "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3571,8 +3332,6 @@
},
"node_modules/istanbul-reports": {
"version": "3.1.7",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
- "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3585,8 +3344,6 @@
},
"node_modules/jest-diff": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz",
- "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3601,8 +3358,6 @@
},
"node_modules/jest-diff/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3617,8 +3372,6 @@
},
"node_modules/jest-diff/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3634,8 +3387,6 @@
},
"node_modules/jest-diff/node_modules/color-convert": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3647,15 +3398,11 @@
},
"node_modules/jest-diff/node_modules/color-name": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
"node_modules/jest-get-type": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
- "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3664,14 +3411,22 @@
},
"node_modules/js-tokens": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"license": "MIT"
},
"node_modules/js-yaml": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
- "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
+ "integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/puzrin"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/nodeca"
+ }
+ ],
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
@@ -3682,8 +3437,6 @@
},
"node_modules/jsesc": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
@@ -3694,42 +3447,30 @@
},
"node_modules/json-buffer": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
"dev": true,
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
"license": "MIT"
},
"node_modules/json-schema-traverse": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true,
"license": "MIT"
},
"node_modules/json-stable-stringify-without-jsonify": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
"dev": true,
"license": "MIT"
},
"node_modules/keycode": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.1.tgz",
- "integrity": "sha512-Rdgz9Hl9Iv4QKi8b0OlCRQEzp4AgVxyCtz5S/+VIHezDmrDhkp2N2TqBWOLz0/gbeREXOOiI9/4b8BY9uw2vFg==",
"dev": true,
"license": "MIT"
},
"node_modules/keyv": {
"version": "4.5.4",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3738,8 +3479,6 @@
},
"node_modules/kind-of": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3748,8 +3487,6 @@
},
"node_modules/levn": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3762,14 +3499,10 @@
},
"node_modules/lines-and-columns": {
"version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"license": "MIT"
},
"node_modules/locate-path": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3784,15 +3517,11 @@
},
"node_modules/lodash.merge": {
"version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true,
"license": "MIT"
},
"node_modules/log-symbols": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
- "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
@@ -3807,8 +3536,6 @@
},
"node_modules/log-symbols/node_modules/is-unicode-supported": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
- "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
"license": "MIT",
"engines": {
"node": ">=12"
@@ -3819,8 +3546,6 @@
},
"node_modules/longest-streak": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
- "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
"dev": true,
"license": "MIT",
"funding": {
@@ -3830,8 +3555,6 @@
},
"node_modules/lru-cache": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3841,10 +3564,36 @@
"node": ">=10"
}
},
+ "node_modules/lzma-native": {
+ "version": "8.0.6",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "node-addon-api": "^3.1.0",
+ "node-gyp-build": "^4.2.1",
+ "readable-stream": "^3.6.0"
+ },
+ "bin": {
+ "lzmajs": "bin/lzmajs"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/lzma-native/node_modules/readable-stream": {
+ "version": "3.6.2",
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/magic-string": {
"version": "0.30.12",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz",
- "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0"
@@ -3852,8 +3601,6 @@
},
"node_modules/make-dir": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
- "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
"license": "MIT",
"dependencies": {
"pify": "^3.0.0"
@@ -3864,8 +3611,6 @@
},
"node_modules/make-dir/node_modules/pify": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
- "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -3873,8 +3618,6 @@
},
"node_modules/map-obj": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz",
- "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3886,8 +3629,6 @@
},
"node_modules/mdast-util-from-markdown": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz",
- "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3911,8 +3652,6 @@
},
"node_modules/mdast-util-phrasing": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
- "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3926,8 +3665,6 @@
},
"node_modules/mdast-util-to-markdown": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz",
- "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3947,8 +3684,6 @@
},
"node_modules/mdast-util-to-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
- "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3961,8 +3696,6 @@
},
"node_modules/meow": {
"version": "9.0.0",
- "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz",
- "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3988,8 +3721,6 @@
},
"node_modules/meow/node_modules/type-fest": {
"version": "0.18.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz",
- "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -4001,8 +3732,6 @@
},
"node_modules/merge2": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4011,8 +3740,6 @@
},
"node_modules/micromark": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz",
- "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==",
"dev": true,
"funding": [
{
@@ -4047,8 +3774,6 @@
},
"node_modules/micromark-core-commonmark": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz",
- "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==",
"dev": true,
"funding": [
{
@@ -4082,8 +3807,6 @@
},
"node_modules/micromark-factory-destination": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz",
- "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==",
"dev": true,
"funding": [
{
@@ -4104,8 +3827,6 @@
},
"node_modules/micromark-factory-label": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz",
- "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==",
"dev": true,
"funding": [
{
@@ -4127,8 +3848,6 @@
},
"node_modules/micromark-factory-space": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz",
- "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==",
"dev": true,
"funding": [
{
@@ -4148,8 +3867,6 @@
},
"node_modules/micromark-factory-title": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz",
- "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==",
"dev": true,
"funding": [
{
@@ -4171,8 +3888,6 @@
},
"node_modules/micromark-factory-whitespace": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz",
- "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==",
"dev": true,
"funding": [
{
@@ -4194,8 +3909,6 @@
},
"node_modules/micromark-util-character": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz",
- "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==",
"dev": true,
"funding": [
{
@@ -4215,8 +3928,6 @@
},
"node_modules/micromark-util-chunked": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz",
- "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==",
"dev": true,
"funding": [
{
@@ -4235,8 +3946,6 @@
},
"node_modules/micromark-util-classify-character": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz",
- "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==",
"dev": true,
"funding": [
{
@@ -4257,8 +3966,6 @@
},
"node_modules/micromark-util-combine-extensions": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz",
- "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==",
"dev": true,
"funding": [
{
@@ -4278,8 +3985,6 @@
},
"node_modules/micromark-util-decode-numeric-character-reference": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz",
- "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==",
"dev": true,
"funding": [
{
@@ -4298,8 +4003,6 @@
},
"node_modules/micromark-util-decode-string": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz",
- "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==",
"dev": true,
"funding": [
{
@@ -4321,8 +4024,6 @@
},
"node_modules/micromark-util-encode": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz",
- "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==",
"dev": true,
"funding": [
{
@@ -4338,8 +4039,6 @@
},
"node_modules/micromark-util-html-tag-name": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz",
- "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==",
"dev": true,
"funding": [
{
@@ -4355,8 +4054,6 @@
},
"node_modules/micromark-util-normalize-identifier": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz",
- "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==",
"dev": true,
"funding": [
{
@@ -4375,8 +4072,6 @@
},
"node_modules/micromark-util-resolve-all": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz",
- "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==",
"dev": true,
"funding": [
{
@@ -4395,8 +4090,6 @@
},
"node_modules/micromark-util-sanitize-uri": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz",
- "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==",
"dev": true,
"funding": [
{
@@ -4417,8 +4110,6 @@
},
"node_modules/micromark-util-subtokenize": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz",
- "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==",
"dev": true,
"funding": [
{
@@ -4440,8 +4131,6 @@
},
"node_modules/micromark-util-symbol": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz",
- "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==",
"dev": true,
"funding": [
{
@@ -4457,8 +4146,6 @@
},
"node_modules/micromark-util-types": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz",
- "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==",
"dev": true,
"funding": [
{
@@ -4474,8 +4161,6 @@
},
"node_modules/micromatch": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4488,8 +4173,6 @@
},
"node_modules/micromatch/node_modules/picomatch": {
"version": "2.3.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
- "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4501,8 +4184,6 @@
},
"node_modules/mimic-function": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
- "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -4513,8 +4194,6 @@
},
"node_modules/min-indent": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
- "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4523,8 +4202,6 @@
},
"node_modules/minimatch": {
"version": "3.1.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
- "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -4536,8 +4213,6 @@
},
"node_modules/minimist": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -4546,8 +4221,6 @@
},
"node_modules/minimist-options": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz",
- "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4561,8 +4234,6 @@
},
"node_modules/mkdirp": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
- "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
"license": "MIT",
"bin": {
"mkdirp": "dist/cjs/src/bin.js"
@@ -4576,22 +4247,28 @@
},
"node_modules/ms": {
"version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
"license": "MIT"
},
"node_modules/natural-compare": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
"dev": true,
"license": "MIT"
},
+ "node_modules/node-addon-api": {
+ "version": "3.2.1",
+ "license": "MIT"
+ },
+ "node_modules/node-gyp-build": {
+ "version": "4.8.4",
+ "license": "MIT",
+ "bin": {
+ "node-gyp-build": "bin.js",
+ "node-gyp-build-optional": "optional.js",
+ "node-gyp-build-test": "build-test.js"
+ }
+ },
"node_modules/normalize-package-data": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz",
- "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -4605,9 +4282,9 @@
}
},
"node_modules/npm": {
- "version": "11.14.1",
- "resolved": "https://registry.npmjs.org/npm/-/npm-11.14.1.tgz",
- "integrity": "sha512-aopNZ0eEl6LbxoFcrXLmTEPzNBNxfiQnVgR9RmJBqzm+5h5pFoOmRljpRJbsXxocBeSl7GLcx3MoDf2UlEOjZw==",
+ "version": "11.17.0",
+ "resolved": "https://registry.npmjs.org/npm/-/npm-11.17.0.tgz",
+ "integrity": "sha512-PurxiZexEHDTE4SSaLI3ZrnbAGiZfeyUcQcxcP5D+hfytNAze/D1IzDuInTn9XVLIbAQUnQuSPXJx02LHjLvQw==",
"bundleDependencies": [
"@isaacs/string-locale-compare",
"@npmcli/arborist",
@@ -4685,8 +4362,8 @@
],
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
- "@npmcli/arborist": "^9.5.0",
- "@npmcli/config": "^10.9.0",
+ "@npmcli/arborist": "^9.8.0",
+ "@npmcli/config": "^10.11.0",
"@npmcli/fs": "^5.0.0",
"@npmcli/map-workspaces": "^5.0.3",
"@npmcli/metavuln-calculator": "^9.0.3",
@@ -4704,27 +4381,27 @@
"fs-minipass": "^3.0.3",
"glob": "^13.0.6",
"graceful-fs": "^4.2.11",
- "hosted-git-info": "^9.0.2",
+ "hosted-git-info": "^9.0.3",
"ini": "^6.0.0",
"init-package-json": "^8.2.5",
"is-cidr": "^6.0.4",
"json-parse-even-better-errors": "^5.0.0",
"libnpmaccess": "^10.0.3",
- "libnpmdiff": "^8.1.7",
- "libnpmexec": "^10.2.7",
- "libnpmfund": "^7.0.21",
+ "libnpmdiff": "^8.1.10",
+ "libnpmexec": "^10.3.0",
+ "libnpmfund": "^7.0.24",
"libnpmorg": "^8.0.1",
- "libnpmpack": "^9.1.7",
- "libnpmpublish": "^11.1.3",
+ "libnpmpack": "^9.1.10",
+ "libnpmpublish": "^11.2.0",
"libnpmsearch": "^9.0.1",
"libnpmteam": "^8.0.2",
- "libnpmversion": "^8.0.3",
- "make-fetch-happen": "^15.0.5",
+ "libnpmversion": "^8.0.4",
+ "make-fetch-happen": "^15.0.6",
"minimatch": "^10.2.5",
"minipass": "^7.1.3",
"minipass-pipeline": "^1.2.4",
"ms": "^2.1.2",
- "node-gyp": "^12.3.0",
+ "node-gyp": "^12.4.0",
"nopt": "^9.0.0",
"npm-audit-report": "^7.0.0",
"npm-install-checks": "^8.0.0",
@@ -4734,16 +4411,16 @@
"npm-registry-fetch": "^19.1.1",
"npm-user-validate": "^4.0.0",
"p-map": "^7.0.4",
- "pacote": "^21.5.0",
+ "pacote": "^21.5.1",
"parse-conflict-json": "^5.0.1",
"proc-log": "^6.1.0",
"qrcode-terminal": "^0.12.0",
"read": "^5.0.1",
- "semver": "^7.7.4",
+ "semver": "^7.8.4",
"spdx-expression-parse": "^4.0.0",
"ssri": "^13.0.1",
"supports-color": "^10.2.2",
- "tar": "^7.5.13",
+ "tar": "^7.5.16",
"text-table": "~0.2.0",
"tiny-relative-date": "^2.0.2",
"treeverse": "^3.0.0",
@@ -4783,7 +4460,7 @@
"license": "ISC"
},
"node_modules/npm/node_modules/@npmcli/agent": {
- "version": "4.0.0",
+ "version": "4.0.2",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -4798,7 +4475,7 @@
}
},
"node_modules/npm/node_modules/@npmcli/arborist": {
- "version": "9.5.0",
+ "version": "9.8.0",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -4845,7 +4522,7 @@
}
},
"node_modules/npm/node_modules/@npmcli/config": {
- "version": "10.9.0",
+ "version": "10.11.0",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5025,7 +4702,7 @@
}
},
"node_modules/npm/node_modules/@sigstore/core": {
- "version": "3.2.0",
+ "version": "3.2.1",
"inBundle": true,
"license": "Apache-2.0",
"engines": {
@@ -5069,12 +4746,12 @@
}
},
"node_modules/npm/node_modules/@sigstore/verify": {
- "version": "3.1.0",
+ "version": "3.1.1",
"inBundle": true,
"license": "Apache-2.0",
"dependencies": {
"@sigstore/bundle": "^4.0.0",
- "@sigstore/core": "^3.1.0",
+ "@sigstore/core": "^3.2.1",
"@sigstore/protobuf-specs": "^0.5.0"
},
"engines": {
@@ -5136,7 +4813,7 @@
}
},
"node_modules/npm/node_modules/bin-links": {
- "version": "6.0.0",
+ "version": "6.0.2",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5162,7 +4839,7 @@
}
},
"node_modules/npm/node_modules/brace-expansion": {
- "version": "5.0.5",
+ "version": "5.0.6",
"inBundle": true,
"license": "MIT",
"dependencies": {
@@ -5338,7 +5015,7 @@
"license": "ISC"
},
"node_modules/npm/node_modules/hosted-git-info": {
- "version": "9.0.2",
+ "version": "9.0.3",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5429,7 +5106,7 @@
}
},
"node_modules/npm/node_modules/ip-address": {
- "version": "10.1.1",
+ "version": "10.2.0",
"inBundle": true,
"license": "MIT",
"engines": {
@@ -5502,11 +5179,11 @@
}
},
"node_modules/npm/node_modules/libnpmdiff": {
- "version": "8.1.7",
+ "version": "8.1.10",
"inBundle": true,
"license": "ISC",
"dependencies": {
- "@npmcli/arborist": "^9.5.0",
+ "@npmcli/arborist": "^9.8.0",
"@npmcli/installed-package-contents": "^4.0.0",
"binary-extensions": "^3.0.0",
"diff": "^8.0.2",
@@ -5520,12 +5197,12 @@
}
},
"node_modules/npm/node_modules/libnpmexec": {
- "version": "10.2.7",
+ "version": "10.3.0",
"inBundle": true,
"license": "ISC",
"dependencies": {
"@gar/promise-retry": "^1.0.0",
- "@npmcli/arborist": "^9.5.0",
+ "@npmcli/arborist": "^9.8.0",
"@npmcli/package-json": "^7.0.0",
"@npmcli/run-script": "^10.0.0",
"ci-info": "^4.0.0",
@@ -5542,11 +5219,11 @@
}
},
"node_modules/npm/node_modules/libnpmfund": {
- "version": "7.0.21",
+ "version": "7.0.24",
"inBundle": true,
"license": "ISC",
"dependencies": {
- "@npmcli/arborist": "^9.5.0"
+ "@npmcli/arborist": "^9.8.0"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
@@ -5565,11 +5242,11 @@
}
},
"node_modules/npm/node_modules/libnpmpack": {
- "version": "9.1.7",
+ "version": "9.1.10",
"inBundle": true,
"license": "ISC",
"dependencies": {
- "@npmcli/arborist": "^9.5.0",
+ "@npmcli/arborist": "^9.8.0",
"@npmcli/run-script": "^10.0.0",
"npm-package-arg": "^13.0.0",
"pacote": "^21.0.2"
@@ -5579,7 +5256,7 @@
}
},
"node_modules/npm/node_modules/libnpmpublish": {
- "version": "11.1.3",
+ "version": "11.2.0",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5620,7 +5297,7 @@
}
},
"node_modules/npm/node_modules/libnpmversion": {
- "version": "8.0.3",
+ "version": "8.0.4",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5635,7 +5312,7 @@
}
},
"node_modules/npm/node_modules/lru-cache": {
- "version": "11.3.5",
+ "version": "11.5.1",
"inBundle": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -5643,7 +5320,7 @@
}
},
"node_modules/npm/node_modules/make-fetch-happen": {
- "version": "15.0.5",
+ "version": "15.0.6",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -5795,7 +5472,7 @@
}
},
"node_modules/npm/node_modules/node-gyp": {
- "version": "12.3.0",
+ "version": "12.4.0",
"inBundle": true,
"license": "MIT",
"dependencies": {
@@ -5959,7 +5636,7 @@
}
},
"node_modules/npm/node_modules/pacote": {
- "version": "21.5.0",
+ "version": "21.5.1",
"inBundle": true,
"license": "ISC",
"dependencies": {
@@ -6017,7 +5694,7 @@
}
},
"node_modules/npm/node_modules/postcss-selector-parser": {
- "version": "7.1.1",
+ "version": "7.1.4",
"inBundle": true,
"license": "MIT",
"dependencies": {
@@ -6104,7 +5781,7 @@
"optional": true
},
"node_modules/npm/node_modules/semver": {
- "version": "7.7.4",
+ "version": "7.8.4",
"inBundle": true,
"license": "ISC",
"bin": {
@@ -6126,16 +5803,16 @@
}
},
"node_modules/npm/node_modules/sigstore": {
- "version": "4.1.0",
+ "version": "4.1.1",
"inBundle": true,
"license": "Apache-2.0",
"dependencies": {
"@sigstore/bundle": "^4.0.0",
- "@sigstore/core": "^3.1.0",
+ "@sigstore/core": "^3.2.1",
"@sigstore/protobuf-specs": "^0.5.0",
- "@sigstore/sign": "^4.1.0",
- "@sigstore/tuf": "^4.0.1",
- "@sigstore/verify": "^3.1.0"
+ "@sigstore/sign": "^4.1.1",
+ "@sigstore/tuf": "^4.0.2",
+ "@sigstore/verify": "^3.1.1"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
@@ -6151,7 +5828,7 @@
}
},
"node_modules/npm/node_modules/socks": {
- "version": "2.8.8",
+ "version": "2.8.9",
"inBundle": true,
"license": "MIT",
"dependencies": {
@@ -6218,7 +5895,7 @@
}
},
"node_modules/npm/node_modules/tar": {
- "version": "7.5.13",
+ "version": "7.5.16",
"inBundle": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -6243,7 +5920,7 @@
"license": "MIT"
},
"node_modules/npm/node_modules/tinyglobby": {
- "version": "0.2.16",
+ "version": "0.2.17",
"inBundle": true,
"license": "MIT",
"dependencies": {
@@ -6306,7 +5983,7 @@
}
},
"node_modules/npm/node_modules/undici": {
- "version": "6.25.0",
+ "version": "6.26.0",
"inBundle": true,
"license": "MIT",
"engines": {
@@ -6369,8 +6046,6 @@
},
"node_modules/object-assign": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -6378,8 +6053,6 @@
},
"node_modules/once": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
"license": "ISC",
"dependencies": {
"wrappy": "1"
@@ -6387,8 +6060,6 @@
},
"node_modules/onetime": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
- "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
"license": "MIT",
"dependencies": {
"mimic-function": "^5.0.0"
@@ -6402,8 +6073,6 @@
},
"node_modules/optionator": {
"version": "0.9.4",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6420,8 +6089,6 @@
},
"node_modules/ora": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/ora/-/ora-8.1.0.tgz",
- "integrity": "sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
@@ -6443,8 +6110,6 @@
},
"node_modules/p-limit": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6459,8 +6124,6 @@
},
"node_modules/p-locate": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6475,8 +6138,6 @@
},
"node_modules/p-try": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6485,8 +6146,6 @@
},
"node_modules/parent-module": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"license": "MIT",
"dependencies": {
"callsites": "^3.0.0"
@@ -6497,8 +6156,6 @@
},
"node_modules/parse-json": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.0.0",
@@ -6515,8 +6172,6 @@
},
"node_modules/path-exists": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6525,8 +6180,6 @@
},
"node_modules/path-key": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6535,15 +6188,11 @@
},
"node_modules/path-parse": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
"dev": true,
"license": "MIT"
},
"node_modules/path-type": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6552,20 +6201,14 @@
},
"node_modules/pend": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
- "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
"license": "MIT"
},
"node_modules/picocolors": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz",
- "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==",
"license": "ISC"
},
"node_modules/picomatch": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
- "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
"license": "MIT",
"engines": {
"node": ">=12"
@@ -6576,8 +6219,6 @@
},
"node_modules/pify": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -6585,8 +6226,6 @@
},
"node_modules/pinkie": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
- "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -6594,8 +6233,6 @@
},
"node_modules/pinkie-promise": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
- "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
"license": "MIT",
"dependencies": {
"pinkie": "^2.0.0"
@@ -6606,8 +6243,6 @@
},
"node_modules/plur": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz",
- "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6622,8 +6257,6 @@
},
"node_modules/prelude-ls": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6632,8 +6265,6 @@
},
"node_modules/prettier": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz",
- "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==",
"dev": true,
"license": "MIT",
"bin": {
@@ -6648,8 +6279,6 @@
},
"node_modules/pretty-format": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6663,14 +6292,18 @@
},
"node_modules/process-nextick-args": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"license": "MIT"
},
+ "node_modules/pump": {
+ "version": "3.0.4",
+ "license": "MIT",
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
"node_modules/punycode": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6679,8 +6312,6 @@
},
"node_modules/queue-microtask": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"dev": true,
"funding": [
{
@@ -6700,8 +6331,6 @@
},
"node_modules/quick-lru": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz",
- "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6710,15 +6339,11 @@
},
"node_modules/react-is": {
"version": "18.3.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
- "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
"dev": true,
"license": "MIT"
},
"node_modules/read-pkg": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
- "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6733,8 +6358,6 @@
},
"node_modules/read-pkg-up": {
"version": "7.0.1",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
- "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6751,8 +6374,6 @@
},
"node_modules/read-pkg-up/node_modules/find-up": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6765,8 +6386,6 @@
},
"node_modules/read-pkg-up/node_modules/locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6778,8 +6397,6 @@
},
"node_modules/read-pkg-up/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6794,8 +6411,6 @@
},
"node_modules/read-pkg-up/node_modules/p-locate": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6807,8 +6422,6 @@
},
"node_modules/read-pkg-up/node_modules/type-fest": {
"version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -6817,15 +6430,11 @@
},
"node_modules/read-pkg/node_modules/hosted-git-info": {
"version": "2.8.9",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
- "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
"dev": true,
"license": "ISC"
},
"node_modules/read-pkg/node_modules/normalize-package-data": {
"version": "2.5.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -6837,8 +6446,6 @@
},
"node_modules/read-pkg/node_modules/semver": {
"version": "5.7.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
- "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true,
"license": "ISC",
"bin": {
@@ -6847,8 +6454,6 @@
},
"node_modules/read-pkg/node_modules/type-fest": {
"version": "0.6.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
- "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -6857,8 +6462,6 @@
},
"node_modules/readable-stream": {
"version": "2.3.8",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
- "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"license": "MIT",
"dependencies": {
"core-util-is": "~1.0.0",
@@ -6872,14 +6475,10 @@
},
"node_modules/readable-stream/node_modules/safe-buffer": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"license": "MIT"
},
"node_modules/redent": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz",
- "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6892,14 +6491,10 @@
},
"node_modules/regenerate": {
"version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
"license": "MIT"
},
"node_modules/regenerate-unicode-properties": {
"version": "10.2.2",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz",
- "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==",
"license": "MIT",
"dependencies": {
"regenerate": "^1.4.2"
@@ -6910,8 +6505,6 @@
},
"node_modules/regexpu-core": {
"version": "6.4.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz",
- "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==",
"license": "MIT",
"dependencies": {
"regenerate": "^1.4.2",
@@ -6927,14 +6520,10 @@
},
"node_modules/regjsgen": {
"version": "0.8.0",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz",
- "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==",
"license": "MIT"
},
"node_modules/regjsparser": {
"version": "0.13.0",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz",
- "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==",
"license": "BSD-2-Clause",
"dependencies": {
"jsesc": "~3.1.0"
@@ -6945,8 +6534,6 @@
},
"node_modules/remark-parse": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
- "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6962,8 +6549,6 @@
},
"node_modules/remark-stringify": {
"version": "11.0.0",
- "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
- "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6978,8 +6563,6 @@
},
"node_modules/resolve": {
"version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6996,8 +6579,6 @@
},
"node_modules/resolve-from": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -7005,8 +6586,6 @@
},
"node_modules/restore-cursor": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
- "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
"license": "MIT",
"dependencies": {
"onetime": "^7.0.0",
@@ -7021,8 +6600,6 @@
},
"node_modules/reusify": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7032,8 +6609,6 @@
},
"node_modules/run-parallel": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"dev": true,
"funding": [
{
@@ -7056,8 +6631,6 @@
},
"node_modules/safe-buffer": {
"version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"funding": [
{
"type": "github",
@@ -7076,15 +6649,11 @@
},
"node_modules/same-object": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/same-object/-/same-object-1.0.2.tgz",
- "integrity": "sha512-csHWhvUsLbIOHDM/nP+KHWM+BLPsIzWkFa8HbzaI0G7BqKXgx+7FJpKTGgLXyz5amfdY2OVBcmXTqYOMEk04og==",
"dev": true,
"license": "MIT"
},
"node_modules/seek-bzip": {
"version": "1.0.6",
- "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
- "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
"license": "MIT",
"dependencies": {
"commander": "^2.8.1"
@@ -7096,14 +6665,10 @@
},
"node_modules/seek-bzip/node_modules/commander": {
"version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"license": "MIT"
},
"node_modules/semver": {
"version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true,
"license": "ISC",
"bin": {
@@ -7115,8 +6680,6 @@
},
"node_modules/shebang-command": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7128,8 +6691,6 @@
},
"node_modules/shebang-regex": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7138,8 +6699,6 @@
},
"node_modules/signal-exit": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"license": "ISC",
"engines": {
"node": ">=14"
@@ -7150,8 +6709,6 @@
},
"node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7160,8 +6717,6 @@
},
"node_modules/source-map": {
"version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
@@ -7169,8 +6724,6 @@
},
"node_modules/source-map-support": {
"version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"license": "MIT",
"dependencies": {
"buffer-from": "^1.0.0",
@@ -7179,8 +6732,6 @@
},
"node_modules/spdx-correct": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
- "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -7190,15 +6741,11 @@
},
"node_modules/spdx-exceptions": {
"version": "2.5.0",
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
- "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
"dev": true,
"license": "CC-BY-3.0"
},
"node_modules/spdx-expression-parse": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7208,22 +6755,16 @@
},
"node_modules/spdx-license-ids": {
"version": "3.0.20",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz",
- "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==",
"dev": true,
"license": "CC0-1.0"
},
"node_modules/stackframe": {
"version": "1.3.4",
- "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
- "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==",
"dev": true,
"license": "MIT"
},
"node_modules/stdin-discarder": {
"version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
"license": "MIT",
"engines": {
"node": ">=18"
@@ -7232,10 +6773,17 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/streamx": {
+ "version": "2.25.0",
+ "license": "MIT",
+ "dependencies": {
+ "events-universal": "^1.0.0",
+ "fast-fifo": "^1.3.2",
+ "text-decoder": "^1.1.0"
+ }
+ },
"node_modules/string_decoder": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"license": "MIT",
"dependencies": {
"safe-buffer": "~5.1.0"
@@ -7243,14 +6791,10 @@
},
"node_modules/string_decoder/node_modules/safe-buffer": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"license": "MIT"
},
"node_modules/string-width": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
- "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
"license": "MIT",
"dependencies": {
"emoji-regex": "^10.3.0",
@@ -7266,8 +6810,6 @@
},
"node_modules/strip-ansi": {
"version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"license": "MIT",
"dependencies": {
"ansi-regex": "^6.0.1"
@@ -7281,8 +6823,6 @@
},
"node_modules/strip-dirs": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
- "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
"license": "MIT",
"dependencies": {
"is-natural-number": "^4.0.1"
@@ -7290,8 +6830,6 @@
},
"node_modules/strip-indent": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
- "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7303,8 +6841,6 @@
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7316,8 +6852,6 @@
},
"node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7329,8 +6863,6 @@
},
"node_modules/supports-hyperlinks": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
- "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7343,8 +6875,6 @@
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7354,10 +6884,30 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/tar-fs": {
+ "version": "3.1.2",
+ "license": "MIT",
+ "dependencies": {
+ "pump": "^3.0.0",
+ "tar-stream": "^3.1.5"
+ },
+ "optionalDependencies": {
+ "bare-fs": "^4.0.1",
+ "bare-path": "^3.0.0"
+ }
+ },
+ "node_modules/tar-fs/node_modules/tar-stream": {
+ "version": "3.2.0",
+ "license": "MIT",
+ "dependencies": {
+ "b4a": "^1.6.4",
+ "bare-fs": "^4.5.5",
+ "fast-fifo": "^1.2.0",
+ "streamx": "^2.15.0"
+ }
+ },
"node_modules/tar-stream": {
"version": "1.6.2",
- "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz",
- "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==",
"license": "MIT",
"dependencies": {
"bl": "^1.0.0",
@@ -7372,10 +6922,15 @@
"node": ">= 0.8.0"
}
},
+ "node_modules/teex": {
+ "version": "1.0.1",
+ "license": "MIT",
+ "dependencies": {
+ "streamx": "^2.12.5"
+ }
+ },
"node_modules/terser": {
"version": "5.36.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz",
- "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==",
"license": "BSD-2-Clause",
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
@@ -7392,20 +6947,21 @@
},
"node_modules/terser/node_modules/commander": {
"version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"license": "MIT"
},
+ "node_modules/text-decoder": {
+ "version": "1.2.7",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "b4a": "^1.6.4"
+ }
+ },
"node_modules/through": {
"version": "2.3.8",
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
- "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
"license": "MIT"
},
"node_modules/tinyglobby": {
"version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7421,8 +6977,6 @@
},
"node_modules/tmatch": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/tmatch/-/tmatch-5.0.0.tgz",
- "integrity": "sha512-Ib9OtBkpHn07tXP04SlN1SYRxFgTk6wSM2EBmjjxug4u5RXPRVLkdFJSS1PmrQidaSB8Lru9nRtViQBsbxzE5Q==",
"dev": true,
"license": "ISC",
"engines": {
@@ -7431,14 +6985,10 @@
},
"node_modules/to-buffer": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
- "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==",
"license": "MIT"
},
"node_modules/to-regex-range": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7450,8 +7000,6 @@
},
"node_modules/trim-newlines": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz",
- "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7460,8 +7008,6 @@
},
"node_modules/trough": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
- "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7471,8 +7017,6 @@
},
"node_modules/ts-api-utils": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz",
- "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7484,8 +7028,6 @@
},
"node_modules/tsd": {
"version": "0.33.0",
- "resolved": "https://registry.npmjs.org/tsd/-/tsd-0.33.0.tgz",
- "integrity": "sha512-/PQtykJFVw90QICG7zyPDMIyueOXKL7jOJVoX5pILnb3Ux+7QqynOxfVvarE+K+yi7BZyOSY4r+OZNWSWRiEwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7505,16 +7047,14 @@
}
},
"node_modules/tslib": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz",
- "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==",
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"license": "0BSD",
"optional": true
},
"node_modules/type-check": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7526,8 +7066,6 @@
},
"node_modules/type-fest": {
"version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -7539,8 +7077,6 @@
},
"node_modules/typescript": {
"version": "5.9.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
"devOptional": true,
"license": "Apache-2.0",
"bin": {
@@ -7553,8 +7089,6 @@
},
"node_modules/typescript-eslint": {
"version": "8.48.1",
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.48.1.tgz",
- "integrity": "sha512-FbOKN1fqNoXp1hIl5KYpObVrp0mCn+CLgn479nmu2IsRMrx2vyv74MmsBLVlhg8qVwNFGbXSp8fh1zp8pEoC2A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7577,8 +7111,6 @@
},
"node_modules/unbzip2-stream": {
"version": "1.4.3",
- "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
- "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
"license": "MIT",
"dependencies": {
"buffer": "^5.2.1",
@@ -7587,15 +7119,11 @@
},
"node_modules/undici-types": {
"version": "7.16.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
- "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
"node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz",
- "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -7603,8 +7131,6 @@
},
"node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"license": "MIT",
"dependencies": {
"unicode-canonical-property-names-ecmascript": "^2.0.0",
@@ -7616,8 +7142,6 @@
},
"node_modules/unicode-match-property-value-ecmascript": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz",
- "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -7625,8 +7149,6 @@
},
"node_modules/unicode-property-aliases-ecmascript": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
- "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
"license": "MIT",
"engines": {
"node": ">=4"
@@ -7634,8 +7156,6 @@
},
"node_modules/unified": {
"version": "11.0.5",
- "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
- "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7654,8 +7174,6 @@
},
"node_modules/unified/node_modules/is-plain-obj": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7667,8 +7185,6 @@
},
"node_modules/unist-util-is": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz",
- "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7681,8 +7197,6 @@
},
"node_modules/unist-util-stringify-position": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
- "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7695,8 +7209,6 @@
},
"node_modules/unist-util-visit": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
- "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7711,8 +7223,6 @@
},
"node_modules/unist-util-visit-parents": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
- "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7726,8 +7236,6 @@
},
"node_modules/uri-js": {
"version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -7736,14 +7244,10 @@
},
"node_modules/util-deprecate": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
"license": "MIT"
},
"node_modules/v8-to-istanbul": {
"version": "9.3.0",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
- "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7757,8 +7261,6 @@
},
"node_modules/validate-npm-package-license": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -7768,8 +7270,6 @@
},
"node_modules/vfile": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
- "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7783,8 +7283,6 @@
},
"node_modules/vfile-message": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz",
- "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7798,8 +7296,6 @@
},
"node_modules/which": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7814,8 +7310,6 @@
},
"node_modules/word-wrap": {
"version": "1.2.5",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7824,14 +7318,10 @@
},
"node_modules/wrappy": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
"license": "ISC"
},
"node_modules/xtend": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
- "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
"license": "MIT",
"engines": {
"node": ">=0.4"
@@ -7839,15 +7329,11 @@
},
"node_modules/yallist": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"dev": true,
"license": "ISC"
},
"node_modules/yargs-parser": {
"version": "20.2.9",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
- "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
"dev": true,
"license": "ISC",
"engines": {
@@ -7856,8 +7342,6 @@
},
"node_modules/yauzl": {
"version": "2.10.0",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
- "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
"license": "MIT",
"dependencies": {
"buffer-crc32": "~0.2.3",
@@ -7866,8 +7350,6 @@
},
"node_modules/yocto-queue": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7879,14 +7361,26 @@
},
"node_modules/zwitch": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
- "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
"dev": true,
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
+ },
+ "packages/wasmtime": {
+ "name": "@fastly/wasmtime",
+ "version": "43.0.0",
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "extract-zip": "^2.0.1",
+ "lzma-native": "^8.0.6",
+ "tar-fs": "^3.1.2"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
}
}
}
diff --git a/package.json b/package.json
index 7ca18e2f64..0f55c67337 100644
--- a/package.json
+++ b/package.json
@@ -44,7 +44,7 @@
"test:wpt": "tests/wpt-harness/build-wpt-runtime.sh && node ./tests/wpt-harness/run-wpt.mjs -vv",
"test:wpt:debug": "tests/wpt-harness/build-wpt-runtime.sh --debug-build && node ./tests/wpt-harness/run-wpt.mjs -vv",
"test:types": "tsd",
- "clean": "rm -rf dist/ starling.wasm fastly.wasm fastly.debug.wasm fastly-weval.wasm fastly-ics.wevalcache fastly-js-compute-*.tgz",
+ "clean": "rm -rf dist/ starling.wasm fastly.wasm fastly.debug.wasm fastly-weval.wasm fastly-ics.wevalcache fastly-js-compute-*.tgz runtime/fastly/build-debug runtime/fastly/build-release runtime/fastly/build-release-weval",
"build": "npm run clean && npm run build:cli && npm run build:debug && npm run build:release && npm run build:weval",
"build:cli": "tsc",
"build:release": "./runtime/fastly/build-release.sh",
@@ -57,14 +57,14 @@
},
"dependencies": {
"@bytecodealliance/jco": "^1.7.0",
- "@bytecodealliance/weval": "^0.3.2",
- "@bytecodealliance/wizer": "^7.0.5",
+ "@bytecodealliance/weval": "^0.4.1",
+ "@fastly/wasmtime": "file:packages/wasmtime",
"@jridgewell/remapping": "^2.3.5",
"@jridgewell/trace-mapping": "^0.3.31",
"acorn": "^8.13.0",
"acorn-walk": "^8.3.4",
"cosmiconfig": "^9.0.1",
- "esbuild": "^0.25.0",
+ "esbuild": "^0.28.1",
"magic-string": "^0.30.12",
"npm": "^11.14.1",
"picomatch": "^4.0.4",
@@ -86,6 +86,9 @@
"typescript-eslint": "^8.48.1",
"unified": "^11.0.5"
},
+ "bundledDependencies": [
+ "@fastly/wasmtime"
+ ],
"peerDependencies": {
"typescript": ">=5.9"
},
@@ -103,5 +106,9 @@
"packageManager": {
"name": "npm"
}
- }
+ },
+ "allowScripts": {},
+ "bundleDependencies": [
+ "@fastly/wasmtime"
+ ]
}
diff --git a/packages/wasmtime/README.md b/packages/wasmtime/README.md
new file mode 100644
index 0000000000..90927975b5
--- /dev/null
+++ b/packages/wasmtime/README.md
@@ -0,0 +1,16 @@
+# @fastly/wasmtime
+
+Provides wasmtime binaries for Node.js applications.
+
+## Usage
+
+```javascript
+import wasmtime from '@fastly/wasmtime';
+
+const wasmtimePath = await wasmtime();
+// wasmtimePath contains the full path to the wasmtime binary
+```
+
+## License
+
+Apache-2.0
diff --git a/packages/wasmtime/index.js b/packages/wasmtime/index.js
new file mode 100644
index 0000000000..31e1e10e06
--- /dev/null
+++ b/packages/wasmtime/index.js
@@ -0,0 +1,10 @@
+import { fileURLToPath } from 'node:url';
+import { dirname, join } from 'node:path';
+
+const __dirname = dirname(fileURLToPath(import.meta.url));
+
+export default async function wasmtime() {
+ const binary = process.platform === 'win32' ? 'wasmtime.exe' : 'wasmtime';
+ const binPath = join(__dirname, 'bin', binary);
+ return binPath;
+}
diff --git a/packages/wasmtime/package.json b/packages/wasmtime/package.json
new file mode 100644
index 0000000000..9b9c257b03
--- /dev/null
+++ b/packages/wasmtime/package.json
@@ -0,0 +1,23 @@
+{
+ "name": "@fastly/wasmtime",
+ "version": "43.0.0",
+ "description": "Wasmtime binary distribution for Node.js",
+ "type": "module",
+ "main": "index.js",
+ "scripts": {
+ "postinstall": "node scripts/postinstall.js"
+ },
+ "files": [
+ "index.js",
+ "scripts/postinstall.js"
+ ],
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "dependencies": {
+ "tar-fs": "^3.1.2",
+ "extract-zip": "^2.0.1",
+ "lzma-native": "^8.0.6"
+ },
+ "license": "Apache-2.0"
+}
diff --git a/packages/wasmtime/scripts/postinstall.js b/packages/wasmtime/scripts/postinstall.js
new file mode 100644
index 0000000000..195ca7fb9a
--- /dev/null
+++ b/packages/wasmtime/scripts/postinstall.js
@@ -0,0 +1,114 @@
+#!/usr/bin/env node
+import { mkdir, chmod, readFile, readdir, rename, rm } from 'node:fs/promises';
+import { createReadStream, createWriteStream } from 'node:fs';
+import { Readable } from 'node:stream';
+import { pipeline } from 'node:stream/promises';
+import { dirname, join } from 'node:path';
+import { fileURLToPath } from 'node:url';
+import { extract } from 'tar-fs';
+import lzma from 'lzma-native';
+import extractZip from 'extract-zip';
+
+const __dirname = dirname(fileURLToPath(import.meta.url));
+const binDir = join(__dirname, '..', 'bin');
+
+const packageJson = JSON.parse(
+ await readFile(join(__dirname, '..', 'package.json'), 'utf-8')
+);
+const WASMTIME_VERSION = `v${packageJson.version}`;
+
+function getPlatformInfo() {
+ const platform = process.platform;
+ const arch = process.arch;
+
+ if (platform === 'darwin' && arch === 'x64') {
+ return { file: `wasmtime-${WASMTIME_VERSION}-x86_64-macos.tar.xz`, binary: 'wasmtime' };
+ }
+ if (platform === 'darwin' && arch === 'arm64') {
+ return { file: `wasmtime-${WASMTIME_VERSION}-aarch64-macos.tar.xz`, binary: 'wasmtime' };
+ }
+ if (platform === 'linux' && arch === 'x64') {
+ return { file: `wasmtime-${WASMTIME_VERSION}-x86_64-linux.tar.xz`, binary: 'wasmtime' };
+ }
+ if (platform === 'linux' && arch === 'arm64') {
+ return { file: `wasmtime-${WASMTIME_VERSION}-aarch64-linux.tar.xz`, binary: 'wasmtime' };
+ }
+ if (platform === 'win32' && arch === 'x64') {
+ return { file: `wasmtime-${WASMTIME_VERSION}-x86_64-windows.zip`, binary: 'wasmtime.exe' };
+ }
+
+ throw new Error(`Unsupported platform: ${platform}-${arch}`);
+}
+
+async function downloadFile(url, dest) {
+ const response = await fetch(url);
+ if (!response.ok) {
+ throw new Error(`Failed to download: ${response.status}`);
+ }
+ const fileStream = createWriteStream(dest);
+ await pipeline(Readable.fromWeb(response.body), fileStream);
+}
+
+async function extractTarXz(archivePath, destDir) {
+ await pipeline(
+ createReadStream(archivePath),
+ lzma.createDecompressor(),
+ extract(destDir, {
+ strip: 1,
+ })
+ );
+}
+
+async function extractZipWithStrip(archivePath, destDir) {
+ const tempDir = join(destDir, '.extract-temp');
+
+ await extractZip(archivePath, { dir: tempDir });
+
+ const entries = await readdir(tempDir);
+ if (entries.length !== 1) {
+ throw new Error('Expected single root directory in zip file');
+ }
+
+ const rootDir = join(tempDir, entries[0]);
+ const contents = await readdir(rootDir);
+
+ for (const item of contents) {
+ await rename(join(rootDir, item), join(destDir, item));
+ }
+
+ await rm(tempDir, { recursive: true });
+}
+
+async function installWasmtime() {
+ try {
+ const { file, binary } = getPlatformInfo();
+ const url = `https://github.com/bytecodealliance/wasmtime/releases/download/${WASMTIME_VERSION}/${file}`;
+
+ console.log(`Downloading wasmtime ${WASMTIME_VERSION} for ${process.platform}-${process.arch}...`);
+
+ await mkdir(binDir, { recursive: true });
+
+ const archivePath = join(binDir, file);
+ await downloadFile(url, archivePath);
+
+ console.log('Extracting...');
+ if (file.endsWith('.tar.xz')) {
+ await extractTarXz(archivePath, binDir);
+ } else if (file.endsWith('.zip')) {
+ await extractZipWithStrip(archivePath, binDir);
+ }
+
+ const binaryPath = join(binDir, binary);
+ if (process.platform !== 'win32') {
+ await chmod(binaryPath, 0o755);
+ }
+
+ console.log('✓ wasmtime installed successfully');
+ } catch (error) {
+ console.error('Failed to install wasmtime:', error.message);
+ console.error('You may need to install wasmtime manually: https://wasmtime.dev/');
+ process.exit(1);
+ }
+}
+
+installWasmtime();
diff --git a/runtime/StarlingMonkey b/runtime/StarlingMonkey
index 3c2dbf48f5..9dda8ba7fc 160000
--- a/runtime/StarlingMonkey
+++ b/runtime/StarlingMonkey
@@ -1 +1 @@
-Subproject commit 3c2dbf48f5b13792d5465de4f5f817b20de43fab
+Subproject commit 9dda8ba7fcda2e17c6795d402f0478cf4c1f7f37
diff --git a/runtime/fastly/CMakeLists.txt b/runtime/fastly/CMakeLists.txt
index c9db01523d..7b011b55df 100644
--- a/runtime/fastly/CMakeLists.txt
+++ b/runtime/fastly/CMakeLists.txt
@@ -1,8 +1,5 @@
cmake_minimum_required(VERSION 3.27)
-#FIXME(1243)
-file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/../rust-toolchain.toml" DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/../StarlingMonkey")
-
# Apply any local patches to StarlingMonkey before it is included as a subproject
file(GLOB SM_PATCHES "${CMAKE_CURRENT_SOURCE_DIR}/patches/starlingmonkey-*.patch")
foreach(patch IN LISTS SM_PATCHES)
@@ -61,9 +58,7 @@ add_builtin(fastly::fetch
builtins/fetch/request-response.cpp
builtins/fetch/request-response.cpp
../StarlingMonkey/builtins/web/fetch/headers.cpp
- ../StarlingMonkey/builtins/web/fetch/fetch-utils.cpp
- DEPENDENCIES
- fmt)
+ ../StarlingMonkey/builtins/web/fetch/fetch-utils.cpp)
add_builtin(fastly::cache_override SRC builtins/cache-override.cpp)
@@ -82,6 +77,9 @@ add_builtin(fastly::html_rewriter
${CMAKE_CURRENT_SOURCE_DIR}/crates/rust-lol-html/include
)
+# Stub implementation of parts of `AbortSignal` depended on by the `event` StarlingMonkey builtin
+add_builtin(fastly::abort SRC builtins/abort.cpp)
+
add_compile_definitions(PUBLIC RUNTIME_VERSION=${RUNTIME_VERSION})
if(DEFINED FASTLY_GC_FREQUENCY)
diff --git a/runtime/fastly/build-debug.sh b/runtime/fastly/build-debug.sh
index 5968694f1a..f27ef134fb 100755
--- a/runtime/fastly/build-debug.sh
+++ b/runtime/fastly/build-debug.sh
@@ -32,7 +32,7 @@ while [[ $# -gt 0 ]]; do
done
RUNTIME_VERSION=$(npm pkg get version --json --prefix=../../ | jq -r)
-HOST_API=$(realpath host-api) cmake -B build-debug -DCMAKE_BUILD_TYPE=Debug -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DRUNTIME_VERSION="\"$RUNTIME_VERSION-debug\"" -DENABLE_JS_DEBUGGER=OFF "$GC_FREQUENCY"
+HOST_API=$(realpath host-api) cmake -B build-debug -DCMAKE_BUILD_TYPE=Debug -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DENABLE_BUILTIN_WEB_ABORT=0 -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DRUNTIME_VERSION="\"$RUNTIME_VERSION-debug\"" -DENABLE_JS_DEBUGGER=OFF "$GC_FREQUENCY"
cmake --build build-debug --parallel 10
if [ "$KEEP_DEBUG_INFO" -eq 0 ]; then
wasm-tools strip build-debug/starling-raw.wasm/starling-raw.wasm -d ".debug_(info|loc|ranges|abbrev|line|str)" -o ../../fastly.debug.wasm
diff --git a/runtime/fastly/build-release-weval.sh b/runtime/fastly/build-release-weval.sh
index 0f1d1290ed..9a2eb458fb 100755
--- a/runtime/fastly/build-release-weval.sh
+++ b/runtime/fastly/build-release-weval.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
cd "$(dirname "$0")" || exit 1
RUNTIME_VERSION=$(npm pkg get version --json --prefix=../../ | jq -r)
-HOST_API=$(realpath host-api) cmake -B build-release-weval -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DRUNTIME_VERSION="\"$RUNTIME_VERSION\"" -DWEVAL=ON -DENABLE_JS_DEBUGGER=OFF
+HOST_API=$(realpath host-api) cmake -B build-release-weval -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DENABLE_BUILTIN_WEB_ABORT=0 -DRUNTIME_VERSION="\"$RUNTIME_VERSION\"" -DWEVAL=ON -DENABLE_JS_DEBUGGER=OFF
cmake --build build-release-weval --parallel 8
mv build-release-weval/starling-raw.wasm/starling-raw.wasm ../../fastly-weval.wasm
mv build-release-weval/starling-raw.wasm/starling-ics.wevalcache ../../fastly-ics.wevalcache
diff --git a/runtime/fastly/build-release.sh b/runtime/fastly/build-release.sh
index 6437ce5e92..d5e9e2b607 100755
--- a/runtime/fastly/build-release.sh
+++ b/runtime/fastly/build-release.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
cd "$(dirname "$0")" || exit 1
RUNTIME_VERSION=$(npm pkg get version --json --prefix=../../ | jq -r)
-HOST_API=$(realpath host-api) cmake -B build-release -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DRUNTIME_VERSION="\"$RUNTIME_VERSION\"" -DENABLE_JS_DEBUGGER=OFF
+HOST_API=$(realpath host-api) cmake -B build-release -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILTIN_WEB_FETCH=0 -DENABLE_BUILTIN_WEB_FETCH_FETCH_EVENT=0 -DENABLE_BUILTIN_WEB_ABORT=0 -DRUNTIME_VERSION="\"$RUNTIME_VERSION\"" -DENABLE_JS_DEBUGGER=OFF
cmake --build build-release
mv build-release/starling-raw.wasm/starling-raw.wasm ../../fastly.wasm
diff --git a/runtime/fastly/builtins/abort.cpp b/runtime/fastly/builtins/abort.cpp
new file mode 100644
index 0000000000..1adb681ac0
--- /dev/null
+++ b/runtime/fastly/builtins/abort.cpp
@@ -0,0 +1,18 @@
+
+#include "../../StarlingMonkey/builtins/web/abort/abort-signal.h"
+
+// StarlingMonkey's event builtin depends on parts of the abort builtin, but we don't support
+// aborting fetches yet, so we don't build the abort builtin at all. To get around this, we stub the
+// relevant abort signal methods that the event builtin depends on.
+
+namespace builtins::web::abort {
+bool AbortSignal::add_algorithm(JSObject *, js::UniquePtr) { return true; }
+
+bool AbortSignal::is_aborted(JSObject *) { return false; }
+
+void AbortSignal::finalize(JS::GCContext *, JSObject *) {}
+void AbortSignal::trace(JSTracer *, JSObject *) {}
+} // namespace builtins::web::abort
+namespace fastly::abort {
+bool install(api::Engine *engine) { return true; }
+} // namespace fastly::abort
\ No newline at end of file
diff --git a/runtime/fastly/builtins/acl.cpp b/runtime/fastly/builtins/acl.cpp
index 43207d5b51..7193076480 100644
--- a/runtime/fastly/builtins/acl.cpp
+++ b/runtime/fastly/builtins/acl.cpp
@@ -155,8 +155,7 @@ bool install(api::Engine *engine) {
return false;
}
- RootedObject acl_obj(engine->cx(),
- JS_GetConstructor(engine->cx(), BuiltinNoConstructor::proto_obj));
+ RootedObject acl_obj(engine->cx(), JS_GetConstructor(engine->cx(), Acl::proto_obj));
RootedValue acl_val(engine->cx(), ObjectValue(*acl_obj));
RootedObject acl_ns(engine->cx(), JS_NewObject(engine->cx(), nullptr));
if (!JS_SetProperty(engine->cx(), acl_ns, "Acl", acl_val)) {
diff --git a/runtime/fastly/builtins/backend.cpp b/runtime/fastly/builtins/backend.cpp
index c3340f924c..3b6ad60d67 100644
--- a/runtime/fastly/builtins/backend.cpp
+++ b/runtime/fastly/builtins/backend.cpp
@@ -1808,6 +1808,21 @@ void Backend::finalize(JS::GCContext *gcx, JSObject *obj) {
free(backend);
}
+bool Backend::restore_global_state(JSContext *cx) {
+ JS::Rooted props(cx, cx);
+ if (!JS_Enumerate(cx, Backend::backends, &props)) {
+ return false;
+ }
+ JS::RootedValue backend(cx);
+ for (uint32_t i = 0, len = props.length(); i < len; i++) {
+ if (!JS_GetPropertyById(cx, Backend::backends, props[i], &backend)) {
+ return false;
+ }
+ JS_DeletePropertyById(cx, Backend::backends, props[i]);
+ }
+ return true;
+}
+
bool set_default_backend_config(JSContext *cx, unsigned argc, JS::Value *vp) {
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
if (!args.requireAtLeast(cx, "setDefaultDynamicBackendConfiguration", 1)) {
@@ -1859,8 +1874,7 @@ bool install(api::Engine *engine) {
return false;
}
- RootedObject backend_obj(engine->cx(),
- JS_GetConstructor(engine->cx(), BuiltinImpl::proto_obj));
+ RootedObject backend_obj(engine->cx(), JS_GetConstructor(engine->cx(), Backend::proto_obj));
RootedValue backend_val(engine->cx(), ObjectValue(*backend_obj));
RootedObject backend_ns(engine->cx(), JS_NewObject(engine->cx(), nullptr));
if (!JS_SetProperty(engine->cx(), backend_ns, "Backend", backend_val)) {
diff --git a/runtime/fastly/builtins/backend.h b/runtime/fastly/builtins/backend.h
index 176f04aabe..1027fb69a8 100644
--- a/runtime/fastly/builtins/backend.h
+++ b/runtime/fastly/builtins/backend.h
@@ -1,13 +1,13 @@
#ifndef FASTLY_BACKEND_H
#define FASTLY_BACKEND_H
+#include "../host-api/host_api_fastly.h"
#include "builtin.h"
#include "extension-api.h"
namespace fastly::backend {
-class Backend : public builtins::FinalizableBuiltinImpl {
-private:
+class Backend : public builtins::BuiltinImpl {
public:
static constexpr const char *class_name = "Backend";
static const int ctor_length = 1;
@@ -23,6 +23,7 @@ class Backend : public builtins::FinalizableBuiltinImpl {
static JSString *name(JSContext *cx, JSObject *self);
static JSObject *create(JSContext *cx, JS::HandleObject request);
+ static bool restore_global_state(JSContext *cx);
// static methods
static bool exists(JSContext *cx, unsigned argc, JS::Value *vp);
diff --git a/runtime/fastly/builtins/cache-core.cpp b/runtime/fastly/builtins/cache-core.cpp
index da5cfe7a9f..f5e509643f 100644
--- a/runtime/fastly/builtins/cache-core.cpp
+++ b/runtime/fastly/builtins/cache-core.cpp
@@ -73,7 +73,7 @@ JS::Result parseLookupOptions(JSContext *cx,
Headers::HeadersList *headers_list = Headers::get_list(cx, headers);
MOZ_ASSERT(headers_list);
auto res = host_api::write_headers(request_handle.headers_writable(), *headers_list);
- if (auto *err = res.to_err()) {
+ if (res.is_err()) {
return JS::Result(JS::Error());
}
options.request_headers = host_api::HttpReq(request_handle);
@@ -362,7 +362,7 @@ JS::Result parseInsertOptions(JSContext *cx,
Headers::HeadersList *headers_list = Headers::get_list(cx, headers);
MOZ_ASSERT(headers_list);
auto res = host_api::write_headers(request_handle.headers_writable(), *headers_list);
- if (auto *err = res.to_err()) {
+ if (res.is_err()) {
return JS::Result(JS::Error());
}
options.request_headers = host_api::HttpReq(request_handle);
diff --git a/runtime/fastly/builtins/cache-simple.cpp b/runtime/fastly/builtins/cache-simple.cpp
index 735be8dc0f..e3adabb065 100644
--- a/runtime/fastly/builtins/cache-simple.cpp
+++ b/runtime/fastly/builtins/cache-simple.cpp
@@ -333,7 +333,7 @@ bool get_or_set_then_handler(JSContext *cx, JS::HandleObject lookup_state, JS::H
options.surrogate_keys = key_result.inspect();
auto inserted_res = handle.transaction_insert_and_stream_back(options);
- if (auto *err = inserted_res.to_err()) {
+ if (inserted_res.is_err()) {
return false;
}
@@ -344,22 +344,22 @@ bool get_or_set_then_handler(JSContext *cx, JS::HandleObject lookup_state, JS::H
// source_body will only be valid when the body is a Host-backed ReadableStream
if (source_body.valid()) {
auto res = body.append(source_body);
- if (auto *error = res.to_err()) {
+ if (res.is_err()) {
return false;
}
} else {
auto write_res = body.write_all_back(reinterpret_cast(buf.get()), options.length);
- if (auto *error = write_res.to_err()) {
+ if (write_res.is_err()) {
return false;
}
auto close_res = body.close();
- if (auto *error = close_res.to_err()) {
+ if (close_res.is_err()) {
return false;
}
}
auto res = inserted_handle.get_body(host_api::CacheGetBodyOptions{});
- if (auto *err = res.to_err()) {
+ if (res.is_err()) {
return false;
}
@@ -424,14 +424,14 @@ bool process_pending_cache_lookup(JSContext *cx, host_api::CacheHandle::Handle h
// cache under the provided `key`, and then we will resolve with a SimpleCacheEntry
// containing the value.
auto state_res = pending_lookup.get_state();
- if (auto *err = state_res.to_err()) {
+ if (state_res.is_err()) {
return false;
}
auto state = state_res.unwrap();
if (state.is_usable()) {
auto body_res = pending_lookup.get_body(host_api::CacheGetBodyOptions{});
- if (auto *err = body_res.to_err()) {
+ if (body_res.is_err()) {
return false;
}
diff --git a/runtime/fastly/builtins/fastly.cpp b/runtime/fastly/builtins/fastly.cpp
index 54d0233fd8..5a9cca1eec 100644
--- a/runtime/fastly/builtins/fastly.cpp
+++ b/runtime/fastly/builtins/fastly.cpp
@@ -778,6 +778,14 @@ const JSPropertySpec Fastly::properties[] = {
#endif
JS_PS_END};
+bool Fastly::restore_builtin_state(JSContext *cx) {
+ Fastly::baseURL.reset();
+ Fastly::defaultBackend.reset();
+ Fastly::baseURL.init(cx);
+ Fastly::defaultBackend.init(cx);
+ return true;
+}
+
bool install(api::Engine *engine) {
ENGINE = engine;
@@ -1022,15 +1030,19 @@ JS::Result> convertBodyInit(JSContext *cx,
if (!buf) {
return JS::Result>(JS::Error());
}
- // `maybeNoGC` needs to be populated for the lifetime of `buf` because
- // short typed arrays have inline data which can move on GC, so assert
- // that no GC happens. (Which it doesn't, because we're not allocating
- // before `buf` goes out of scope.)
- JS::AutoCheckCannotGC noGC;
- bool is_shared;
- auto *data = JS_GetArrayBufferViewData(bodyObj, &is_shared, noGC);
- std::memcpy(buf.get(), data, length);
- MOZ_ASSERT(!is_shared);
+ // `noGC` must remain in scope while we hold the raw pointer into the typed
+ // array's data, because short typed arrays have inline data that can move
+ // if the GC runs. We copy into our own JS_malloc buffer before noGC goes
+ // out of scope so the returned UniqueChars owns its memory.
+ {
+ JS::AutoCheckCannotGC noGC;
+ bool is_shared;
+ void *view_data = JS_GetArrayBufferViewData(bodyObj, &is_shared, noGC);
+ MOZ_ASSERT(!is_shared);
+ if (length > 0) {
+ std::memcpy(buf.get(), view_data, length);
+ }
+ }
return JS::Result>(std::make_tuple(std::move(buf), length));
} else if (bodyObj && JS::IsArrayBufferObject(bodyObj)) {
bool is_shared;
@@ -1038,16 +1050,23 @@ JS::Result> convertBodyInit(JSContext *cx,
JS::GetArrayBufferLengthAndData(bodyObj, &length, &is_shared, &bytes);
MOZ_ASSERT(!is_shared);
buf.reset(reinterpret_cast(JS_malloc(cx, length)));
- std::memcpy(buf.get(), bytes, length);
+ if (!buf) {
+ return JS::Result>(JS::Error());
+ }
+ if (length > 0) {
+ std::memcpy(buf.get(), bytes, length);
+ }
return JS::Result>(std::make_tuple(std::move(buf), length));
} else if (bodyObj && URLSearchParams::is_instance(bodyObj)) {
jsurl::SpecSlice slice = URLSearchParams::serialize(cx, bodyObj);
- buf.reset(reinterpret_cast(JS_malloc(cx, slice.len)));
+ length = slice.len;
+ buf.reset(reinterpret_cast(JS_malloc(cx, length)));
if (!buf) {
return JS::Result>(JS::Error());
}
- std::memcpy(buf.get(), slice.data, slice.len);
- length = slice.len;
+ if (length > 0) {
+ std::memcpy(buf.get(), slice.data, length);
+ }
return JS::Result>(std::make_tuple(std::move(buf), length));
} else {
// Convert into a String following https://tc39.es/ecma262/#sec-tostring
diff --git a/runtime/fastly/builtins/fastly.h b/runtime/fastly/builtins/fastly.h
index 743d823620..0f5d4d2586 100644
--- a/runtime/fastly/builtins/fastly.h
+++ b/runtime/fastly/builtins/fastly.h
@@ -114,6 +114,7 @@ class Fastly : public builtins::BuiltinNoConstructor {
static bool allowDynamicBackends_set(JSContext *cx, unsigned argc, JS::Value *vp);
static bool inspect(JSContext *cx, unsigned argc, JS::Value *vp);
static bool setReusableSandboxOptions(JSContext *cx, unsigned argc, JS::Value *vp);
+ static bool restore_builtin_state(JSContext *cx);
};
JS::Result> convertBodyInit(JSContext *cx,
diff --git a/runtime/fastly/builtins/fetch/request-response.cpp b/runtime/fastly/builtins/fetch/request-response.cpp
index e7d9228c49..016d162fcf 100644
--- a/runtime/fastly/builtins/fetch/request-response.cpp
+++ b/runtime/fastly/builtins/fetch/request-response.cpp
@@ -2472,8 +2472,14 @@ bool Request::clone(JSContext *cx, unsigned argc, JS::Value *vp) {
return false;
}
+ JS::RootedValue headers_val(cx, JS::ObjectValue(*headers));
+ JS::RootedObject cloned_headers(cx, Headers::create(cx, headers_val, Headers::guard(headers)));
+ if (!cloned_headers) {
+ return false;
+ }
+
JS::SetReservedSlot(requestInstance, static_cast(Slots::Headers),
- JS::ObjectValue(*headers));
+ JS::ObjectValue(*cloned_headers));
JS::RootedString method(cx, Request::method(cx, self));
if (!method) {
@@ -4284,9 +4290,9 @@ bool Response::ttl_set(JSContext *cx, unsigned argc, JS::Value *vp) {
return false;
}
- if (std::isnan(seconds) || seconds <= 0) {
+ if (std::isnan(seconds) || seconds < 0) {
api::throw_error(cx, api::Errors::TypeError, "Response set", "ttl",
- "be a number greater than zero");
+ "be a number greater than or equal to zero");
return false;
}
@@ -4314,9 +4320,9 @@ bool Response::staleWhileRevalidate_set(JSContext *cx, unsigned argc, JS::Value
return false;
}
- if (std::isnan(seconds) || seconds <= 0) {
+ if (std::isnan(seconds) || seconds < 0) {
api::throw_error(cx, api::Errors::TypeError, "Response set", "staleWhileRevalidate",
- "be a number greater than zero");
+ "be a number greater than or equal to zero");
return false;
}
@@ -4342,9 +4348,9 @@ bool Response::staleIfError_set(JSContext *cx, unsigned argc, JS::Value *vp) {
return false;
}
- if (std::isnan(seconds) || seconds <= 0) {
+ if (std::isnan(seconds) || seconds < 0) {
api::throw_error(cx, api::Errors::TypeError, "Response set", "staleIfError",
- "be a number greater than zero");
+ "be a number greater than or equal to zero");
return false;
}
diff --git a/runtime/fastly/builtins/fetch/request-response.h b/runtime/fastly/builtins/fetch/request-response.h
index 4ee5b61885..d003d359e7 100644
--- a/runtime/fastly/builtins/fetch/request-response.h
+++ b/runtime/fastly/builtins/fetch/request-response.h
@@ -225,7 +225,7 @@ class Request final : public builtins::BuiltinImpl {
static JSObject *create_instance(JSContext *cx);
};
-class Response final : public builtins::FinalizableBuiltinImpl {
+class Response final : public builtins::BuiltinImpl {
static bool waitUntil(JSContext *cx, unsigned argc, JS::Value *vp);
static bool ok_get(JSContext *cx, unsigned argc, JS::Value *vp);
static bool status_get(JSContext *cx, unsigned argc, JS::Value *vp);
diff --git a/runtime/fastly/builtins/html-rewriter.cpp b/runtime/fastly/builtins/html-rewriter.cpp
index 5c6bbddcd2..f015ca0f45 100644
--- a/runtime/fastly/builtins/html-rewriter.cpp
+++ b/runtime/fastly/builtins/html-rewriter.cpp
@@ -615,9 +615,8 @@ bool install(api::Engine *engine) {
return false;
}
- RootedObject html_rewriter_obj(
- engine->cx(),
- JS_GetConstructor(engine->cx(), builtins::BuiltinImpl::proto_obj));
+ RootedObject html_rewriter_obj(engine->cx(),
+ JS_GetConstructor(engine->cx(), HTMLRewritingStream::proto_obj));
RootedValue html_rewriter_val(engine->cx(), ObjectValue(*html_rewriter_obj));
RootedObject html_rewriter_ns(engine->cx(), JS_NewObject(engine->cx(), nullptr));
if (!JS_SetProperty(engine->cx(), html_rewriter_ns, "HTMLRewritingStream", html_rewriter_val)) {
diff --git a/runtime/fastly/builtins/html-rewriter.h b/runtime/fastly/builtins/html-rewriter.h
index dab097b4ad..c069b69177 100644
--- a/runtime/fastly/builtins/html-rewriter.h
+++ b/runtime/fastly/builtins/html-rewriter.h
@@ -33,7 +33,8 @@ class Element : public builtins::BuiltinNoConstructor {
static bool replaceWith(JSContext *cx, unsigned argc, JS::Value *vp);
};
-class HTMLRewritingStream : public builtins::TraceableBuiltinImpl {
+class HTMLRewritingStream
+ : public builtins::BuiltinImpl {
private:
static bool transformAlgorithm(JSContext *cx, unsigned argc, JS::Value *vp);
static bool flushAlgorithm(JSContext *cx, unsigned argc, JS::Value *vp);
@@ -60,4 +61,4 @@ class HTMLRewritingStream : public builtins::TraceableBuiltinImpl
#include
+#include
#include
namespace fastly::common {
@@ -25,4 +26,4 @@ bool normalize_http_method(char *method, size_t length) {
std::ranges::copy(*it, method); // copy the already-uppercase canonical form
return true;
}
-} // namespace fastly::common
\ No newline at end of file
+} // namespace fastly::common
diff --git a/runtime/fastly/handler.cpp b/runtime/fastly/handler.cpp
index b5bfc6b8b1..5b36961888 100644
--- a/runtime/fastly/handler.cpp
+++ b/runtime/fastly/handler.cpp
@@ -1,4 +1,5 @@
#include "../StarlingMonkey/builtins/web/performance.h"
+#include "./builtins/backend.h"
#include "./builtins/fastly.h"
#include "./builtins/fetch-event.h"
#include "./host-api/fastly.h"
@@ -17,12 +18,32 @@ namespace fastly::runtime {
api::Engine *ENGINE;
+bool restore_builtin_state() {
+ JSContext *cx(ENGINE->cx());
+ if (!::fastly::backend::Backend::restore_global_state(cx)) {
+ if (ENGINE->debug_logging_enabled()) {
+ fprintf(stderr,
+ "Warning: Failed to restore Backend state processing next request. Exiting.\n");
+ }
+ return false;
+ }
+ if (!fastly::Fastly::restore_builtin_state(cx)) {
+ if (ENGINE->debug_logging_enabled()) {
+ fprintf(stderr,
+ "Warning: Failed to restore Backend state processing next request. Exiting.\n");
+ }
+ return false;
+ }
+ return true;
+}
+
// Install corresponds to Wizer time, so we configure the engine here
bool install(api::Engine *engine) {
#if defined(JS_GC_ZEAL) && defined(FASTLY_GC_FREQUENCY)
JS::SetGCZeal(engine->cx(), 2, FASTLY_GC_FREQUENCY);
#endif
ENGINE = engine;
+
return true;
}
@@ -100,6 +121,11 @@ bool handle_incoming(host_api::Request req) {
printf("Done. Total request processing time: %fms. Total compute time: %fms\n", diff / 1000,
total_compute / 1000);
}
+
+ if (!restore_builtin_state()) {
+ return false;
+ }
+
return true;
}
@@ -119,7 +145,7 @@ int main(int argc, const char *argv[]) {
auto req = host_api::Request::downstream_get();
if (req.is_err()) {
HANDLE_ERROR(ENGINE->cx(), *req.to_err());
- return -1;
+ return 1;
}
const auto max_requests = Fastly::reusableSandboxOptions.max_requests().value_or(1);
@@ -133,7 +159,7 @@ int main(int argc, const char *argv[]) {
printf("Request handling not successful, exiting process.\n");
fflush(stdout);
}
- return -1;
+ return 1;
}
requests_handled++;
@@ -181,19 +207,22 @@ int main(int argc, const char *argv[]) {
auto next = host_api::HttpReqPromise::downstream_next(options);
if (next.is_err()) {
+ if (fastly::runtime::ENGINE->debug_logging_enabled()) {
+ printf("HOSTCALL: downstream_next() failed with code %hhu\n", *req.to_err());
+ }
HANDLE_ERROR(ENGINE->cx(), *next.to_err());
- return -1;
+ return 1;
}
req = next.unwrap().wait();
if (req.is_err()) {
HANDLE_ERROR(ENGINE->cx(), *req.to_err());
- return -1;
+ return 1;
}
if (JS_IsExceptionPending(ENGINE->cx())) {
ENGINE->dump_pending_exception("running event loop");
- return -1;
+ return 1;
}
ENGINE->reset();
}
diff --git a/runtime/fastly/host-api/fastly.h b/runtime/fastly/host-api/fastly.h
index a1b9497c21..36f3a5b7f3 100644
--- a/runtime/fastly/host-api/fastly.h
+++ b/runtime/fastly/host-api/fastly.h
@@ -1,13 +1,12 @@
#ifndef fastly_H
#define fastly_H
#ifdef __cplusplus
-extern "C" {
-namespace fastly {
-#endif
-
#include
#include
#include
+extern "C" {
+namespace fastly {
+#endif
typedef struct fastly_world_string {
uint8_t *ptr;
@@ -480,7 +479,7 @@ int log_write(uint32_t endpoint_handle, const char *msg, size_t msg_len, size_t
// Module fastly_http_downstream
typedef struct fastly_http_downstream_next_request_options {
- uint32_t timeout_ms;
+ uint64_t timeout_ms;
} fastly_http_downstream_next_request_options;
#define FASTLY_HTTP_DOWNSTREAM_NEXT_REQUEST_OPTIONS_MASK_RESERVED (1 << 0)
diff --git a/runtime/fastly/host-api/host_api.cpp b/runtime/fastly/host-api/host_api.cpp
index dc44a62038..614ab156ad 100644
--- a/runtime/fastly/host-api/host_api.cpp
+++ b/runtime/fastly/host-api/host_api.cpp
@@ -112,7 +112,7 @@ void sleep_until(uint64_t time_ns, uint64_t now) {
}
}
-size_t api::AsyncTask::select(std::vector &tasks) {
+size_t api::AsyncTask::select(std::vector> &tasks) {
if (tasks.size() == 0) {
TRACE_CALL()
} else {
@@ -136,7 +136,7 @@ size_t api::AsyncTask::select(std::vector &tasks) {
uint64_t soonest_deadline = 0;
size_t soonest_deadline_idx = -1;
for (size_t idx = 0; idx < tasks_len; ++idx) {
- auto *task = tasks.at(idx);
+ auto task = tasks.at(idx);
uint64_t deadline;
if (task->id() == IMMEDIATE_TASK_HANDLE) {
if (now == 0) {
@@ -529,16 +529,7 @@ int32_t MonotonicClock::subscribe(const uint64_t when, const bool absolute) {
return NEVER_HANDLE;
}
-void MonotonicClock::unsubscribe(const int32_t handle_id){TRACE_CALL()}
-
-// HttpHeaders and HttpHeadersReadOnly extend Resource.
-// Resource provdes handle_state_ which is a HandleState
-// which gets to be fully host-defined.
-Resource::~Resource() {
- if (handle_state_ != nullptr) {
- handle_state_ = nullptr;
- }
-};
+void MonotonicClock::unsubscribe(const int32_t handle_id) { TRACE_CALL() }
// Fastly handle state is currently just a wrapper around
// an arbitrary fastly handle, along with a bit indicating
@@ -558,6 +549,15 @@ class HandleState {
bool valid() const { return true; }
};
+// HttpHeaders and HttpHeadersReadOnly extend Resource.
+// Resource provdes handle_state_ which is a HandleState
+// which gets to be fully host-defined.
+Resource::~Resource() {
+ if (handle_state_ != nullptr) {
+ handle_state_ = nullptr;
+ }
+};
+
HttpHeaders *HttpHeadersReadOnly::clone() { return new HttpHeaders(*this); }
const std::vector forbidden_request_headers = {};
diff --git a/runtime/fastly/host-api/host_api_fastly.h b/runtime/fastly/host-api/host_api_fastly.h
index cc55140424..c2c756411b 100644
--- a/runtime/fastly/host-api/host_api_fastly.h
+++ b/runtime/fastly/host-api/host_api_fastly.h
@@ -376,7 +376,7 @@ struct TlsVersion {
uint8_t value = 0;
explicit TlsVersion(uint8_t raw);
- explicit TlsVersion(){};
+ explicit TlsVersion() {};
uint8_t get_version() const;
double get_version_number() const;
diff --git a/runtime/fastly/patches/starlingmonkey-reset.patch b/runtime/fastly/patches/starlingmonkey-reset.patch
index 6214d785b4..ad1ec1f109 100644
--- a/runtime/fastly/patches/starlingmonkey-reset.patch
+++ b/runtime/fastly/patches/starlingmonkey-reset.patch
@@ -1,40 +1,40 @@
diff --git a/include/extension-api.h b/include/extension-api.h
-index 44935f7..79f13e5 100644
+index 55af98e..68da8ab 100644
--- a/include/extension-api.h
+++ b/include/extension-api.h
-@@ -163,6 +163,7 @@ public:
+@@ -172,6 +172,7 @@ public:
void report_unhandled_promise_rejections();
- void clear_unhandled_promise_rejections();
-
+ static void clear_unhandled_promise_rejections();
+
+ void reset();
void abort(const char *reason);
-
- bool debug_logging_enabled();
+
+ static bool debug_logging_enabled();
diff --git a/runtime/engine.cpp b/runtime/engine.cpp
-index e748f93..1b3280d 100644
+index e9da55d..5d4a2a3 100644
--- a/runtime/engine.cpp
+++ b/runtime/engine.cpp
-@@ -689,3 +689,9 @@ void Engine::report_unhandled_promise_rejections() {
+@@ -708,3 +708,9 @@ void Engine::report_unhandled_promise_rejections() {
void Engine::clear_unhandled_promise_rejections() {
JS::SetClear(CONTEXT, unhandledRejectedPromises);
}
+void Engine::reset() {
+ clear_unhandled_promise_rejections();
-+ core::EventLoop::reset(this);
++ core::EventLoop::reset(this);
+ JS::PrepareForFullGC(cx());
+ JS::NonIncrementalGC(cx(), JS::GCOptions::Normal, JS::GCReason::API);
+}
diff --git a/runtime/event_loop.cpp b/runtime/event_loop.cpp
-index eb4909b..2412813 100644
+index cdcdaab..612bb31 100644
--- a/runtime/event_loop.cpp
+++ b/runtime/event_loop.cpp
-@@ -98,4 +98,13 @@ bool EventLoop::run_event_loop(api::Engine *engine, double total_compute) {
-
+@@ -99,4 +99,13 @@ bool EventLoop::run_event_loop(api::Engine *engine, double total_compute) {
+
void EventLoop::init(JSContext *cx) { queue.init(cx); }
-
+
+void EventLoop::reset(api::Engine *engine) {
+ auto &q = queue.get();
-+ for (auto *task : q.tasks) {
++ for (auto task : q.tasks) {
+ task->cancel(engine);
+ }
+ q.tasks.clear();
@@ -43,13 +43,13 @@ index eb4909b..2412813 100644
+
} // namespace core
diff --git a/runtime/event_loop.h b/runtime/event_loop.h
-index 40b3696..5bf1ea3 100644
+index acca516..27838bf 100644
--- a/runtime/event_loop.h
+++ b/runtime/event_loop.h
-@@ -47,6 +47,12 @@ public:
+@@ -41,6 +41,12 @@ public:
* Remove a queued async task.
*/
- static bool cancel_async_task(api::Engine *engine, api::AsyncTask *task);
+ static bool cancel_async_task(api::Engine *engine, const RefPtr& task);
+
+ /**
+ * Reset the event loop state, cancelling all pending tasks and clearing interest count.
@@ -57,5 +57,5 @@ index 40b3696..5bf1ea3 100644
+ */
+ static void reset(api::Engine *engine);
};
-
+
} // namespace core
diff --git a/runtime/rust-toolchain.toml b/runtime/rust-toolchain.toml
index 013ea233a5..e7a439c8f2 100644
--- a/runtime/rust-toolchain.toml
+++ b/runtime/rust-toolchain.toml
@@ -1,4 +1,4 @@
[toolchain]
-channel = "1.81.0"
-targets = ["wasm32-wasip1"]
+channel = "1.88.0"
+targets = [ "wasm32-wasip1" ]
profile = "minimal"
diff --git a/src/compileApplicationToWasm.ts b/src/compileApplicationToWasm.ts
index 4a22afab87..492f33869f 100644
--- a/src/compileApplicationToWasm.ts
+++ b/src/compileApplicationToWasm.ts
@@ -7,7 +7,7 @@ import {
import { mkdir, readFile, mkdtemp } from 'node:fs/promises';
import { rmSync } from 'node:fs';
import weval from '@bytecodealliance/weval';
-import wizer from '@bytecodealliance/wizer';
+import wasmtime from '@fastly/wasmtime';
import { isDirectory, isFile } from './files.js';
import { CompilerContext } from './compilerPipeline.js';
@@ -232,15 +232,18 @@ export async function compileApplicationToWasm(
}
process.exitCode = wevalProcess.status;
} else {
+ const wasmtimePath = await wasmtime();
const wizerProcess = spawnSync(
- `"${wizer}"`,
+ `"${wasmtimePath}"`,
[
- '--allow-wasi',
- `--wasm-bulk-memory=true`,
+ 'wizer',
+ '-S cli',
+ '-S inherit-env',
+ '-W bulk-memory',
+ '-W unknown-imports-trap',
`--dir="${maybeWindowsPath(process.cwd())}"`,
- '--inherit-env=true',
'-r _start=wizer.resume',
- `-o="${output}"`,
+ `-o "${output}"`,
`"${wasmEngine}"`,
],
spawnOpts,
@@ -274,16 +277,19 @@ export async function compileApplicationToWasm(
}
process.exitCode = wevalProcess.status;
} else {
+ const wasmtimePath = await wasmtime();
const wizerProcess = spawnSync(
- `"${wizer}"`,
+ `"${wasmtimePath}"`,
[
- '--inherit-env=true',
- '--allow-wasi',
+ 'wizer',
+ '-S inherit-env',
+ '-S cli',
+ '-W bulk-memory',
+ '-W unknown-imports-trap',
'--dir=.',
`--dir=${maybeWindowsPath(dirname(input))}`,
'-r _start=wizer.resume',
- `--wasm-bulk-memory=true`,
- `-o="${output}"`,
+ `-o "${output}"`,
`"${wasmEngine}"`,
],
spawnOpts,
diff --git a/tests/wpt-harness/expectations/WebCryptoAPI/import_export/ec_importKey.https.any.js.json b/tests/wpt-harness/expectations/WebCryptoAPI/import_export/ec_importKey.https.any.js.json
index 1dd7e8e410..da0b64d605 100644
--- a/tests/wpt-harness/expectations/WebCryptoAPI/import_export/ec_importKey.https.any.js.json
+++ b/tests/wpt-harness/expectations/WebCryptoAPI/import_export/ec_importKey.https.any.js.json
@@ -51,7 +51,7 @@
"status": "FAIL"
},
"Empty Usages: P-256 bits (pkcs8, buffer(138), {name: ECDSA, namedCurve: P-256}, true, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-256}, true, [sign])": {
"status": "FAIL"
@@ -63,10 +63,10 @@
"status": "FAIL"
},
"Good parameters: P-256 bits (spki, buffer(91), {name: ECDSA, namedCurve: P-256}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (spki, buffer(59, compressed), {name: ECDSA, namedCurve: P-256}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-256}, false, [verify])": {
"status": "PASS"
@@ -93,10 +93,10 @@
"status": "FAIL"
},
"Good parameters: P-256 bits (spki, buffer(91), {name: ECDSA, namedCurve: P-256}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (spki, buffer(59, compressed), {name: ECDSA, namedCurve: P-256}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-256}, false, [verify, verify])": {
"status": "PASS"
@@ -108,13 +108,13 @@
"status": "FAIL"
},
"Good parameters: P-256 bits (pkcs8, buffer(138), {name: ECDSA, namedCurve: P-256}, false, [sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (pkcs8, buffer(138), {name: ECDSA, namedCurve: P-256}, false, [sign, sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Empty Usages: P-256 bits (pkcs8, buffer(138), {name: ECDSA, namedCurve: P-256}, false, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-256 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-256}, false, [sign])": {
"status": "PASS"
@@ -177,7 +177,7 @@
"status": "FAIL"
},
"Empty Usages: P-384 bits (pkcs8, buffer(185), {name: ECDSA, namedCurve: P-384}, true, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-384}, true, [sign])": {
"status": "FAIL"
@@ -189,10 +189,10 @@
"status": "FAIL"
},
"Good parameters: P-384 bits (spki, buffer(120), {name: ECDSA, namedCurve: P-384}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (spki, buffer(72, compressed), {name: ECDSA, namedCurve: P-384}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-384}, false, [verify])": {
"status": "PASS"
@@ -219,10 +219,10 @@
"status": "FAIL"
},
"Good parameters: P-384 bits (spki, buffer(120), {name: ECDSA, namedCurve: P-384}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (spki, buffer(72, compressed), {name: ECDSA, namedCurve: P-384}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-384}, false, [verify, verify])": {
"status": "PASS"
@@ -234,13 +234,13 @@
"status": "FAIL"
},
"Good parameters: P-384 bits (pkcs8, buffer(185), {name: ECDSA, namedCurve: P-384}, false, [sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (pkcs8, buffer(185), {name: ECDSA, namedCurve: P-384}, false, [sign, sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Empty Usages: P-384 bits (pkcs8, buffer(185), {name: ECDSA, namedCurve: P-384}, false, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-384 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-384}, false, [sign])": {
"status": "PASS"
@@ -303,7 +303,7 @@
"status": "FAIL"
},
"Empty Usages: P-521 bits (pkcs8, buffer(241), {name: ECDSA, namedCurve: P-521}, true, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-521}, true, [sign])": {
"status": "FAIL"
@@ -315,10 +315,10 @@
"status": "FAIL"
},
"Good parameters: P-521 bits (spki, buffer(158), {name: ECDSA, namedCurve: P-521}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (spki, buffer(90, compressed), {name: ECDSA, namedCurve: P-521}, false, [verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-521}, false, [verify])": {
"status": "PASS"
@@ -345,10 +345,10 @@
"status": "FAIL"
},
"Good parameters: P-521 bits (spki, buffer(158), {name: ECDSA, namedCurve: P-521}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (spki, buffer(90, compressed), {name: ECDSA, namedCurve: P-521}, false, [verify, verify])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (jwk, object(kty, crv, x, y), {name: ECDSA, namedCurve: P-521}, false, [verify, verify])": {
"status": "PASS"
@@ -360,13 +360,13 @@
"status": "FAIL"
},
"Good parameters: P-521 bits (pkcs8, buffer(241), {name: ECDSA, namedCurve: P-521}, false, [sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (pkcs8, buffer(241), {name: ECDSA, namedCurve: P-521}, false, [sign, sign])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Empty Usages: P-521 bits (pkcs8, buffer(241), {name: ECDSA, namedCurve: P-521}, false, [])": {
- "status": "FAIL"
+ "status": "PASS"
},
"Good parameters: P-521 bits (jwk, object(kty, crv, x, y, d), {name: ECDSA, namedCurve: P-521}, false, [sign])": {
"status": "PASS"
diff --git a/tests/wpt-harness/expectations/WebCryptoAPI/sign_verify/ecdsa.https.any.js.json b/tests/wpt-harness/expectations/WebCryptoAPI/sign_verify/ecdsa.https.any.js.json
index d896e005b8..cd5f189cb8 100644
--- a/tests/wpt-harness/expectations/WebCryptoAPI/sign_verify/ecdsa.https.any.js.json
+++ b/tests/wpt-harness/expectations/WebCryptoAPI/sign_verify/ecdsa.https.any.js.json
@@ -74,185 +74,185 @@
"generate wrong key step: ECDSA P-521 with SHA-512 verifying with wrong algorithm name": {
"status": "FAIL"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification with altered signature after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification with altered signature after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 with altered plaintext after call": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 with altered plaintext after call": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 using privateKey to verify": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 using privateKey to verify": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 using publicKey to sign": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 using publicKey to sign": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 using publicKey to sign": {
+ "status": "PASS"
},
"importVectorKeys step: ECDSA P-256 with SHA-1 no verify usage": {
"status": "FAIL"
@@ -290,472 +290,472 @@
"importVectorKeys step: ECDSA P-521 with SHA-512 no verify usage": {
"status": "FAIL"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 round trip": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 round trip": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 round trip": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 round trip": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 round trip": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 round trip": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 round trip": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 round trip": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 round trip": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 round trip": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 round trip": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 round trip": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 round trip": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification failure due to altered signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification failure due to altered signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification failure due to wrong hash": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification failure due to wrong hash": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification failure due to bad hash name": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification failure due to bad hash name": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification failure due to shortened signature": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification failure due to shortened signature": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 verification failure due to altered plaintext": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 verification failure due to altered plaintext": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-1 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-1 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-256 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-256 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-384 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-384 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-256 with SHA-512 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-256 with SHA-512 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-1 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-1 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-256 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-256 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-384 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-384 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-384 with SHA-512 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-384 with SHA-512 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature was made using SHA-1, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-1 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-1 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature was made using SHA-256, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-256 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-256 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature was made using SHA-384, however verification is being done using SHA-512 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-384 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-384 - The signature is all zeroes verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature was truncated by 1 byte verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature was truncated by 1 byte verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-1 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-256 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature was made using SHA-512, however verification is being done using SHA-384 verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - Signature has excess padding verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - Signature has excess padding verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature is empty verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature is empty verification": {
+ "status": "PASS"
},
- "importVectorKeys step: ECDSA P-521 with SHA-512 - The signature is all zeroes verification": {
- "status": "FAIL"
+ "ECDSA P-521 with SHA-512 - The signature is all zeroes verification": {
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/url-constructor.any.js.json b/tests/wpt-harness/expectations/url/url-constructor.any.js.json
index 89a3270014..454012b015 100644
--- a/tests/wpt-harness/expectations/url/url-constructor.any.js.json
+++ b/tests/wpt-harness/expectations/url/url-constructor.any.js.json
@@ -1461,7 +1461,7 @@
"status": "PASS"
},
"Parsing: ?a=b&c=d> against ": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: against ": {
"status": "PASS"
@@ -1473,19 +1473,19 @@
"status": "PASS"
},
"Parsing: without base": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: without base": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: without base": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: bar> without base": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: without base": {
- "status": "FAIL"
+ "status": "PASS"
},
"Parsing: against ": {
"status": "PASS"
diff --git a/tests/wpt-harness/expectations/url/url-searchparams.any.js.json b/tests/wpt-harness/expectations/url/url-searchparams.any.js.json
index 89c5a505ee..49f08a3854 100644
--- a/tests/wpt-harness/expectations/url/url-searchparams.any.js.json
+++ b/tests/wpt-harness/expectations/url/url-searchparams.any.js.json
@@ -9,6 +9,6 @@
"status": "PASS"
},
"URL.searchParams and URL.search setters, update propagation": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlencoded-parser.any.js.json b/tests/wpt-harness/expectations/url/urlencoded-parser.any.js.json
index eadbcac8ab..d681035b22 100644
--- a/tests/wpt-harness/expectations/url/urlencoded-parser.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlencoded-parser.any.js.json
@@ -12,28 +12,28 @@
"status": "PASS"
},
"request.formData() with input: test=": {
- "status": "FAIL"
+ "status": "PASS"
},
"response.formData() with input: test=": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams constructed with: %EF%BB%BFtest=%EF%BB%BF": {
"status": "PASS"
},
"request.formData() with input: %EF%BB%BFtest=%EF%BB%BF": {
- "status": "FAIL"
+ "status": "PASS"
},
"response.formData() with input: %EF%BB%BFtest=%EF%BB%BF": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams constructed with: %EF%BF%BF=%EF%BF%BF": {
"status": "PASS"
},
"request.formData() with input: %EF%BF%BF=%EF%BF%BF": {
- "status": "FAIL"
+ "status": "PASS"
},
"response.formData() with input: %EF%BF%BF=%EF%BF%BF": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams constructed with: %FE%FF": {
"status": "PASS"
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-append.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-append.any.js.json
index 686daf1a41..8e8ace2bba 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-append.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-append.any.js.json
@@ -9,6 +9,6 @@
"status": "PASS"
},
"Append multiple": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-constructor.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-constructor.any.js.json
index ef952e0c32..996549e8c2 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-constructor.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-constructor.any.js.json
@@ -69,10 +69,10 @@
"status": "PASS"
},
"Construct with 2 unpaired surrogates (no trailing)": {
- "status": "FAIL"
+ "status": "PASS"
},
"Construct with 3 unpaired surrogates (no leading)": {
- "status": "FAIL"
+ "status": "PASS"
},
"Construct with object with NULL, non-ASCII, and surrogate keys": {
"status": "PASS"
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-delete.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-delete.any.js.json
index 1220ee34b0..db3619f4a0 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-delete.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-delete.any.js.json
@@ -18,9 +18,9 @@
"status": "PASS"
},
"Two-argument delete()": {
- "status": "FAIL"
+ "status": "PASS"
},
"Two-argument delete() respects undefined as second arg": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-get.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-get.any.js.json
index 8614834a16..e16e63cd19 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-get.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-get.any.js.json
@@ -1,8 +1,8 @@
{
"Get basics": {
- "status": "FAIL"
+ "status": "PASS"
},
"More get() basics": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-has.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-has.any.js.json
index afa3b3333f..13bb43364a 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-has.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-has.any.js.json
@@ -6,9 +6,9 @@
"status": "PASS"
},
"Two-argument has()": {
- "status": "FAIL"
+ "status": "PASS"
},
"Two-argument has() respects undefined as second arg": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-size.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-size.any.js.json
index 831902de52..a1b717de57 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-size.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-size.any.js.json
@@ -1,14 +1,14 @@
{
"URLSearchParams's size and deletion": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams's size and addition": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams's size when obtained from a URL": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams's size when obtained from a URL and using .search": {
- "status": "FAIL"
+ "status": "PASS"
}
}
\ No newline at end of file
diff --git a/tests/wpt-harness/expectations/url/urlsearchparams-stringifier.any.js.json b/tests/wpt-harness/expectations/url/urlsearchparams-stringifier.any.js.json
index 0dc92645ca..39b1689c68 100644
--- a/tests/wpt-harness/expectations/url/urlsearchparams-stringifier.any.js.json
+++ b/tests/wpt-harness/expectations/url/urlsearchparams-stringifier.any.js.json
@@ -36,7 +36,7 @@
"status": "PASS"
},
"URLSearchParams connected to URL": {
- "status": "FAIL"
+ "status": "PASS"
},
"URLSearchParams must not do newline normalization": {
"status": "PASS"