From 43faf1107eae75aacd3cb30d46ad0fba368eba7e Mon Sep 17 00:00:00 2001 From: Natoandro Date: Tue, 5 Nov 2024 08:06:21 +0300 Subject: [PATCH 1/9] fix(typegraph): send rpc message in chunks in the TS typegraph client (#904) - Send the JSON-RPC message is chunks in the TypeScript typegraph client to prevent reaching the line size limit for stdout. Note: we could not reproduce the issue locally as it only occurs when using the published package for Node.js. - Use JSON-RPC notification for logging and report from the typegraph clients. - Other changes: - Use relative paths for static task sources in the CLI; - Fix TODO in `meta gen`: pass the working directory on the `working_dir` param of `SerializeActionGenerator::new`. #### Migration notes _N/A_ --- - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --- examples/typegraphs/metagen/rs/fdk.rs | 2 +- src/meta-cli/src/cli/gen.rs | 7 +- src/meta-cli/src/deploy/actors/task_io.rs | 186 +++++++++++------- .../src/deploy/actors/task_manager.rs | 10 +- src/typegraph/deno/src/io.ts | 57 ++++-- src/typegraph/python/typegraph/io.py | 33 +++- 6 files changed, 202 insertions(+), 93 deletions(-) diff --git a/examples/typegraphs/metagen/rs/fdk.rs b/examples/typegraphs/metagen/rs/fdk.rs index 06e8b0b0a3..4969ee6017 100644 --- a/examples/typegraphs/metagen/rs/fdk.rs +++ b/examples/typegraphs/metagen/rs/fdk.rs @@ -109,7 +109,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.3"; + static MT_VERSION: &str = "0.5.0-rc.4"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } diff --git a/src/meta-cli/src/cli/gen.rs b/src/meta-cli/src/cli/gen.rs index 5ee1c8a29e..9d3c7236a2 100644 --- a/src/meta-cli/src/cli/gen.rs +++ b/src/meta-cli/src/cli/gen.rs @@ -158,7 +158,7 @@ impl InputResolver for MetagenCtx { .join(path) .canonicalize() .wrap_err("unable to canonicalize typegraph path, make sure it exists")?; - let raw = load_tg_at(config, path, name.as_deref()).await?; + let raw = load_tg_at(config, path, name.as_deref(), &self.dir).await?; GeneratorInputResolved::TypegraphFromTypegate { raw } } GeneratorInputOrder::LoadFdkTemplate { @@ -177,6 +177,7 @@ async fn load_tg_at( config: Arc, path: PathBuf, name: Option<&str>, + dir: &Path, ) -> anyhow::Result> { let console = ConsoleActor::new(Arc::clone(&config)).start(); @@ -185,7 +186,7 @@ async fn load_tg_at( config.clone(), SerializeActionGenerator::new( config_dir.clone(), - config_dir, // TODO cwd + dir.into(), config .prisma_migrations_base_dir(PathOption::Absolute) .into(), @@ -200,7 +201,7 @@ async fn load_tg_at( let mut tgs = report.into_typegraphs()?; if tgs.is_empty() { - bail!("not typegraphs loaded from path at {path:?}") + bail!("no typegraphs loaded from path at {path:?}") } let tg = if let Some(tg_name) = name { if let Some(idx) = tgs.iter().position(|tg| tg.name().unwrap() == tg_name) { diff --git a/src/meta-cli/src/deploy/actors/task_io.rs b/src/meta-cli/src/deploy/actors/task_io.rs index c1a69ff527..2343ebc65d 100644 --- a/src/meta-cli/src/deploy/actors/task_io.rs +++ b/src/meta-cli/src/deploy/actors/task_io.rs @@ -31,14 +31,6 @@ mod message { pub(super) struct Exit; } -#[derive(Clone, Copy)] -enum OutputLevel { - Debug, - Info, - Warning, - Error, -} - #[derive(Serialize, Deserialize, Debug)] enum JsonRpcVersion { #[serde(rename = "2.0")] @@ -76,8 +68,8 @@ pub(super) struct TaskIoActor { action: A, task: Addr>, console: Addr, - latest_level: OutputLevel, results: Vec>, + rpc_message_buffer: String, } impl TaskIoActor { @@ -102,8 +94,8 @@ impl TaskIoActor { action, task, console: console.clone(), - latest_level: OutputLevel::Info, results: vec![], + rpc_message_buffer: String::new(), }; let self_addr = ctx.address().downgrade(); @@ -155,6 +147,25 @@ impl Actor for TaskIoActor { } } +#[derive(Deserialize, Debug)] +struct RpcNotificationMessage { + #[allow(dead_code)] + jsonrpc: JsonRpcVersion, + #[serde(flatten)] + notification: RpcNotification, +} + +#[derive(Deserialize, Debug)] +#[serde(tag = "method", content = "params")] +enum RpcNotification { + Debug { message: String }, + Info { message: String }, + Warning { message: String }, + Error { message: String }, + Success { data: serde_json::Value }, + Failure { data: serde_json::Value }, +} + impl Handler for TaskIoActor { type Result = (); @@ -166,57 +177,28 @@ impl Handler for TaskIoActor { Some((prefix, tail)) => { trace!("prefix: {prefix}"); match prefix { - "debug" => { - console.debug(format!("{scope} {tail}")); - self.latest_level = OutputLevel::Debug; + "jsonrpc^" => { + self.rpc_message_buffer.push_str(tail); } - "info" => { - console.info(format!("{scope} {tail}")); - self.latest_level = OutputLevel::Info; - } - "warning" => { - console.warning(format!("{scope} {tail}")); - self.latest_level = OutputLevel::Warning; - } - "error" => { - console.error(format!("{scope} {tail}")); - self.latest_level = OutputLevel::Error; - } - "success" => { - match serde_json::from_str(tail) { - Ok(data) => self.results.push(Ok(data)), - Err(err) => { - console.error(format!("{scope} failed to process message: {err}")); - // TODO fail task? - } - } - } - "failure" => { - match serde_json::from_str(tail) { - Ok(data) => { - self.results.push(Err(data)); - } - Err(err) => { - console.error(format!("{scope} failed to process message: {err}")); - // TODO fail task? - } - } - } - "jsonrpc" => { - match serde_json::from_str(tail) { - Ok(req) => self.handle_rpc_request(req, ctx.address(), ctx), - Err(err) => { - console.error(format!("{scope} failed to process message: {err}")); - // TODO fail task? - } - } + "jsonrpc$" => { + self.rpc_message_buffer.push_str(tail); + let message = std::mem::take(&mut self.rpc_message_buffer); + self.handle_rpc_message(&message, ctx); } - _ => self.handle_continuation(&line), + _ => { + // a log message that were not outputted with the log library + // on the typegraph client + // --> as a debug message + console.debug(format!("{scope}$>{line}")); + } } } None => { - self.handle_continuation(&line); + // a log message that were not outputted with the log library + // on the typegraph client + // --> as a debug message + console.debug(format!("{scope}$>{line}")); } } } @@ -228,23 +210,95 @@ impl TaskIoActor { format!("[{path}]", path = path.yellow()) } - // process as continuation to previous output - fn handle_continuation(&self, line: &str) { + fn handle_rpc_message(&mut self, message: &str, ctx: &mut Context) { let console = &self.console; let scope = self.get_console_scope(); + let message: serde_json::Value = match serde_json::from_str(message) { + Ok(value) => value, + Err(err) => { + self.console + .error(format!("{scope} failed to parse JSON-RPC message: {err}")); + // TODO cancel task? + return; + } + }; + + if message.get("id").is_some() { + // JSON-RPC request + match serde_json::from_value(message) { + Ok(req) => self.handle_rpc_request(req, ctx.address(), ctx), + Err(err) => { + console.error(format!( + "{scope} failed to validate JSON-RPC request: {err}" + )); + // TODO cancel task? + } + } + } else { + // JSON-RPC notification + match serde_json::from_value::(message) + .map(|msg| msg.notification) + { + Ok(notification) => self.handle_rpc_notification(notification), + Err(err) => { + console.error(format!( + "{scope} failed to validate JSON-RPC notification: {err}" + )); + // TODO cancel task? + } + }; + } + } - match self.latest_level { - OutputLevel::Debug => { - console.debug(format!("{scope}>{line}")); + fn handle_rpc_notification(&mut self, notification: RpcNotification) { + let console = &self.console; + let scope = self.get_console_scope(); + match notification { + RpcNotification::Debug { message } => { + for line in message.lines() { + console.debug(format!("{scope} {line}")); + } + } + RpcNotification::Info { message } => { + for line in message.lines() { + console.info(format!("{scope} {line}")); + } + } + RpcNotification::Warning { message } => { + for line in message.lines() { + console.warning(format!("{scope} {line}")); + } } - OutputLevel::Info => { - console.info(format!("{scope}>{line}")); + RpcNotification::Error { message } => { + for line in message.lines() { + console.error(format!("{scope} {line}")); + } } - OutputLevel::Warning => { - console.warning(format!("{scope}>{line}")); + RpcNotification::Success { data } => { + let data = match serde_json::from_value(data) { + Ok(data) => data, + Err(err) => { + console.error(format!( + "{scope} failed to validate JSON-RPC notification (success): {err}" + )); + // TODO cancel task? + return; + } + }; + self.results.push(Ok(data)); } - OutputLevel::Error => { - console.error(format!("{scope}>{line}")); + RpcNotification::Failure { data } => { + let data = match serde_json::from_value(data) { + Ok(data) => data, + Err(err) => { + console.error(format!( + "{scope} failed to validate JSON-RPC notification (failure): {err}" + )); + // TODO cancel task? + return; + } + }; + self.results.push(Err(data)); } } } diff --git a/src/meta-cli/src/deploy/actors/task_manager.rs b/src/meta-cli/src/deploy/actors/task_manager.rs index 1e679d393c..8324aa31f8 100644 --- a/src/meta-cli/src/deploy/actors/task_manager.rs +++ b/src/meta-cli/src/deploy/actors/task_manager.rs @@ -9,6 +9,7 @@ use crate::{config::Config, interlude::*}; use colored::OwoColorize; use futures::channel::oneshot; use indexmap::IndexMap; +use pathdiff::diff_paths; use signal_handler::set_stop_recipient; use std::collections::VecDeque; use std::sync::atomic::{AtomicUsize, Ordering}; @@ -205,9 +206,16 @@ impl TaskManagerInit { ) -> Option>> { match &self.task_source { TaskSource::Static(paths) => { + let working_dir = self + .action_generator + .get_shared_config() + .working_dir + .clone(); for path in paths { + let relative_path = diff_paths(path, &working_dir); addr.do_send(AddTask { - task_ref: task_generator.generate(path.clone().into(), 0), + task_ref: task_generator + .generate(relative_path.unwrap_or_else(|| path.clone()).into(), 0), reason: TaskReason::User, }); } diff --git a/src/typegraph/deno/src/io.ts b/src/typegraph/deno/src/io.ts index c538db036a..e11fab63ab 100644 --- a/src/typegraph/deno/src/io.ts +++ b/src/typegraph/deno/src/io.ts @@ -7,6 +7,38 @@ import process from "node:process"; * see: module level documentation `meta-cli/src/deploy/actors/task.rs` */ +const JSONRPC_VERSION = "2.0"; + +function writeRpcMessage(message: string) { + // split into 32-KiB chunks + const chunkSize = 32758; // 32 KiB - 10 bytes for "jsonrpc^: " or "jsonrpc$: " + for (let i = 0; i < message.length; i += chunkSize) { + const chunk = message.slice(i, i + chunkSize); + if (i + chunkSize < message.length) { + process.stdout.write(`jsonrpc^: ${chunk}\n`); + continue; + } + process.stdout.write(`jsonrpc$: ${message.slice(i, i + chunkSize)}\n`); + } +} + +type RpcNotificationMethod = + | "Debug" + | "Info" + | "Warning" + | "Error" + | "Success" + | "Failure"; + +const rpcNotify = (method: RpcNotificationMethod, params: any = null) => { + const message = JSON.stringify({ + jsonrpc: JSONRPC_VERSION, + method, + params, + }); + writeRpcMessage(message); +}; + function getOutput(args: any[]) { return args .map((arg) => { @@ -23,28 +55,27 @@ function getOutput(args: any[]) { export const log = { debug(...args: any[]) { - const output = getOutput(args); - process.stdout.write(`debug: ${output}\n`); + rpcNotify("Debug", { message: getOutput(args) }); }, info(...args: any[]) { - const output = getOutput(args); - process.stdout.write(`info: ${output}\n`); + rpcNotify("Info", { message: getOutput(args) }); }, warn(...args: any[]) { - const output = getOutput(args); - process.stdout.write(`warning: ${output}\n`); + rpcNotify("Warning", { message: getOutput(args) }); }, error(...args: any[]) { - const output = getOutput(args); - process.stdout.write(`error: ${output}\n`); + rpcNotify("Error", { message: getOutput(args) }); }, failure(data: any) { - process.stdout.write(`failure: ${JSON.stringify(data)}\n`); + rpcNotify("Failure", { data: data }); }, success(data: any, noEncode = false) { - const encoded = noEncode ? data : JSON.stringify(data); - process.stdout.write(`success: ${encoded}\n`); + if (noEncode) { + rpcNotify("Success", { data: JSON.parse(data) }); + } else { + rpcNotify("Success", { data: data }); + } }, }; @@ -89,8 +120,6 @@ class RpcResponseReader { } } -const JSONRPC_VERSION = "2.0"; - const rpcCall = (() => { const responseReader = new RpcResponseReader(); let latestRpcId = 0; @@ -104,7 +133,7 @@ const rpcCall = (() => { params, }); - process.stdout.write(`jsonrpc: ${rpcMessage}\n`); + writeRpcMessage(rpcMessage); return responseReader.read(rpcId); }; })(); diff --git a/src/typegraph/python/typegraph/io.py b/src/typegraph/python/typegraph/io.py index 92bb66f384..df43374bf2 100644 --- a/src/typegraph/python/typegraph/io.py +++ b/src/typegraph/python/typegraph/io.py @@ -12,6 +12,22 @@ _JSONRPC_VERSION = "2.0" +def write_rpc_message(message: str): + # we do not chunk the message as Python's print function supports long lines + print(f"jsonrpc$: {message}") + + +def rpc_notify(method: str, params: Any): + message = json.dumps( + { + "jsonrpc": _JSONRPC_VERSION, + "method": method, + "params": params, + } + ) + write_rpc_message(message) + + class Log: @staticmethod def __format(*largs: Any): @@ -19,30 +35,31 @@ def __format(*largs: Any): @staticmethod def debug(*largs: Any): - print("debug:", Log.__format(*largs)) + rpc_notify("Debug", {"message": Log.__format(*largs)}) @staticmethod def info(*largs: Any): - print("info:", Log.__format(*largs)) + rpc_notify("Info", {"message": Log.__format(*largs)}) @staticmethod def warn(*largs: Any): - print("warning:", Log.__format(*largs)) + rpc_notify("Warning", {"message": Log.__format(*largs)}) @staticmethod def error(*largs: Any): - print("error:", Log.__format(*largs)) + rpc_notify("Error", {"message": Log.__format(*largs)}) @staticmethod def failure(data: Any): - print("failure:", json.dumps(data)) + rpc_notify("Failure", {"data": data}) @staticmethod def success(data: Any, noencode: bool = False): if noencode: - print("success:", data) + parsed = json.loads(data) + rpc_notify("Success", {"data": parsed}) else: - print("success:", json.dumps(data)) + rpc_notify("Success", {"data": data}) class _RpcResponseReader: @@ -90,7 +107,7 @@ def call(cls, method: str, params: Any): } ) - print(f"jsonrpc: {rpc_message}") + write_rpc_message(rpc_message) return cls.response_reader.read(rpc_id) From bb93e86e4c0c2dbab501607514d8e2b22f10018e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:10:49 +0300 Subject: [PATCH 2/9] chore(deps): Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /docs/metatype.dev (#883) Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 2.0.6 to 2.0.7.
Release notes

Sourced from http-proxy-middleware's releases.

v2.0.7

Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7

v2.0.7-beta.1

Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.7-beta.0...v2.0.7-beta.1

v2.0.7-beta.0

Full Changelog: https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7-beta.0

Changelog

Sourced from http-proxy-middleware's changelog.

v2.0.7

  • ci(github actions): add publish.yml
  • fix(filter): handle errors
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=http-proxy-middleware&package-manager=npm_and_yarn&previous-version=2.0.6&new-version=2.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/metatypedev/metatype/network/alerts).
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/metatype.dev/pnpm-lock.yaml | 14005 ++++++++++------------------- 1 file changed, 4894 insertions(+), 9111 deletions(-) diff --git a/docs/metatype.dev/pnpm-lock.yaml b/docs/metatype.dev/pnpm-lock.yaml index 6cb9581817..f4b8efe1ac 100644 --- a/docs/metatype.dev/pnpm-lock.yaml +++ b/docs/metatype.dev/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: "9.0" +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -7,39 +7,40 @@ settings: packageExtensionsChecksum: 0819fe8ffbf0746d2fb8cacd8eacad73 importers: + .: dependencies: - "@apollo/client": + '@apollo/client': specifier: ^3.10.8 version: 3.10.8(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/core": + '@docusaurus/core': specifier: 3.4.0 version: 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/preset-classic": + '@docusaurus/preset-classic': specifier: 3.4.0 version: 3.4.0(@algolia/client-search@4.24.0)(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3) - "@docusaurus/theme-common": + '@docusaurus/theme-common': specifier: 3.4.0 version: 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@giscus/react": + '@giscus/react': specifier: ^3.0.0 version: 3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@graphiql/react": + '@graphiql/react': specifier: ^0.22.4 version: 0.22.4(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@graphiql/toolkit": + '@graphiql/toolkit': specifier: ^0.9.1 version: 0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0) - "@mdx-js/react": + '@mdx-js/react': specifier: ^3.0.1 version: 3.0.1(@types/react@18.3.3)(react@18.3.1) - "@react-spring/konva": + '@react-spring/konva': specifier: ^9.7.3 version: 9.7.3(konva@9.3.13)(react-konva@18.2.10(konva@9.3.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) - "@react-spring/shared": + '@react-spring/shared': specifier: ^9.7.3 version: 9.7.3(react@18.3.1) - "@tailwindcss/container-queries": + '@tailwindcss/container-queries': specifier: ^0.1.1 version: 0.1.1(tailwindcss@3.4.4) autoprefixer: @@ -106,28 +107,28 @@ importers: specifier: ^1.1.1 version: 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: - "@docusaurus/eslint-plugin": + '@docusaurus/eslint-plugin': specifier: 3.4.0 version: 3.4.0(eslint@8.57.0)(typescript@5.5.3) - "@docusaurus/module-type-aliases": + '@docusaurus/module-type-aliases': specifier: 3.4.0 version: 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/plugin-content-docs": + '@docusaurus/plugin-content-docs': specifier: 3.4.0 version: 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/tsconfig": + '@docusaurus/tsconfig': specifier: 3.4.0 version: 3.4.0 - "@docusaurus/types": + '@docusaurus/types': specifier: 3.4.0 version: 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@types/react": + '@types/react': specifier: ^18.3.3 version: 18.3.3 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^7.15.0 version: 7.15.0(@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^7.15.0 version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) de-indent: @@ -177,153 +178,85 @@ importers: version: 5.92.1 packages: - "@algolia/autocomplete-core@1.9.3": - resolution: - { - integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==, - } - - "@algolia/autocomplete-plugin-algolia-insights@1.9.3": - resolution: - { - integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==, - } - peerDependencies: - search-insights: ">= 1 < 3" - - "@algolia/autocomplete-preset-algolia@1.9.3": - resolution: - { - integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==, - } - peerDependencies: - "@algolia/client-search": ">= 4.9.1 < 6" - algoliasearch: ">= 4.9.1 < 6" - - "@algolia/autocomplete-shared@1.9.3": - resolution: - { - integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==, - } - peerDependencies: - "@algolia/client-search": ">= 4.9.1 < 6" - algoliasearch: ">= 4.9.1 < 6" - - "@algolia/cache-browser-local-storage@4.24.0": - resolution: - { - integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==, - } - - "@algolia/cache-common@4.24.0": - resolution: - { - integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==, - } - - "@algolia/cache-in-memory@4.24.0": - resolution: - { - integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==, - } - - "@algolia/client-account@4.24.0": - resolution: - { - integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==, - } - - "@algolia/client-analytics@4.24.0": - resolution: - { - integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==, - } - - "@algolia/client-common@4.24.0": - resolution: - { - integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==, - } - - "@algolia/client-personalization@4.24.0": - resolution: - { - integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==, - } - - "@algolia/client-search@4.24.0": - resolution: - { - integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==, - } - - "@algolia/events@4.0.1": - resolution: - { - integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==, - } - - "@algolia/logger-common@4.24.0": - resolution: - { - integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==, - } - - "@algolia/logger-console@4.24.0": - resolution: - { - integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==, - } - - "@algolia/recommend@4.24.0": - resolution: - { - integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==, - } - - "@algolia/requester-browser-xhr@4.24.0": - resolution: - { - integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==, - } - - "@algolia/requester-common@4.24.0": - resolution: - { - integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==, - } - - "@algolia/requester-node-http@4.24.0": - resolution: - { - integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==, - } - - "@algolia/transporter@4.24.0": - resolution: - { - integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==, - } - - "@alloc/quick-lru@5.2.0": - resolution: - { - integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==, - } - engines: { node: ">=10" } - - "@ampproject/remapping@2.3.0": - resolution: - { - integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, - } - engines: { node: ">=6.0.0" } - - "@apollo/client@3.10.8": - resolution: - { - integrity: sha512-UaaFEitRrPRWV836wY2L7bd3HRCfbMie1jlYMcmazFAK23MVhz/Uq7VG1nwbotPb5xzFsw5RF4Wnp2G3dWPM3g==, - } + + '@algolia/autocomplete-core@1.9.3': + resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==} + + '@algolia/autocomplete-plugin-algolia-insights@1.9.3': + resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==} + peerDependencies: + search-insights: '>= 1 < 3' + + '@algolia/autocomplete-preset-algolia@1.9.3': + resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==} + peerDependencies: + '@algolia/client-search': '>= 4.9.1 < 6' + algoliasearch: '>= 4.9.1 < 6' + + '@algolia/autocomplete-shared@1.9.3': + resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==} + peerDependencies: + '@algolia/client-search': '>= 4.9.1 < 6' + algoliasearch: '>= 4.9.1 < 6' + + '@algolia/cache-browser-local-storage@4.24.0': + resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==} + + '@algolia/cache-common@4.24.0': + resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==} + + '@algolia/cache-in-memory@4.24.0': + resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==} + + '@algolia/client-account@4.24.0': + resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==} + + '@algolia/client-analytics@4.24.0': + resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==} + + '@algolia/client-common@4.24.0': + resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==} + + '@algolia/client-personalization@4.24.0': + resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==} + + '@algolia/client-search@4.24.0': + resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==} + + '@algolia/events@4.0.1': + resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==} + + '@algolia/logger-common@4.24.0': + resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==} + + '@algolia/logger-console@4.24.0': + resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==} + + '@algolia/recommend@4.24.0': + resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==} + + '@algolia/requester-browser-xhr@4.24.0': + resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==} + + '@algolia/requester-common@4.24.0': + resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==} + + '@algolia/requester-node-http@4.24.0': + resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==} + + '@algolia/transporter@4.24.0': + resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==} + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@apollo/client@3.10.8': + resolution: {integrity: sha512-UaaFEitRrPRWV836wY2L7bd3HRCfbMie1jlYMcmazFAK23MVhz/Uq7VG1nwbotPb5xzFsw5RF4Wnp2G3dWPM3g==} peerDependencies: graphql: ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 @@ -340,1062 +273,681 @@ packages: subscriptions-transport-ws: optional: true - "@babel/code-frame@7.24.7": - resolution: - { - integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, - } - engines: { node: ">=6.9.0" } - - "@babel/compat-data@7.24.7": - resolution: - { - integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==, - } - engines: { node: ">=6.9.0" } - - "@babel/core@7.24.7": - resolution: - { - integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==, - } - engines: { node: ">=6.9.0" } - - "@babel/generator@7.24.7": - resolution: - { - integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-annotate-as-pure@7.24.7": - resolution: - { - integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-builder-binary-assignment-operator-visitor@7.24.7": - resolution: - { - integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-compilation-targets@7.24.7": - resolution: - { - integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-create-class-features-plugin@7.24.7": - resolution: - { - integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-create-regexp-features-plugin@7.24.7": - resolution: - { - integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-define-polyfill-provider@0.6.2": - resolution: - { - integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==, - } - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - - "@babel/helper-environment-visitor@7.24.7": - resolution: - { - integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-function-name@7.24.7": - resolution: - { - integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-hoist-variables@7.24.7": - resolution: - { - integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-member-expression-to-functions@7.24.7": - resolution: - { - integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@7.24.7": - resolution: - { - integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-transforms@7.24.7": - resolution: - { - integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-optimise-call-expression@7.24.7": - resolution: - { - integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-plugin-utils@7.24.7": - resolution: - { - integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-remap-async-to-generator@7.24.7": - resolution: - { - integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-replace-supers@7.24.7": - resolution: - { - integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-simple-access@7.24.7": - resolution: - { - integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-skip-transparent-expression-wrappers@7.24.7": - resolution: - { - integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-split-export-declaration@7.24.7": - resolution: - { - integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-string-parser@7.24.7": - resolution: - { - integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-identifier@7.24.7": - resolution: - { - integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-option@7.24.7": - resolution: - { - integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-wrap-function@7.24.7": - resolution: - { - integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helpers@7.24.7": - resolution: - { - integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==, - } - engines: { node: ">=6.9.0" } - - "@babel/highlight@7.24.7": - resolution: - { - integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, - } - engines: { node: ">=6.9.0" } - - "@babel/parser@7.24.7": - resolution: - { - integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==, - } - engines: { node: ">=6.0.0" } + '@babel/code-frame@7.24.7': + resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.24.7': + resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.24.7': + resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.24.7': + resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.24.7': + resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.24.7': + resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.24.7': + resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.24.7': + resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.2': + resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-environment-visitor@7.24.7': + resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-function-name@7.24.7': + resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-hoist-variables@7.24.7': + resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.24.7': + resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.24.7': + resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.24.7': + resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.24.7': + resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.24.7': + resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.24.7': + resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.24.7': + resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-simple-access@7.24.7': + resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-split-export-declaration@7.24.7': + resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.24.7': + resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.24.7': + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.24.7': + resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.24.7': + resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.24.7': + resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.24.7': + resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.24.7': + resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} + engines: {node: '>=6.0.0'} hasBin: true - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7": - resolution: - { - integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7": - resolution: - { - integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7": - resolution: - { - integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.13.0 - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7": - resolution: - { - integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - resolution: - { - integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-async-generators@7.8.4": - resolution: - { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-class-properties@7.12.13": - resolution: - { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-class-static-block@7.14.5": - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-dynamic-import@7.8.3": - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-export-namespace-from@7.8.3": - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-import-assertions@7.24.7": - resolution: - { - integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-import-attributes@7.24.7": - resolution: - { - integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-import-meta@7.10.4": - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-json-strings@7.8.3": - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-jsx@7.24.7": - resolution: - { - integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-logical-assignment-operators@7.10.4": - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3": - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-numeric-separator@7.10.4": - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-object-rest-spread@7.8.3": - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-optional-catch-binding@7.8.3": - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-optional-chaining@7.8.3": - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-private-property-in-object@7.14.5": - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-top-level-await@7.14.5": - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-typescript@7.24.7": - resolution: - { - integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-unicode-sets-regex@7.18.6": - resolution: - { - integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-transform-arrow-functions@7.24.7": - resolution: - { - integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-async-generator-functions@7.24.7": - resolution: - { - integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-async-to-generator@7.24.7": - resolution: - { - integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-block-scoped-functions@7.24.7": - resolution: - { - integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-block-scoping@7.24.7": - resolution: - { - integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-class-properties@7.24.7": - resolution: - { - integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-class-static-block@7.24.7": - resolution: - { - integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.12.0 - - "@babel/plugin-transform-classes@7.24.7": - resolution: - { - integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-computed-properties@7.24.7": - resolution: - { - integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-destructuring@7.24.7": - resolution: - { - integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-dotall-regex@7.24.7": - resolution: - { - integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-duplicate-keys@7.24.7": - resolution: - { - integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-dynamic-import@7.24.7": - resolution: - { - integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-exponentiation-operator@7.24.7": - resolution: - { - integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-export-namespace-from@7.24.7": - resolution: - { - integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-for-of@7.24.7": - resolution: - { - integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-function-name@7.24.7": - resolution: - { - integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-json-strings@7.24.7": - resolution: - { - integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-literals@7.24.7": - resolution: - { - integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-logical-assignment-operators@7.24.7": - resolution: - { - integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-member-expression-literals@7.24.7": - resolution: - { - integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-amd@7.24.7": - resolution: - { - integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-commonjs@7.24.7": - resolution: - { - integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-systemjs@7.24.7": - resolution: - { - integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-umd@7.24.7": - resolution: - { - integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-named-capturing-groups-regex@7.24.7": - resolution: - { - integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-transform-new-target@7.24.7": - resolution: - { - integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-nullish-coalescing-operator@7.24.7": - resolution: - { - integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-numeric-separator@7.24.7": - resolution: - { - integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-object-rest-spread@7.24.7": - resolution: - { - integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-object-super@7.24.7": - resolution: - { - integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-optional-catch-binding@7.24.7": - resolution: - { - integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-optional-chaining@7.24.7": - resolution: - { - integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-parameters@7.24.7": - resolution: - { - integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-private-methods@7.24.7": - resolution: - { - integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-private-property-in-object@7.24.7": - resolution: - { - integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-property-literals@7.24.7": - resolution: - { - integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-constant-elements@7.24.7": - resolution: - { - integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-display-name@7.24.7": - resolution: - { - integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx-development@7.24.7": - resolution: - { - integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx@7.24.7": - resolution: - { - integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-pure-annotations@7.24.7": - resolution: - { - integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-regenerator@7.24.7": - resolution: - { - integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-reserved-words@7.24.7": - resolution: - { - integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-runtime@7.24.7": - resolution: - { - integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-shorthand-properties@7.24.7": - resolution: - { - integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-spread@7.24.7": - resolution: - { - integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-sticky-regex@7.24.7": - resolution: - { - integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-template-literals@7.24.7": - resolution: - { - integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-typeof-symbol@7.24.7": - resolution: - { - integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-typescript@7.24.7": - resolution: - { - integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-escapes@7.24.7": - resolution: - { - integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-property-regex@7.24.7": - resolution: - { - integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-regex@7.24.7": - resolution: - { - integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-sets-regex@7.24.7": - resolution: - { - integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/preset-env@7.24.7": - resolution: - { - integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/preset-modules@0.1.6-no-external-plugins": - resolution: - { - integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - "@babel/preset-react@7.24.7": - resolution: - { - integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/preset-typescript@7.24.7": - resolution: - { - integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/regjsgen@0.8.0": - resolution: - { - integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, - } - - "@babel/runtime-corejs3@7.24.7": - resolution: - { - integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==, - } - engines: { node: ">=6.9.0" } - - "@babel/runtime@7.24.7": - resolution: - { - integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, - } - engines: { node: ">=6.9.0" } - - "@babel/template@7.24.7": - resolution: - { - integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==, - } - engines: { node: ">=6.9.0" } - - "@babel/traverse@7.24.7": - resolution: - { - integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==, - } - engines: { node: ">=6.9.0" } - - "@babel/types@7.24.7": - resolution: - { - integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==, - } - engines: { node: ">=6.9.0" } - - "@codemirror/language@6.10.2": - resolution: - { - integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==, - } - - "@codemirror/state@6.4.1": - resolution: - { - integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==, - } - - "@codemirror/view@6.28.4": - resolution: - { - integrity: sha512-QScv95fiviSQ/CaVGflxAvvvDy/9wi0RFyDl4LkHHWiMr/UPebyuTspmYSeN5Nx6eujcPYwsQzA6ZIZucKZVHQ==, - } - - "@colors/colors@1.5.0": - resolution: - { - integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, - } - engines: { node: ">=0.1.90" } - - "@discoveryjs/json-ext@0.5.7": - resolution: - { - integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==, - } - engines: { node: ">=10.0.0" } - - "@docsearch/css@3.6.0": - resolution: - { - integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==, - } - - "@docsearch/react@3.6.0": - resolution: - { - integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==, - } - peerDependencies: - "@types/react": ">= 16.8.0 < 19.0.0" - react: ">= 16.8.0 < 19.0.0" - react-dom: ">= 16.8.0 < 19.0.0" - search-insights: ">= 1 < 3" + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': + resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': + resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': + resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': + resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.24.7': + resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.24.7': + resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.24.7': + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.24.7': + resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-arrow-functions@7.24.7': + resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.24.7': + resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.24.7': + resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.24.7': + resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.24.7': + resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.24.7': + resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.24.7': + resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.24.7': + resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-computed-properties@7.24.7': + resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.24.7': + resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.24.7': + resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.24.7': + resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dynamic-import@7.24.7': + resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.24.7': + resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.24.7': + resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.24.7': + resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.24.7': + resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.24.7': + resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.24.7': + resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.24.7': + resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.24.7': + resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.24.7': + resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.24.7': + resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.24.7': + resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.24.7': + resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': + resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.24.7': + resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': + resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.24.7': + resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.24.7': + resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.24.7': + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.24.7': + resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.24.7': + resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.24.7': + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.24.7': + resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.24.7': + resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.24.7': + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.24.7': + resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.24.7': + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.24.7': + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.24.7': + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.24.7': + resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.24.7': + resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-reserved-words@7.24.7': + resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.24.7': + resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.24.7': + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.24.7': + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.24.7': + resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.24.7': + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.24.7': + resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.24.7': + resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.24.7': + resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.24.7': + resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.24.7': + resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.7': + resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.24.7': + resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-react@7.24.7': + resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.24.7': + resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + + '@babel/runtime-corejs3@7.24.7': + resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.24.7': + resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.7': + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.7': + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.7': + resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + engines: {node: '>=6.9.0'} + + '@codemirror/language@6.10.2': + resolution: {integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==} + + '@codemirror/state@6.4.1': + resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==} + + '@codemirror/view@6.28.4': + resolution: {integrity: sha512-QScv95fiviSQ/CaVGflxAvvvDy/9wi0RFyDl4LkHHWiMr/UPebyuTspmYSeN5Nx6eujcPYwsQzA6ZIZucKZVHQ==} + + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@docsearch/css@3.6.0': + resolution: {integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==} + + '@docsearch/react@3.6.0': + resolution: {integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==} + peerDependencies: + '@types/react': '>= 16.8.0 < 19.0.0' + react: '>= 16.8.0 < 19.0.0' + react-dom: '>= 16.8.0 < 19.0.0' + search-insights: '>= 1 < 3' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react: optional: true @@ -1404,1923 +956,1197 @@ packages: search-insights: optional: true - "@docusaurus/core@3.4.0": - resolution: - { - integrity: sha512-g+0wwmN2UJsBqy2fQRQ6fhXruoEa62JDeEa5d8IdTJlMoaDaEDfHh7WjwGRn4opuTQWpjAwP/fbcgyHKlE+64w==, - } - engines: { node: ">=18.0" } + '@docusaurus/core@3.4.0': + resolution: {integrity: sha512-g+0wwmN2UJsBqy2fQRQ6fhXruoEa62JDeEa5d8IdTJlMoaDaEDfHh7WjwGRn4opuTQWpjAwP/fbcgyHKlE+64w==} + engines: {node: '>=18.0'} hasBin: true peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/cssnano-preset@3.4.0": - resolution: - { - integrity: sha512-qwLFSz6v/pZHy/UP32IrprmH5ORce86BGtN0eBtG75PpzQJAzp9gefspox+s8IEOr0oZKuQ/nhzZ3xwyc3jYJQ==, - } - engines: { node: ">=18.0" } - - "@docusaurus/eslint-plugin@3.4.0": - resolution: - { - integrity: sha512-3Y9SwkxwY36TmsvZGyLZepifHbXIjZHMEFGuPcvtkFNnVgFIUkoAkf17GfwKKHnAloYVG/hpLV1m8q2BVKSLNQ==, - } - engines: { node: ">=18.0" } - peerDependencies: - eslint: ">=6" - - "@docusaurus/logger@3.4.0": - resolution: - { - integrity: sha512-bZwkX+9SJ8lB9kVRkXw+xvHYSMGG4bpYHKGXeXFvyVc79NMeeBSGgzd4TQLHH+DYeOJoCdl8flrFJVxlZ0wo/Q==, - } - engines: { node: ">=18.0" } - - "@docusaurus/mdx-loader@3.4.0": - resolution: - { - integrity: sha512-kSSbrrk4nTjf4d+wtBA9H+FGauf2gCax89kV8SUSJu3qaTdSIKdWERlngsiHaCFgZ7laTJ8a67UFf+xlFPtuTw==, - } - engines: { node: ">=18.0" } + '@docusaurus/cssnano-preset@3.4.0': + resolution: {integrity: sha512-qwLFSz6v/pZHy/UP32IrprmH5ORce86BGtN0eBtG75PpzQJAzp9gefspox+s8IEOr0oZKuQ/nhzZ3xwyc3jYJQ==} + engines: {node: '>=18.0'} + + '@docusaurus/eslint-plugin@3.4.0': + resolution: {integrity: sha512-3Y9SwkxwY36TmsvZGyLZepifHbXIjZHMEFGuPcvtkFNnVgFIUkoAkf17GfwKKHnAloYVG/hpLV1m8q2BVKSLNQ==} + engines: {node: '>=18.0'} + peerDependencies: + eslint: '>=6' + + '@docusaurus/logger@3.4.0': + resolution: {integrity: sha512-bZwkX+9SJ8lB9kVRkXw+xvHYSMGG4bpYHKGXeXFvyVc79NMeeBSGgzd4TQLHH+DYeOJoCdl8flrFJVxlZ0wo/Q==} + engines: {node: '>=18.0'} + + '@docusaurus/mdx-loader@3.4.0': + resolution: {integrity: sha512-kSSbrrk4nTjf4d+wtBA9H+FGauf2gCax89kV8SUSJu3qaTdSIKdWERlngsiHaCFgZ7laTJ8a67UFf+xlFPtuTw==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/module-type-aliases@3.4.0": - resolution: - { - integrity: sha512-A1AyS8WF5Bkjnb8s+guTDuYmUiwJzNrtchebBHpc0gz0PyHJNMaybUlSrmJjHVcGrya0LKI4YcR3lBDQfXRYLw==, - } + '@docusaurus/module-type-aliases@3.4.0': + resolution: {integrity: sha512-A1AyS8WF5Bkjnb8s+guTDuYmUiwJzNrtchebBHpc0gz0PyHJNMaybUlSrmJjHVcGrya0LKI4YcR3lBDQfXRYLw==} peerDependencies: - react: "*" - react-dom: "*" + react: '*' + react-dom: '*' - "@docusaurus/plugin-content-blog@3.4.0": - resolution: - { - integrity: sha512-vv6ZAj78ibR5Jh7XBUT4ndIjmlAxkijM3Sx5MAAzC1gyv0vupDQNhzuFg1USQmQVj3P5I6bquk12etPV3LJ+Xw==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-content-blog@3.4.0': + resolution: {integrity: sha512-vv6ZAj78ibR5Jh7XBUT4ndIjmlAxkijM3Sx5MAAzC1gyv0vupDQNhzuFg1USQmQVj3P5I6bquk12etPV3LJ+Xw==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-content-docs@3.4.0": - resolution: - { - integrity: sha512-HkUCZffhBo7ocYheD9oZvMcDloRnGhBMOZRyVcAQRFmZPmNqSyISlXA1tQCIxW+r478fty97XXAGjNYzBjpCsg==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-content-docs@3.4.0': + resolution: {integrity: sha512-HkUCZffhBo7ocYheD9oZvMcDloRnGhBMOZRyVcAQRFmZPmNqSyISlXA1tQCIxW+r478fty97XXAGjNYzBjpCsg==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-content-pages@3.4.0": - resolution: - { - integrity: sha512-h2+VN/0JjpR8fIkDEAoadNjfR3oLzB+v1qSXbIAKjQ46JAHx3X22n9nqS+BWSQnTnp1AjkjSvZyJMekmcwxzxg==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-content-pages@3.4.0': + resolution: {integrity: sha512-h2+VN/0JjpR8fIkDEAoadNjfR3oLzB+v1qSXbIAKjQ46JAHx3X22n9nqS+BWSQnTnp1AjkjSvZyJMekmcwxzxg==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-debug@3.4.0": - resolution: - { - integrity: sha512-uV7FDUNXGyDSD3PwUaf5YijX91T5/H9SX4ErEcshzwgzWwBtK37nUWPU3ZLJfeTavX3fycTOqk9TglpOLaWkCg==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-debug@3.4.0': + resolution: {integrity: sha512-uV7FDUNXGyDSD3PwUaf5YijX91T5/H9SX4ErEcshzwgzWwBtK37nUWPU3ZLJfeTavX3fycTOqk9TglpOLaWkCg==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-google-analytics@3.4.0": - resolution: - { - integrity: sha512-mCArluxEGi3cmYHqsgpGGt3IyLCrFBxPsxNZ56Mpur0xSlInnIHoeLDH7FvVVcPJRPSQ9/MfRqLsainRw+BojA==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-google-analytics@3.4.0': + resolution: {integrity: sha512-mCArluxEGi3cmYHqsgpGGt3IyLCrFBxPsxNZ56Mpur0xSlInnIHoeLDH7FvVVcPJRPSQ9/MfRqLsainRw+BojA==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-google-gtag@3.4.0": - resolution: - { - integrity: sha512-Dsgg6PLAqzZw5wZ4QjUYc8Z2KqJqXxHxq3vIoyoBWiLEEfigIs7wHR+oiWUQy3Zk9MIk6JTYj7tMoQU0Jm3nqA==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-google-gtag@3.4.0': + resolution: {integrity: sha512-Dsgg6PLAqzZw5wZ4QjUYc8Z2KqJqXxHxq3vIoyoBWiLEEfigIs7wHR+oiWUQy3Zk9MIk6JTYj7tMoQU0Jm3nqA==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-google-tag-manager@3.4.0": - resolution: - { - integrity: sha512-O9tX1BTwxIhgXpOLpFDueYA9DWk69WCbDRrjYoMQtFHSkTyE7RhNgyjSPREUWJb9i+YUg3OrsvrBYRl64FCPCQ==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-google-tag-manager@3.4.0': + resolution: {integrity: sha512-O9tX1BTwxIhgXpOLpFDueYA9DWk69WCbDRrjYoMQtFHSkTyE7RhNgyjSPREUWJb9i+YUg3OrsvrBYRl64FCPCQ==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/plugin-sitemap@3.4.0": - resolution: - { - integrity: sha512-+0VDvx9SmNrFNgwPoeoCha+tRoAjopwT0+pYO1xAbyLcewXSemq+eLxEa46Q1/aoOaJQ0qqHELuQM7iS2gp33Q==, - } - engines: { node: ">=18.0" } + '@docusaurus/plugin-sitemap@3.4.0': + resolution: {integrity: sha512-+0VDvx9SmNrFNgwPoeoCha+tRoAjopwT0+pYO1xAbyLcewXSemq+eLxEa46Q1/aoOaJQ0qqHELuQM7iS2gp33Q==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/preset-classic@3.4.0": - resolution: - { - integrity: sha512-Ohj6KB7siKqZaQhNJVMBBUzT3Nnp6eTKqO+FXO3qu/n1hJl3YLwVKTWBg28LF7MWrKu46UuYavwMRxud0VyqHg==, - } - engines: { node: ">=18.0" } + '@docusaurus/preset-classic@3.4.0': + resolution: {integrity: sha512-Ohj6KB7siKqZaQhNJVMBBUzT3Nnp6eTKqO+FXO3qu/n1hJl3YLwVKTWBg28LF7MWrKu46UuYavwMRxud0VyqHg==} + engines: {node: '>=18.0'} peerDependencies: - "@docusaurus/theme-common": "*" + '@docusaurus/theme-common': '*' react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/react-loadable@6.0.0": - resolution: - { - integrity: sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==, - } + '@docusaurus/react-loadable@6.0.0': + resolution: {integrity: sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==} peerDependencies: - react: "*" + react: '*' - "@docusaurus/theme-classic@3.4.0": - resolution: - { - integrity: sha512-0IPtmxsBYv2adr1GnZRdMkEQt1YW6tpzrUPj02YxNpvJ5+ju4E13J5tB4nfdaen/tfR1hmpSPlTFPvTf4kwy8Q==, - } - engines: { node: ">=18.0" } + '@docusaurus/theme-classic@3.4.0': + resolution: {integrity: sha512-0IPtmxsBYv2adr1GnZRdMkEQt1YW6tpzrUPj02YxNpvJ5+ju4E13J5tB4nfdaen/tfR1hmpSPlTFPvTf4kwy8Q==} + engines: {node: '>=18.0'} peerDependencies: - "@docusaurus/theme-common": "*" + '@docusaurus/theme-common': '*' react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/theme-common@3.4.0": - resolution: - { - integrity: sha512-0A27alXuv7ZdCg28oPE8nH/Iz73/IUejVaCazqu9elS4ypjiLhK3KfzdSQBnL/g7YfHSlymZKdiOHEo8fJ0qMA==, - } - engines: { node: ">=18.0" } + '@docusaurus/theme-common@3.4.0': + resolution: {integrity: sha512-0A27alXuv7ZdCg28oPE8nH/Iz73/IUejVaCazqu9elS4ypjiLhK3KfzdSQBnL/g7YfHSlymZKdiOHEo8fJ0qMA==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/theme-search-algolia@3.4.0": - resolution: - { - integrity: sha512-aiHFx7OCw4Wck1z6IoShVdUWIjntC8FHCw9c5dR8r3q4Ynh+zkS8y2eFFunN/DL6RXPzpnvKCg3vhLQYJDmT9Q==, - } - engines: { node: ">=18.0" } + '@docusaurus/theme-search-algolia@3.4.0': + resolution: {integrity: sha512-aiHFx7OCw4Wck1z6IoShVdUWIjntC8FHCw9c5dR8r3q4Ynh+zkS8y2eFFunN/DL6RXPzpnvKCg3vhLQYJDmT9Q==} + engines: {node: '>=18.0'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/theme-translations@3.4.0": - resolution: - { - integrity: sha512-zSxCSpmQCCdQU5Q4CnX/ID8CSUUI3fvmq4hU/GNP/XoAWtXo9SAVnM3TzpU8Gb//H3WCsT8mJcTfyOk3d9ftNg==, - } - engines: { node: ">=18.0" } - - "@docusaurus/tsconfig@3.4.0": - resolution: - { - integrity: sha512-0qENiJ+TRaeTzcg4olrnh0BQ7eCxTgbYWBnWUeQDc84UYkt/T3pDNnm3SiQkqPb+YQ1qtYFlC0RriAElclo8Dg==, - } - - "@docusaurus/types@3.4.0": - resolution: - { - integrity: sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==, - } + '@docusaurus/theme-translations@3.4.0': + resolution: {integrity: sha512-zSxCSpmQCCdQU5Q4CnX/ID8CSUUI3fvmq4hU/GNP/XoAWtXo9SAVnM3TzpU8Gb//H3WCsT8mJcTfyOk3d9ftNg==} + engines: {node: '>=18.0'} + + '@docusaurus/tsconfig@3.4.0': + resolution: {integrity: sha512-0qENiJ+TRaeTzcg4olrnh0BQ7eCxTgbYWBnWUeQDc84UYkt/T3pDNnm3SiQkqPb+YQ1qtYFlC0RriAElclo8Dg==} + + '@docusaurus/types@3.4.0': + resolution: {integrity: sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@docusaurus/utils-common@3.4.0": - resolution: - { - integrity: sha512-NVx54Wr4rCEKsjOH5QEVvxIqVvm+9kh7q8aYTU5WzUU9/Hctd6aTrcZ3G0Id4zYJ+AeaG5K5qHA4CY5Kcm2iyQ==, - } - engines: { node: ">=18.0" } + '@docusaurus/utils-common@3.4.0': + resolution: {integrity: sha512-NVx54Wr4rCEKsjOH5QEVvxIqVvm+9kh7q8aYTU5WzUU9/Hctd6aTrcZ3G0Id4zYJ+AeaG5K5qHA4CY5Kcm2iyQ==} + engines: {node: '>=18.0'} peerDependencies: - "@docusaurus/types": "*" + '@docusaurus/types': '*' peerDependenciesMeta: - "@docusaurus/types": + '@docusaurus/types': optional: true - "@docusaurus/utils-validation@3.4.0": - resolution: - { - integrity: sha512-hYQ9fM+AXYVTWxJOT1EuNaRnrR2WGpRdLDQG07O8UOpsvCPWUVOeo26Rbm0JWY2sGLfzAb+tvJ62yF+8F+TV0g==, - } - engines: { node: ">=18.0" } - - "@docusaurus/utils@3.4.0": - resolution: - { - integrity: sha512-fRwnu3L3nnWaXOgs88BVBmG1yGjcQqZNHG+vInhEa2Sz2oQB+ZjbEMO5Rh9ePFpZ0YDiDUhpaVjwmS+AU2F14g==, - } - engines: { node: ">=18.0" } - peerDependencies: - "@docusaurus/types": "*" + '@docusaurus/utils-validation@3.4.0': + resolution: {integrity: sha512-hYQ9fM+AXYVTWxJOT1EuNaRnrR2WGpRdLDQG07O8UOpsvCPWUVOeo26Rbm0JWY2sGLfzAb+tvJ62yF+8F+TV0g==} + engines: {node: '>=18.0'} + + '@docusaurus/utils@3.4.0': + resolution: {integrity: sha512-fRwnu3L3nnWaXOgs88BVBmG1yGjcQqZNHG+vInhEa2Sz2oQB+ZjbEMO5Rh9ePFpZ0YDiDUhpaVjwmS+AU2F14g==} + engines: {node: '>=18.0'} + peerDependencies: + '@docusaurus/types': '*' peerDependenciesMeta: - "@docusaurus/types": + '@docusaurus/types': optional: true - "@emotion/is-prop-valid@0.8.8": - resolution: - { - integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==, - } - - "@emotion/memoize@0.7.4": - resolution: - { - integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==, - } - - "@eslint-community/eslint-utils@4.4.0": - resolution: - { - integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@emotion/is-prop-valid@0.8.8': + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + + '@emotion/memoize@0.7.4': + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + + '@eslint-community/eslint-utils@4.4.0': + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - "@eslint-community/regexpp@4.11.0": - resolution: - { - integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==, - } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } - - "@eslint/eslintrc@2.1.4": - resolution: - { - integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@eslint/js@8.57.0": - resolution: - { - integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@floating-ui/core@1.6.4": - resolution: - { - integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==, - } - - "@floating-ui/dom@1.6.7": - resolution: - { - integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==, - } - - "@floating-ui/react-dom@2.1.1": - resolution: - { - integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==, - } - peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - - "@floating-ui/utils@0.2.4": - resolution: - { - integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==, - } - - "@giscus/react@3.0.0": - resolution: - { - integrity: sha512-hgCjLpg3Wgh8VbTF5p8ZLcIHI74wvDk1VIFv12+eKhenNVUDjgwNg2B1aq/3puyHOad47u/ZSyqiMtohjy/OOA==, - } + '@eslint-community/regexpp@4.11.0': + resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.57.0': + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@floating-ui/core@1.6.4': + resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==} + + '@floating-ui/dom@1.6.7': + resolution: {integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==} + + '@floating-ui/react-dom@2.1.1': + resolution: {integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/utils@0.2.4': + resolution: {integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==} + + '@giscus/react@3.0.0': + resolution: {integrity: sha512-hgCjLpg3Wgh8VbTF5p8ZLcIHI74wvDk1VIFv12+eKhenNVUDjgwNg2B1aq/3puyHOad47u/ZSyqiMtohjy/OOA==} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - "@graphiql/react@0.22.4": - resolution: - { - integrity: sha512-FsupNjAUJ17qhdyCjKo150wpNH7gr0ScAm/Rmk7VHP4Mh0Osid+1bKLPtXEOjGI+InuTPSKhJw3Zbm8dD3+o1A==, - } + '@graphiql/react@0.22.4': + resolution: {integrity: sha512-FsupNjAUJ17qhdyCjKo150wpNH7gr0ScAm/Rmk7VHP4Mh0Osid+1bKLPtXEOjGI+InuTPSKhJw3Zbm8dD3+o1A==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17 || ^18 react-dom: ^16.8.0 || ^17 || ^18 - "@graphiql/toolkit@0.9.1": - resolution: - { - integrity: sha512-LVt9pdk0830so50ZnU2Znb2rclcoWznG8r8asqAENzV0U1FM1kuY0sdPpc/rBc9MmmNgnB6A+WZzDhq6dbhTHA==, - } + '@graphiql/toolkit@0.9.1': + resolution: {integrity: sha512-LVt9pdk0830so50ZnU2Znb2rclcoWznG8r8asqAENzV0U1FM1kuY0sdPpc/rBc9MmmNgnB6A+WZzDhq6dbhTHA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 - graphql-ws: ">= 4.5.0" + graphql-ws: '>= 4.5.0' peerDependenciesMeta: graphql-ws: optional: true - "@graphql-typed-document-node/core@3.2.0": - resolution: - { - integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==, - } + '@graphql-typed-document-node/core@3.2.0': + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - "@hapi/hoek@9.3.0": - resolution: - { - integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, - } - - "@hapi/topo@5.1.0": - resolution: - { - integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, - } - - "@headlessui/react@1.7.19": - resolution: - { - integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==, - } - engines: { node: ">=10" } + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@headlessui/react@1.7.19': + resolution: {integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==} + engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - "@humanwhocodes/config-array@0.11.14": - resolution: - { - integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==, - } - engines: { node: ">=10.10.0" } + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} deprecated: Use @eslint/config-array instead - "@humanwhocodes/module-importer@1.0.1": - resolution: - { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, - } - engines: { node: ">=12.22" } - - "@humanwhocodes/object-schema@2.0.3": - resolution: - { - integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==, - } + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} deprecated: Use @eslint/object-schema instead - "@isaacs/cliui@8.0.2": - resolution: - { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, - } - engines: { node: ">=12" } - - "@jest/schemas@29.6.3": - resolution: - { - integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/types@29.6.3": - resolution: - { - integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jridgewell/gen-mapping@0.3.5": - resolution: - { - integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/resolve-uri@3.1.2": - resolution: - { - integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/set-array@1.2.1": - resolution: - { - integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/source-map@0.3.6": - resolution: - { - integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==, - } - - "@jridgewell/sourcemap-codec@1.4.15": - resolution: - { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, - } - - "@jridgewell/trace-mapping@0.3.25": - resolution: - { - integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, - } - - "@leichtgewicht/ip-codec@2.0.5": - resolution: - { - integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==, - } - - "@lezer/common@1.2.1": - resolution: - { - integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==, - } - - "@lezer/highlight@1.2.0": - resolution: - { - integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==, - } - - "@lezer/lr@1.4.1": - resolution: - { - integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==, - } - - "@lit-labs/ssr-dom-shim@1.2.0": - resolution: - { - integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==, - } - - "@lit/reactive-element@2.0.4": - resolution: - { - integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==, - } - - "@mdx-js/mdx@3.0.1": - resolution: - { - integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==, - } - - "@mdx-js/react@3.0.1": - resolution: - { - integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==, - } - peerDependencies: - "@types/react": ">=16" - react: ">=16" - - "@motionone/animation@10.18.0": - resolution: - { - integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==, - } - - "@motionone/dom@10.12.0": - resolution: - { - integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==, - } - - "@motionone/easing@10.18.0": - resolution: - { - integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==, - } - - "@motionone/generators@10.18.0": - resolution: - { - integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==, - } - - "@motionone/types@10.17.1": - resolution: - { - integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==, - } - - "@motionone/utils@10.18.0": - resolution: - { - integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==, - } - - "@n1ru4l/push-pull-async-iterable-iterator@3.2.0": - resolution: - { - integrity: sha512-3fkKj25kEjsfObL6IlKPAlHYPq/oYwUkkQ03zsTTiDjD7vg/RxjdiLeCydqtxHZP0JgsXL3D/X5oAkMGzuUp/Q==, - } - engines: { node: ">=12" } - - "@nodelib/fs.scandir@2.1.5": - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.stat@2.0.5": - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.walk@1.2.8": - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: ">= 8" } - - "@pkgjs/parseargs@0.11.0": - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: ">=14" } - - "@pnpm/config.env-replace@1.1.0": - resolution: - { - integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==, - } - engines: { node: ">=12.22.0" } - - "@pnpm/network.ca-file@1.0.2": - resolution: - { - integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==, - } - engines: { node: ">=12.22.0" } - - "@pnpm/npm-conf@2.2.2": - resolution: - { - integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==, - } - engines: { node: ">=12" } - - "@polka/url@1.0.0-next.25": - resolution: - { - integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==, - } - - "@radix-ui/primitive@1.1.0": - resolution: - { - integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==, - } - - "@radix-ui/react-arrow@1.1.0": - resolution: - { - integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==, - } - peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.4.15': + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lezer/common@1.2.1': + resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==} + + '@lezer/highlight@1.2.0': + resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==} + + '@lezer/lr@1.4.1': + resolution: {integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==} + + '@lit-labs/ssr-dom-shim@1.2.0': + resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==} + + '@lit/reactive-element@2.0.4': + resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==} + + '@mdx-js/mdx@3.0.1': + resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==} + + '@mdx-js/react@3.0.1': + resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} + peerDependencies: + '@types/react': '>=16' + react: '>=16' + + '@motionone/animation@10.18.0': + resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==} + + '@motionone/dom@10.12.0': + resolution: {integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==} + + '@motionone/easing@10.18.0': + resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==} + + '@motionone/generators@10.18.0': + resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==} + + '@motionone/types@10.17.1': + resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==} + + '@motionone/utils@10.18.0': + resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==} + + '@n1ru4l/push-pull-async-iterable-iterator@3.2.0': + resolution: {integrity: sha512-3fkKj25kEjsfObL6IlKPAlHYPq/oYwUkkQ03zsTTiDjD7vg/RxjdiLeCydqtxHZP0JgsXL3D/X5oAkMGzuUp/Q==} + engines: {node: '>=12'} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pnpm/config.env-replace@1.1.0': + resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} + engines: {node: '>=12.22.0'} + + '@pnpm/network.ca-file@1.0.2': + resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} + engines: {node: '>=12.22.0'} + + '@pnpm/npm-conf@2.2.2': + resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} + engines: {node: '>=12'} + + '@polka/url@1.0.0-next.25': + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + + '@radix-ui/primitive@1.1.0': + resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==} + + '@radix-ui/react-arrow@1.1.0': + resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-collection@1.1.0": - resolution: - { - integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==, - } + '@radix-ui/react-collection@1.1.0': + resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-compose-refs@1.1.0": - resolution: - { - integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==, - } + '@radix-ui/react-compose-refs@1.1.0': + resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-context@1.1.0": - resolution: - { - integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==, - } + '@radix-ui/react-context@1.1.0': + resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-dialog@1.1.1": - resolution: - { - integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==, - } + '@radix-ui/react-dialog@1.1.1': + resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-direction@1.1.0": - resolution: - { - integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==, - } + '@radix-ui/react-direction@1.1.0': + resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-dismissable-layer@1.1.0": - resolution: - { - integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==, - } + '@radix-ui/react-dismissable-layer@1.1.0': + resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-dropdown-menu@2.1.1": - resolution: - { - integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==, - } + '@radix-ui/react-dropdown-menu@2.1.1': + resolution: {integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-focus-guards@1.1.0": - resolution: - { - integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==, - } + '@radix-ui/react-focus-guards@1.1.0': + resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-focus-scope@1.1.0": - resolution: - { - integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==, - } + '@radix-ui/react-focus-scope@1.1.0': + resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-id@1.1.0": - resolution: - { - integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==, - } + '@radix-ui/react-id@1.1.0': + resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-menu@2.1.1": - resolution: - { - integrity: sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==, - } + '@radix-ui/react-menu@2.1.1': + resolution: {integrity: sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-popper@1.2.0": - resolution: - { - integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==, - } + '@radix-ui/react-popper@1.2.0': + resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-portal@1.1.1": - resolution: - { - integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==, - } + '@radix-ui/react-portal@1.1.1': + resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-presence@1.1.0": - resolution: - { - integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==, - } + '@radix-ui/react-presence@1.1.0': + resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-primitive@2.0.0": - resolution: - { - integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==, - } + '@radix-ui/react-primitive@2.0.0': + resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-roving-focus@1.1.0": - resolution: - { - integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==, - } + '@radix-ui/react-roving-focus@1.1.0': + resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-slot@1.1.0": - resolution: - { - integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==, - } + '@radix-ui/react-slot@1.1.0': + resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-tooltip@1.1.2": - resolution: - { - integrity: sha512-9XRsLwe6Yb9B/tlnYCPVUd/TFS4J7HuOZW345DCeC6vKIxQGMZdx21RK4VoZauPD5frgkXTYVS5y90L+3YBn4w==, - } + '@radix-ui/react-tooltip@1.1.2': + resolution: {integrity: sha512-9XRsLwe6Yb9B/tlnYCPVUd/TFS4J7HuOZW345DCeC6vKIxQGMZdx21RK4VoZauPD5frgkXTYVS5y90L+3YBn4w==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-use-callback-ref@1.1.0": - resolution: - { - integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==, - } + '@radix-ui/react-use-callback-ref@1.1.0': + resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-controllable-state@1.1.0": - resolution: - { - integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==, - } + '@radix-ui/react-use-controllable-state@1.1.0': + resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-escape-keydown@1.1.0": - resolution: - { - integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==, - } + '@radix-ui/react-use-escape-keydown@1.1.0': + resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-layout-effect@1.1.0": - resolution: - { - integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==, - } + '@radix-ui/react-use-layout-effect@1.1.0': + resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-rect@1.1.0": - resolution: - { - integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==, - } + '@radix-ui/react-use-rect@1.1.0': + resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-size@1.1.0": - resolution: - { - integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==, - } + '@radix-ui/react-use-size@1.1.0': + resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-visually-hidden@1.1.0": - resolution: - { - integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==, - } + '@radix-ui/react-visually-hidden@1.1.0': + resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/rect@1.1.0": - resolution: - { - integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==, - } + '@radix-ui/rect@1.1.0': + resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==} - "@react-spring/animated@9.7.3": - resolution: - { - integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==, - } + '@react-spring/animated@9.7.3': + resolution: {integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/core@9.7.3": - resolution: - { - integrity: sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ==, - } + '@react-spring/core@9.7.3': + resolution: {integrity: sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/konva@9.7.3": - resolution: - { - integrity: sha512-R9sY6SiPGYqz1383P5qppg5z57YfChVknOC1UxxaGxpw+WiZa8fZ4zmZobslrw+os3/+HAXZv8O+EvU/nQpf7g==, - } + '@react-spring/konva@9.7.3': + resolution: {integrity: sha512-R9sY6SiPGYqz1383P5qppg5z57YfChVknOC1UxxaGxpw+WiZa8fZ4zmZobslrw+os3/+HAXZv8O+EvU/nQpf7g==} peerDependencies: - konva: ">=2.6" + konva: '>=2.6' react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-konva: ^16.8.0 || ^16.8.7-0 || ^16.9.0-0 || ^16.10.1-0 || ^16.12.0-0 || ^16.13.0-0 || ^17.0.0-0 || ^17.0.1-0 || ^17.0.2-0 || ^18.0.0-0 - "@react-spring/shared@9.7.3": - resolution: - { - integrity: sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA==, - } + '@react-spring/shared@9.7.3': + resolution: {integrity: sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/types@9.7.3": - resolution: - { - integrity: sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw==, - } - - "@sideway/address@4.1.5": - resolution: - { - integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==, - } - - "@sideway/formula@3.0.1": - resolution: - { - integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==, - } - - "@sideway/pinpoint@2.0.0": - resolution: - { - integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, - } - - "@sinclair/typebox@0.27.8": - resolution: - { - integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, - } - - "@sindresorhus/is@4.6.0": - resolution: - { - integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, - } - engines: { node: ">=10" } - - "@sindresorhus/is@5.6.0": - resolution: - { - integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==, - } - engines: { node: ">=14.16" } - - "@slorber/remark-comment@1.0.0": - resolution: - { - integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==, - } - - "@svgr/babel-plugin-add-jsx-attribute@8.0.0": - resolution: - { - integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": - resolution: - { - integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": - resolution: - { - integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": - resolution: - { - integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-svg-dynamic-title@8.0.0": - resolution: - { - integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-svg-em-dimensions@8.0.0": - resolution: - { - integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-transform-react-native-svg@8.1.0": - resolution: - { - integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-plugin-transform-svg-component@8.0.0": - resolution: - { - integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==, - } - engines: { node: ">=12" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/babel-preset@8.1.0": - resolution: - { - integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==, - } - engines: { node: ">=14" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@svgr/core@8.1.0": - resolution: - { - integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==, - } - engines: { node: ">=14" } - - "@svgr/hast-util-to-babel-ast@8.0.0": - resolution: - { - integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==, - } - engines: { node: ">=14" } - - "@svgr/plugin-jsx@8.1.0": - resolution: - { - integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==, - } - engines: { node: ">=14" } - peerDependencies: - "@svgr/core": "*" - - "@svgr/plugin-svgo@8.1.0": - resolution: - { - integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==, - } - engines: { node: ">=14" } - peerDependencies: - "@svgr/core": "*" - - "@svgr/webpack@8.1.0": - resolution: - { - integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==, - } - engines: { node: ">=14" } - - "@szmarczak/http-timer@5.0.1": - resolution: - { - integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==, - } - engines: { node: ">=14.16" } - - "@tailwindcss/container-queries@0.1.1": - resolution: - { - integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==, - } - peerDependencies: - tailwindcss: ">=3.2.0" - - "@tanstack/react-virtual@3.8.1": - resolution: - { - integrity: sha512-dP5a7giEM4BQWLJ7K07ToZv8rF51mzbrBMkf0scg1QNYuFx3utnPUBPUHdzaowZhIez1K2XS78amuzD+YGRA5Q==, - } + '@react-spring/types@9.7.3': + resolution: {integrity: sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw==} + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sindresorhus/is@5.6.0': + resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} + engines: {node: '>=14.16'} + + '@slorber/remark-comment@1.0.0': + resolution: {integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==} + + '@svgr/babel-plugin-add-jsx-attribute@8.0.0': + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@8.0.0': + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@8.0.0': + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@8.1.0': + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@8.0.0': + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@8.1.0': + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/core@8.1.0': + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} + + '@svgr/hast-util-to-babel-ast@8.0.0': + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} + + '@svgr/plugin-jsx@8.1.0': + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-svgo@8.1.0': + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/webpack@8.1.0': + resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} + engines: {node: '>=14'} + + '@szmarczak/http-timer@5.0.1': + resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} + engines: {node: '>=14.16'} + + '@tailwindcss/container-queries@0.1.1': + resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==} + peerDependencies: + tailwindcss: '>=3.2.0' + + '@tanstack/react-virtual@3.8.1': + resolution: {integrity: sha512-dP5a7giEM4BQWLJ7K07ToZv8rF51mzbrBMkf0scg1QNYuFx3utnPUBPUHdzaowZhIez1K2XS78amuzD+YGRA5Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@tanstack/virtual-core@3.8.1": - resolution: - { - integrity: sha512-uNtAwenT276M9QYCjTBoHZ8X3MUeCRoGK59zPi92hMIxdfS9AyHjkDWJ94WroDxnv48UE+hIeo21BU84jKc8aQ==, - } - - "@trysound/sax@0.2.0": - resolution: - { - integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, - } - engines: { node: ">=10.13.0" } - - "@types/acorn@4.0.6": - resolution: - { - integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==, - } - - "@types/body-parser@1.19.5": - resolution: - { - integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==, - } - - "@types/bonjour@3.5.13": - resolution: - { - integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==, - } - - "@types/codemirror@0.0.90": - resolution: - { - integrity: sha512-8Z9+tSg27NPRGubbUPUCrt5DDG/OWzLph5BvcDykwR5D7RyZh5mhHG0uS1ePKV1YFCA+/cwc4Ey2AJAEFfV3IA==, - } - - "@types/codemirror@5.60.15": - resolution: - { - integrity: sha512-dTOvwEQ+ouKJ/rE9LT1Ue2hmP6H1mZv5+CCnNWu2qtiOe2LQa9lCprEY20HxiDmV/Bxh+dXjywmy5aKvoGjULA==, - } - - "@types/connect-history-api-fallback@1.5.4": - resolution: - { - integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==, - } - - "@types/connect@3.4.38": - resolution: - { - integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==, - } - - "@types/debug@4.1.12": - resolution: - { - integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, - } - - "@types/eslint-scope@3.7.7": - resolution: - { - integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==, - } - - "@types/eslint@8.56.10": - resolution: - { - integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==, - } - - "@types/estree-jsx@1.0.5": - resolution: - { - integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==, - } - - "@types/estree@1.0.5": - resolution: - { - integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, - } - - "@types/express-serve-static-core@4.19.5": - resolution: - { - integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==, - } - - "@types/express@4.17.21": - resolution: - { - integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==, - } - - "@types/gtag.js@0.0.12": - resolution: - { - integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==, - } - - "@types/hast@2.3.10": - resolution: - { - integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==, - } - - "@types/hast@3.0.4": - resolution: - { - integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, - } - - "@types/history@4.7.11": - resolution: - { - integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==, - } - - "@types/html-minifier-terser@6.1.0": - resolution: - { - integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==, - } - - "@types/http-cache-semantics@4.0.4": - resolution: - { - integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, - } - - "@types/http-errors@2.0.4": - resolution: - { - integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==, - } - - "@types/http-proxy@1.17.14": - resolution: - { - integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==, - } - - "@types/istanbul-lib-coverage@2.0.6": - resolution: - { - integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, - } - - "@types/istanbul-lib-report@3.0.3": - resolution: - { - integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==, - } - - "@types/istanbul-reports@3.0.4": - resolution: - { - integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==, - } - - "@types/json-schema@7.0.15": - resolution: - { - integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, - } - - "@types/mdast@4.0.4": - resolution: - { - integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, - } - - "@types/mdx@2.0.13": - resolution: - { - integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==, - } - - "@types/mime@1.3.5": - resolution: - { - integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==, - } - - "@types/ms@0.7.34": - resolution: - { - integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, - } - - "@types/node-forge@1.3.11": - resolution: - { - integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==, - } - - "@types/node@17.0.45": - resolution: - { - integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==, - } - - "@types/node@20.14.10": - resolution: - { - integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==, - } - - "@types/parse-json@4.0.2": - resolution: - { - integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==, - } - - "@types/parse5@5.0.3": - resolution: - { - integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==, - } - - "@types/prismjs@1.26.4": - resolution: - { - integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==, - } - - "@types/prop-types@15.7.12": - resolution: - { - integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==, - } - - "@types/qs@6.9.15": - resolution: - { - integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==, - } - - "@types/range-parser@1.2.7": - resolution: - { - integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==, - } - - "@types/react-reconciler@0.28.8": - resolution: - { - integrity: sha512-SN9c4kxXZonFhbX4hJrZy37yw9e7EIxcpHCxQv5JUS18wDE5ovkQKlqQEkufdJCCMfuI9BnjUJvhYeJ9x5Ra7g==, - } - - "@types/react-router-config@5.0.11": - resolution: - { - integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==, - } - - "@types/react-router-dom@5.3.3": - resolution: - { - integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==, - } - - "@types/react-router@5.1.20": - resolution: - { - integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==, - } - - "@types/react@18.3.3": - resolution: - { - integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==, - } - - "@types/retry@0.12.0": - resolution: - { - integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==, - } - - "@types/sax@1.2.7": - resolution: - { - integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==, - } - - "@types/semver@7.5.8": - resolution: - { - integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==, - } - - "@types/send@0.17.4": - resolution: - { - integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==, - } - - "@types/serve-index@1.9.4": - resolution: - { - integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==, - } - - "@types/serve-static@1.15.7": - resolution: - { - integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==, - } - - "@types/sockjs@0.3.36": - resolution: - { - integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==, - } - - "@types/tern@0.23.9": - resolution: - { - integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==, - } - - "@types/trusted-types@2.0.7": - resolution: - { - integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, - } - - "@types/unist@2.0.10": - resolution: - { - integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==, - } - - "@types/unist@3.0.2": - resolution: - { - integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==, - } - - "@types/ws@8.5.10": - resolution: - { - integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==, - } - - "@types/yargs-parser@21.0.3": - resolution: - { - integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==, - } - - "@types/yargs@17.0.32": - resolution: - { - integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==, - } - - "@typescript-eslint/eslint-plugin@7.15.0": - resolution: - { - integrity: sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==, - } - engines: { node: ^18.18.0 || >=20.0.0 } - peerDependencies: - "@typescript-eslint/parser": ^7.0.0 + '@tanstack/virtual-core@3.8.1': + resolution: {integrity: sha512-uNtAwenT276M9QYCjTBoHZ8X3MUeCRoGK59zPi92hMIxdfS9AyHjkDWJ94WroDxnv48UE+hIeo21BU84jKc8aQ==} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/codemirror@0.0.90': + resolution: {integrity: sha512-8Z9+tSg27NPRGubbUPUCrt5DDG/OWzLph5BvcDykwR5D7RyZh5mhHG0uS1ePKV1YFCA+/cwc4Ey2AJAEFfV3IA==} + + '@types/codemirror@5.60.15': + resolution: {integrity: sha512-dTOvwEQ+ouKJ/rE9LT1Ue2hmP6H1mZv5+CCnNWu2qtiOe2LQa9lCprEY20HxiDmV/Bxh+dXjywmy5aKvoGjULA==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/express-serve-static-core@4.19.5': + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/gtag.js@0.0.12': + resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/history@4.7.11': + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/http-proxy@1.17.14': + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node@17.0.45': + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} + + '@types/node@20.14.10': + resolution: {integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@5.0.3': + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + + '@types/prismjs@1.26.4': + resolution: {integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/qs@6.9.15': + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-reconciler@0.28.8': + resolution: {integrity: sha512-SN9c4kxXZonFhbX4hJrZy37yw9e7EIxcpHCxQv5JUS18wDE5ovkQKlqQEkufdJCCMfuI9BnjUJvhYeJ9x5Ra7g==} + + '@types/react-router-config@5.0.11': + resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==} + + '@types/react-router-dom@5.3.3': + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + + '@types/react-router@5.1.20': + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + + '@types/react@18.3.3': + resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/sax@1.2.7': + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/tern@0.23.9': + resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==} + + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@types/ws@8.5.10': + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@typescript-eslint/eslint-plugin@7.15.0': + resolution: {integrity: sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + '@typescript-eslint/parser': ^7.0.0 eslint: ^8.56.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/parser@7.15.0": - resolution: - { - integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==, - } - engines: { node: ^18.18.0 || >=20.0.0 } + '@typescript-eslint/parser@7.15.0': + resolution: {integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/scope-manager@5.62.0": - resolution: - { - integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/scope-manager@7.15.0": - resolution: - { - integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==, - } - engines: { node: ^18.18.0 || >=20.0.0 } - - "@typescript-eslint/type-utils@7.15.0": - resolution: - { - integrity: sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==, - } - engines: { node: ^18.18.0 || >=20.0.0 } + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/scope-manager@7.15.0': + resolution: {integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/type-utils@7.15.0': + resolution: {integrity: sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/types@5.62.0": - resolution: - { - integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/types@7.15.0": - resolution: - { - integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==, - } - engines: { node: ^18.18.0 || >=20.0.0 } - - "@typescript-eslint/typescript-estree@5.62.0": - resolution: - { - integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - typescript: "*" + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/types@7.15.0': + resolution: {integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/typescript-estree@5.62.0': + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/typescript-estree@7.15.0": - resolution: - { - integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==, - } - engines: { node: ^18.18.0 || >=20.0.0 } + '@typescript-eslint/typescript-estree@7.15.0': + resolution: {integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/utils@5.62.0": - resolution: - { - integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - "@typescript-eslint/utils@7.15.0": - resolution: - { - integrity: sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==, - } - engines: { node: ^18.18.0 || >=20.0.0 } + '@typescript-eslint/utils@7.15.0': + resolution: {integrity: sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - "@typescript-eslint/visitor-keys@5.62.0": - resolution: - { - integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/visitor-keys@7.15.0": - resolution: - { - integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==, - } - engines: { node: ^18.18.0 || >=20.0.0 } - - "@ungap/structured-clone@1.2.0": - resolution: - { - integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, - } - - "@webassemblyjs/ast@1.12.1": - resolution: - { - integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==, - } - - "@webassemblyjs/floating-point-hex-parser@1.11.6": - resolution: - { - integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, - } - - "@webassemblyjs/helper-api-error@1.11.6": - resolution: - { - integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, - } - - "@webassemblyjs/helper-buffer@1.12.1": - resolution: - { - integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==, - } - - "@webassemblyjs/helper-numbers@1.11.6": - resolution: - { - integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, - } - - "@webassemblyjs/helper-wasm-bytecode@1.11.6": - resolution: - { - integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, - } - - "@webassemblyjs/helper-wasm-section@1.12.1": - resolution: - { - integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==, - } - - "@webassemblyjs/ieee754@1.11.6": - resolution: - { - integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, - } - - "@webassemblyjs/leb128@1.11.6": - resolution: - { - integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, - } - - "@webassemblyjs/utf8@1.11.6": - resolution: - { - integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, - } - - "@webassemblyjs/wasm-edit@1.12.1": - resolution: - { - integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==, - } - - "@webassemblyjs/wasm-gen@1.12.1": - resolution: - { - integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==, - } - - "@webassemblyjs/wasm-opt@1.12.1": - resolution: - { - integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==, - } - - "@webassemblyjs/wasm-parser@1.12.1": - resolution: - { - integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==, - } - - "@webassemblyjs/wast-printer@1.12.1": - resolution: - { - integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==, - } - - "@wry/caches@1.0.1": - resolution: - { - integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==, - } - engines: { node: ">=8" } - - "@wry/context@0.7.4": - resolution: - { - integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==, - } - engines: { node: ">=8" } - - "@wry/equality@0.5.7": - resolution: - { - integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==, - } - engines: { node: ">=8" } - - "@wry/trie@0.4.3": - resolution: - { - integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==, - } - engines: { node: ">=8" } - - "@wry/trie@0.5.0": - resolution: - { - integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==, - } - engines: { node: ">=8" } - - "@xtuc/ieee754@1.2.0": - resolution: - { - integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, - } - - "@xtuc/long@4.2.2": - resolution: - { - integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, - } + '@typescript-eslint/visitor-keys@5.62.0': + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/visitor-keys@7.15.0': + resolution: {integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + + '@webassemblyjs/ast@1.12.1': + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.12.1': + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.12.1': + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.12.1': + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + + '@webassemblyjs/wasm-gen@1.12.1': + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + + '@webassemblyjs/wasm-opt@1.12.1': + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + + '@webassemblyjs/wasm-parser@1.12.1': + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + + '@webassemblyjs/wast-printer@1.12.1': + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + + '@wry/caches@1.0.1': + resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==} + engines: {node: '>=8'} + + '@wry/context@0.7.4': + resolution: {integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==} + engines: {node: '>=8'} + + '@wry/equality@0.5.7': + resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==} + engines: {node: '>=8'} + + '@wry/trie@0.4.3': + resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==} + engines: {node: '>=8'} + + '@wry/trie@0.5.0': + resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==} + engines: {node: '>=8'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} abbrev@1.1.1: - resolution: - { - integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, - } + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} accepts@1.3.8: - resolution: - { - integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} acorn-import-attributes@1.9.5: - resolution: - { - integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==, - } + resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} peerDependencies: acorn: ^8 acorn-jsx@5.3.2: - resolution: - { - integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, - } + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn-node@1.8.2: - resolution: - { - integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==, - } + resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} acorn-walk@7.2.0: - resolution: - { - integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} acorn-walk@8.3.3: - resolution: - { - integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + engines: {node: '>=0.4.0'} acorn@7.4.1: - resolution: - { - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} hasBin: true acorn@8.12.1: - resolution: - { - integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} + engines: {node: '>=0.4.0'} hasBin: true address@1.2.2: - resolution: - { - integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} aggregate-error@3.1.0: - resolution: - { - integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} ajv-formats@2.1.1: - resolution: - { - integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, - } + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -3328,947 +2154,539 @@ packages: optional: true ajv-keywords@3.5.2: - resolution: - { - integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, - } + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: ajv: ^6.9.1 ajv-keywords@5.1.0: - resolution: - { - integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, - } + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 ajv@6.12.6: - resolution: - { - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, - } + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} ajv@8.16.0: - resolution: - { - integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, - } + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} algoliasearch-helper@3.22.2: - resolution: - { - integrity: sha512-3YQ6eo7uYOCHeQ2ZpD+OoT3aJJwMNKEnwtu8WMzm81XmBOSCwRjQditH9CeSOQ38qhHkuGw23pbq+kULkIJLcw==, - } + resolution: {integrity: sha512-3YQ6eo7uYOCHeQ2ZpD+OoT3aJJwMNKEnwtu8WMzm81XmBOSCwRjQditH9CeSOQ38qhHkuGw23pbq+kULkIJLcw==} peerDependencies: - algoliasearch: ">= 3.1 < 6" + algoliasearch: '>= 3.1 < 6' algoliasearch@4.24.0: - resolution: - { - integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==, - } + resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==} ansi-align@3.0.1: - resolution: - { - integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, - } + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} ansi-html-community@0.0.8: - resolution: - { - integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==, - } - engines: { "0": node >= 0.8.0 } + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} hasBin: true ansi-regex@5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} ansi-regex@6.0.1: - resolution: - { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} ansi-styles@3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} ansi-styles@4.3.0: - resolution: - { - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} ansi-styles@6.2.1: - resolution: - { - integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} any-promise@1.3.0: - resolution: - { - integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, - } + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} anymatch@3.1.3: - resolution: - { - integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} aproba@2.0.0: - resolution: - { - integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, - } + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} arg@5.0.2: - resolution: - { - integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, - } + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} argparse@1.0.10: - resolution: - { - integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, - } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} argparse@2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} aria-hidden@1.2.4: - resolution: - { - integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} + engines: {node: '>=10'} array-flatten@1.1.1: - resolution: - { - integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, - } + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} array-union@2.1.0: - resolution: - { - integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} astring@1.8.6: - resolution: - { - integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==, - } + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} hasBin: true at-least-node@1.0.0: - resolution: - { - integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} autocomplete.js@0.37.1: - resolution: - { - integrity: sha512-PgSe9fHYhZEsm/9jggbjtVsGXJkPLvd+9mC7gZJ662vVL5CRWEtm/mIrrzCx0MrNxHVwxD5d00UOn6NsmL2LUQ==, - } + resolution: {integrity: sha512-PgSe9fHYhZEsm/9jggbjtVsGXJkPLvd+9mC7gZJ662vVL5CRWEtm/mIrrzCx0MrNxHVwxD5d00UOn6NsmL2LUQ==} autoprefixer@10.3.4: - resolution: - { - integrity: sha512-EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw==} + engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 autoprefixer@10.4.19: - resolution: - { - integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} + engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 babel-loader@9.1.3: - resolution: - { - integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} peerDependencies: - "@babel/core": ^7.12.0 - webpack: ">=5" + '@babel/core': ^7.12.0 + webpack: '>=5' babel-plugin-dynamic-import-node@2.3.3: - resolution: - { - integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==, - } + resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} babel-plugin-polyfill-corejs2@0.4.11: - resolution: - { - integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==, - } + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-corejs3@0.10.4: - resolution: - { - integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==, - } + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-regenerator@0.6.2: - resolution: - { - integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==, - } + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 bail@1.0.5: - resolution: - { - integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==, - } + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} bail@2.0.2: - resolution: - { - integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, - } + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} balanced-match@1.0.2: - resolution: - { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, - } + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} batch@0.6.1: - resolution: - { - integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==, - } + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} bcp-47-match@1.0.3: - resolution: - { - integrity: sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==, - } + resolution: {integrity: sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==} big.js@5.2.2: - resolution: - { - integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, - } + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} binary-extensions@2.3.0: - resolution: - { - integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} body-parser@1.20.2: - resolution: - { - integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==, - } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} bonjour-service@1.2.1: - resolution: - { - integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==, - } + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} boolbase@1.0.0: - resolution: - { - integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, - } + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} boxen@6.2.1: - resolution: - { - integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} boxen@7.1.1: - resolution: - { - integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} + engines: {node: '>=14.16'} brace-expansion@1.1.11: - resolution: - { - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, - } + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} brace-expansion@2.0.1: - resolution: - { - integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, - } + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} braces@3.0.3: - resolution: - { - integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} browserslist@4.23.1: - resolution: - { - integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true buffer-from@1.1.2: - resolution: - { - integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, - } + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} bytes@3.0.0: - resolution: - { - integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} bytes@3.1.2: - resolution: - { - integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} cacheable-lookup@7.0.0: - resolution: - { - integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} + engines: {node: '>=14.16'} cacheable-request@10.2.14: - resolution: - { - integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} + engines: {node: '>=14.16'} call-bind@1.0.7: - resolution: - { - integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} callsites@3.1.0: - resolution: - { - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} camel-case@4.1.2: - resolution: - { - integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, - } + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} camelcase-css@2.0.1: - resolution: - { - integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} camelcase@6.3.0: - resolution: - { - integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} camelcase@7.0.1: - resolution: - { - integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} + engines: {node: '>=14.16'} caniuse-api@3.0.0: - resolution: - { - integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==, - } + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} caniuse-lite@1.0.30001640: - resolution: - { - integrity: sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==, - } + resolution: {integrity: sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==} ccount@2.0.1: - resolution: - { - integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, - } + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} chalk@2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} chalk@5.3.0: - resolution: - { - integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, - } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} char-regex@1.0.2: - resolution: - { - integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} character-entities-html4@2.1.0: - resolution: - { - integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, - } + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} character-entities-legacy@3.0.0: - resolution: - { - integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, - } + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} character-entities@2.0.2: - resolution: - { - integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, - } + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} character-reference-invalid@2.0.1: - resolution: - { - integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==, - } + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} cheerio-select@2.1.0: - resolution: - { - integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==, - } + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} cheerio@1.0.0-rc.12: - resolution: - { - integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + engines: {node: '>= 6'} chokidar@3.6.0: - resolution: - { - integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, - } - engines: { node: ">= 8.10.0" } + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} chrome-trace-event@1.0.4: - resolution: - { - integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} ci-info@3.9.0: - resolution: - { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} clean-css@5.3.3: - resolution: - { - integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==, - } - engines: { node: ">= 10.0" } + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} clean-stack@2.2.0: - resolution: - { - integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} cli-boxes@3.0.0: - resolution: - { - integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} cli-table3@0.6.5: - resolution: - { - integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==, - } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} client-only@0.0.1: - resolution: - { - integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, - } + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} clone-deep@4.0.1: - resolution: - { - integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} clsx@1.2.1: - resolution: - { - integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} clsx@2.1.1: - resolution: - { - integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} codemirror-graphql@2.0.12: - resolution: - { - integrity: sha512-5UCqhWzck1jClCmRewFb8aSiabnAqiaRfsvIPfmbf6WJvOb8oiefJeHilclPPiZBzY8v/Et6EBMtOeKnWCoyng==, - } + resolution: {integrity: sha512-5UCqhWzck1jClCmRewFb8aSiabnAqiaRfsvIPfmbf6WJvOb8oiefJeHilclPPiZBzY8v/Et6EBMtOeKnWCoyng==} peerDependencies: - "@codemirror/language": 6.0.0 + '@codemirror/language': 6.0.0 codemirror: ^5.65.3 graphql: ^15.5.0 || ^16.0.0 codemirror@5.65.16: - resolution: - { - integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==, - } + resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} collapse-white-space@2.1.0: - resolution: - { - integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==, - } + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} color-convert@1.9.3: - resolution: - { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, - } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} color-convert@2.0.1: - resolution: - { - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, - } - engines: { node: ">=7.0.0" } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} color-name@1.1.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} color-name@1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} color-string@1.9.1: - resolution: - { - integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, - } + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} color-support@1.1.3: - resolution: - { - integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==, - } + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true color@4.2.3: - resolution: - { - integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, - } - engines: { node: ">=12.5.0" } + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} colord@2.9.3: - resolution: - { - integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==, - } + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} colorette@1.4.0: - resolution: - { - integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==, - } + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} colorette@2.0.20: - resolution: - { - integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, - } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} combine-promises@1.2.0: - resolution: - { - integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==} + engines: {node: '>=10'} comma-separated-tokens@1.0.8: - resolution: - { - integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==, - } + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} comma-separated-tokens@2.0.3: - resolution: - { - integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, - } + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} commander@10.0.1: - resolution: - { - integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} commander@2.20.3: - resolution: - { - integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, - } + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} commander@4.1.1: - resolution: - { - integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} commander@5.1.0: - resolution: - { - integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} commander@7.2.0: - resolution: - { - integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} commander@8.3.0: - resolution: - { - integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} common-path-prefix@3.0.0: - resolution: - { - integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, - } + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} compressible@2.0.18: - resolution: - { - integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} compression@1.7.4: - resolution: - { - integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} concat-map@0.0.1: - resolution: - { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, - } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} config-chain@1.1.13: - resolution: - { - integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==, - } + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} configstore@6.0.0: - resolution: - { - integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} + engines: {node: '>=12'} connect-history-api-fallback@2.0.0: - resolution: - { - integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} consola@2.15.3: - resolution: - { - integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==, - } + resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} console-control-strings@1.1.0: - resolution: - { - integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, - } + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} content-disposition@0.5.2: - resolution: - { - integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} + engines: {node: '>= 0.6'} content-disposition@0.5.4: - resolution: - { - integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} content-type@1.0.5: - resolution: - { - integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} convert-source-map@2.0.0: - resolution: - { - integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, - } + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} cookie-signature@1.0.6: - resolution: - { - integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, - } + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} cookie@0.6.0: - resolution: - { - integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} copy-text-to-clipboard@3.2.0: - resolution: - { - integrity: sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==} + engines: {node: '>=12'} copy-to-clipboard@3.3.3: - resolution: - { - integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==, - } + resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} copy-webpack-plugin@11.0.0: - resolution: - { - integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} + engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.1.0 core-js-compat@3.37.1: - resolution: - { - integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==, - } + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} core-js-pure@3.37.1: - resolution: - { - integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==, - } + resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} core-js@3.37.1: - resolution: - { - integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==, - } + resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} core-util-is@1.0.3: - resolution: - { - integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, - } + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} cosmiconfig@6.0.0: - resolution: - { - integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} cosmiconfig@7.1.0: - resolution: - { - integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} cosmiconfig@8.3.6: - resolution: - { - integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true cross-spawn@7.0.3: - resolution: - { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} crypto-random-string@4.0.0: - resolution: - { - integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} + engines: {node: '>=12'} css-color-names@0.0.4: - resolution: - { - integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==, - } + resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==} css-declaration-sorter@7.2.0: - resolution: - { - integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==, - } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.0.9 css-loader@6.11.0: - resolution: - { - integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true css-minimizer-webpack-plugin@5.0.1: - resolution: - { - integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==, - } - engines: { node: ">= 14.15.0" } - peerDependencies: - "@parcel/css": "*" - "@swc/css": "*" - clean-css: "*" - csso: "*" - esbuild: "*" - lightningcss: "*" + resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + lightningcss: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@parcel/css": + '@parcel/css': optional: true - "@swc/css": + '@swc/css': optional: true clean-css: optional: true @@ -4280,978 +2698,565 @@ packages: optional: true css-select@4.3.0: - resolution: - { - integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, - } + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} css-select@5.1.0: - resolution: - { - integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, - } + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} css-selector-parser@1.4.1: - resolution: - { - integrity: sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==, - } + resolution: {integrity: sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==} css-tree@2.2.1: - resolution: - { - integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==, - } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} css-tree@2.3.1: - resolution: - { - integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==, - } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} css-unit-converter@1.1.2: - resolution: - { - integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==, - } + resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==} css-what@6.1.0: - resolution: - { - integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} cssesc@3.0.0: - resolution: - { - integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} hasBin: true cssnano-preset-advanced@6.1.2: - resolution: - { - integrity: sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano-preset-default@6.1.2: - resolution: - { - integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano-utils@4.0.2: - resolution: - { - integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano@6.1.2: - resolution: - { - integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 csso@5.0.5: - resolution: - { - integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==, - } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} csstype@3.1.3: - resolution: - { - integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, - } + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} de-indent@1.0.2: - resolution: - { - integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==, - } + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} debounce@1.2.1: - resolution: - { - integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, - } + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} debug@2.6.9: - resolution: - { - integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, - } + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@4.3.5: - resolution: - { - integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true decode-named-character-reference@1.0.2: - resolution: - { - integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==, - } + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} decompress-response@6.0.0: - resolution: - { - integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} deep-extend@0.6.0: - resolution: - { - integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} deep-is@0.1.4: - resolution: - { - integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, - } + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} deepmerge@4.3.1: - resolution: - { - integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} default-gateway@6.0.3: - resolution: - { - integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} defer-to-connect@2.0.1: - resolution: - { - integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} define-data-property@1.1.4: - resolution: - { - integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} define-lazy-prop@2.0.0: - resolution: - { - integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} define-properties@1.2.1: - resolution: - { - integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} defined@1.0.1: - resolution: - { - integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==, - } + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} del@6.1.1: - resolution: - { - integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} depd@1.1.2: - resolution: - { - integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} depd@2.0.0: - resolution: - { - integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} dequal@2.0.3: - resolution: - { - integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} destroy@1.2.0: - resolution: - { - integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, - } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} detect-node-es@1.1.0: - resolution: - { - integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==, - } + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} detect-node@2.1.0: - resolution: - { - integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, - } + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} detect-port-alt@1.1.6: - resolution: - { - integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==, - } - engines: { node: ">= 4.2.1" } + resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} + engines: {node: '>= 4.2.1'} hasBin: true detect-port@1.6.1: - resolution: - { - integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} hasBin: true detective@5.2.1: - resolution: - { - integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} + engines: {node: '>=0.8.0'} hasBin: true devlop@1.1.0: - resolution: - { - integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, - } + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} didyoumean@1.2.2: - resolution: - { - integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, - } + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} dir-glob@3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} direction@1.0.4: - resolution: - { - integrity: sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==, - } + resolution: {integrity: sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==} hasBin: true dlv@1.1.3: - resolution: - { - integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, - } + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} dns-packet@5.6.1: - resolution: - { - integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} doctrine@3.0.0: - resolution: - { - integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} docusaurus-lunr-search@3.4.0: - resolution: - { - integrity: sha512-GfllnNXCLgTSPH9TAKWmbn8VMfwpdOAZ1xl3T2GgX8Pm26qSDLfrrdVwjguaLfMJfzciFL97RKrAJlgrFM48yw==, - } - engines: { node: ">= 8.10.0" } + resolution: {integrity: sha512-GfllnNXCLgTSPH9TAKWmbn8VMfwpdOAZ1xl3T2GgX8Pm26qSDLfrrdVwjguaLfMJfzciFL97RKrAJlgrFM48yw==} + engines: {node: '>= 8.10.0'} peerDependencies: - "@docusaurus/core": ^2.0.0-alpha.60 || ^2.0.0 || ^3.0.0 + '@docusaurus/core': ^2.0.0-alpha.60 || ^2.0.0 || ^3.0.0 react: ^16.8.4 || ^17 || ^18 react-dom: ^16.8.4 || ^17 || ^18 docusaurus-plugin-drawio@0.4.0: - resolution: - { - integrity: sha512-7y3cgtwdQ3evWY/phq/iGJectDlRzpRrKzbcBeT79o+w+OStU0noTcTOmVd/oTiylu2OJXhQWF9z+4CoxTgAtA==, - } + resolution: {integrity: sha512-7y3cgtwdQ3evWY/phq/iGJectDlRzpRrKzbcBeT79o+w+OStU0noTcTOmVd/oTiylu2OJXhQWF9z+4CoxTgAtA==} docusaurus-plugin-sass@0.2.5: - resolution: - { - integrity: sha512-Z+D0fLFUKcFpM+bqSUmqKIU+vO+YF1xoEQh5hoFreg2eMf722+siwXDD+sqtwU8E4MvVpuvsQfaHwODNlxJAEg==, - } + resolution: {integrity: sha512-Z+D0fLFUKcFpM+bqSUmqKIU+vO+YF1xoEQh5hoFreg2eMf722+siwXDD+sqtwU8E4MvVpuvsQfaHwODNlxJAEg==} peerDependencies: - "@docusaurus/core": ^2.0.0-beta || ^3.0.0-alpha + '@docusaurus/core': ^2.0.0-beta || ^3.0.0-alpha sass: ^1.30.0 docusaurus-plugin-sentry@2.0.0: - resolution: - { - integrity: sha512-LiiQ90pbaJ4ztgmFegK3+p8ywX4m0XHNtKGIRY1UD6xVRFubIejFFGaDXWOVU5FuATcMmE0d+WPNRPHLyYlFFw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-LiiQ90pbaJ4ztgmFegK3+p8ywX4m0XHNtKGIRY1UD6xVRFubIejFFGaDXWOVU5FuATcMmE0d+WPNRPHLyYlFFw==} + engines: {node: '>=18'} peerDependencies: - "@docusaurus/core": ">=3" - react: ">=18" - react-dom: ">=18" + '@docusaurus/core': '>=3' + react: '>=18' + react-dom: '>=18' docusaurus-tailwindcss@0.1.0: - resolution: - { - integrity: sha512-Vz2bDMhRUwp4+iro+JlRM9kaOJ2Wjk3ZZYl1C9yydSx1iuTSgXS0beA1v/7cXyBV5VrIN5ZGwvRXev9IheWU7A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Vz2bDMhRUwp4+iro+JlRM9kaOJ2Wjk3ZZYl1C9yydSx1iuTSgXS0beA1v/7cXyBV5VrIN5ZGwvRXev9IheWU7A==} + engines: {node: '>=10'} peerDependencies: - "@docusaurus/core": ^2.0.0-alpha.0 + '@docusaurus/core': ^2.0.0-alpha.0 docusaurus-theme-frontmatter@1.3.0: - resolution: - { - integrity: sha512-T/p4immO1mRdP9ok+7f8fRK+Eee2Hqv7sndgmt1mtnWKAHWbHg5N5SAG2oON27/nzv5y3Mo6GpbRkXbQC86zdw==, - } - engines: { node: ">=14" } - peerDependencies: - "@docusaurus/plugin-content-docs": ^2.0.0-beta.22 - "@docusaurus/plugin-content-pages": ^2.0.0-beta.22 - "@docusaurus/theme-classic": ^2.0.0-beta.22 + resolution: {integrity: sha512-T/p4immO1mRdP9ok+7f8fRK+Eee2Hqv7sndgmt1mtnWKAHWbHg5N5SAG2oON27/nzv5y3Mo6GpbRkXbQC86zdw==} + engines: {node: '>=14', npm: please-use-yarn, yarn: '>=1.22.0'} + peerDependencies: + '@docusaurus/plugin-content-docs': ^2.0.0-beta.22 + '@docusaurus/plugin-content-pages': ^2.0.0-beta.22 + '@docusaurus/theme-classic': ^2.0.0-beta.22 peerDependenciesMeta: - "@docusaurus/plugin-content-docs": + '@docusaurus/plugin-content-docs': optional: true - "@docusaurus/plugin-content-pages": + '@docusaurus/plugin-content-pages': optional: true - "@docusaurus/theme-classic": + '@docusaurus/theme-classic': optional: true dom-converter@0.2.0: - resolution: - { - integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==, - } + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dom-serializer@1.4.1: - resolution: - { - integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, - } + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dom-serializer@2.0.0: - resolution: - { - integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, - } + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} domelementtype@2.3.0: - resolution: - { - integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, - } + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} domhandler@4.3.1: - resolution: - { - integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} domhandler@5.0.3: - resolution: - { - integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} domutils@2.8.0: - resolution: - { - integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, - } + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} domutils@3.1.0: - resolution: - { - integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, - } + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} dot-case@3.0.4: - resolution: - { - integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, - } + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dot-prop@6.0.1: - resolution: - { - integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} duplexer@0.1.2: - resolution: - { - integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, - } + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} eastasianwidth@0.2.0: - resolution: - { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, - } + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} ee-first@1.1.1: - resolution: - { - integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, - } + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} electron-to-chromium@1.4.818: - resolution: - { - integrity: sha512-eGvIk2V0dGImV9gWLq8fDfTTsCAeMDwZqEPMr+jMInxZdnp9Us8UpovYpRCf9NQ7VOFgrN2doNSgvISbsbNpxA==, - } + resolution: {integrity: sha512-eGvIk2V0dGImV9gWLq8fDfTTsCAeMDwZqEPMr+jMInxZdnp9Us8UpovYpRCf9NQ7VOFgrN2doNSgvISbsbNpxA==} emoji-regex@8.0.0: - resolution: - { - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, - } + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} emoji-regex@9.2.2: - resolution: - { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, - } + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} emojilib@2.4.0: - resolution: - { - integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==, - } + resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} emojis-list@3.0.0: - resolution: - { - integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} emoticon@4.0.1: - resolution: - { - integrity: sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==, - } + resolution: {integrity: sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==} encodeurl@1.0.2: - resolution: - { - integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} enhanced-resolve@5.17.0: - resolution: - { - integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} + engines: {node: '>=10.13.0'} entities@2.2.0: - resolution: - { - integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, - } + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} entities@4.5.0: - resolution: - { - integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} error-ex@1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} es-define-property@1.0.0: - resolution: - { - integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} es-errors@1.3.0: - resolution: - { - integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} es-module-lexer@1.5.4: - resolution: - { - integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==, - } + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} escalade@3.1.2: - resolution: - { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} escape-goat@4.0.0: - resolution: - { - integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} + engines: {node: '>=12'} escape-html@1.0.3: - resolution: - { - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, - } + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} escape-string-regexp@1.0.5: - resolution: - { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} escape-string-regexp@4.0.0: - resolution: - { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} escape-string-regexp@5.0.0: - resolution: - { - integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} eslint-config-prettier@9.1.0: - resolution: - { - integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==, - } + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' eslint-scope@5.1.1: - resolution: - { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} eslint-scope@7.2.2: - resolution: - { - integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-visitor-keys@3.4.3: - resolution: - { - integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint@8.57.0: - resolution: - { - integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true espree@9.6.1: - resolution: - { - integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} esprima@4.0.1: - resolution: - { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} hasBin: true esquery@1.5.0: - resolution: - { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} esrecurse@4.3.0: - resolution: - { - integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} estraverse@4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} estraverse@5.3.0: - resolution: - { - integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} estree-util-attach-comments@3.0.0: - resolution: - { - integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==, - } + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} estree-util-build-jsx@3.0.1: - resolution: - { - integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==, - } + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} estree-util-is-identifier-name@3.0.0: - resolution: - { - integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==, - } + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} estree-util-to-js@2.0.0: - resolution: - { - integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==, - } + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} estree-util-value-to-estree@3.1.2: - resolution: - { - integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==, - } + resolution: {integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==} estree-util-visit@2.0.0: - resolution: - { - integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==, - } + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} estree-walker@3.0.3: - resolution: - { - integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, - } + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} esutils@2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} eta@2.2.0: - resolution: - { - integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==} + engines: {node: '>=6.0.0'} etag@1.8.1: - resolution: - { - integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} eval@0.1.8: - resolution: - { - integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} + engines: {node: '>= 0.8'} eventemitter3@4.0.7: - resolution: - { - integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, - } + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} events@3.3.0: - resolution: - { - integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, - } - engines: { node: ">=0.8.x" } + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} execa@5.1.1: - resolution: - { - integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} express@4.19.2: - resolution: - { - integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==, - } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} extend-shallow@2.0.1: - resolution: - { - integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} extend@3.0.2: - resolution: - { - integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, - } + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} fast-glob@3.3.2: - resolution: - { - integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, - } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: - resolution: - { - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, - } + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} fast-levenshtein@2.0.6: - resolution: - { - integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, - } + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} fast-url-parser@1.1.3: - resolution: - { - integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==, - } + resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} fastq@1.17.1: - resolution: - { - integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, - } + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} fault@2.0.1: - resolution: - { - integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==, - } + resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} faye-websocket@0.11.4: - resolution: - { - integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} feed@4.2.2: - resolution: - { - integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==} + engines: {node: '>=0.4.0'} file-entry-cache@6.0.1: - resolution: - { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} file-loader@6.2.0: - resolution: - { - integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 filesize@8.0.7: - resolution: - { - integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} + engines: {node: '>= 0.4.0'} fill-range@7.1.1: - resolution: - { - integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} finalhandler@1.2.0: - resolution: - { - integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} find-cache-dir@4.0.0: - resolution: - { - integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} find-up@3.0.0: - resolution: - { - integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} find-up@5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} find-up@6.3.0: - resolution: - { - integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} flat-cache@3.2.0: - resolution: - { - integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} flat@5.0.2: - resolution: - { - integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==, - } + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true flatted@3.3.1: - resolution: - { - integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==, - } + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} follow-redirects@1.15.6: - resolution: - { - integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} peerDependencies: - debug: "*" + debug: '*' peerDependenciesMeta: debug: optional: true fontfaceobserver@2.1.0: - resolution: - { - integrity: sha512-ReOsO2F66jUa0jmv2nlM/s1MiutJx/srhAe2+TE8dJCMi02ZZOcCTxTCQFr3Yet+uODUtnr4Mewg+tNQ+4V1Ng==, - } + resolution: {integrity: sha512-ReOsO2F66jUa0jmv2nlM/s1MiutJx/srhAe2+TE8dJCMi02ZZOcCTxTCQFr3Yet+uODUtnr4Mewg+tNQ+4V1Ng==} foreground-child@3.2.1: - resolution: - { - integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} fork-ts-checker-webpack-plugin@6.5.3: - resolution: - { - integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==, - } - engines: { node: ">=10", yarn: ">=1.0.0" } - peerDependencies: - eslint: ">= 6" - typescript: ">= 2.7" - vue-template-compiler: "*" - webpack: ">= 4" + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' peerDependenciesMeta: eslint: optional: true @@ -5259,2703 +3264,1494 @@ packages: optional: true form-data-encoder@2.1.4: - resolution: - { - integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==, - } - engines: { node: ">= 14.17" } + resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} + engines: {node: '>= 14.17'} format@0.2.2: - resolution: - { - integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==, - } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} forwarded@0.2.0: - resolution: - { - integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} fraction.js@4.3.7: - resolution: - { - integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==, - } + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} framer-motion@6.5.1: - resolution: - { - integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==, - } + resolution: {integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==} peerDependencies: - react: ">=16.8 || ^17.0.0 || ^18.0.0" - react-dom: ">=16.8 || ^17.0.0 || ^18.0.0" + react: '>=16.8 || ^17.0.0 || ^18.0.0' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' framesync@6.0.1: - resolution: - { - integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==, - } + resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} fresh@0.5.2: - resolution: - { - integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} fs-extra@10.1.0: - resolution: - { - integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} fs-extra@11.2.0: - resolution: - { - integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==, - } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} fs-extra@9.1.0: - resolution: - { - integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} fs-monkey@1.0.6: - resolution: - { - integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==, - } + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} fsevents@2.3.3: - resolution: - { - integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} gauge@3.0.2: - resolution: - { - integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} deprecated: This package is no longer supported. gensync@1.0.0-beta.2: - resolution: - { - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} get-intrinsic@1.2.4: - resolution: - { - integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} get-nonce@1.0.1: - resolution: - { - integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} get-own-enumerable-property-symbols@3.0.2: - resolution: - { - integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==, - } + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} get-stream@6.0.1: - resolution: - { - integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} giscus@1.5.0: - resolution: - { - integrity: sha512-t3LL0qbSO3JXq3uyQeKpF5CegstGfKX/0gI6eDe1cmnI7D56R7j52yLdzw4pdKrg3VnufwCgCM3FDz7G1Qr6lg==, - } + resolution: {integrity: sha512-t3LL0qbSO3JXq3uyQeKpF5CegstGfKX/0gI6eDe1cmnI7D56R7j52yLdzw4pdKrg3VnufwCgCM3FDz7G1Qr6lg==} github-slugger@1.5.0: - resolution: - { - integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==, - } + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} gleap@13.7.9: - resolution: - { - integrity: sha512-+iaFXyA29fVoVFZzOOvEuyiLYZ9SR0LTLSrI/gZq4U5dRyW2kjZRhoJBwppuA3vtOS9HY8TBtIWksRw3jDGtPw==, - } + resolution: {integrity: sha512-+iaFXyA29fVoVFZzOOvEuyiLYZ9SR0LTLSrI/gZq4U5dRyW2kjZRhoJBwppuA3vtOS9HY8TBtIWksRw3jDGtPw==} glob-parent@5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} glob-parent@6.0.2: - resolution: - { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} glob-to-regexp@0.4.1: - resolution: - { - integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, - } + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} glob@10.4.3: - resolution: - { - integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==} + engines: {node: '>=18'} hasBin: true glob@7.2.3: - resolution: - { - integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, - } + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} deprecated: Glob versions prior to v9 are no longer supported global-dirs@3.0.1: - resolution: - { - integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} global-modules@2.0.0: - resolution: - { - integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} global-prefix@3.0.0: - resolution: - { - integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} globals@11.12.0: - resolution: - { - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} globals@13.24.0: - resolution: - { - integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} globby@13.2.2: - resolution: - { - integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} got@12.6.1: - resolution: - { - integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} + engines: {node: '>=14.16'} graceful-fs@4.2.10: - resolution: - { - integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, - } + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} graceful-fs@4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} graphemer@1.4.0: - resolution: - { - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, - } + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} graphiql@3.3.2: - resolution: - { - integrity: sha512-LJ8Q6UM3kUzTXvybud9a4sj/QBEVHwHWd5Oc3OjLp9DQiKjqVY/2P/Q3RdPQD/MihwaO+6eC69R4MYnPQGd2Hw==, - } + resolution: {integrity: sha512-LJ8Q6UM3kUzTXvybud9a4sj/QBEVHwHWd5Oc3OjLp9DQiKjqVY/2P/Q3RdPQD/MihwaO+6eC69R4MYnPQGd2Hw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17 || ^18 react-dom: ^16.8.0 || ^17 || ^18 graphql-language-service@5.2.1: - resolution: - { - integrity: sha512-8ewD6otGO43vg2TiEGjoLz3CweTwfaf4ZnqfNREqZXS2JSJGXtsRBOMMknCxMfFVh4x14ql3jyDrXcyAAtbmkQ==, - } + resolution: {integrity: sha512-8ewD6otGO43vg2TiEGjoLz3CweTwfaf4ZnqfNREqZXS2JSJGXtsRBOMMknCxMfFVh4x14ql3jyDrXcyAAtbmkQ==} hasBin: true peerDependencies: graphql: ^15.5.0 || ^16.0.0 graphql-tag@2.12.6: - resolution: - { - integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} + engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws@5.16.0: - resolution: - { - integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==} + engines: {node: '>=10'} peerDependencies: - graphql: ">=0.11 <=16" + graphql: '>=0.11 <=16' graphql@16.9.0: - resolution: - { - integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==, - } - engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } + resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} gray-matter@4.0.3: - resolution: - { - integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} gzip-size@6.0.0: - resolution: - { - integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} handle-thing@2.0.1: - resolution: - { - integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==, - } + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} has-flag@4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} has-property-descriptors@1.0.2: - resolution: - { - integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, - } + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} has-proto@1.0.3: - resolution: - { - integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} has-unicode@2.0.1: - resolution: - { - integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, - } + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} has-yarn@3.0.0: - resolution: - { - integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasown@2.0.2: - resolution: - { - integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} hast-util-from-parse5@6.0.1: - resolution: - { - integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==, - } + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} hast-util-from-parse5@8.0.1: - resolution: - { - integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==, - } + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} hast-util-has-property@1.0.4: - resolution: - { - integrity: sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg==, - } + resolution: {integrity: sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg==} hast-util-is-element@1.1.0: - resolution: - { - integrity: sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==, - } + resolution: {integrity: sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==} hast-util-parse-selector@2.2.5: - resolution: - { - integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==, - } + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} hast-util-parse-selector@4.0.0: - resolution: - { - integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, - } + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} hast-util-raw@9.0.4: - resolution: - { - integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==, - } + resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} hast-util-select@4.0.2: - resolution: - { - integrity: sha512-8EEG2//bN5rrzboPWD2HdS3ugLijNioS1pqOTIolXNf67xxShYw4SQEmVXd3imiBG+U2bC2nVTySr/iRAA7Cjg==, - } + resolution: {integrity: sha512-8EEG2//bN5rrzboPWD2HdS3ugLijNioS1pqOTIolXNf67xxShYw4SQEmVXd3imiBG+U2bC2nVTySr/iRAA7Cjg==} hast-util-to-estree@3.1.0: - resolution: - { - integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==, - } + resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} hast-util-to-jsx-runtime@2.3.0: - resolution: - { - integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==, - } + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} hast-util-to-parse5@8.0.0: - resolution: - { - integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, - } + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} hast-util-to-string@1.0.4: - resolution: - { - integrity: sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==, - } + resolution: {integrity: sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==} hast-util-to-text@2.0.1: - resolution: - { - integrity: sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ==, - } + resolution: {integrity: sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ==} hast-util-whitespace@1.0.4: - resolution: - { - integrity: sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==, - } + resolution: {integrity: sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==} hast-util-whitespace@3.0.0: - resolution: - { - integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, - } + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} hastscript@6.0.0: - resolution: - { - integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==, - } + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} hastscript@8.0.0: - resolution: - { - integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, - } + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} he@1.2.0: - resolution: - { - integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, - } + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true hex-color-regex@1.1.0: - resolution: - { - integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==, - } + resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} hey-listen@1.0.8: - resolution: - { - integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==, - } + resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} history@4.10.1: - resolution: - { - integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==, - } + resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} hogan.js@3.0.2: - resolution: - { - integrity: sha512-RqGs4wavGYJWE07t35JQccByczmNUXQT0E12ZYV1VKYu5UiAU9lsos/yBAcf840+zrUQQxgVduCR5/B8nNtibg==, - } + resolution: {integrity: sha512-RqGs4wavGYJWE07t35JQccByczmNUXQT0E12ZYV1VKYu5UiAU9lsos/yBAcf840+zrUQQxgVduCR5/B8nNtibg==} hasBin: true hoist-non-react-statics@3.3.2: - resolution: - { - integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, - } + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} hpack.js@2.1.6: - resolution: - { - integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==, - } + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} hsl-regex@1.0.0: - resolution: - { - integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==, - } + resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==} hsla-regex@1.0.0: - resolution: - { - integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==, - } + resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==} html-entities@2.5.2: - resolution: - { - integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==, - } + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} html-escaper@2.0.2: - resolution: - { - integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, - } + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} html-minifier-terser@6.1.0: - resolution: - { - integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} hasBin: true html-minifier-terser@7.2.0: - resolution: - { - integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==, - } - engines: { node: ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==} + engines: {node: ^14.13.1 || >=16.0.0} hasBin: true html-tags@3.3.1: - resolution: - { - integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} html-void-elements@3.0.0: - resolution: - { - integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, - } + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} html-webpack-plugin@5.6.0: - resolution: - { - integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.20.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true htmlparser2@6.1.0: - resolution: - { - integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, - } + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} htmlparser2@8.0.2: - resolution: - { - integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==, - } + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} http-cache-semantics@4.1.1: - resolution: - { - integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, - } + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} http-deceiver@1.2.7: - resolution: - { - integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==, - } + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} http-errors@1.6.3: - resolution: - { - integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} http-errors@2.0.0: - resolution: - { - integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} http-parser-js@0.5.8: - resolution: - { - integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==, - } - - http-proxy-middleware@2.0.6: - resolution: - { - integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==, - } - engines: { node: ">=12.0.0" } - peerDependencies: - "@types/express": ^4.17.13 + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + + http-proxy-middleware@2.0.7: + resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 peerDependenciesMeta: - "@types/express": + '@types/express': optional: true http-proxy@1.18.1: - resolution: - { - integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} http2-wrapper@2.2.1: - resolution: - { - integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==, - } - engines: { node: ">=10.19.0" } + resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} + engines: {node: '>=10.19.0'} human-signals@2.1.0: - resolution: - { - integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, - } - engines: { node: ">=10.17.0" } + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} iconv-lite@0.4.24: - resolution: - { - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} icss-utils@5.1.0: - resolution: - { - integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 ignore@5.3.1: - resolution: - { - integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} image-size@1.1.1: - resolution: - { - integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==, - } - engines: { node: ">=16.x" } + resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} + engines: {node: '>=16.x'} hasBin: true immediate@3.3.0: - resolution: - { - integrity: sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==, - } + resolution: {integrity: sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==} immer@9.0.21: - resolution: - { - integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==, - } + resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} immutable@4.3.6: - resolution: - { - integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==, - } + resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} import-fresh@3.3.0: - resolution: - { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} import-lazy@4.0.0: - resolution: - { - integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} imurmurhash@0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: { node: ">=0.8.19" } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} indent-string@4.0.0: - resolution: - { - integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} infima@0.2.0-alpha.43: - resolution: - { - integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==} + engines: {node: '>=12'} inflight@1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.3: - resolution: - { - integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, - } + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} ini@1.3.8: - resolution: - { - integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, - } + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} ini@2.0.0: - resolution: - { - integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} inline-style-parser@0.1.1: - resolution: - { - integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==, - } + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} inline-style-parser@0.2.3: - resolution: - { - integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==, - } + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} interpret@1.4.0: - resolution: - { - integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} invariant@2.2.4: - resolution: - { - integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, - } + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} ipaddr.js@1.9.1: - resolution: - { - integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} ipaddr.js@2.2.0: - resolution: - { - integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} is-alphabetical@2.0.1: - resolution: - { - integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==, - } + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} is-alphanumerical@2.0.1: - resolution: - { - integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==, - } + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} is-arrayish@0.3.2: - resolution: - { - integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, - } + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} is-binary-path@2.1.0: - resolution: - { - integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} is-buffer@2.0.5: - resolution: - { - integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} is-ci@3.0.1: - resolution: - { - integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, - } + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true is-color-stop@1.1.0: - resolution: - { - integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==, - } + resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==} is-core-module@2.14.0: - resolution: - { - integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} is-decimal@2.0.1: - resolution: - { - integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==, - } + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} is-docker@2.2.1: - resolution: - { - integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} hasBin: true is-extendable@0.1.1: - resolution: - { - integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} is-extglob@2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} is-fullwidth-code-point@3.0.0: - resolution: - { - integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} is-glob@4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} is-hexadecimal@2.0.1: - resolution: - { - integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==, - } + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} is-installed-globally@0.4.0: - resolution: - { - integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} is-npm@6.0.0: - resolution: - { - integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} is-number@7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} is-obj@1.0.1: - resolution: - { - integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} is-obj@2.0.0: - resolution: - { - integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} is-path-cwd@2.2.0: - resolution: - { - integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} is-path-inside@3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} is-plain-obj@2.1.0: - resolution: - { - integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} is-plain-obj@3.0.0: - resolution: - { - integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} is-plain-obj@4.1.0: - resolution: - { - integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} is-plain-object@2.0.4: - resolution: - { - integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} is-primitive@3.0.1: - resolution: - { - integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==} + engines: {node: '>=0.10.0'} is-reference@3.0.2: - resolution: - { - integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==, - } + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} is-regexp@1.0.0: - resolution: - { - integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} is-root@2.1.0: - resolution: - { - integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} + engines: {node: '>=6'} is-stream@2.0.1: - resolution: - { - integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} is-typedarray@1.0.0: - resolution: - { - integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, - } + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} is-wsl@2.2.0: - resolution: - { - integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} is-yarn-global@0.4.1: - resolution: - { - integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==} + engines: {node: '>=12'} isarray@0.0.1: - resolution: - { - integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==, - } + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} isarray@1.0.0: - resolution: - { - integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, - } + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} isobject@3.0.1: - resolution: - { - integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} its-fine@1.2.5: - resolution: - { - integrity: sha512-fXtDA0X0t0eBYAGLVM5YsgJGsJ5jEmqZEPrGbzdf5awjv0xE7nqv3TVnvtUF060Tkes15DbDAKW/I48vsb6SyA==, - } + resolution: {integrity: sha512-fXtDA0X0t0eBYAGLVM5YsgJGsJ5jEmqZEPrGbzdf5awjv0xE7nqv3TVnvtUF060Tkes15DbDAKW/I48vsb6SyA==} peerDependencies: - react: ">=18.0" + react: '>=18.0' jackspeak@3.4.1: - resolution: - { - integrity: sha512-U23pQPDnmYybVkYjObcuYMk43VRlMLLqLI+RdZy8s8WV8WsxO9SnqSroKaluuvcNOdCAlauKszDwd+umbot5Mg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-U23pQPDnmYybVkYjObcuYMk43VRlMLLqLI+RdZy8s8WV8WsxO9SnqSroKaluuvcNOdCAlauKszDwd+umbot5Mg==} + engines: {node: '>=18'} jest-util@29.7.0: - resolution: - { - integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} jest-worker@29.7.0: - resolution: - { - integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jiti@1.21.6: - resolution: - { - integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==, - } + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true joi@17.13.3: - resolution: - { - integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==, - } + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} jotai-location@0.5.5: - resolution: - { - integrity: sha512-6QW/7W9IJHjhbn7gRgAw4sC30k0/G6JiC4uPlKi8ZPZGYk7R7r9PyMD2eVhL4XSxxag89JxS1iSyr6BIXsB4Sw==, - } + resolution: {integrity: sha512-6QW/7W9IJHjhbn7gRgAw4sC30k0/G6JiC4uPlKi8ZPZGYk7R7r9PyMD2eVhL4XSxxag89JxS1iSyr6BIXsB4Sw==} peerDependencies: - jotai: ">=1.11.0" + jotai: '>=1.11.0' jotai@2.8.4: - resolution: - { - integrity: sha512-f6jwjhBJcDtpeauT2xH01gnqadKEySwwt1qNBLvAXcnojkmb76EdqRt05Ym8IamfHGAQz2qMKAwftnyjeSoHAA==, - } - engines: { node: ">=12.20.0" } - peerDependencies: - "@types/react": ">=17.0.0" - react: ">=17.0.0" + resolution: {integrity: sha512-f6jwjhBJcDtpeauT2xH01gnqadKEySwwt1qNBLvAXcnojkmb76EdqRt05Ym8IamfHGAQz2qMKAwftnyjeSoHAA==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=17.0.0' + react: '>=17.0.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react: optional: true js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true jsesc@0.5.0: - resolution: - { - integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, - } + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true jsesc@2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} hasBin: true json-buffer@3.0.1: - resolution: - { - integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, - } + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} json-parse-even-better-errors@2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} json-schema-traverse@0.4.1: - resolution: - { - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, - } + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} json-stable-stringify-without-jsonify@1.0.1: - resolution: - { - integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, - } + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} json5@2.2.3: - resolution: - { - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true jsonfile@6.1.0: - resolution: - { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, - } + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} keyv@4.5.4: - resolution: - { - integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, - } + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} kleur@3.0.3: - resolution: - { - integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} klona@2.0.6: - resolution: - { - integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} konva@9.3.13: - resolution: - { - integrity: sha512-hs0ysHnqjK9noZ/rkfDNJINfbNhkXMgjgkJ8uc6vU0amu05mSDtRlukz5kKHOaSnWHA6miXcHJydvPABh18Y8A==, - } + resolution: {integrity: sha512-hs0ysHnqjK9noZ/rkfDNJINfbNhkXMgjgkJ8uc6vU0amu05mSDtRlukz5kKHOaSnWHA6miXcHJydvPABh18Y8A==} latest-version@7.0.0: - resolution: - { - integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} + engines: {node: '>=14.16'} launch-editor@2.8.0: - resolution: - { - integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==, - } + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} leven@3.1.0: - resolution: - { - integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} levn@0.4.1: - resolution: - { - integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} lilconfig@2.1.0: - resolution: - { - integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} lilconfig@3.1.2: - resolution: - { - integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + engines: {node: '>=14'} lines-and-columns@1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} linkify-it@5.0.0: - resolution: - { - integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==, - } + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} lit-element@4.0.6: - resolution: - { - integrity: sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==, - } + resolution: {integrity: sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==} lit-html@3.1.4: - resolution: - { - integrity: sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==, - } + resolution: {integrity: sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==} lit@3.1.4: - resolution: - { - integrity: sha512-q6qKnKXHy2g1kjBaNfcoLlgbI3+aSOZ9Q4tiGa9bGYXq5RBXxkVTqTIVmP2VWMp29L4GyvCFm8ZQ2o56eUAMyA==, - } + resolution: {integrity: sha512-q6qKnKXHy2g1kjBaNfcoLlgbI3+aSOZ9Q4tiGa9bGYXq5RBXxkVTqTIVmP2VWMp29L4GyvCFm8ZQ2o56eUAMyA==} loader-runner@4.3.0: - resolution: - { - integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, - } - engines: { node: ">=6.11.5" } + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} loader-utils@2.0.4: - resolution: - { - integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, - } - engines: { node: ">=8.9.0" } + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} loader-utils@3.3.1: - resolution: - { - integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} locate-path@3.0.0: - resolution: - { - integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} locate-path@6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} locate-path@7.2.0: - resolution: - { - integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} lodash.debounce@4.0.8: - resolution: - { - integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, - } + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} lodash.memoize@4.1.2: - resolution: - { - integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, - } + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} lodash.topath@4.5.2: - resolution: - { - integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==, - } + resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==} lodash.uniq@4.5.0: - resolution: - { - integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, - } + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} longest-streak@3.1.0: - resolution: - { - integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, - } + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} loose-envify@1.4.0: - resolution: - { - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, - } + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true lower-case@2.0.2: - resolution: - { - integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, - } + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} lowercase-keys@3.0.0: - resolution: - { - integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} lru-cache@10.3.1: - resolution: - { - integrity: sha512-9/8QXrtbGeMB6LxwQd4x1tIMnsmUxMvIH/qWGsccz6bt9Uln3S+sgAaqfQNhbGA8ufzs2fHuP/yqapGgP9Hh2g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-9/8QXrtbGeMB6LxwQd4x1tIMnsmUxMvIH/qWGsccz6bt9Uln3S+sgAaqfQNhbGA8ufzs2fHuP/yqapGgP9Hh2g==} + engines: {node: '>=18'} lru-cache@5.1.1: - resolution: - { - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, - } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} lunr-languages@1.14.0: - resolution: - { - integrity: sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==, - } + resolution: {integrity: sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==} lunr@2.3.9: - resolution: - { - integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==, - } + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} mark.js@8.11.1: - resolution: - { - integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==, - } + resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} markdown-extensions@2.0.0: - resolution: - { - integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} markdown-it@14.1.0: - resolution: - { - integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==, - } + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} hasBin: true markdown-table@3.0.3: - resolution: - { - integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==, - } + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} mdast-util-directive@3.0.0: - resolution: - { - integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==, - } + resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} mdast-util-find-and-replace@3.0.1: - resolution: - { - integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==, - } + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} mdast-util-from-markdown@2.0.1: - resolution: - { - integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==, - } + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} mdast-util-frontmatter@2.0.1: - resolution: - { - integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==, - } + resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} mdast-util-gfm-autolink-literal@2.0.0: - resolution: - { - integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==, - } + resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} mdast-util-gfm-footnote@2.0.0: - resolution: - { - integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==, - } + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} mdast-util-gfm-strikethrough@2.0.0: - resolution: - { - integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, - } + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} mdast-util-gfm-table@2.0.0: - resolution: - { - integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, - } + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} mdast-util-gfm-task-list-item@2.0.0: - resolution: - { - integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, - } + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} mdast-util-gfm@3.0.0: - resolution: - { - integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==, - } + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} mdast-util-mdx-expression@2.0.0: - resolution: - { - integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==, - } + resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} mdast-util-mdx-jsx@3.1.2: - resolution: - { - integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==, - } + resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} mdast-util-mdx@3.0.0: - resolution: - { - integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==, - } + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} mdast-util-mdxjs-esm@2.0.1: - resolution: - { - integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==, - } + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} mdast-util-phrasing@4.1.0: - resolution: - { - integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, - } + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} mdast-util-to-hast@13.2.0: - resolution: - { - integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, - } + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} mdast-util-to-markdown@2.1.0: - resolution: - { - integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==, - } + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} mdast-util-to-string@4.0.0: - resolution: - { - integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, - } + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} mdn-data@2.0.28: - resolution: - { - integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==, - } + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} mdn-data@2.0.30: - resolution: - { - integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, - } + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} mdurl@2.0.0: - resolution: - { - integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==, - } + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} media-typer@0.3.0: - resolution: - { - integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} memfs@3.5.3: - resolution: - { - integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} merge-descriptors@1.0.1: - resolution: - { - integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==, - } + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} meros@1.3.0: - resolution: - { - integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==, - } - engines: { node: ">=13" } + resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} + engines: {node: '>=13'} peerDependencies: - "@types/node": ">=13" + '@types/node': '>=13' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true methods@1.1.2: - resolution: - { - integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} micromark-core-commonmark@2.0.1: - resolution: - { - integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==, - } + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} micromark-extension-directive@3.0.0: - resolution: - { - integrity: sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==, - } + resolution: {integrity: sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==} micromark-extension-frontmatter@2.0.0: - resolution: - { - integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==, - } + resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} micromark-extension-gfm-autolink-literal@2.1.0: - resolution: - { - integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, - } + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} micromark-extension-gfm-footnote@2.1.0: - resolution: - { - integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, - } + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} micromark-extension-gfm-strikethrough@2.1.0: - resolution: - { - integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, - } + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} micromark-extension-gfm-table@2.1.0: - resolution: - { - integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==, - } + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} micromark-extension-gfm-tagfilter@2.0.0: - resolution: - { - integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, - } + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} micromark-extension-gfm-task-list-item@2.1.0: - resolution: - { - integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, - } + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} micromark-extension-gfm@3.0.0: - resolution: - { - integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, - } + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} micromark-extension-mdx-expression@3.0.0: - resolution: - { - integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==, - } + resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} micromark-extension-mdx-jsx@3.0.0: - resolution: - { - integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==, - } + resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==} micromark-extension-mdx-md@2.0.0: - resolution: - { - integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==, - } + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} micromark-extension-mdxjs-esm@3.0.0: - resolution: - { - integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==, - } + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} micromark-extension-mdxjs@3.0.0: - resolution: - { - integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==, - } + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} micromark-factory-destination@2.0.0: - resolution: - { - integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==, - } + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} micromark-factory-label@2.0.0: - resolution: - { - integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==, - } + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} micromark-factory-mdx-expression@2.0.1: - resolution: - { - integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==, - } + resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==} micromark-factory-space@1.1.0: - resolution: - { - integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==, - } + resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} micromark-factory-space@2.0.0: - resolution: - { - integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==, - } + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} micromark-factory-title@2.0.0: - resolution: - { - integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==, - } + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} micromark-factory-whitespace@2.0.0: - resolution: - { - integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==, - } + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} micromark-util-character@1.2.0: - resolution: - { - integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==, - } + resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} micromark-util-character@2.1.0: - resolution: - { - integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==, - } + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} micromark-util-chunked@2.0.0: - resolution: - { - integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==, - } + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} micromark-util-classify-character@2.0.0: - resolution: - { - integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==, - } + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} micromark-util-combine-extensions@2.0.0: - resolution: - { - integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==, - } + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} micromark-util-decode-numeric-character-reference@2.0.1: - resolution: - { - integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==, - } + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} micromark-util-decode-string@2.0.0: - resolution: - { - integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==, - } + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} micromark-util-encode@2.0.0: - resolution: - { - integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==, - } + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} micromark-util-events-to-acorn@2.0.2: - resolution: - { - integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==, - } + resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} micromark-util-html-tag-name@2.0.0: - resolution: - { - integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==, - } + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} micromark-util-normalize-identifier@2.0.0: - resolution: - { - integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==, - } + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} micromark-util-resolve-all@2.0.0: - resolution: - { - integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==, - } + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} micromark-util-sanitize-uri@2.0.0: - resolution: - { - integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==, - } + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} micromark-util-subtokenize@2.0.1: - resolution: - { - integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==, - } + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} micromark-util-symbol@1.1.0: - resolution: - { - integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==, - } + resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} micromark-util-symbol@2.0.0: - resolution: - { - integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==, - } + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} micromark-util-types@1.1.0: - resolution: - { - integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==, - } + resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} micromark-util-types@2.0.0: - resolution: - { - integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==, - } + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} micromark@4.0.0: - resolution: - { - integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==, - } + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} micromatch@4.0.7: - resolution: - { - integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} mime-db@1.33.0: - resolution: - { - integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==} + engines: {node: '>= 0.6'} mime-db@1.52.0: - resolution: - { - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} mime-types@2.1.18: - resolution: - { - integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==} + engines: {node: '>= 0.6'} mime-types@2.1.35: - resolution: - { - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} mime@1.6.0: - resolution: - { - integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} hasBin: true mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} mimic-response@3.1.0: - resolution: - { - integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} mimic-response@4.0.0: - resolution: - { - integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} mini-css-extract-plugin@2.9.0: - resolution: - { - integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 minimalistic-assert@1.0.1: - resolution: - { - integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, - } + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} minimatch@3.1.2: - resolution: - { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, - } + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} minimatch@9.0.5: - resolution: - { - integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} minipass@7.1.2: - resolution: - { - integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} mkdirp@0.3.0: - resolution: - { - integrity: sha512-OHsdUcVAQ6pOtg5JYWpCBo9W/GySVuwvP9hueRMW7UqshC0tbfzLv8wjySTPm3tfUZ/21CE9E1pJagOA91Pxew==, - } + resolution: {integrity: sha512-OHsdUcVAQ6pOtg5JYWpCBo9W/GySVuwvP9hueRMW7UqshC0tbfzLv8wjySTPm3tfUZ/21CE9E1pJagOA91Pxew==} deprecated: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.) modern-normalize@1.1.0: - resolution: - { - integrity: sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==} + engines: {node: '>=6'} mrmime@2.0.0: - resolution: - { - integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} ms@2.0.0: - resolution: - { - integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, - } + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} multicast-dns@7.2.5: - resolution: - { - integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==, - } + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true mz@2.7.0: - resolution: - { - integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, - } + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} nanoid@3.3.7: - resolution: - { - integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true natural-compare@1.4.0: - resolution: - { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, - } + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} negotiator@0.6.3: - resolution: - { - integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} neo-async@2.6.2: - resolution: - { - integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, - } + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} no-case@3.0.4: - resolution: - { - integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, - } + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} node-emoji@1.11.0: - resolution: - { - integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==, - } + resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} node-emoji@2.1.3: - resolution: - { - integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==} + engines: {node: '>=18'} node-forge@1.3.1: - resolution: - { - integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==, - } - engines: { node: ">= 6.13.0" } + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} node-releases@2.0.14: - resolution: - { - integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, - } + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} nopt@1.0.10: - resolution: - { - integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==, - } + resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} hasBin: true normalize-path@3.0.0: - resolution: - { - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} normalize-range@0.1.2: - resolution: - { - integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} normalize-url@8.0.1: - resolution: - { - integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} + engines: {node: '>=14.16'} not@0.1.0: - resolution: - { - integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==, - } + resolution: {integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==} npm-run-path@4.0.1: - resolution: - { - integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} nprogress@0.2.0: - resolution: - { - integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==, - } + resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} nth-check@2.1.1: - resolution: - { - integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, - } + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} nullthrows@1.1.1: - resolution: - { - integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==, - } + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} object-assign@4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} object-hash@2.2.0: - resolution: - { - integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} + engines: {node: '>= 6'} object-hash@3.0.0: - resolution: - { - integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} object-inspect@1.13.2: - resolution: - { - integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} object-keys@1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} object.assign@4.1.5: - resolution: - { - integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} obuf@1.1.2: - resolution: - { - integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==, - } + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} on-finished@2.4.1: - resolution: - { - integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} on-headers@1.0.2: - resolution: - { - integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} once@1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} onetime@5.1.2: - resolution: - { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} open@8.4.2: - resolution: - { - integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} opener@1.5.2: - resolution: - { - integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, - } + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true optimism@0.18.0: - resolution: - { - integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==, - } + resolution: {integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==} optionator@0.9.4: - resolution: - { - integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} p-cancelable@3.0.0: - resolution: - { - integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} + engines: {node: '>=12.20'} p-limit@2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} p-limit@3.1.0: - resolution: - { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} p-limit@4.0.0: - resolution: - { - integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-locate@3.0.0: - resolution: - { - integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} p-locate@5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} p-locate@6.0.0: - resolution: - { - integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-map@4.0.0: - resolution: - { - integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} p-retry@4.6.2: - resolution: - { - integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} p-try@2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} package-json-from-dist@1.0.0: - resolution: - { - integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==, - } + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} package-json@8.1.1: - resolution: - { - integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} + engines: {node: '>=14.16'} param-case@3.0.4: - resolution: - { - integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, - } + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} parent-module@1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} parse-entities@4.0.1: - resolution: - { - integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==, - } + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} parse-json@5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} parse-numeric-range@1.3.0: - resolution: - { - integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==, - } + resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} parse5-htmlparser2-tree-adapter@7.0.0: - resolution: - { - integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==, - } + resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} parse5@6.0.1: - resolution: - { - integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, - } + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} parse5@7.1.2: - resolution: - { - integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, - } + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} parseurl@1.3.3: - resolution: - { - integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} pascal-case@3.1.2: - resolution: - { - integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, - } + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} path-exists@3.0.0: - resolution: - { - integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} path-exists@4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} path-exists@5.0.0: - resolution: - { - integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} path-is-absolute@1.0.1: - resolution: - { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} path-is-inside@1.0.2: - resolution: - { - integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==, - } + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} path-parse@1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} path-scurry@1.11.1: - resolution: - { - integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, - } - engines: { node: ">=16 || 14 >=14.18" } + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} path-to-regexp@0.1.7: - resolution: - { - integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==, - } + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} path-to-regexp@1.8.0: - resolution: - { - integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==, - } + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} path-to-regexp@2.2.1: - resolution: - { - integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==, - } + resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==} path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} periscopic@3.1.0: - resolution: - { - integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==, - } + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} pick-dom-element@0.2.3: - resolution: - { - integrity: sha512-XBwCZMMnmZAU68lvizuAluOBpImiE3sgXEbrMjBBJ/SjUiHTeep38oiBL8wWMy9ZXxNk6JvmYRUmGiZnCOvUFw==, - } + resolution: {integrity: sha512-XBwCZMMnmZAU68lvizuAluOBpImiE3sgXEbrMjBBJ/SjUiHTeep38oiBL8wWMy9ZXxNk6JvmYRUmGiZnCOvUFw==} picocolors@1.0.1: - resolution: - { - integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==, - } + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} pify@2.3.0: - resolution: - { - integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} pirates@4.0.6: - resolution: - { - integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} pkg-dir@7.0.0: - resolution: - { - integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} pkg-up@3.1.0: - resolution: - { - integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} popmotion@11.0.3: - resolution: - { - integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==, - } + resolution: {integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==} postcss-calc@9.0.1: - resolution: - { - integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.2.2 postcss-colormin@6.1.0: - resolution: - { - integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-convert-values@6.1.0: - resolution: - { - integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-comments@6.0.2: - resolution: - { - integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-duplicates@6.0.3: - resolution: - { - integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-empty@6.0.3: - resolution: - { - integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-overridden@6.0.2: - resolution: - { - integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-unused@6.0.5: - resolution: - { - integrity: sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-import@15.1.0: - resolution: - { - integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 postcss-js@3.0.3: - resolution: - { - integrity: sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==, - } - engines: { node: ">=10.0" } + resolution: {integrity: sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==} + engines: {node: '>=10.0'} postcss-js@4.0.1: - resolution: - { - integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==, - } - engines: { node: ^12 || ^14 || >= 16 } + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.4.21 postcss-load-config@3.1.4: - resolution: - { - integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==, - } - engines: { node: ">= 10" } - peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -7963,14 +4759,11 @@ packages: optional: true postcss-load-config@4.0.2: - resolution: - { - integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==, - } - engines: { node: ">= 14" } - peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -7978,1035 +4771,627 @@ packages: optional: true postcss-loader@7.3.4: - resolution: - { - integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==} + engines: {node: '>= 14.15.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 postcss-merge-idents@6.0.3: - resolution: - { - integrity: sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-merge-longhand@6.0.5: - resolution: - { - integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-merge-rules@6.1.1: - resolution: - { - integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-font-values@6.1.0: - resolution: - { - integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-gradients@6.0.3: - resolution: - { - integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-params@6.1.0: - resolution: - { - integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-selectors@6.0.4: - resolution: - { - integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-modules-extract-imports@3.1.0: - resolution: - { - integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-local-by-default@4.0.5: - resolution: - { - integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-scope@3.2.0: - resolution: - { - integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-values@4.0.0: - resolution: - { - integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-nested@5.0.6: - resolution: - { - integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==, - } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 postcss-nested@6.0.1: - resolution: - { - integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==, - } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 postcss-normalize-charset@6.0.2: - resolution: - { - integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-display-values@6.0.2: - resolution: - { - integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-positions@6.0.2: - resolution: - { - integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-repeat-style@6.0.2: - resolution: - { - integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-string@6.0.2: - resolution: - { - integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-timing-functions@6.0.2: - resolution: - { - integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-unicode@6.1.0: - resolution: - { - integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-url@6.0.2: - resolution: - { - integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-whitespace@6.0.2: - resolution: - { - integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-ordered-values@6.0.2: - resolution: - { - integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-reduce-idents@6.0.3: - resolution: - { - integrity: sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-reduce-initial@6.1.0: - resolution: - { - integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-reduce-transforms@6.0.2: - resolution: - { - integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-selector-parser@6.1.0: - resolution: - { - integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + engines: {node: '>=4'} postcss-sort-media-queries@5.2.0: - resolution: - { - integrity: sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==} + engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.4.23 postcss-svgo@6.0.3: - resolution: - { - integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==, - } - engines: { node: ^14 || ^16 || >= 18 } + resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} + engines: {node: ^14 || ^16 || >= 18} peerDependencies: postcss: ^8.4.31 postcss-unique-selectors@6.0.4: - resolution: - { - integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-value-parser@3.3.1: - resolution: - { - integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==, - } + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} postcss-value-parser@4.2.0: - resolution: - { - integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, - } + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} postcss-zindex@6.0.2: - resolution: - { - integrity: sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss@8.3.6: - resolution: - { - integrity: sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==} + engines: {node: ^10 || ^12 || >=14} postcss@8.4.39: - resolution: - { - integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + engines: {node: ^10 || ^12 || >=14} posthog-docusaurus@2.0.0: - resolution: - { - integrity: sha512-nDSTIhmH/Fexv347Gx6wBCE97Z+fZTj0p/gqVYAaolMwSdVuzwyFWcFA+aW9uzA5Y5hjzRwwKJJOrIv8smkYkA==, - } - engines: { node: ">=10.15.1" } + resolution: {integrity: sha512-nDSTIhmH/Fexv347Gx6wBCE97Z+fZTj0p/gqVYAaolMwSdVuzwyFWcFA+aW9uzA5Y5hjzRwwKJJOrIv8smkYkA==} + engines: {node: '>=10.15.1'} prelude-ls@1.2.1: - resolution: - { - integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} prettier@3.3.2: - resolution: - { - integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} + engines: {node: '>=14'} hasBin: true pretty-error@4.0.0: - resolution: - { - integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==, - } + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} pretty-hrtime@1.0.3: - resolution: - { - integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} pretty-time@1.1.0: - resolution: - { - integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==} + engines: {node: '>=4'} prism-react-renderer@2.3.1: - resolution: - { - integrity: sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==, - } + resolution: {integrity: sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==} peerDependencies: - react: ">=16.0.0" + react: '>=16.0.0' prismjs@1.29.0: - resolution: - { - integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} process-nextick-args@2.0.1: - resolution: - { - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, - } + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} prompts@2.4.2: - resolution: - { - integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} prop-types@15.8.1: - resolution: - { - integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, - } + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} property-information@5.6.0: - resolution: - { - integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==, - } + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} property-information@6.5.0: - resolution: - { - integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, - } + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} proto-list@1.2.4: - resolution: - { - integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==, - } + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} proxy-addr@2.0.7: - resolution: - { - integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} punycode.js@2.3.1: - resolution: - { - integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} punycode@1.4.1: - resolution: - { - integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, - } + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} punycode@2.3.1: - resolution: - { - integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} pupa@3.1.0: - resolution: - { - integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} + engines: {node: '>=12.20'} purgecss@4.1.3: - resolution: - { - integrity: sha512-99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw==, - } + resolution: {integrity: sha512-99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw==} hasBin: true qs@6.11.0: - resolution: - { - integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} queue@6.0.2: - resolution: - { - integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==, - } + resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} quick-lru@5.1.1: - resolution: - { - integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} randombytes@2.1.0: - resolution: - { - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, - } + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} range-parser@1.2.0: - resolution: - { - integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==} + engines: {node: '>= 0.6'} range-parser@1.2.1: - resolution: - { - integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} raw-body@2.5.2: - resolution: - { - integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} raw-loader@4.0.2: - resolution: - { - integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 rc@1.2.8: - resolution: - { - integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, - } + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true react-dev-utils@12.0.1: - resolution: - { - integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==, - } - engines: { node: ">=14" } - peerDependencies: - typescript: ">=2.7" - webpack: ">=4" + resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=2.7' + webpack: '>=4' peerDependenciesMeta: typescript: optional: true react-dom@18.3.1: - resolution: - { - integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, - } + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} peerDependencies: react: ^18.3.1 react-error-overlay@6.0.11: - resolution: - { - integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==, - } + resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} react-fast-compare@3.2.2: - resolution: - { - integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==, - } + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} react-helmet-async@1.3.0: - resolution: - { - integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==, - } + resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} peerDependencies: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 react-helmet-async@2.0.5: - resolution: - { - integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==, - } + resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==} peerDependencies: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-is@16.13.1: - resolution: - { - integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, - } + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} react-json-view-lite@1.4.0: - resolution: - { - integrity: sha512-wh6F6uJyYAmQ4fK0e8dSQMEWuvTs2Wr3el3sLD9bambX1+pSWUVXIz1RFaoy3TI1mZ0FqdpKq9YgbgTTgyrmXA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-wh6F6uJyYAmQ4fK0e8dSQMEWuvTs2Wr3el3sLD9bambX1+pSWUVXIz1RFaoy3TI1mZ0FqdpKq9YgbgTTgyrmXA==} + engines: {node: '>=14'} peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 react-konva@18.2.10: - resolution: - { - integrity: sha512-ohcX1BJINL43m4ynjZ24MxFI1syjBdrXhqVxYVDw2rKgr3yuS0x/6m1Y2Z4sl4T/gKhfreBx8KHisd0XC6OT1g==, - } + resolution: {integrity: sha512-ohcX1BJINL43m4ynjZ24MxFI1syjBdrXhqVxYVDw2rKgr3yuS0x/6m1Y2Z4sl4T/gKhfreBx8KHisd0XC6OT1g==} peerDependencies: konva: ^8.0.1 || ^7.2.5 || ^9.0.0 - react: ">=18.0.0" - react-dom: ">=18.0.0" + react: '>=18.0.0' + react-dom: '>=18.0.0' react-lite-youtube-embed@2.4.0: - resolution: - { - integrity: sha512-Xo6cM1zPlROvvM97JkqQIoXstlQDaC4+DawmM7BB7Hh1cXrkBHEGq1iJlQxBTUWAUklmpcC7ph7qg7CztXtABQ==, - } + resolution: {integrity: sha512-Xo6cM1zPlROvvM97JkqQIoXstlQDaC4+DawmM7BB7Hh1cXrkBHEGq1iJlQxBTUWAUklmpcC7ph7qg7CztXtABQ==} peerDependencies: - react: ">=18.2.0" - react-dom: ">=18.2.0" + react: '>=18.2.0' + react-dom: '>=18.2.0' react-loadable-ssr-addon-v5-slorber@1.0.1: - resolution: - { - integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==} + engines: {node: '>=10.13.0'} peerDependencies: - react-loadable: "*" - webpack: ">=4.41.1 || 5.x" + react-loadable: '*' + webpack: '>=4.41.1 || 5.x' react-reconciler@0.29.2: - resolution: - { - integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==} + engines: {node: '>=0.10.0'} peerDependencies: react: ^18.3.1 react-remove-scroll-bar@2.3.6: - resolution: - { - integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-remove-scroll@2.5.7: - resolution: - { - integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-router-config@5.1.1: - resolution: - { - integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==, - } + resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==} peerDependencies: - react: ">=15" - react-router: ">=5" + react: '>=15' + react-router: '>=5' react-router-dom@5.3.4: - resolution: - { - integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==, - } + resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==} peerDependencies: - react: ">=15" + react: '>=15' react-router@5.3.4: - resolution: - { - integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==, - } + resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==} peerDependencies: - react: ">=15" + react: '>=15' react-style-singleton@2.2.1: - resolution: - { - integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react@18.3.1: - resolution: - { - integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} read-cache@1.0.0: - resolution: - { - integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, - } + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} readable-stream@2.3.8: - resolution: - { - integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, - } + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} readable-stream@3.6.2: - resolution: - { - integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} readdirp@3.6.0: - resolution: - { - integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, - } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} reading-time@1.5.0: - resolution: - { - integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==, - } + resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} rechoir@0.6.2: - resolution: - { - integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} recursive-readdir@2.2.3: - resolution: - { - integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} + engines: {node: '>=6.0.0'} reduce-css-calc@2.1.8: - resolution: - { - integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==, - } + resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==} regenerate-unicode-properties@10.1.1: - resolution: - { - integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} regenerate@1.4.2: - resolution: - { - integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, - } + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} regenerator-runtime@0.14.1: - resolution: - { - integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, - } + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} regenerator-transform@0.15.2: - resolution: - { - integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, - } + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} regexpu-core@5.3.2: - resolution: - { - integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} registry-auth-token@5.0.2: - resolution: - { - integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} + engines: {node: '>=14'} registry-url@6.0.1: - resolution: - { - integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} + engines: {node: '>=12'} regjsparser@0.9.1: - resolution: - { - integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, - } + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true rehackt@0.1.0: - resolution: - { - integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==, - } + resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==} peerDependencies: - "@types/react": "*" - react: "*" + '@types/react': '*' + react: '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react: optional: true rehype-parse@7.0.1: - resolution: - { - integrity: sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw==, - } + resolution: {integrity: sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw==} rehype-raw@7.0.0: - resolution: - { - integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, - } + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} relateurl@0.2.7: - resolution: - { - integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} remark-directive@3.0.0: - resolution: - { - integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==, - } + resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} remark-emoji@4.0.1: - resolution: - { - integrity: sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} remark-frontmatter@5.0.0: - resolution: - { - integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==, - } + resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==} remark-gfm@4.0.0: - resolution: - { - integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==, - } + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} remark-mdx@3.0.1: - resolution: - { - integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==, - } + resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==} remark-parse@11.0.0: - resolution: - { - integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, - } + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} remark-rehype@11.1.0: - resolution: - { - integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==, - } + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} remark-stringify@11.0.0: - resolution: - { - integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, - } + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} renderkid@3.0.0: - resolution: - { - integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==, - } + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} repeat-string@1.6.1: - resolution: - { - integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} require-like@0.1.2: - resolution: - { - integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==, - } + resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} requires-port@1.0.0: - resolution: - { - integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, - } + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} resolve-alpn@1.2.1: - resolution: - { - integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, - } + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} resolve-from@4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} resolve-pathname@3.0.0: - resolution: - { - integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==, - } + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} resolve@1.22.8: - resolution: - { - integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, - } + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true response-iterator@0.2.6: - resolution: - { - integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==} + engines: {node: '>=0.8'} responselike@3.0.0: - resolution: - { - integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} + engines: {node: '>=14.16'} retry@0.13.1: - resolution: - { - integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} reusify@1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} rgb-regex@1.0.1: - resolution: - { - integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==, - } + resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==} rgba-regex@1.0.0: - resolution: - { - integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==, - } + resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==} rimraf@3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rtl-detect@1.1.2: - resolution: - { - integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==, - } + resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==} rtlcss@4.1.1: - resolution: - { - integrity: sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==} + engines: {node: '>=12.0.0'} hasBin: true run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} safe-buffer@5.1.2: - resolution: - { - integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, - } + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} safer-buffer@2.1.2: - resolution: - { - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, - } + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} sass-loader@10.5.2: - resolution: - { - integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==} + engines: {node: '>= 10.13.0'} peerDependencies: - fibers: ">= 3.1.0" + fibers: '>= 3.1.0' node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 sass: ^1.3.0 webpack: ^4.36.0 || ^5.0.0 @@ -9019,19 +5404,16 @@ packages: optional: true sass-loader@14.2.1: - resolution: - { - integrity: sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==, - } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==} + engines: {node: '>= 18.12.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 sass: ^1.3.0 - sass-embedded: "*" + sass-embedded: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true node-sass: optional: true @@ -9043,590 +5425,335 @@ packages: optional: true sass@1.77.6: - resolution: - { - integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} + engines: {node: '>=14.0.0'} hasBin: true sax@1.4.1: - resolution: - { - integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==, - } + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} scheduler@0.23.2: - resolution: - { - integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, - } + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} schema-utils@2.7.0: - resolution: - { - integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==, - } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} schema-utils@3.3.0: - resolution: - { - integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} schema-utils@4.2.0: - resolution: - { - integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} search-insights@2.14.0: - resolution: - { - integrity: sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw==, - } + resolution: {integrity: sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw==} section-matter@1.0.0: - resolution: - { - integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} select-hose@2.0.0: - resolution: - { - integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==, - } + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} selfsigned@2.4.1: - resolution: - { - integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} semver-diff@4.0.0: - resolution: - { - integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} + engines: {node: '>=12'} semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true semver@7.6.2: - resolution: - { - integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} hasBin: true send@0.18.0: - resolution: - { - integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} serialize-javascript@6.0.2: - resolution: - { - integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==, - } + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} serve-handler@6.1.5: - resolution: - { - integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==, - } + resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==} serve-index@1.9.1: - resolution: - { - integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} serve-static@1.15.0: - resolution: - { - integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} set-function-length@1.2.2: - resolution: - { - integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} set-value@4.1.0: - resolution: - { - integrity: sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==, - } - engines: { node: ">=11.0" } + resolution: {integrity: sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==} + engines: {node: '>=11.0'} setprototypeof@1.1.0: - resolution: - { - integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==, - } + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} setprototypeof@1.2.0: - resolution: - { - integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, - } + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} shallow-clone@3.0.1: - resolution: - { - integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} shallowequal@1.1.0: - resolution: - { - integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==, - } + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} shebang-command@2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} shebang-regex@3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} shell-quote@1.8.1: - resolution: - { - integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, - } + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} shelljs@0.8.5: - resolution: - { - integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} hasBin: true side-channel@1.0.6: - resolution: - { - integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} signal-exit@4.1.0: - resolution: - { - integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} simple-swizzle@0.2.2: - resolution: - { - integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, - } + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} sirv@2.0.4: - resolution: - { - integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} sisteransi@1.0.5: - resolution: - { - integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, - } + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} sitemap@7.1.2: - resolution: - { - integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==, - } - engines: { node: ">=12.0.0", npm: ">=5.6.0" } + resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==} + engines: {node: '>=12.0.0', npm: '>=5.6.0'} hasBin: true skin-tone@2.0.0: - resolution: - { - integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} + engines: {node: '>=8'} slash@3.0.0: - resolution: - { - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} slash@4.0.0: - resolution: - { - integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} snake-case@3.0.4: - resolution: - { - integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, - } + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} sockjs@0.3.24: - resolution: - { - integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==, - } + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} sort-css-media-queries@2.2.0: - resolution: - { - integrity: sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==, - } - engines: { node: ">= 6.3.0" } + resolution: {integrity: sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==} + engines: {node: '>= 6.3.0'} source-map-js@0.6.2: - resolution: - { - integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==} + engines: {node: '>=0.10.0'} source-map-js@1.2.0: - resolution: - { - integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} source-map-support@0.5.21: - resolution: - { - integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, - } + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} source-map@0.6.1: - resolution: - { - integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} source-map@0.7.4: - resolution: - { - integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} space-separated-tokens@1.1.5: - resolution: - { - integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==, - } + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} space-separated-tokens@2.0.2: - resolution: - { - integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, - } + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} spdy-transport@3.0.0: - resolution: - { - integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==, - } + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} spdy@4.0.2: - resolution: - { - integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} srcset@4.0.0: - resolution: - { - integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==} + engines: {node: '>=12'} statuses@1.5.0: - resolution: - { - integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} statuses@2.0.1: - resolution: - { - integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} std-env@3.7.0: - resolution: - { - integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==, - } + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} string-width@4.2.3: - resolution: - { - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} string_decoder@1.1.1: - resolution: - { - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, - } + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} string_decoder@1.3.0: - resolution: - { - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, - } + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} stringify-entities@4.0.4: - resolution: - { - integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, - } + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} stringify-object@3.3.0: - resolution: - { - integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} strip-ansi@6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} strip-ansi@7.1.0: - resolution: - { - integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} strip-bom-string@1.0.0: - resolution: - { - integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} strip-final-newline@2.0.0: - resolution: - { - integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} strip-json-comments@2.0.1: - resolution: - { - integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} strip-json-comments@3.1.1: - resolution: - { - integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} style-mod@4.1.2: - resolution: - { - integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==, - } + resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} style-to-object@0.4.4: - resolution: - { - integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==, - } + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} style-to-object@1.0.6: - resolution: - { - integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==, - } + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} style-value-types@5.0.0: - resolution: - { - integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==, - } + resolution: {integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==} stylehacks@6.1.1: - resolution: - { - integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==, - } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 sucrase@3.35.0: - resolution: - { - integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true supports-color@5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} supports-color@7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} supports-color@8.1.1: - resolution: - { - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} supports-preserve-symlinks-flag@1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} svg-parser@2.0.4: - resolution: - { - integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==, - } + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} svgo@3.3.2: - resolution: - { - integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} hasBin: true symbol-observable@4.0.0: - resolution: - { - integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} + engines: {node: '>=0.10'} tailwindcss@2.2.15: - resolution: - { - integrity: sha512-WgV41xTMbnSoTNMNnJvShQZ+8GmY86DmXTrCgnsveNZJdlybfwCItV8kAqjYmU49YiFr+ofzmT1JlAKajBZboQ==, - } - engines: { node: ">=12.13.0" } + resolution: {integrity: sha512-WgV41xTMbnSoTNMNnJvShQZ+8GmY86DmXTrCgnsveNZJdlybfwCItV8kAqjYmU49YiFr+ofzmT1JlAKajBZboQ==} + engines: {node: '>=12.13.0'} hasBin: true peerDependencies: autoprefixer: ^10.0.2 postcss: ^8.0.9 tailwindcss@3.4.4: - resolution: - { - integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==} + engines: {node: '>=14.0.0'} hasBin: true tapable@1.1.3: - resolution: - { - integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} tapable@2.2.1: - resolution: - { - integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} terser-webpack-plugin@5.3.10: - resolution: - { - integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==, - } - engines: { node: ">= 10.13.0" } - peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' webpack: ^5.1.0 peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true esbuild: optional: true @@ -9634,589 +5761,334 @@ packages: optional: true terser@5.31.1: - resolution: - { - integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + engines: {node: '>=10'} hasBin: true text-table@0.2.0: - resolution: - { - integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, - } + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} thenify-all@1.6.0: - resolution: - { - integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} thenify@3.3.1: - resolution: - { - integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, - } + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} thunky@1.1.0: - resolution: - { - integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==, - } + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} tiny-invariant@1.3.3: - resolution: - { - integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==, - } + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} tiny-warning@1.0.3: - resolution: - { - integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, - } + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} tmp@0.2.3: - resolution: - { - integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, - } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} to-fast-properties@2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} to-regex-range@5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} to-vfile@6.1.0: - resolution: - { - integrity: sha512-BxX8EkCxOAZe+D/ToHdDsJcVI4HqQfmw0tCkp31zf3dNP/XWIAjU4CmeuSwsSoOzOTqHPOL0KUzyZqJplkD0Qw==, - } + resolution: {integrity: sha512-BxX8EkCxOAZe+D/ToHdDsJcVI4HqQfmw0tCkp31zf3dNP/XWIAjU4CmeuSwsSoOzOTqHPOL0KUzyZqJplkD0Qw==} toggle-selection@1.0.6: - resolution: - { - integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==, - } + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} toidentifier@1.0.1: - resolution: - { - integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} totalist@3.0.1: - resolution: - { - integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} trim-lines@3.0.1: - resolution: - { - integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, - } + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} trough@1.0.5: - resolution: - { - integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==, - } + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} trough@2.2.0: - resolution: - { - integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, - } + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} ts-api-utils@1.3.0: - resolution: - { - integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} + engines: {node: '>=16'} peerDependencies: - typescript: ">=4.2.0" + typescript: '>=4.2.0' ts-interface-checker@0.1.13: - resolution: - { - integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, - } + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} ts-invariant@0.10.3: - resolution: - { - integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==} + engines: {node: '>=8'} tslib@1.14.1: - resolution: - { - integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, - } + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} tslib@2.6.3: - resolution: - { - integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==, - } + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} tsutils@3.21.0: - resolution: - { - integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' type-check@0.4.0: - resolution: - { - integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} type-fest@0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} type-fest@1.4.0: - resolution: - { - integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} type-fest@2.19.0: - resolution: - { - integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} type-is@1.6.18: - resolution: - { - integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} typedarray-to-buffer@3.1.5: - resolution: - { - integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, - } + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} typescript@5.5.3: - resolution: - { - integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + engines: {node: '>=14.17'} hasBin: true uc.micro@2.1.0: - resolution: - { - integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==, - } + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} undici-types@5.26.5: - resolution: - { - integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, - } + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} unicode-canonical-property-names-ecmascript@2.0.0: - resolution: - { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} unicode-emoji-modifier-base@1.0.0: - resolution: - { - integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} + engines: {node: '>=4'} unicode-match-property-ecmascript@2.0.0: - resolution: - { - integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} unicode-match-property-value-ecmascript@2.1.0: - resolution: - { - integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} unicode-property-aliases-ecmascript@2.1.0: - resolution: - { - integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} unified@11.0.5: - resolution: - { - integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, - } + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} unified@9.2.2: - resolution: - { - integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==, - } + resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} unique-selector@0.5.0: - resolution: - { - integrity: sha512-2KCiRgM19ol67lO493tF7mnQPDuYzwRM7JXrVx336+BPXqT2ccCbUOQQpErFbSc8VIdifLf5x34x4lIeebk+YA==, - } + resolution: {integrity: sha512-2KCiRgM19ol67lO493tF7mnQPDuYzwRM7JXrVx336+BPXqT2ccCbUOQQpErFbSc8VIdifLf5x34x4lIeebk+YA==} unique-string@3.0.0: - resolution: - { - integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} + engines: {node: '>=12'} unist-util-find-after@3.0.0: - resolution: - { - integrity: sha512-ojlBqfsBftYXExNu3+hHLfJQ/X1jYY/9vdm4yZWjIbf0VuWF6CRufci1ZyoD/wV2TYMKxXUoNuoqwy+CkgzAiQ==, - } + resolution: {integrity: sha512-ojlBqfsBftYXExNu3+hHLfJQ/X1jYY/9vdm4yZWjIbf0VuWF6CRufci1ZyoD/wV2TYMKxXUoNuoqwy+CkgzAiQ==} unist-util-is@4.1.0: - resolution: - { - integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==, - } + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} unist-util-is@6.0.0: - resolution: - { - integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, - } + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} unist-util-position-from-estree@2.0.0: - resolution: - { - integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==, - } + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} unist-util-position@5.0.0: - resolution: - { - integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, - } + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} unist-util-remove-position@5.0.0: - resolution: - { - integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, - } + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} unist-util-stringify-position@2.0.3: - resolution: - { - integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==, - } + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} unist-util-stringify-position@4.0.0: - resolution: - { - integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, - } + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} unist-util-visit-parents@3.1.1: - resolution: - { - integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==, - } + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} unist-util-visit-parents@6.0.1: - resolution: - { - integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, - } + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} unist-util-visit@2.0.3: - resolution: - { - integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==, - } + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} unist-util-visit@5.0.0: - resolution: - { - integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, - } + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} universalify@2.0.1: - resolution: - { - integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} unpipe@1.0.0: - resolution: - { - integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} update-browserslist-db@1.1.0: - resolution: - { - integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==, - } + resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' update-notifier@6.0.2: - resolution: - { - integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==} + engines: {node: '>=14.16'} uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} url-loader@4.1.1: - resolution: - { - integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} peerDependencies: - file-loader: "*" + file-loader: '*' webpack: ^4.0.0 || ^5.0.0 peerDependenciesMeta: file-loader: optional: true use-callback-ref@1.3.2: - resolution: - { - integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true use-font-face-observer@1.2.2: - resolution: - { - integrity: sha512-5C11YC9vPQn5TeIKDvHHiUg59FBzV1LDIOjYJ2PVgn1raVoKHcuWf3dxVDb7OiqQVg3M2S1jX3LxbLw16xo8gg==, - } + resolution: {integrity: sha512-5C11YC9vPQn5TeIKDvHHiUg59FBzV1LDIOjYJ2PVgn1raVoKHcuWf3dxVDb7OiqQVg3M2S1jX3LxbLw16xo8gg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 use-image@1.1.1: - resolution: - { - integrity: sha512-n4YO2k8AJG/BcDtxmBx8Aa+47kxY5m335dJiCQA5tTeVU4XdhrhqR6wT0WISRXwdMEOv5CSjqekDZkEMiiWaYQ==, - } + resolution: {integrity: sha512-n4YO2k8AJG/BcDtxmBx8Aa+47kxY5m335dJiCQA5tTeVU4XdhrhqR6wT0WISRXwdMEOv5CSjqekDZkEMiiWaYQ==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' use-sidecar@1.1.2: - resolution: - { - integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true util-deprecate@1.0.2: - resolution: - { - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, - } + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} utila@0.4.0: - resolution: - { - integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==, - } + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} utility-types@3.11.0: - resolution: - { - integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} + engines: {node: '>= 4'} utils-merge@1.0.1: - resolution: - { - integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} uuid@8.3.2: - resolution: - { - integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, - } + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true value-equal@1.0.1: - resolution: - { - integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==, - } + resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} vary@1.1.2: - resolution: - { - integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} vfile-location@3.2.0: - resolution: - { - integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==, - } + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} vfile-location@5.0.2: - resolution: - { - integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==, - } + resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} vfile-message@2.0.4: - resolution: - { - integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==, - } + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} vfile-message@4.0.2: - resolution: - { - integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==, - } + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} vfile@4.2.1: - resolution: - { - integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==, - } + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} vfile@6.0.1: - resolution: - { - integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==, - } + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} vscode-languageserver-types@3.17.5: - resolution: - { - integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, - } + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} w3c-keyname@2.2.8: - resolution: - { - integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==, - } + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} watchpack@2.4.1: - resolution: - { - integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} wbuf@1.7.3: - resolution: - { - integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==, - } + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} web-namespaces@1.1.4: - resolution: - { - integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==, - } + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} web-namespaces@2.0.1: - resolution: - { - integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, - } + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} webpack-bundle-analyzer@4.10.2: - resolution: - { - integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} hasBin: true webpack-dev-middleware@5.3.4: - resolution: - { - integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 webpack-dev-server@4.15.2: - resolution: - { - integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: webpack: ^4.37.0 || ^5.0.0 - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack: optional: true @@ -10224,128 +6096,77 @@ packages: optional: true webpack-merge@5.10.0: - resolution: - { - integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} webpack-sources@3.2.3: - resolution: - { - integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} webpack@5.92.1: - resolution: - { - integrity: sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true webpackbar@5.0.2: - resolution: - { - integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==} + engines: {node: '>=12'} peerDependencies: webpack: 3 || 4 || 5 websocket-driver@0.7.4: - resolution: - { - integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} websocket-extensions@0.1.4: - resolution: - { - integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} which@1.3.1: - resolution: - { - integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, - } + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true wide-align@1.1.5: - resolution: - { - integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, - } + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} widest-line@4.0.1: - resolution: - { - integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} + engines: {node: '>=12'} wildcard@2.0.1: - resolution: - { - integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==, - } + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} word-wrap@1.2.5: - resolution: - { - integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} wrappy@1.0.2: - resolution: - { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, - } + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} write-file-atomic@3.0.3: - resolution: - { - integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, - } + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} ws@7.5.10: - resolution: - { - integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==, - } - engines: { node: ">=8.3.0" } + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -10356,14 +6177,11 @@ packages: optional: true ws@8.18.0: - resolution: - { - integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -10371,205 +6189,170 @@ packages: optional: true xdg-basedir@5.1.0: - resolution: - { - integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} xml-js@1.6.11: - resolution: - { - integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==, - } + resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} hasBin: true xtend@4.0.2: - resolution: - { - integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} yallist@3.1.1: - resolution: - { - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, - } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} yaml@1.10.2: - resolution: - { - integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} yaml@2.4.5: - resolution: - { - integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==, - } - engines: { node: ">= 14" } + resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} + engines: {node: '>= 14'} hasBin: true yocto-queue@0.1.0: - resolution: - { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} yocto-queue@1.1.1: - resolution: - { - integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} zen-observable-ts@1.2.5: - resolution: - { - integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==, - } + resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==} zen-observable@0.8.15: - resolution: - { - integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==, - } + resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} zwitch@1.0.5: - resolution: - { - integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==, - } + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} zwitch@2.0.4: - resolution: - { - integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, - } + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} snapshots: - "@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0)": + + '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0)': dependencies: - "@algolia/autocomplete-plugin-algolia-insights": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0) - "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) + '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0) + '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) transitivePeerDependencies: - - "@algolia/client-search" + - '@algolia/client-search' - algoliasearch - search-insights - "@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0)": + '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0)': dependencies: - "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) + '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) search-insights: 2.14.0 transitivePeerDependencies: - - "@algolia/client-search" + - '@algolia/client-search' - algoliasearch - "@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)": + '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)': dependencies: - "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) - "@algolia/client-search": 4.24.0 + '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) + '@algolia/client-search': 4.24.0 algoliasearch: 4.24.0 - "@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)": + '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)': dependencies: - "@algolia/client-search": 4.24.0 + '@algolia/client-search': 4.24.0 algoliasearch: 4.24.0 - "@algolia/cache-browser-local-storage@4.24.0": + '@algolia/cache-browser-local-storage@4.24.0': dependencies: - "@algolia/cache-common": 4.24.0 + '@algolia/cache-common': 4.24.0 - "@algolia/cache-common@4.24.0": {} + '@algolia/cache-common@4.24.0': {} - "@algolia/cache-in-memory@4.24.0": + '@algolia/cache-in-memory@4.24.0': dependencies: - "@algolia/cache-common": 4.24.0 + '@algolia/cache-common': 4.24.0 - "@algolia/client-account@4.24.0": + '@algolia/client-account@4.24.0': dependencies: - "@algolia/client-common": 4.24.0 - "@algolia/client-search": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/client-search': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/client-analytics@4.24.0": + '@algolia/client-analytics@4.24.0': dependencies: - "@algolia/client-common": 4.24.0 - "@algolia/client-search": 4.24.0 - "@algolia/requester-common": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/client-search': 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/client-common@4.24.0": + '@algolia/client-common@4.24.0': dependencies: - "@algolia/requester-common": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/client-personalization@4.24.0": + '@algolia/client-personalization@4.24.0': dependencies: - "@algolia/client-common": 4.24.0 - "@algolia/requester-common": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/client-search@4.24.0": + '@algolia/client-search@4.24.0': dependencies: - "@algolia/client-common": 4.24.0 - "@algolia/requester-common": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/events@4.0.1": {} + '@algolia/events@4.0.1': {} - "@algolia/logger-common@4.24.0": {} + '@algolia/logger-common@4.24.0': {} - "@algolia/logger-console@4.24.0": + '@algolia/logger-console@4.24.0': dependencies: - "@algolia/logger-common": 4.24.0 + '@algolia/logger-common': 4.24.0 - "@algolia/recommend@4.24.0": + '@algolia/recommend@4.24.0': dependencies: - "@algolia/cache-browser-local-storage": 4.24.0 - "@algolia/cache-common": 4.24.0 - "@algolia/cache-in-memory": 4.24.0 - "@algolia/client-common": 4.24.0 - "@algolia/client-search": 4.24.0 - "@algolia/logger-common": 4.24.0 - "@algolia/logger-console": 4.24.0 - "@algolia/requester-browser-xhr": 4.24.0 - "@algolia/requester-common": 4.24.0 - "@algolia/requester-node-http": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/cache-browser-local-storage': 4.24.0 + '@algolia/cache-common': 4.24.0 + '@algolia/cache-in-memory': 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/client-search': 4.24.0 + '@algolia/logger-common': 4.24.0 + '@algolia/logger-console': 4.24.0 + '@algolia/requester-browser-xhr': 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/requester-node-http': 4.24.0 + '@algolia/transporter': 4.24.0 - "@algolia/requester-browser-xhr@4.24.0": + '@algolia/requester-browser-xhr@4.24.0': dependencies: - "@algolia/requester-common": 4.24.0 + '@algolia/requester-common': 4.24.0 - "@algolia/requester-common@4.24.0": {} + '@algolia/requester-common@4.24.0': {} - "@algolia/requester-node-http@4.24.0": + '@algolia/requester-node-http@4.24.0': dependencies: - "@algolia/requester-common": 4.24.0 + '@algolia/requester-common': 4.24.0 - "@algolia/transporter@4.24.0": + '@algolia/transporter@4.24.0': dependencies: - "@algolia/cache-common": 4.24.0 - "@algolia/logger-common": 4.24.0 - "@algolia/requester-common": 4.24.0 + '@algolia/cache-common': 4.24.0 + '@algolia/logger-common': 4.24.0 + '@algolia/requester-common': 4.24.0 - "@alloc/quick-lru@5.2.0": {} + '@alloc/quick-lru@5.2.0': {} - "@ampproject/remapping@2.3.0": + '@ampproject/remapping@2.3.0': dependencies: - "@jridgewell/gen-mapping": 0.3.5 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - "@apollo/client@3.10.8(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@apollo/client@3.10.8(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@16.9.0) - "@wry/caches": 1.0.1 - "@wry/equality": 0.5.7 - "@wry/trie": 0.5.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + '@wry/caches': 1.0.1 + '@wry/equality': 0.5.7 + '@wry/trie': 0.5.0 graphql: 16.9.0 graphql-tag: 2.12.6(graphql@16.9.0) hoist-non-react-statics: 3.3.2 @@ -10586,27 +6369,27 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@babel/code-frame@7.24.7": + '@babel/code-frame@7.24.7': dependencies: - "@babel/highlight": 7.24.7 + '@babel/highlight': 7.24.7 picocolors: 1.0.1 - "@babel/compat-data@7.24.7": {} + '@babel/compat-data@7.24.7': {} - "@babel/core@7.24.7": + '@babel/core@7.24.7': dependencies: - "@ampproject/remapping": 2.3.0 - "@babel/code-frame": 7.24.7 - "@babel/generator": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helpers": 7.24.7 - "@babel/parser": 7.24.7 - "@babel/template": 7.24.7 - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 convert-source-map: 2.0.0 debug: 4.3.5 gensync: 1.0.0-beta.2 @@ -10615,618 +6398,618 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/generator@7.24.7": + '@babel/generator@7.24.7': dependencies: - "@babel/types": 7.24.7 - "@jridgewell/gen-mapping": 0.3.5 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/types': 7.24.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - "@babel/helper-annotate-as-pure@7.24.7": + '@babel/helper-annotate-as-pure@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-builder-binary-assignment-operator-visitor@7.24.7": + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-compilation-targets@7.24.7": + '@babel/helper-compilation-targets@7.24.7': dependencies: - "@babel/compat-data": 7.24.7 - "@babel/helper-validator-option": 7.24.7 + '@babel/compat-data': 7.24.7 + '@babel/helper-validator-option': 7.24.7 browserslist: 4.23.1 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-function-name": 7.24.7 - "@babel/helper-member-expression-to-functions": 7.24.7 - "@babel/helper-optimise-call-expression": 7.24.7 - "@babel/helper-replace-supers": 7.24.7(@babel/core@7.24.7) - "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 - "@babel/helper-split-export-declaration": 7.24.7 + '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)": + '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 regexpu-core: 5.3.2 semver: 6.3.1 - "@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)": + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 debug: 4.3.5 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - "@babel/helper-environment-visitor@7.24.7": + '@babel/helper-environment-visitor@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-function-name@7.24.7": + '@babel/helper-function-name@7.24.7': dependencies: - "@babel/template": 7.24.7 - "@babel/types": 7.24.7 + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-hoist-variables@7.24.7": + '@babel/helper-hoist-variables@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-member-expression-to-functions@7.24.7": + '@babel/helper-member-expression-to-functions@7.24.7': dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-imports@7.24.7": + '@babel/helper-module-imports@7.24.7': dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)": + '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-module-imports": 7.24.7 - "@babel/helper-simple-access": 7.24.7 - "@babel/helper-split-export-declaration": 7.24.7 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-optimise-call-expression@7.24.7": + '@babel/helper-optimise-call-expression@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-plugin-utils@7.24.7": {} + '@babel/helper-plugin-utils@7.24.7': {} - "@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)": + '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-wrap-function": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-wrap-function': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)": + '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-member-expression-to-functions": 7.24.7 - "@babel/helper-optimise-call-expression": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-simple-access@7.24.7": + '@babel/helper-simple-access@7.24.7': dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-skip-transparent-expression-wrappers@7.24.7": + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helper-split-export-declaration@7.24.7": + '@babel/helper-split-export-declaration@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/helper-string-parser@7.24.7": {} + '@babel/helper-string-parser@7.24.7': {} - "@babel/helper-validator-identifier@7.24.7": {} + '@babel/helper-validator-identifier@7.24.7': {} - "@babel/helper-validator-option@7.24.7": {} + '@babel/helper-validator-option@7.24.7': {} - "@babel/helper-wrap-function@7.24.7": + '@babel/helper-wrap-function@7.24.7': dependencies: - "@babel/helper-function-name": 7.24.7 - "@babel/template": 7.24.7 - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/helpers@7.24.7": + '@babel/helpers@7.24.7': dependencies: - "@babel/template": 7.24.7 - "@babel/types": 7.24.7 + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - "@babel/highlight@7.24.7": + '@babel/highlight@7.24.7': dependencies: - "@babel/helper-validator-identifier": 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.1 - "@babel/parser@7.24.7": + '@babel/parser@7.24.7': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 - "@babel/plugin-transform-optional-chaining": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)": + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)": + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)": + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)": + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)": + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)": + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)": + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)": + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)": + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)": + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)": + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-remap-async-to-generator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-module-imports": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-remap-async-to-generator": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-class-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-class-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-function-name": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-replace-supers": 7.24.7(@babel/core@7.24.7) - "@babel/helper-split-export-declaration": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-split-export-declaration': 7.24.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/template": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/template': 7.24.7 - "@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-function-name": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - "@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-simple-access": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-simple-access': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-hoist-variables": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-hoist-variables': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - "@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-parameters": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-replace-supers": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-class-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-create-class-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/plugin-transform-react-jsx": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-module-imports": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.7) - "@babel/types": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) + '@babel/types': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - "@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-module-imports": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7) babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7) @@ -11234,146 +7017,146 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - "@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)": + '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-annotate-as-pure": 7.24.7 - "@babel/helper-create-class-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-typescript": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - - "@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - - "@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - - "@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/core": 7.24.7 - "@babel/helper-create-regexp-features-plugin": 7.24.7(@babel/core@7.24.7) - "@babel/helper-plugin-utils": 7.24.7 - - "@babel/preset-env@7.24.7(@babel/core@7.24.7)": - dependencies: - "@babel/compat-data": 7.24.7 - "@babel/core": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-validator-option": 7.24.7 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.7) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.7) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.7) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-import-assertions": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-syntax-import-attributes": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.7) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.7) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.7) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.7) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.7) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.24.7) - "@babel/plugin-transform-arrow-functions": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-async-generator-functions": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-async-to-generator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-block-scoped-functions": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-block-scoping": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-class-properties": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-class-static-block": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-classes": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-computed-properties": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-destructuring": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-dotall-regex": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-duplicate-keys": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-dynamic-import": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-exponentiation-operator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-export-namespace-from": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-for-of": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-function-name": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-json-strings": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-literals": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-logical-assignment-operators": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-member-expression-literals": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-modules-amd": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-modules-commonjs": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-modules-systemjs": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-modules-umd": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-named-capturing-groups-regex": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-new-target": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-nullish-coalescing-operator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-numeric-separator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-object-rest-spread": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-object-super": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-optional-catch-binding": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-optional-chaining": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-parameters": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-private-methods": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-private-property-in-object": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-property-literals": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-regenerator": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-reserved-words": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-shorthand-properties": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-spread": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-sticky-regex": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-template-literals": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-typeof-symbol": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-unicode-escapes": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-unicode-property-regex": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-unicode-regex": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-unicode-sets-regex": 7.24.7(@babel/core@7.24.7) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/preset-env@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.7) + '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.7) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.7) babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7) babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7) @@ -11382,130 +7165,130 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)": + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/types": 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/types': 7.24.7 esutils: 2.0.3 - "@babel/preset-react@7.24.7(@babel/core@7.24.7)": + '@babel/preset-react@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-validator-option": 7.24.7 - "@babel/plugin-transform-react-display-name": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-react-jsx": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-react-jsx-development": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-react-pure-annotations": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/preset-typescript@7.24.7(@babel/core@7.24.7)": + '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/helper-validator-option": 7.24.7 - "@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-modules-commonjs": 7.24.7(@babel/core@7.24.7) - "@babel/plugin-transform-typescript": 7.24.7(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - "@babel/regjsgen@0.8.0": {} + '@babel/regjsgen@0.8.0': {} - "@babel/runtime-corejs3@7.24.7": + '@babel/runtime-corejs3@7.24.7': dependencies: core-js-pure: 3.37.1 regenerator-runtime: 0.14.1 - "@babel/runtime@7.24.7": + '@babel/runtime@7.24.7': dependencies: regenerator-runtime: 0.14.1 - "@babel/template@7.24.7": + '@babel/template@7.24.7': dependencies: - "@babel/code-frame": 7.24.7 - "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 + '@babel/code-frame': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/types': 7.24.7 - "@babel/traverse@7.24.7": + '@babel/traverse@7.24.7': dependencies: - "@babel/code-frame": 7.24.7 - "@babel/generator": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 - "@babel/helper-function-name": 7.24.7 - "@babel/helper-hoist-variables": 7.24.7 - "@babel/helper-split-export-declaration": 7.24.7 - "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-hoist-variables': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/types': 7.24.7 debug: 4.3.5 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.24.7": + '@babel/types@7.24.7': dependencies: - "@babel/helper-string-parser": 7.24.7 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/helper-string-parser': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - "@codemirror/language@6.10.2": + '@codemirror/language@6.10.2': dependencies: - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.4 - "@lezer/common": 1.2.1 - "@lezer/highlight": 1.2.0 - "@lezer/lr": 1.4.1 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.4 + '@lezer/common': 1.2.1 + '@lezer/highlight': 1.2.0 + '@lezer/lr': 1.4.1 style-mod: 4.1.2 - "@codemirror/state@6.4.1": {} + '@codemirror/state@6.4.1': {} - "@codemirror/view@6.28.4": + '@codemirror/view@6.28.4': dependencies: - "@codemirror/state": 6.4.1 + '@codemirror/state': 6.4.1 style-mod: 4.1.2 w3c-keyname: 2.2.8 - "@colors/colors@1.5.0": + '@colors/colors@1.5.0': optional: true - "@discoveryjs/json-ext@0.5.7": {} + '@discoveryjs/json-ext@0.5.7': {} - "@docsearch/css@3.6.0": {} + '@docsearch/css@3.6.0': {} - "@docsearch/react@3.6.0(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)": + '@docsearch/react@3.6.0(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)': dependencies: - "@algolia/autocomplete-core": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0) - "@algolia/autocomplete-preset-algolia": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) - "@docsearch/css": 3.6.0 + '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.14.0) + '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) + '@docsearch/css': 3.6.0 algoliasearch: 4.24.0 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) search-insights: 2.14.0 transitivePeerDependencies: - - "@algolia/client-search" - - "@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": - dependencies: - "@babel/core": 7.24.7 - "@babel/generator": 7.24.7 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.7) - "@babel/plugin-transform-runtime": 7.24.7(@babel/core@7.24.7) - "@babel/preset-env": 7.24.7(@babel/core@7.24.7) - "@babel/preset-react": 7.24.7(@babel/core@7.24.7) - "@babel/preset-typescript": 7.24.7(@babel/core@7.24.7) - "@babel/runtime": 7.24.7 - "@babel/runtime-corejs3": 7.24.7 - "@babel/traverse": 7.24.7 - "@docusaurus/cssnano-preset": 3.4.0 - "@docusaurus/logger": 3.4.0 - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + - '@algolia/client-search' + + '@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@babel/core': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.7) + '@babel/preset-env': 7.24.7(@babel/core@7.24.7) + '@babel/preset-react': 7.24.7(@babel/core@7.24.7) + '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) + '@babel/runtime': 7.24.7 + '@babel/runtime-corejs3': 7.24.7 + '@babel/traverse': 7.24.7 + '@docusaurus/cssnano-preset': 3.4.0 + '@docusaurus/logger': 3.4.0 + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) autoprefixer: 10.4.19(postcss@8.4.39) babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.92.1) babel-plugin-dynamic-import-node: 2.3.3 @@ -11542,7 +7325,7 @@ snapshots: react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.5.3)(webpack@5.92.1) react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-loadable: "@docusaurus/react-loadable@6.0.0(react@18.3.1)" + react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.92.1) react-router: 5.3.4(react@18.3.1) react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1) @@ -11561,11 +7344,11 @@ snapshots: webpack-merge: 5.10.0 webpackbar: 5.0.2(webpack@5.92.1) transitivePeerDependencies: - - "@docusaurus/types" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@docusaurus/types' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11579,34 +7362,34 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/cssnano-preset@3.4.0": + '@docusaurus/cssnano-preset@3.4.0': dependencies: cssnano-preset-advanced: 6.1.2(postcss@8.4.39) postcss: 8.4.39 postcss-sort-media-queries: 5.2.0(postcss@8.4.39) tslib: 2.6.3 - "@docusaurus/eslint-plugin@3.4.0(eslint@8.57.0)(typescript@5.5.3)": + '@docusaurus/eslint-plugin@3.4.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 tslib: 2.6.3 transitivePeerDependencies: - supports-color - typescript - "@docusaurus/logger@3.4.0": + '@docusaurus/logger@3.4.0': dependencies: chalk: 4.1.2 tslib: 2.6.3 - "@docusaurus/mdx-loader@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/mdx-loader@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/logger": 3.4.0 - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@mdx-js/mdx": 3.0.1 - "@slorber/remark-comment": 1.0.0 + '@docusaurus/logger': 3.4.0 + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@mdx-js/mdx': 3.0.1 + '@slorber/remark-comment': 1.0.0 escape-html: 1.0.3 estree-util-value-to-estree: 3.1.2 file-loader: 6.2.0(webpack@5.92.1) @@ -11629,41 +7412,41 @@ snapshots: vfile: 6.0.1 webpack: 5.92.1 transitivePeerDependencies: - - "@docusaurus/types" - - "@swc/core" + - '@docusaurus/types' + - '@swc/core' - esbuild - supports-color - typescript - uglify-js - webpack-cli - "@docusaurus/module-type-aliases@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@docusaurus/module-type-aliases@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@types/history": 4.7.11 - "@types/react": 18.3.3 - "@types/react-router-config": 5.0.11 - "@types/react-router-dom": 5.3.3 + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/history': 4.7.11 + '@types/react': 18.3.3 + '@types/react-router-config': 5.0.11 + '@types/react-router-dom': 5.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-helmet-async: 2.0.5(react@18.3.1) - react-loadable: "@docusaurus/react-loadable@6.0.0(react@18.3.1)" + react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - supports-color - uglify-js - webpack-cli - "@docusaurus/plugin-content-blog@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-content-blog@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/logger": 3.4.0 - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/logger': 3.4.0 + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) cheerio: 1.0.0-rc.12 feed: 4.2.2 fs-extra: 11.2.0 @@ -11677,10 +7460,10 @@ snapshots: utility-types: 3.11.0 webpack: 5.92.1 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11694,17 +7477,17 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-content-docs@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": - dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/logger": 3.4.0 - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/module-type-aliases": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@types/react-router-config": 5.0.11 + '@docusaurus/plugin-content-docs@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/logger': 3.4.0 + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/module-type-aliases': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@types/react-router-config': 5.0.11 combine-promises: 1.2.0 fs-extra: 11.2.0 js-yaml: 4.1.0 @@ -11715,10 +7498,10 @@ snapshots: utility-types: 3.11.0 webpack: 5.92.1 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11732,23 +7515,23 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-content-pages@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-content-pages@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.6.3 webpack: 5.92.1 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11762,21 +7545,21 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-debug@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-debug@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-json-view-lite: 1.4.0(react@18.3.1) tslib: 2.6.3 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11790,19 +7573,19 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-google-analytics@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-google-analytics@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.6.3 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11816,20 +7599,20 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-google-gtag@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-google-gtag@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@types/gtag.js": 0.0.12 + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@types/gtag.js': 0.0.12 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.6.3 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11843,19 +7626,19 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-google-tag-manager@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-google-tag-manager@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.6.3 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11869,24 +7652,24 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/plugin-sitemap@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": + '@docusaurus/plugin-sitemap@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/logger": 3.4.0 - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/logger': 3.4.0 + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) sitemap: 7.1.2 tslib: 2.6.3 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -11900,30 +7683,30 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/preset-classic@3.4.0(@algolia/client-search@4.24.0)(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3)": - dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-blog": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-docs": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-pages": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-debug": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-google-analytics": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-google-gtag": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-google-tag-manager": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-sitemap": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-classic": 3.4.0(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-search-algolia": 3.4.0(@algolia/client-search@4.24.0)(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3) - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/preset-classic@3.4.0(@algolia/client-search@4.24.0)(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3)': + dependencies: + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-blog': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-pages': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-debug': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-google-analytics': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-google-gtag': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-google-tag-manager': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-sitemap': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-classic': 3.4.0(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-search-algolia': 3.4.0(@algolia/client-search@4.24.0)(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - "@algolia/client-search" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" - - "@types/react" + - '@algolia/client-search' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@types/react' - bufferutil - csso - debug @@ -11938,26 +7721,26 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/react-loadable@6.0.0(react@18.3.1)": + '@docusaurus/react-loadable@6.0.0(react@18.3.1)': dependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react: 18.3.1 - "@docusaurus/theme-classic@3.4.0(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": - dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/module-type-aliases": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/plugin-content-blog": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-docs": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-pages": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-translations": 3.4.0 - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@mdx-js/react": 3.0.1(@types/react@18.3.3)(react@18.3.1) + '@docusaurus/theme-classic@3.4.0(@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/module-type-aliases': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/plugin-content-blog': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-pages': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-translations': 3.4.0 + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) clsx: 2.1.1 copy-text-to-clipboard: 3.2.0 infima: 0.2.0-alpha.43 @@ -11973,11 +7756,11 @@ snapshots: tslib: 2.6.3 utility-types: 3.11.0 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" - - "@types/react" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@types/react' - bufferutil - csso - debug @@ -11991,18 +7774,18 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)": - dependencies: - "@docusaurus/mdx-loader": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/module-type-aliases": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/plugin-content-blog": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-docs": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/plugin-content-pages": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@types/history": 4.7.11 - "@types/react": 18.3.3 - "@types/react-router-config": 5.0.11 + '@docusaurus/theme-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@docusaurus/mdx-loader': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/module-type-aliases': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/plugin-content-blog': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-pages': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@types/history': 4.7.11 + '@types/react': 18.3.3 + '@types/react-router-config': 5.0.11 clsx: 2.1.1 parse-numeric-range: 1.3.0 prism-react-renderer: 2.3.1(react@18.3.1) @@ -12011,11 +7794,11 @@ snapshots: tslib: 2.6.3 utility-types: 3.11.0 transitivePeerDependencies: - - "@docusaurus/types" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" + - '@docusaurus/types' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' - bufferutil - csso - debug @@ -12029,16 +7812,16 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/theme-search-algolia@3.4.0(@algolia/client-search@4.24.0)(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3)": + '@docusaurus/theme-search-algolia@3.4.0(@algolia/client-search@4.24.0)(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.5.3)': dependencies: - "@docsearch/react": 3.6.0(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0) - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/logger": 3.4.0 - "@docusaurus/plugin-content-docs": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) - "@docusaurus/theme-translations": 3.4.0 - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-validation": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docsearch/react': 3.6.0(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/logger': 3.4.0 + '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/theme-translations': 3.4.0 + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-validation': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) algoliasearch: 4.24.0 algoliasearch-helper: 3.22.2(algoliasearch@4.24.0) clsx: 2.1.1 @@ -12050,13 +7833,13 @@ snapshots: tslib: 2.6.3 utility-types: 3.11.0 transitivePeerDependencies: - - "@algolia/client-search" - - "@docusaurus/types" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" - - "@types/react" + - '@algolia/client-search' + - '@docusaurus/types' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@types/react' - bufferutil - csso - debug @@ -12071,18 +7854,18 @@ snapshots: - vue-template-compiler - webpack-cli - "@docusaurus/theme-translations@3.4.0": + '@docusaurus/theme-translations@3.4.0': dependencies: fs-extra: 11.2.0 tslib: 2.6.3 - "@docusaurus/tsconfig@3.4.0": {} + '@docusaurus/tsconfig@3.4.0': {} - "@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@mdx-js/mdx": 3.0.1 - "@types/history": 4.7.11 - "@types/react": 18.3.3 + '@mdx-js/mdx': 3.0.1 + '@types/history': 4.7.11 + '@types/react': 18.3.3 commander: 5.1.0 joi: 17.13.3 react: 18.3.1 @@ -12092,42 +7875,42 @@ snapshots: webpack: 5.92.1 webpack-merge: 5.10.0 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - supports-color - uglify-js - webpack-cli - "@docusaurus/utils-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))": + '@docusaurus/utils-common@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: tslib: 2.6.3 optionalDependencies: - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3)": + '@docusaurus/utils-validation@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3)': dependencies: - "@docusaurus/logger": 3.4.0 - "@docusaurus/utils": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@docusaurus/logger': 3.4.0 + '@docusaurus/utils': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3) + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) fs-extra: 11.2.0 joi: 17.13.3 js-yaml: 4.1.0 lodash: 4.17.21 tslib: 2.6.3 transitivePeerDependencies: - - "@docusaurus/types" - - "@swc/core" + - '@docusaurus/types' + - '@swc/core' - esbuild - supports-color - typescript - uglify-js - webpack-cli - "@docusaurus/utils@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3)": + '@docusaurus/utils@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.5.3)': dependencies: - "@docusaurus/logger": 3.4.0 - "@docusaurus/utils-common": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - "@svgr/webpack": 8.1.0(typescript@5.5.3) + '@docusaurus/logger': 3.4.0 + '@docusaurus/utils-common': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@svgr/webpack': 8.1.0(typescript@5.5.3) escape-string-regexp: 4.0.0 file-loader: 6.2.0(webpack@5.92.1) fs-extra: 11.2.0 @@ -12146,31 +7929,31 @@ snapshots: utility-types: 3.11.0 webpack: 5.92.1 optionalDependencies: - "@docusaurus/types": 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@docusaurus/types': 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - supports-color - typescript - uglify-js - webpack-cli - "@emotion/is-prop-valid@0.8.8": + '@emotion/is-prop-valid@0.8.8': dependencies: - "@emotion/memoize": 0.7.4 + '@emotion/memoize': 0.7.4 optional: true - "@emotion/memoize@0.7.4": + '@emotion/memoize@0.7.4': optional: true - "@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)": + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': dependencies: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 - "@eslint-community/regexpp@4.11.0": {} + '@eslint-community/regexpp@4.11.0': {} - "@eslint/eslintrc@2.1.4": + '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 debug: 4.3.5 @@ -12184,40 +7967,40 @@ snapshots: transitivePeerDependencies: - supports-color - "@eslint/js@8.57.0": {} + '@eslint/js@8.57.0': {} - "@floating-ui/core@1.6.4": + '@floating-ui/core@1.6.4': dependencies: - "@floating-ui/utils": 0.2.4 + '@floating-ui/utils': 0.2.4 - "@floating-ui/dom@1.6.7": + '@floating-ui/dom@1.6.7': dependencies: - "@floating-ui/core": 1.6.4 - "@floating-ui/utils": 0.2.4 + '@floating-ui/core': 1.6.4 + '@floating-ui/utils': 0.2.4 - "@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@floating-ui/dom": 1.6.7 + '@floating-ui/dom': 1.6.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@floating-ui/utils@0.2.4": {} + '@floating-ui/utils@0.2.4': {} - "@giscus/react@3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@giscus/react@3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: giscus: 1.5.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@graphiql/react@0.22.4(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@graphiql/react@0.22.4(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@graphiql/toolkit": 0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0) - "@headlessui/react": 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-dialog": 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-dropdown-menu": 2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-tooltip": 1.1.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-visually-hidden": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@types/codemirror": 5.60.15 + '@graphiql/toolkit': 0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0) + '@headlessui/react': 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-dialog': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-dropdown-menu': 2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-tooltip': 1.1.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/codemirror': 5.60.15 clsx: 1.2.1 codemirror: 5.65.16 codemirror-graphql: 2.0.12(@codemirror/language@6.10.2)(codemirror@5.65.16)(graphql@16.9.0) @@ -12230,52 +8013,52 @@ snapshots: react-dom: 18.3.1(react@18.3.1) set-value: 4.1.0 transitivePeerDependencies: - - "@codemirror/language" - - "@types/node" - - "@types/react" - - "@types/react-dom" + - '@codemirror/language' + - '@types/node' + - '@types/react' + - '@types/react-dom' - graphql-ws - "@graphiql/toolkit@0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)": + '@graphiql/toolkit@0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)': dependencies: - "@n1ru4l/push-pull-async-iterable-iterator": 3.2.0 + '@n1ru4l/push-pull-async-iterable-iterator': 3.2.0 graphql: 16.9.0 meros: 1.3.0(@types/node@20.14.10) optionalDependencies: graphql-ws: 5.16.0(graphql@16.9.0) transitivePeerDependencies: - - "@types/node" + - '@types/node' - "@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)": + '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)': dependencies: graphql: 16.9.0 - "@hapi/hoek@9.3.0": {} + '@hapi/hoek@9.3.0': {} - "@hapi/topo@5.1.0": + '@hapi/topo@5.1.0': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@headlessui/react@1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@headlessui/react@1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@tanstack/react-virtual": 3.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@tanstack/react-virtual': 3.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) client-only: 0.0.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@humanwhocodes/config-array@0.11.14": + '@humanwhocodes/config-array@0.11.14': dependencies: - "@humanwhocodes/object-schema": 2.0.3 + '@humanwhocodes/object-schema': 2.0.3 debug: 4.3.5 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - "@humanwhocodes/module-importer@1.0.1": {} + '@humanwhocodes/module-importer@1.0.1': {} - "@humanwhocodes/object-schema@2.0.3": {} + '@humanwhocodes/object-schema@2.0.3': {} - "@isaacs/cliui@8.0.2": + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -12284,65 +8067,65 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@jest/schemas@29.6.3": + '@jest/schemas@29.6.3': dependencies: - "@sinclair/typebox": 0.27.8 + '@sinclair/typebox': 0.27.8 - "@jest/types@29.6.3": + '@jest/types@29.6.3': dependencies: - "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 20.14.10 - "@types/yargs": 17.0.32 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.14.10 + '@types/yargs': 17.0.32 chalk: 4.1.2 - "@jridgewell/gen-mapping@0.3.5": + '@jridgewell/gen-mapping@0.3.5': dependencies: - "@jridgewell/set-array": 1.2.1 - "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 - "@jridgewell/resolve-uri@3.1.2": {} + '@jridgewell/resolve-uri@3.1.2': {} - "@jridgewell/set-array@1.2.1": {} + '@jridgewell/set-array@1.2.1': {} - "@jridgewell/source-map@0.3.6": + '@jridgewell/source-map@0.3.6': dependencies: - "@jridgewell/gen-mapping": 0.3.5 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - "@jridgewell/sourcemap-codec@1.4.15": {} + '@jridgewell/sourcemap-codec@1.4.15': {} - "@jridgewell/trace-mapping@0.3.25": + '@jridgewell/trace-mapping@0.3.25': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 - "@leichtgewicht/ip-codec@2.0.5": {} + '@leichtgewicht/ip-codec@2.0.5': {} - "@lezer/common@1.2.1": {} + '@lezer/common@1.2.1': {} - "@lezer/highlight@1.2.0": + '@lezer/highlight@1.2.0': dependencies: - "@lezer/common": 1.2.1 + '@lezer/common': 1.2.1 - "@lezer/lr@1.4.1": + '@lezer/lr@1.4.1': dependencies: - "@lezer/common": 1.2.1 + '@lezer/common': 1.2.1 - "@lit-labs/ssr-dom-shim@1.2.0": {} + '@lit-labs/ssr-dom-shim@1.2.0': {} - "@lit/reactive-element@2.0.4": + '@lit/reactive-element@2.0.4': dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + '@lit-labs/ssr-dom-shim': 1.2.0 - "@mdx-js/mdx@3.0.1": + '@mdx-js/mdx@3.0.1': dependencies: - "@types/estree": 1.0.5 - "@types/estree-jsx": 1.0.5 - "@types/hast": 3.0.4 - "@types/mdx": 2.0.13 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 collapse-white-space: 2.1.0 devlop: 1.1.0 estree-util-build-jsx: 3.0.1 @@ -12365,445 +8148,445 @@ snapshots: transitivePeerDependencies: - supports-color - "@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)": + '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@types/mdx": 2.0.13 - "@types/react": 18.3.3 + '@types/mdx': 2.0.13 + '@types/react': 18.3.3 react: 18.3.1 - "@motionone/animation@10.18.0": + '@motionone/animation@10.18.0': dependencies: - "@motionone/easing": 10.18.0 - "@motionone/types": 10.17.1 - "@motionone/utils": 10.18.0 + '@motionone/easing': 10.18.0 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 tslib: 2.6.3 - "@motionone/dom@10.12.0": + '@motionone/dom@10.12.0': dependencies: - "@motionone/animation": 10.18.0 - "@motionone/generators": 10.18.0 - "@motionone/types": 10.17.1 - "@motionone/utils": 10.18.0 + '@motionone/animation': 10.18.0 + '@motionone/generators': 10.18.0 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 hey-listen: 1.0.8 tslib: 2.6.3 - "@motionone/easing@10.18.0": + '@motionone/easing@10.18.0': dependencies: - "@motionone/utils": 10.18.0 + '@motionone/utils': 10.18.0 tslib: 2.6.3 - "@motionone/generators@10.18.0": + '@motionone/generators@10.18.0': dependencies: - "@motionone/types": 10.17.1 - "@motionone/utils": 10.18.0 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 tslib: 2.6.3 - "@motionone/types@10.17.1": {} + '@motionone/types@10.17.1': {} - "@motionone/utils@10.18.0": + '@motionone/utils@10.18.0': dependencies: - "@motionone/types": 10.17.1 + '@motionone/types': 10.17.1 hey-listen: 1.0.8 tslib: 2.6.3 - "@n1ru4l/push-pull-async-iterable-iterator@3.2.0": {} + '@n1ru4l/push-pull-async-iterable-iterator@3.2.0': {} - "@nodelib/fs.scandir@2.1.5": + '@nodelib/fs.scandir@2.1.5': dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - "@nodelib/fs.stat@2.0.5": {} + '@nodelib/fs.stat@2.0.5': {} - "@nodelib/fs.walk@1.2.8": + '@nodelib/fs.walk@1.2.8': dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - "@pkgjs/parseargs@0.11.0": + '@pkgjs/parseargs@0.11.0': optional: true - "@pnpm/config.env-replace@1.1.0": {} + '@pnpm/config.env-replace@1.1.0': {} - "@pnpm/network.ca-file@1.0.2": + '@pnpm/network.ca-file@1.0.2': dependencies: graceful-fs: 4.2.10 - "@pnpm/npm-conf@2.2.2": + '@pnpm/npm-conf@2.2.2': dependencies: - "@pnpm/config.env-replace": 1.1.0 - "@pnpm/network.ca-file": 1.0.2 + '@pnpm/config.env-replace': 1.1.0 + '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - "@polka/url@1.0.0-next.25": {} + '@polka/url@1.0.0-next.25': {} - "@radix-ui/primitive@1.1.0": {} + '@radix-ui/primitive@1.1.0': {} - "@radix-ui/react-arrow@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-arrow@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-collection@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-collection@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-slot": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 - - "@radix-ui/react-dialog@1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-dismissable-layer": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-focus-guards": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-focus-scope": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-id": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-portal": 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-presence": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-slot": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@types/react': 18.3.3 + + '@radix-ui/react-dialog@1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-portal': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-dismissable-layer@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-dismissable-layer@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-escape-keydown": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-dropdown-menu@2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-dropdown-menu@2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-id": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-menu": 2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-menu': 2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-focus-scope@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-focus-scope@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 - - "@radix-ui/react-menu@2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-collection": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-direction": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-dismissable-layer": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-focus-guards": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-focus-scope": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-id": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-popper": 1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-portal": 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-presence": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-roving-focus": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-slot": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@types/react': 18.3.3 + + '@radix-ui/react-menu@2.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-collection': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-popper': 1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 - - "@radix-ui/react-popper@1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@floating-ui/react-dom": 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-arrow": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-rect": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-size": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/rect": 1.1.0 + '@types/react': 18.3.3 + + '@radix-ui/react-popper@1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/rect': 1.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-portal@1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-portal@1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-presence@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-presence@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-primitive@2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-primitive@2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-slot": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 - - "@radix-ui/react-roving-focus@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-collection": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-direction": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-id": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@types/react': 18.3.3 + + '@radix-ui/react-roving-focus@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-collection': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 - - "@radix-ui/react-tooltip@1.1.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": - dependencies: - "@radix-ui/primitive": 1.1.0 - "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-context": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-dismissable-layer": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-id": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-popper": 1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-portal": 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-presence": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@radix-ui/react-slot": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.3)(react@18.3.1) - "@radix-ui/react-visually-hidden": 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.3 + + '@radix-ui/react-tooltip@1.1.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-popper': 1.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-rect@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/rect": 1.1.0 + '@radix-ui/rect': 1.1.0 react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-use-size@1.1.0(@types/react@18.3.3)(react@18.3.1)": + '@radix-ui/react-use-size@1.1.0(@types/react@18.3.3)(react@18.3.1)': dependencies: - "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/react-visually-hidden@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@radix-ui/react-visually-hidden@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@radix-ui/react-primitive": 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@radix-ui/rect@1.1.0": {} + '@radix-ui/rect@1.1.0': {} - "@react-spring/animated@9.7.3(react@18.3.1)": + '@react-spring/animated@9.7.3(react@18.3.1)': dependencies: - "@react-spring/shared": 9.7.3(react@18.3.1) - "@react-spring/types": 9.7.3 + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 react: 18.3.1 - "@react-spring/core@9.7.3(react@18.3.1)": + '@react-spring/core@9.7.3(react@18.3.1)': dependencies: - "@react-spring/animated": 9.7.3(react@18.3.1) - "@react-spring/shared": 9.7.3(react@18.3.1) - "@react-spring/types": 9.7.3 + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 react: 18.3.1 - "@react-spring/konva@9.7.3(konva@9.3.13)(react-konva@18.2.10(konva@9.3.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)": + '@react-spring/konva@9.7.3(konva@9.3.13)(react-konva@18.2.10(konva@9.3.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - "@react-spring/animated": 9.7.3(react@18.3.1) - "@react-spring/core": 9.7.3(react@18.3.1) - "@react-spring/shared": 9.7.3(react@18.3.1) - "@react-spring/types": 9.7.3 + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 konva: 9.3.13 react: 18.3.1 react-konva: 18.2.10(konva@9.3.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@react-spring/shared@9.7.3(react@18.3.1)": + '@react-spring/shared@9.7.3(react@18.3.1)': dependencies: - "@react-spring/types": 9.7.3 + '@react-spring/types': 9.7.3 react: 18.3.1 - "@react-spring/types@9.7.3": {} + '@react-spring/types@9.7.3': {} - "@sideway/address@4.1.5": + '@sideway/address@4.1.5': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@sideway/formula@3.0.1": {} + '@sideway/formula@3.0.1': {} - "@sideway/pinpoint@2.0.0": {} + '@sideway/pinpoint@2.0.0': {} - "@sinclair/typebox@0.27.8": {} + '@sinclair/typebox@0.27.8': {} - "@sindresorhus/is@4.6.0": {} + '@sindresorhus/is@4.6.0': {} - "@sindresorhus/is@5.6.0": {} + '@sindresorhus/is@5.6.0': {} - "@slorber/remark-comment@1.0.0": + '@slorber/remark-comment@1.0.0': dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 - "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)": + '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 - "@svgr/babel-preset@8.1.0(@babel/core@7.24.7)": + '@svgr/babel-preset@8.1.0(@babel/core@7.24.7)': dependencies: - "@babel/core": 7.24.7 - "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.24.7) - "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.24.7) - "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.7) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.7) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7) - "@svgr/core@8.1.0(typescript@5.5.3)": + '@svgr/core@8.1.0(typescript@5.5.3)': dependencies: - "@babel/core": 7.24.7 - "@svgr/babel-preset": 8.1.0(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) camelcase: 6.3.0 cosmiconfig: 8.3.6(typescript@5.5.3) snake-case: 3.0.4 @@ -12811,273 +8594,273 @@ snapshots: - supports-color - typescript - "@svgr/hast-util-to-babel-ast@8.0.0": + '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - "@babel/types": 7.24.7 + '@babel/types': 7.24.7 entities: 4.5.0 - "@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))": + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))': dependencies: - "@babel/core": 7.24.7 - "@svgr/babel-preset": 8.1.0(@babel/core@7.24.7) - "@svgr/core": 8.1.0(typescript@5.5.3) - "@svgr/hast-util-to-babel-ast": 8.0.0 + '@babel/core': 7.24.7 + '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) + '@svgr/core': 8.1.0(typescript@5.5.3) + '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - "@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3)": + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3)': dependencies: - "@svgr/core": 8.1.0(typescript@5.5.3) + '@svgr/core': 8.1.0(typescript@5.5.3) cosmiconfig: 8.3.6(typescript@5.5.3) deepmerge: 4.3.1 svgo: 3.3.2 transitivePeerDependencies: - typescript - "@svgr/webpack@8.1.0(typescript@5.5.3)": + '@svgr/webpack@8.1.0(typescript@5.5.3)': dependencies: - "@babel/core": 7.24.7 - "@babel/plugin-transform-react-constant-elements": 7.24.7(@babel/core@7.24.7) - "@babel/preset-env": 7.24.7(@babel/core@7.24.7) - "@babel/preset-react": 7.24.7(@babel/core@7.24.7) - "@babel/preset-typescript": 7.24.7(@babel/core@7.24.7) - "@svgr/core": 8.1.0(typescript@5.5.3) - "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.5.3)) - "@svgr/plugin-svgo": 8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3) + '@babel/core': 7.24.7 + '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) + '@babel/preset-env': 7.24.7(@babel/core@7.24.7) + '@babel/preset-react': 7.24.7(@babel/core@7.24.7) + '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) + '@svgr/core': 8.1.0(typescript@5.5.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.5.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.5.3))(typescript@5.5.3) transitivePeerDependencies: - supports-color - typescript - "@szmarczak/http-timer@5.0.1": + '@szmarczak/http-timer@5.0.1': dependencies: defer-to-connect: 2.0.1 - "@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.4)": + '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.4)': dependencies: tailwindcss: 3.4.4 - "@tanstack/react-virtual@3.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@tanstack/react-virtual@3.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@tanstack/virtual-core": 3.8.1 + '@tanstack/virtual-core': 3.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@tanstack/virtual-core@3.8.1": {} + '@tanstack/virtual-core@3.8.1': {} - "@trysound/sax@0.2.0": {} + '@trysound/sax@0.2.0': {} - "@types/acorn@4.0.6": + '@types/acorn@4.0.6': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 - "@types/body-parser@1.19.5": + '@types/body-parser@1.19.5': dependencies: - "@types/connect": 3.4.38 - "@types/node": 20.14.10 + '@types/connect': 3.4.38 + '@types/node': 20.14.10 - "@types/bonjour@3.5.13": + '@types/bonjour@3.5.13': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/codemirror@0.0.90": + '@types/codemirror@0.0.90': dependencies: - "@types/tern": 0.23.9 + '@types/tern': 0.23.9 - "@types/codemirror@5.60.15": + '@types/codemirror@5.60.15': dependencies: - "@types/tern": 0.23.9 + '@types/tern': 0.23.9 - "@types/connect-history-api-fallback@1.5.4": + '@types/connect-history-api-fallback@1.5.4': dependencies: - "@types/express-serve-static-core": 4.19.5 - "@types/node": 20.14.10 + '@types/express-serve-static-core': 4.19.5 + '@types/node': 20.14.10 - "@types/connect@3.4.38": + '@types/connect@3.4.38': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/debug@4.1.12": + '@types/debug@4.1.12': dependencies: - "@types/ms": 0.7.34 + '@types/ms': 0.7.34 - "@types/eslint-scope@3.7.7": + '@types/eslint-scope@3.7.7': dependencies: - "@types/eslint": 8.56.10 - "@types/estree": 1.0.5 + '@types/eslint': 8.56.10 + '@types/estree': 1.0.5 - "@types/eslint@8.56.10": + '@types/eslint@8.56.10': dependencies: - "@types/estree": 1.0.5 - "@types/json-schema": 7.0.15 + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 - "@types/estree-jsx@1.0.5": + '@types/estree-jsx@1.0.5': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 - "@types/estree@1.0.5": {} + '@types/estree@1.0.5': {} - "@types/express-serve-static-core@4.19.5": + '@types/express-serve-static-core@4.19.5': dependencies: - "@types/node": 20.14.10 - "@types/qs": 6.9.15 - "@types/range-parser": 1.2.7 - "@types/send": 0.17.4 + '@types/node': 20.14.10 + '@types/qs': 6.9.15 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 - "@types/express@4.17.21": + '@types/express@4.17.21': dependencies: - "@types/body-parser": 1.19.5 - "@types/express-serve-static-core": 4.19.5 - "@types/qs": 6.9.15 - "@types/serve-static": 1.15.7 + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 4.19.5 + '@types/qs': 6.9.15 + '@types/serve-static': 1.15.7 - "@types/gtag.js@0.0.12": {} + '@types/gtag.js@0.0.12': {} - "@types/hast@2.3.10": + '@types/hast@2.3.10': dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 - "@types/hast@3.0.4": + '@types/hast@3.0.4': dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 - "@types/history@4.7.11": {} + '@types/history@4.7.11': {} - "@types/html-minifier-terser@6.1.0": {} + '@types/html-minifier-terser@6.1.0': {} - "@types/http-cache-semantics@4.0.4": {} + '@types/http-cache-semantics@4.0.4': {} - "@types/http-errors@2.0.4": {} + '@types/http-errors@2.0.4': {} - "@types/http-proxy@1.17.14": + '@types/http-proxy@1.17.14': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/istanbul-lib-coverage@2.0.6": {} + '@types/istanbul-lib-coverage@2.0.6': {} - "@types/istanbul-lib-report@3.0.3": + '@types/istanbul-lib-report@3.0.3': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 + '@types/istanbul-lib-coverage': 2.0.6 - "@types/istanbul-reports@3.0.4": + '@types/istanbul-reports@3.0.4': dependencies: - "@types/istanbul-lib-report": 3.0.3 + '@types/istanbul-lib-report': 3.0.3 - "@types/json-schema@7.0.15": {} + '@types/json-schema@7.0.15': {} - "@types/mdast@4.0.4": + '@types/mdast@4.0.4': dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 - "@types/mdx@2.0.13": {} + '@types/mdx@2.0.13': {} - "@types/mime@1.3.5": {} + '@types/mime@1.3.5': {} - "@types/ms@0.7.34": {} + '@types/ms@0.7.34': {} - "@types/node-forge@1.3.11": + '@types/node-forge@1.3.11': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/node@17.0.45": {} + '@types/node@17.0.45': {} - "@types/node@20.14.10": + '@types/node@20.14.10': dependencies: undici-types: 5.26.5 - "@types/parse-json@4.0.2": {} + '@types/parse-json@4.0.2': {} - "@types/parse5@5.0.3": {} + '@types/parse5@5.0.3': {} - "@types/prismjs@1.26.4": {} + '@types/prismjs@1.26.4': {} - "@types/prop-types@15.7.12": {} + '@types/prop-types@15.7.12': {} - "@types/qs@6.9.15": {} + '@types/qs@6.9.15': {} - "@types/range-parser@1.2.7": {} + '@types/range-parser@1.2.7': {} - "@types/react-reconciler@0.28.8": + '@types/react-reconciler@0.28.8': dependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 - "@types/react-router-config@5.0.11": + '@types/react-router-config@5.0.11': dependencies: - "@types/history": 4.7.11 - "@types/react": 18.3.3 - "@types/react-router": 5.1.20 + '@types/history': 4.7.11 + '@types/react': 18.3.3 + '@types/react-router': 5.1.20 - "@types/react-router-dom@5.3.3": + '@types/react-router-dom@5.3.3': dependencies: - "@types/history": 4.7.11 - "@types/react": 18.3.3 - "@types/react-router": 5.1.20 + '@types/history': 4.7.11 + '@types/react': 18.3.3 + '@types/react-router': 5.1.20 - "@types/react-router@5.1.20": + '@types/react-router@5.1.20': dependencies: - "@types/history": 4.7.11 - "@types/react": 18.3.3 + '@types/history': 4.7.11 + '@types/react': 18.3.3 - "@types/react@18.3.3": + '@types/react@18.3.3': dependencies: - "@types/prop-types": 15.7.12 + '@types/prop-types': 15.7.12 csstype: 3.1.3 - "@types/retry@0.12.0": {} + '@types/retry@0.12.0': {} - "@types/sax@1.2.7": + '@types/sax@1.2.7': dependencies: - "@types/node": 17.0.45 + '@types/node': 20.14.10 - "@types/semver@7.5.8": {} + '@types/semver@7.5.8': {} - "@types/send@0.17.4": + '@types/send@0.17.4': dependencies: - "@types/mime": 1.3.5 - "@types/node": 20.14.10 + '@types/mime': 1.3.5 + '@types/node': 20.14.10 - "@types/serve-index@1.9.4": + '@types/serve-index@1.9.4': dependencies: - "@types/express": 4.17.21 + '@types/express': 4.17.21 - "@types/serve-static@1.15.7": + '@types/serve-static@1.15.7': dependencies: - "@types/http-errors": 2.0.4 - "@types/node": 20.14.10 - "@types/send": 0.17.4 + '@types/http-errors': 2.0.4 + '@types/node': 20.14.10 + '@types/send': 0.17.4 - "@types/sockjs@0.3.36": + '@types/sockjs@0.3.36': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/tern@0.23.9": + '@types/tern@0.23.9': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 - "@types/trusted-types@2.0.7": {} + '@types/trusted-types@2.0.7': {} - "@types/unist@2.0.10": {} + '@types/unist@2.0.10': {} - "@types/unist@3.0.2": {} + '@types/unist@3.0.2': {} - "@types/ws@8.5.10": + '@types/ws@8.5.10': dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 - "@types/yargs-parser@21.0.3": {} + '@types/yargs-parser@21.0.3': {} - "@types/yargs@17.0.32": + '@types/yargs@17.0.32': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@typescript-eslint/eslint-plugin@7.15.0(@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)": + '@typescript-eslint/eslint-plugin@7.15.0(@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@eslint-community/regexpp": 4.11.0 - "@typescript-eslint/parser": 7.15.0(eslint@8.57.0)(typescript@5.5.3) - "@typescript-eslint/scope-manager": 7.15.0 - "@typescript-eslint/type-utils": 7.15.0(eslint@8.57.0)(typescript@5.5.3) - "@typescript-eslint/utils": 7.15.0(eslint@8.57.0)(typescript@5.5.3) - "@typescript-eslint/visitor-keys": 7.15.0 + '@eslint-community/regexpp': 4.11.0 + '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/scope-manager': 7.15.0 + '@typescript-eslint/type-utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 7.15.0 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -13088,12 +8871,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3)": + '@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@typescript-eslint/scope-manager": 7.15.0 - "@typescript-eslint/types": 7.15.0 - "@typescript-eslint/typescript-estree": 7.15.0(typescript@5.5.3) - "@typescript-eslint/visitor-keys": 7.15.0 + '@typescript-eslint/scope-manager': 7.15.0 + '@typescript-eslint/types': 7.15.0 + '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 7.15.0 debug: 4.3.5 eslint: 8.57.0 optionalDependencies: @@ -13101,20 +8884,20 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/scope-manager@5.62.0": + '@typescript-eslint/scope-manager@5.62.0': dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 - "@typescript-eslint/scope-manager@7.15.0": + '@typescript-eslint/scope-manager@7.15.0': dependencies: - "@typescript-eslint/types": 7.15.0 - "@typescript-eslint/visitor-keys": 7.15.0 + '@typescript-eslint/types': 7.15.0 + '@typescript-eslint/visitor-keys': 7.15.0 - "@typescript-eslint/type-utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)": + '@typescript-eslint/type-utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@typescript-eslint/typescript-estree": 7.15.0(typescript@5.5.3) - "@typescript-eslint/utils": 7.15.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) + '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) debug: 4.3.5 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.5.3) @@ -13123,14 +8906,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/types@5.62.0": {} + '@typescript-eslint/types@5.62.0': {} - "@typescript-eslint/types@7.15.0": {} + '@typescript-eslint/types@7.15.0': {} - "@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)": + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)': dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.5 globby: 11.1.0 is-glob: 4.0.3 @@ -13141,10 +8924,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@7.15.0(typescript@5.5.3)": + '@typescript-eslint/typescript-estree@7.15.0(typescript@5.5.3)': dependencies: - "@typescript-eslint/types": 7.15.0 - "@typescript-eslint/visitor-keys": 7.15.0 + '@typescript-eslint/types': 7.15.0 + '@typescript-eslint/visitor-keys': 7.15.0 debug: 4.3.5 globby: 11.1.0 is-glob: 4.0.3 @@ -13156,14 +8939,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)": + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@types/json-schema": 7.0.15 - "@types/semver": 7.5.8 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.5.3) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.2 @@ -13171,128 +8954,128 @@ snapshots: - supports-color - typescript - "@typescript-eslint/utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)": + '@typescript-eslint/utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@typescript-eslint/scope-manager": 7.15.0 - "@typescript-eslint/types": 7.15.0 - "@typescript-eslint/typescript-estree": 7.15.0(typescript@5.5.3) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 7.15.0 + '@typescript-eslint/types': 7.15.0 + '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript - "@typescript-eslint/visitor-keys@5.62.0": + '@typescript-eslint/visitor-keys@5.62.0': dependencies: - "@typescript-eslint/types": 5.62.0 + '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - "@typescript-eslint/visitor-keys@7.15.0": + '@typescript-eslint/visitor-keys@7.15.0': dependencies: - "@typescript-eslint/types": 7.15.0 + '@typescript-eslint/types': 7.15.0 eslint-visitor-keys: 3.4.3 - "@ungap/structured-clone@1.2.0": {} + '@ungap/structured-clone@1.2.0': {} - "@webassemblyjs/ast@1.12.1": + '@webassemblyjs/ast@1.12.1': dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - "@webassemblyjs/floating-point-hex-parser@1.11.6": {} + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - "@webassemblyjs/helper-api-error@1.11.6": {} + '@webassemblyjs/helper-api-error@1.11.6': {} - "@webassemblyjs/helper-buffer@1.12.1": {} + '@webassemblyjs/helper-buffer@1.12.1': {} - "@webassemblyjs/helper-numbers@1.11.6": + '@webassemblyjs/helper-numbers@1.11.6': dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 - "@webassemblyjs/helper-wasm-bytecode@1.11.6": {} + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - "@webassemblyjs/helper-wasm-section@1.12.1": + '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.12.1 - "@webassemblyjs/ieee754@1.11.6": + '@webassemblyjs/ieee754@1.11.6': dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 - "@webassemblyjs/leb128@1.11.6": + '@webassemblyjs/leb128@1.11.6': dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 - "@webassemblyjs/utf8@1.11.6": {} + '@webassemblyjs/utf8@1.11.6': {} - "@webassemblyjs/wasm-edit@1.12.1": + '@webassemblyjs/wasm-edit@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.12.1 - "@webassemblyjs/wasm-gen": 1.12.1 - "@webassemblyjs/wasm-opt": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 - "@webassemblyjs/wast-printer": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-opt': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + '@webassemblyjs/wast-printer': 1.12.1 - "@webassemblyjs/wasm-gen@1.12.1": + '@webassemblyjs/wasm-gen@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 - "@webassemblyjs/wasm-opt@1.12.1": + '@webassemblyjs/wasm-opt@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/wasm-gen": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 - "@webassemblyjs/wasm-parser@1.12.1": + '@webassemblyjs/wasm-parser@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 - "@webassemblyjs/wast-printer@1.12.1": + '@webassemblyjs/wast-printer@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.12.1 + '@xtuc/long': 4.2.2 - "@wry/caches@1.0.1": + '@wry/caches@1.0.1': dependencies: tslib: 2.6.3 - "@wry/context@0.7.4": + '@wry/context@0.7.4': dependencies: tslib: 2.6.3 - "@wry/equality@0.5.7": + '@wry/equality@0.5.7': dependencies: tslib: 2.6.3 - "@wry/trie@0.4.3": + '@wry/trie@0.4.3': dependencies: tslib: 2.6.3 - "@wry/trie@0.5.0": + '@wry/trie@0.5.0': dependencies: tslib: 2.6.3 - "@xtuc/ieee754@1.2.0": {} + '@xtuc/ieee754@1.2.0': {} - "@xtuc/long@4.2.2": {} + '@xtuc/long@4.2.2': {} abbrev@1.1.1: {} @@ -13361,26 +9144,26 @@ snapshots: algoliasearch-helper@3.22.2(algoliasearch@4.24.0): dependencies: - "@algolia/events": 4.0.1 + '@algolia/events': 4.0.1 algoliasearch: 4.24.0 algoliasearch@4.24.0: dependencies: - "@algolia/cache-browser-local-storage": 4.24.0 - "@algolia/cache-common": 4.24.0 - "@algolia/cache-in-memory": 4.24.0 - "@algolia/client-account": 4.24.0 - "@algolia/client-analytics": 4.24.0 - "@algolia/client-common": 4.24.0 - "@algolia/client-personalization": 4.24.0 - "@algolia/client-search": 4.24.0 - "@algolia/logger-common": 4.24.0 - "@algolia/logger-console": 4.24.0 - "@algolia/recommend": 4.24.0 - "@algolia/requester-browser-xhr": 4.24.0 - "@algolia/requester-common": 4.24.0 - "@algolia/requester-node-http": 4.24.0 - "@algolia/transporter": 4.24.0 + '@algolia/cache-browser-local-storage': 4.24.0 + '@algolia/cache-common': 4.24.0 + '@algolia/cache-in-memory': 4.24.0 + '@algolia/client-account': 4.24.0 + '@algolia/client-analytics': 4.24.0 + '@algolia/client-common': 4.24.0 + '@algolia/client-personalization': 4.24.0 + '@algolia/client-search': 4.24.0 + '@algolia/logger-common': 4.24.0 + '@algolia/logger-console': 4.24.0 + '@algolia/recommend': 4.24.0 + '@algolia/requester-browser-xhr': 4.24.0 + '@algolia/requester-common': 4.24.0 + '@algolia/requester-node-http': 4.24.0 + '@algolia/transporter': 4.24.0 ansi-align@3.0.1: dependencies: @@ -13457,7 +9240,7 @@ snapshots: babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.92.1): dependencies: - "@babel/core": 7.24.7 + '@babel/core': 7.24.7 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.92.1 @@ -13468,25 +9251,25 @@ snapshots: babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): dependencies: - "@babel/compat-data": 7.24.7 - "@babel/core": 7.24.7 - "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.7) + '@babel/compat-data': 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) semver: 6.3.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): dependencies: - "@babel/core": 7.24.7 - "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) core-js-compat: 3.37.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): dependencies: - "@babel/core": 7.24.7 - "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.7) + '@babel/core': 7.24.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) transitivePeerDependencies: - supports-color @@ -13580,7 +9363,7 @@ snapshots: cacheable-request@10.2.14: dependencies: - "@types/http-cache-semantics": 4.0.4 + '@types/http-cache-semantics': 4.0.4 get-stream: 6.0.1 http-cache-semantics: 4.1.1 keyv: 4.5.4 @@ -13690,7 +9473,7 @@ snapshots: dependencies: string-width: 4.2.3 optionalDependencies: - "@colors/colors": 1.5.0 + '@colors/colors': 1.5.0 client-only@0.0.1: {} @@ -13706,8 +9489,8 @@ snapshots: codemirror-graphql@2.0.12(@codemirror/language@6.10.2)(codemirror@5.65.16)(graphql@16.9.0): dependencies: - "@codemirror/language": 6.10.2 - "@types/codemirror": 0.0.90 + '@codemirror/language': 6.10.2 + '@types/codemirror': 0.0.90 codemirror: 5.65.16 graphql: 16.9.0 graphql-language-service: 5.2.1(graphql@16.9.0) @@ -13845,7 +9628,7 @@ snapshots: cosmiconfig@6.0.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -13853,7 +9636,7 @@ snapshots: cosmiconfig@7.1.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -13899,7 +9682,7 @@ snapshots: css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.92.1): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 cssnano: 6.1.2(postcss@8.4.39) jest-worker: 29.7.0 postcss: 8.4.39 @@ -14111,7 +9894,7 @@ snapshots: dns-packet@5.6.1: dependencies: - "@leichtgewicht/ip-codec": 2.0.5 + '@leichtgewicht/ip-codec': 2.0.5 doctrine@3.0.0: dependencies: @@ -14119,7 +9902,7 @@ snapshots: docusaurus-lunr-search@3.4.0(@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) autocomplete.js: 0.37.1 clsx: 1.2.1 gauge: 3.0.2 @@ -14145,7 +9928,7 @@ snapshots: docusaurus-plugin-sass@0.2.5(@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(sass@1.77.6)(webpack@5.92.1): dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) sass: 1.77.6 sass-loader: 10.5.2(sass@1.77.6)(webpack@5.92.1) transitivePeerDependencies: @@ -14155,13 +9938,13 @@ snapshots: docusaurus-plugin-sentry@2.0.0(@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) docusaurus-tailwindcss@0.1.0(@docusaurus/core@3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)): dependencies: - "@docusaurus/core": 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/core': 3.4.0(@docusaurus/types@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) autoprefixer: 10.3.4(postcss@8.3.6) postcss: 8.3.6 tailwindcss: 2.2.15(autoprefixer@10.3.4(postcss@8.3.6))(postcss@8.3.6) @@ -14170,7 +9953,7 @@ snapshots: docusaurus-theme-frontmatter@1.3.0(@docusaurus/plugin-content-docs@3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)): optionalDependencies: - "@docusaurus/plugin-content-docs": 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@docusaurus/plugin-content-docs': 3.4.0(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) dom-converter@0.2.0: dependencies: @@ -14290,14 +10073,14 @@ snapshots: eslint@8.57.0: dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@eslint-community/regexpp": 4.11.0 - "@eslint/eslintrc": 2.1.4 - "@eslint/js": 8.57.0 - "@humanwhocodes/config-array": 0.11.14 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 - "@ungap/structured-clone": 1.2.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.11.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -14353,11 +10136,11 @@ snapshots: estree-util-attach-comments@3.0.0: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-util-build-jsx@3.0.1: dependencies: - "@types/estree-jsx": 1.0.5 + '@types/estree-jsx': 1.0.5 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 estree-walker: 3.0.3 @@ -14366,22 +10149,22 @@ snapshots: estree-util-to-js@2.0.0: dependencies: - "@types/estree-jsx": 1.0.5 + '@types/estree-jsx': 1.0.5 astring: 1.8.6 source-map: 0.7.4 estree-util-value-to-estree@3.1.2: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-util-visit@2.0.0: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/unist": 3.0.2 + '@types/estree-jsx': 1.0.5 + '@types/unist': 3.0.2 estree-walker@3.0.3: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 esutils@2.0.3: {} @@ -14391,7 +10174,7 @@ snapshots: eval@0.1.8: dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 require-like: 0.1.2 eventemitter3@4.0.7: {} @@ -14456,8 +10239,8 @@ snapshots: fast-glob@3.3.2: dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.7 @@ -14554,8 +10337,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.5.3)(webpack@5.92.1): dependencies: - "@babel/code-frame": 7.24.7 - "@types/json-schema": 7.0.15 + '@babel/code-frame': 7.24.7 + '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -14582,7 +10365,7 @@ snapshots: framer-motion@6.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@motionone/dom": 10.12.0 + '@motionone/dom': 10.12.0 framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 @@ -14591,7 +10374,7 @@ snapshots: style-value-types: 5.0.0 tslib: 2.6.3 optionalDependencies: - "@emotion/is-prop-valid": 0.8.8 + '@emotion/is-prop-valid': 0.8.8 framesync@6.0.1: dependencies: @@ -14663,7 +10446,7 @@ snapshots: gleap@13.7.9: dependencies: - "@floating-ui/dom": 1.6.7 + '@floating-ui/dom': 1.6.7 pick-dom-element: 0.2.3 unique-selector: 0.5.0 @@ -14738,8 +10521,8 @@ snapshots: got@12.6.1: dependencies: - "@sindresorhus/is": 5.6.0 - "@szmarczak/http-timer": 5.0.1 + '@sindresorhus/is': 5.6.0 + '@szmarczak/http-timer': 5.0.1 cacheable-lookup: 7.0.0 cacheable-request: 10.2.14 decompress-response: 6.0.0 @@ -14758,18 +10541,18 @@ snapshots: graphiql@3.3.2(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@graphiql/react": 0.22.4(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - "@graphiql/toolkit": 0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0) + '@graphiql/react': 0.22.4(@codemirror/language@6.10.2)(@types/node@20.14.10)(@types/react@18.3.3)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@graphiql/toolkit': 0.9.1(@types/node@20.14.10)(graphql-ws@5.16.0(graphql@16.9.0))(graphql@16.9.0) graphql: 16.9.0 graphql-language-service: 5.2.1(graphql@16.9.0) markdown-it: 14.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - "@codemirror/language" - - "@types/node" - - "@types/react" - - "@types/react-dom" + - '@codemirror/language' + - '@types/node' + - '@types/react' + - '@types/react-dom' - graphql-ws graphql-language-service@5.2.1(graphql@16.9.0): @@ -14824,7 +10607,7 @@ snapshots: hast-util-from-parse5@6.0.1: dependencies: - "@types/parse5": 5.0.3 + '@types/parse5': 5.0.3 hastscript: 6.0.0 property-information: 5.6.0 vfile: 4.2.1 @@ -14833,8 +10616,8 @@ snapshots: hast-util-from-parse5@8.0.1: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.5.0 @@ -14850,13 +10633,13 @@ snapshots: hast-util-parse-selector@4.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw@9.0.4: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 - "@ungap/structured-clone": 1.2.0 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + '@ungap/structured-clone': 1.2.0 hast-util-from-parse5: 8.0.1 hast-util-to-parse5: 8.0.0 html-void-elements: 3.0.0 @@ -14887,9 +10670,9 @@ snapshots: hast-util-to-estree@3.1.0: dependencies: - "@types/estree": 1.0.5 - "@types/estree-jsx": 1.0.5 - "@types/hast": 3.0.4 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-attach-comments: 3.0.0 @@ -14908,9 +10691,9 @@ snapshots: hast-util-to-jsx-runtime@2.3.0: dependencies: - "@types/estree": 1.0.5 - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 + '@types/estree': 1.0.5 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 @@ -14928,7 +10711,7 @@ snapshots: hast-util-to-parse5@8.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 property-information: 6.5.0 @@ -14948,11 +10731,11 @@ snapshots: hast-util-whitespace@3.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hastscript@6.0.0: dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 comma-separated-tokens: 1.0.8 hast-util-parse-selector: 2.2.5 property-information: 5.6.0 @@ -14960,7 +10743,7 @@ snapshots: hastscript@8.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 4.0.0 property-information: 6.5.0 @@ -14974,7 +10757,7 @@ snapshots: history@4.10.1: dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.3 @@ -15031,7 +10814,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.92.1): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -15074,15 +10857,15 @@ snapshots: http-parser-js@0.5.8: {} - http-proxy-middleware@2.0.6(@types/express@4.17.21): + http-proxy-middleware@2.0.7(@types/express@4.17.21): dependencies: - "@types/http-proxy": 1.17.14 + '@types/http-proxy': 1.17.14 http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 optionalDependencies: - "@types/express": 4.17.21 + '@types/express': 4.17.21 transitivePeerDependencies: - debug @@ -15242,7 +11025,7 @@ snapshots: is-reference@3.0.2: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 is-regexp@1.0.0: {} @@ -15268,19 +11051,19 @@ snapshots: its-fine@1.2.5(react@18.3.1): dependencies: - "@types/react-reconciler": 0.28.8 + '@types/react-reconciler': 0.28.8 react: 18.3.1 jackspeak@3.4.1: dependencies: - "@isaacs/cliui": 8.0.2 + '@isaacs/cliui': 8.0.2 optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + '@pkgjs/parseargs': 0.11.0 jest-util@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.14.10 + '@jest/types': 29.6.3 + '@types/node': 20.14.10 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -15288,13 +11071,13 @@ snapshots: jest-worker@27.5.1: dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -15303,11 +11086,11 @@ snapshots: joi@17.13.3: dependencies: - "@hapi/hoek": 9.3.0 - "@hapi/topo": 5.1.0 - "@sideway/address": 4.1.5 - "@sideway/formula": 3.0.1 - "@sideway/pinpoint": 2.0.0 + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 jotai-location@0.5.5(jotai@2.8.4(@types/react@18.3.3)(react@18.3.1)): dependencies: @@ -15315,7 +11098,7 @@ snapshots: jotai@2.8.4(@types/react@18.3.3)(react@18.3.1): optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react: 18.3.1 js-tokens@4.0.0: {} @@ -15391,17 +11174,17 @@ snapshots: lit-element@4.0.6: dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 - "@lit/reactive-element": 2.0.4 + '@lit-labs/ssr-dom-shim': 1.2.0 + '@lit/reactive-element': 2.0.4 lit-html: 3.1.4 lit-html@3.1.4: dependencies: - "@types/trusted-types": 2.0.7 + '@types/trusted-types': 2.0.7 lit@3.1.4: dependencies: - "@lit/reactive-element": 2.0.4 + '@lit/reactive-element': 2.0.4 lit-element: 4.0.6 lit-html: 3.1.4 @@ -15479,8 +11262,8 @@ snapshots: mdast-util-directive@3.0.0: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.2 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 @@ -15492,15 +11275,15 @@ snapshots: mdast-util-find-and-replace@3.0.1: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 mdast-util-from-markdown@2.0.1: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.2 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 decode-named-character-reference: 1.0.2 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -15516,7 +11299,7 @@ snapshots: mdast-util-frontmatter@2.0.1: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 escape-string-regexp: 5.0.0 mdast-util-from-markdown: 2.0.1 @@ -15527,7 +11310,7 @@ snapshots: mdast-util-gfm-autolink-literal@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 ccount: 2.0.1 devlop: 1.1.0 mdast-util-find-and-replace: 3.0.1 @@ -15535,7 +11318,7 @@ snapshots: mdast-util-gfm-footnote@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 @@ -15545,7 +11328,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: @@ -15553,7 +11336,7 @@ snapshots: mdast-util-gfm-table@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 markdown-table: 3.0.3 mdast-util-from-markdown: 2.0.1 @@ -15563,7 +11346,7 @@ snapshots: mdast-util-gfm-task-list-item@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 @@ -15584,9 +11367,9 @@ snapshots: mdast-util-mdx-expression@2.0.0: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 @@ -15595,10 +11378,10 @@ snapshots: mdast-util-mdx-jsx@3.1.2: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 - "@types/unist": 3.0.2 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 ccount: 2.0.1 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 @@ -15623,9 +11406,9 @@ snapshots: mdast-util-mdxjs-esm@2.0.1: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.1 mdast-util-to-markdown: 2.1.0 @@ -15634,14 +11417,14 @@ snapshots: mdast-util-phrasing@4.1.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 unist-util-is: 6.0.0 mdast-util-to-hast@13.2.0: dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 - "@ungap/structured-clone": 1.2.0 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.0 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 @@ -15651,8 +11434,8 @@ snapshots: mdast-util-to-markdown@2.1.0: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.2 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 @@ -15662,7 +11445,7 @@ snapshots: mdast-util-to-string@4.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdn-data@2.0.28: {} @@ -15684,7 +11467,7 @@ snapshots: meros@1.3.0(@types/node@20.14.10): optionalDependencies: - "@types/node": 20.14.10 + '@types/node': 20.14.10 methods@1.1.2: {} @@ -15784,7 +11567,7 @@ snapshots: micromark-extension-mdx-expression@3.0.0: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 devlop: 1.1.0 micromark-factory-mdx-expression: 2.0.1 micromark-factory-space: 2.0.0 @@ -15795,8 +11578,8 @@ snapshots: micromark-extension-mdx-jsx@3.0.0: dependencies: - "@types/acorn": 4.0.6 - "@types/estree": 1.0.5 + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 micromark-factory-mdx-expression: 2.0.1 @@ -15812,7 +11595,7 @@ snapshots: micromark-extension-mdxjs-esm@3.0.0: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 micromark-util-character: 2.1.0 @@ -15848,7 +11631,7 @@ snapshots: micromark-factory-mdx-expression@2.0.1: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 devlop: 1.1.0 micromark-util-character: 2.1.0 micromark-util-events-to-acorn: 2.0.2 @@ -15921,9 +11704,9 @@ snapshots: micromark-util-events-to-acorn@2.0.2: dependencies: - "@types/acorn": 4.0.6 - "@types/estree": 1.0.5 - "@types/unist": 3.0.2 + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 + '@types/unist': 3.0.2 devlop: 1.1.0 estree-util-visit: 2.0.0 micromark-util-symbol: 2.0.0 @@ -15963,7 +11746,7 @@ snapshots: micromark@4.0.0: dependencies: - "@types/debug": 4.1.12 + '@types/debug': 4.1.12 debug: 4.3.5 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -16070,7 +11853,7 @@ snapshots: node-emoji@2.1.3: dependencies: - "@sindresorhus/is": 4.6.0 + '@sindresorhus/is': 4.6.0 char-regex: 1.0.2 emojilib: 2.4.0 skin-tone: 2.0.0 @@ -16146,9 +11929,9 @@ snapshots: optimism@0.18.0: dependencies: - "@wry/caches": 1.0.1 - "@wry/context": 0.7.4 - "@wry/trie": 0.4.3 + '@wry/caches': 1.0.1 + '@wry/context': 0.7.4 + '@wry/trie': 0.4.3 tslib: 2.6.3 optionator@0.9.4: @@ -16192,7 +11975,7 @@ snapshots: p-retry@4.6.2: dependencies: - "@types/retry": 0.12.0 + '@types/retry': 0.12.0 retry: 0.13.1 p-try@2.2.0: {} @@ -16217,7 +12000,7 @@ snapshots: parse-entities@4.0.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -16228,7 +12011,7 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.24.7 + '@babel/code-frame': 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -16284,7 +12067,7 @@ snapshots: periscopic@3.1.0: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-walker: 3.0.3 is-reference: 3.0.2 @@ -16595,7 +12378,7 @@ snapshots: prism-react-renderer@2.3.1(react@18.3.1): dependencies: - "@types/prismjs": 1.26.4 + '@types/prismjs': 1.26.4 clsx: 2.1.1 react: 18.3.1 @@ -16686,7 +12469,7 @@ snapshots: react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.5.3)(webpack@5.92.1): dependencies: - "@babel/code-frame": 7.24.7 + '@babel/code-frame': 7.24.7 address: 1.2.2 browserslist: 4.23.1 chalk: 4.1.2 @@ -16730,7 +12513,7 @@ snapshots: react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 invariant: 2.2.4 prop-types: 15.8.1 react: 18.3.1 @@ -16753,7 +12536,7 @@ snapshots: react-konva@18.2.10(konva@9.3.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@types/react-reconciler": 0.28.8 + '@types/react-reconciler': 0.28.8 its-fine: 1.2.5(react@18.3.1) konva: 9.3.13 react: 18.3.1 @@ -16768,8 +12551,8 @@ snapshots: react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.92.1): dependencies: - "@babel/runtime": 7.24.7 - react-loadable: "@docusaurus/react-loadable@6.0.0(react@18.3.1)" + '@babel/runtime': 7.24.7 + react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' webpack: 5.92.1 react-reconciler@0.29.2(react@18.3.1): @@ -16784,7 +12567,7 @@ snapshots: react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.3 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react-remove-scroll@2.5.7(@types/react@18.3.3)(react@18.3.1): dependencies: @@ -16795,17 +12578,17 @@ snapshots: use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1): dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 react: 18.3.1 react-router: 5.3.4(react@18.3.1) react-router-dom@5.3.4(react@18.3.1): dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -16816,7 +12599,7 @@ snapshots: react-router@5.3.4(react@18.3.1): dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -16834,7 +12617,7 @@ snapshots: react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react@18.3.1: dependencies: @@ -16889,11 +12672,11 @@ snapshots: regenerator-transform@0.15.2: dependencies: - "@babel/runtime": 7.24.7 + '@babel/runtime': 7.24.7 regexpu-core@5.3.2: dependencies: - "@babel/regjsgen": 0.8.0 + '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 @@ -16902,7 +12685,7 @@ snapshots: registry-auth-token@5.0.2: dependencies: - "@pnpm/npm-conf": 2.2.2 + '@pnpm/npm-conf': 2.2.2 registry-url@6.0.1: dependencies: @@ -16914,7 +12697,7 @@ snapshots: rehackt@0.1.0(@types/react@18.3.3)(react@18.3.1): optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 react: 18.3.1 rehype-parse@7.0.1: @@ -16924,7 +12707,7 @@ snapshots: rehype-raw@7.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw: 9.0.4 vfile: 6.0.1 @@ -16932,7 +12715,7 @@ snapshots: remark-directive@3.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-directive: 3.0.0 micromark-extension-directive: 3.0.0 unified: 11.0.5 @@ -16941,7 +12724,7 @@ snapshots: remark-emoji@4.0.1: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 emoticon: 4.0.1 mdast-util-find-and-replace: 3.0.1 node-emoji: 2.1.3 @@ -16949,7 +12732,7 @@ snapshots: remark-frontmatter@5.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-frontmatter: 2.0.1 micromark-extension-frontmatter: 2.0.0 unified: 11.0.5 @@ -16958,7 +12741,7 @@ snapshots: remark-gfm@4.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-gfm: 3.0.0 micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 @@ -16976,7 +12759,7 @@ snapshots: remark-parse@11.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.1 micromark-util-types: 2.0.0 unified: 11.0.5 @@ -16985,15 +12768,15 @@ snapshots: remark-rehype@11.1.0: dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 mdast-util-to-hast: 13.2.0 unified: 11.0.5 vfile: 6.0.1 remark-stringify@11.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-to-markdown: 2.1.0 unified: 11.0.5 @@ -17094,19 +12877,19 @@ snapshots: schema-utils@2.7.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@3.3.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@4.2.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1(ajv@8.16.0) ajv-keywords: 5.1.0(ajv@8.16.0) @@ -17122,7 +12905,7 @@ snapshots: selfsigned@2.4.1: dependencies: - "@types/node-forge": 1.3.11 + '@types/node-forge': 1.3.11 node-forge: 1.3.1 semver-diff@4.0.0: @@ -17242,7 +13025,7 @@ snapshots: sirv@2.0.4: dependencies: - "@polka/url": 1.0.0-next.25 + '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 @@ -17250,8 +13033,8 @@ snapshots: sitemap@7.1.2: dependencies: - "@types/node": 17.0.45 - "@types/sax": 1.2.7 + '@types/node': 17.0.45 + '@types/sax': 1.2.7 arg: 5.0.2 sax: 1.4.1 @@ -17394,7 +13177,7 @@ snapshots: sucrase@3.35.0: dependencies: - "@jridgewell/gen-mapping": 0.3.5 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 glob: 10.4.3 lines-and-columns: 1.2.4 @@ -17420,7 +13203,7 @@ snapshots: svgo@3.3.2: dependencies: - "@trysound/sax": 0.2.0 + '@trysound/sax': 0.2.0 commander: 7.2.0 css-select: 5.1.0 css-tree: 2.3.1 @@ -17471,7 +13254,7 @@ snapshots: tailwindcss@3.4.4: dependencies: - "@alloc/quick-lru": 5.2.0 + '@alloc/quick-lru': 5.2.0 arg: 5.0.2 chokidar: 3.6.0 didyoumean: 1.2.2 @@ -17502,7 +13285,7 @@ snapshots: terser-webpack-plugin@5.3.10(webpack@5.92.1): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -17511,7 +13294,7 @@ snapshots: terser@5.31.1: dependencies: - "@jridgewell/source-map": 0.3.6 + '@jridgewell/source-map': 0.3.6 acorn: 8.12.1 commander: 2.20.3 source-map-support: 0.5.21 @@ -17616,7 +13399,7 @@ snapshots: unified@11.0.5: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 @@ -17626,7 +13409,7 @@ snapshots: unified@9.2.2: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -17648,48 +13431,48 @@ snapshots: unist-util-is@6.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-position-from-estree@2.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-position@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-remove-position@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-visit: 5.0.0 unist-util-stringify-position@2.0.3: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-stringify-position@4.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-visit-parents@3.1.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents@6.0.1: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit@2.0.3: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 unist-util-visit@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 @@ -17738,7 +13521,7 @@ snapshots: react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 use-font-face-observer@1.2.2(react@18.3.1): dependencies: @@ -17756,7 +13539,7 @@ snapshots: react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.3.3 + '@types/react': 18.3.3 util-deprecate@1.0.2: {} @@ -17776,29 +13559,29 @@ snapshots: vfile-location@5.0.2: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 vfile: 6.0.1 vfile-message@2.0.4: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 vfile-message@4.0.2: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile@4.2.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 vfile@6.0.1: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 @@ -17821,7 +13604,7 @@ snapshots: webpack-bundle-analyzer@4.10.2: dependencies: - "@discoveryjs/json-ext": 0.5.7 + '@discoveryjs/json-ext': 0.5.7 acorn: 8.12.1 acorn-walk: 8.3.3 commander: 7.2.0 @@ -17848,13 +13631,13 @@ snapshots: webpack-dev-server@4.15.2(webpack@5.92.1): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.21 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.7 - "@types/sockjs": 0.3.36 - "@types/ws": 8.5.10 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.7 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -17865,7 +13648,7 @@ snapshots: express: 4.19.2 graceful-fs: 4.2.11 html-entities: 2.5.2 - http-proxy-middleware: 2.0.6(@types/express@4.17.21) + http-proxy-middleware: 2.0.7(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.8.0 open: 8.4.2 @@ -17896,11 +13679,11 @@ snapshots: webpack@5.92.1: dependencies: - "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.12.1 acorn-import-attributes: 1.9.5(acorn@8.12.1) browserslist: 4.23.1 @@ -17921,7 +13704,7 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - uglify-js From 1cbbe578633439b1570513212336db1b00dde744 Mon Sep 17 00:00:00 2001 From: michael-0acf4 Date: Tue, 5 Nov 2024 15:23:16 +0300 Subject: [PATCH 3/9] fix: meta dev does not exit properly upon `SIGTERM` (#895) #### Migration notes None - [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --- .ghjk/lock.json | 492 ++++++------------ Cargo.lock | 1 + Cargo.toml | 1 + src/meta-cli/Cargo.toml | 1 + src/meta-cli/src/cli/deploy.rs | 10 +- src/meta-cli/src/cli/typegate.rs | 33 +- .../src/deploy/actors/task_manager.rs | 2 +- .../actors/task_manager/signal_handler.rs | 59 ++- src/meta-cli/src/deploy/actors/typegate.rs | 4 +- tests/e2e/cli/dev_test.ts | 271 +++++----- tests/utils/process.ts | 60 ++- 11 files changed, 455 insertions(+), 479 deletions(-) diff --git a/.ghjk/lock.json b/.ghjk/lock.json index 841c982e83..42b6632380 100644 --- a/.ghjk/lock.json +++ b/.ghjk/lock.json @@ -5,96 +5,11 @@ "ports": { "version": "0", "configResolutions": { - "bciqf3eso3sdsxu4og5w6igw3mphr3ipbntahdnhe2kwlgci6osntcfq": { - "version": "v1.45.2", - "buildDepConfigs": {}, - "portRef": "deno_ghrel@0.1.0", - "specifiedVersion": true - }, - "bciqfcvnsjinhk2s3seiixi2brdmlyt25m5cpllbjivcfbvrhkzr57bq": { - "version": "v24.1", - "buildDepConfigs": {}, - "portRef": "protoc_ghrel@0.1.0", - "specifiedVersion": true - }, - "bciqmpujkkyxmzdz7sxpvi2pmajzfmg6gofplyqn43av2styxu2ng7sy": { - "version": "8.9.0", - "buildDepConfigs": {}, - "portRef": "curl_aa@0.1.0", - "specifiedVersion": false - }, - "bciqngfjdds2gmnwhriiif3fjgqw2hhpm3ssqxlnq4kiwyk53uesmzgy": { - "version": "3.30.2", - "buildDepConfigs": { - "curl_aa": { - "version": "8.9.0", - "buildDepConfigs": {}, - "portRef": "curl_aa@0.1.0", - "specifiedVersion": false - }, - "git_aa": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - }, - "asdf_plugin_git": { - "version": "d631481e96", - "buildDepConfigs": { - "git_aa": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "asdf_plugin_git@0.1.0", - "pluginRepo": "https://github.com/asdf-community/asdf-cmake", - "specifiedVersion": false - } - }, - "resolutionDepConfigs": { - "asdf_plugin_git": { - "pluginRepo": "https://github.com/asdf-community/asdf-cmake", - "portRef": "asdf_plugin_git@0.1.0" - } - }, - "portRef": "asdf@0.1.0", - "pluginRepo": "https://github.com/asdf-community/asdf-cmake", - "installType": "version", - "specifiedVersion": false - }, - "bciqay4m4kmzfduj5t2clgejxgpe5zwper6lyyaxt7rhbjalaqd32nhq": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - }, - "bciqj77qfidghicv6joxixetnt5j3pdpo4j42exeghzsotetd5yhmpui": { - "version": "d631481e96", - "buildDepConfigs": { - "git_aa": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "asdf_plugin_git@0.1.0", - "pluginRepo": "https://github.com/asdf-community/asdf-cmake", - "specifiedVersion": false - }, - "bciqdryp66ydidszpw3nbjwf7d5lnyvw7xujujby4bnx5mdgdjabxcvi": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": true - }, "bciqkv7foyoio4wpti4yf2qrw5nphkgk2din6ba7mjv2w7hmgrv725ja": { "version": "v2.4.0", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false @@ -105,13 +20,13 @@ "specifiedVersion": true }, "bciqj4p5hoqweghbuvz52rupja7sqze34z63dd62nz632c5zxikv6ezy": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "bciqjlw6cxddajjmznoemlmnu7mgbbm7a3hfmnd2x5oivwajmiqui5ey": { - "version": "v0.2.65", + "version": "v0.2.69", "buildDepConfigs": {}, "portRef": "act_ghrel@0.1.0", "specifiedVersion": false @@ -120,19 +35,19 @@ "version": "0.5.0", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -153,19 +68,19 @@ "specifiedVersion": false }, "bciqeal5okt5zj763vhgsmf3afr5thrkqaitv6pb3wwegcwyb74gdyjq": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, - "bciqdm4ezstna7wryjatl75thl72622466u4ht2y25dkhvgu76kcnemi": { - "version": "1.79.0", + "bciqdxxrdxv7gdhguk43f7tqbzpamv3evrwffw2c6wujly5ijvanb24q": { + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -179,11 +94,17 @@ "profile": "minimal", "specifiedVersion": true }, + "bciqay4m4kmzfduj5t2clgejxgpe5zwper6lyyaxt7rhbjalaqd32nhq": { + "version": "2.34.1", + "buildDepConfigs": {}, + "portRef": "git_aa@0.1.0", + "specifiedVersion": false + }, "bciqewpyjyfnnk4rbd6bbu5who2w6ve7dyt3inal72zg23cs4qnln32q": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -193,22 +114,22 @@ "specifiedVersion": false }, "bciqg6addm4t4fpqgkcpukqvbdrkscd56popl3at6aljs4tfnsfl3iki": { - "version": "0.3.4", + "version": "0.4.0", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -229,22 +150,22 @@ "specifiedVersion": false }, "bciqjt35de5uwbp3qv3idkj7or2pu2gcun5jjkdttfupyuseslmjny5i": { - "version": "2.4.0", + "version": "2.6.1", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -268,23 +189,23 @@ "version": "3.7.1", "buildDepConfigs": { "cpy_bs_ghrel": { - "version": "3.12.2", + "version": "3.12.5", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true } }, @@ -292,28 +213,28 @@ "packageName": "pre-commit", "specifiedVersion": true }, - "bciqfoek3nbk2jfcgfx5323wcco2bmml75tgrsjgxbdhxe5dn3isgjgi": { - "version": "3.12.2", + "bciqcsylkfsdlyzx76glxvivu4r236ivoynoaogmawn7wesftq4lht3a": { + "version": "3.12.5", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true }, "bciqe6fwheayositrdk7rkr2ngdr4wizldakex23tgivss7w6z7g3q3y": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false @@ -328,19 +249,19 @@ "version": "1.33.0", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -364,19 +285,19 @@ "version": "0.2.5", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -396,47 +317,126 @@ "locked": true, "specifiedVersion": true }, - "bciqen7oo7yiny6lbip32ieyt5e2z6gum6ytzdx5krgkoe3zbvwyvdsq": { - "version": "3.8.18", + "bciqfoh6rcv3bhze6nzb3edufogn5usavol623q7hw6lfuq3du3fe3ry": { + "version": "v28.2", + "buildDepConfigs": {}, + "portRef": "protoc_ghrel@0.1.0", + "specifiedVersion": true + }, + "bciqmpujkkyxmzdz7sxpvi2pmajzfmg6gofplyqn43av2styxu2ng7sy": { + "version": "7.81.0", + "buildDepConfigs": {}, + "portRef": "curl_aa@0.1.0", + "specifiedVersion": false + }, + "bciqngfjdds2gmnwhriiif3fjgqw2hhpm3ssqxlnq4kiwyk53uesmzgy": { + "version": "3.31.0-rc3", + "buildDepConfigs": { + "curl_aa": { + "version": "7.81.0", + "buildDepConfigs": {}, + "portRef": "curl_aa@0.1.0", + "specifiedVersion": false + }, + "git_aa": { + "version": "2.34.1", + "buildDepConfigs": {}, + "portRef": "git_aa@0.1.0", + "specifiedVersion": false + }, + "asdf_plugin_git": { + "version": "9959904699", + "buildDepConfigs": { + "git_aa": { + "version": "2.34.1", + "buildDepConfigs": {}, + "portRef": "git_aa@0.1.0", + "specifiedVersion": false + } + }, + "portRef": "asdf_plugin_git@0.1.0", + "pluginRepo": "https://github.com/asdf-community/asdf-cmake", + "specifiedVersion": false + } + }, + "resolutionDepConfigs": { + "asdf_plugin_git": { + "pluginRepo": "https://github.com/asdf-community/asdf-cmake", + "portRef": "asdf_plugin_git@0.1.0" + } + }, + "portRef": "asdf@0.1.0", + "pluginRepo": "https://github.com/asdf-community/asdf-cmake", + "installType": "version", + "specifiedVersion": false + }, + "bciqj77qfidghicv6joxixetnt5j3pdpo4j42exeghzsotetd5yhmpui": { + "version": "9959904699", + "buildDepConfigs": { + "git_aa": { + "version": "2.34.1", + "buildDepConfigs": {}, + "portRef": "git_aa@0.1.0", + "specifiedVersion": false + } + }, + "portRef": "asdf_plugin_git@0.1.0", + "pluginRepo": "https://github.com/asdf-community/asdf-cmake", + "specifiedVersion": false + }, + "bciqnevzirr33l7mxnm5j4ztqpfr3vm3tqpk674kohp2f3mpqv44zzry": { + "version": "2.34.1", + "buildDepConfigs": {}, + "portRef": "git_aa@0.1.0", + "specifiedVersion": true + }, + "bciqh6lifl6dl5jftfpd4qqvb4q4yx4c2jgycqzz5fcg2gsp5zocuedi": { + "version": "v1.46.3", + "buildDepConfigs": {}, + "portRef": "deno_ghrel@0.1.0", + "specifiedVersion": true + }, + "bciqeuydb323bsxomz437z6xv7imxxgiecyhqheaw2nvm2u5cmgdd4vy": { + "version": "3.9.19", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true }, "bciqftkwrm7ms3vsx7nw3euw3wotzed3dlhvycqnk7mhg7gsbhz26khi": { "version": "0.4.7", "buildDepConfigs": { "cpy_bs_ghrel": { - "version": "3.12.2", + "version": "3.12.5", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true } }, @@ -444,27 +444,27 @@ "packageName": "ruff", "specifiedVersion": true }, - "bciqotghtiwpobhzxxovjztcffrnlwxrfkluqe57tdwk2qyit67ayyni": { - "version": "1.7.0", + "bciqjrdkuk366snl5rgzvkskacsphzernzelmhhu3sgkbpst6yptbpnq": { + "version": "1.8.3", "buildDepConfigs": { "cpy_bs_ghrel": { - "version": "3.12.2", + "version": "3.12.5", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true } }, @@ -476,7 +476,7 @@ "version": "v20.8.0", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false @@ -498,7 +498,7 @@ "version": "v20.8.0", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false @@ -516,19 +516,19 @@ "version": "0.116.1", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -552,19 +552,19 @@ "version": "1.208.1", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false }, "rust_rustup": { - "version": "1.79.0", + "version": "1.80.1", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -588,23 +588,23 @@ "version": "0.13.4", "buildDepConfigs": { "cpy_bs_ghrel": { - "version": "3.12.2", + "version": "3.12.5", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false }, "zstd_aa": { - "version": "v1.5.6,", + "version": "v1.4.8,", "buildDepConfigs": {}, "portRef": "zstd_aa@0.1.0", "specifiedVersion": false } }, "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", + "releaseTag": "20240814", "specifiedVersion": true } }, @@ -619,7 +619,7 @@ "version": "v20.8.0", "buildDepConfigs": { "tar_aa": { - "version": "1.35", + "version": "1.34", "buildDepConfigs": {}, "portRef": "tar_aa@0.1.0", "specifiedVersion": false @@ -633,182 +633,11 @@ "packageName": "@bytecodealliance/jco", "specifiedVersion": true }, - "bciqe6sahnduk5kofaohmecai2ip7ipjakg7rn32ezstllzr5nixmhyi": { - "version": "nightly-2024-05-26", - "buildDepConfigs": { - "rustup_rustlang": { - "version": "1.27.1", - "buildDepConfigs": { - "git_aa": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "rustup_rustlang@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "rust_rustup@0.1.0", - "profile": "minimal", - "specifiedVersion": true - }, - "bciqmdyyew3oomtpx6rnfqnnehe4inls4wf26fq6nat6uxd3oqjwlmyi": { - "version": "0.1.47", - "buildDepConfigs": { - "cargo_binstall_ghrel": { - "version": "v1.10.2", - "buildDepConfigs": {}, - "portRef": "cargo_binstall_ghrel@0.1.0", - "specifiedVersion": false - }, - "rust_rustup": { - "version": "1.79.0", - "buildDepConfigs": { - "rustup_rustlang": { - "version": "1.27.1", - "buildDepConfigs": { - "git_aa": { - "version": "2.46.0", - "buildDepConfigs": {}, - "portRef": "git_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "rustup_rustlang@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "rust_rustup@0.1.0", - "profile": "minimal", - "specifiedVersion": true - } - }, - "portRef": "cargobi_cratesio@0.1.0", - "crateName": "cargo-udeps", - "locked": true, - "specifiedVersion": true - }, - "bciqogkh34iffsgpjzg5m2tuyvt5e2phqsbbo6wh6nckxaojckmmasga": { - "version": "v1.46.1", - "buildDepConfigs": {}, - "portRef": "deno_ghrel@0.1.0", - "specifiedVersion": true - }, - "bciqjrdkuk366snl5rgzvkskacsphzernzelmhhu3sgkbpst6yptbpnq": { - "version": "1.8.3", - "buildDepConfigs": { - "cpy_bs_ghrel": { - "version": "3.12.2", - "buildDepConfigs": { - "tar_aa": { - "version": "1.35", - "buildDepConfigs": {}, - "portRef": "tar_aa@0.1.0", - "specifiedVersion": false - }, - "zstd_aa": { - "version": "v1.5.6,", - "buildDepConfigs": {}, - "portRef": "zstd_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240224", - "specifiedVersion": true - } - }, - "portRef": "pipi_pypi@0.1.0", - "packageName": "poetry", - "specifiedVersion": true - }, - "bciqeuydb323bsxomz437z6xv7imxxgiecyhqheaw2nvm2u5cmgdd4vy": { - "version": "3.9.19", - "buildDepConfigs": { - "tar_aa": { - "version": "1.35", - "buildDepConfigs": {}, - "portRef": "tar_aa@0.1.0", - "specifiedVersion": false - }, - "zstd_aa": { - "version": "v1.5.6,", - "buildDepConfigs": {}, - "portRef": "zstd_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240814", - "specifiedVersion": true - }, - "bciqe6tpdv6hffdbc7hql52w3ivpdls47lgpuhsa3hzsryrwx7ty5dgy": { - "version": "3.30.3", - "buildDepConfigs": { - "cpy_bs_ghrel": { - "version": "3.12.5", - "buildDepConfigs": { - "tar_aa": { - "version": "1.35", - "buildDepConfigs": {}, - "portRef": "tar_aa@0.1.0", - "specifiedVersion": false - }, - "zstd_aa": { - "version": "v1.5.6,", - "buildDepConfigs": {}, - "portRef": "zstd_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240814", - "specifiedVersion": true - } - }, - "portRef": "pipi_pypi@0.1.0", - "packageName": "cmake", - "specifiedVersion": false - }, - "bciqcsylkfsdlyzx76glxvivu4r236ivoynoaogmawn7wesftq4lht3a": { - "version": "3.12.5", - "buildDepConfigs": { - "tar_aa": { - "version": "1.35", - "buildDepConfigs": {}, - "portRef": "tar_aa@0.1.0", - "specifiedVersion": false - }, - "zstd_aa": { - "version": "v1.5.6,", - "buildDepConfigs": {}, - "portRef": "zstd_aa@0.1.0", - "specifiedVersion": false - } - }, - "portRef": "cpy_bs_ghrel@0.1.0", - "releaseTag": "20240814", - "specifiedVersion": true - }, - "bciqfoh6rcv3bhze6nzb3edufogn5usavol623q7hw6lfuq3du3fe3ry": { - "version": "v28.2", - "buildDepConfigs": {}, - "portRef": "protoc_ghrel@0.1.0", - "specifiedVersion": true - }, - "bciqh6lifl6dl5jftfpd4qqvb4q4yx4c2jgycqzz5fcg2gsp5zocuedi": { - "version": "v1.46.3", - "buildDepConfigs": {}, - "portRef": "deno_ghrel@0.1.0", - "specifiedVersion": true - }, - "bciqc4tel4mvul3drcx6kljgvy5avxnglgkhzdeo2ri5olbpcwukx4jy": { - "version": "3.6.0", + "bciqad6aisdl5shqpoyngeaoclm3akepy6wf7vtbmdhyduegz6yxbjdi": { + "version": "3.5.1", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false @@ -820,7 +649,7 @@ "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -839,14 +668,14 @@ "crateName": "protobuf-codegen", "specifiedVersion": true }, - "bciqdxxrdxv7gdhguk43f7tqbzpamv3evrwffw2c6wujly5ijvanb24q": { - "version": "1.80.1", + "bciqe6sahnduk5kofaohmecai2ip7ipjakg7rn32ezstllzr5nixmhyi": { + "version": "nightly-2024-05-26", "buildDepConfigs": { "rustup_rustlang": { "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -860,11 +689,11 @@ "profile": "minimal", "specifiedVersion": true }, - "bciqad6aisdl5shqpoyngeaoclm3akepy6wf7vtbmdhyduegz6yxbjdi": { - "version": "3.5.1", + "bciqmdyyew3oomtpx6rnfqnnehe4inls4wf26fq6nat6uxd3oqjwlmyi": { + "version": "0.1.47", "buildDepConfigs": { "cargo_binstall_ghrel": { - "version": "v1.10.2", + "version": "v1.10.9", "buildDepConfigs": {}, "portRef": "cargo_binstall_ghrel@0.1.0", "specifiedVersion": false @@ -876,7 +705,7 @@ "version": "1.27.1", "buildDepConfigs": { "git_aa": { - "version": "2.46.0", + "version": "2.34.1", "buildDepConfigs": {}, "portRef": "git_aa@0.1.0", "specifiedVersion": false @@ -892,7 +721,8 @@ } }, "portRef": "cargobi_cratesio@0.1.0", - "crateName": "protobuf-codegen", + "crateName": "cargo-udeps", + "locked": true, "specifiedVersion": true } } diff --git a/Cargo.lock b/Cargo.lock index d4158c01f8..193fe71cb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6942,6 +6942,7 @@ dependencies = [ "serde_json", "serde_yaml", "shadow-rs", + "signal-hook", "strip-ansi-escapes", "tabled", "tar", diff --git a/Cargo.toml b/Cargo.toml index 03378c4301..4deca359b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,6 +87,7 @@ paste = "1.0.15" # os ctrlc = "3.4.5" +signal-hook = "0.3.17" rand = "0.8.5" # FIXME: go back to published crate when deno move to 1.37 process-wrap = { git = "https://github.com/metatypedev/process-wrap", branch = "fix/decrement-tokio-version" } diff --git a/src/meta-cli/Cargo.toml b/src/meta-cli/Cargo.toml index d74d19c4b9..bdfda06f18 100644 --- a/src/meta-cli/Cargo.toml +++ b/src/meta-cli/Cargo.toml @@ -113,6 +113,7 @@ color-eyre.workspace = true # os num_cpus.workspace = true ctrlc.workspace = true +signal-hook.workspace = true rand.workspace = true process-wrap = { workspace = true, features = ["tokio1"] } nix = { workspace = true, features = ["signal"] } diff --git a/src/meta-cli/src/cli/deploy.rs b/src/meta-cli/src/cli/deploy.rs index fffa187e3c..5fa64d203b 100644 --- a/src/meta-cli/src/cli/deploy.rs +++ b/src/meta-cli/src/cli/deploy.rs @@ -309,14 +309,10 @@ mod watch_mode { None }; - #[cfg(feature = "typegate")] - let port_override = typegate_addr.map(|(_, port)| port); - #[cfg(not(feature = "typegate"))] - let port_override = None; - let deploy_node = deploy.node.clone(); - let deploy_node = if let Some(port) = port_override { - deploy_node.override_port(port) + #[cfg(feature = "typegate")] + let deploy_node = if let Some((_, port)) = typegate_addr.as_ref() { + deploy_node.override_port(*port) } else { deploy_node }; diff --git a/src/meta-cli/src/cli/typegate.rs b/src/meta-cli/src/cli/typegate.rs index b7d759208d..fb69248737 100644 --- a/src/meta-cli/src/cli/typegate.rs +++ b/src/meta-cli/src/cli/typegate.rs @@ -43,8 +43,7 @@ pub fn command(_cmd: Typegate, _gen_args: ConfigArgs) -> Result<()> { } #[cfg(feature = "typegate")] -fn run_typegate(cmd: Typegate) -> Result<()> { - let runtime = typegate_engine::runtime(); +async fn run_typegate_async(cmd: Typegate) -> Result<()> { const BASE_URL: &str = "https://raw.githubusercontent.com/metatypedev/metatype/"; let main_url = cmd.main_url.unwrap_or_else(|| { BASE_URL.to_owned() + crate::build::COMMIT_HASH + "/src/typegate/src/main.ts" @@ -53,15 +52,25 @@ fn run_typegate(cmd: Typegate) -> Result<()> { .import_map_url .unwrap_or_else(|| BASE_URL.to_owned() + crate::build::COMMIT_HASH + "/import_map.json"); - runtime - .block_on(typegate_engine::launch_typegate_deno( - // typegate_core::resolve_url_or_path( - // "", - // &std::env::current_dir()?.join("./typegate/src/main.ts"), - // )?, - typegate_engine::resolve_url(&main_url)?, - Some(import_map_url), - )) - .map_err(anyhow_to_eyre!())?; + typegate_engine::launch_typegate_deno( + // typegate_core::resolve_url_or_path( + // "", + // &std::env::current_dir()?.join("./typegate/src/main.ts"), + // )?, + typegate_engine::resolve_url(&main_url)?, + Some(import_map_url), + ) + .await + .map_err(anyhow_to_eyre!()) +} + +#[cfg(feature = "typegate")] +fn run_typegate(cmd: Typegate) -> Result<()> { + use crate::deploy::actors::task_manager::signal_handler::listen_signals_in_the_background; + + let runtime = typegate_engine::runtime(); + listen_signals_in_the_background(); + runtime.block_on(async { run_typegate_async(cmd).await })?; + Ok(()) } diff --git a/src/meta-cli/src/deploy/actors/task_manager.rs b/src/meta-cli/src/deploy/actors/task_manager.rs index 8324aa31f8..43334b3ac3 100644 --- a/src/meta-cli/src/deploy/actors/task_manager.rs +++ b/src/meta-cli/src/deploy/actors/task_manager.rs @@ -17,7 +17,7 @@ use std::time::Duration; pub mod report; pub use report::Report; -mod signal_handler; +pub mod signal_handler; pub mod message { use super::*; diff --git a/src/meta-cli/src/deploy/actors/task_manager/signal_handler.rs b/src/meta-cli/src/deploy/actors/task_manager/signal_handler.rs index 514f10bcfd..71ce69fb8e 100644 --- a/src/meta-cli/src/deploy/actors/task_manager/signal_handler.rs +++ b/src/meta-cli/src/deploy/actors/task_manager/signal_handler.rs @@ -3,22 +3,30 @@ use crate::interlude::*; use actix::WeakRecipient; +use nix::libc::SIGHUP; use once_cell::sync::Lazy; -use std::sync::Mutex; +use std::sync::{atomic::AtomicBool, Mutex}; -struct CtrlCHandlerData { +use signal_hook::{ + consts::{SIGTERM, TERM_SIGNALS}, + flag, + iterator::Signals, +}; + +struct CtrlCAndSignalHandlerData { stop_recipient: WeakRecipient, } -static CTRLC_HANDLER_DATA: Lazy>> = Lazy::new(|| Mutex::new(None)); +static SIGNAL_HANDLER_DATA: Lazy>> = + Lazy::new(|| Mutex::new(None)); pub fn set_stop_recipient(recipient: WeakRecipient) { - let mut data = CTRLC_HANDLER_DATA.lock().unwrap(); + let mut data = SIGNAL_HANDLER_DATA.lock().unwrap(); if let Some(data) = data.as_mut() { data.stop_recipient = recipient; } else { debug!("setting ctrlc handler"); - *data = Some(CtrlCHandlerData { + *data = Some(CtrlCAndSignalHandlerData { stop_recipient: recipient, }); let res = ctrlc::set_handler(ctrlc_handler); @@ -26,6 +34,9 @@ pub fn set_stop_recipient(recipient: WeakRecipient) { #[cfg(debug_assertions)] res.unwrap_or_log(); + #[cfg(unix)] + listen_signals_in_the_background(); + #[cfg(not(debug_assertions))] if let Err(e) = res { error!("failed to set ctrlc handler: {}", e); @@ -34,7 +45,16 @@ pub fn set_stop_recipient(recipient: WeakRecipient) { } fn ctrlc_handler() { - let data = CTRLC_HANDLER_DATA.lock().unwrap(); + handle_stop_signal(); +} + +#[cfg(unix)] +fn other_unix_signal_handler() { + handle_stop_signal(); +} + +fn handle_stop_signal() { + let data = SIGNAL_HANDLER_DATA.lock().unwrap(); if let Some(data) = data.as_ref() { if let Some(stop_recipient) = data.stop_recipient.upgrade() { stop_recipient.do_send(super::message::Stop); @@ -42,3 +62,30 @@ fn ctrlc_handler() { } // else?? } + +pub fn listen_signals_in_the_background() { + let mut signals = Signals::new([SIGTERM, SIGHUP]).unwrap(); + + std::thread::spawn(move || { + // Double signal kills + let term_now = Arc::new(AtomicBool::new(false)); + for sig in TERM_SIGNALS { + flag::register_conditional_shutdown(*sig, 1, Arc::clone(&term_now)).unwrap(); + flag::register(*sig, Arc::clone(&term_now)).unwrap(); + } + + for sig in signals.forever() { + match sig { + SIGTERM => { + debug!("SIGTERM: Request gracefull termination"); + other_unix_signal_handler(); + } + SIGHUP => { + debug!("SIGHUP: Death of controlling process"); + other_unix_signal_handler(); + } + _ => unreachable!(), + } + } + }); +} diff --git a/src/meta-cli/src/deploy/actors/typegate.rs b/src/meta-cli/src/deploy/actors/typegate.rs index 2d1c6757f0..b5b01a07e7 100644 --- a/src/meta-cli/src/deploy/actors/typegate.rs +++ b/src/meta-cli/src/deploy/actors/typegate.rs @@ -13,7 +13,7 @@ use std::process::Stdio; use tokio::io::{AsyncBufReadExt, BufReader}; use tokio::process::{ChildStderr, ChildStdout, Command}; -mod message { +pub mod message { use super::*; #[derive(Message)] @@ -152,7 +152,7 @@ impl Handler for TypegateActor { let spawn_res = TokioCommandWrap::from(command) .wrap(KillOnDrop) - .wrap(ProcessSession) + .wrap(ProcessSession) // UNIX only .spawn() .context("failed to spawn typegate process"); diff --git a/tests/e2e/cli/dev_test.ts b/tests/e2e/cli/dev_test.ts index b55555bd34..1989b86399 100644 --- a/tests/e2e/cli/dev_test.ts +++ b/tests/e2e/cli/dev_test.ts @@ -1,13 +1,21 @@ // Copyright Metatype OÜ, licensed under the Elastic License 2.0. // SPDX-License-Identifier: Elastic-2.0 -import { gql, Meta } from "test-utils/mod.ts"; +import { gql, Meta, sleep } from "test-utils/mod.ts"; import { join, resolve } from "@std/path"; import { assert, assertEquals, assertRejects } from "@std/assert"; import { randomSchema, reset } from "test-utils/database.ts"; import { TestModule } from "test-utils/test_module.ts"; import { $ } from "@david/dax"; -import { killProcess, Lines, LineWriter } from "../../utils/process.ts"; +import { + termProcess, + Lines, + LineWriter, + enumerateAllChildUNIX, + isPIDAliveUNIX, + killProcess, + ctrlcProcess, +} from "../../utils/process.ts"; import { workspaceDir } from "../../utils/dir.ts"; const m = new TestModule(import.meta); @@ -24,7 +32,7 @@ const tgName = `migration-failure-test-${testCode}`; async function writeTypegraph( version: number | null, - target = `migration_${testCode}.py`, + target = `migration_${testCode}.py` ) { if (version == null) { await m.shell([ @@ -81,13 +89,13 @@ Meta.test( t.addCleanup(async () => { await stderr.close(); await stdin.close(); - await killProcess(metadev); + await termProcess(metadev); }); await stderr.readWhile((line) => { // console.log("meta dev>", line); return !$.stripAnsi(line).includes( - `successfully deployed typegraph ${tgName} from migration.py`, + `successfully deployed typegraph ${tgName} from migration.py` ); }); @@ -124,7 +132,7 @@ Meta.test( await stderr.readWhile((line) => { // console.log("meta dev>", line); return !$.stripAnsi(line).includes( - `successfully deployed typegraph ${tgName}`, + `successfully deployed typegraph ${tgName}` ); }); @@ -146,7 +154,7 @@ Meta.test( }) .on(e); }); - }, + } ); async function listSubdirs(path: string): Promise { @@ -202,13 +210,13 @@ Meta.test( t.addCleanup(async () => { await stderr.close(); await stdin.close(); - await killProcess(metadev); + await termProcess(metadev); }); await stderr.readWhile((line) => { console.log("line:", line); return !$.stripAnsi(line).includes( - `successfully deployed typegraph ${tgName}`, + `successfully deployed typegraph ${tgName}` ); }); @@ -239,7 +247,7 @@ Meta.test( const migrationsDir = resolve( t.workingDir, "prisma-migrations", - `${tgName}/main`, + `${tgName}/main` ); console.log("Typegate migration dir", migrationsDir); @@ -263,114 +271,145 @@ Meta.test( await t.should("have removed latest migration", async () => { assert((await listSubdirs(migrationsDir)).length === 1); }); - }, + } ); const examplesDir = $.path(workspaceDir).join("examples"); -Meta.test({ - name: "meta dev with typegate", -}, async (t) => { - await $`bash build.sh`.cwd(examplesDir.join("typegraphs/metagen/rs")); - - const metadev = new Deno.Command("meta-full", { - cwd: examplesDir.toString(), - args: [ - "dev", - `--main-url`, - import.meta.resolve("../../../src/typegate/src/main.ts"), - `--import-map-url`, - import.meta.resolve("../../../import_map.json"), - `--gate=http://localhost:0`, - ], - stdout: "piped", - stderr: "piped", - env: { - MCLI_LOADER_CMD: "deno run -A --config deno.jsonc", - }, - }).spawn(); - const stderr = new Lines(metadev.stderr); - const stdout = new Lines(metadev.stdout); - t.addCleanup(async () => { - await stderr.close(); - await stdout.close(); - // FIXME: it still leaks the child typegate process even - // though we the cli has a ctrl_c handler - metadev.kill("SIGTERM"); - await metadev.status; - }); - const deployed: [string, string][] = []; - - console.log(new Date()); - stdout.readWhile((line) => { - console.log("meta-full dev>", line); - return true; - }, null); - - await stderr.readWhile((rawLine) => { - const line = $.stripAnsi(rawLine); - console.log("meta-full dev[E]>", line); - if (line.match(/failed to deploy/i)) { - throw new Error("error detected on line: " + rawLine); - } - const match = line.match( - /successfully deployed typegraph ([\w_-]+) from (.+)$/, - ); - if (match) { - const prefix = "typegraphs/"; - if (!match[2].startsWith(prefix)) { - throw new Error("unexpected"); +Meta.test( + { + name: "meta dev with typegate", + }, + async (t) => { + await $`bash build.sh`.cwd(examplesDir.join("typegraphs/metagen/rs")); + + const metadev = new Deno.Command("meta-full", { + cwd: examplesDir.toString(), + args: [ + "dev", + `--main-url`, + import.meta.resolve("../../../src/typegate/src/main.ts"), + `--import-map-url`, + import.meta.resolve("../../../import_map.json"), + `--gate=http://localhost:0`, + ], + stdout: "piped", + stderr: "piped", + stdin: "piped", + env: { + MCLI_LOADER_CMD: "deno run -A --config deno.jsonc", + }, + }).spawn(); + const stderr = new Lines(metadev.stderr); + const stdout = new Lines(metadev.stdout); + + const deployed: [string, string][] = []; + + console.log(new Date()); + stdout.readWhile((line) => { + console.log("meta-full dev>", line); + return true; + }, null); + + await stderr.readWhile((rawLine) => { + const line = $.stripAnsi(rawLine); + console.log("meta-full dev[E]>", line); + if (line.match(/failed to deploy/i)) { + throw new Error("error detected on line: " + rawLine); } - deployed.push([match[2].slice(prefix.length), match[1]]); - } - return deployed.length < 42; - }, 3 * 60 * 1000); - - await t.should("have deployed all the typegraphs", () => { - // TODO use `meta list` - assertEquals(deployed.sort(), [ - ["authentication.ts", "authentication"], - ["backend-for-frontend.ts", "backend-for-frontend"], - ["basic.ts", "basic-authentication"], - ["cors.ts", "cors"], - ["database.ts", "database"], - ["deno.ts", "deno"], - ["example_rest.ts", "example-rest"], - ["execute.ts", "roadmap-execute"], - ["faas-runner.ts", "faas-runner"], - ["files-upload.ts", "files-upload"], - ["first-typegraph.ts", "first-typegraph"], - ["func-ctx.ts", "func-ctx"], - ["func-gql.ts", "func-gql"], - ["func.ts", "roadmap-func"], - ["graphql-server.ts", "graphql-server"], - ["graphql.ts", "graphql"], - ["grpc.ts", "grpc"], - ["http-runtime.ts", "http-runtime"], - ["iam-provider.ts", "iam-provider"], - ["index.ts", "homepage"], - ["injections.ts", "injection-example"], - ["jwt.ts", "jwt-authentication"], - ["math.ts", "math"], - ["metagen-deno.ts", "metagen-deno"], - ["metagen-py.ts", "metagen-py"], - ["metagen-rs.ts", "metagen-rs"], - ["metagen-sdk.ts", "metagen-sdk"], - ["microservice-orchestration.ts", "team-a"], - ["microservice-orchestration.ts", "team-b"], - ["oauth2.ts", "oauth2-authentication"], - ["policies.ts", "policies"], - ["prisma-runtime.ts", "prisma-runtime"], - ["prisma.ts", "roadmap-prisma"], - ["programmable-api-gateway.ts", "programmable-api-gateway"], - ["quick-start-project.ts", "quick-start-project"], - ["random-field.ts", "random-field"], - ["rate.ts", "rate"], - ["reduce.ts", "roadmap-reduce"], - ["rest.ts", "roadmap-rest"], - ["roadmap-policies.ts", "roadmap-policies"], - ["roadmap-random.ts", "roadmap-random"], - ["triggers.ts", "triggers"], - ]); - }); -}); + const match = line.match( + /successfully deployed typegraph ([\w_-]+) from (.+)$/ + ); + if (match) { + const prefix = "typegraphs/"; + if (!match[2].startsWith(prefix)) { + throw new Error("unexpected"); + } + deployed.push([match[2].slice(prefix.length), match[1]]); + } + return deployed.length < 42; + }, 3 * 60 * 1000); + + await t.should("have deployed all the typegraphs", () => { + // TODO use `meta list` + assertEquals(deployed.sort(), [ + ["authentication.ts", "authentication"], + ["backend-for-frontend.ts", "backend-for-frontend"], + ["basic.ts", "basic-authentication"], + ["cors.ts", "cors"], + ["database.ts", "database"], + ["deno.ts", "deno"], + ["example_rest.ts", "example-rest"], + ["execute.ts", "roadmap-execute"], + ["faas-runner.ts", "faas-runner"], + ["files-upload.ts", "files-upload"], + ["first-typegraph.ts", "first-typegraph"], + ["func-ctx.ts", "func-ctx"], + ["func-gql.ts", "func-gql"], + ["func.ts", "roadmap-func"], + ["graphql-server.ts", "graphql-server"], + ["graphql.ts", "graphql"], + ["grpc.ts", "grpc"], + ["http-runtime.ts", "http-runtime"], + ["iam-provider.ts", "iam-provider"], + ["index.ts", "homepage"], + ["injections.ts", "injection-example"], + ["jwt.ts", "jwt-authentication"], + ["math.ts", "math"], + ["metagen-deno.ts", "metagen-deno"], + ["metagen-py.ts", "metagen-py"], + ["metagen-rs.ts", "metagen-rs"], + ["metagen-sdk.ts", "metagen-sdk"], + ["microservice-orchestration.ts", "team-a"], + ["microservice-orchestration.ts", "team-b"], + ["oauth2.ts", "oauth2-authentication"], + ["policies.ts", "policies"], + ["prisma-runtime.ts", "prisma-runtime"], + ["prisma.ts", "roadmap-prisma"], + ["programmable-api-gateway.ts", "programmable-api-gateway"], + ["quick-start-project.ts", "quick-start-project"], + ["random-field.ts", "random-field"], + ["rate.ts", "rate"], + ["reduce.ts", "roadmap-reduce"], + ["rest.ts", "roadmap-rest"], + ["roadmap-policies.ts", "roadmap-policies"], + ["roadmap-random.ts", "roadmap-random"], + ["triggers.ts", "triggers"], + ]); + }); + + await t.should("kill meta-full process", async () => { + const parentPID = metadev.pid; + console.log("meta-full PID", parentPID); + + await metadev.stdin.close(); + await stdout.close(); + await stderr.close(); + + const childrenPIDs = await enumerateAllChildUNIX(parentPID); + console.log("children", childrenPIDs); + + // FIXME: SIGTERM not working in tests + // Also tried a manual kill -SIGTERM PID_THIS_META_FULL, same issue. + // But it will work with "./target/debug/meta dev" or "cargo run --features typegate -p meta-cli -- dev" + // await termProcess(metadev); + + await ctrlcProcess(metadev); + + // No handle for the children status + // This is the simplest way to get around it + await sleep(10000); + assert( + (await isPIDAliveUNIX(parentPID)) == false, + `Parent ${parentPID} should be cleaned up` + ); + + for (const child of childrenPIDs) { + assert( + (await isPIDAliveUNIX(child)) == false, + `Child PID ${child} should be cleaned up` + ); + } + }); + } +); diff --git a/tests/utils/process.ts b/tests/utils/process.ts index bb844a436f..892a9b6df7 100644 --- a/tests/utils/process.ts +++ b/tests/utils/process.ts @@ -22,11 +22,12 @@ export class Lines { // return true if the stream is exhausted async readWhile( check: Consumer, - timeoutMs: number | null = 30_000, + timeoutMs: number | null = 30_000 ): Promise { - const next = timeoutMs == null - ? () => this.#reader.read() - : () => deadline(this.#reader.read(), timeoutMs); + const next = + timeoutMs == null + ? () => this.#reader.read() + : () => deadline(this.#reader.read(), timeoutMs); let shouldContinue = true; while (shouldContinue) { const { value: line, done } = await next(); @@ -63,3 +64,54 @@ export async function killProcess(proc: Deno.ChildProcess) { proc.kill("SIGKILL"); return await proc.status; } + +export async function termProcess(proc: Deno.ChildProcess) { + proc.kill("SIGTERM"); + return await proc.status; +} + +export async function ctrlcProcess(proc: Deno.ChildProcess) { + proc.kill("SIGINT"); + return await proc.status; +} + +export async function enumerateAllChildUNIX(pid: number) { + const command = new Deno.Command("bash", { + args: ["-c", `ps --ppid ${pid} -o pid=`], + stderr: "piped", + stdout: "piped", + }); + + const child = command.spawn(); + const output = await child.output(); + const decoder = new TextDecoder(); + const result = decoder.decode(output.stdout).trim(); + + const directChildren = result + .split("\n") + .map((line) => line.trim()) + .filter((line) => line != "") + .map((pid) => parseInt(pid)); + + const all = [...directChildren]; + + for (const childPID of directChildren) { + const childChildPIDs = await enumerateAllChildUNIX(childPID); + all.push(...childChildPIDs); + } + + return all; +} + +export async function isPIDAliveUNIX(pid: number) { + const command = new Deno.Command("bash", { + args: ["-c", `kill -0 ${pid}`], // no-op + stderr: "piped", + stdout: "piped", + }); + + const child = command.spawn(); + const output = await child.output(); + + return output.success; +} From 3c27fcac9db0abeee3ccf85d0806ded48ab1f45b Mon Sep 17 00:00:00 2001 From: Luckas Date: Wed, 6 Nov 2024 13:17:13 +0300 Subject: [PATCH 4/9] feat(cli): watch artifacts (#897) - Solve [MET 710](https://linear.app/metatypedev/issue/MET-710/watch-artifacts). - ... #### Migration notes --- - [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --- src/meta-cli/src/deploy/actors/task/deploy.rs | 31 +++++++- .../src/deploy/actors/task_manager.rs | 17 ++++- src/meta-cli/src/deploy/actors/watcher.rs | 9 ++- .../src/typegraph/dependency_graph.rs | 20 +++-- src/typegraph/deno/src/tg_manage.ts | 11 ++- .../python/typegraph/graph/tg_manage.py | 11 ++- tests/e2e/cli/artifacts/ops.ts | 3 + tests/e2e/cli/typegraphs/deps.ts | 16 ++++ tests/e2e/cli/watch_test.ts | 76 +++++++++++++++++++ 9 files changed, 171 insertions(+), 23 deletions(-) create mode 100644 tests/e2e/cli/artifacts/ops.ts create mode 100644 tests/e2e/cli/typegraphs/deps.ts create mode 100644 tests/e2e/cli/watch_test.ts diff --git a/src/meta-cli/src/deploy/actors/task/deploy.rs b/src/meta-cli/src/deploy/actors/task/deploy.rs index 0809e8aab1..f526d775b4 100644 --- a/src/meta-cli/src/deploy/actors/task/deploy.rs +++ b/src/meta-cli/src/deploy/actors/task/deploy.rs @@ -9,12 +9,13 @@ use super::action::{ }; use super::command::build_task_command; use crate::deploy::actors::console::Console; -use crate::deploy::actors::task_manager::TaskRef; +use crate::deploy::actors::task_manager::{self, TaskRef}; use crate::interlude::*; use crate::secrets::Secrets; use color_eyre::owo_colors::OwoColorize; use common::node::Node; -use serde::Deserialize; +use common::typegraph::Typegraph; +use serde::{Deserialize, Deserializer}; use std::{path::Path, sync::Arc}; use tokio::process::Command; @@ -113,9 +114,27 @@ pub struct Migration { pub archive: String, } +#[derive(Deserialize, Debug, Clone)] +pub struct TypegraphData { + pub name: String, + pub path: PathBuf, + #[serde(deserialize_with = "deserialize_typegraph")] + pub value: Arc, +} + +fn deserialize_typegraph<'de, D>(deserializer: D) -> Result, D::Error> +where + D: Deserializer<'de>, +{ + let serialized = String::deserialize(deserializer)?; + let typegraph = + serde_json::from_str(&serialized).map_err(|e| serde::de::Error::custom(e.to_string()))?; + Ok(Arc::new(typegraph)) +} + #[derive(Deserialize, Debug)] pub struct DeploySuccess { - pub typegraph: String, + pub typegraph: TypegraphData, pub messages: Vec, pub migrations: Vec, pub failure: Option, @@ -129,7 +148,7 @@ pub struct DeployError { impl OutputData for DeploySuccess { fn get_typegraph_name(&self) -> String { - self.typegraph.clone() + self.typegraph.name.clone() } fn is_success(&self) -> bool { @@ -267,6 +286,10 @@ impl TaskAction for DeployAction { })) } None => { + ctx.task_manager + .do_send(task_manager::message::TypegraphDeployed( + data.typegraph.clone(), + )); ctx.console.info(format!( "{icon} successfully deployed typegraph {name} from {path}", icon = "✓".green(), diff --git a/src/meta-cli/src/deploy/actors/task_manager.rs b/src/meta-cli/src/deploy/actors/task_manager.rs index 43334b3ac3..0c495593c0 100644 --- a/src/meta-cli/src/deploy/actors/task_manager.rs +++ b/src/meta-cli/src/deploy/actors/task_manager.rs @@ -4,7 +4,7 @@ use super::console::{Console, ConsoleActor}; use super::discovery::DiscoveryActor; use super::task::action::{TaskAction, TaskActionGenerator}; use super::task::{self, TaskActor, TaskFinishStatus}; -use super::watcher::WatcherActor; +use super::watcher::{self, WatcherActor}; use crate::{config::Config, interlude::*}; use colored::OwoColorize; use futures::channel::oneshot; @@ -14,6 +14,7 @@ use signal_handler::set_stop_recipient; use std::collections::VecDeque; use std::sync::atomic::{AtomicUsize, Ordering}; use std::time::Duration; +use task::deploy::TypegraphData; pub mod report; pub use report::Report; @@ -56,6 +57,10 @@ pub mod message { #[derive(Message)] #[rtype(result = "()")] pub struct DiscoveryDone; + + #[derive(Message)] + #[rtype(result = "()")] + pub struct TypegraphDeployed(pub TypegraphData); } use message::*; @@ -526,3 +531,13 @@ impl Handler for TaskManager { ctx.address().do_send(ForceStop); } } + +impl Handler for TaskManager { + type Result = (); + + fn handle(&mut self, msg: TypegraphDeployed, _ctx: &mut Self::Context) -> Self::Result { + if let Some(addr) = &self.watcher_addr { + addr.do_send(watcher::message::UpdateDependencies(msg.0)); + } + } +} diff --git a/src/meta-cli/src/deploy/actors/watcher.rs b/src/meta-cli/src/deploy/actors/watcher.rs index d579e0b481..c9301627b6 100644 --- a/src/meta-cli/src/deploy/actors/watcher.rs +++ b/src/meta-cli/src/deploy/actors/watcher.rs @@ -6,11 +6,11 @@ use super::task::action::TaskAction; use super::task_manager::{self, TaskGenerator, TaskManager, TaskReason}; use crate::config::Config; use crate::deploy::actors::console::ConsoleActor; +use crate::deploy::actors::task::deploy::TypegraphData; use crate::deploy::push::pusher::RetryManager; use crate::interlude::*; use crate::typegraph::dependency_graph::DependencyGraph; use crate::typegraph::loader::discovery::FileFilter; -use common::typegraph::Typegraph; use notify_debouncer_mini::notify::{RecommendedWatcher, RecursiveMode}; use notify_debouncer_mini::{new_debouncer, notify, DebounceEventResult, Debouncer}; use pathdiff::diff_paths; @@ -31,7 +31,7 @@ pub mod message { #[derive(Message)] #[rtype(result = "()")] - pub struct UpdateDependencies(pub Arc); + pub struct UpdateDependencies(pub TypegraphData); #[derive(Message)] #[rtype(result = "()")] @@ -152,7 +152,7 @@ impl Handler for WatcherActor { let path = msg.0; if &path == self.config.path.as_ref().unwrap() { self.console - .warning("metatype configuration filie changed".to_owned()); + .warning("metatype configuration file changed".to_owned()); self.console .warning("reloading all the typegraphs".to_owned()); self.task_manager.do_send(task_manager::message::Restart); @@ -202,7 +202,8 @@ impl Handler for WatcherActor { type Result = (); fn handle(&mut self, msg: UpdateDependencies, _ctx: &mut Self::Context) -> Self::Result { - self.dependency_graph.update_typegraph(&msg.0) + let TypegraphData { path, value, .. } = msg.0; + self.dependency_graph.update_typegraph(path, &value) } } diff --git a/src/meta-cli/src/typegraph/dependency_graph.rs b/src/meta-cli/src/typegraph/dependency_graph.rs index dbd6d15923..cd15799365 100644 --- a/src/meta-cli/src/typegraph/dependency_graph.rs +++ b/src/meta-cli/src/typegraph/dependency_graph.rs @@ -15,20 +15,18 @@ pub struct DependencyGraph { } impl DependencyGraph { - pub fn update_typegraph(&mut self, tg: &Typegraph) { - let path = tg.path.clone().unwrap(); - if !self.deps.contains_key(path.as_ref()) { - self.deps.insert(path.to_path_buf(), HashSet::default()); - } - - let deps = self.deps.get_mut(path.as_ref()).unwrap(); - let old_deps = std::mem::replace(deps, tg.deps.iter().cloned().collect()); + pub fn update_typegraph(&mut self, path: PathBuf, tg: &Typegraph) { + let parent_dir = path.parent().unwrap(); + let artifacts = tg.meta.artifacts.values(); + let artifact_paths = artifacts.flat_map(|a| parent_dir.join(&a.path).canonicalize()); + let deps = self.deps.entry(path.clone()).or_default(); + let old_deps = std::mem::replace(deps, artifact_paths.collect()); let removed_deps = old_deps.difference(deps); let added_deps = deps.difference(&old_deps); for removed in removed_deps { let rdeps = self.reverse_deps.get_mut(removed).unwrap(); - rdeps.take(path.as_ref()).unwrap(); + rdeps.take(&path).unwrap(); if rdeps.is_empty() { self.reverse_deps.remove(removed); } @@ -36,10 +34,10 @@ impl DependencyGraph { for added in added_deps { if let Some(set) = self.reverse_deps.get_mut(added) { - set.insert(path.to_path_buf()); + set.insert(path.clone()); } else { self.reverse_deps - .insert(added.clone(), HashSet::from_iter(Some(path.to_path_buf()))); + .insert(added.clone(), HashSet::from_iter(Some(path.clone()))); } } } diff --git a/src/typegraph/deno/src/tg_manage.ts b/src/typegraph/deno/src/tg_manage.ts index cc682ef7e4..57bcfc6e17 100644 --- a/src/typegraph/deno/src/tg_manage.ts +++ b/src/typegraph/deno/src/tg_manage.ts @@ -115,7 +115,7 @@ export class Manager { } as TypegraphOutput; const deployTarget = await rpc.getDeployTarget(); - const { response } = await tgDeploy(reusableTgOutput, { + const { response, serialized } = await tgDeploy(reusableTgOutput, { typegate: { url: deployTarget.baseUrl, auth: new BasicAuth( @@ -131,7 +131,14 @@ export class Manager { defaultMigrationAction: deployData.defaultMigrationAction, }); - log.success({ typegraph: this.#typegraph.name, ...response }); + log.success({ + typegraph: { + name: this.#typegraph.name, + path: env.typegraph_path, + value: serialized, + }, + ...response, + }); } catch (err: any) { log.failure({ typegraph: this.#typegraph.name, diff --git a/src/typegraph/python/typegraph/graph/tg_manage.py b/src/typegraph/python/typegraph/graph/tg_manage.py index 1d71cd921f..d2ab111606 100644 --- a/src/typegraph/python/typegraph/graph/tg_manage.py +++ b/src/typegraph/python/typegraph/graph/tg_manage.py @@ -121,7 +121,16 @@ def deploy(self): if not isinstance(response, dict): raise Exception("unexpected") - Log.success({"typegraph": self.typegraph.name, **response}) + Log.success( + { + "typegraph": { + "name": self.typegraph.name, + "path": env.typegraph_path, + "value": ret.serialized, + }, + **response, + } + ) except Exception as err: Log.debug(traceback.format_exc()) if isinstance(err, ErrorStack): diff --git a/tests/e2e/cli/artifacts/ops.ts b/tests/e2e/cli/artifacts/ops.ts new file mode 100644 index 0000000000..cbd08ebe39 --- /dev/null +++ b/tests/e2e/cli/artifacts/ops.ts @@ -0,0 +1,3 @@ +export function add({ lhs, rhs }: { lhs: number; rhs: number }) { + return lhs + rhs; +} diff --git a/tests/e2e/cli/typegraphs/deps.ts b/tests/e2e/cli/typegraphs/deps.ts new file mode 100644 index 0000000000..c1b11a0bb2 --- /dev/null +++ b/tests/e2e/cli/typegraphs/deps.ts @@ -0,0 +1,16 @@ +import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; +import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; + +await typegraph("deps", (g) => { + const pub = Policy.public(); + const deno = new DenoRuntime(); + + g.expose({ + add: deno + .import(t.struct({ lhs: t.integer(), rhs: t.integer() }), t.integer(), { + name: "add", + module: "../deps/ops.ts", + }) + .withPolicy(pub), + }); +}); diff --git a/tests/e2e/cli/watch_test.ts b/tests/e2e/cli/watch_test.ts new file mode 100644 index 0000000000..cad41cb819 --- /dev/null +++ b/tests/e2e/cli/watch_test.ts @@ -0,0 +1,76 @@ +// Copyright Metatype OÜ, licensed under the Elastic License 2.0. +// SPDX-License-Identifier: Elastic-2.0 + +import * as path from "@std/path"; +import { Meta } from "test-utils/mod.ts"; +import { MetaTest } from "test-utils/test.ts"; +import { killProcess, Lines } from "test-utils/process.ts"; + +const typegraphConfig = ` +typegraphs: + typescript: + include: "api/example.ts"`; + +async function setupDirectory(t: MetaTest, dir: string) { + await t.shell([ + "bash", + "-c", + ` + rm -rf ./tmp && mkdir -p tmp/deps + meta new --template deno ${dir} + cp ./e2e/cli/typegraphs/deps.ts ${path.join(dir, "api", "example.ts")} + cp ./e2e/cli/artifacts/ops.ts ${path.join(dir, "deps", "ops.ts")} + echo "${typegraphConfig}" >> ${path.join(dir, "metatype.yaml")} + `, + ]); +} + +Meta.test({ name: "meta dev: watch artifacts" }, async (t) => { + const targetDir = path.join(t.workingDir, "tmp"); + + console.log("Preparing test directory..."); + + await setupDirectory(t, targetDir); + + const metadev = new Deno.Command("meta", { + cwd: targetDir, + args: ["dev", `--gate=http://localhost:${t.port}`], + stderr: "piped", + }).spawn(); + + const stderr = new Lines(metadev.stderr); + + await t.should("upload artifact", async () => { + await stderr.readWhile((line) => !line.includes("artifact uploaded")); + }); + + await t.should("deploy typegraph", async () => { + await stderr.readWhile( + (line) => !line.includes("successfully deployed typegraph"), + ); + }); + + await t.shell(["bash", "-c", "echo '' >> deps/ops.ts"], { + currentDir: targetDir, + }); + + await t.should("watch modified file", async () => { + await stderr.readWhile((line) => !line.includes("File modified")); + }); + + await t.should("re-upload artifact", async () => { + await stderr.readWhile((line) => !line.includes("artifact uploaded")); + }); + + await t.should("re-deploy typegraph", async () => { + await stderr.readWhile( + (line) => !line.includes("successfully deployed typegraph"), + ); + }); + + t.addCleanup(async () => { + await stderr.close(); + await killProcess(metadev); + await t.shell(["rm", "-rf", targetDir]); + }); +}); From b978d84962060726b08ae6a87d7453c1f6463b03 Mon Sep 17 00:00:00 2001 From: FITAHIANA Nomeniavo joe <24nomeniavo@gmail.com> Date: Fri, 8 Nov 2024 11:24:24 +0300 Subject: [PATCH 5/9] docs: grpc annoucement blog (#872) - - #### Migration notes ... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --- .../GrpcMetatype.drawio.png | Bin 0 -> 22574 bytes .../index.mdx | 110 ++++++++++++++++++ 2 files changed, 110 insertions(+) create mode 100644 docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/GrpcMetatype.drawio.png create mode 100644 docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/index.mdx diff --git a/docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/GrpcMetatype.drawio.png b/docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/GrpcMetatype.drawio.png new file mode 100644 index 0000000000000000000000000000000000000000..d62e1b535dd9be6ad8c1715994d7d47e7c5e4f23 GIT binary patch literal 22574 zcmeIa1yqz<+doVQ3_XBS5;F**QUgeLhX^RrAdWDEbf+LVGy;ksNQsIlEg+$U4k@it z0)hh)B8?JK-yUT=p68tRdE@_ocL{)i2M38Q7 zf;J9FI}fC@r=SbU3lxFxNIR6vL4~uf0S-=1NFEV&F+l|Qbizbfm`79@Jn1;Nc>950 zKS^;b@zX!cJbZXWm4rn_1Q92}7Y&rPqbq1Bf)GZ4KVeX$?%;v4bp_4Tf7JRpoDa&w z)4|o{Cq*Ks1tkSVaUVq0co0gU4en1=<$y}?;(~NW{j94G2o(U`;%IiT`B^4zYZ8D^ zMp)^KoRf64Q#P@3mOAr~z2Wj1M~h<@3;a3Yoya(ON||DyzCEVA$C9>uC^x1!Ok8(G7!&C!kv-$ z$_E9W_DCC7-=FP&6#XugpKQc4)5Fyj^!J<0e*cWGDT%&&PvtfI|HH+y3H) z$1ipLKk4p_sZ-ASso`48myL^yN-UrO(5fOI+6IHfx@Bxo@xJMNy z2OI?lAHZCG`-U(5o1)7e_zv)u{@nD0=7kITIL-i5!s+Qb9bi>B{qpqk$BWv-)!W4e zg;Nh;B+9<_4qhk&H>5R=R$tHtl-YYZJAt>KR*P%xhWvwH2P^~@=!H7a{vSpET#kQ8 zQv>DdjPmmE2i+bt7dd?(g9FXS35%I4PpQJFcAoLJ%P?aZvC_Tkuu&_on(N z4+kJ4l*d7LKj-u}O5o}0?eRl#K#jj;$AMS$LVDPNNbw_n{B6Ahr9#>K$xHonk^HSn z{iZT_-}Sr3;LAKvPDn2YpFcalztf_B3kiP^qVMW}GitnIi{ifEq>p1RcoM^Vd;Ca0 z`FGF?SMgt0*`I^`%R}Pr2aKp{n^XEMOt>lZU{II)U zuHc_@`Jna>^ZVCo{@bkdKrMf>(w~0w2mgP$&YyGo&2oXm!};#t+#}M-!49_yu?F^s zGZ$r?TXXymJ3;Z=weV zfLE6Peg}O(_-~>=i}FHx`MaThnBUJp{ns%2N67_H6)b+;?Ej)3{{us*INk&OE-1W< z_+3y^|DA%e(?xk`Ib1$_M%7cq&OpOn)XEVh@K+oC3&Z~lBI(aD{~<2@?SklEjd4FT z@1OgxKiv8+*C>McO?3G1^}FQoW&b@PO%iYQcnkke2x)jHa^QR<{&C3va7gfAmZz3_ZbyQ3N6A=HcoE_RI*}p8c<@ z{r|x+>n{Q7Z|v$nU@yOR6@QLdlEObAf1FzBlr7`Po^+e*Q7y7H7 z7@#}=6aT6ke=Rwo<_8uiE=b%)8rRCf`fqgQ&zp~bQ#kw2mf=BIIxu}Hylj5+iGRB@ zl>8qT&V*0@MTq|_o>@B~Jv|+)!8-7_)#jh&^JB~RH=Dyhwu67aIsCVWwEt_{yZ>*5 zK4B@a3;)x84(~qjuHru-_~93D_?7oRF4X>C8~lX-eG9z*5eD)58t-5B)c=8)^_xG# z>(uWd319Z#w8j%Vh@Ah4YA*3-M=y!^havw5srippj%nZ~Vl0stH#UE;6k3Fi@|eIB7emI{zmB~|ypWNxJN`j*w|}iq^hLR)Sie=>uA!mc;QOb_ zko{+c+$84>F7d-EZkrK*eYItDsqkqFMHph7s;QjQp~gU48iKiv9&FvyBUEbRM?Y0O zDMoS#nfXx9)34y&$^IfUB@+pUa(#De3($zN@KY^y7-ELN2K$u+$ru2iafYI$$Y7Lt zLXf13y+wEX{0^g^XqC|F9)_YX!@WUIbC&l=A-7BdBkW9e zh>I20D1LUd#`ELaZT`cF%8k3U*S`&z3&qK;4`Dwg>CrIg$+}lhrI=%0k#VwR1+Bh@ z*brf(=#F8&lr(UpSOst8vs__?I3hkDL6gLB1TDWR1*1pM%5TErWEQIh+}OQ(mFVgl zX%%WoFgYrb5m|D95ynM86VZs82s z={>D$LcB?WRB9@!96rTg(W^|zY<^}6)+9HRW|uX4`{7a7T48CdXOA2cymo6k-8^E! zAum&0dg8Ew4jdAz%7`WrULOw$A@Yqh(3A5%O{%cBIk^m&A0akqQ9kchyV}mzszxQ4 z`jEvo75*_%QS<%DybO^&2OtB=lDhS~F#ei$Fg%oPK2e1xx)*Wbc=U!mn6+E;5#!t8 zi8a_^#}f9+5tkPxpYB)%lPl~jtE4(SO5;Mi)_pTV>q0B#T_`bO;?=MMON)6lgDyn0 zThh9Ee{Z{y(cFn{v39Mybkw6GIeZ!PbHlSfaH&orPGZatneJRkPAOP@iCNO^(hDdN zKWa7W5R#6tVRzj;V+1hG5*sU2A4M5me|0;8T6_q`Vd$a@scmKR)T#a$Mu}O*Hcqy0 zWO#N*yCq9w)sH$KE`C0jUyXS0H+iG6yhnaJq2G@q^f20g{##sTIjqwp^3zkPFa%Rw z*22sr2~rT&xvoWlaoW%mG~s`ys5;XaCcEZ_wd~jD@7b==Y1+78SbC>HF#BS8s(OMs|~8 z2gorNUTd?wY0t=B9758-JBLqFVk!f;9aC@C3+XEd^oPqOCv5(SSV$yS?l2s}q$La!GRicjzzfolf2U;rZwJ_{m zF`*iHDcifs<-?VJ3uC#oFzB22E>dfqqE(d071JK+FNN+_h!K%9?`UM^q0_0>@or6Y z8WlUyG#3Lt=bGQYa&_Z_FI|uz!8-G?_N9h>4xjO>8*YHIc%vy5TDimG<3Vf8sL&6d z^TPFe-@jNxbAeGE?-U<#5@=0elM)F6=7^kolDFu_`-}{0=2&z@h(P|%THs1EleHwh z_@t-sGZHw{wy9m_5usB4hnH8~4#*T!+h}t+@+pRgIa$_t|NF8b7kehrtDBaTcgILzlOY~P3%Q^&O z-5sLlU#{yBiD1o~gr|JJ-V>}$ym<9nziX{SQ(e*Z?9q$lq`1RO@IB)TzzI+ndtpBhc|LGd~t z6D`V1Bz@97tx~**7|wKfx%a)qsGG_ttj9KBZd#5@=A+p=J%y_Tmm*q0a|!-uedn=L zcdX*CiJ%BR%598_www+67)o~8Nj1W9R46*cfa+Y?R+fmfl1aYrU6?H?Mr^?3n0gsk zzTpJAi9~1GqqbGuQ`rl_`&AmwKAL;xjtTV|9~=7Y7rB71QH^Y&@x{QAypfNrfe~EY z-`x;c5-lOpeH+79%)D4LlQoN$Jes4XsTfaO=D!F0J~{CAS{Ywls<9DtSJ)&RDCs!e zw5QWz1)tmR@Lvj;N;baC5^;XGEy%w^plXLqM)EW8q3n^LD`8F1OTbS`l4!}GNR{th zauHjqU5j_;BPLi&)!~56rDnc$ArZAhwpOTwu-IwY%;sql{7(VCd zWy{kkcOOM0HQkRP(C(CAiDyaCYW8d@sv46f3V2CKwsW0x`lW@wMX$3`8%g|8h4mq8 z2hr3_&7#g{ZZw#}n=M~6N~?JZLLo&|$+-^EJSkBH1Lp~7WS3tuFN=f%|EX1|5}`gC z-%Rl41+y-TPiSHffy*_xFxjW8dlze^1tXU4#|p+2cg@MNoHU7pI{3Wixf4f2HtMXj z*=L~FTqD4w9(kVK#T?Z_&Js4e<2_)?>kV;-9p9g#?^ZhME*GKevQ#Rf@cCiVgg}A^ zw5-=8Xr+0Qg553EgMc8ug)1tXjFy9q>2On>|4gRu1Y(pGO|>ve4zp*daxk&@INYg3 z-s`_Lb*HLEdb(CJ!v1Mdrd{MqFOCcrNLmMiN;vM}XLL0SB_tw$fIc+NyW7T?1z7h~Aic}H9GGf&zbWH+cAAR+8fm1Uh zV8s*BM3jkr%@zqJBcpn`@{IbgcMZB{Mm>9O@C7nT>j+dYztc?%P5gNCT3gqkt=7T~ z3x50OzDpePTc48dW{RlD3%<^HTGZ6F2YkKcn31+ja(F2z;rjwt3k8y2LTIPG|}nyF*X!fK@dVWcCLQp_Rhl>3Rqle}IT zkul<>L}8_&G9|)y$Mz^xpyKL!;@*5DNCRJ2>x>MTQ(W+sIU@?pqs6fnNhzfv=H0%& zA}3#Op(>xTGP7!!wDdNtcW{44Lvzny^Kpn?{)J>9 zq*L$BD7st~R`jkjE#s?DnyD(!u*oocX!IQKvVzgt^(eeF& zr2VO)%}X78cnbG9jDoIBB?leQzn^ckgXk#O!dDh6+$2mH{E8oG->!M1qBb7S8mpd| zrOWK;VWH z#wRMT*R3Xhh{yMoJt8Wr^=cK!t*{gW0sLrUw~h=?)@CfgP<#YIv8?ujRH16TwLhc>m z4cLeMs#^$N6=W9w=$d?8`|BRVuda`dM~{WX;3-k)ieaeR_xja31=o7T{*Tr*xYlcU ze(jSOWz6oPBMtJ;6DpbHx`ki9GsO31Tj(2J7%GL5;B^iEYHYIdg5T;hUJFW|PN**N z`aM6N47Mt#!ubxrs3-VHjh_i8lg&lHSUhD7{V|?_)8cr_dKwN-j@**LPh(%sC?k@2 z@z=N;=I&WMpDyP7>N&9OBAH3>5MBUl$?P(V92lLQ(bY(xAXnKIvV*MrS z^{_g6jzu;6;QO3>y0?uuoD6?WyW~CJt9Mqv`kNPm2ke{UC$i7Z*WGY9a1cLu$ff4! zv7So3Kf1qJM_;#Z{j2*YN37aK&i$qicW_)U!E;^VRbtfGei5EC`>$epu54-iYMq3W znJ`82FJ&shwI2V~Iwvf8OaX%@W*-HJ*{{NPrhtjzoGefVKIh-H1O4ZounYnh-rtN2 zZ{ELW>$06$Ei`GqSALJxnR7%W!QkeY(CyFWo0$!}gR5sQol)d@R?<`tR78CsM1m0H#@%mw9|U)g-CL|^%A>_zja6X zk>QsO(vu;JJke3e>-_sKQf}m3Jc|HE9Vw^mzDO~xZS61o8cdJ?{8)ZS(Z&otr?c!%d^R=9n z{HhGwn$_b}yS;@wW=xKU&DV$1GN26~k7Y3&Hyj{Ro*NzzaS0o_{pj1mjc9%=!&S1E z>AkD#JWD0c4MNr|5~Q0_{KUJBDI1kR^{C5(1k+c;ds=QpJ6tbtarQUskT6|zW#J{m z1gC72cB;Kn_&&YQ@9MH;(y?YL7+iML__(YVZATnOSg-1=J!=w_XjLucy+D;|S_Dzo ztCYy(9cue)F)u$C@xW}DN8gHs_Dehqikj-@7ghTx7vZ`m#_~-#;~nWEHZETO}Jl#n|DUKc$0-;qv-dFkKE_r{18 zhBZk&zC&YIz5DPXlFD;uLsz=tG$9XG;o`}i(8(D1qfEu>n5nZAtzOTJ*%F=ack;57 zv2+vG9iIEJP&dUt8K+pCjLJy*S~n#nFqzVsS+ZxhhIz9-)|cX2&JXE;^o^NYza<~J z($T)I!Kga5SFn9%JvgKzH))rAzRrrD_$XB5!m745qgn@(;>3`F055dnwpKN=E1@N z!Wo~AmvKqLYzAadJ>(X$<0}7J!cp_=i!8{{m(gqIaM6kp4h9aerh={m~D)hn$c70Y4NvlA%t61muV zpV*h}l9VYs(>O1G#I1f2K0Bk85B$X3Zj<+@K39-K$cHb~3MBh~icb-}S>~6GV8Fy- z)jy)EVG^T`H}VtQ5+5*NiNn(qf0vx`ZS-R*FiqgZjF&efm&olG_a5Ne-ifsi)Ao)Fe3u zicpgid<9|Q@VhbkTvHJOungI{a4wV?#Xm_xDzlUDOhEMJAP6`y=|7~~4$SHNI zK|s%Li?Uq#XO%W=*t&GD6^H3Y|&cO7c7r(X3Nrj4HuEB#*2>7w@H z@R9uopEl+kyG^x}Os+<9UREPx9ECE?J8o6a6?C|2ffej_6ZKRW4LeDWiY#BuQJS)# z+ZLq(a1!LV;d8gbUx%jznsZTTz-)=az$#*J=MV|9i^sW%;$2;xC@D;5E7{x9!MJP5IZFXrh5>o+HsU-M?80koK-_Eo51 zM`W)ahrpf@s;lVg#v!|#YkKz^o@JhrE3OMz{kk!#==ZJPI1-?v;`0Ec6W9#|@Il0N z8tD@_5H<{=h)@h2MLvJb;DN*!cRU*<WU!M4}V#IsARvE`^M8xBWao=i}P0LWv@xE8J4SN$OXx?uot zd?euOEM2$EQZ3@WO;T=@=B|P?3ewtXe1xhM0JOf6GZ~&-ir3aY_>PA+Gg-;bzgVir zCL3RjhH~I=;x37Cs_Nq^8|{20Y)W$gVLQQL`-Jiyb4v-pRuF#6AD0KrU7N?Wz_|BWQo$7rdfsSovb$NtH_T)OVgNGFF_Y7< zvwEg5y`q`X9NlkhC5HpjgZBUo^L>fIDrDC?)xCwKabrA$^Y~r+`@+YJD6((yK>&cf zHG7FxVaLtHF4Oz|I|3NXiB^DGLiiBe4vo|jRK#R7Y}7b(U;a6#%E|6;a|I!&C*w-N6|n_dB=z@ zX9WPceqVd!yNx^ z)+u6+Gk6nDQ&Q-cCUIQ%1Vm$rPRWE*9z|X@nIOaEO>fk11QJ+<7JTfcytuR(+VEL2$XxLaYHJK= zfi(j!^54^iBMC*i012`v-0&*9ks{Q`q)a(fxE%F-ctGp|z=8BX^k>{~)`q-y>J}8I zm-#S6(i(kh$n65#;gcO7r28)zG`G<>NjXpV-G(yyGRyQAS5L%LHwxZp3jTCOqL>nM zI-qkmZ9n7j5tX*!gm6Z)6Qpch>_C9RkhdVO#KPhCF?4x*so@92EIqR|lg)|CllifY zDC@~AR4}K7-k5)#MThayp8>kWKH0AWtlj;~adYVn0IF5L-p##pG3F*yx8!7;+s;ZW z8IfogK=`o$nWhBp%lJ}>=+RYjwCYtS_Nnq0J`1eZ++JQI6po;Ae(=Fb%enFb8E@x6 zTphFWL`&&Yx#({gb?)H(ukZA%Q{(fp0#0GP`VEbn5gv!MCx$=@?wGm-K^aKINQ7xd z)tr_1aJr=oKH9oaHO?VEZ2w^Pxni53jCcz%^+$KM?G)hpx|z}B*exg6C($h6)|vAj z`7VvQ_lSNZgdbfZf8O-<@(rj&f3 zChm@S37Tk7T~W=H6r$Myd~NMoQf$jefWo;glFn{fFe|o^yjtRh@$hSwchPy0z}dAT z>D6MpZDx7&r$LN3io>cQ*0%_vKdL%i++S{_eL#7fJds5tT8-FV3q$U%(e6^eHH`&n zn1m3nM^uPO`|8n$NxH0)@42D$tJksVs);;d$DZCJ!hqz~vHDwgz2j45AZg=Rae}uc zRt?OR)R5>zMFbZ;fetWq_oybq!HaTNPdlS&;Ki_L>P4z|ibLgg zJ$@x6nO?xS3qA@crOT2c35AYzA>Qz4{6J<7-JZoPruVtnD-` zBA+;+WhV#~MH&@eiLtat%QU(Lt#wJX=46LcovTe%D1*|YZ#0_~6bbmoMo5jlJtM@v z_pKzP*+Ws&Mu6+eQ%PjMcCB(eu@NH&Fma`f9=etrYQ%~nu8nZ3z=da$oy4abg|kiP z(Vb+WHw;g&DNk^Tkl8%eW7MiftT>oNEt^(9fH~1aIx=eR6c63s_C8(qxLM z%z-4sP#FTwDCQyNDtk#bO9_;xi1FYEz7{oE>{+t`w+gPqXaT5TJ?3w;K?`rTXxOJhL z5qLba$3rK)`_?%;ySmMw1B&f&>qVKSKITUJFJOg)=zI*=Cw={#_f`zowW6va)<6;Z z{j0%eR$SMx`wcPsW=9^}kC+lB$H=Y+v~-(7Z3|UahuD--TQBwuNmVJPKJ|Gbb@riR z9>#gCQukzo=)|zMSG_T#SnoOLcQvq0`mq<{6Fk^F{qIKPe>Y(Nf7o~)S+euL)^K-c z00vnb*+`S}R7y=NZgW*Rgbd!67qt_Fh`u|r1bePrwA=+qWm-2p;Z#Kd}l|6r7QmM4l5J+k=4&dkH1IPDOl#ncW+2^B$$rX=vUtD zHtD9IE~_n@5)&A|$GQxF@uGstxR_ZnlC0it<9NwPq{>hHA}H7mCc$u%TK%% zM)Hcb)R9@`)HGXffb{+P2;qYDw;>@p9OgbQZLSqe<8&74L~lL z46m+{ z6WtcFXH0^h>MxP5OW#3thkn=GHXG{^nF*?!QlVVBQ*YtuilEh@NovN=5@lJQwVQO{)gQsrpls%(l>LmmIPJ&WAul4gMfSC*obvW&R%MW<`5T?dJk zBOYxCa3cLJJEF>-O?f~;wsxaRwhlEKbAbx3LTfC|{$B4Tkr;FLDd6CeOU_F58-gskO_cii%1y z!2R+=<}3cgm~;z%2D3+51Lvh6Bj07^?|g38PN{*7J*|zL3KU?HfoE?-p&pS4Rjq8X z?->-q*#^y)V^I;0ttg9LQR_X+P}Iy5v4Ufn6Ah9R4QAAKC4<#5@ z#qW8M`w^QYe9<(6fCKS@X{@&WqSaHXxT0JSXyrHm3(chBVJ6bIahJQNP^X+A{^Sk$zPg zbm8^Pi{K(L^l7)$sp6DKCNp(1H?b;lUW=~1mi83njXp*+)d&@nVjG4_t8+=PLe`o^ zti6l8X3qVKoB%OgMRqZYqp;Fl1f~;VnqS0&?u+H4Ia%R*Updg;(Va-q;?|q%O+EZ` z1jU<|C*>ZU(g|!=8XA}(goltxpErkc*oN3izr0dw`(yz67SV(f>>m_i2su8{nKx{f zI(j8UkKhWW@|+#Sy7+Z_iq>g2Hy$fw%_yRO7=tFE%Z%8phQ^}3`QJrT^)D#3O`uph zay>EH8BjZ!rd8GymO0bXx+^t(Nal6D@(ikXUzt>77vzRSs!FP(r1tmAJDrPvNDMS3 zQ9i20Wd6uCt!IG0pIG_Q1ce=QBkI<+p-z2AQGD9IFsIGlb;n9FIB&xBr>vxkmz3B> zoh|zDe8fSTy81(*vVN(9A%nb1g`tyT|pJLSk%&^EA0dVvxiOJDzeQvNu> zDw<}4eB?TGxjNysTzf*9CNc%iAB=uN52+#V+|^vPTd_Q8RkuRGH(uajeb-g9`gOap zp6mtTN)$(oX4V+ioFMGzv*gX&<7TJ%k*a7}dWhZl{s)a6IiSVxBvttJq}h*VpJ=k|#jSHEw%YWoUR3S-{wy zcQrllQ-%8OT|$*b_bmlw-yrF8{k2#@f#c=#|isN_wOKCnn zn?;4nCf^|jfzS#0m#w~ivi@7m<{&>UO@vcXL%B-M~4 z-+Hv&Cem*rb;8hFVtcnh*^;2Ov>p0-xvNSh$YI=!NckS}mfq#8*E6C^hvcV2UN)*c z4ytQbOXOw~@%Mv=B5L&g5<{Ez?(_((eN_G|!SHkRpv?B$=*ZI|$z>GC&&PDAk|m+a z6UssCkjGSwvd=IUk^Y>Sv{X^lrLqo<7P0;?&+=q`VpE9@f>%p@*OSgkG>Wz!;dP;1 zsgS%zj8#v0KS{(-Ra4EcmvUI8jV(?JOVB};B&)5K&Yb07y~@n2NBFdXwAH41`l zxOg()uG7*AV)*qtmHF?XHGxfp-Hmb;*Vhspvvk z%mw}vP$GI2-(x&3Cs(|D%A8LdIQNL4P5seNSYS5Yox5*x((ae^rt+(3GL$bv3>deI zjyX@XNLAgw)n&|nQbs+#OB!vhdg!X=bFe$~`Zk!CP86ok{Kw(#Sv$pjqs}KeFfR)G z=5Mr&|C>Pi-^AH}M#6BuI-jY2U4)KjWwz`b8baJ zJGi8NIwScoy5DybZsc|86}9`T`jmu%`sX_-htc)*dZYS+vjCuwZYsZDjfHh+ye27N zIuA7}VdpVTwXmAfZ1#KG8xZEtDytq_5(2+O$Ya?NFsDyrj<+f)F~>i*smoI< z4Ykz`ayv7j&%V8RBZyTjT;I2ul_mV^@I?d2I~nS$9>)MwZN2om@f}(c1?k^%@Ci1O zmq9_wxm3z49|+fL(4o89t%x)4z?|-NUm18L&VwFtDnDC2mtUZqr~81z7K4(cLTg0H9PjbO_c33bCb)G?aCL<({4wp3j$cU~r)FMgOT}#0Rf;;kcu~ zxHJ^X)DN5%#q4b_ab^X7|GeqnA^5@xmk(-tnb`{U0}NyKN^=rLSw;|5sD8lgy>{kap|GDfNwE~BPvmfLiL-Mz4FF`w*{oR zbyF2nAyJO(fKkXUu|X=34s!GZG+N7PfjbWAT(_$L$ZCH#1YG$*PN&(?;L;Y%04<&z zR|lCK@u5rC-EcX{=;L=!$bRirL4q3ylvY>28P2|Wpdks4A7gBi&N6~i=;ftf-=2xw z+uhcf6{=mvK-NG$hx3aRxYu!?VRAk%J2*gcq2k@;?USwJnz`OiPn#Jzj+>p_Zcx)L zx+6nPi921-YMXs^-K|r&6+PnGAm>!^MjZ>#%@dSZT%t^7Ypq9t7M${KRLEHFQP__Y z)SAIsfCi?Lv-hsw=QFzHh5+ZC^F}Yn3Ji#J8tj2Ss69J{HLAg#naOZ`=8yCq={?+$ za0{RUZ`^yNW-=g7Z@WR(>$omM3rH=^mPv{*jXwWUe6(YtJJ*}rAWnNYE8KcGqV&dy z-?MsFX|5JQiVV+bU`0$KixV*v{17#cJ7tA zyZiJ#3pSbgQWX>T<|9Ayock>#1aaUZz}X!c&-XyeT=U=p2{OxnI@+0AxNj2OBe!9J zF0GE&9?3|aWPMAn@O}0{DM;Tnb?eaUM#-ccjd$mgPJ^!wJ4Ua{P+;C-C7)2X5a*e5sUH`zQ0E=B#!QqnY>LCZ=(a$gF|F%{r` zkl9tm=p<(V{L?+;7O44j%iT=zJ?>V51vrz91jpEEa8tJTY{A{F$s$Ib`O-#lDY@bS z9L^>m| zj`+Ms-FeAYDhZyw-35UZH*T!UFE+)nwvry7PU2QXL2QMI73Bigsc;AE&%A$iovgLy zSnJ2df}%<@S=)tYgES+~8Yc5l6SV#k$TM81jMtV{;A=h2jgHcYEG?4*+_Ih#-Jxa? zdDs>H`umrXaUy+lUCmvpz)msu99*KW7Ti8@?{2$~?Ny0Bywh+9L6uHSN(BM;f1GO( zse{hX`i-#Byjc*-=U&myxtaW4x*$X427F6ID@R}wn|RgjyT(P%Yq ze8+_2D-tGLZucYDaik#5GymG*<_iWEA>tGJJVv`1Dn z#crjMD{kx5F+!%pvCP+;isCE2KYEZoQmWh5+vawMU&k$8={jk1&HeM%CwohwMC^@p z5;-gbso?&=SRl$W|LJq?kRoRjhyw78k`jTFHzX!LWz@U@rwK9|IGn;nT}&Y9ih-HR zN`y)$4xcxMZA0gTZpRaxC`%`DdujoMEfybWLmQ2Lc?mZ1wV4SOvXi zf=V`=@aX|(NMuP_xwtUgNjmf!)4Fos`fvj!2qTANbu-dH5RkvPJAZV#+>K}KfoSwL zW=WED8y!8Q2%)WXr022$*Y$2JTz)65d!|itow14(z6gOiUDl%~yfNhS9H?%yKzedT zEcG|1Y2JxL(aXGj;C@?=deN=3Ykgho=P?lkG9$|GiAKzz$LGv&S9E-g1UD-TY+;)hUH%|7;oP~-KV_6*w=^Fh?{pH*-9-hi! z`b1PNWxdLj&0XV?-2q>Um^wh>*^tIW6~iSgbc~e(X4-Az%vo8e(pcXOs&>j3PNpQ7!gv^TVnoXkeBW5#e;a9F2TS9yR?@LbIhqK9(;9tA zk~%5GLeTUjH?&MR3m&aW+8lc{gNEtYHGTR!5yr|vy*b=mf*&stsMa!l zke6xVIwoiP(tWf)kSC!CkfIP@($molmCq2bo~5qQrN#J0)@ne2t_1fvp%YLop2{)nS&gA3-G?1oin$3n}XJ_)5 zIJT}d2^~_0>3q%UqUu6Ju&&&K4{^svrU$|h?xW!PwVCneJ`qx$+-CO)O~1=$nH z7cs9)E^$}M45u^DGeyACBpHjz^mT@x%)BI~jUx;vNO~=M?i`^jxB?hO7(d&m4dmz)txUFI^VqK0!r{fOv6s1_H?~APhb}|hHHJeU z2%|1NFC8#*RI_sh>M~_oO~)A-b=e`WQ*o%ubsPasX;f12DYoT{lY6B>n%k3dZX3Tm z7IyNc-e-I1)F|W82iEp>srTPSMX1SLBc{sjHvTT7)ax!!R7A}2jo}OH%vqOb2r44A znr(Cw-zP?DcIq7qwrk3_A=B2K?@u`xdvtd$xCIi~>w?_&10{%8VFb&x=~d60rH_d= z0dvj~#)>eCSZw0xX+sc2@vGmSD@tWD!_V48HNB1!NXqLA{cLd7 z1{>Bo<=)HxP)EsR=b0sAlf!^G;>IPj`y~skPa<0@48?AVi`hFq$|x;bqazcWU5GP! zgMivzP!KC11xtC>sK=**C?Lw&!KW;Vfghz-y>LXHDLUM5^I9@`^l}~{?SDKft zJ*WuWDlwg5xL#l?K_?FR=Xl`Bc!xI^gr{KPwP``V^+d hrw~0e{J2kO((r*Wwx@d*{2yQfEj3-$V&zL={|`0G{qX<* literal 0 HcmV?d00001 diff --git a/docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/index.mdx b/docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/index.mdx new file mode 100644 index 0000000000..b5773abc52 --- /dev/null +++ b/docs/metatype.dev/blog/2024-09-26-introducing-grpc-runtime/index.mdx @@ -0,0 +1,110 @@ +# Introducing gRPC Runtime + +We're excited to announce the new gRPC Runtime feature in Metatype, further enhancing our platform's ability to create versatile and powerful backends through typegraphs. + +## What is gRPC? + +gRPC, or **g**oogle **R**emote **P**rocedure **C**all, is a high-performance, open-source communication framework initially developed by Google. It enables **efficient and fast communication between microservices** in a distributed system, making it ideal for modern backend architectures. + +Unlike traditional HTTP APIs that use JSON, gRPC relies on **Protocol Buffers** (protobufs) for serializing data, which are more compact and faster to process. This approach allows gRPC to support high-throughput, low-latency communication, which is crucial for applications where speed and efficiency matter, such as in real-time data processing or large-scale distributed systems. + +Key benefits of gRPC include: +- **Cross-language support**: gRPC supports multiple programming languages, allowing services written in different languages to communicate seamlessly. +- **Strong type safety**: Protocol Buffers ensure type-safe communication, catching errors early and improving reliability. +- **Bidirectional streaming**: gRPC allows for client and server streaming, enabling continuous data transfer in both directions, ideal for applications like real-time analytics. + +In short, gRPC is well-suited for high-performance, scalable backend systems where speed and type safety are essential. + +## Why gRPC Matters for Metatype + +Metatype is a platform that enables developers to create **typegraphs**—strongly-typed, composable backend structures that can support multiple protocols and runtime environments. With the introduction of the gRPC Runtime, Metatype allows developers to incorporate gRPC services into these typegraphs, further enhancing the platform’s versatility. + +By integrating gRPC, Metatype empowers developers to: +- **Expose gRPC services via GraphQL or HTTP endpoints**, making them accessible to clients in a way that best suits their needs. +- **Compose gRPC services with other backend components**, such as databases or other APIs, to create powerful and cohesive backend systems. + +## Diagram: gRPC and Metatype Integration + +
+ ![gRPC and Metatype Integration Diagram](./GrpcMetatype.drawio.png) +
+ + +*Metatype’s gRPC Runtime allows developers to integrate gRPC services into their typegraphs, enabling seamless interaction with gRPC services in the backend.* + +## Introducing gRPC Runtime in Metatype + +The new gRPC Runtime is the latest addition to Metatype's suite of runtimes, joining existing options like the HTTP runtime. This expansion allows you to incorporate gRPC services into your typegraphs, further enhancing the versatility of your Metatype-powered backends. + +## Key Technical Details + +### Architecture +The gRPC Runtime integrates seamlessly with Metatype's existing architecture. It acts as a bridge between your typegraph and external gRPC services, allowing you to incorporate gRPC calls alongside other runtime operations in your backend logic. + +1. **GrpcRuntime Class**: The main interface for defining gRPC interactions within your typegraph. +2. **proto_file**: Path to the .proto file that defines the gRPC service. +3. **endpoint**: The gRPC server address in the format `tcp://:`. +4. **call method**: Creates a typegraph function for gRPC method calls. + +### Implementation + +Here's how the gRPC Runtime fits into a Metatype typegraph: + +```python +from typegraph import Graph, Policy, typegraph +from typegraph.graph.params import Cors +from typegraph.runtimes.grpc import GrpcRuntime + +@typegraph( + cors=Cors(allow_origin=["https://metatype.dev", "http://localhost:3000"]), +) +def create_grpc_typegraph(g: Graph): + # The GrpcRuntime acts as a bridge between your typegraph and external gRPC services + grpc_runtime = GrpcRuntime( + # proto_file: Path to the .proto file that defines the gRPC service + proto_file="proto/helloworld.proto", + # endpoint: The gRPC server address in the format tcp://: + endpoint="tcp://localhost:4770" + ) + + # Expose the gRPC service within your typegraph + # This allows you to incorporate gRPC calls alongside other runtime operations + g.expose( + Policy.public(), + # call method: Creates a typegraph function for gRPC method calls + # It uses the full path to the gRPC method: /package_name.service_name/method_name + greet=grpc_runtime.call("/helloworld.Greeter/SayHello"), + ) + +# The typegraph can now be exposed via GraphQL or HTTP, +# allowing clients to interact with the gRPC service through Metatype's unified interface +``` +This implementation demonstrates how the gRPC Runtime integrates with your typegraph, allowing you to: + +1. Define gRPC service connections using the GrpcRuntime class +2. Expose gRPC methods as part of your typegraph +3. Combine gRPC functionality with other Metatype features and runtimes + +By structuring your gRPC interactions this way, you can seamlessly incorporate gRPC services into your larger Metatype-powered backend, alongside other data sources and business logic. + +## Benefits for Developers + +1. **Unified Backend Structure**: Incorporate gRPC services alongside other protocols and data sources in a single, coherent typegraph. +2. **Type Safety**: Leverage Metatype's strong typing system in conjunction with gRPC's protocol buffers for end-to-end type safety. +3. **Flexible Exposure**: Easily expose your gRPC services via GraphQL or HTTP endpoints, allowing clients to interact with them using their preferred protocol. +4. **Composability**: Combine gRPC calls with other runtime operations, database queries, or business logic within your typegraph. + +## Getting Started + +To start using the gRPC Runtime in your Metatype project: + +1. Ensure you have the latest version of Metatype installed. +2. Prepare your .proto files for the gRPC services you want to integrate. +3. Set up your typegraph as shown in the example above, incorporating the GrpcRuntime. +4. Configure your Metatype backend to expose the typegraph via GraphQL or HTTP as needed. + +## Conclusion + +The addition of the gRPC Runtime to Metatype further solidifies its position as a comprehensive platform for building robust, type-safe backends. By allowing seamless integration of gRPC services alongside other protocols and data sources, Metatype empowers developers to create versatile and powerful backend systems with ease. + +For more detailed documentation, code examples, and best practices, check out our [official Metatype docs](https://metatype.dev/docs)#. From 2d177ec4e8e03497a0d28dc2bdbbf355bc0dd499 Mon Sep 17 00:00:00 2001 From: michael-0acf4 Date: Fri, 8 Nov 2024 13:21:37 +0300 Subject: [PATCH 6/9] chore!: license change to MPL Version 2.0 (#899) #### Migration notes All license headers has changed to MPL 2.0. - [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --------- Signed-off-by: michael-0acf4 --- .pre-commit-config.yaml | 28 +- LICENSE.md | 378 ++++++++++++++++-- .../typegate/authentication/oauth2.tsx | 4 +- .../tutorials/metatype-basics/md2html.ts.src | 4 +- docs/metatype.dev/globals.d.ts | 4 +- .../src/components/BlogIntro/index.tsx | 4 +- .../src/components/ChoicePicker/index.tsx | 4 +- .../src/components/CompareLandscape.tsx | 4 +- .../src/components/DocButton/index.tsx | 4 +- .../src/components/Features/index.tsx | 4 +- .../src/components/Giscus/index.tsx | 4 +- .../src/components/MiniQL/index.tsx | 4 +- .../src/components/MiniQL/memory_store.ts | 4 +- .../src/components/Newsletter/index.tsx | 4 +- .../PythonPackageManagerTabs/index.tsx | 4 +- .../src/components/SDKTabs/index.tsx | 4 +- .../src/components/TGExample/index.tsx | 4 +- .../components/TsPackageManagerTabs/index.tsx | 4 +- .../src/components/animations/animated.tsx | 4 +- .../components/animations/animated_canvas.tsx | 4 +- .../src/components/animations/block.tsx | 4 +- .../src/components/animations/doublearrow.tsx | 4 +- .../src/components/animations/hooks.tsx | 4 +- .../src/components/animations/textarrow.tsx | 4 +- docs/metatype.dev/src/components/castles.tsx | 4 +- docs/metatype.dev/src/pages/index.tsx | 4 +- .../src/states/package_manager.ts | 4 +- docs/metatype.dev/src/states/sdk.ts | 4 +- examples/typegraphs/scripts/md2html.ts.src | 4 +- src/common/src/archive.rs | 4 +- src/common/src/graphql.rs | 4 +- src/common/src/grpc.rs | 4 +- src/common/src/lib.rs | 4 +- src/common/src/node.rs | 4 +- src/common/src/typegraph/mod.rs | 4 +- .../src/typegraph/parameter_transform.rs | 4 +- src/common/src/typegraph/runtimes/deno.rs | 4 +- src/common/src/typegraph/runtimes/graphql.rs | 4 +- src/common/src/typegraph/runtimes/grpc.rs | 4 +- src/common/src/typegraph/runtimes/http.rs | 4 +- src/common/src/typegraph/runtimes/kv.rs | 4 +- src/common/src/typegraph/runtimes/mod.rs | 4 +- src/common/src/typegraph/runtimes/prisma.rs | 4 +- src/common/src/typegraph/runtimes/python.rs | 4 +- src/common/src/typegraph/runtimes/random.rs | 4 +- src/common/src/typegraph/runtimes/s3.rs | 4 +- .../src/typegraph/runtimes/substantial.rs | 4 +- src/common/src/typegraph/runtimes/temporal.rs | 4 +- src/common/src/typegraph/runtimes/wasm.rs | 4 +- src/common/src/typegraph/types.rs | 4 +- src/common/src/typegraph/utils.rs | 4 +- src/common/src/typegraph/validator/common.rs | 4 +- src/common/src/typegraph/validator/input.rs | 4 +- src/common/src/typegraph/validator/mod.rs | 4 +- src/common/src/typegraph/validator/types.rs | 4 +- src/common/src/typegraph/validator/value.rs | 4 +- src/common/src/typegraph/visitor.rs | 4 +- src/metagen/fixtures/client_ts/main.ts | 4 +- src/metagen/fixtures/tg2.ts | 4 +- src/mt_deno/src/lib.rs | 4 +- src/pyrt_wit_wire/pyproject.toml | 2 +- src/typegate/engine/00_runtime.js | 10 +- src/typegate/engine/bindings.ts | 246 ++++++------ src/typegate/engine/build.rs | 4 +- src/typegate/engine/runtime.d.ts | 98 ++--- src/typegate/engine/src/ext.rs | 4 +- src/typegate/engine/src/lib.rs | 4 +- src/typegate/engine/src/runtimes.rs | 4 +- src/typegate/engine/src/runtimes/grpc.rs | 4 +- src/typegate/engine/src/runtimes/prisma.rs | 4 +- .../engine/src/runtimes/prisma/engine.rs | 4 +- .../engine/src/runtimes/prisma/migration.rs | 4 +- .../engine/src/runtimes/prisma/utils.rs | 4 +- .../engine/src/runtimes/substantial.rs | 4 +- src/typegate/engine/src/runtimes/temporal.rs | 4 +- src/typegate/engine/src/runtimes/wasm.rs | 4 +- .../engine/src/runtimes/wasm/conversion.rs | 4 +- src/typegate/engine/src/runtimes/wit_wire.rs | 4 +- src/typegate/engine/src/typegraph.rs | 4 +- src/typegate/src/config.ts | 15 +- src/typegate/src/config/loader.ts | 4 +- src/typegate/src/config/shared.ts | 8 +- src/typegate/src/config/types.ts | 4 +- src/typegate/src/crypto.ts | 4 +- src/typegate/src/engine/computation_engine.ts | 4 +- src/typegate/src/engine/planner/args.ts | 4 +- .../src/engine/planner/dependency_resolver.ts | 4 +- .../src/engine/planner/injection_utils.ts | 4 +- src/typegate/src/engine/planner/mod.ts | 4 +- .../engine/planner/parameter_transformer.ts | 4 +- src/typegate/src/engine/planner/policies.ts | 4 +- src/typegate/src/engine/query_engine.ts | 4 +- src/typegate/src/engine/stage_id.ts | 4 +- .../src/engine/typecheck/code_generator.ts | 4 +- src/typegate/src/engine/typecheck/common.ts | 4 +- .../typecheck/inline_validators/boolean.ts | 4 +- .../typecheck/inline_validators/common.ts | 4 +- .../inline_validators/constraints.ts | 4 +- .../typecheck/inline_validators/file.ts | 4 +- .../typecheck/inline_validators/list.ts | 4 +- .../engine/typecheck/inline_validators/mod.ts | 4 +- .../typecheck/inline_validators/number.ts | 4 +- .../typecheck/inline_validators/object.ts | 4 +- .../typecheck/inline_validators/string.ts | 4 +- src/typegate/src/engine/typecheck/input.ts | 4 +- .../src/engine/typecheck/matching_variant.ts | 4 +- src/typegate/src/engine/typecheck/result.ts | 76 ++-- src/typegate/src/errors.ts | 4 +- src/typegate/src/libs/jsonpath.ts | 4 +- src/typegate/src/log.ts | 4 +- src/typegate/src/main.ts | 4 +- src/typegate/src/runtimes/Runtime.ts | 13 +- src/typegate/src/runtimes/deno.ts | 4 +- src/typegate/src/runtimes/deno/deno.ts | 11 +- .../src/runtimes/deno/deno_messenger.ts | 4 +- .../src/runtimes/deno/shared_types.ts | 6 +- src/typegate/src/runtimes/deno/worker.ts | 8 +- src/typegate/src/runtimes/graphql.ts | 4 +- src/typegate/src/runtimes/grpc.ts | 4 +- src/typegate/src/runtimes/http.ts | 4 +- src/typegate/src/runtimes/kv.ts | 6 +- src/typegate/src/runtimes/mod.ts | 8 +- .../patterns/messenger/async_messenger.ts | 4 +- .../messenger/lazy_async_messenger.ts | 4 +- .../src/runtimes/patterns/messenger/types.ts | 4 +- src/typegate/src/runtimes/prisma.ts | 4 +- .../runtimes/prisma/hooks/generate_schema.ts | 48 ++- src/typegate/src/runtimes/prisma/hooks/mod.ts | 4 +- .../runtimes/prisma/hooks/run_migrations.ts | 4 +- src/typegate/src/runtimes/prisma/migration.ts | 4 +- src/typegate/src/runtimes/prisma/mod.ts | 4 +- src/typegate/src/runtimes/prisma/prisma.ts | 4 +- src/typegate/src/runtimes/prisma/types.ts | 4 +- src/typegate/src/runtimes/python.ts | 4 +- src/typegate/src/runtimes/random.ts | 4 +- src/typegate/src/runtimes/s3.ts | 4 +- src/typegate/src/runtimes/substantial.ts | 39 +- .../src/runtimes/substantial/agent.ts | 78 ++-- .../src/runtimes/substantial/deno_context.ts | 32 +- .../src/runtimes/substantial/types.ts | 6 +- .../src/runtimes/substantial/worker.ts | 43 +- .../substantial/workflow_worker_manager.ts | 24 +- src/typegate/src/runtimes/temporal.ts | 4 +- src/typegate/src/runtimes/typegate.ts | 4 +- src/typegate/src/runtimes/typegraph.ts | 4 +- .../runtimes/utils/graphql_forward_vars.ts | 4 +- .../src/runtimes/utils/graphql_inline_vars.ts | 4 +- src/typegate/src/runtimes/utils/http.ts | 4 +- src/typegate/src/runtimes/wasm_reflected.ts | 4 +- src/typegate/src/runtimes/wasm_wire.ts | 4 +- src/typegate/src/runtimes/wit_wire/mod.ts | 4 +- src/typegate/src/services/artifact_service.ts | 4 +- src/typegate/src/services/auth/cookies.ts | 4 +- src/typegate/src/services/auth/mod.ts | 4 +- .../src/services/auth/protocols/basic.ts | 4 +- .../src/services/auth/protocols/internal.ts | 4 +- .../src/services/auth/protocols/jwt.ts | 4 +- .../src/services/auth/protocols/oauth2.ts | 10 +- .../src/services/auth/protocols/protocol.ts | 4 +- src/typegate/src/services/auth/routes/mod.ts | 4 +- src/typegate/src/services/auth/routes/take.ts | 4 +- .../src/services/auth/routes/validate.ts | 4 +- src/typegate/src/services/graphql_service.ts | 9 +- src/typegate/src/services/info_service.ts | 4 +- src/typegate/src/services/middlewares.ts | 4 +- .../src/services/playground_service.ts | 4 +- src/typegate/src/services/responses.ts | 4 +- src/typegate/src/services/rest_service.ts | 4 +- src/typegate/src/sync/mod.ts | 4 +- src/typegate/src/sync/replicated_map.ts | 13 +- src/typegate/src/sync/typegraph.ts | 4 +- src/typegate/src/system_typegraphs.ts | 4 +- src/typegate/src/transports/graphql/gq.ts | 4 +- .../src/transports/graphql/graphql.ts | 4 +- .../src/transports/graphql/request_parser.ts | 4 +- .../src/transports/graphql/typegraph.ts | 4 +- src/typegate/src/transports/graphql/utils.ts | 4 +- .../transports/rest/rest_schema_generator.ts | 4 +- src/typegate/src/typegate/artifacts/local.ts | 6 +- src/typegate/src/typegate/artifacts/mod.ts | 4 +- src/typegate/src/typegate/artifacts/shared.ts | 30 +- src/typegate/src/typegate/hooks.ts | 4 +- src/typegate/src/typegate/memory_register.ts | 4 +- src/typegate/src/typegate/mod.ts | 4 +- src/typegate/src/typegate/no_limiter.ts | 4 +- src/typegate/src/typegate/rate_limiter.ts | 4 +- src/typegate/src/typegate/register.ts | 4 +- src/typegate/src/typegraph/mod.ts | 20 +- src/typegate/src/typegraph/type_node.ts | 4 +- src/typegate/src/typegraph/types.ts | 4 +- src/typegate/src/typegraph/utils.ts | 4 +- src/typegate/src/typegraph/versions.ts | 4 +- src/typegate/src/typegraph/visitor.ts | 4 +- src/typegate/src/typegraphs/introspection.py | 3 +- .../src/typegraphs/prisma_migration.py | 3 + src/typegate/src/typegraphs/typegate.py | 3 +- src/typegate/src/types.ts | 4 +- src/typegate/src/utils.ts | 18 +- src/typegate/src/utils/hash.ts | 4 +- src/typegate/src/worker_utils.ts | 8 +- src/typegate/standalone/src/config.rs | 4 +- src/typegate/standalone/src/logger.rs | 4 +- src/typegate/standalone/src/main.rs | 4 +- src/typegraph/deno/src/runtimes/python.ts | 10 +- .../deno/src/runtimes/substantial.ts | 12 +- src/typegraph/deno/src/tg_deploy.ts | 4 +- src/typegraph/deno/src/typegraph.ts | 1 - src/typegraph/deno/src/utils/func_utils.ts | 5 +- src/xtask/src/deno.rs | 4 +- src/xtask/src/main.rs | 4 +- tests/artifacts/artifacts_test.ts | 4 +- tests/auth/auth_test.ts | 4 +- tests/auto/auto_test.ts_ | 4 +- tests/auto/test/test.py | 3 +- tests/common_utils/proposition_test.ts | 4 +- tests/common_utils/url_test.ts | 4 +- tests/crypto/crypto_test.ts | 4 +- tests/dedup/tg.ts | 4 +- tests/docs/how-tos/prog_deploy/prog_deploy.ts | 4 +- .../how-tos/prog_deploy/prog_deploy_test.ts | 4 +- tests/docs/how-tos/prog_deploy/prog_remove.ts | 4 +- .../how-tos/prog_deploy/scripts/say_hello.ts | 4 +- tests/e2e/cli/deploy_test.ts | 4 +- tests/e2e/cli/dev_test.ts | 4 +- tests/e2e/cli/typegraphs/deps.ts | 3 + tests/e2e/cli/undeploy_test.ts | 4 +- tests/e2e/cli/watch_test.ts | 8 +- tests/e2e/nextjs/apollo/pages/api/apollo.ts | 4 +- tests/e2e/nextjs/apollo/tailwind.config.ts | 4 +- tests/e2e/nextjs/apollo_test.ts | 4 +- tests/e2e/published/published_test.ts | 4 +- tests/e2e/self_deploy/scripts/main.ts | 4 +- tests/e2e/self_deploy/self_deploy.ts | 4 +- tests/e2e/self_deploy/self_deploy_test.ts | 4 +- tests/e2e/templates/templates_test.ts | 4 +- .../__snapshots__/typegraph_test.ts.snap | 8 +- tests/e2e/typegraph/typegraph_test.ts | 4 +- .../e2e/typegraph/typegraphs/deno/complex.ts | 4 +- .../typegraphs/deno/multiple_runtimes.ts | 4 +- .../typegraphs/deno/scripts/three.ts | 4 +- tests/e2e/typegraph/typegraphs/deno/simple.ts | 4 +- .../typegraphs/python/scripts/three.ts | 4 +- tests/e2e/typegraph/validator_test.ts | 4 +- tests/e2e/website/website_test.ts | 4 +- tests/graphql/graphql_test.ts | 4 +- tests/graphql/request_parser_test.ts | 4 +- tests/http_utils/http_utils_test.ts | 4 +- tests/importers/importers_test.ts.disabled | 4 +- tests/injection/injection.ts | 4 +- tests/injection/injection_test.ts | 4 +- tests/injection/random_injection.ts | 4 +- tests/injection/random_injection_test.ts | 4 +- tests/internal/internal_test.ts | 4 +- tests/internal/py/logic.py | 4 +- tests/internal/ts/logic.ts | 4 +- tests/introspection/introspection_test.ts | 4 +- tests/introspection/union_either_test.ts | 4 +- tests/metagen/metagen_test.ts | 4 +- tests/metagen/typegraphs/identities/rs/lib.rs | 4 +- .../typegraphs/identities/ts/handlers.ts | 4 +- tests/metagen/typegraphs/metagen.ts | 4 +- tests/metagen/typegraphs/sample.ts | 4 +- tests/metagen/typegraphs/sample/ts/main.ts | 4 +- tests/misc/publish_test.ts | 4 +- tests/misc/typegate_config_test.ts.disabled | 4 +- tests/multi_typegraph/multi_typegraph.ts | 4 +- tests/multi_typegraph/multi_typegraph_test.ts | 4 +- tests/nesting/nesting_test.ts | 4 +- tests/params/apply_test.ts | 4 +- tests/planner/default_args_test.ts | 4 +- tests/planner/planner_test.ts | 4 +- tests/policies/policies_jwt_test.ts | 4 +- tests/policies/policies_test.ts | 4 +- tests/policies/ts/effects.ts | 4 +- tests/policies/ts/policies.ts | 4 +- tests/prisma_migrate/prisma_migrate_test.ts | 4 +- tests/query_parsers/query_parsers_test.ts | 4 +- tests/rate_limiter/rate_limiter_test.ts | 4 +- .../invalid_ref_test.ts | 4 +- tests/rest/custom/custom_loader.ts | 4 +- tests/rest/rest_custom_loader.ts | 4 +- tests/rest/rest_schema.ts | 4 +- tests/rest/rest_test.ts | 4 +- tests/runtimes/deno/deno_dep.ts | 4 +- tests/runtimes/deno/deno_dir.ts | 4 +- tests/runtimes/deno/deno_dir_test.ts | 4 +- .../runtimes/deno/deno_duplicate_artifact.ts | 4 +- tests/runtimes/deno/deno_glob_test.ts | 4 +- tests/runtimes/deno/deno_globs.ts | 4 +- tests/runtimes/deno/deno_sync_test.ts | 4 +- tests/runtimes/deno/deno_test.ts | 4 +- tests/runtimes/deno/deno_typescript.ts | 4 +- tests/runtimes/deno/dynamic/1.ts | 4 +- tests/runtimes/deno/dynamic/2.ts | 4 +- tests/runtimes/deno/reload/template.ts | 4 +- tests/runtimes/deno/ts/deno.ts | 4 +- tests/runtimes/deno/ts/dep/main.ts | 4 +- tests/runtimes/deno/ts/dep/nested/dep.ts | 4 +- tests/runtimes/deno/ts/math-npm.ts | 4 +- tests/runtimes/deno/ts/math.ts | 4 +- tests/runtimes/graphql/graphql_test.ts | 4 +- .../graphql/typegraphs/deno/graphql.ts | 4 +- tests/runtimes/grpc/geography.py | 4 +- tests/runtimes/grpc/grpc_test.ts | 4 +- tests/runtimes/grpc/helloworld.py | 4 +- tests/runtimes/grpc/helloworld.ts | 4 +- tests/runtimes/grpc/maths.py | 4 +- tests/runtimes/http/http_content_type_test.ts | 4 +- tests/runtimes/http/http_test.ts | 4 +- tests/runtimes/kv/kv.py | 4 +- tests/runtimes/kv/kv.ts | 4 +- tests/runtimes/kv/kv_test.ts | 4 +- .../prisma/full_prisma_mapping_test.ts | 4 +- .../runtimes/prisma/graphql_variables_test.ts | 4 +- tests/runtimes/prisma/mixed_runtime_test.ts | 4 +- tests/runtimes/prisma/multi_relations_test.ts | 4 +- .../runtimes/prisma/multiple_runtimes_test.ts | 4 +- tests/runtimes/prisma/normal_1_1.ts | 4 +- tests/runtimes/prisma/one_to_many_test.ts | 4 +- tests/runtimes/prisma/one_to_one_test.ts | 4 +- tests/runtimes/prisma/optional_1_n.ts | 4 +- .../runtimes/prisma/prisma_edgecases_test.ts | 4 +- tests/runtimes/prisma/prisma_test.ts | 4 +- tests/runtimes/prisma/query_builder_test.ts | 4 +- .../runtimes/prisma/schema_generation_test.ts | 4 +- tests/runtimes/python/python.ts | 4 +- tests/runtimes/python/python_dir.ts | 4 +- tests/runtimes/python/python_dir_test.ts | 4 +- .../python/python_duplicate_artifact.ts | 4 +- tests/runtimes/python/python_glob_test.ts | 4 +- tests/runtimes/python/python_globs.ts | 4 +- tests/runtimes/python/python_no_artifact.ts | 4 +- tests/runtimes/python/python_sync_test.ts | 4 +- tests/runtimes/python/python_test.ts | 4 +- tests/runtimes/random/random.ts | 4 +- tests/runtimes/random/random_test.ts | 4 +- tests/runtimes/s3/s3.ts | 4 +- tests/runtimes/s3/s3_test.ts | 4 +- tests/runtimes/substantial/kv_like_test.ts | 4 +- tests/runtimes/substantial/redis_test.ts | 4 +- tests/runtimes/temporal/temporal.ts | 4 +- tests/runtimes/temporal/temporal_test.ts | 4 +- tests/runtimes/temporal/worker/activities.ts | 4 +- tests/runtimes/temporal/worker/worker.ts | 4 +- tests/runtimes/temporal/worker/workflows.ts | 4 +- .../runtimes/typegate/typegate_prisma_test.ts | 4 +- .../typegate/typegate_runtime_test.ts | 4 +- tests/runtimes/wasm_reflected/rust/src/lib.rs | 4 +- .../runtimes/wasm_reflected/wasm_reflected.ts | 4 +- .../wasm_reflected/wasm_reflected_test.ts | 4 +- .../runtimes/wasm_reflected/wasm_sync_test.ts | 4 +- tests/runtimes/wasm_wire/rust/lib.rs | 4 +- tests/runtimes/wasm_wire/wasm_duplicate.ts | 4 +- tests/runtimes/wasm_wire/wasm_sync_test.ts | 4 +- tests/runtimes/wasm_wire/wasm_wire.ts | 4 +- tests/runtimes/wasm_wire/wasm_wire_test.ts | 4 +- tests/schema_validation/circular_test.ts | 4 +- tests/schema_validation/ts/circular.ts | 4 +- tests/simple/class_syntax_test.ts | 4 +- tests/simple/error_message_test.ts | 4 +- tests/simple/simple_test.ts | 4 +- tests/sync/sync_config_test.ts | 4 +- tests/sync/typegraph_sync_test.ts.disable | 4 +- tests/type_nodes/array_of_optional_test.ts | 4 +- tests/type_nodes/either_test.ts | 4 +- tests/type_nodes/ts/either/user_register.ts | 4 +- tests/type_nodes/ts/union/color_converter.ts | 4 +- tests/type_nodes/ts/union/phone_register.ts | 4 +- tests/type_nodes/ts/union/vec_normalizer.ts | 4 +- tests/type_nodes/union_node_attr_test.ts | 4 +- .../type_nodes/union_node_quantifier_test.ts | 4 +- tests/type_nodes/union_test.ts | 4 +- tests/typecheck/input_validator_test.ts | 4 +- tests/typecheck/reduce.ts | 4 +- tests/typecheck/reduce_syntax_test.ts | 4 +- tests/typecheck/type_alias_test.ts | 4 +- tests/typecheck/typecheck.py | 3 +- tests/typecheck/typecheck_test.ts | 4 +- tests/typegraph/version_test.ts | 4 +- tests/typename/typename_test.ts | 4 +- tests/utils/assert.ts | 4 +- tests/utils/autotest.ts | 4 +- tests/utils/bindings_test.ts | 4 +- tests/utils/database.ts | 4 +- tests/utils/date.ts | 4 +- tests/utils/dir.ts | 4 +- tests/utils/hooks.ts | 4 +- tests/utils/meta.ts | 4 +- tests/utils/migrations.ts | 4 +- tests/utils/mock_fetch.ts | 4 +- tests/utils/mod.ts | 4 +- tests/utils/process.ts | 4 +- tests/utils/query/file_extractor.ts | 4 +- tests/utils/query/graphql_query.ts | 4 +- tests/utils/query/mod.ts | 4 +- tests/utils/query/rest_query.ts | 4 +- tests/utils/router@0.0.5.ts | 4 +- tests/utils/s3.ts | 4 +- tests/utils/shell.ts | 4 +- tests/utils/single_register.ts | 4 +- tests/utils/test.ts | 4 +- tests/utils/test_module.ts | 4 +- tests/utils/tg_deploy_script.ts | 4 +- tests/vars/vars_test.ts | 4 +- tools/Dockerfile | 8 +- tools/Dockerfile.dockerignore | 2 +- tools/LICENSE-Elastic-2.0.md | 91 ----- tools/consts.ts | 4 +- tools/deps.ts | 4 +- tools/installs.ts | 4 +- tools/license-header-Elastic-2.0.txt | 2 - tools/tasks/build.ts | 4 +- tools/tasks/dev.ts | 4 +- tools/tasks/fetch.ts | 4 +- tools/tasks/gen.ts | 4 +- tools/tasks/install.ts | 4 +- tools/tasks/lint.ts | 4 +- tools/tasks/lock.ts | 4 +- tools/tasks/mod.ts | 19 +- tools/tasks/test.ts | 4 +- tools/test.ts | 4 +- tools/tree-view-web.ts | 4 +- tools/tree-view.ts | 4 +- tools/typegraph-size.ts | 4 +- tools/update.ts | 4 +- tools/utils.ts | 4 +- 426 files changed, 1639 insertions(+), 1358 deletions(-) delete mode 100644 tools/LICENSE-Elastic-2.0.md delete mode 100644 tools/license-header-Elastic-2.0.txt diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d0d648d2c1..b3b0e85b3f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -28,19 +28,19 @@ repos: - id: deno-fmt name: Deno format language: system - entry: bash -c 'cd typegate && deno fmt --ignore=native,src/typegraphs,tmp,tests/e2e/nextjs,tests/metagen/typegraphs/sample/ts/client.ts && cd ../dev && deno fmt && cd ../typegraph/deno && deno fmt --ignore=node_modules,dist && cd ../../libs/metagen/src && deno fmt' + entry: bash -c 'cd src/typegate && deno fmt --ignore=native,src/typegraphs,tmp,tests/e2e/nextjs,tests/metagen/typegraphs/sample/ts/client.ts && cd ../../tools && deno fmt && cd ../src/typegraph/deno && deno fmt --ignore=node_modules,dist && cd ../../../src/metagen/src && deno fmt' pass_filenames: false types: - ts - files: ^(typegate|dev|typegraph/deno)/ + files: ^(src/typegate|tools|src/typegraph/deno)/ - id: deno-lint name: Deno lint language: system - entry: bash -c 'cd typegate && deno lint --rules-exclude=no-explicit-any --ignore=native,tmp,tests/e2e/nextjs && cd ../dev && deno lint && cd ../libs/metagen/src/ && deno lint' + entry: bash -c 'cd src/typegate && deno lint --rules-exclude=no-explicit-any --ignore=native,tmp,tests/e2e/nextjs && cd ../../tools && deno lint && cd ../src/metagen/src/ && deno lint' pass_filenames: false types: - ts - files: ^(typegate|dev)/ + files: ^(src/typegate|tools)/ - id: es-lint name: Eslint website language: system @@ -100,17 +100,17 @@ repos: name: "License MPL-2.0 python" args: #- --remove-header - - --license-filepath=dev/license-header-MPL-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=#" - "--skip-license-insertion-comment=no-auto-license-header" types_or: - python files: ^typegraph/ - id: insert-license - name: "License Elastic-2.0 rust" + name: "License MPL-2.0 rust" args: #- --remove-header - - --license-filepath=dev/license-header-Elastic-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=//" - "--skip-license-insertion-comment=no-auto-license-header" - "--skip-license-insertion-comment=@generated" @@ -121,38 +121,38 @@ repos: name: "License MPL-2.0 rust" args: #- --remove-header - - --license-filepath=dev/license-header-MPL-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=//" - "--skip-license-insertion-comment=no-auto-license-header" types_or: - rust files: ^(meta-cli|typegraph|libs/metagen)/ - id: insert-license - name: "License Elastic-2.0 deno" + name: "License MPL-2.0 deno" args: #- --remove-header - - --license-filepath=dev/license-header-Elastic-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=//" - "--skip-license-insertion-comment=no-auto-license-header" - "--skip-license-insertion-comment=@generated" types_or: - ts - files: ^(typegate|dev)/ + files: ^(typegate|tools)/ - id: insert-license name: "License MPL-2.0 deno" args: #- --remove-header - - --license-filepath=dev/license-header-MPL-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=//" - "--skip-license-insertion-comment=no-auto-license-header" types_or: - ts files: ^typegraph/ - id: insert-license - name: "License Elastic-2.0 typescript" + name: "License MPL-2.0 typescript" args: #- --remove-header - - --license-filepath=dev/license-header-Elastic-2.0.txt + - --license-filepath=tools/license-header-MPL-2.0.txt - "--comment-style=//" - "--skip-license-insertion-comment=no-auto-license-header" types_or: diff --git a/LICENSE.md b/LICENSE.md index f92a4d1827..9c9d472da2 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,35 +1,359 @@ -# License +# Mozilla Public License Version 2.0 (MPL-2.0) -Copyright © Metatype OÜ. +1. Definitions -Portions of this repository are licensed as follows: +--- -- all third party components incorporated into the repository are licensed under - the original license provided by the owner of the applicable component (see - the license header of the relevant files) -- all content under `typegraph/` and `meta-cli/` is licensed under - [Mozilla Public License 2.0 (MPL-2.0)](./tools/LICENSE-MPL-2.0.md) -- all content outside the above-mentioned files or restrictions is available - under the [Elastic License 2.0 (Elastic-2.0)](./tools/LICENSE-Elastic-2.0.md) -- alternatively, the Metatype Commercial Licensing can take precedence in case - your usage requires ad-hoc clarifications (reach out!) +1.1. "Contributor" means each individual or legal entity that creates, +contributes to the creation of, or owns Covered Software. -**Are all of Metatype's components open source?** +1.2. "Contributor Version" means the combination of the Contributions of others +(if any) used by a Contributor and that particular Contributor's Contribution. -Strictly speaking, only the ones licensed under the MPL-2.0 license are. The -rest is not an open source software as define by the -[Open Source Initiative](https://opensource.org/osd). However, they belong to -the [Fair-code](https://faircode.io) family and promotes similar values (free to -use, distribution-friendly, open source code, easily extensible), yet allowing -to build a sustainable ecosystem for all around it. +1.3. "Contribution" means Covered Software of a particular Contributor. -We are strong believer in open source mindset and are committed to contribute -back as much as possible of the internals to the community as Metatype grows. +1.4. "Covered Software" means Source Code Form to which the initial Contributor +has attached the notice in Exhibit A, the Executable Form of such Source Code +Form, and Modifications of such Source Code Form, in each case including +portions thereof. -**Conditions or obligations of the license is not clear enough for me or my -company, what can I do?** +1.5. "Incompatible With Secondary Licenses" means -Fair-code licenses may have some fuzzy license boundaries, and we definitely do -not want this to stop your usage. In case there is any doubt, please reach out -to our support for clarification. We will be pleased to help you build the -future with Metatype as a core element. + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" means any form of the work other than Source Code Form. + +1.7. "Larger Work" means a work that combines Covered Software with other +material, in a separate file or files, that is not Covered Software. + +1.8. "License" means this document. + +1.9. "Licensable" means having the right to grant, to the maximum extent +possible, whether at the time of the initial grant or subsequently, any and all +of the rights conveyed by this License. + +1.10. "Modifications" means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor means any patent claim(s), including +without limitation, method, process, and apparatus claims, in any patent +Licensable by such Contributor that would be infringed, but for the grant of the +License, by the making, using, selling, offering for sale, having made, import, +or transfer of either its Contributions or its Contributor Version. + +1.12. "Secondary License" means either the GNU General Public License, Version +2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General +Public License, Version 3.0, or any later versions of those licenses. + +1.13. "Source Code Form" means the form of the work preferred for making +modifications. + +1.14. "You" (or "Your") means an individual or a legal entity exercising rights +under this License. For legal entities, "You" includes any entity that controls, +is controlled by, or is under common control with You. For purposes of this +definition, "control" means (a) the power, direct or indirect, to cause the +direction or management of such entity, whether by contract or otherwise, or (b) +ownership of more than fifty percent (50%) of the outstanding shares or +beneficial ownership of such entity. + +2. License Grants and Conditions + +--- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive +license: + +(a) under intellectual property rights (other than patent or trademark) +Licensable by such Contributor to use, reproduce, make available, modify, +display, perform, distribute, and otherwise exploit its Contributions, either on +an unmodified basis, with Modifications, or as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer for sale, +have made, import, and otherwise transfer either its Contributions or its +Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution become +effective for each Contribution on the date the Contributor first distributes +such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under this +License. No additional rights or licenses will be implied from the distribution +or licensing of Covered Software under this License. Notwithstanding Section +2.1(b) above, no patent license is granted by a Contributor: + +(a) for any code that a Contributor has removed from Covered Software; or + +(b) for infringements caused by: (i) Your and any other third party's +modifications of Covered Software, or (ii) the combination of its Contributions +with other software (except as part of its Contributor Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of its +Contributions. + +This License does not grant any rights in the trademarks, service marks, or +logos of any Contributor (except as may be necessary to comply with the notice +requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to distribute +the Covered Software under a subsequent version of this License (see Section +10.2) or under the terms of a Secondary License (if permitted under the terms of +Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its Contributions are +its original creation(s) or it has sufficient rights to grant the rights to its +Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under applicable +copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in +Section 2.1. + +3. Responsibilities + +--- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under the +terms of this License. You must inform recipients that the Source Code Form of +the Covered Software is governed by the terms of this License, and how they can +obtain a copy of this License. You may not attempt to alter or restrict the +recipients' rights in the Source Code Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code Form, as +described in Section 3.1, and You must inform recipients of the Executable Form +how they can obtain a copy of such Source Code Form by reasonable means in a +timely manner, at a charge no more than the cost of distribution to the +recipient; and + +(b) You may distribute such Executable Form under the terms of this License, or +sublicense it under different terms, provided that the license for the +Executable Form does not attempt to limit or alter the recipients' rights in the +Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, provided +that You also comply with the requirements of this License for the Covered +Software. If the Larger Work is a combination of Covered Software with a work +governed by one or more Secondary Licenses, and the Covered Software is not +Incompatible With Secondary Licenses, this License permits You to additionally +distribute such Covered Software under the terms of such Secondary License(s), +so that the recipient of the Larger Work may, at their option, further +distribute the Covered Software under the terms of either this License or such +Secondary License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices (including +copyright notices, patent notices, disclaimers of warranty, or limitations of +liability) contained within the Source Code Form of the Covered Software, except +that You may alter any license notices to the extent required to remedy known +factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, indemnity +or liability obligations to one or more recipients of Covered Software. However, +You may do so only on Your own behalf, and not on behalf of any Contributor. You +must make it absolutely clear that any such warranty, support, indemnity, or +liability obligation is offered by You alone, and You hereby agree to indemnify +every Contributor for any liability incurred by such Contributor as a result of +warranty, support, indemnity or liability terms You offer. You may include +additional disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + +--- + +If it is impossible for You to comply with any of the terms of this License with +respect to some or all of the Covered Software due to statute, judicial order, +or regulation then You must: (a) comply with the terms of this License to the +maximum extent possible; and (b) describe the limitations and the code they +affect. Such description must be placed in a text file included with all +distributions of the Covered Software under this License. Except to the extent +prohibited by statute or regulation, such description must be sufficiently +detailed for a recipient of ordinary skill to be able to understand it. + +5. Termination + +--- + +5.1. The rights granted under this License will terminate automatically if You +fail to comply with any of its terms. However, if You become compliant, then the +rights granted under this License from a particular Contributor are reinstated +(a) provisionally, unless and until such Contributor explicitly and finally +terminates Your grants, and (b) on an ongoing basis, if such Contributor fails +to notify You of the non-compliance by some reasonable means prior to 60 days +after You have come back into compliance. Moreover, Your grants from a +particular Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the first +time You have received notice of non-compliance with this License from such +Contributor, and You become compliant prior to 30 days after Your receipt of the +notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, counter-claims, and +cross-claims) alleging that a Contributor Version directly or indirectly +infringes any patent, then the rights granted to You by any and all Contributors +for the Covered Software under Section 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user +license agreements (excluding distributors and resellers) which have been +validly granted by You or Your distributors under this License prior to +termination shall survive termination. + +--- + +- + - +- + 6. Disclaimer of Warranty * +- ------------------------- * +- + - +- Covered Software is provided under this License on an "as is" * +- basis, without warranty of any kind, either expressed, implied, or * +- statutory, including, without limitation, warranties that the * +- Covered Software is free of defects, merchantable, fit for a * +- particular purpose or non-infringing. The entire risk as to the * +- quality and performance of the Covered Software is with You. * +- Should any Covered Software prove defective in any respect, You * +- (not any Contributor) assume the cost of any necessary servicing, * +- repair, or correction. This disclaimer of warranty constitutes an * +- essential part of this License. No use of any Covered Software is * +- authorized under this License except under this disclaimer. * +- + - + +--- + +--- + +- + - +- + 7. Limitation of Liability * +- -------------------------- * +- + - +- Under no circumstances and under no legal theory, whether tort * +- (including negligence), contract, or otherwise, shall any * +- Contributor, or anyone who distributes Covered Software as * +- permitted above, be liable to You for any direct, indirect, * +- special, incidental, or consequential damages of any character * +- including, without limitation, damages for lost profits, loss of * +- goodwill, work stoppage, computer failure or malfunction, or any * +- and all other commercial damages or losses, even if such party * +- shall have been informed of the possibility of such damages. This * +- limitation of liability shall not apply to liability for death or * +- personal injury resulting from such party's negligence to the * +- extent applicable law prohibits such limitation. Some * +- jurisdictions do not allow the exclusion or limitation of * +- incidental or consequential damages, so this exclusion and * +- limitation may not apply to You. * +- + - + +--- + +8. Litigation + +--- + +Any litigation relating to this License may be brought only in the courts of a +jurisdiction where the defendant maintains its principal place of business and +such litigation shall be governed by laws of that jurisdiction, without +reference to its conflict-of-law provisions. Nothing in this Section shall +prevent a party's ability to bring cross-claims or counter-claims. + +9. Miscellaneous + +--- + +This License represents the complete agreement concerning the subject matter +hereof. If any provision of this License is held to be unenforceable, such +provision shall be reformed only to the extent necessary to make it enforceable. +Any law or regulation which provides that the language of a contract shall be +construed against the drafter shall not be used to construe this License against +a Contributor. + +10. Versions of the License + +--- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section 10.3, +no one other than the license steward has the right to modify or publish new +versions of this License. Each version will be given a distinguishing version +number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version of the +License under which You originally received the Covered Software, or under the +terms of any subsequent version published by the license steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to create a +new license for such software, you may create and use a modified version of this +License if you rename the license and remove any references to the name of the +license steward (except to note that such modified license differs from this +License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With Secondary +Licenses under the terms of this version of the License, the notice described in +Exhibit B of this License must be attached. + +## Exhibit A - Source Code Form License Notice + +This Source Code Form is subject to the terms of the Mozilla Public License, v. +2.0. If a copy of the MPL was not distributed with this file, You can obtain one +at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +## Exhibit B - "Incompatible With Secondary Licenses" Notice + +This Source Code Form is "Incompatible With Secondary Licenses", as defined by +the Mozilla Public License, v. 2.0. diff --git a/docs/metatype.dev/docs/reference/typegate/authentication/oauth2.tsx b/docs/metatype.dev/docs/reference/typegate/authentication/oauth2.tsx index 49663b0cb1..a555e6a6b2 100644 --- a/docs/metatype.dev/docs/reference/typegate/authentication/oauth2.tsx +++ b/docs/metatype.dev/docs/reference/typegate/authentication/oauth2.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { useCallback, useState } from "react"; import Link from "@docusaurus/Link"; diff --git a/docs/metatype.dev/docs/tutorials/metatype-basics/md2html.ts.src b/docs/metatype.dev/docs/tutorials/metatype-basics/md2html.ts.src index 63aa78ea51..0bb183ad42 100644 --- a/docs/metatype.dev/docs/tutorials/metatype-basics/md2html.ts.src +++ b/docs/metatype.dev/docs/tutorials/metatype-basics/md2html.ts.src @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as marked from "https://deno.land/x/marked/mod.ts"; diff --git a/docs/metatype.dev/globals.d.ts b/docs/metatype.dev/globals.d.ts index 3d2e322a14..6e901d07dc 100644 --- a/docs/metatype.dev/globals.d.ts +++ b/docs/metatype.dev/globals.d.ts @@ -1,4 +1,4 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 declare module "*.scss"; diff --git a/docs/metatype.dev/src/components/BlogIntro/index.tsx b/docs/metatype.dev/src/components/BlogIntro/index.tsx index 2e6c85ada1..c2b6bf7dfb 100644 --- a/docs/metatype.dev/src/components/BlogIntro/index.tsx +++ b/docs/metatype.dev/src/components/BlogIntro/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; diff --git a/docs/metatype.dev/src/components/ChoicePicker/index.tsx b/docs/metatype.dev/src/components/ChoicePicker/index.tsx index fefac3fd6e..f5d58e0429 100644 --- a/docs/metatype.dev/src/components/ChoicePicker/index.tsx +++ b/docs/metatype.dev/src/components/ChoicePicker/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { PropsWithChildren } from "react"; diff --git a/docs/metatype.dev/src/components/CompareLandscape.tsx b/docs/metatype.dev/src/components/CompareLandscape.tsx index 47777b580c..d42f6ac7c9 100644 --- a/docs/metatype.dev/src/components/CompareLandscape.tsx +++ b/docs/metatype.dev/src/components/CompareLandscape.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; diff --git a/docs/metatype.dev/src/components/DocButton/index.tsx b/docs/metatype.dev/src/components/DocButton/index.tsx index 69faba3c87..24fde09c18 100644 --- a/docs/metatype.dev/src/components/DocButton/index.tsx +++ b/docs/metatype.dev/src/components/DocButton/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; import PaginatorNavLink from "@theme/PaginatorNavLink"; diff --git a/docs/metatype.dev/src/components/Features/index.tsx b/docs/metatype.dev/src/components/Features/index.tsx index e8e32bdf6b..be240d5c25 100644 --- a/docs/metatype.dev/src/components/Features/index.tsx +++ b/docs/metatype.dev/src/components/Features/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /* eslint-disable @typescript-eslint/no-var-requires */ diff --git a/docs/metatype.dev/src/components/Giscus/index.tsx b/docs/metatype.dev/src/components/Giscus/index.tsx index b84c18444c..4d1d3c15e8 100644 --- a/docs/metatype.dev/src/components/Giscus/index.tsx +++ b/docs/metatype.dev/src/components/Giscus/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; import { default as Component } from "@giscus/react"; diff --git a/docs/metatype.dev/src/components/MiniQL/index.tsx b/docs/metatype.dev/src/components/MiniQL/index.tsx index 6b58ed1b56..e2efe2ef74 100644 --- a/docs/metatype.dev/src/components/MiniQL/index.tsx +++ b/docs/metatype.dev/src/components/MiniQL/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { useMemo, useState } from "react"; import { createGraphiQLFetcher } from "@graphiql/toolkit"; diff --git a/docs/metatype.dev/src/components/MiniQL/memory_store.ts b/docs/metatype.dev/src/components/MiniQL/memory_store.ts index fd1a0728b7..37ee910859 100644 --- a/docs/metatype.dev/src/components/MiniQL/memory_store.ts +++ b/docs/metatype.dev/src/components/MiniQL/memory_store.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export class MemoryStorage { private map: Map; diff --git a/docs/metatype.dev/src/components/Newsletter/index.tsx b/docs/metatype.dev/src/components/Newsletter/index.tsx index efcf5afe34..5c3f8b5720 100644 --- a/docs/metatype.dev/src/components/Newsletter/index.tsx +++ b/docs/metatype.dev/src/components/Newsletter/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { useMemo, useState } from "react"; import { ApolloClient, gql, InMemoryCache } from "@apollo/client"; diff --git a/docs/metatype.dev/src/components/PythonPackageManagerTabs/index.tsx b/docs/metatype.dev/src/components/PythonPackageManagerTabs/index.tsx index 9123232baa..d7de55e932 100644 --- a/docs/metatype.dev/src/components/PythonPackageManagerTabs/index.tsx +++ b/docs/metatype.dev/src/components/PythonPackageManagerTabs/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { PropsWithChildren } from "react"; import { usePythonPackageManager } from "../../states/package_manager"; diff --git a/docs/metatype.dev/src/components/SDKTabs/index.tsx b/docs/metatype.dev/src/components/SDKTabs/index.tsx index 1df20d596e..04630bae65 100644 --- a/docs/metatype.dev/src/components/SDKTabs/index.tsx +++ b/docs/metatype.dev/src/components/SDKTabs/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { PropsWithChildren } from "react"; import { SDK, useSDK } from "../../states/sdk"; diff --git a/docs/metatype.dev/src/components/TGExample/index.tsx b/docs/metatype.dev/src/components/TGExample/index.tsx index 351dd23afb..aee0d2380d 100644 --- a/docs/metatype.dev/src/components/TGExample/index.tsx +++ b/docs/metatype.dev/src/components/TGExample/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import MiniQL, { MiniQLProps } from "@site/src/components/MiniQL"; import React from "react"; diff --git a/docs/metatype.dev/src/components/TsPackageManagerTabs/index.tsx b/docs/metatype.dev/src/components/TsPackageManagerTabs/index.tsx index 926f2296ac..928dd619e1 100644 --- a/docs/metatype.dev/src/components/TsPackageManagerTabs/index.tsx +++ b/docs/metatype.dev/src/components/TsPackageManagerTabs/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React, { PropsWithChildren } from "react"; import { useTsPackageManager } from "../../states/package_manager"; diff --git a/docs/metatype.dev/src/components/animations/animated.tsx b/docs/metatype.dev/src/components/animations/animated.tsx index 84f0d1e061..41e17a92e0 100644 --- a/docs/metatype.dev/src/components/animations/animated.tsx +++ b/docs/metatype.dev/src/components/animations/animated.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; import { WithAnimated, a } from "@react-spring/konva"; diff --git a/docs/metatype.dev/src/components/animations/animated_canvas.tsx b/docs/metatype.dev/src/components/animations/animated_canvas.tsx index 4060a89137..1172cee9d3 100644 --- a/docs/metatype.dev/src/components/animations/animated_canvas.tsx +++ b/docs/metatype.dev/src/components/animations/animated_canvas.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; import { Stage } from "react-konva"; diff --git a/docs/metatype.dev/src/components/animations/block.tsx b/docs/metatype.dev/src/components/animations/block.tsx index 6e0485a969..b24ad98f75 100644 --- a/docs/metatype.dev/src/components/animations/block.tsx +++ b/docs/metatype.dev/src/components/animations/block.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import Konva from "konva"; import { RectConfig } from "konva/lib/shapes/Rect"; diff --git a/docs/metatype.dev/src/components/animations/doublearrow.tsx b/docs/metatype.dev/src/components/animations/doublearrow.tsx index 1b35c564af..0f3a6b0983 100644 --- a/docs/metatype.dev/src/components/animations/doublearrow.tsx +++ b/docs/metatype.dev/src/components/animations/doublearrow.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { ArrowConfig } from "konva/lib/shapes/Arrow"; import React from "react"; diff --git a/docs/metatype.dev/src/components/animations/hooks.tsx b/docs/metatype.dev/src/components/animations/hooks.tsx index c34f98fdbb..67d3b4801a 100644 --- a/docs/metatype.dev/src/components/animations/hooks.tsx +++ b/docs/metatype.dev/src/components/animations/hooks.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { KeyboardEvent, useEffect, useRef, useState } from "react"; import { useSpring, SpringValue, useSpringValue } from "@react-spring/konva"; diff --git a/docs/metatype.dev/src/components/animations/textarrow.tsx b/docs/metatype.dev/src/components/animations/textarrow.tsx index 1cfd5a8a05..748c56b40c 100644 --- a/docs/metatype.dev/src/components/animations/textarrow.tsx +++ b/docs/metatype.dev/src/components/animations/textarrow.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import Konva from "konva"; import React, { useEffect, useRef, useState } from "react"; diff --git a/docs/metatype.dev/src/components/castles.tsx b/docs/metatype.dev/src/components/castles.tsx index cda107b69f..8ed3bae23d 100644 --- a/docs/metatype.dev/src/components/castles.tsx +++ b/docs/metatype.dev/src/components/castles.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import React from "react"; diff --git a/docs/metatype.dev/src/pages/index.tsx b/docs/metatype.dev/src/pages/index.tsx index b17d926a3c..48be7509c0 100644 --- a/docs/metatype.dev/src/pages/index.tsx +++ b/docs/metatype.dev/src/pages/index.tsx @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /* eslint-disable @typescript-eslint/no-var-requires */ diff --git a/docs/metatype.dev/src/states/package_manager.ts b/docs/metatype.dev/src/states/package_manager.ts index fb8343fc70..d369d7a644 100644 --- a/docs/metatype.dev/src/states/package_manager.ts +++ b/docs/metatype.dev/src/states/package_manager.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { atom, useAtom } from "jotai"; import { atomWithLocation } from "jotai-location"; diff --git a/docs/metatype.dev/src/states/sdk.ts b/docs/metatype.dev/src/states/sdk.ts index a7a86cb9fc..7724b28c7e 100644 --- a/docs/metatype.dev/src/states/sdk.ts +++ b/docs/metatype.dev/src/states/sdk.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { atom, useAtom } from "jotai"; import { atomWithStorage, createJSONStorage } from "jotai/utils"; diff --git a/examples/typegraphs/scripts/md2html.ts.src b/examples/typegraphs/scripts/md2html.ts.src index 63aa78ea51..0bb183ad42 100644 --- a/examples/typegraphs/scripts/md2html.ts.src +++ b/examples/typegraphs/scripts/md2html.ts.src @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as marked from "https://deno.land/x/marked/mod.ts"; diff --git a/src/common/src/archive.rs b/src/common/src/archive.rs index 1aa5f8f5e2..ad39d098e4 100644 --- a/src/common/src/archive.rs +++ b/src/common/src/archive.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use anyhow::{Context, Result}; use base64::{engine::general_purpose::STANDARD, Engine}; diff --git a/src/common/src/graphql.rs b/src/common/src/graphql.rs index 5c0ce16c89..fd88c3f741 100644 --- a/src/common/src/graphql.rs +++ b/src/common/src/graphql.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use anyhow::{bail, Result}; use async_trait::async_trait; diff --git a/src/common/src/grpc.rs b/src/common/src/grpc.rs index ec76f685c5..d2de2bf9dd 100644 --- a/src/common/src/grpc.rs +++ b/src/common/src/grpc.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use anyhow::{Context, Result}; diff --git a/src/common/src/lib.rs b/src/common/src/lib.rs index 9e9eee51cb..013467534d 100644 --- a/src/common/src/lib.rs +++ b/src/common/src/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 pub mod archive; pub mod grpc; diff --git a/src/common/src/node.rs b/src/common/src/node.rs index 894dc95c84..92b105a879 100644 --- a/src/common/src/node.rs +++ b/src/common/src/node.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use anyhow::{Context, Result}; use indoc::indoc; diff --git a/src/common/src/typegraph/mod.rs b/src/common/src/typegraph/mod.rs index 989e56440a..1dd4d9556f 100644 --- a/src/common/src/typegraph/mod.rs +++ b/src/common/src/typegraph/mod.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 pub mod parameter_transform; pub mod runtimes; diff --git a/src/common/src/typegraph/parameter_transform.rs b/src/common/src/typegraph/parameter_transform.rs index 523c3f1a39..045836319c 100644 --- a/src/common/src/typegraph/parameter_transform.rs +++ b/src/common/src/typegraph/parameter_transform.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::collections::HashMap; diff --git a/src/common/src/typegraph/runtimes/deno.rs b/src/common/src/typegraph/runtimes/deno.rs index e04eaf34d3..c370c06d7f 100644 --- a/src/common/src/typegraph/runtimes/deno.rs +++ b/src/common/src/typegraph/runtimes/deno.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use indexmap::IndexMap; use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/graphql.rs b/src/common/src/typegraph/runtimes/graphql.rs index dbdca32ce6..f258543c96 100644 --- a/src/common/src/typegraph/runtimes/graphql.rs +++ b/src/common/src/typegraph/runtimes/graphql.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/grpc.rs b/src/common/src/typegraph/runtimes/grpc.rs index 02826f08ff..cc94490685 100644 --- a/src/common/src/typegraph/runtimes/grpc.rs +++ b/src/common/src/typegraph/runtimes/grpc.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/http.rs b/src/common/src/typegraph/runtimes/http.rs index f7b38e2831..bdcd8a74a6 100644 --- a/src/common/src/typegraph/runtimes/http.rs +++ b/src/common/src/typegraph/runtimes/http.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/kv.rs b/src/common/src/typegraph/runtimes/kv.rs index 8767a97b92..3bc29f67d5 100644 --- a/src/common/src/typegraph/runtimes/kv.rs +++ b/src/common/src/typegraph/runtimes/kv.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/mod.rs b/src/common/src/typegraph/runtimes/mod.rs index 11882f2f80..4015509a57 100644 --- a/src/common/src/typegraph/runtimes/mod.rs +++ b/src/common/src/typegraph/runtimes/mod.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::path::PathBuf; diff --git a/src/common/src/typegraph/runtimes/prisma.rs b/src/common/src/typegraph/runtimes/prisma.rs index 2213d16f5b..ea0ca494df 100644 --- a/src/common/src/typegraph/runtimes/prisma.rs +++ b/src/common/src/typegraph/runtimes/prisma.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; diff --git a/src/common/src/typegraph/runtimes/python.rs b/src/common/src/typegraph/runtimes/python.rs index 01c3f7156b..61a825f739 100644 --- a/src/common/src/typegraph/runtimes/python.rs +++ b/src/common/src/typegraph/runtimes/python.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::path::PathBuf; diff --git a/src/common/src/typegraph/runtimes/random.rs b/src/common/src/typegraph/runtimes/random.rs index 3d8e036547..4b446a9d09 100644 --- a/src/common/src/typegraph/runtimes/random.rs +++ b/src/common/src/typegraph/runtimes/random.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/s3.rs b/src/common/src/typegraph/runtimes/s3.rs index e6ca882e66..e2db166bed 100644 --- a/src/common/src/typegraph/runtimes/s3.rs +++ b/src/common/src/typegraph/runtimes/s3.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; diff --git a/src/common/src/typegraph/runtimes/substantial.rs b/src/common/src/typegraph/runtimes/substantial.rs index e88bb8fd16..91797bbb18 100644 --- a/src/common/src/typegraph/runtimes/substantial.rs +++ b/src/common/src/typegraph/runtimes/substantial.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::path::PathBuf; diff --git a/src/common/src/typegraph/runtimes/temporal.rs b/src/common/src/typegraph/runtimes/temporal.rs index 38357e172e..cc5bf84d79 100644 --- a/src/common/src/typegraph/runtimes/temporal.rs +++ b/src/common/src/typegraph/runtimes/temporal.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; diff --git a/src/common/src/typegraph/runtimes/wasm.rs b/src/common/src/typegraph/runtimes/wasm.rs index 737c4d6703..1fd32bf3c8 100644 --- a/src/common/src/typegraph/runtimes/wasm.rs +++ b/src/common/src/typegraph/runtimes/wasm.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use serde::{Deserialize, Serialize}; use std::path::PathBuf; diff --git a/src/common/src/typegraph/types.rs b/src/common/src/typegraph/types.rs index 58f3f7faa1..8827536d60 100644 --- a/src/common/src/typegraph/types.rs +++ b/src/common/src/typegraph/types.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::collections::BTreeMap; diff --git a/src/common/src/typegraph/utils.rs b/src/common/src/typegraph/utils.rs index 73a21fe733..73d5a6c2a3 100644 --- a/src/common/src/typegraph/utils.rs +++ b/src/common/src/typegraph/utils.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::typegraph::{runtimes::TGRuntime, Typegraph}; use anyhow::{bail, Result}; diff --git a/src/common/src/typegraph/validator/common.rs b/src/common/src/typegraph/validator/common.rs index f67ea5a05c..e499478878 100644 --- a/src/common/src/typegraph/validator/common.rs +++ b/src/common/src/typegraph/validator/common.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::typegraph::{EitherTypeData, TypeNode, Typegraph, UnionTypeData}; diff --git a/src/common/src/typegraph/validator/input.rs b/src/common/src/typegraph/validator/input.rs index fe4c23c0ed..eac871462b 100644 --- a/src/common/src/typegraph/validator/input.rs +++ b/src/common/src/typegraph/validator/input.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::typegraph::{ visitor::{CurrentNode, TypeVisitor, VisitResult}, diff --git a/src/common/src/typegraph/validator/mod.rs b/src/common/src/typegraph/validator/mod.rs index 5d40ab583c..2b95ff865f 100644 --- a/src/common/src/typegraph/validator/mod.rs +++ b/src/common/src/typegraph/validator/mod.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod common; mod injection; diff --git a/src/common/src/typegraph/validator/types.rs b/src/common/src/typegraph/validator/types.rs index bee20a8803..9d1a62b909 100644 --- a/src/common/src/typegraph/validator/types.rs +++ b/src/common/src/typegraph/validator/types.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::typegraph::{ EitherTypeData, FileTypeData, FloatTypeData, IntegerTypeData, ListTypeData, ObjectTypeData, diff --git a/src/common/src/typegraph/validator/value.rs b/src/common/src/typegraph/validator/value.rs index dc9527ce40..bab4c599cd 100644 --- a/src/common/src/typegraph/validator/value.rs +++ b/src/common/src/typegraph/validator/value.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::collections::HashSet; diff --git a/src/common/src/typegraph/visitor.rs b/src/common/src/typegraph/visitor.rs index 996ffa055c..b7ddd05b5c 100644 --- a/src/common/src/typegraph/visitor.rs +++ b/src/common/src/typegraph/visitor.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use indexmap::IndexMap; use std::{ diff --git a/src/metagen/fixtures/client_ts/main.ts b/src/metagen/fixtures/client_ts/main.ts index e8abfc47e1..5213ad7eb1 100644 --- a/src/metagen/fixtures/client_ts/main.ts +++ b/src/metagen/fixtures/client_ts/main.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { alias, PreparedArgs, QueryGraph } from "./client.ts"; diff --git a/src/metagen/fixtures/tg2.ts b/src/metagen/fixtures/tg2.ts index 88d1f62a98..caf28480fe 100644 --- a/src/metagen/fixtures/tg2.ts +++ b/src/metagen/fixtures/tg2.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/src/mt_deno/src/lib.rs b/src/mt_deno/src/lib.rs index b7c969190e..14fee91c01 100644 --- a/src/mt_deno/src/lib.rs +++ b/src/mt_deno/src/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 #![allow(dead_code, clippy::let_and_return)] diff --git a/src/pyrt_wit_wire/pyproject.toml b/src/pyrt_wit_wire/pyproject.toml index 9a99d15ecd..d25807c3c0 100644 --- a/src/pyrt_wit_wire/pyproject.toml +++ b/src/pyrt_wit_wire/pyproject.toml @@ -2,7 +2,7 @@ name = "pyrt_wit_wire" version = "0.5.0-rc.4" description = "Wasm component implementing the PythonRuntime host using wit_wire protocol." -license = "Elastic-2.0" +license = "MPL-2.0" readme = "README.md" [tool.poetry.dependencies] diff --git a/src/typegate/engine/00_runtime.js b/src/typegate/engine/00_runtime.js index 412d71c056..caf7bb7e74 100644 --- a/src/typegate/engine/00_runtime.js +++ b/src/typegate/engine/00_runtime.js @@ -73,8 +73,12 @@ const Meta = { metadataAppend: getOp("op_sub_metadata_append"), metadataWriteWorkflowLink: getOp("op_sub_metadata_write_workflow_link"), metadataReadWorkflowLinks: getOp("op_sub_metadata_read_workflow_links"), - metadataWriteParentChildLink: getOp("op_sub_metadata_write_parent_child_link"), - metadataEnumerateAllChildren: getOp("op_sub_metadata_enumerate_all_children"), + metadataWriteParentChildLink: getOp( + "op_sub_metadata_write_parent_child_link", + ), + metadataEnumerateAllChildren: getOp( + "op_sub_metadata_enumerate_all_children", + ), }, grpc: { register: getOp("op_grpc_register"), @@ -83,6 +87,4 @@ const Meta = { }, }; - - globalThis.Meta = Meta; diff --git a/src/typegate/engine/bindings.ts b/src/typegate/engine/bindings.ts index 3c125c6fcb..c4d1e5d0b8 100644 --- a/src/typegate/engine/bindings.ts +++ b/src/typegate/engine/bindings.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { CallGrpcMethodInput, @@ -32,15 +32,15 @@ export type FormatCodeInp = { }; export type FormatCodeOut = | { - Ok: { - formatted_code: string; - }; - } + Ok: { + formatted_code: string; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export type ValidateInput = { // deno-lint-ignore no-explicit-any @@ -51,7 +51,7 @@ export type ValidateResult = { }; export function validate_prisma_runtime_data( - a0: ValidateInput + a0: ValidateInput, ): ValidateResult { try { Meta.validatePrismaRuntimeData(a0.obj); @@ -65,18 +65,18 @@ export type TypegraphValidateInp = { }; export type TypegraphValidateOut = | { - Valid: { - json: string; - }; - } + Valid: { + json: string; + }; + } | { - NotValid: { - reason: string; - }; + NotValid: { + reason: string; }; + }; export function typegraph_validate( - a0: TypegraphValidateInp + a0: TypegraphValidateInp, ): TypegraphValidateOut { try { const res = Meta.typegraphValidate(a0.json); @@ -91,15 +91,15 @@ export function typegraph_validate( } export type WasiOutput = | { - Ok: { - res: string; - }; - } + Ok: { + res: string; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export function wasmtime_wit(a0: WasmInput): Promise { try { @@ -113,13 +113,13 @@ export function wasmtime_wit(a0: WasmInput): Promise { export type TemporalRegisterOutput = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function temporal_register( - a0: TemporalRegisterInput + a0: TemporalRegisterInput, ): Promise { try { await Meta.temporal.clientRegister(a0); @@ -135,13 +135,13 @@ export type TemporalUnregisterInput = { export type TemporalUnregisterOutput = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export function temporal_unregister( - a0: TemporalUnregisterInput + a0: TemporalUnregisterInput, ): Promise { try { Meta.temporal.clientUnregister(a0.client_id); @@ -153,17 +153,17 @@ export function temporal_unregister( export type TemporalWorkflowStartOutput = | { - Ok: { - run_id: string; - }; - } + Ok: { + run_id: string; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function temporal_workflow_start( - a0: TemporalWorkflowStartInput + a0: TemporalWorkflowStartInput, ): Promise { try { const out = await Meta.temporal.workflowStart(a0); @@ -176,13 +176,13 @@ export async function temporal_workflow_start( export type TemporalWorkflowSignalOutput = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function temporal_workflow_signal( - a0: TemporalWorkflowSignalInput + a0: TemporalWorkflowSignalInput, ): Promise { try { await Meta.temporal.workflowSignal(a0); @@ -194,16 +194,16 @@ export async function temporal_workflow_signal( export type TemporalWorkflowDescribeRes = | { - Ok: TemporalWorkflowDescribeOutput; - } + Ok: TemporalWorkflowDescribeOutput; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function temporal_workflow_describe( - a0: TemporalWorkflowDescribeInput + a0: TemporalWorkflowDescribeInput, ): Promise { try { const out = await Meta.temporal.workflowDescribe(a0); @@ -215,18 +215,18 @@ export async function temporal_workflow_describe( export type TemporalWorkflowQueryOutput = | { - Ok: { - data: Array; - }; - } + Ok: { + data: Array; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function temporal_workflow_query( - a0: TemporalWorkflowQueryInput + a0: TemporalWorkflowQueryInput, ): Promise { try { const out = await Meta.temporal.workflowQuery(a0); @@ -239,13 +239,13 @@ export async function temporal_workflow_query( export type PrismaRegisterEngineOut = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function prisma_register_engine( - a0: PrismaRegisterEngineInp + a0: PrismaRegisterEngineInp, ): Promise { try { await Meta.prisma.registerEngine(a0); @@ -261,13 +261,13 @@ export type PrismaUnregisterEngineInp = { export type PrismaUnregisterEngineOut = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function prisma_unregister_engine( - a0: PrismaUnregisterEngineInp + a0: PrismaUnregisterEngineInp, ): Promise { try { await Meta.prisma.unregisterEngine(a0.engine_name); @@ -279,17 +279,17 @@ export async function prisma_unregister_engine( export type PrismaQueryOut = | { - Ok: { - res: string; - }; - } + Ok: { + res: string; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function prisma_query( - a0: PrismaQueryInp + a0: PrismaQueryInp, ): Promise { try { const res = await Meta.prisma.query(a0); @@ -312,17 +312,17 @@ export type PrismaDiffInp = { }; export async function prisma_diff( - a0: PrismaDiffInp + a0: PrismaDiffInp, ): Promise<[string, ParsedDiff[]] | null | undefined> { return await Meta.prisma.diff(a0); } export type PrismaApplyResult = | { - Err: { - message: string; - }; - } + Err: { + message: string; + }; + } | PrismaApplyOut; export type PrismaDevInp = { datasource: string; @@ -332,7 +332,7 @@ export type PrismaDevInp = { }; export async function prisma_apply( - a0: PrismaDevInp + a0: PrismaDevInp, ): Promise { try { return (await Meta.prisma.apply(a0)) as PrismaApplyResult; @@ -347,14 +347,14 @@ export type PrismaDeployInp = { }; export type PrismaDeployRes = | { - Err: { - message: string; - }; - } + Err: { + message: string; + }; + } | { Ok: PrismaDeployOut }; export async function prisma_deploy( - a0: PrismaDeployInp + a0: PrismaDeployInp, ): Promise { try { const res = await Meta.prisma.deploy(a0); @@ -373,14 +373,14 @@ export type PrismaCreateInp = { }; export type PrismaCreateResult = | { - Err: { - message: string; - }; - } + Err: { + message: string; + }; + } | { Ok: PrismaCreateOut }; export async function prisma_create( - a0: PrismaCreateInp + a0: PrismaCreateInp, ): Promise { try { const res = await Meta.prisma.create(a0); @@ -394,17 +394,17 @@ export type PrismaResetInp = { }; export type PrismaResetResult = | { - Err: { - message: string; - }; - } + Err: { + message: string; + }; + } | { - Ok: { - reset: boolean; - }; + Ok: { + reset: boolean; }; + }; export async function prisma_reset( - a0: PrismaResetInp + a0: PrismaResetInp, ): Promise { try { const res = await Meta.prisma.reset(a0.datasource); @@ -420,10 +420,10 @@ export type UnpackInp = { export type UnpackResult = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export function unpack(a0: UnpackInp): UnpackResult { try { Meta.prisma.unpack(a0); @@ -438,15 +438,15 @@ export type ArchiveInp = { }; export type ArchiveResult = | { - Ok: { - base64: string | undefined | null; - }; - } + Ok: { + base64: string | undefined | null; + }; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export function archive(a0: ArchiveInp): ArchiveResult { try { const res = Meta.prisma.archive(a0.path); @@ -459,13 +459,13 @@ export function archive(a0: ArchiveInp): ArchiveResult { export type GrpcRegisterOutput = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function grpc_register( - a0: GrpcRegisterInput + a0: GrpcRegisterInput, ): Promise { try { await Meta.grpc.register(a0); @@ -482,13 +482,13 @@ export type GrpcUnregisterInput = { export type GrpcUnRegisterOutput = | "Ok" | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function grpc_unregister( - a0: GrpcUnregisterInput + a0: GrpcUnregisterInput, ): Promise { try { await Meta.grpc.unregister(a0.client_id); @@ -500,16 +500,16 @@ export async function grpc_unregister( export type CallGrpcMethodOutput = | { - Ok: string; - } + Ok: string; + } | { - Err: { - message: string; - }; + Err: { + message: string; }; + }; export async function call_grpc_method( - a0: CallGrpcMethodInput + a0: CallGrpcMethodInput, ): Promise { try { return { Ok: await Meta.grpc.callGrpcMethod(a0) }; diff --git a/src/typegate/engine/build.rs b/src/typegate/engine/build.rs index be0b024fec..006f51962c 100644 --- a/src/typegate/engine/build.rs +++ b/src/typegate/engine/build.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::path::PathBuf; diff --git a/src/typegate/engine/runtime.d.ts b/src/typegate/engine/runtime.d.ts index 109491903d..9b482ccd1b 100644 --- a/src/typegate/engine/runtime.d.ts +++ b/src/typegate/engine/runtime.d.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 declare global { const Meta: MetaNS; @@ -17,7 +17,7 @@ export type MetaNS = { unregisterEngine: (engine_name: string) => Promise; query: (inp: PrismaQueryInp) => Promise; diff: ( - inp: PrismaDiffInp + inp: PrismaDiffInp, ) => Promise<[string, ParsedDiff[]] | undefined | null>; apply: (inp: PrismaDevInp) => Promise; deploy: (inp: PrismaDeployInp) => Promise; @@ -34,7 +34,7 @@ export type MetaNS = { workflowSignal: (inp: TemporalWorkflowSignalInput) => Promise; workflowQuery: (inp: TemporalWorkflowQueryInput) => Promise>; workflowDescribe: ( - inp: TemporalWorkflowDescribeInput + inp: TemporalWorkflowDescribeInput, ) => Promise; }; @@ -43,12 +43,12 @@ export type MetaNS = { componentPath: string, instanceId: string, args: WitWireInitArgs, - cb: (op_name: string, json: string) => Promise + cb: (op_name: string, json: string) => Promise, ) => Promise; destroy: (instanceId: string) => Promise; handle: ( instanceId: string, - args: WitWireReq + args: WitWireReq, ) => Promise; }; @@ -63,7 +63,7 @@ export type MetaNS = { storePersistRun: (inp: PersistRunInput) => Promise; storeAddSchedule: (inp: AddScheduleInput) => Promise; storeReadSchedule: ( - inp: ReadOrCloseScheduleInput + inp: ReadOrCloseScheduleInput, ) => Promise; storeCloseSchedule: (inp: ReadOrCloseScheduleInput) => Promise; agentNextRun: (inp: NextRunInput) => Promise; @@ -72,18 +72,18 @@ export type MetaNS = { agentRenewLease: (inp: LeaseInput) => Promise; agentRemoveLease: (inp: LeaseInput) => Promise; metadataReadAll: ( - inp: ReadAllMetadataInput + inp: ReadAllMetadataInput, ) => Promise>; metadataAppend: (inp: AppendMetadataInput) => Promise; metadataWriteWorkflowLink: (inp: WriteLinkInput) => Promise; metadataReadWorkflowLinks: ( - inp: ReadWorkflowLinkInput + inp: ReadWorkflowLinkInput, ) => Promise>; metadataWriteParentChildLink: ( - inp: WriteParentChildLinkInput + inp: WriteParentChildLinkInput, ) => Promise; metadataEnumerateAllChildren: ( - inp: EnumerateAllChildrenInput + inp: EnumerateAllChildrenInput, ) => Promise>; }; }; @@ -116,16 +116,16 @@ interface PrismaDevInp { } type PrismaApplyOut = | { - ResetRequired: { - reset_reason: string; - }; - } + ResetRequired: { + reset_reason: string; + }; + } | { - Ok: { - applied_migrations: Array; - reset_reason: string | undefined | null; - }; + Ok: { + applied_migrations: Array; + reset_reason: string | undefined | null; }; + }; interface PrismaDeployOut { migration_count: number; applied_migrations: Array; @@ -237,14 +237,14 @@ export type WitWireReq = { export type WitWireHandleError = | { - InstanceNotFound: string; - } + InstanceNotFound: string; + } | { - ModuleErr: string; - } + ModuleErr: string; + } | { - MatErr: string; - }; + MatErr: string; + }; export type WitWireMatInfo = { op_name: string; @@ -261,29 +261,29 @@ export type WitWireInitArgs = { export type WitWireInitResponse = object; export type WitWireInitError = | { - VersionMismatch: string; - } + VersionMismatch: string; + } | { - UnexpectedMat: string; - } + UnexpectedMat: string; + } | { - ModuleErr: string; - } + ModuleErr: string; + } | { - Other: string; - }; + Other: string; + }; export type WitWireHandleResponse = | { - Ok: string; - } + Ok: string; + } | "NoHandler" | { - InJsonErr: string; - } + InJsonErr: string; + } | { - HandlerErr: string; - }; + HandlerErr: string; + }; export type GrpcRegisterInput = { proto_file_content: string; @@ -301,20 +301,20 @@ export type Backend = | { type: "fs" } | { type: "memory" } | { - type: "redis"; - connection_string: string; - }; + type: "redis"; + connection_string: string; + }; export type OperationEvent = | { type: "Sleep"; id: number; start: string; end: string } | { - type: "Save"; - id: number; - value: - | { type: "Retry"; wait_until: string; counter: number } - | { type: "Resolved"; payload: unknown } - | { type: "Failed"; err: unknown }; - } + type: "Save"; + id: number; + value: + | { type: "Retry"; wait_until: string; counter: number } + | { type: "Resolved"; payload: unknown } + | { type: "Failed"; err: unknown }; + } | { type: "Send"; event_name: string; value: unknown } | { type: "Stop"; result: unknown } | { type: "Start"; kwargs: Record } diff --git a/src/typegate/engine/src/ext.rs b/src/typegate/engine/src/ext.rs index 2f2ca8de81..72d4c13686 100644 --- a/src/typegate/engine/src/ext.rs +++ b/src/typegate/engine/src/ext.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; use crate::{ diff --git a/src/typegate/engine/src/lib.rs b/src/typegate/engine/src/lib.rs index 5d6ba03fcc..2145776f6b 100644 --- a/src/typegate/engine/src/lib.rs +++ b/src/typegate/engine/src/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod ext; mod runtimes; diff --git a/src/typegate/engine/src/runtimes.rs b/src/typegate/engine/src/runtimes.rs index 102d2704e1..463eadf0e0 100644 --- a/src/typegate/engine/src/runtimes.rs +++ b/src/typegate/engine/src/runtimes.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 pub mod grpc; pub mod prisma; diff --git a/src/typegate/engine/src/runtimes/grpc.rs b/src/typegate/engine/src/runtimes/grpc.rs index 0b87a39c55..276188ba0c 100644 --- a/src/typegate/engine/src/runtimes/grpc.rs +++ b/src/typegate/engine/src/runtimes/grpc.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::{cell::RefCell, ops::Deref, rc::Rc, str::FromStr, sync::Arc}; diff --git a/src/typegate/engine/src/runtimes/prisma.rs b/src/typegate/engine/src/runtimes/prisma.rs index 0d70ec4723..cb77a73c22 100644 --- a/src/typegate/engine/src/runtimes/prisma.rs +++ b/src/typegate/engine/src/runtimes/prisma.rs @@ -1,7 +1,7 @@ #![allow(clippy::not_unsafe_ptr_arg_deref)] -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 pub mod engine; pub mod engine_import; diff --git a/src/typegate/engine/src/runtimes/prisma/engine.rs b/src/typegate/engine/src/runtimes/prisma/engine.rs index 2c15dff5aa..9d8421905a 100644 --- a/src/typegate/engine/src/runtimes/prisma/engine.rs +++ b/src/typegate/engine/src/runtimes/prisma/engine.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; use std::{collections::BTreeMap, path::PathBuf, str::FromStr}; diff --git a/src/typegate/engine/src/runtimes/prisma/migration.rs b/src/typegate/engine/src/runtimes/prisma/migration.rs index 40f5cebb43..6e9d8bc73d 100644 --- a/src/typegate/engine/src/runtimes/prisma/migration.rs +++ b/src/typegate/engine/src/runtimes/prisma/migration.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // https://github.com/prisma/prisma-engines/blob/main/migration-engine/core/src/rpc.rs // https://github.com/prisma/prisma-engines/blob/main/migration-engine/core/src/api.rs diff --git a/src/typegate/engine/src/runtimes/prisma/utils.rs b/src/typegate/engine/src/runtimes/prisma/utils.rs index f9a533719e..a20a89c8ed 100644 --- a/src/typegate/engine/src/runtimes/prisma/utils.rs +++ b/src/typegate/engine/src/runtimes/prisma/utils.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use schema_connector::{BoxFuture, ConnectorHost, ConnectorResult}; use std::sync::{Arc, Mutex}; diff --git a/src/typegate/engine/src/runtimes/substantial.rs b/src/typegate/engine/src/runtimes/substantial.rs index 9420c61e34..416609319d 100644 --- a/src/typegate/engine/src/runtimes/substantial.rs +++ b/src/typegate/engine/src/runtimes/substantial.rs @@ -1,7 +1,7 @@ #![allow(clippy::not_unsafe_ptr_arg_deref)] -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; diff --git a/src/typegate/engine/src/runtimes/temporal.rs b/src/typegate/engine/src/runtimes/temporal.rs index 5484dbf590..f25945935e 100644 --- a/src/typegate/engine/src/runtimes/temporal.rs +++ b/src/typegate/engine/src/runtimes/temporal.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; diff --git a/src/typegate/engine/src/runtimes/wasm.rs b/src/typegate/engine/src/runtimes/wasm.rs index 6da88b34c7..98958932d8 100644 --- a/src/typegate/engine/src/runtimes/wasm.rs +++ b/src/typegate/engine/src/runtimes/wasm.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; #[rustfmt::skip] diff --git a/src/typegate/engine/src/runtimes/wasm/conversion.rs b/src/typegate/engine/src/runtimes/wasm/conversion.rs index 1b99ee1618..d93c26aa42 100644 --- a/src/typegate/engine/src/runtimes/wasm/conversion.rs +++ b/src/typegate/engine/src/runtimes/wasm/conversion.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use std::collections::HashSet; diff --git a/src/typegate/engine/src/runtimes/wit_wire.rs b/src/typegate/engine/src/runtimes/wit_wire.rs index c45c425fdf..e74bc1a151 100644 --- a/src/typegate/engine/src/runtimes/wit_wire.rs +++ b/src/typegate/engine/src/runtimes/wit_wire.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; use dashmap::DashMap; diff --git a/src/typegate/engine/src/typegraph.rs b/src/typegate/engine/src/typegraph.rs index fe21d67fe2..0451052bee 100644 --- a/src/typegate/engine/src/typegraph.rs +++ b/src/typegate/engine/src/typegraph.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use crate::interlude::*; use common::typegraph::{runtimes::prisma::PrismaRuntimeData, Typegraph}; diff --git a/src/typegate/src/config.ts b/src/typegate/src/config.ts index fdd487c15b..4d3fd33c87 100644 --- a/src/typegate/src/config.ts +++ b/src/typegate/src/config.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { z } from "zod"; @@ -26,7 +26,7 @@ async function getHostname() { return new TextDecoder().decode(stdout).trim(); } catch (_e) { console.debug( - `Not hostname binary found, falling back to env var HOSTNAME` + `Not hostname binary found, falling back to env var HOSTNAME`, ); return Deno.env.get("HOSTNAME") ?? "UNKNOWN_HOSTNAME"; } @@ -51,7 +51,7 @@ export const globalConfig = configOrExit( [ mapKeys(Deno.env.toObject(), (k: string) => k.toLowerCase()), parseArgs(Deno.args) as Record, - ] + ], ); export const defaultTypegateConfigBase = { @@ -70,7 +70,7 @@ const SYNC_PREFIX = "sync_"; function filterMapSyncKeys(obj: Record) { return mapKeys( filterKeys(obj, (k) => k.startsWith(SYNC_PREFIX)), - (k) => k.slice(SYNC_PREFIX.length) + (k) => k.slice(SYNC_PREFIX.length), ); } @@ -79,8 +79,9 @@ function envsAsConfig() { } function argsAsConfig() { - return mapKeys(parseArgs(Deno.args) as Record, (k) => - k.toLocaleLowerCase().replace("-", "_") + return mapKeys( + parseArgs(Deno.args) as Record, + (k) => k.toLocaleLowerCase().replace("-", "_"), ); } diff --git a/src/typegate/src/config/loader.ts b/src/typegate/src/config/loader.ts index 68b39dc43a..c8f71167c1 100644 --- a/src/typegate/src/config/loader.ts +++ b/src/typegate/src/config/loader.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { z } from "zod"; import { deepMerge } from "@std/collections/deep-merge"; diff --git a/src/typegate/src/config/shared.ts b/src/typegate/src/config/shared.ts index 95574de662..0865788fb0 100644 --- a/src/typegate/src/config/shared.ts +++ b/src/typegate/src/config/shared.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { sharedConfigSchema } from "./types.ts"; import { configOrExit } from "./loader.ts"; @@ -24,7 +24,7 @@ export const sharedConfig = await configOrExit( Object.fromEntries( envSharedWithWorkers .map((k) => [k.toLocaleLowerCase(), Deno.env.get(k)]) - .filter(([_, v]) => v !== undefined) + .filter(([_, v]) => v !== undefined), ), - ] + ], ); diff --git a/src/typegate/src/config/types.ts b/src/typegate/src/config/types.ts index a9a5ec634a..cf8cbd4225 100644 --- a/src/typegate/src/config/types.ts +++ b/src/typegate/src/config/types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { RefinementCtx, z } from "zod"; import { decodeBase64 } from "@std/encoding/base64"; diff --git a/src/typegate/src/crypto.ts b/src/typegate/src/crypto.ts index e34ddd0320..bf3a72b1b6 100644 --- a/src/typegate/src/crypto.ts +++ b/src/typegate/src/crypto.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { crypto } from "@std/crypto"; import { decodeBase64Url, encodeBase64Url } from "@std/encoding/base64url"; diff --git a/src/typegate/src/engine/computation_engine.ts b/src/typegate/src/engine/computation_engine.ts index a2cfb62db7..afeeb2a036 100644 --- a/src/typegate/src/engine/computation_engine.ts +++ b/src/typegate/src/engine/computation_engine.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { distinct } from "@std/collections/distinct"; import type { ComputeStage } from "./query_engine.ts"; diff --git a/src/typegate/src/engine/planner/args.ts b/src/typegate/src/engine/planner/args.ts index b034f4ebbe..f84452b2e5 100644 --- a/src/typegate/src/engine/planner/args.ts +++ b/src/typegate/src/engine/planner/args.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type * as ast from "graphql/ast"; import { Kind } from "graphql"; diff --git a/src/typegate/src/engine/planner/dependency_resolver.ts b/src/typegate/src/engine/planner/dependency_resolver.ts index fc3442ce8e..a055899f94 100644 --- a/src/typegate/src/engine/planner/dependency_resolver.ts +++ b/src/typegate/src/engine/planner/dependency_resolver.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ComputeStage } from "../query_engine.ts"; import { type FieldNode, Kind, type SelectionSetNode } from "graphql"; diff --git a/src/typegate/src/engine/planner/injection_utils.ts b/src/typegate/src/engine/planner/injection_utils.ts index 5acfe33c82..d253c5dbee 100644 --- a/src/typegate/src/engine/planner/injection_utils.ts +++ b/src/typegate/src/engine/planner/injection_utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { EffectType, InjectionData } from "../../typegraph/types.ts"; diff --git a/src/typegate/src/engine/planner/mod.ts b/src/typegate/src/engine/planner/mod.ts index a70bed4517..ed4709ef92 100644 --- a/src/typegate/src/engine/planner/mod.ts +++ b/src/typegate/src/engine/planner/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type * as ast from "graphql/ast"; import { type FieldNode, Kind } from "graphql"; diff --git a/src/typegate/src/engine/planner/parameter_transformer.ts b/src/typegate/src/engine/planner/parameter_transformer.ts index 80e66e815f..22b3b5b68e 100644 --- a/src/typegate/src/engine/planner/parameter_transformer.ts +++ b/src/typegate/src/engine/planner/parameter_transformer.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type QueryFn, QueryFunction } from "../../libs/jsonpath.ts"; import type { TypeGraph } from "../../typegraph/mod.ts"; diff --git a/src/typegate/src/engine/planner/policies.ts b/src/typegate/src/engine/planner/policies.ts index 48278dc7cf..d82cbcd8cc 100644 --- a/src/typegate/src/engine/planner/policies.ts +++ b/src/typegate/src/engine/planner/policies.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { DenoRuntime } from "../../runtimes/deno/deno.ts"; import type { TypeGraph } from "../../typegraph/mod.ts"; diff --git a/src/typegate/src/engine/query_engine.ts b/src/typegate/src/engine/query_engine.ts index d36f74018d..7be7ad412c 100644 --- a/src/typegate/src/engine/query_engine.ts +++ b/src/typegate/src/engine/query_engine.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { parse } from "graphql"; import type * as ast from "graphql/ast"; diff --git a/src/typegate/src/engine/stage_id.ts b/src/typegate/src/engine/stage_id.ts index 590034f81d..935645abd8 100644 --- a/src/typegate/src/engine/stage_id.ts +++ b/src/typegate/src/engine/stage_id.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function getChildId(parentId: string | null, node: string) { if (parentId === null || parentId === "") { diff --git a/src/typegate/src/engine/typecheck/code_generator.ts b/src/typegate/src/engine/typecheck/code_generator.ts index 66990d62ba..6a5473acd2 100644 --- a/src/typegate/src/engine/typecheck/code_generator.ts +++ b/src/typegate/src/engine/typecheck/code_generator.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type BooleanNode, diff --git a/src/typegate/src/engine/typecheck/common.ts b/src/typegate/src/engine/typecheck/common.ts index 5c2d6f4607..8a10101042 100644 --- a/src/typegate/src/engine/typecheck/common.ts +++ b/src/typegate/src/engine/typecheck/common.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { StringFormat } from "../../typegraph/types.ts"; import * as uuid from "@std/uuid"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/boolean.ts b/src/typegate/src/engine/typecheck/inline_validators/boolean.ts index 9085514b55..eec04768eb 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/boolean.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/boolean.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { BooleanNode } from "../../../typegraph/types.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/common.ts b/src/typegate/src/engine/typecheck/inline_validators/common.ts index edc360b35d..6a65592f32 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/common.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/common.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function check(condition: string, message: string) { return `if (!(${condition})) throw new Error(${message});`; diff --git a/src/typegate/src/engine/typecheck/inline_validators/constraints.ts b/src/typegate/src/engine/typecheck/inline_validators/constraints.ts index 1fd6296062..35a38cfff3 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/constraints.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/constraints.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeNode } from "../../../typegraph/type_node.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/file.ts b/src/typegate/src/engine/typecheck/inline_validators/file.ts index 70bd38da3f..be630b50ea 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/file.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/file.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { FileNode } from "../../../typegraph/types.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/list.ts b/src/typegate/src/engine/typecheck/inline_validators/list.ts index 2bea54163c..f1d6bdd523 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/list.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/list.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ListNode } from "../../../typegraph/type_node.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/mod.ts b/src/typegate/src/engine/typecheck/inline_validators/mod.ts index 074471e15f..1c5121f3fa 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/mod.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /// These validators are used to generate validator code to be inlined into /// the generated code. diff --git a/src/typegate/src/engine/typecheck/inline_validators/number.ts b/src/typegate/src/engine/typecheck/inline_validators/number.ts index f7168c43ee..8380ce7e50 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/number.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/number.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { FloatNode, IntegerNode } from "../../../typegraph/types.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/inline_validators/object.ts b/src/typegate/src/engine/typecheck/inline_validators/object.ts index ca51927a6a..6fba958b3e 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/object.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/object.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type ObjectNode, diff --git a/src/typegate/src/engine/typecheck/inline_validators/string.ts b/src/typegate/src/engine/typecheck/inline_validators/string.ts index c3edc88d92..1ca436dddc 100644 --- a/src/typegate/src/engine/typecheck/inline_validators/string.ts +++ b/src/typegate/src/engine/typecheck/inline_validators/string.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { StringNode } from "../../../typegraph/type_node.ts"; import { check } from "./common.ts"; diff --git a/src/typegate/src/engine/typecheck/input.ts b/src/typegate/src/engine/typecheck/input.ts index f128d04129..bbba81f1b5 100644 --- a/src/typegate/src/engine/typecheck/input.ts +++ b/src/typegate/src/engine/typecheck/input.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraph } from "../../typegraph/mod.ts"; import type { TypeNode } from "../../typegraph/types.ts"; diff --git a/src/typegate/src/engine/typecheck/matching_variant.ts b/src/typegate/src/engine/typecheck/matching_variant.ts index e1b4191fa3..2d59c882aa 100644 --- a/src/typegate/src/engine/typecheck/matching_variant.ts +++ b/src/typegate/src/engine/typecheck/matching_variant.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type EitherNode, diff --git a/src/typegate/src/engine/typecheck/result.ts b/src/typegate/src/engine/typecheck/result.ts index b528cfe574..760bb8a89f 100644 --- a/src/typegate/src/engine/typecheck/result.ts +++ b/src/typegate/src/engine/typecheck/result.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { FragmentDefs } from "../../transports/graphql/graphql.ts"; import type { @@ -30,7 +30,7 @@ import { export function generateValidator( tg: TypeGraph, operation: OperationDefinitionNode, - fragments: FragmentDefs + fragments: FragmentDefs, ): Validator { const code = new ResultValidationCompiler(tg, fragments).generate(operation); const validator = new Function(code)() as ValidatorFn; @@ -108,7 +108,7 @@ export class ResultValidationCompiler { } else if (isScalar(typeNode)) { if (entry.selectionSet != null) { throw new Error( - `Unexpected selection set for scalar type '${typeNode.type}' at '${entry.path}'` + `Unexpected selection set for scalar type '${typeNode.type}' at '${entry.path}'`, ); } @@ -135,7 +135,7 @@ export class ResultValidationCompiler { case "optional": { const itemValidatorName = this.validatorName( typeNode.item, - entry.selectionSet != null + entry.selectionSet != null, ); cg.generateOptionalValidator(typeNode, itemValidatorName); queue.push({ @@ -150,7 +150,7 @@ export class ResultValidationCompiler { case "list": { const itemValidatorName = this.validatorName( typeNode.items, - entry.selectionSet != null + entry.selectionSet != null, ); cg.generateArrayValidator(typeNode, itemValidatorName); queue.push({ @@ -163,11 +163,11 @@ export class ResultValidationCompiler { } case "object": { - const childEntries: Record = - this.getChildEntries(typeNode, entry); + const childEntries: Record = this + .getChildEntries(typeNode, entry); cg.generateObjectValidator( typeNode, - mapValues(childEntries, (e) => e.name) + mapValues(childEntries, (e) => e.name), ); queue.push(...Object.values(childEntries)); break; @@ -177,7 +177,7 @@ export class ResultValidationCompiler { const childEntries = this.getVariantEntries(typeNode.anyOf, entry); cg.generateUnionValidator( typeNode, - childEntries.map((e) => e.name) + childEntries.map((e) => e.name), ); queue.push(...childEntries); break; @@ -187,7 +187,7 @@ export class ResultValidationCompiler { const childEntries = this.getVariantEntries(typeNode.oneOf, entry); cg.generateEitherValidator( typeNode, - childEntries.map((e) => e.name) + childEntries.map((e) => e.name), ); queue.push(...childEntries); break; @@ -196,7 +196,7 @@ export class ResultValidationCompiler { case "function": { const outputValidator = this.validatorName( typeNode.output, - entry.selectionSet != null + entry.selectionSet != null, ); cg.line(`${outputValidator}(value, path, errors, context)`); queue.push({ @@ -217,7 +217,7 @@ export class ResultValidationCompiler { const fnBody = cg.reset().join("\n"); this.codes.set( fnName, - `function ${fnName}(value, path, errors, context) {\n${fnBody}\n}` + `function ${fnName}(value, path, errors, context) {\n${fnBody}\n}`, ); } @@ -231,7 +231,7 @@ export class ResultValidationCompiler { private getChildEntryFromFieldNode( typeNode: ObjectNode, entry: QueueEntry, - node: FieldNode + node: FieldNode, ): [string, QueueEntry] { const { name, selectionSet, alias } = node; const propName = alias?.value ?? name.value; @@ -279,7 +279,7 @@ export class ResultValidationCompiler { private getChildEntriesFromSelectionNode( typeNode: ObjectNode, entry: QueueEntry, - node: SelectionNode + node: SelectionNode, ): Array<[string, QueueEntry]> { switch (node.kind) { case Kind.FIELD: @@ -308,13 +308,13 @@ export class ResultValidationCompiler { private getChildEntries( typeNode: ObjectNode, - entry: QueueEntry + entry: QueueEntry, ): Record { if (entry.selectionSet?.selections) { return Object.fromEntries( entry.selectionSet!.selections.flatMap((node) => this.getChildEntriesFromSelectionNode(typeNode, entry, node) - ) + ), ); } @@ -324,21 +324,23 @@ export class ResultValidationCompiler { private getVariantEntries( variants: number[], - entry: QueueEntry + entry: QueueEntry, ): QueueEntry[] { const multilevelVariants = this.tg.typeUtils.flattenUnionVariants(variants); const selectableVariants = multilevelVariants.filter( (variant) => - !this.tg.typeUtils.isScalarOrListOfScalars(this.tg.type(variant)) + !this.tg.typeUtils.isScalarOrListOfScalars(this.tg.type(variant)), ); if (entry.selectionSet == null) { if (selectableVariants.length > 0) { const s = selectableVariants.length === 1 ? "" : "s"; const names = selectableVariants.map((idx) => this.tg.type(idx).title); throw new Error( - `at '${entry.path}': selection set required for type${s} ${names.join( - ", " - )}` + `at '${entry.path}': selection set required for type${s} ${ + names.join( + ", ", + ) + }`, ); } } @@ -347,18 +349,18 @@ export class ResultValidationCompiler { const variantSelections: Map = entry.selectionSet != null ? new Map( - entry.selectionSet.selections.map((node) => { - if ( - node.kind !== Kind.INLINE_FRAGMENT || - node.typeCondition == null - ) { - throw new Error( - `at '${entry.path}': selection nodes must be inline fragments with type condition` - ); - } - return [node.typeCondition.name.value, node]; - }) - ) + entry.selectionSet.selections.map((node) => { + if ( + node.kind !== Kind.INLINE_FRAGMENT || + node.typeCondition == null + ) { + throw new Error( + `at '${entry.path}': selection nodes must be inline fragments with type condition`, + ); + } + return [node.typeCondition.name.value, node]; + }), + ) : new Map(); const entries: QueueEntry[] = variants.map((variantIdx) => { @@ -371,7 +373,7 @@ export class ResultValidationCompiler { if (selectionSet == null) { // TODO link to matching documentation page throw new Error( - `at '${entry.path}': variant type '${typeName}' must have a selection set on an inline fragment with type condition` + `at '${entry.path}': variant type '${typeName}' must have a selection set on an inline fragment with type condition`, ); } variantSelections.delete(typeName); @@ -385,7 +387,7 @@ export class ResultValidationCompiler { case Type.UNION: case Type.EITHER: { const nestedVariants = this.tg.typeUtils.getFlatUnionVariants( - typeNode as UnionNode | EitherNode + typeNode as UnionNode | EitherNode, ); return { name: this.validatorName(variantIdx, true), @@ -420,7 +422,7 @@ export class ResultValidationCompiler { if (variantSelections.size > 0) { const names = [...variantSelections.keys()].join(", "); throw new Error( - `at '${entry.path}': Unexpected type conditions: ${names}` + `at '${entry.path}': Unexpected type conditions: ${names}`, ); } return entries; diff --git a/src/typegate/src/errors.ts b/src/typegate/src/errors.ts index f34992294e..e460ac5621 100644 --- a/src/typegate/src/errors.ts +++ b/src/typegate/src/errors.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { basename, dirname } from "@std/url"; import { extname } from "@std/path"; diff --git a/src/typegate/src/libs/jsonpath.ts b/src/typegate/src/libs/jsonpath.ts index d2bcad72b7..c2c733c78b 100644 --- a/src/typegate/src/libs/jsonpath.ts +++ b/src/typegate/src/libs/jsonpath.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /** * JsonPath query compiler: jsonpath query to javascript function; diff --git a/src/typegate/src/log.ts b/src/typegate/src/log.ts index 9371866724..d1dbeef25f 100644 --- a/src/typegate/src/log.ts +++ b/src/typegate/src/log.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { ConsoleHandler, type LevelName, Logger } from "@std/log"; import { basename, dirname } from "@std/url"; diff --git a/src/typegate/src/main.ts b/src/typegate/src/main.ts index 53dfa22e96..f6e1f0e1e3 100644 --- a/src/typegate/src/main.ts +++ b/src/typegate/src/main.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { init_native } from "native"; diff --git a/src/typegate/src/runtimes/Runtime.ts b/src/typegate/src/runtimes/Runtime.ts index 3b0ef87d75..3c4c0d6e5f 100644 --- a/src/typegate/src/runtimes/Runtime.ts +++ b/src/typegate/src/runtimes/Runtime.ts @@ -1,9 +1,9 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ComputeStage } from "../engine/query_engine.ts"; import { equal } from "@std/assert/equal"; -import type { Resolver, ResolverArgs } from "../types.ts"; +import type { Resolver } from "../types.ts"; export abstract class Runtime { readonly id: string; @@ -65,10 +65,9 @@ export abstract class Runtime { materializedStages.push(...materializeRoot(s)); } else { materializedStages.push( - s.withResolver( - Runtime.resolveFromParent(s.props.node), - [s.props.parent!.id()], - ), + s.withResolver(Runtime.resolveFromParent(s.props.node), [ + s.props.parent!.id(), + ]), ); } } diff --git a/src/typegate/src/runtimes/deno.ts b/src/typegate/src/runtimes/deno.ts index acc0928409..5b2242b20e 100644 --- a/src/typegate/src/runtimes/deno.ts +++ b/src/typegate/src/runtimes/deno.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { DenoRuntime } from "./deno/deno.ts"; import { registerRuntime } from "./mod.ts"; diff --git a/src/typegate/src/runtimes/deno/deno.ts b/src/typegate/src/runtimes/deno/deno.ts index 92c4af3a8d..04d1e828cd 100644 --- a/src/typegate/src/runtimes/deno/deno.ts +++ b/src/typegate/src/runtimes/deno/deno.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ComputeStage } from "../../engine/query_engine.ts"; import type { TypeGraphDS, TypeMaterializer } from "../../typegraph/mod.ts"; @@ -13,9 +13,6 @@ import { DenoMessenger } from "./deno_messenger.ts"; import type { Task } from "./shared_types.ts"; import { path } from "compress/deps.ts"; import { globalConfig as config } from "../../config.ts"; -import { getLogger } from "../../log.ts"; - -const logger = getLogger(import.meta); const predefinedFuncs: Record>> = { identity: ({ _, ...args }) => args, @@ -188,9 +185,7 @@ export class DenoRuntime extends Runtime { const typename = getTypename(); - return [ - stage.withResolver(() => typename), - ]; + return [stage.withResolver(() => typename)]; } if (stage.props.materializer != null) { diff --git a/src/typegate/src/runtimes/deno/deno_messenger.ts b/src/typegate/src/runtimes/deno/deno_messenger.ts index 306ccd54e9..27050f26eb 100644 --- a/src/typegate/src/runtimes/deno/deno_messenger.ts +++ b/src/typegate/src/runtimes/deno/deno_messenger.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as Sentry from "sentry"; import { envSharedWithWorkers } from "../../config/shared.ts"; diff --git a/src/typegate/src/runtimes/deno/shared_types.ts b/src/typegate/src/runtimes/deno/shared_types.ts index 7bbb446fe0..acfdac9c4c 100644 --- a/src/typegate/src/runtimes/deno/shared_types.ts +++ b/src/typegate/src/runtimes/deno/shared_types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { Context } from "../../types.ts"; import type { EffectType } from "../../typegraph/types.ts"; @@ -70,6 +70,6 @@ export interface TaskExec { ( args: Record, context: TaskContext, - helpers: Record + helpers: Record, ): unknown; } diff --git a/src/typegate/src/runtimes/deno/worker.ts b/src/typegate/src/runtimes/deno/worker.ts index b2f76a4419..424e295374 100644 --- a/src/typegate/src/runtimes/deno/worker.ts +++ b/src/typegate/src/runtimes/deno/worker.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // bring the unstable WorkerOptions api into scope /// @@ -43,7 +43,7 @@ async function import_func(op: number, task: ImportFuncTask) { return await mod[name]( args, internals, - make_internal(internals, additionalHeaders) + make_internal(internals, additionalHeaders), ); } throw new Error(`"${name}" is not a valid method`); @@ -75,7 +75,7 @@ function register_func(_: null, task: RegisterFuncTask) { registry.set( op, - new Function(`"use strict"; ${fnCode}; return _my_lambda;`)() + new Function(`"use strict"; ${fnCode}; return _my_lambda;`)(), ); } diff --git a/src/typegate/src/runtimes/graphql.ts b/src/typegate/src/runtimes/graphql.ts index 5cf6116fa3..727a50b6b2 100644 --- a/src/typegate/src/runtimes/graphql.ts +++ b/src/typegate/src/runtimes/graphql.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { ComputeStage } from "../engine/query_engine.ts"; import { gq } from "../transports/graphql/gq.ts"; diff --git a/src/typegate/src/runtimes/grpc.ts b/src/typegate/src/runtimes/grpc.ts index 6b6c13058b..3fbb52b131 100644 --- a/src/typegate/src/runtimes/grpc.ts +++ b/src/typegate/src/runtimes/grpc.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import * as native from "native"; diff --git a/src/typegate/src/runtimes/http.ts b/src/typegate/src/runtimes/http.ts index e8db167641..79176e8fed 100644 --- a/src/typegate/src/runtimes/http.ts +++ b/src/typegate/src/runtimes/http.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { ComputeStage } from "../engine/query_engine.ts"; import { Runtime } from "./Runtime.ts"; diff --git a/src/typegate/src/runtimes/kv.ts b/src/typegate/src/runtimes/kv.ts index 7ceec77696..437c0f44cc 100644 --- a/src/typegate/src/runtimes/kv.ts +++ b/src/typegate/src/runtimes/kv.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { connect, parseURL, type Redis } from "redis"; import { ComputeStage } from "../engine/query_engine.ts"; @@ -10,8 +10,6 @@ import type { Resolver, RuntimeInitParams } from "../types.ts"; import { registerRuntime } from "./mod.ts"; import { Runtime } from "./Runtime.ts"; -const logger = getLogger(import.meta); - @registerRuntime("kv") export class KvRuntime extends Runtime { private logger: Logger; diff --git a/src/typegate/src/runtimes/mod.ts b/src/typegate/src/runtimes/mod.ts index 5abd627c45..88365dc200 100644 --- a/src/typegate/src/runtimes/mod.ts +++ b/src/typegate/src/runtimes/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { Runtime } from "./Runtime.ts"; import type { RuntimeInit, RuntimeInitParams } from "../types.ts"; @@ -11,7 +11,7 @@ interface RegistrableRuntime { } export function registerRuntime( - name: string + name: string, ): (runtime: T) => void { return (runtime: T) => { if (registeredRuntimes.has(name)) { @@ -23,7 +23,7 @@ export function registerRuntime( export async function initRuntime( name: string, - params: RuntimeInitParams + params: RuntimeInitParams, ): Promise { const init = registeredRuntimes.get(name); if (!init) { diff --git a/src/typegate/src/runtimes/patterns/messenger/async_messenger.ts b/src/typegate/src/runtimes/patterns/messenger/async_messenger.ts index 12d15287cc..d77a4c3604 100644 --- a/src/typegate/src/runtimes/patterns/messenger/async_messenger.ts +++ b/src/typegate/src/runtimes/patterns/messenger/async_messenger.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { getLogger } from "../../../log.ts"; import type { Answer, Message, TaskData } from "./types.ts"; diff --git a/src/typegate/src/runtimes/patterns/messenger/lazy_async_messenger.ts b/src/typegate/src/runtimes/patterns/messenger/lazy_async_messenger.ts index 5b7f37df30..e645734dad 100644 --- a/src/typegate/src/runtimes/patterns/messenger/lazy_async_messenger.ts +++ b/src/typegate/src/runtimes/patterns/messenger/lazy_async_messenger.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { getLogger } from "../../../log.ts"; import { maxi32 } from "../../../utils.ts"; diff --git a/src/typegate/src/runtimes/patterns/messenger/types.ts b/src/typegate/src/runtimes/patterns/messenger/types.ts index fd75e012b8..202d67a7c6 100644 --- a/src/typegate/src/runtimes/patterns/messenger/types.ts +++ b/src/typegate/src/runtimes/patterns/messenger/types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export interface Message { id: number; diff --git a/src/typegate/src/runtimes/prisma.ts b/src/typegate/src/runtimes/prisma.ts index 60fc178640..dac508a1e6 100644 --- a/src/typegate/src/runtimes/prisma.ts +++ b/src/typegate/src/runtimes/prisma.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { registerRuntime } from "./mod.ts"; import { PrismaRuntime } from "./prisma/mod.ts"; diff --git a/src/typegate/src/runtimes/prisma/hooks/generate_schema.ts b/src/typegate/src/runtimes/prisma/hooks/generate_schema.ts index cbc4711768..c4e9336185 100644 --- a/src/typegate/src/runtimes/prisma/hooks/generate_schema.ts +++ b/src/typegate/src/runtimes/prisma/hooks/generate_schema.ts @@ -1,12 +1,11 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Type, type TypeNode } from "../../../typegraph/type_node.ts"; import type { PushHandler } from "../../../typegate/hooks.ts"; import type { SecretManager, TypeGraphDS } from "../../../typegraph/mod.ts"; import type { Cardinality, - Injection, Model, Property, Relationship, @@ -108,9 +107,7 @@ class FieldBuilder { tags.push("@default(uuid())"); break; default: - throw new Error( - "unsupported auto attribute on type string", - ); + throw new Error("unsupported auto attribute on type string"); } break; case "Int": @@ -133,8 +130,8 @@ class FieldBuilder { case "relationship": { const quant = FieldBuilder.#quantifier(prop.cardinality); - const rel = this.relationships.find((r) => - r.name === prop.relationshipName + const rel = this.relationships.find( + (r) => r.name === prop.relationshipName, ); const tags: string[] = []; if (rel == null) { @@ -155,20 +152,21 @@ class FieldBuilder { case "left": { const toPascalCase = (s: string) => s[0].toUpperCase() + s.slice(1); - const leftModel = this.models.find((m) => - m.typeIdx === rel.left.type_idx + const leftModel = this.models.find( + (m) => m.typeIdx === rel.left.type_idx, ); if (leftModel == null) { throw new Error("left model not found"); } - const fields = leftModel.idFields.map((key) => - `${prop.key}${toPascalCase(key)}` + const fields = leftModel.idFields.map( + (key) => `${prop.key}${toPascalCase(key)}`, ); const fkeys = leftModel.idFields.map((key) => { const idProp = leftModel.props.find((p) => p.key === key)!; - const modelField = this.build( - { ...idProp, cardinality: prop.cardinality }, - ); + const modelField = this.build({ + ...idProp, + cardinality: prop.cardinality, + }); modelField.name = `${prop.key}${toPascalCase(modelField.name)}`; modelField.tags = modelField.tags.filter( (t) => !t.startsWith("@default"), @@ -269,7 +267,7 @@ class FieldBuilder { } const SUPPORTED_PROVIDERS = ["postgresql", "mysql", "mongodb"] as const; -type Provider = typeof SUPPORTED_PROVIDERS[number]; +type Provider = (typeof SUPPORTED_PROVIDERS)[number]; export class SchemaGenerator { #provider: Provider; @@ -316,7 +314,10 @@ export class SchemaGenerator { modelFields.push(field); modelFields.push(...field.fkeys); if (field.fkeys.length > 0) { - fkeysMap.set(field.name, field.fkeys.map((fkey) => fkey.name)); + fkeysMap.set( + field.name, + field.fkeys.map((fkey) => fkey.name), + ); } if ( field.fkeysUnique && @@ -342,17 +343,16 @@ export class SchemaGenerator { } // expand foreign keys - const uniqueConstraints = model.uniqueConstraints.map( - (constraint) => constraint.flatMap((key) => fkeysMap.get(key) ?? [key]), + const uniqueConstraints = model.uniqueConstraints.map((constraint) => + constraint.flatMap((key) => fkeysMap.get(key) ?? [key]) ); for (const constraint of uniqueConstraints) { const names = constraint.join(", "); tags.push(`@@unique([${names}])`); } - const formattedFields = modelFields.map((field) => - ` ${field.stringify()}\n` - ) + const formattedFields = modelFields + .map((field) => ` ${field.stringify()}\n`) .join(""); const formattedTags = tags.length > 0 ? "\n" + tags.map((tag) => ` ${tag}\n`).join("") @@ -362,9 +362,7 @@ export class SchemaGenerator { } generate() { - return this.#models.map((model) => this.generateModel(model)).join( - "\n\n", - ); + return this.#models.map((model) => this.generateModel(model)).join("\n\n"); } } diff --git a/src/typegate/src/runtimes/prisma/hooks/mod.ts b/src/typegate/src/runtimes/prisma/hooks/mod.ts index efc14133b9..8bcff2c031 100644 --- a/src/typegate/src/runtimes/prisma/hooks/mod.ts +++ b/src/typegate/src/runtimes/prisma/hooks/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export { runMigrations } from "./run_migrations.ts"; export { generateSchema } from "./generate_schema.ts"; diff --git a/src/typegate/src/runtimes/prisma/hooks/run_migrations.ts b/src/typegate/src/runtimes/prisma/hooks/run_migrations.ts index 31ccf54572..81555ef76f 100644 --- a/src/typegate/src/runtimes/prisma/hooks/run_migrations.ts +++ b/src/typegate/src/runtimes/prisma/hooks/run_migrations.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { PushFailure, diff --git a/src/typegate/src/runtimes/prisma/migration.ts b/src/typegate/src/runtimes/prisma/migration.ts index 3470edf927..eeea3a839e 100644 --- a/src/typegate/src/runtimes/prisma/migration.ts +++ b/src/typegate/src/runtimes/prisma/migration.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "../Runtime.ts"; import type { Resolver, ResolverArgs } from "../../types.ts"; diff --git a/src/typegate/src/runtimes/prisma/mod.ts b/src/typegate/src/runtimes/prisma/mod.ts index 8c277c5c93..1594aeaf4e 100644 --- a/src/typegate/src/runtimes/prisma/mod.ts +++ b/src/typegate/src/runtimes/prisma/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { PrismaRuntime } from "./prisma.ts"; import { PrismaMigrate, PrismaMigrationRuntime } from "./migration.ts"; diff --git a/src/typegate/src/runtimes/prisma/prisma.ts b/src/typegate/src/runtimes/prisma/prisma.ts index 9daf9cb847..c8e828a215 100644 --- a/src/typegate/src/runtimes/prisma/prisma.ts +++ b/src/typegate/src/runtimes/prisma/prisma.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "../Runtime.ts"; import * as native from "native"; diff --git a/src/typegate/src/runtimes/prisma/types.ts b/src/typegate/src/runtimes/prisma/types.ts index d84833b9cf..99b4717d27 100644 --- a/src/typegate/src/runtimes/prisma/types.ts +++ b/src/typegate/src/runtimes/prisma/types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { RuntimeDataBase } from "../../types.ts"; import type { PrismaRuntimeData, TGRuntime } from "../../typegraph/types.ts"; diff --git a/src/typegate/src/runtimes/python.ts b/src/typegate/src/runtimes/python.ts index 0514eefea7..a96df05138 100644 --- a/src/typegate/src/runtimes/python.ts +++ b/src/typegate/src/runtimes/python.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { registerRuntime } from "./mod.ts"; import { getLogger, type Logger } from "../log.ts"; diff --git a/src/typegate/src/runtimes/random.ts b/src/typegate/src/runtimes/random.ts index 91411413fa..0972a7db37 100644 --- a/src/typegate/src/runtimes/random.ts +++ b/src/typegate/src/runtimes/random.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import { ComputeStage } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/runtimes/s3.ts b/src/typegate/src/runtimes/s3.ts index 285cc896b0..b09f8dcb9b 100644 --- a/src/typegate/src/runtimes/s3.ts +++ b/src/typegate/src/runtimes/s3.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import type { ComputeStage } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/runtimes/substantial.ts b/src/typegate/src/runtimes/substantial.ts index 80886ecfdd..8d294555a3 100644 --- a/src/typegate/src/runtimes/substantial.ts +++ b/src/typegate/src/runtimes/substantial.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import { Resolver, RuntimeInitParams } from "../types.ts"; @@ -67,7 +67,7 @@ export class SubstantialRuntime extends Runtime { backend: Backend, queue: string, agent: Agent, - typegate: Typegate + typegate: Typegate, ) { super(typegraphName); this.logger = getLogger(`substantial:'${typegraphName}'`); @@ -131,7 +131,7 @@ export class SubstantialRuntime extends Runtime { tgName, tg.meta.artifacts, runtimeArgs.workflows, - typegate + typegate, ); agent.start(wfDescriptions); @@ -143,12 +143,12 @@ export class SubstantialRuntime extends Runtime { backend, queue, agent, - typegate + typegate, ); await instance.#prepareWorkflowFiles( tg.meta.artifacts, runtimeArgs.workflows, - typegate + typegate, ); return instance; @@ -224,8 +224,9 @@ export class SubstantialRuntime extends Runtime { return ({ name: workflowName }) => { this.#checkWorkflowExistOrThrow(workflowName); - const res = - this.agent.workerManager.getAllocatedResources(workflowName); + const res = this.agent.workerManager.getAllocatedResources( + workflowName, + ); return JSON.parse(JSON.stringify(res)); }; case "results": @@ -247,7 +248,7 @@ export class SubstantialRuntime extends Runtime { const schedule = new Date().toJSON(); logger.info( - `Start request "${workflowName}" received: new run "${runId}" should be scheduled.` + `Start request "${workflowName}" received: new run "${runId}" should be scheduled.`, ); await this.agent.schedule({ backend: this.backend, @@ -404,13 +405,13 @@ export class SubstantialRuntime extends Runtime { async #prepareWorkflowFiles( artifacts: Record, fileDescriptions: Array, - typegate: Typegate + typegate: Typegate, ) { const descriptions = await getWorkflowDescriptions( this.typegraphName, artifacts, fileDescriptions, - typegate + typegate, ); for (const wf of descriptions) { @@ -424,14 +425,16 @@ export class SubstantialRuntime extends Runtime { const closest = closestWord(name, known); if (closest) { throw new Error( - `workflow "${name}" does not exist, did you mean "${closest}"?` + `workflow "${name}" does not exist, did you mean "${closest}"?`, ); } throw new Error( - `workflow "${name}" does not exist, available workflows are ${known - .map((name) => `"${name}"`) - .join(", ")}` + `workflow "${name}" does not exist, available workflows are ${ + known + .map((name) => `"${name}"`) + .join(", ") + }`, ); } } @@ -441,7 +444,7 @@ async function getWorkflowDescriptions( typegraphName: string, artifacts: Record, descriptions: Array, - typegate: Typegate + typegate: Typegate, ) { const basePath = path.join(typegate.config.base.tmp_dir, "artifacts"); logger.info(`Resolved runtime artifacts at ${basePath}`); @@ -456,7 +459,7 @@ async function getWorkflowDescriptions( typegraphName, artifacts, description, - typegate + typegate, ); workflowDescriptions.push({ @@ -477,7 +480,7 @@ async function getWorkflowEntryPointPath( typegraphName: string, artifacts: Record, description: WorkflowFileDescription, - typegate: Typegate + typegate: Typegate, ) { const entryPoint = artifacts[description.file as string]; const deps = (description.deps as string[]).map((dep) => artifacts[dep]); diff --git a/src/typegate/src/runtimes/substantial/agent.ts b/src/typegate/src/runtimes/substantial/agent.ts index 966ce460f3..709d29faa2 100644 --- a/src/typegate/src/runtimes/substantial/agent.ts +++ b/src/typegate/src/runtimes/substantial/agent.ts @@ -2,17 +2,17 @@ import { AddScheduleInput, Backend, NextRun, - Run, ReadOrCloseScheduleInput, + Run, } from "../../../engine/runtime.js"; import { getLogger } from "../../log.ts"; import { TaskContext } from "../deno/shared_types.ts"; import { + appendIfOngoing, Interrupt, Result, WorkerData, WorkflowResult, - appendIfOngoing, } from "./types.ts"; import { RunId, WorkerManager } from "./workflow_worker_manager.ts"; @@ -39,7 +39,7 @@ export class Agent { private backend: Backend, private queue: string, private config: AgentConfig, - private internalTCtx: TaskContext + private internalTCtx: TaskContext, ) {} async schedule(input: AddScheduleInput) { @@ -56,7 +56,7 @@ export class Agent { }); } catch (err) { logger.warn( - `Failed writing log metadata for schedule "${schedule}" (${runId}), skipping it: ${err}` + `Failed writing log metadata for schedule "${schedule}" (${runId}), skipping it: ${err}`, ); } } @@ -89,9 +89,11 @@ export class Agent { this.workflows = workflows; logger.warn( - `Initializing agent to handle ${workflows - .map(({ name }) => name) - .join(", ")}` + `Initializing agent to handle ${ + workflows + .map(({ name }) => name) + .join(", ") + }`, ); this.pollIntervalHandle = setInterval(async () => { @@ -132,7 +134,7 @@ export class Agent { for (const workflow of this.workflows) { const requests = replayRequests.filter( - ({ run_id }) => Agent.parseWorkflowName(run_id) == workflow.name + ({ run_id }) => Agent.parseWorkflowName(run_id) == workflow.name, ); while (requests.length > 0) { @@ -143,7 +145,7 @@ export class Agent { await this.#replay(next, workflow); } catch (err) { logger.error( - `Replay failed for ${workflow.name} => ${JSON.stringify(next)}` + `Replay failed for ${workflow.name} => ${JSON.stringify(next)}`, ); logger.error(err); } finally { @@ -189,7 +191,7 @@ export class Agent { // necessarily represent the state of what is actually running on the current typegate node if (this.workerManager.isOngoing(next.run_id)) { logger.warn( - `skip triggering ${next.run_id} for the current tick as it is still ongoing` + `skip triggering ${next.run_id} for the current tick as it is still ongoing`, ); return; @@ -234,9 +236,11 @@ export class Agent { // A consequence of the above, a workflow is always triggered by gql { start(..) } // This can also occur if an event is sent from gql under a runId that is not valid (e.g. due to typo) logger.warn( - `First item in the operation list is not a Start, got "${JSON.stringify( - first - )}" instead. Closing the underlying schedule.` + `First item in the operation list is not a Start, got "${ + JSON.stringify( + first, + ) + }" instead. Closing the underlying schedule.`, ); await Meta.substantial.storeCloseSchedule(schedDef); @@ -251,12 +255,12 @@ export class Agent { run, next.schedule_date, first.event.kwargs, - this.internalTCtx + this.internalTCtx, ); this.workerManager.listen( next.run_id, - this.#eventResultHandlerFor(workflow.name, next.run_id) + this.#eventResultHandlerFor(workflow.name, next.run_id), ); } catch (err) { throw err; @@ -279,7 +283,7 @@ export class Agent { // All Worker/Runner non-user issue should fall here // Note: Should never throw (typegate will panic), this will run in a worker logger.error( - `result error for "${runId}": ${JSON.stringify(result.payload)}` + `result error for "${runId}": ${JSON.stringify(result.payload)}`, ); return; } @@ -307,7 +311,7 @@ export class Agent { startedAt, workflowName, runId, - ret + ret, ); break; } @@ -318,9 +322,9 @@ export class Agent { } default: logger.error( - `Fatal: invalid type ${ - answer.type - } sent by "${runId}": ${JSON.stringify(answer.data)}` + `Fatal: invalid type ${answer.type} sent by "${runId}": ${ + JSON.stringify(answer.data) + }`, ); } }; @@ -329,7 +333,7 @@ export class Agent { async #workflowHandleInterrupts( workflowName: string, runId: string, - { result, schedule, run }: WorkflowResult + { result, schedule, run }: WorkflowResult, ) { this.workerManager.destroyWorker(workflowName, runId); // ! @@ -378,14 +382,16 @@ export class Agent { startedAt: Date, workflowName: string, runId: string, - { result, kind, schedule, run }: WorkflowResult + { result, kind, schedule, run }: WorkflowResult, ) { this.workerManager.destroyWorker(workflowName, runId); logger.info( - `gracefull completion of "${runId}" (${kind}): ${JSON.stringify( - result - )} started at "${startedAt}"` + `gracefull completion of "${runId}" (${kind}): ${ + JSON.stringify( + result, + ) + } started at "${startedAt}"`, ); logger.info(`Append Stop ${runId}`); @@ -404,7 +410,7 @@ export class Agent { }); logger.info( - `Persist finalized records for "${workflowName}": ${result}" and closing everything..` + `Persist finalized records for "${workflowName}": ${result}" and closing everything..`, ); const _run = await Meta.substantial.storePersistRun({ @@ -451,13 +457,15 @@ function checkIfRunHasStopped(run: Run) { if (op.event.type == "Start") { if (life >= 1) { logger.error( - `bad logs: ${JSON.stringify( - run.operations.map(({ event }) => event.type) - )}` + `bad logs: ${ + JSON.stringify( + run.operations.map(({ event }) => event.type), + ) + }`, ); throw new Error( - `"${run.run_id}" has potentially corrupted logs, another run occured yet previous has not stopped` + `"${run.run_id}" has potentially corrupted logs, another run occured yet previous has not stopped`, ); } @@ -466,13 +474,15 @@ function checkIfRunHasStopped(run: Run) { } else if (op.event.type == "Stop") { if (life <= 0) { logger.error( - `bad logs: ${JSON.stringify( - run.operations.map(({ event }) => event.type) - )}` + `bad logs: ${ + JSON.stringify( + run.operations.map(({ event }) => event.type), + ) + }`, ); throw new Error( - `"${run.run_id}" has potentitally corrupted logs, attempted stopping already closed run, or run with a missing Start` + `"${run.run_id}" has potentitally corrupted logs, attempted stopping already closed run, or run with a missing Start`, ); } diff --git a/src/typegate/src/runtimes/substantial/deno_context.ts b/src/typegate/src/runtimes/substantial/deno_context.ts index 44a48f81e0..03e73edb5f 100644 --- a/src/typegate/src/runtimes/substantial/deno_context.ts +++ b/src/typegate/src/runtimes/substantial/deno_context.ts @@ -1,12 +1,12 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // FIXME: DO NOT IMPORT any file that refers to Meta, this will be instantiated in a Worker // import { sleep } from "../../utils.ts"; // will silently fail?? import { make_internal } from "../../worker_utils.ts"; import { TaskContext } from "../deno/shared_types.ts"; -import { Interrupt, OperationEvent, Run, appendIfOngoing } from "./types.ts"; +import { appendIfOngoing, Interrupt, OperationEvent, Run } from "./types.ts"; // const isTest = Deno.env.get("DENO_TESTING") === "true"; const testBaseUrl = Deno.env.get("TEST_OVERRIDE_GQL_ORIGIN"); @@ -14,13 +14,13 @@ const testBaseUrl = Deno.env.get("TEST_OVERRIDE_GQL_ORIGIN"); const additionalHeaders = { connection: "keep-alive" }; export class Context { - private id: number = 0; + private id = 0; gql: ReturnType; constructor( private run: Run, private kwargs: Record, - private internal: TaskContext + private internal: TaskContext, ) { this.gql = createGQLClient(internal); } @@ -86,7 +86,7 @@ export class Context { const strategy = new RetryStrategy( retry.maxRetries, retry.minBackoffMs, - retry.maxBackoffMs + retry.maxBackoffMs, ); const retriesLeft = Math.max(retry.maxRetries - currRetryCount, 0); @@ -170,7 +170,7 @@ export class Context { async handle( eventName: string, - fn: (received: unknown) => unknown | Promise + fn: (received: unknown) => unknown | Promise, ) { for (const { event } of this.run.operations) { if (event.type == "Send" && event.event_name == eventName) { @@ -208,7 +208,7 @@ export class Context { createWorkflowHandle(handleDef: SerializableWorkflowHandle) { if (!handleDef.runId) { throw new Error( - "Cannot create handle from a definition that was not run" + "Cannot create handle from a definition that was not run", ); } return new ChildWorkflowHandle(this, handleDef); @@ -227,11 +227,11 @@ interface SerializableWorkflowHandle { export class ChildWorkflowHandle { constructor( private ctx: Context, - public handleDef: SerializableWorkflowHandle + public handleDef: SerializableWorkflowHandle, ) {} async start(): Promise { - const { data } = await this.ctx.gql/**/ ` + const { data } = await this.ctx.gql /**/` mutation ($name: String!, $kwargs: String!) { _sub_internal_start(name: $name, kwargs: $kwargs) } @@ -243,7 +243,7 @@ export class ChildWorkflowHandle { this.handleDef.runId = (data as any)._sub_internal_start as string; this.#checkRunId(); - const { data: _ } = await this.ctx.gql/**/ ` + const { data: _ } = await this.ctx.gql /**/` mutation ($parent_run_id: String!, $child_run_id: String!) { _sub_internal_link_parent_child(parent_run_id: $parent_run_id, child_run_id: $child_run_id) } @@ -258,7 +258,7 @@ export class ChildWorkflowHandle { async result(): Promise { this.#checkRunId(); - const { data } = await this.ctx.gql/**/ ` + const { data } = await this.ctx.gql /**/` query ($name: String!) { _sub_internal_results(name: $name) { completed { @@ -292,7 +292,7 @@ export class ChildWorkflowHandle { async stop(): Promise { this.#checkRunId(); - const { data } = await this.ctx.gql/**/ ` + const { data } = await this.ctx.gql /**/` mutation ($run_id: String!) { _sub_internal_stop(run_id: $run_id) } @@ -306,7 +306,7 @@ export class ChildWorkflowHandle { async hasStopped(): Promise { this.#checkRunId(); - const { data } = await this.ctx.gql/**/ ` + const { data } = await this.ctx.gql /**/` query { _sub_internal_results(name: $name) { completed { @@ -329,7 +329,7 @@ export class ChildWorkflowHandle { #checkRunId() { if (!this.handleDef.runId) { throw new Error( - "Invalid state: run_id is not properly set, this could mean that the workflow was not started yet" + "Invalid state: run_id is not properly set, this could mean that the workflow was not started yet", ); } } @@ -371,7 +371,7 @@ class RetryStrategy { constructor( maxRetries: number, minBackoffMs?: number, - maxBackoffMs?: number + maxBackoffMs?: number, ) { this.maxRetries = maxRetries; this.minBackoffMs = minBackoffMs; diff --git a/src/typegate/src/runtimes/substantial/types.ts b/src/typegate/src/runtimes/substantial/types.ts index e7defcf5bd..c750130e6d 100644 --- a/src/typegate/src/runtimes/substantial/types.ts +++ b/src/typegate/src/runtimes/substantial/types.ts @@ -1,12 +1,12 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Operation, Run } from "../../../engine/runtime.js"; export type { + Backend, Operation, OperationEvent, Run, - Backend, } from "../../../engine/runtime.js"; export type AnyString = string & Record; diff --git a/src/typegate/src/runtimes/substantial/worker.ts b/src/typegate/src/runtimes/substantial/worker.ts index fcbc626421..bff137738a 100644 --- a/src/typegate/src/runtimes/substantial/worker.ts +++ b/src/typegate/src/runtimes/substantial/worker.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { errorToString } from "../../worker_utils.ts"; import { Context } from "./deno_context.ts"; @@ -32,27 +32,34 @@ self.onmessage = async function (event) { .then((wfResult: unknown) => { self.postMessage( Ok( - Msg(type, { - kind: "SUCCESS", - result: wfResult, - run: runCtx!.getRun(), - schedule, - } satisfies WorkflowResult) - ) + Msg( + type, + { + kind: "SUCCESS", + result: wfResult, + run: runCtx!.getRun(), + schedule, + } satisfies WorkflowResult, + ), + ), ); }) .catch((wfException: unknown) => { self.postMessage( Ok( - Msg(type, { - kind: "FAIL", - result: errorToString(wfException), - exception: - wfException instanceof Error ? wfException : undefined, - run: runCtx!.getRun(), - schedule, - } satisfies WorkflowResult) - ) + Msg( + type, + { + kind: "FAIL", + result: errorToString(wfException), + exception: wfException instanceof Error + ? wfException + : undefined, + run: runCtx!.getRun(), + schedule, + } satisfies WorkflowResult, + ), + ), ); }); break; diff --git a/src/typegate/src/runtimes/substantial/workflow_worker_manager.ts b/src/typegate/src/runtimes/substantial/workflow_worker_manager.ts index 795d20975a..62ff176d53 100644 --- a/src/typegate/src/runtimes/substantial/workflow_worker_manager.ts +++ b/src/typegate/src/runtimes/substantial/workflow_worker_manager.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { envSharedWithWorkers } from "../../config/shared.ts"; import { getLogger } from "../../log.ts"; @@ -48,7 +48,7 @@ export class WorkflowRecorder { name: WorkflowName, runId: RunId, worker: WorkerRecord, - startedAt: Date + startedAt: Date, ) { if (!this.workflowRuns.has(name)) { this.workflowRuns.set(name, new Set()); @@ -83,7 +83,7 @@ export class WorkflowRecorder { if (this.workflowRuns.has(name)) { if (!record) { logger.warn( - `"${runId}" associated with "${name}" does not exist or has been already destroyed` + `"${runId}" associated with "${name}" does not exist or has been already destroyed`, ); return false; } @@ -140,7 +140,7 @@ export class WorkerManager { modulePath, worker, }, - new Date() + new Date(), ); } @@ -151,10 +151,12 @@ export class WorkerManager { destroyAllWorkers() { this.recorder.destroyAllWorkers(); logger.warn( - `Destroyed workers for ${this.recorder - .getRegisteredWorkflowNames() - .map((w) => `"${w}"`) - .join(", ")}` + `Destroyed workers for ${ + this.recorder + .getRegisteredWorkflowNames() + .map((w) => `"${w}"`) + .join(", ") + }`, ); } @@ -181,7 +183,7 @@ export class WorkerManager { const rec = this.recorder.startedAtRecords.get(runId); if (!rec) { throw new Error( - `Invalid state: cannot find initial time for run "${runId}"` + `Invalid state: cannot find initial time for run "${runId}"`, ); } return rec; @@ -222,7 +224,7 @@ export class WorkerManager { storedRun: Run, schedule: string, kwargs: Record, - internalTCtx: TaskContext + internalTCtx: TaskContext, ) { this.#createWorker(name, workflowModPath, runId); this.trigger("START", runId, { diff --git a/src/typegate/src/runtimes/temporal.ts b/src/typegate/src/runtimes/temporal.ts index 7c4687a1f9..c3af66a796 100644 --- a/src/typegate/src/runtimes/temporal.ts +++ b/src/typegate/src/runtimes/temporal.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import * as native from "native"; diff --git a/src/typegate/src/runtimes/typegate.ts b/src/typegate/src/runtimes/typegate.ts index 81c8878280..bec4fea41a 100644 --- a/src/typegate/src/runtimes/typegate.ts +++ b/src/typegate/src/runtimes/typegate.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Runtime } from "./Runtime.ts"; import { ComputeStage } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/runtimes/typegraph.ts b/src/typegate/src/runtimes/typegraph.ts index b109a0df7e..36ef2fdc59 100644 --- a/src/typegate/src/runtimes/typegraph.ts +++ b/src/typegate/src/runtimes/typegraph.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { TypeGraph, diff --git a/src/typegate/src/runtimes/utils/graphql_forward_vars.ts b/src/typegate/src/runtimes/utils/graphql_forward_vars.ts index e16c113e3e..94dedd77af 100644 --- a/src/typegate/src/runtimes/utils/graphql_forward_vars.ts +++ b/src/typegate/src/runtimes/utils/graphql_forward_vars.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { ensure } from "../../utils.ts"; import type { ComputeStage } from "../../engine/query_engine.ts"; diff --git a/src/typegate/src/runtimes/utils/graphql_inline_vars.ts b/src/typegate/src/runtimes/utils/graphql_inline_vars.ts index 194a5a699e..3b6630a932 100644 --- a/src/typegate/src/runtimes/utils/graphql_inline_vars.ts +++ b/src/typegate/src/runtimes/utils/graphql_inline_vars.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { JSONValue } from "../../utils.ts"; import type { FromVars } from "../graphql.ts"; diff --git a/src/typegate/src/runtimes/utils/http.ts b/src/typegate/src/runtimes/utils/http.ts index 7610cf9679..a3a2d48fac 100644 --- a/src/typegate/src/runtimes/utils/http.ts +++ b/src/typegate/src/runtimes/utils/http.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export interface ReplaceDynamicPathParamsResult { pathname: string; diff --git a/src/typegate/src/runtimes/wasm_reflected.ts b/src/typegate/src/runtimes/wasm_reflected.ts index 724f646120..3b3b6286b8 100644 --- a/src/typegate/src/runtimes/wasm_reflected.ts +++ b/src/typegate/src/runtimes/wasm_reflected.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { registerRuntime } from "./mod.ts"; import { Runtime } from "./Runtime.ts"; diff --git a/src/typegate/src/runtimes/wasm_wire.ts b/src/typegate/src/runtimes/wasm_wire.ts index de143b7225..d6d9b549a1 100644 --- a/src/typegate/src/runtimes/wasm_wire.ts +++ b/src/typegate/src/runtimes/wasm_wire.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { registerRuntime } from "./mod.ts"; import { Runtime } from "./Runtime.ts"; diff --git a/src/typegate/src/runtimes/wit_wire/mod.ts b/src/typegate/src/runtimes/wit_wire/mod.ts index 5374ae7361..c0984b51fb 100644 --- a/src/typegate/src/runtimes/wit_wire/mod.ts +++ b/src/typegate/src/runtimes/wit_wire/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as zod from "zod"; import type { WitWireMatInfo } from "../../../engine/runtime.js"; diff --git a/src/typegate/src/services/artifact_service.ts b/src/typegate/src/services/artifact_service.ts index 555e118a72..1a9489a65c 100644 --- a/src/typegate/src/services/artifact_service.ts +++ b/src/typegate/src/services/artifact_service.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type ArtifactMeta, diff --git a/src/typegate/src/services/auth/cookies.ts b/src/typegate/src/services/auth/cookies.ts index aaf7b2c478..2a528e7204 100644 --- a/src/typegate/src/services/auth/cookies.ts +++ b/src/typegate/src/services/auth/cookies.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { deleteCookie, getCookies, setCookie } from "@std/http/cookie"; import type { TypegateCryptoKeys } from "../../crypto.ts"; diff --git a/src/typegate/src/services/auth/mod.ts b/src/typegate/src/services/auth/mod.ts index 0cd23a06a3..16175e4ea2 100644 --- a/src/typegate/src/services/auth/mod.ts +++ b/src/typegate/src/services/auth/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { JWTAuth } from "./protocols/jwt.ts"; import { BasicAuth } from "./protocols/basic.ts"; diff --git a/src/typegate/src/services/auth/protocols/basic.ts b/src/typegate/src/services/auth/protocols/basic.ts index f72f344e64..a6f52312be 100644 --- a/src/typegate/src/services/auth/protocols/basic.ts +++ b/src/typegate/src/services/auth/protocols/basic.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { SystemTypegraph } from "../../../system_typegraphs.ts"; import { b64decode } from "../../../utils.ts"; diff --git a/src/typegate/src/services/auth/protocols/internal.ts b/src/typegate/src/services/auth/protocols/internal.ts index b92959225b..bd1a82e832 100644 --- a/src/typegate/src/services/auth/protocols/internal.ts +++ b/src/typegate/src/services/auth/protocols/internal.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypegateCryptoKeys } from "../../../crypto.ts"; import { getLogger } from "../../../log.ts"; diff --git a/src/typegate/src/services/auth/protocols/jwt.ts b/src/typegate/src/services/auth/protocols/jwt.ts index 7d93e32a97..a4788268cb 100644 --- a/src/typegate/src/services/auth/protocols/jwt.ts +++ b/src/typegate/src/services/auth/protocols/jwt.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as jwt from "jwt"; import { getLogger } from "../../../log.ts"; diff --git a/src/typegate/src/services/auth/protocols/oauth2.ts b/src/typegate/src/services/auth/protocols/oauth2.ts index 0615565604..09729b4402 100644 --- a/src/typegate/src/services/auth/protocols/oauth2.ts +++ b/src/typegate/src/services/auth/protocols/oauth2.ts @@ -1,8 +1,12 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypegateConfigBase } from "../../../config.ts"; -import { OAuth2Client, type OAuth2ClientConfig, type Tokens } from "oauth2_client"; +import { + OAuth2Client, + type OAuth2ClientConfig, + type Tokens, +} from "oauth2_client"; import { randomUUID, type TypegateCryptoKeys } from "../../../crypto.ts"; import type { AdditionalAuthParams, JWTClaims } from "../mod.ts"; import { getLogger } from "../../../log.ts"; diff --git a/src/typegate/src/services/auth/protocols/protocol.ts b/src/typegate/src/services/auth/protocols/protocol.ts index cc2ce980cf..115d73db48 100644 --- a/src/typegate/src/services/auth/protocols/protocol.ts +++ b/src/typegate/src/services/auth/protocols/protocol.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { notFound } from "../../../services/responses.ts"; diff --git a/src/typegate/src/services/auth/routes/mod.ts b/src/typegate/src/services/auth/routes/mod.ts index 4fe31f2a22..c11247f0e0 100644 --- a/src/typegate/src/services/auth/routes/mod.ts +++ b/src/typegate/src/services/auth/routes/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { QueryEngine } from "../../../engine/query_engine.ts"; diff --git a/src/typegate/src/services/auth/routes/take.ts b/src/typegate/src/services/auth/routes/take.ts index bd29792060..53d8845686 100644 --- a/src/typegate/src/services/auth/routes/take.ts +++ b/src/typegate/src/services/auth/routes/take.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { getLogger } from "../../../log.ts"; import { clearCookie, getEncryptedCookie } from "../cookies.ts"; diff --git a/src/typegate/src/services/auth/routes/validate.ts b/src/typegate/src/services/auth/routes/validate.ts index 9ed4a8c6ca..7e97d9172e 100644 --- a/src/typegate/src/services/auth/routes/validate.ts +++ b/src/typegate/src/services/auth/routes/validate.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { RouteParams } from "./mod.ts"; diff --git a/src/typegate/src/services/graphql_service.ts b/src/typegate/src/services/graphql_service.ts index 7e0ce139e4..65be78f48e 100644 --- a/src/typegate/src/services/graphql_service.ts +++ b/src/typegate/src/services/graphql_service.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { getLogger } from "../log.ts"; import { parse } from "graphql"; @@ -9,7 +9,10 @@ import { type Operations, parseRequest, } from "../transports/graphql/request_parser.ts"; -import { findOperation, type FragmentDefs } from "../transports/graphql/graphql.ts"; +import { + findOperation, + type FragmentDefs, +} from "../transports/graphql/graphql.ts"; import { forceAnyToOption } from "../utils.ts"; import type { QueryEngine } from "../engine/query_engine.ts"; import type * as ast from "graphql/ast"; diff --git a/src/typegate/src/services/info_service.ts b/src/typegate/src/services/info_service.ts index 2883f0c874..932561d2cd 100644 --- a/src/typegate/src/services/info_service.ts +++ b/src/typegate/src/services/info_service.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export const handleInfo = ( _request: Request, diff --git a/src/typegate/src/services/middlewares.ts b/src/typegate/src/services/middlewares.ts index 04cb7eccfb..0d9b0b0234 100644 --- a/src/typegate/src/services/middlewares.ts +++ b/src/typegate/src/services/middlewares.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { globalConfig } from "../config.ts"; import type { QueryEngine } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/services/playground_service.ts b/src/typegate/src/services/playground_service.ts index b713f583c1..6b90403c9e 100644 --- a/src/typegate/src/services/playground_service.ts +++ b/src/typegate/src/services/playground_service.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { globalConfig } from "../config.ts"; import type { QueryEngine } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/services/responses.ts b/src/typegate/src/services/responses.ts index 98744c61d2..f188940bfa 100644 --- a/src/typegate/src/services/responses.ts +++ b/src/typegate/src/services/responses.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { JSONValue } from "../utils.ts"; import { BaseError, ErrorKind } from "../errors.ts"; diff --git a/src/typegate/src/services/rest_service.ts b/src/typegate/src/services/rest_service.ts index 15af7dab66..7bce7387d0 100644 --- a/src/typegate/src/services/rest_service.ts +++ b/src/typegate/src/services/rest_service.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { QueryEngine } from "../engine/query_engine.ts"; import { BadContext, ResolverError } from "../errors.ts"; diff --git a/src/typegate/src/sync/mod.ts b/src/typegate/src/sync/mod.ts index e0bcf40f75..5391384fae 100644 --- a/src/typegate/src/sync/mod.ts +++ b/src/typegate/src/sync/mod.ts @@ -1,4 +1,4 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // diff --git a/src/typegate/src/sync/replicated_map.ts b/src/typegate/src/sync/replicated_map.ts index 373b1923f0..b7317cb9c9 100644 --- a/src/typegate/src/sync/replicated_map.ts +++ b/src/typegate/src/sync/replicated_map.ts @@ -1,7 +1,12 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 - -import { connect, type Redis, type RedisConnectOptions, type XIdInput } from "redis"; +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 + +import { + connect, + type Redis, + type RedisConnectOptions, + type XIdInput, +} from "redis"; import * as Sentry from "sentry"; import { getLogger } from "../log.ts"; import { ensure } from "../utils.ts"; diff --git a/src/typegate/src/sync/typegraph.ts b/src/typegate/src/sync/typegraph.ts index 370596a950..232c57e08f 100644 --- a/src/typegate/src/sync/typegraph.ts +++ b/src/typegate/src/sync/typegraph.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { SecretManager, diff --git a/src/typegate/src/system_typegraphs.ts b/src/typegate/src/system_typegraphs.ts index 86c37772bc..3c4e934e8d 100644 --- a/src/typegate/src/system_typegraphs.ts +++ b/src/typegate/src/system_typegraphs.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { basename } from "@std/url"; import { fromFileUrl, toFileUrl } from "@std/path"; diff --git a/src/typegate/src/transports/graphql/gq.ts b/src/typegate/src/transports/graphql/gq.ts index 23e6e312ff..be04b0543a 100644 --- a/src/typegate/src/transports/graphql/gq.ts +++ b/src/typegate/src/transports/graphql/gq.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type * as ast from "graphql/ast"; diff --git a/src/typegate/src/transports/graphql/graphql.ts b/src/typegate/src/transports/graphql/graphql.ts index dc76f94d6a..dcaca7b1c7 100644 --- a/src/typegate/src/transports/graphql/graphql.ts +++ b/src/typegate/src/transports/graphql/graphql.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type * as ast from "graphql/ast"; import { Kind } from "graphql"; diff --git a/src/typegate/src/transports/graphql/request_parser.ts b/src/typegate/src/transports/graphql/request_parser.ts index 2f9d1c89f2..8a000250f8 100644 --- a/src/typegate/src/transports/graphql/request_parser.ts +++ b/src/typegate/src/transports/graphql/request_parser.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export interface Operations { query: string; diff --git a/src/typegate/src/transports/graphql/typegraph.ts b/src/typegate/src/transports/graphql/typegraph.ts index df08e087df..9c2f1ba890 100644 --- a/src/typegate/src/transports/graphql/typegraph.ts +++ b/src/typegate/src/transports/graphql/typegraph.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraphDS } from "../../typegraph/mod.ts"; import type { ObjectNode } from "../../typegraph/type_node.ts"; diff --git a/src/typegate/src/transports/graphql/utils.ts b/src/typegate/src/transports/graphql/utils.ts index 5de5b550c4..19ea210811 100644 --- a/src/typegate/src/transports/graphql/utils.ts +++ b/src/typegate/src/transports/graphql/utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraphDS } from "../../typegraph/mod.ts"; import type { TypeNode } from "../../typegraph/type_node.ts"; diff --git a/src/typegate/src/transports/rest/rest_schema_generator.ts b/src/typegate/src/transports/rest/rest_schema_generator.ts index e209d4e9f3..96dffff707 100644 --- a/src/typegate/src/transports/rest/rest_schema_generator.ts +++ b/src/typegate/src/transports/rest/rest_schema_generator.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraph } from "../../typegraph/mod.ts"; diff --git a/src/typegate/src/typegate/artifacts/local.ts b/src/typegate/src/typegate/artifacts/local.ts index 8d661c30e6..44e7ea0f52 100644 --- a/src/typegate/src/typegate/artifacts/local.ts +++ b/src/typegate/src/typegate/artifacts/local.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { resolve } from "@std/path/resolve"; import { HashTransformStream } from "../../utils/hash.ts"; @@ -60,7 +60,7 @@ export class LocalArtifactPersistence implements ArtifactPersistence { await Deno.remove(this.dirs.artifacts, { recursive: true }); } - async save(stream: ReadableStream, size: number): Promise { + async save(stream: ReadableStream, _size: number): Promise { const tmpFile = await Deno.makeTempFile({ dir: this.dirs.temp }); const file = await Deno.open(tmpFile, { write: true, truncate: true }); const hasher = createHash("sha256"); diff --git a/src/typegate/src/typegate/artifacts/mod.ts b/src/typegate/src/typegate/artifacts/mod.ts index e7ede30440..34fb655dab 100644 --- a/src/typegate/src/typegate/artifacts/mod.ts +++ b/src/typegate/src/typegate/artifacts/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { sha256, type TypegateCryptoKeys } from "../../crypto.ts"; import { getLogger } from "../../log.ts"; diff --git a/src/typegate/src/typegate/artifacts/shared.ts b/src/typegate/src/typegate/artifacts/shared.ts index 50055b290c..6871bc0d09 100644 --- a/src/typegate/src/typegate/artifacts/shared.ts +++ b/src/typegate/src/typegate/artifacts/shared.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { connect, type Redis, type RedisConnectOptions } from "redis"; import { getLogger } from "../../log.ts"; @@ -53,14 +53,19 @@ class SharedArtifactPersistence implements ArtifactPersistence { ): Promise { const localShadow = await LocalArtifactPersistence.init(baseDir); const s3 = new S3(syncConfig.s3); - return new SharedArtifactPersistence(localShadow, s3, syncConfig.s3Bucket, syncConfig); + return new SharedArtifactPersistence( + localShadow, + s3, + syncConfig.s3Bucket, + syncConfig, + ); } constructor( private localShadow: LocalArtifactPersistence, private s3: S3, private s3Bucket: string, - private syncConfig: SyncConfig + private syncConfig: SyncConfig, ) {} get dirs() { @@ -76,12 +81,13 @@ class SharedArtifactPersistence implements ArtifactPersistence { const hasher = createHash("sha256"); const stream2 = stream.pipeThrough(new HashTransformStream(hasher)); - + // temporary key is needed as we won't be able to get the hash sum of the file, // which we use as the key of the object, // before going through whole stream. - // so we create a temporary key to store the file/object and then copy the object after we have computed the hash. - const tempKey = resolveS3Key(this.s3Bucket, + // so we create a temporary key to store the file/object and then copy the object after we have computed the hash. + const tempKey = resolveS3Key( + this.s3Bucket, `tmp/${Math.random().toString(36).substring(2)}`, ); @@ -94,23 +100,23 @@ class SharedArtifactPersistence implements ArtifactPersistence { ContentLength: size, }, }); - + const _ = await upload.done(); - + const hash = hasher.digest("hex"); logger.info(`persisting artifact to S3: ${hash}`); - + await this.s3.copyObject({ Bucket: this.s3Bucket, CopySource: `${this.s3Bucket}/${tempKey}`, Key: resolveS3Key(this.s3Bucket, hash), }); - + await this.s3.deleteObject({ Bucket: this.s3Bucket, Key: tempKey, }); - + return hash; } diff --git a/src/typegate/src/typegate/hooks.ts b/src/typegate/src/typegate/hooks.ts index ca58c38858..5752773261 100644 --- a/src/typegate/src/typegate/hooks.ts +++ b/src/typegate/src/typegate/hooks.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { MessageEntry, Migrations } from "../typegate/register.ts"; import type { SecretManager, TypeGraphDS } from "../typegraph/mod.ts"; diff --git a/src/typegate/src/typegate/memory_register.ts b/src/typegate/src/typegate/memory_register.ts index a4fea212ad..5f2a8e1b89 100644 --- a/src/typegate/src/typegate/memory_register.ts +++ b/src/typegate/src/typegate/memory_register.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { QueryEngine } from "../engine/query_engine.ts"; import { Register } from "../typegate/register.ts"; diff --git a/src/typegate/src/typegate/mod.ts b/src/typegate/src/typegate/mod.ts index 0deb05fc9a..69c1d60a39 100644 --- a/src/typegate/src/typegate/mod.ts +++ b/src/typegate/src/typegate/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type Register, ReplicatedRegister } from "./register.ts"; import * as Sentry from "sentry"; diff --git a/src/typegate/src/typegate/no_limiter.ts b/src/typegate/src/typegate/no_limiter.ts index ef18dac12b..4d6f156393 100644 --- a/src/typegate/src/typegate/no_limiter.ts +++ b/src/typegate/src/typegate/no_limiter.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { RateLimiter } from "../typegate/rate_limiter.ts"; diff --git a/src/typegate/src/typegate/rate_limiter.ts b/src/typegate/src/typegate/rate_limiter.ts index 1c2629ad3c..46cc482859 100644 --- a/src/typegate/src/typegate/rate_limiter.ts +++ b/src/typegate/src/typegate/rate_limiter.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { connect, type Redis, type RedisConnectOptions } from "redis"; import type { QueryEngine } from "../engine/query_engine.ts"; diff --git a/src/typegate/src/typegate/register.ts b/src/typegate/src/typegate/register.ts index 917d41f7bd..42d3ebbdcb 100644 --- a/src/typegate/src/typegate/register.ts +++ b/src/typegate/src/typegate/register.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { QueryEngine } from "../engine/query_engine.ts"; import type { RedisConnectOptions, XIdInput } from "redis"; diff --git a/src/typegate/src/typegraph/mod.ts b/src/typegate/src/typegraph/mod.ts index 77d50c45ae..aaec624dba 100644 --- a/src/typegate/src/typegraph/mod.ts +++ b/src/typegate/src/typegraph/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type * as ast from "graphql/ast"; import { Kind } from "graphql"; @@ -222,7 +222,7 @@ export class TypeGraph implements AsyncDisposable { (mat) => mat.runtime === idx, ); - logger.info("initializing runtime {}", { name: runtime.name }) + logger.info("initializing runtime {}", { name: runtime.name }); return initRuntime(runtime.name, { typegate, typegraph, @@ -384,13 +384,13 @@ export class TypeGraph implements AsyncDisposable { } ensure( isObject(type) || - isInteger(type) || - isNumber(type) || - isBoolean(type) || - isFunction(type) || - isString(type) || - isUnion(type) || - isEither(type), + isInteger(type) || + isNumber(type) || + isBoolean(type) || + isFunction(type) || + isString(type) || + isUnion(type) || + isEither(type), `object expected but got ${type.type}`, ); return (x: any) => { diff --git a/src/typegate/src/typegraph/type_node.ts b/src/typegate/src/typegraph/type_node.ts index 105a120231..3aafdf7b91 100644 --- a/src/typegate/src/typegraph/type_node.ts +++ b/src/typegate/src/typegraph/type_node.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export const Type = { OPTIONAL: "optional", diff --git a/src/typegate/src/typegraph/types.ts b/src/typegate/src/typegraph/types.ts index 6607cc9515..edaaeb5c2c 100644 --- a/src/typegate/src/typegraph/types.ts +++ b/src/typegate/src/typegraph/types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // deno-lint-ignore-file no-explicit-any no-empty-interface diff --git a/src/typegate/src/typegraph/utils.ts b/src/typegate/src/typegraph/utils.ts index 1acd2c8a29..88bf0152be 100644 --- a/src/typegate/src/typegraph/utils.ts +++ b/src/typegate/src/typegraph/utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraph, TypeGraphDS } from "../typegraph/mod.ts"; import { diff --git a/src/typegate/src/typegraph/versions.ts b/src/typegate/src/typegraph/versions.ts index 26a2f0389e..ae16cf7a75 100644 --- a/src/typegate/src/typegraph/versions.ts +++ b/src/typegate/src/typegraph/versions.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { TypeGraph, type TypeGraphDS } from "../typegraph/mod.ts"; import { globalConfig } from "../config.ts"; diff --git a/src/typegate/src/typegraph/visitor.ts b/src/typegate/src/typegraph/visitor.ts index bfa44d7174..9b928f9fb9 100644 --- a/src/typegate/src/typegraph/visitor.ts +++ b/src/typegate/src/typegraph/visitor.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { TypeGraphDS } from "../typegraph/mod.ts"; import { Type, type TypeNode } from "./type_node.ts"; diff --git a/src/typegate/src/typegraphs/introspection.py b/src/typegate/src/typegraphs/introspection.py index c39358beee..1cef3dbe91 100644 --- a/src/typegate/src/typegraphs/introspection.py +++ b/src/typegate/src/typegraphs/introspection.py @@ -1,4 +1,5 @@ -# Copyright Metatype under the Elastic License 2.0. +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, Policy, fx, t, typegraph from typegraph.gen.exports.runtimes import ( diff --git a/src/typegate/src/typegraphs/prisma_migration.py b/src/typegate/src/typegraphs/prisma_migration.py index c15b1c66fa..ddc96df004 100644 --- a/src/typegate/src/typegraphs/prisma_migration.py +++ b/src/typegate/src/typegraphs/prisma_migration.py @@ -1,3 +1,6 @@ +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 + from typegraph import Graph, t, typegraph from typegraph.gen.exports.runtimes import ( PrismaMigrationOperation, diff --git a/src/typegate/src/typegraphs/typegate.py b/src/typegate/src/typegraphs/typegate.py index 581fb9e7ad..2b65527830 100644 --- a/src/typegate/src/typegraphs/typegate.py +++ b/src/typegate/src/typegraphs/typegate.py @@ -1,4 +1,5 @@ -# Copyright Metatype under the Elastic License 2.0. +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, fx, t, typegraph from typegraph.gen.exports.runtimes import TypegateOperation diff --git a/src/typegate/src/types.ts b/src/typegate/src/types.ts index a0d9600351..81d90949b6 100644 --- a/src/typegate/src/types.ts +++ b/src/typegate/src/types.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ComputeStage } from "./engine/query_engine.ts"; import type { Runtime } from "./runtimes/Runtime.ts"; diff --git a/src/typegate/src/utils.ts b/src/typegate/src/utils.ts index 5d6570fafc..8b98fd28a6 100644 --- a/src/typegate/src/utils.ts +++ b/src/typegate/src/utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { ComputeStage } from "./engine/query_engine.ts"; import type * as ast from "graphql/ast"; @@ -44,7 +44,7 @@ export const forceOptionToValue = (m: Option): T | undefined => { export const createUrl = ( base: string, path: string, - search_params?: URLSearchParams + search_params?: URLSearchParams, ): string => { if (!base.endsWith("/")) { base = base + "/"; @@ -74,7 +74,7 @@ export const createUrl = ( export function ensure( predicat: boolean, - message: string | (() => string) + message: string | (() => string), ): asserts predicat is true { if (!predicat) { throw Error(typeof message === "function" ? message() : message); @@ -83,7 +83,7 @@ export function ensure( export function ensureNonNullable( value: T, - message: string | (() => string) + message: string | (() => string), ): asserts value is NonNullable { if (value == null) { throw Error(typeof message === "function" ? message() : message); @@ -92,7 +92,7 @@ export function ensureNonNullable( export const collectFields = ( obj: Record, - fields: string[] + fields: string[], ) => { return fields.reduce((agg, f) => ({ ...agg, [f]: obj[f] }), {}); }; @@ -118,7 +118,7 @@ function isChildStage(parentId: string, stageId: string) { export function iterParentStages( stages: ComputeStage[], - cb: (stage: ComputeStage, children: ComputeStage[]) => void + cb: (stage: ComputeStage, children: ComputeStage[]) => void, ) { let cursor = 0; while (cursor < stages.length) { @@ -140,7 +140,7 @@ export const b64encode = (v: string): string => { }; export function nativeResult( - res: { Ok: R } | { Err: { message: string } } + res: { Ok: R } | { Err: { message: string } }, ): R { if ("Err" in res) { throw new Error(res.Err.message); @@ -163,7 +163,7 @@ export function closestWord( str: string, list: string[], ignoreCase = true, - maxDistance = 3 + maxDistance = 3, ) { if (list.length == 0) { return null; diff --git a/src/typegate/src/utils/hash.ts b/src/typegate/src/utils/hash.ts index 0cccff3499..ed451d0255 100644 --- a/src/typegate/src/utils/hash.ts +++ b/src/typegate/src/utils/hash.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // deno-lint-ignore no-external-import import type { Hash } from "node:crypto"; diff --git a/src/typegate/src/worker_utils.ts b/src/typegate/src/worker_utils.ts index 1eaa69d05e..f508c162fd 100644 --- a/src/typegate/src/worker_utils.ts +++ b/src/typegate/src/worker_utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // WARNING: Assume any content or state in this file will run inside a Web Worker @@ -7,7 +7,7 @@ import { TaskContext } from "./runtimes/deno/shared_types.ts"; export function make_internal( { meta: { url, token } }: TaskContext, - additionalHeaders: Record + additionalHeaders: Record, ) { const gql = (query: readonly string[], ...args: unknown[]) => { if (args.length > 0) { @@ -16,7 +16,7 @@ export function make_internal( // console.log(query); return { run: async ( - variables: Record + variables: Record, ): Promise> => { const res = await fetch(url, { method: "POST", diff --git a/src/typegate/standalone/src/config.rs b/src/typegate/standalone/src/config.rs index 305679d4ec..d8404042d9 100644 --- a/src/typegate/standalone/src/config.rs +++ b/src/typegate/standalone/src/config.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use envconfig::Envconfig; diff --git a/src/typegate/standalone/src/logger.rs b/src/typegate/standalone/src/logger.rs index 4e07a93b68..991efe4c6c 100644 --- a/src/typegate/standalone/src/logger.rs +++ b/src/typegate/standalone/src/logger.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 diff --git a/src/typegate/standalone/src/main.rs b/src/typegate/standalone/src/main.rs index bb51f0b4de..012dcb520c 100644 --- a/src/typegate/standalone/src/main.rs +++ b/src/typegate/standalone/src/main.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod config; mod logger; diff --git a/src/typegraph/deno/src/runtimes/python.ts b/src/typegraph/deno/src/runtimes/python.ts index 447c65d3cf..791a59306f 100644 --- a/src/typegraph/deno/src/runtimes/python.ts +++ b/src/typegraph/deno/src/runtimes/python.ts @@ -41,7 +41,7 @@ export class PythonRuntime extends Runtime { fromLambda< P extends Record = Record, I extends t.Struct

= t.Struct

, - O extends t.Typedef = t.Typedef + O extends t.Typedef = t.Typedef, >(inp: I, out: O, { code }: { code: string }): t.Func { const matId = runtimes.fromPythonLambda( { @@ -51,7 +51,7 @@ export class PythonRuntime extends Runtime { { fn: code, // not formatted runtime: this._id, - } + }, ); return t.func(inp, out, { @@ -64,7 +64,7 @@ export class PythonRuntime extends Runtime { fromDef< P extends Record = Record, I extends t.Struct

= t.Struct

, - O extends t.Typedef = t.Typedef + O extends t.Typedef = t.Typedef, >(inp: I, out: O, { code }: { code: string }): t.Func { const name = code.trim().match(/def\s+([A-Za-z0-9_]+)/)?.[1]; if (name == undefined) { @@ -79,7 +79,7 @@ export class PythonRuntime extends Runtime { name: name, fn: code, runtime: this._id, - } + }, ); return t.func(inp, out, { @@ -92,7 +92,7 @@ export class PythonRuntime extends Runtime { import( inp: I, out: O, - { name, module, deps = [], effect = fx.read(), secrets = [] }: PythonImport + { name, module, deps = [], effect = fx.read(), secrets = [] }: PythonImport, ): t.Func { const base = { runtime: this._id, diff --git a/src/typegraph/deno/src/runtimes/substantial.ts b/src/typegraph/deno/src/runtimes/substantial.ts index 4ad4145d6f..63687739c5 100644 --- a/src/typegraph/deno/src/runtimes/substantial.ts +++ b/src/typegraph/deno/src/runtimes/substantial.ts @@ -36,7 +36,7 @@ export class SubstantialRuntime extends Runtime { constructor( backend: SubstantialBackend, - fileDescriptions: Array + fileDescriptions: Array, ) { const id = runtimes.registerSubstantialRuntime({ backend, @@ -49,7 +49,7 @@ export class SubstantialRuntime extends Runtime { _genericSubstantialFunc( operation: SubstantialOperationType, funcArg?: Typedef, - funcOut?: Typedef + funcOut?: Typedef, ): Func { const data = { funcArg: funcArg?._id, @@ -65,7 +65,7 @@ export class SubstantialRuntime extends Runtime { { tag: "start", }, - kwargs + kwargs, ); } @@ -86,7 +86,7 @@ export class SubstantialRuntime extends Runtime { { tag: "send", }, - payload + payload, ); } @@ -108,7 +108,7 @@ export class SubstantialRuntime extends Runtime { tag: "results", }, undefined, - output + output, ); } @@ -141,7 +141,7 @@ export class WorkflowFile { private constructor( public readonly file: string, public readonly kind: WorkflowKind, - public deps: Array = [] + public deps: Array = [], ) {} static deno(file: string, deps: Array = []): WorkflowFile { diff --git a/src/typegraph/deno/src/tg_deploy.ts b/src/typegraph/deno/src/tg_deploy.ts index a748bd99d3..0443cae334 100644 --- a/src/typegraph/deno/src/tg_deploy.ts +++ b/src/typegraph/deno/src/tg_deploy.ts @@ -119,9 +119,9 @@ export async function tgDeploy( const addTypegraph = response.data.addTypegraph; - /* + /* // FIXME: failure field is used by interactive deployment - // which means errors need to be ignored here but this + // which means errors need to be ignored here but this // allows deployment errors in non-interactive scenarios if (addTypegraph.failure) { console.error(addTypegraph.failure); diff --git a/src/typegraph/deno/src/typegraph.ts b/src/typegraph/deno/src/typegraph.ts index efb015183a..1d7a4fd4e9 100644 --- a/src/typegraph/deno/src/typegraph.ts +++ b/src/typegraph/deno/src/typegraph.ts @@ -187,7 +187,6 @@ export async function typegraph( rate: rate ? { ...defaultRateFields, ...rate } : undefined, }; - core.initTypegraph({ name, dynamic, path, ...tgParams }); const g: TypegraphBuilderArgs = { diff --git a/src/typegraph/deno/src/utils/func_utils.ts b/src/typegraph/deno/src/utils/func_utils.ts index b227f4875a..bd02a69214 100644 --- a/src/typegraph/deno/src/utils/func_utils.ts +++ b/src/typegraph/deno/src/utils/func_utils.ts @@ -167,7 +167,10 @@ export async function execRequest( try { const response = await fetch(url, reqInit); if (!response.ok) { - log.error("error response json", await response.json().catch(_err => 'non json response')); + log.error( + "error response json", + await response.json().catch((_err) => "non json response"), + ); throw Error( `${errMsg}: request failed with status ${response.status} (${response.statusText})`, ); diff --git a/src/xtask/src/deno.rs b/src/xtask/src/deno.rs index c757a09264..2b94b6dbc0 100644 --- a/src/xtask/src/deno.rs +++ b/src/xtask/src/deno.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 use anyhow::Result; use clap::{Parser, Subcommand}; diff --git a/src/xtask/src/main.rs b/src/xtask/src/main.rs index 2c2081da0f..8c0d266ffa 100644 --- a/src/xtask/src/main.rs +++ b/src/xtask/src/main.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod deno; diff --git a/tests/artifacts/artifacts_test.ts b/tests/artifacts/artifacts_test.ts index cf88e10768..17fafc273b 100644 --- a/tests/artifacts/artifacts_test.ts +++ b/tests/artifacts/artifacts_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { join } from "@std/path/join"; diff --git a/tests/auth/auth_test.ts b/tests/auth/auth_test.ts index 830066e01f..1ee2f7502c 100644 --- a/tests/auth/auth_test.ts +++ b/tests/auth/auth_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals, assertStringIncludes } from "@std/assert"; import { execute, gql, Meta, sleep } from "../utils/mod.ts"; diff --git a/tests/auto/auto_test.ts_ b/tests/auto/auto_test.ts_ index 9f956d595b..ee91d22a1d 100644 --- a/tests/auto/auto_test.ts_ +++ b/tests/auto/auto_test.ts_ @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dirname, fromFileUrl, join } from "std/path/mod.ts"; import { Meta } from "../utils/mod.ts"; diff --git a/tests/auto/test/test.py b/tests/auto/test/test.py index bd655961c2..c71dccec53 100644 --- a/tests/auto/test/test.py +++ b/tests/auto/test/test.py @@ -1,4 +1,5 @@ -# Copyright Metatype under the Elastic License 2.0. +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import typegraph, Policy, t, Graph from typegraph.runtimes.deno import DenoRuntime diff --git a/tests/common_utils/proposition_test.ts b/tests/common_utils/proposition_test.ts index fa891fb704..0d67b0b5be 100644 --- a/tests/common_utils/proposition_test.ts +++ b/tests/common_utils/proposition_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals } from "@std/assert"; import { closestWord } from "@metatype/typegate/utils.ts"; diff --git a/tests/common_utils/url_test.ts b/tests/common_utils/url_test.ts index 85f8892759..b9917e9b3f 100644 --- a/tests/common_utils/url_test.ts +++ b/tests/common_utils/url_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals } from "@std/assert"; import { createUrl } from "@metatype/typegate/utils.ts"; diff --git a/tests/crypto/crypto_test.ts b/tests/crypto/crypto_test.ts index a77acc2472..fe794b1763 100644 --- a/tests/crypto/crypto_test.ts +++ b/tests/crypto/crypto_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { defaultTypegateConfigBase, diff --git a/tests/dedup/tg.ts b/tests/dedup/tg.ts index 19aaa2eec6..fcc495725c 100644 --- a/tests/dedup/tg.ts +++ b/tests/dedup/tg.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { RandomRuntime } from "@typegraph/sdk/runtimes/random.ts"; diff --git a/tests/docs/how-tos/prog_deploy/prog_deploy.ts b/tests/docs/how-tos/prog_deploy/prog_deploy.ts index e19234d1e8..2f58409edf 100644 --- a/tests/docs/how-tos/prog_deploy/prog_deploy.ts +++ b/tests/docs/how-tos/prog_deploy/prog_deploy.ts @@ -1,6 +1,6 @@ // skip:start -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // skip:end import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; diff --git a/tests/docs/how-tos/prog_deploy/prog_deploy_test.ts b/tests/docs/how-tos/prog_deploy/prog_deploy_test.ts index e9f11bdbee..b771a9fa29 100644 --- a/tests/docs/how-tos/prog_deploy/prog_deploy_test.ts +++ b/tests/docs/how-tos/prog_deploy/prog_deploy_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { MetaTest } from "../../../utils/test.ts"; diff --git a/tests/docs/how-tos/prog_deploy/prog_remove.ts b/tests/docs/how-tos/prog_deploy/prog_remove.ts index 7fdd936ae6..244aa5aa82 100644 --- a/tests/docs/how-tos/prog_deploy/prog_remove.ts +++ b/tests/docs/how-tos/prog_deploy/prog_remove.ts @@ -1,6 +1,6 @@ // skip:start -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // skip:end import { typegraph } from "@typegraph/sdk/index.ts"; diff --git a/tests/docs/how-tos/prog_deploy/scripts/say_hello.ts b/tests/docs/how-tos/prog_deploy/scripts/say_hello.ts index 620c7b8971..35e84061e2 100644 --- a/tests/docs/how-tos/prog_deploy/scripts/say_hello.ts +++ b/tests/docs/how-tos/prog_deploy/scripts/say_hello.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function sayHello() { return "Hell0"; diff --git a/tests/e2e/cli/deploy_test.ts b/tests/e2e/cli/deploy_test.ts index e45312c34a..18f783487e 100644 --- a/tests/e2e/cli/deploy_test.ts +++ b/tests/e2e/cli/deploy_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; import { TestModule } from "../../utils/test_module.ts"; diff --git a/tests/e2e/cli/dev_test.ts b/tests/e2e/cli/dev_test.ts index 1989b86399..245ae1838b 100644 --- a/tests/e2e/cli/dev_test.ts +++ b/tests/e2e/cli/dev_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta, sleep } from "test-utils/mod.ts"; import { join, resolve } from "@std/path"; diff --git a/tests/e2e/cli/typegraphs/deps.ts b/tests/e2e/cli/typegraphs/deps.ts index c1b11a0bb2..b5b9472d5c 100644 --- a/tests/e2e/cli/typegraphs/deps.ts +++ b/tests/e2e/cli/typegraphs/deps.ts @@ -1,3 +1,6 @@ +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 + import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/e2e/cli/undeploy_test.ts b/tests/e2e/cli/undeploy_test.ts index 2a2494f2df..7fb63a9f66 100644 --- a/tests/e2e/cli/undeploy_test.ts +++ b/tests/e2e/cli/undeploy_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { TestModule } from "test-utils/test_module.ts"; diff --git a/tests/e2e/cli/watch_test.ts b/tests/e2e/cli/watch_test.ts index cad41cb819..e0c58c7b9d 100644 --- a/tests/e2e/cli/watch_test.ts +++ b/tests/e2e/cli/watch_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as path from "@std/path"; import { Meta } from "test-utils/mod.ts"; @@ -46,7 +46,7 @@ Meta.test({ name: "meta dev: watch artifacts" }, async (t) => { await t.should("deploy typegraph", async () => { await stderr.readWhile( - (line) => !line.includes("successfully deployed typegraph"), + (line) => !line.includes("successfully deployed typegraph") ); }); @@ -64,7 +64,7 @@ Meta.test({ name: "meta dev: watch artifacts" }, async (t) => { await t.should("re-deploy typegraph", async () => { await stderr.readWhile( - (line) => !line.includes("successfully deployed typegraph"), + (line) => !line.includes("successfully deployed typegraph") ); }); diff --git a/tests/e2e/nextjs/apollo/pages/api/apollo.ts b/tests/e2e/nextjs/apollo/pages/api/apollo.ts index 918934cbf1..098ffa0411 100644 --- a/tests/e2e/nextjs/apollo/pages/api/apollo.ts +++ b/tests/e2e/nextjs/apollo/pages/api/apollo.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { NextApiRequest, NextApiResponse } from "next"; import { ApolloClient, gql, InMemoryCache } from "@apollo/client/index"; diff --git a/tests/e2e/nextjs/apollo/tailwind.config.ts b/tests/e2e/nextjs/apollo/tailwind.config.ts index ee2151538d..e82281f92c 100644 --- a/tests/e2e/nextjs/apollo/tailwind.config.ts +++ b/tests/e2e/nextjs/apollo/tailwind.config.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { Config } from "tailwindcss"; diff --git a/tests/e2e/nextjs/apollo_test.ts b/tests/e2e/nextjs/apollo_test.ts index fd7437109f..4021afb168 100644 --- a/tests/e2e/nextjs/apollo_test.ts +++ b/tests/e2e/nextjs/apollo_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "../../utils/mod.ts"; import { diff --git a/tests/e2e/published/published_test.ts b/tests/e2e/published/published_test.ts index 338a70c0c4..e7f6092cb1 100644 --- a/tests/e2e/published/published_test.ts +++ b/tests/e2e/published/published_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { projectDir } from "@local/tools/utils.ts"; diff --git a/tests/e2e/self_deploy/scripts/main.ts b/tests/e2e/self_deploy/scripts/main.ts index fb47d1a825..c1a6b3126f 100644 --- a/tests/e2e/self_deploy/scripts/main.ts +++ b/tests/e2e/self_deploy/scripts/main.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function sayHello({ name }: any) { return `Hello ${name}`; diff --git a/tests/e2e/self_deploy/self_deploy.ts b/tests/e2e/self_deploy/self_deploy.ts index 72c085184c..c039be3c09 100644 --- a/tests/e2e/self_deploy/self_deploy.ts +++ b/tests/e2e/self_deploy/self_deploy.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/e2e/self_deploy/self_deploy_test.ts b/tests/e2e/self_deploy/self_deploy_test.ts index 933cee8668..2361ad0a32 100644 --- a/tests/e2e/self_deploy/self_deploy_test.ts +++ b/tests/e2e/self_deploy/self_deploy_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { BasicAuth, tgDeploy, tgRemove } from "@typegraph/sdk/tg_deploy.ts"; import { Meta } from "test-utils/mod.ts"; diff --git a/tests/e2e/templates/templates_test.ts b/tests/e2e/templates/templates_test.ts index b7f2760fa8..1de81e336a 100644 --- a/tests/e2e/templates/templates_test.ts +++ b/tests/e2e/templates/templates_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { newTempDir, workspaceDir } from "test-utils/dir.ts"; diff --git a/tests/e2e/typegraph/__snapshots__/typegraph_test.ts.snap b/tests/e2e/typegraph/__snapshots__/typegraph_test.ts.snap index 2f6d86db09..555023cea5 100644 --- a/tests/e2e/typegraph/__snapshots__/typegraph_test.ts.snap +++ b/tests/e2e/typegraph/__snapshots__/typegraph_test.ts.snap @@ -654,8 +654,8 @@ snapshot[`typegraphs creation 3`] = ` "artifacts": { "scripts/three.ts": { "path": "scripts/three.ts", - "hash": "564fe4792102c50aac9801faeb3c6402c49b1f7c7cbb22dc6d54886e45cfa3b2", - "size": 307 + "hash": "16352d61551cb6d6a8c54efb8179858a4aadb1110517a8dbbf9932a5d71bb51a", + "size": 318 } } } @@ -1317,8 +1317,8 @@ snapshot[`typegraphs creation 6`] = ` "artifacts": { "scripts/three.ts": { "path": "scripts/three.ts", - "hash": "564fe4792102c50aac9801faeb3c6402c49b1f7c7cbb22dc6d54886e45cfa3b2", - "size": 307 + "hash": "16352d61551cb6d6a8c54efb8179858a4aadb1110517a8dbbf9932a5d71bb51a", + "size": 318 } } } diff --git a/tests/e2e/typegraph/typegraph_test.ts b/tests/e2e/typegraph/typegraph_test.ts index 203cdce594..174b361f3e 100644 --- a/tests/e2e/typegraph/typegraph_test.ts +++ b/tests/e2e/typegraph/typegraph_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { expandGlob } from "@std/fs/expand-glob"; import { dirname, fromFileUrl } from "@std/path"; diff --git a/tests/e2e/typegraph/typegraphs/deno/complex.ts b/tests/e2e/typegraph/typegraphs/deno/complex.ts index b72fefd211..12cb5c0ced 100644 --- a/tests/e2e/typegraph/typegraphs/deno/complex.ts +++ b/tests/e2e/typegraph/typegraphs/deno/complex.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/e2e/typegraph/typegraphs/deno/multiple_runtimes.ts b/tests/e2e/typegraph/typegraphs/deno/multiple_runtimes.ts index 965492d8f8..656c075689 100644 --- a/tests/e2e/typegraph/typegraphs/deno/multiple_runtimes.ts +++ b/tests/e2e/typegraph/typegraphs/deno/multiple_runtimes.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/e2e/typegraph/typegraphs/deno/scripts/three.ts b/tests/e2e/typegraph/typegraphs/deno/scripts/three.ts index c47af049a1..9f1c8a9005 100644 --- a/tests/e2e/typegraph/typegraphs/deno/scripts/three.ts +++ b/tests/e2e/typegraph/typegraphs/deno/scripts/three.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 interface ThreeInput { b: number; diff --git a/tests/e2e/typegraph/typegraphs/deno/simple.ts b/tests/e2e/typegraph/typegraphs/deno/simple.ts index 866c26a154..6f86e40797 100644 --- a/tests/e2e/typegraph/typegraphs/deno/simple.ts +++ b/tests/e2e/typegraph/typegraphs/deno/simple.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/e2e/typegraph/typegraphs/python/scripts/three.ts b/tests/e2e/typegraph/typegraphs/python/scripts/three.ts index c47af049a1..9f1c8a9005 100644 --- a/tests/e2e/typegraph/typegraphs/python/scripts/three.ts +++ b/tests/e2e/typegraph/typegraphs/python/scripts/three.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 interface ThreeInput { b: number; diff --git a/tests/e2e/typegraph/validator_test.ts b/tests/e2e/typegraph/validator_test.ts index b86a816488..6ddf7e2428 100644 --- a/tests/e2e/typegraph/validator_test.ts +++ b/tests/e2e/typegraph/validator_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { TestModule } from "test-utils/test_module.ts"; import { Meta } from "test-utils/mod.ts"; diff --git a/tests/e2e/website/website_test.ts b/tests/e2e/website/website_test.ts index 665fdf0f0c..fedb6c0b12 100644 --- a/tests/e2e/website/website_test.ts +++ b/tests/e2e/website/website_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { expandGlob } from "@std/fs/expand-glob"; import { basename, dirname, fromFileUrl, join } from "@std/path"; diff --git a/tests/graphql/graphql_test.ts b/tests/graphql/graphql_test.ts index 67d6583b25..efc9b90663 100644 --- a/tests/graphql/graphql_test.ts +++ b/tests/graphql/graphql_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/graphql/request_parser_test.ts b/tests/graphql/request_parser_test.ts index eff6a8c7f0..997312038b 100644 --- a/tests/graphql/request_parser_test.ts +++ b/tests/graphql/request_parser_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { FormDataParser } from "@metatype/typegate/transports/graphql/request_parser.ts"; import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/http_utils/http_utils_test.ts b/tests/http_utils/http_utils_test.ts index 8c157d8286..2bd76dab7f 100644 --- a/tests/http_utils/http_utils_test.ts +++ b/tests/http_utils/http_utils_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals } from "@std/assert"; import { replaceDynamicPathParams } from "@metatype/typegate/runtimes/utils/http.ts"; diff --git a/tests/importers/importers_test.ts.disabled b/tests/importers/importers_test.ts.disabled index ccac4cdf81..ee87b91ab5 100644 --- a/tests/importers/importers_test.ts.disabled +++ b/tests/importers/importers_test.ts.disabled @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { copyFile, gql, Meta } from "../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/injection/injection.ts b/tests/injection/injection.ts index 42cabf36e0..fc8bceebc9 100644 --- a/tests/injection/injection.ts +++ b/tests/injection/injection.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { CREATE, DELETE, READ, UPDATE } from "@typegraph/sdk/effects.ts"; diff --git a/tests/injection/injection_test.ts b/tests/injection/injection_test.ts index 8831ebad1f..9612b7222d 100644 --- a/tests/injection/injection_test.ts +++ b/tests/injection/injection_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import { assertRejects } from "@std/assert"; diff --git a/tests/injection/random_injection.ts b/tests/injection/random_injection.ts index dec1a051e0..2033b1eb81 100644 --- a/tests/injection/random_injection.ts +++ b/tests/injection/random_injection.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/injection/random_injection_test.ts b/tests/injection/random_injection_test.ts index 285ae8ff93..93061d16c4 100644 --- a/tests/injection/random_injection_test.ts +++ b/tests/injection/random_injection_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/internal/internal_test.ts b/tests/internal/internal_test.ts index 73643c224b..63aedcacce 100644 --- a/tests/internal/internal_test.ts +++ b/tests/internal/internal_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import { join } from "@std/path/join"; diff --git a/tests/internal/py/logic.py b/tests/internal/py/logic.py index c8ea39393c..f5d37da715 100644 --- a/tests/internal/py/logic.py +++ b/tests/internal/py/logic.py @@ -1,5 +1,5 @@ -# Copyright Metatype OÜ, licensed under the Elastic License 2.0. -# SPDX-License-Identifier: Elastic-2.0 +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from .logic_types import Ctx import json diff --git a/tests/internal/ts/logic.ts b/tests/internal/ts/logic.ts index 607b1e6b27..541b7e2333 100644 --- a/tests/internal/ts/logic.ts +++ b/tests/internal/ts/logic.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export const remoteSum = async ( { first, second }: any, diff --git a/tests/introspection/introspection_test.ts b/tests/introspection/introspection_test.ts index 2bb2212c87..5a7f8cea88 100644 --- a/tests/introspection/introspection_test.ts +++ b/tests/introspection/introspection_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/introspection/union_either_test.ts b/tests/introspection/union_either_test.ts index b1381ec320..38f0150257 100644 --- a/tests/introspection/union_either_test.ts +++ b/tests/introspection/union_either_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/metagen/metagen_test.ts b/tests/metagen/metagen_test.ts index 12ad310f80..59f16ed76e 100644 --- a/tests/metagen/metagen_test.ts +++ b/tests/metagen/metagen_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { join } from "@std/path/join"; diff --git a/tests/metagen/typegraphs/identities/rs/lib.rs b/tests/metagen/typegraphs/identities/rs/lib.rs index 0214d4a872..ac085da35b 100644 --- a/tests/metagen/typegraphs/identities/rs/lib.rs +++ b/tests/metagen/typegraphs/identities/rs/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod fdk; pub use fdk::*; diff --git a/tests/metagen/typegraphs/identities/ts/handlers.ts b/tests/metagen/typegraphs/identities/ts/handlers.ts index 3f9fad44c9..34e9c92c19 100644 --- a/tests/metagen/typegraphs/identities/ts/handlers.ts +++ b/tests/metagen/typegraphs/identities/ts/handlers.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { Composites, diff --git a/tests/metagen/typegraphs/metagen.ts b/tests/metagen/typegraphs/metagen.ts index 6f2b34d66a..82f82958b2 100644 --- a/tests/metagen/typegraphs/metagen.ts +++ b/tests/metagen/typegraphs/metagen.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; diff --git a/tests/metagen/typegraphs/sample.ts b/tests/metagen/typegraphs/sample.ts index 1ab9422a47..2699b7373f 100644 --- a/tests/metagen/typegraphs/sample.ts +++ b/tests/metagen/typegraphs/sample.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/metagen/typegraphs/sample/ts/main.ts b/tests/metagen/typegraphs/sample/ts/main.ts index 987577de1d..6416ac3ccf 100644 --- a/tests/metagen/typegraphs/sample/ts/main.ts +++ b/tests/metagen/typegraphs/sample/ts/main.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { alias, PreparedArgs, QueryGraph } from "./client.ts"; diff --git a/tests/misc/publish_test.ts b/tests/misc/publish_test.ts index c9aaf38b70..be4f50d7ce 100644 --- a/tests/misc/publish_test.ts +++ b/tests/misc/publish_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assert } from "@std/assert/assert"; import { exists } from "@std/fs/exists"; import { Meta } from "test-utils/mod.ts"; diff --git a/tests/misc/typegate_config_test.ts.disabled b/tests/misc/typegate_config_test.ts.disabled index 9ad04c7967..c9e02cfd6a 100644 --- a/tests/misc/typegate_config_test.ts.disabled +++ b/tests/misc/typegate_config_test.ts.disabled @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { assert } from "std/assert/mod.ts"; diff --git a/tests/multi_typegraph/multi_typegraph.ts b/tests/multi_typegraph/multi_typegraph.ts index 34957744b0..214030deaf 100644 --- a/tests/multi_typegraph/multi_typegraph.ts +++ b/tests/multi_typegraph/multi_typegraph.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { RandomRuntime } from "@typegraph/sdk/runtimes/random.ts"; diff --git a/tests/multi_typegraph/multi_typegraph_test.ts b/tests/multi_typegraph/multi_typegraph_test.ts index 485dd4ef24..58d76bfa30 100644 --- a/tests/multi_typegraph/multi_typegraph_test.ts +++ b/tests/multi_typegraph/multi_typegraph_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/nesting/nesting_test.ts b/tests/nesting/nesting_test.ts index cc387f9a17..d71c0c5b23 100644 --- a/tests/nesting/nesting_test.ts +++ b/tests/nesting/nesting_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/params/apply_test.ts b/tests/params/apply_test.ts index 78e41f716f..5839ec91a9 100644 --- a/tests/params/apply_test.ts +++ b/tests/params/apply_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/planner/default_args_test.ts b/tests/planner/default_args_test.ts index 4a0bb847e6..6df4c5bfe6 100644 --- a/tests/planner/default_args_test.ts +++ b/tests/planner/default_args_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "test-utils/migrations.ts"; import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/planner/planner_test.ts b/tests/planner/planner_test.ts index d6e37985f4..c0797c6a32 100644 --- a/tests/planner/planner_test.ts +++ b/tests/planner/planner_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import { mapValues } from "@std/collections/map-values"; diff --git a/tests/policies/policies_jwt_test.ts b/tests/policies/policies_jwt_test.ts index 35b9802505..12f9b88cce 100644 --- a/tests/policies/policies_jwt_test.ts +++ b/tests/policies/policies_jwt_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; import * as jwt from "jwt"; diff --git a/tests/policies/policies_test.ts b/tests/policies/policies_test.ts index a2c40bfe15..988734b6a5 100644 --- a/tests/policies/policies_test.ts +++ b/tests/policies/policies_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { TypegateConfig } from "@metatype/typegate/config.ts"; import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/policies/ts/effects.ts b/tests/policies/ts/effects.ts index 96dfdacdb7..5e4ba665fd 100644 --- a/tests/policies/ts/effects.ts +++ b/tests/policies/ts/effects.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function currentUserOnly( args: Record>, diff --git a/tests/policies/ts/policies.ts b/tests/policies/ts/policies.ts index 97d71ea27c..f6ed021293 100644 --- a/tests/policies/ts/policies.ts +++ b/tests/policies/ts/policies.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 interface ReadSecretInput { username: string; diff --git a/tests/prisma_migrate/prisma_migrate_test.ts b/tests/prisma_migrate/prisma_migrate_test.ts index 6f899508ca..b145bb8738 100644 --- a/tests/prisma_migrate/prisma_migrate_test.ts +++ b/tests/prisma_migrate/prisma_migrate_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assert, diff --git a/tests/query_parsers/query_parsers_test.ts b/tests/query_parsers/query_parsers_test.ts index 1430f4ca2d..5198892175 100644 --- a/tests/query_parsers/query_parsers_test.ts +++ b/tests/query_parsers/query_parsers_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/rate_limiter/rate_limiter_test.ts b/tests/rate_limiter/rate_limiter_test.ts index dc5e6c8aee..8186954b7a 100644 --- a/tests/rate_limiter/rate_limiter_test.ts +++ b/tests/rate_limiter/rate_limiter_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { decrPosCmd, diff --git a/tests/regression/invalid_ref_error_message/invalid_ref_test.ts b/tests/regression/invalid_ref_error_message/invalid_ref_test.ts index f9633fb9c6..035a82cb59 100644 --- a/tests/regression/invalid_ref_error_message/invalid_ref_test.ts +++ b/tests/regression/invalid_ref_error_message/invalid_ref_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { assertRejects } from "@std/assert"; diff --git a/tests/rest/custom/custom_loader.ts b/tests/rest/custom/custom_loader.ts index 3db39d6999..9443d773cb 100644 --- a/tests/rest/custom/custom_loader.ts +++ b/tests/rest/custom/custom_loader.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dirname } from "@std/path/dirname"; import { resolve } from "@std/path/resolve"; diff --git a/tests/rest/rest_custom_loader.ts b/tests/rest/rest_custom_loader.ts index c4c10ed890..cd99d8628c 100644 --- a/tests/rest/rest_custom_loader.ts +++ b/tests/rest/rest_custom_loader.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/rest/rest_schema.ts b/tests/rest/rest_schema.ts index 5f3cca2843..81b6029431 100644 --- a/tests/rest/rest_schema.ts +++ b/tests/rest/rest_schema.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/rest/rest_test.ts b/tests/rest/rest_test.ts index 41a2e3e954..4e2a86a8d5 100644 --- a/tests/rest/rest_test.ts +++ b/tests/rest/rest_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals, assertStringIncludes } from "@std/assert"; import { gql, Meta, rest } from "../utils/mod.ts"; diff --git a/tests/runtimes/deno/deno_dep.ts b/tests/runtimes/deno/deno_dep.ts index a0f2be5763..b7e87da08c 100644 --- a/tests/runtimes/deno/deno_dep.ts +++ b/tests/runtimes/deno/deno_dep.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/runtimes/deno/deno_dir.ts b/tests/runtimes/deno/deno_dir.ts index 635090512c..11b352ebbd 100644 --- a/tests/runtimes/deno/deno_dir.ts +++ b/tests/runtimes/deno/deno_dir.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/runtimes/deno/deno_dir_test.ts b/tests/runtimes/deno/deno_dir_test.ts index 9139ee1a8d..04cea044c5 100644 --- a/tests/runtimes/deno/deno_dir_test.ts +++ b/tests/runtimes/deno/deno_dir_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/deno/deno_duplicate_artifact.ts b/tests/runtimes/deno/deno_duplicate_artifact.ts index 5705581152..077cef9327 100644 --- a/tests/runtimes/deno/deno_duplicate_artifact.ts +++ b/tests/runtimes/deno/deno_duplicate_artifact.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/runtimes/deno/deno_glob_test.ts b/tests/runtimes/deno/deno_glob_test.ts index ce5783aebe..6745dd7a37 100644 --- a/tests/runtimes/deno/deno_glob_test.ts +++ b/tests/runtimes/deno/deno_glob_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/deno/deno_globs.ts b/tests/runtimes/deno/deno_globs.ts index f95f7c7847..a4f2b6d1ee 100644 --- a/tests/runtimes/deno/deno_globs.ts +++ b/tests/runtimes/deno/deno_globs.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/runtimes/deno/deno_sync_test.ts b/tests/runtimes/deno/deno_sync_test.ts index a9e2477833..00278d92fc 100644 --- a/tests/runtimes/deno/deno_sync_test.ts +++ b/tests/runtimes/deno/deno_sync_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta, sleep } from "../../utils/mod.ts"; import * as path from "@std/path"; diff --git a/tests/runtimes/deno/deno_test.ts b/tests/runtimes/deno/deno_test.ts index 3e7498623d..cf18f285d7 100644 --- a/tests/runtimes/deno/deno_test.ts +++ b/tests/runtimes/deno/deno_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta, sleep } from "../../utils/mod.ts"; import * as path from "@std/path"; diff --git a/tests/runtimes/deno/deno_typescript.ts b/tests/runtimes/deno/deno_typescript.ts index f89bfdd1da..f6ef827028 100644 --- a/tests/runtimes/deno/deno_typescript.ts +++ b/tests/runtimes/deno/deno_typescript.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/runtimes/deno/dynamic/1.ts b/tests/runtimes/deno/dynamic/1.ts index f48fff673e..6bc53565e1 100644 --- a/tests/runtimes/deno/dynamic/1.ts +++ b/tests/runtimes/deno/dynamic/1.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function fire() { return 1; diff --git a/tests/runtimes/deno/dynamic/2.ts b/tests/runtimes/deno/dynamic/2.ts index 2504caf7f9..b733db6994 100644 --- a/tests/runtimes/deno/dynamic/2.ts +++ b/tests/runtimes/deno/dynamic/2.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function fire() { return 2; diff --git a/tests/runtimes/deno/reload/template.ts b/tests/runtimes/deno/reload/template.ts index 59f158c270..ac626f8a1d 100644 --- a/tests/runtimes/deno/reload/template.ts +++ b/tests/runtimes/deno/reload/template.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function fire() { return "REWRITE_ME"; diff --git a/tests/runtimes/deno/ts/deno.ts b/tests/runtimes/deno/ts/deno.ts index d35ef40976..5da50ea679 100644 --- a/tests/runtimes/deno/ts/deno.ts +++ b/tests/runtimes/deno/ts/deno.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 let count = 0; diff --git a/tests/runtimes/deno/ts/dep/main.ts b/tests/runtimes/deno/ts/dep/main.ts index e7dd4ccde1..ca26d7b12e 100644 --- a/tests/runtimes/deno/ts/dep/main.ts +++ b/tests/runtimes/deno/ts/dep/main.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { add } from "./nested/dep.ts"; diff --git a/tests/runtimes/deno/ts/dep/nested/dep.ts b/tests/runtimes/deno/ts/dep/nested/dep.ts index 14d1e32252..ce1ce3940c 100644 --- a/tests/runtimes/deno/ts/dep/nested/dep.ts +++ b/tests/runtimes/deno/ts/dep/nested/dep.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function add(a: number, b: number) { return a + b; diff --git a/tests/runtimes/deno/ts/math-npm.ts b/tests/runtimes/deno/ts/math-npm.ts index d1fc05e5e5..9c423f3f86 100644 --- a/tests/runtimes/deno/ts/math-npm.ts +++ b/tests/runtimes/deno/ts/math-npm.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // deno-lint-ignore no-external-import import * as MathJS from "npm:mathjs@11.11.1"; diff --git a/tests/runtimes/deno/ts/math.ts b/tests/runtimes/deno/ts/math.ts index 10871f4243..61ff5ef0f6 100644 --- a/tests/runtimes/deno/ts/math.ts +++ b/tests/runtimes/deno/ts/math.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // deno-lint-ignore no-external-import import * as MathLib from "https://deno.land/x/math@v1.1.0/mod.ts"; diff --git a/tests/runtimes/graphql/graphql_test.ts b/tests/runtimes/graphql/graphql_test.ts index 42fa61f826..81ce8c353f 100644 --- a/tests/runtimes/graphql/graphql_test.ts +++ b/tests/runtimes/graphql/graphql_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { QueryEngine } from "@metatype/typegate/engine/query_engine.ts"; import { removeMigrations } from "../../utils/migrations.ts"; diff --git a/tests/runtimes/graphql/typegraphs/deno/graphql.ts b/tests/runtimes/graphql/typegraphs/deno/graphql.ts index 3a71eb3537..a084eea1c3 100644 --- a/tests/runtimes/graphql/typegraphs/deno/graphql.ts +++ b/tests/runtimes/graphql/typegraphs/deno/graphql.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { GraphQLRuntime } from "@typegraph/sdk/runtimes/graphql.ts"; diff --git a/tests/runtimes/grpc/geography.py b/tests/runtimes/grpc/geography.py index b5d6432bec..b6aa3fcc0d 100644 --- a/tests/runtimes/grpc/geography.py +++ b/tests/runtimes/grpc/geography.py @@ -1,5 +1,5 @@ -# Copyright Metatype OÜ, licensed under the Elastic License 2.0. -# SPDX-License-Identifier: Elastic-2.0 +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, Policy, typegraph from typegraph.runtimes.grpc import GrpcRuntime diff --git a/tests/runtimes/grpc/grpc_test.ts b/tests/runtimes/grpc/grpc_test.ts index a58c14e5df..c44c4a030b 100644 --- a/tests/runtimes/grpc/grpc_test.ts +++ b/tests/runtimes/grpc/grpc_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { MetaTest } from "../../utils/test.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/grpc/helloworld.py b/tests/runtimes/grpc/helloworld.py index 6888a2c1c1..d6fc480ab4 100644 --- a/tests/runtimes/grpc/helloworld.py +++ b/tests/runtimes/grpc/helloworld.py @@ -1,5 +1,5 @@ -# Copyright Metatype OÜ, licensed under the Elastic License 2.0. -# SPDX-License-Identifier: Elastic-2.0 +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, Policy, typegraph from typegraph.runtimes.grpc import GrpcRuntime diff --git a/tests/runtimes/grpc/helloworld.ts b/tests/runtimes/grpc/helloworld.ts index 58f2ccd6d1..4766b9f184 100644 --- a/tests/runtimes/grpc/helloworld.ts +++ b/tests/runtimes/grpc/helloworld.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, typegraph } from "@typegraph/sdk/index.ts"; import { GrpcRuntime } from "@typegraph/sdk/runtimes/grpc.ts"; diff --git a/tests/runtimes/grpc/maths.py b/tests/runtimes/grpc/maths.py index 216f185de0..d2e6a4ec53 100644 --- a/tests/runtimes/grpc/maths.py +++ b/tests/runtimes/grpc/maths.py @@ -1,5 +1,5 @@ -# Copyright Metatype OÜ, licensed under the Elastic License 2.0. -# SPDX-License-Identifier: Elastic-2.0 +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, Policy, typegraph from typegraph.runtimes.grpc import GrpcRuntime diff --git a/tests/runtimes/http/http_content_type_test.ts b/tests/runtimes/http/http_content_type_test.ts index 70dd0b5c77..0379013783 100644 --- a/tests/runtimes/http/http_content_type_test.ts +++ b/tests/runtimes/http/http_content_type_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/runtimes/http/http_test.ts b/tests/runtimes/http/http_test.ts index b0b0ef2c23..8d6505e7ce 100644 --- a/tests/runtimes/http/http_test.ts +++ b/tests/runtimes/http/http_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; import * as mf from "test/mock_fetch"; diff --git a/tests/runtimes/kv/kv.py b/tests/runtimes/kv/kv.py index b93a71ee08..45510c9991 100644 --- a/tests/runtimes/kv/kv.py +++ b/tests/runtimes/kv/kv.py @@ -1,5 +1,5 @@ -# Copyright Metatype OÜ, licensed under the Elastic License 2.0. -# SPDX-License-Identifier: Elastic-2.0 +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import Graph, Policy, typegraph from typegraph.runtimes.kv import KvRuntime diff --git a/tests/runtimes/kv/kv.ts b/tests/runtimes/kv/kv.ts index 5425c363a2..c238cfd098 100644 --- a/tests/runtimes/kv/kv.ts +++ b/tests/runtimes/kv/kv.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, typegraph } from "@typegraph/sdk/index.ts"; import { KvRuntime } from "@typegraph/sdk/runtimes/kv.ts"; diff --git a/tests/runtimes/kv/kv_test.ts b/tests/runtimes/kv/kv_test.ts index 3a1f9b2508..1bf6132a6d 100644 --- a/tests/runtimes/kv/kv_test.ts +++ b/tests/runtimes/kv/kv_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { MetaTest } from "../../utils/test.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/full_prisma_mapping_test.ts b/tests/runtimes/prisma/full_prisma_mapping_test.ts index 1cbc92e6f5..0fbda9e3bd 100644 --- a/tests/runtimes/prisma/full_prisma_mapping_test.ts +++ b/tests/runtimes/prisma/full_prisma_mapping_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/graphql_variables_test.ts b/tests/runtimes/prisma/graphql_variables_test.ts index 47a3d20cb0..8036ce1694 100644 --- a/tests/runtimes/prisma/graphql_variables_test.ts +++ b/tests/runtimes/prisma/graphql_variables_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { v4 } from "@std/uuid"; import { assert } from "@std/assert"; diff --git a/tests/runtimes/prisma/mixed_runtime_test.ts b/tests/runtimes/prisma/mixed_runtime_test.ts index 8c1607dd45..6640f09d4b 100644 --- a/tests/runtimes/prisma/mixed_runtime_test.ts +++ b/tests/runtimes/prisma/mixed_runtime_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/multi_relations_test.ts b/tests/runtimes/prisma/multi_relations_test.ts index 17a8037ede..542adfb3ca 100644 --- a/tests/runtimes/prisma/multi_relations_test.ts +++ b/tests/runtimes/prisma/multi_relations_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/multiple_runtimes_test.ts b/tests/runtimes/prisma/multiple_runtimes_test.ts index a4f1edc916..1bb3d8676a 100644 --- a/tests/runtimes/prisma/multiple_runtimes_test.ts +++ b/tests/runtimes/prisma/multiple_runtimes_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/normal_1_1.ts b/tests/runtimes/prisma/normal_1_1.ts index a0524fda84..74cee34d56 100644 --- a/tests/runtimes/prisma/normal_1_1.ts +++ b/tests/runtimes/prisma/normal_1_1.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PrismaRuntime } from "@typegraph/sdk/providers/prisma.ts"; diff --git a/tests/runtimes/prisma/one_to_many_test.ts b/tests/runtimes/prisma/one_to_many_test.ts index 8bb9457063..2e850243dc 100644 --- a/tests/runtimes/prisma/one_to_many_test.ts +++ b/tests/runtimes/prisma/one_to_many_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { randomPGConnStr } from "../../utils/database.ts"; import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; diff --git a/tests/runtimes/prisma/one_to_one_test.ts b/tests/runtimes/prisma/one_to_one_test.ts index d919d6f032..24eac6f4cf 100644 --- a/tests/runtimes/prisma/one_to_one_test.ts +++ b/tests/runtimes/prisma/one_to_one_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { QueryEngine } from "@metatype/typegate/engine/query_engine.ts"; import { randomPGConnStr } from "../../utils/database.ts"; diff --git a/tests/runtimes/prisma/optional_1_n.ts b/tests/runtimes/prisma/optional_1_n.ts index c03321e5d1..e0fbdd0021 100644 --- a/tests/runtimes/prisma/optional_1_n.ts +++ b/tests/runtimes/prisma/optional_1_n.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PrismaRuntime } from "@typegraph/sdk/providers/prisma.ts"; diff --git a/tests/runtimes/prisma/prisma_edgecases_test.ts b/tests/runtimes/prisma/prisma_edgecases_test.ts index d021316c9e..97bb0e75c1 100644 --- a/tests/runtimes/prisma/prisma_edgecases_test.ts +++ b/tests/runtimes/prisma/prisma_edgecases_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/prisma/prisma_test.ts b/tests/runtimes/prisma/prisma_test.ts index bf2e3b5b49..e774abb407 100644 --- a/tests/runtimes/prisma/prisma_test.ts +++ b/tests/runtimes/prisma/prisma_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { v4 } from "@std/uuid"; import { assert } from "@std/assert"; diff --git a/tests/runtimes/prisma/query_builder_test.ts b/tests/runtimes/prisma/query_builder_test.ts index 52c5115240..3f1b4dd971 100644 --- a/tests/runtimes/prisma/query_builder_test.ts +++ b/tests/runtimes/prisma/query_builder_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals } from "@std/assert"; import { PrismaRuntime } from "@metatype/typegate/runtimes/prisma/prisma.ts"; diff --git a/tests/runtimes/prisma/schema_generation_test.ts b/tests/runtimes/prisma/schema_generation_test.ts index dabbe3ea6e..44e8b3267b 100644 --- a/tests/runtimes/prisma/schema_generation_test.ts +++ b/tests/runtimes/prisma/schema_generation_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "../../utils/mod.ts"; import { serialize } from "../../utils/meta.ts"; diff --git a/tests/runtimes/python/python.ts b/tests/runtimes/python/python.ts index 807352bf34..f1f10930fc 100644 --- a/tests/runtimes/python/python.ts +++ b/tests/runtimes/python/python.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; diff --git a/tests/runtimes/python/python_dir.ts b/tests/runtimes/python/python_dir.ts index d3780fc927..81bde6d6ee 100644 --- a/tests/runtimes/python/python_dir.ts +++ b/tests/runtimes/python/python_dir.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; diff --git a/tests/runtimes/python/python_dir_test.ts b/tests/runtimes/python/python_dir_test.ts index 395c3a64e1..1303573e3e 100644 --- a/tests/runtimes/python/python_dir_test.ts +++ b/tests/runtimes/python/python_dir_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/python/python_duplicate_artifact.ts b/tests/runtimes/python/python_duplicate_artifact.ts index 2176fffa22..0e3c25a3de 100644 --- a/tests/runtimes/python/python_duplicate_artifact.ts +++ b/tests/runtimes/python/python_duplicate_artifact.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; diff --git a/tests/runtimes/python/python_glob_test.ts b/tests/runtimes/python/python_glob_test.ts index ebcf91f0dc..883bb61677 100644 --- a/tests/runtimes/python/python_glob_test.ts +++ b/tests/runtimes/python/python_glob_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/python/python_globs.ts b/tests/runtimes/python/python_globs.ts index c643e72ad3..a75d3c09cf 100644 --- a/tests/runtimes/python/python_globs.ts +++ b/tests/runtimes/python/python_globs.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; diff --git a/tests/runtimes/python/python_no_artifact.ts b/tests/runtimes/python/python_no_artifact.ts index dd67a90deb..42498207c3 100644 --- a/tests/runtimes/python/python_no_artifact.ts +++ b/tests/runtimes/python/python_no_artifact.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { PythonRuntime } from "@typegraph/sdk/runtimes/python.ts"; diff --git a/tests/runtimes/python/python_sync_test.ts b/tests/runtimes/python/python_sync_test.ts index 0ad6a0c522..159d7c89c4 100644 --- a/tests/runtimes/python/python_sync_test.ts +++ b/tests/runtimes/python/python_sync_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta, sleep } from "../../utils/mod.ts"; import { connect } from "redis"; diff --git a/tests/runtimes/python/python_test.ts b/tests/runtimes/python/python_test.ts index 0e2bdf8c5f..93b378dd62 100644 --- a/tests/runtimes/python/python_test.ts +++ b/tests/runtimes/python/python_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assert, assertEquals } from "@std/assert"; import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/runtimes/random/random.ts b/tests/runtimes/random/random.ts index 15be0e5000..1e8be8c5ff 100644 --- a/tests/runtimes/random/random.ts +++ b/tests/runtimes/random/random.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { RandomRuntime } from "@typegraph/sdk/runtimes/random.ts"; diff --git a/tests/runtimes/random/random_test.ts b/tests/runtimes/random/random_test.ts index 4975ca6e0e..b932a2839e 100644 --- a/tests/runtimes/random/random_test.ts +++ b/tests/runtimes/random/random_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/runtimes/s3/s3.ts b/tests/runtimes/s3/s3.ts index 4349502c54..25100ffc32 100644 --- a/tests/runtimes/s3/s3.ts +++ b/tests/runtimes/s3/s3.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { S3Runtime } from "@typegraph/sdk/providers/aws.ts"; diff --git a/tests/runtimes/s3/s3_test.ts b/tests/runtimes/s3/s3_test.ts index 715fa45cdf..77089c9e22 100644 --- a/tests/runtimes/s3/s3_test.ts +++ b/tests/runtimes/s3/s3_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertEquals, assertExists } from "@std/assert"; import { execute, gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/substantial/kv_like_test.ts b/tests/runtimes/substantial/kv_like_test.ts index 33e66b7774..efc3606dc6 100644 --- a/tests/runtimes/substantial/kv_like_test.ts +++ b/tests/runtimes/substantial/kv_like_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { basicTestTemplate, diff --git a/tests/runtimes/substantial/redis_test.ts b/tests/runtimes/substantial/redis_test.ts index 1732898635..daaccc953c 100644 --- a/tests/runtimes/substantial/redis_test.ts +++ b/tests/runtimes/substantial/redis_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { basicTestTemplate, diff --git a/tests/runtimes/temporal/temporal.ts b/tests/runtimes/temporal/temporal.ts index ed9a5b15f8..abc7d7b3b5 100644 --- a/tests/runtimes/temporal/temporal.ts +++ b/tests/runtimes/temporal/temporal.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { TemporalRuntime } from "@typegraph/sdk/providers/temporal.ts"; diff --git a/tests/runtimes/temporal/temporal_test.ts b/tests/runtimes/temporal/temporal_test.ts index 1f1937d72f..548f0a945c 100644 --- a/tests/runtimes/temporal/temporal_test.ts +++ b/tests/runtimes/temporal/temporal_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assertExists } from "@std/assert"; import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/runtimes/temporal/worker/activities.ts b/tests/runtimes/temporal/worker/activities.ts index aa73554274..55279b5518 100644 --- a/tests/runtimes/temporal/worker/activities.ts +++ b/tests/runtimes/temporal/worker/activities.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export function greet(name: string): Promise { return Promise.resolve(`Hello, ${name}!`); diff --git a/tests/runtimes/temporal/worker/worker.ts b/tests/runtimes/temporal/worker/worker.ts index e00a856049..122bea637a 100644 --- a/tests/runtimes/temporal/worker/worker.ts +++ b/tests/runtimes/temporal/worker/worker.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { NativeConnection, Worker } from "@temporalio/worker"; import * as activities from "./activities.js"; diff --git a/tests/runtimes/temporal/worker/workflows.ts b/tests/runtimes/temporal/worker/workflows.ts index cae07d2d8e..d7a45d3c9c 100644 --- a/tests/runtimes/temporal/worker/workflows.ts +++ b/tests/runtimes/temporal/worker/workflows.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import * as workflow from "@temporalio/workflow"; diff --git a/tests/runtimes/typegate/typegate_prisma_test.ts b/tests/runtimes/typegate/typegate_prisma_test.ts index bd85fff456..9f15a224d6 100644 --- a/tests/runtimes/typegate/typegate_prisma_test.ts +++ b/tests/runtimes/typegate/typegate_prisma_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/typegate/typegate_runtime_test.ts b/tests/runtimes/typegate/typegate_runtime_test.ts index 951661bfae..b6af04bf29 100644 --- a/tests/runtimes/typegate/typegate_runtime_test.ts +++ b/tests/runtimes/typegate/typegate_runtime_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dropSchemas, recreateMigrations } from "../../utils/migrations.ts"; import { gql, Meta } from "../../utils/mod.ts"; diff --git a/tests/runtimes/wasm_reflected/rust/src/lib.rs b/tests/runtimes/wasm_reflected/rust/src/lib.rs index 062dbe9f29..cd55df4bda 100644 --- a/tests/runtimes/wasm_reflected/rust/src/lib.rs +++ b/tests/runtimes/wasm_reflected/rust/src/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 wit_bindgen::generate!({ world: "host" }); diff --git a/tests/runtimes/wasm_reflected/wasm_reflected.ts b/tests/runtimes/wasm_reflected/wasm_reflected.ts index 3666bb28fa..a27601fbe8 100644 --- a/tests/runtimes/wasm_reflected/wasm_reflected.ts +++ b/tests/runtimes/wasm_reflected/wasm_reflected.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { WasmRuntime } from "@typegraph/sdk/runtimes/wasm.ts"; diff --git a/tests/runtimes/wasm_reflected/wasm_reflected_test.ts b/tests/runtimes/wasm_reflected/wasm_reflected_test.ts index 5e4f979c5e..d7b65cedaf 100644 --- a/tests/runtimes/wasm_reflected/wasm_reflected_test.ts +++ b/tests/runtimes/wasm_reflected/wasm_reflected_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; diff --git a/tests/runtimes/wasm_reflected/wasm_sync_test.ts b/tests/runtimes/wasm_reflected/wasm_sync_test.ts index 4e317dea61..d2a72381e3 100644 --- a/tests/runtimes/wasm_reflected/wasm_sync_test.ts +++ b/tests/runtimes/wasm_reflected/wasm_sync_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; import { connect } from "redis"; diff --git a/tests/runtimes/wasm_wire/rust/lib.rs b/tests/runtimes/wasm_wire/rust/lib.rs index 712feac172..2520126106 100644 --- a/tests/runtimes/wasm_wire/rust/lib.rs +++ b/tests/runtimes/wasm_wire/rust/lib.rs @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 mod fdk; use anyhow::Context; diff --git a/tests/runtimes/wasm_wire/wasm_duplicate.ts b/tests/runtimes/wasm_wire/wasm_duplicate.ts index e6df4f8cda..6bc76fe1ae 100644 --- a/tests/runtimes/wasm_wire/wasm_duplicate.ts +++ b/tests/runtimes/wasm_wire/wasm_duplicate.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { WasmRuntime } from "@typegraph/sdk/runtimes/wasm.ts"; diff --git a/tests/runtimes/wasm_wire/wasm_sync_test.ts b/tests/runtimes/wasm_wire/wasm_sync_test.ts index d22f4a9240..14f0414cf9 100644 --- a/tests/runtimes/wasm_wire/wasm_sync_test.ts +++ b/tests/runtimes/wasm_wire/wasm_sync_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; import { connect } from "redis"; diff --git a/tests/runtimes/wasm_wire/wasm_wire.ts b/tests/runtimes/wasm_wire/wasm_wire.ts index ed37fc4362..27bd7a34fe 100644 --- a/tests/runtimes/wasm_wire/wasm_wire.ts +++ b/tests/runtimes/wasm_wire/wasm_wire.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { WasmRuntime } from "@typegraph/sdk/runtimes/wasm.ts"; diff --git a/tests/runtimes/wasm_wire/wasm_wire_test.ts b/tests/runtimes/wasm_wire/wasm_wire_test.ts index 93f4a31436..0a669e5b60 100644 --- a/tests/runtimes/wasm_wire/wasm_wire_test.ts +++ b/tests/runtimes/wasm_wire/wasm_wire_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; import { assert, assertEquals } from "@std/assert"; import { MetaTest } from "../../utils/test.ts"; diff --git a/tests/schema_validation/circular_test.ts b/tests/schema_validation/circular_test.ts index ae2c0abd7e..506f380a81 100644 --- a/tests/schema_validation/circular_test.ts +++ b/tests/schema_validation/circular_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/schema_validation/ts/circular.ts b/tests/schema_validation/ts/circular.ts index e6f3dd77f0..a9d015c440 100644 --- a/tests/schema_validation/ts/circular.ts +++ b/tests/schema_validation/ts/circular.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 type Stars = { count: string }; type Medals = { title: string; count: number }; diff --git a/tests/simple/class_syntax_test.ts b/tests/simple/class_syntax_test.ts index d2ae66f7f4..a9307836ae 100644 --- a/tests/simple/class_syntax_test.ts +++ b/tests/simple/class_syntax_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/simple/error_message_test.ts b/tests/simple/error_message_test.ts index 63aad337bb..5936d91e1a 100644 --- a/tests/simple/error_message_test.ts +++ b/tests/simple/error_message_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/simple/simple_test.ts b/tests/simple/simple_test.ts index fb3519ec26..d4d4358500 100644 --- a/tests/simple/simple_test.ts +++ b/tests/simple/simple_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/sync/sync_config_test.ts b/tests/sync/sync_config_test.ts index 81ab66a516..411654d319 100644 --- a/tests/sync/sync_config_test.ts +++ b/tests/sync/sync_config_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assert, assertEquals } from "@std/assert"; import { diff --git a/tests/sync/typegraph_sync_test.ts.disable b/tests/sync/typegraph_sync_test.ts.disable index f97f39fb73..0005743b4d 100644 --- a/tests/sync/typegraph_sync_test.ts.disable +++ b/tests/sync/typegraph_sync_test.ts.disable @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Meta } from "test-utils/mod.ts"; import { connect } from "redis"; diff --git a/tests/type_nodes/array_of_optional_test.ts b/tests/type_nodes/array_of_optional_test.ts index 3164934d20..45267b3f7c 100644 --- a/tests/type_nodes/array_of_optional_test.ts +++ b/tests/type_nodes/array_of_optional_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/type_nodes/either_test.ts b/tests/type_nodes/either_test.ts index 467aa13807..19fe8a952b 100644 --- a/tests/type_nodes/either_test.ts +++ b/tests/type_nodes/either_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/type_nodes/ts/either/user_register.ts b/tests/type_nodes/ts/either/user_register.ts index b4265890f1..4e8a2a8788 100644 --- a/tests/type_nodes/ts/either/user_register.ts +++ b/tests/type_nodes/ts/either/user_register.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 interface Regist_userInput { user: { diff --git a/tests/type_nodes/ts/union/color_converter.ts b/tests/type_nodes/ts/union/color_converter.ts index c60ca19335..09fa6d256a 100644 --- a/tests/type_nodes/ts/union/color_converter.ts +++ b/tests/type_nodes/ts/union/color_converter.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // deno-lint-ignore no-external-import import { diff --git a/tests/type_nodes/ts/union/phone_register.ts b/tests/type_nodes/ts/union/phone_register.ts index 510d93f25d..6ab15157ec 100644 --- a/tests/type_nodes/ts/union/phone_register.ts +++ b/tests/type_nodes/ts/union/phone_register.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 type OS = "Android" | "iOS"; diff --git a/tests/type_nodes/ts/union/vec_normalizer.ts b/tests/type_nodes/ts/union/vec_normalizer.ts index ab069ca5db..0d5d6633d3 100644 --- a/tests/type_nodes/ts/union/vec_normalizer.ts +++ b/tests/type_nodes/ts/union/vec_normalizer.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 type Color = { R: number; diff --git a/tests/type_nodes/union_node_attr_test.ts b/tests/type_nodes/union_node_attr_test.ts index 59e4f8646a..b1a004bc6d 100644 --- a/tests/type_nodes/union_node_attr_test.ts +++ b/tests/type_nodes/union_node_attr_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/type_nodes/union_node_quantifier_test.ts b/tests/type_nodes/union_node_quantifier_test.ts index 8836ce4e6b..f03f4433ff 100644 --- a/tests/type_nodes/union_node_quantifier_test.ts +++ b/tests/type_nodes/union_node_quantifier_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/type_nodes/union_test.ts b/tests/type_nodes/union_test.ts index e1ec8a5546..300eeeb4b8 100644 --- a/tests/type_nodes/union_test.ts +++ b/tests/type_nodes/union_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { JSONValue } from "@metatype/typegate/utils.ts"; import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/typecheck/input_validator_test.ts b/tests/typecheck/input_validator_test.ts index 54341c1d1a..67dc29b4e0 100644 --- a/tests/typecheck/input_validator_test.ts +++ b/tests/typecheck/input_validator_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/typecheck/reduce.ts b/tests/typecheck/reduce.ts index 735a780b77..5008e61c85 100644 --- a/tests/typecheck/reduce.ts +++ b/tests/typecheck/reduce.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fx, Policy, t, typegraph } from "@typegraph/sdk/index.ts"; import { DenoRuntime } from "@typegraph/sdk/runtimes/deno.ts"; diff --git a/tests/typecheck/reduce_syntax_test.ts b/tests/typecheck/reduce_syntax_test.ts index 6c63fa1f43..07f7e6f8fd 100644 --- a/tests/typecheck/reduce_syntax_test.ts +++ b/tests/typecheck/reduce_syntax_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/typecheck/type_alias_test.ts b/tests/typecheck/type_alias_test.ts index b0a7691a1d..4233d0cdc8 100644 --- a/tests/typecheck/type_alias_test.ts +++ b/tests/typecheck/type_alias_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "test-utils/mod.ts"; import { dropSchemas, recreateMigrations } from "test-utils/migrations.ts"; diff --git a/tests/typecheck/typecheck.py b/tests/typecheck/typecheck.py index e01195b6da..dd42e8c9a5 100644 --- a/tests/typecheck/typecheck.py +++ b/tests/typecheck/typecheck.py @@ -1,4 +1,5 @@ -# Copyright Metatype under the Elastic License 2.0. +# Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +# SPDX-License-Identifier: MPL-2.0 from typegraph import typegraph, effects, Policy, t, Graph from typegraph.runtimes.deno import DenoRuntime diff --git a/tests/typecheck/typecheck_test.ts b/tests/typecheck/typecheck_test.ts index c351fd5186..653723be1c 100644 --- a/tests/typecheck/typecheck_test.ts +++ b/tests/typecheck/typecheck_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; import { assertThrows } from "@std/assert"; diff --git a/tests/typegraph/version_test.ts b/tests/typegraph/version_test.ts index b5b8530bbd..24e484c5f0 100644 --- a/tests/typegraph/version_test.ts +++ b/tests/typegraph/version_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { expandGlob } from "@std/fs/expand-glob"; import { Meta } from "../utils/mod.ts"; diff --git a/tests/typename/typename_test.ts b/tests/typename/typename_test.ts index 98a3bdc862..18a9912c0e 100644 --- a/tests/typename/typename_test.ts +++ b/tests/typename/typename_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { recreateMigrations } from "../utils/migrations.ts"; import { gql, Meta } from "../utils/mod.ts"; diff --git a/tests/utils/assert.ts b/tests/utils/assert.ts index 98cf7a2291..60a4de1b3e 100644 --- a/tests/utils/assert.ts +++ b/tests/utils/assert.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export interface LazyAssertOptions { timeoutMs: number; diff --git a/tests/utils/autotest.ts b/tests/utils/autotest.ts index 59486e3b83..2e9538d055 100644 --- a/tests/utils/autotest.ts +++ b/tests/utils/autotest.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dirname, join } from "@std/path"; diff --git a/tests/utils/bindings_test.ts b/tests/utils/bindings_test.ts index 4c9a0477b4..616c906034 100644 --- a/tests/utils/bindings_test.ts +++ b/tests/utils/bindings_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { get_version, diff --git a/tests/utils/database.ts b/tests/utils/database.ts index 74dc7d57d3..cda2649004 100644 --- a/tests/utils/database.ts +++ b/tests/utils/database.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import pg from "pg"; import { removeMigrations } from "test-utils/migrations.ts"; diff --git a/tests/utils/date.ts b/tests/utils/date.ts index 96ab452262..fab3f1241b 100644 --- a/tests/utils/date.ts +++ b/tests/utils/date.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 const OriginalDate = Date; diff --git a/tests/utils/dir.ts b/tests/utils/dir.ts index 2b5381c7b6..c090e54f5c 100644 --- a/tests/utils/dir.ts +++ b/tests/utils/dir.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { fromFileUrl, join } from "@std/path"; diff --git a/tests/utils/hooks.ts b/tests/utils/hooks.ts index 2e226c1b82..6f8c501b8c 100644 --- a/tests/utils/hooks.ts +++ b/tests/utils/hooks.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { SyncConfig } from "@metatype/typegate/config.ts"; import { createBucket, tryDeleteBucket } from "test-utils/s3.ts"; diff --git a/tests/utils/meta.ts b/tests/utils/meta.ts index 59e4c24a58..203371adbc 100644 --- a/tests/utils/meta.ts +++ b/tests/utils/meta.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { shell, ShellOptions, ShellOutput } from "./shell.ts"; diff --git a/tests/utils/migrations.ts b/tests/utils/migrations.ts index f5f42026ae..8d788a050d 100644 --- a/tests/utils/migrations.ts +++ b/tests/utils/migrations.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { QueryEngine } from "@metatype/typegate/engine/query_engine.ts"; import { join } from "@std/path"; diff --git a/tests/utils/mock_fetch.ts b/tests/utils/mock_fetch.ts index 080218b2a8..152464d196 100644 --- a/tests/utils/mock_fetch.ts +++ b/tests/utils/mock_fetch.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /* Lifted from https://github.com/clo4/deno_mock_fetch/blob/1ef9476b43b1b2b4cab0aaa576f713e8339f46b6/mod.ts diff --git a/tests/utils/mod.ts b/tests/utils/mod.ts index 4e6121c0b9..86567aa7e5 100644 --- a/tests/utils/mod.ts +++ b/tests/utils/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // import { SingleRegister } from "test-utils/single_register.ts"; // import { Typegate } from "@metatype/typegate/typegate/mod.ts"; diff --git a/tests/utils/process.ts b/tests/utils/process.ts index 892a9b6df7..7a36add6bf 100644 --- a/tests/utils/process.ts +++ b/tests/utils/process.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { TextLineStream } from "@local/tools/deps.ts"; import { deadline } from "@std/async/deadline"; diff --git a/tests/utils/query/file_extractor.ts b/tests/utils/query/file_extractor.ts index a0c1c65495..30834cb81c 100644 --- a/tests/utils/query/file_extractor.ts +++ b/tests/utils/query/file_extractor.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Variables } from "./mod.ts"; diff --git a/tests/utils/query/graphql_query.ts b/tests/utils/query/graphql_query.ts index e2fea956e0..a47695f8c5 100644 --- a/tests/utils/query/graphql_query.ts +++ b/tests/utils/query/graphql_query.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { QueryEngine } from "@metatype/typegate/engine/query_engine.ts"; import { FileExtractor } from "./file_extractor.ts"; diff --git a/tests/utils/query/mod.ts b/tests/utils/query/mod.ts index 9c198ad0f9..d2ffb92a04 100644 --- a/tests/utils/query/mod.ts +++ b/tests/utils/query/mod.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { assert, diff --git a/tests/utils/query/rest_query.ts b/tests/utils/query/rest_query.ts index d087be46d9..bcc64e7d88 100644 --- a/tests/utils/query/rest_query.ts +++ b/tests/utils/query/rest_query.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { Context, diff --git a/tests/utils/router@0.0.5.ts b/tests/utils/router@0.0.5.ts index 3576698489..b7c2522ba8 100644 --- a/tests/utils/router@0.0.5.ts +++ b/tests/utils/router@0.0.5.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // Copyright 2021 denosaurs. All rights reserved. MIT license. diff --git a/tests/utils/s3.ts b/tests/utils/s3.ts index d9e4747bab..4a6ac61b80 100644 --- a/tests/utils/s3.ts +++ b/tests/utils/s3.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { CreateBucketCommand, diff --git a/tests/utils/shell.ts b/tests/utils/shell.ts index 4d2c82a567..3824090044 100644 --- a/tests/utils/shell.ts +++ b/tests/utils/shell.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { testDir } from "./dir.ts"; diff --git a/tests/utils/single_register.ts b/tests/utils/single_register.ts index 8bb631b806..448fbbc4e3 100644 --- a/tests/utils/single_register.ts +++ b/tests/utils/single_register.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { QueryEngine } from "@metatype/typegate/engine/query_engine.ts"; import { Register } from "@metatype/typegate/typegate/register.ts"; diff --git a/tests/utils/test.ts b/tests/utils/test.ts index 12fef6bb04..78993d9f74 100644 --- a/tests/utils/test.ts +++ b/tests/utils/test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { SystemTypegraph } from "@metatype/typegate/system_typegraphs.ts"; import { dirname, extname, join } from "@std/path"; diff --git a/tests/utils/test_module.ts b/tests/utils/test_module.ts index 99da40cab8..6a7003c758 100644 --- a/tests/utils/test_module.ts +++ b/tests/utils/test_module.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { dirname, fromFileUrl } from "@std/path"; import { shell, ShellOptions, ShellOutput } from "./shell.ts"; diff --git a/tests/utils/tg_deploy_script.ts b/tests/utils/tg_deploy_script.ts index ed4be2fa65..229781d3a8 100644 --- a/tests/utils/tg_deploy_script.ts +++ b/tests/utils/tg_deploy_script.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { BasicAuth, tgDeploy } from "@typegraph/sdk/tg_deploy.ts"; import * as path from "@std/path"; diff --git a/tests/vars/vars_test.ts b/tests/vars/vars_test.ts index 008aa0d8ef..31692567b2 100644 --- a/tests/vars/vars_test.ts +++ b/tests/vars/vars_test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { gql, Meta } from "../utils/mod.ts"; diff --git a/tools/Dockerfile b/tools/Dockerfile index aa99c54dc8..42f0e227b4 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -75,9 +75,9 @@ COPY . . RUN . "$GHJK_ACTIVATE" \ && cargo build --profile $CARGO_PROFILE --package typegate --locked \ && ( \ - [ $CARGO_PROFILE = 'release' ] \ - && cp target/release/typegate typegate-bin \ - || cp target/debug/typegate typegate-bin \ + [ $CARGO_PROFILE = 'release' ] \ + && cp target/release/typegate typegate-bin \ + || cp target/debug/typegate typegate-bin \ ) RUN . "$GHJK_ACTIVATE" \ @@ -131,7 +131,7 @@ COPY --from=builder /app/src/typegate/deno.jsonc ./src/typegate/ COPY --from=builder /app/src/typegraph/deno/deno.json ./src/typegraph/deno/ COPY --from=builder /app/tests/deno.jsonc ./tests/ COPY --from=builder /app/examples/deno.jsonc ./examples/ -COPY tools/LICENSE-Elastic-2.0.md LICENSE.md +COPY tools/LICENSE-MPL-2.0.md LICENSE.md # writeable COPY --from=builder --chown=nonroot:nonroot /deno-dir /deno-dir diff --git a/tools/Dockerfile.dockerignore b/tools/Dockerfile.dockerignore index 9f797defd5..d7a2ead680 100644 --- a/tools/Dockerfile.dockerignore +++ b/tools/Dockerfile.dockerignore @@ -2,7 +2,7 @@ !tools/*.ts !tools/tasks/ -!tools/LICENSE-Elastic-2.0.md +!tools/LICENSE-MPL-2.0.md !src/common !src/meta-cli/Cargo.toml diff --git a/tools/LICENSE-Elastic-2.0.md b/tools/LICENSE-Elastic-2.0.md deleted file mode 100644 index e9e68bb9c3..0000000000 --- a/tools/LICENSE-Elastic-2.0.md +++ /dev/null @@ -1,91 +0,0 @@ -## Elastic License 2.0 (Elastic-2.0) - -### Acceptance - -By using the software, you agree to all of the terms and conditions below. - -### Copyright License - -The licensor grants you a non-exclusive, royalty-free, worldwide, -non-sublicensable, non-transferable license to use, copy, distribute, make -available, and prepare derivative works of the software, in each case subject to -the limitations and conditions below. - -### Limitations - -You may not provide the software to third parties as a hosted or managed -service, where the service provides users with access to any substantial set of -the features or functionality of the software. - -You may not move, change, disable, or circumvent the license key functionality -in the software, and you may not remove or obscure any functionality in the -software that is protected by the license key. - -You may not alter, remove, or obscure any licensing, copyright, or other notices -of the licensor in the software. Any use of the licensor’s trademarks is subject -to applicable law. - -### Patents - -The licensor grants you a license, under any patent claims the licensor can -license, or becomes able to license, to make, have made, use, sell, offer for -sale, import and have imported the software, in each case subject to the -limitations and conditions in this license. This license does not cover any -patent claims that you cause to be infringed by modifications or additions to -the software. If you or your company make any written claim that the software -infringes or contributes to infringement of any patent, your patent license for -the software granted under these terms ends immediately. If your company makes -such a claim, your patent license ends immediately for work on behalf of your -company. - -### Notices - -You must ensure that anyone who gets a copy of any part of the software from you -also gets a copy of these terms. - -If you modify the software, you must include in any modified copies of the -software prominent notices stating that you have modified the software. - -### No Other Rights - -These terms do not imply any licenses other than those expressly granted in -these terms. - -### Termination - -If you use the software in violation of these terms, such use is not licensed, -and your licenses will automatically terminate. If the licensor provides you -with a notice of your violation, and you cease all violation of this license no -later than 30 days after you receive that notice, your licenses will be -reinstated retroactively. However, if you violate these terms after such -reinstatement, any additional violation of these terms will cause your licenses -to terminate automatically and permanently. - -### No Liability - -_As far as the law allows, the software comes as is, without any warranty or -condition, and the licensor will not be liable to you for any damages arising -out of these terms or the use or nature of the software, under any kind of legal -claim._ - -### Definitions - -The **licensor** is the entity offering these terms, and the **software** is the -software the licensor makes available under these terms, including any portion -of it. - -**you** refers to the individual or entity agreeing to these terms. - -**your company** is any legal entity, sole proprietorship, or other kind of -organization that you work for, plus all organizations that have control over, -are under the control of, or are under common control with that organization. -**control** means ownership of substantially all the assets of an entity, or the -power to direct its management and policies by vote, contract, or otherwise. -Control can be direct or indirect. - -**your licenses** are all the licenses granted to you for the software under -these terms. - -**use** means anything you do with the software requiring one of your licenses. - -**trademark** means trademarks, service marks, and similar rights. diff --git a/tools/consts.ts b/tools/consts.ts index e3314d7a97..7b011efcee 100644 --- a/tools/consts.ts +++ b/tools/consts.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 export const METATYPE_VERSION = "0.5.0-rc.4"; export const PUBLISHED_VERSION = "0.5.0-rc.3"; diff --git a/tools/deps.ts b/tools/deps.ts index 8e7069d80b..2bd2bfb1e7 100644 --- a/tools/deps.ts +++ b/tools/deps.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 // FIXME: we can't use the import map in ghjk so we must // rely on a deps.ts diff --git a/tools/installs.ts b/tools/installs.ts index 0e99b20525..8fce5111a2 100644 --- a/tools/installs.ts +++ b/tools/installs.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { DENO_VERSION, PYTHON_VERSION, RUST_VERSION } from "./consts.ts"; import { ports } from "./deps.ts"; diff --git a/tools/license-header-Elastic-2.0.txt b/tools/license-header-Elastic-2.0.txt deleted file mode 100644 index cd12e09928..0000000000 --- a/tools/license-header-Elastic-2.0.txt +++ /dev/null @@ -1,2 +0,0 @@ -Copyright Metatype OÜ, licensed under the Elastic License 2.0. -SPDX-License-Identifier: Elastic-2.0 diff --git a/tools/tasks/build.ts b/tools/tasks/build.ts index b285c7918c..c7b02aaa42 100644 --- a/tools/tasks/build.ts +++ b/tools/tasks/build.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { DenoTaskDefArgs } from "../deps.ts"; diff --git a/tools/tasks/dev.ts b/tools/tasks/dev.ts index cdaeadcb5f..3d4c43296f 100644 --- a/tools/tasks/dev.ts +++ b/tools/tasks/dev.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { DenoTaskDefArgs } from "../deps.ts"; diff --git a/tools/tasks/fetch.ts b/tools/tasks/fetch.ts index 72c02c8099..8c625bf182 100644 --- a/tools/tasks/fetch.ts +++ b/tools/tasks/fetch.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { DenoTaskDefArgs } from "../deps.ts"; diff --git a/tools/tasks/gen.ts b/tools/tasks/gen.ts index 79af794885..bab72d4f4b 100644 --- a/tools/tasks/gen.ts +++ b/tools/tasks/gen.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import type { DenoTaskDefArgs } from "../deps.ts"; import { ports } from "../deps.ts"; diff --git a/tools/tasks/install.ts b/tools/tasks/install.ts index 4e39e033b5..584255b0e0 100644 --- a/tools/tasks/install.ts +++ b/tools/tasks/install.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type DenoTaskDefArgs, std_url } from "../deps.ts"; import { WASMTIME_VERSION } from "../consts.ts"; diff --git a/tools/tasks/lint.ts b/tools/tasks/lint.ts index 6837ea2def..7b19c02fdb 100644 --- a/tools/tasks/lint.ts +++ b/tools/tasks/lint.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { type DenoTaskDefArgs, ports } from "../deps.ts"; import installs from "../installs.ts"; diff --git a/tools/tasks/lock.ts b/tools/tasks/lock.ts index 8dc229d72d..c18325210c 100644 --- a/tools/tasks/lock.ts +++ b/tools/tasks/lock.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { copyLock, type DenoTaskDefArgs, parseArgs, sedLock } from "../deps.ts"; import * as consts from "../consts.ts"; diff --git a/tools/tasks/mod.ts b/tools/tasks/mod.ts index dd0274222f..1d5f38e19f 100644 --- a/tools/tasks/mod.ts +++ b/tools/tasks/mod.ts @@ -1,3 +1,6 @@ +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 + import type { DenoTaskDefArgs } from "../deps.ts"; import tasksBuild from "./build.ts"; @@ -10,12 +13,12 @@ import tasksLock from "./lock.ts"; import tasksTest from "./test.ts"; export default { - ...tasksBuild, - ...tasksDev, - ...tasksFetch, - ...tasksGen, - ...tasksInstall, - ...tasksLint, - ...tasksLock, - ...tasksTest, + ...tasksBuild, + ...tasksDev, + ...tasksFetch, + ...tasksGen, + ...tasksInstall, + ...tasksLint, + ...tasksLock, + ...tasksTest, } satisfies Record; diff --git a/tools/tasks/test.ts b/tools/tasks/test.ts index 649c9e4fc3..58e3b103dc 100644 --- a/tools/tasks/test.ts +++ b/tools/tasks/test.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { testE2eCli } from "../test.ts"; import type { DenoTaskDefArgs } from "../deps.ts"; diff --git a/tools/test.ts b/tools/test.ts index 2f616b621f..014ca1c32d 100755 --- a/tools/test.ts +++ b/tools/test.ts @@ -1,7 +1,7 @@ #!/bin/env -S ghjk deno run -A -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /** * A utility script to run tests. diff --git a/tools/tree-view-web.ts b/tools/tree-view-web.ts index e8e036deb6..26b2a2b5fe 100755 --- a/tools/tree-view-web.ts +++ b/tools/tree-view-web.ts @@ -1,7 +1,7 @@ #!/bin/env -S ghjk deno run -A -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /** * Usage: diff --git a/tools/tree-view.ts b/tools/tree-view.ts index 200fc71d10..22ef1b83e3 100755 --- a/tools/tree-view.ts +++ b/tools/tree-view.ts @@ -1,7 +1,7 @@ #!/bin/env -S ghjk deno run -A -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 /** * Usage: diff --git a/tools/typegraph-size.ts b/tools/typegraph-size.ts index 1a153c909f..c730e12a59 100644 --- a/tools/typegraph-size.ts +++ b/tools/typegraph-size.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { projectDir, runOrExit } from "./utils.ts"; import { bytes, formatDuration, resolve } from "./deps.ts"; diff --git a/tools/update.ts b/tools/update.ts index 149e3fbb89..a3718003f1 100755 --- a/tools/update.ts +++ b/tools/update.ts @@ -1,7 +1,7 @@ #!/bin/env -S ghjk deno run -A --config=typegate/deno.jsonc -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { $, diff --git a/tools/utils.ts b/tools/utils.ts index 172c7efda5..96558d1f19 100644 --- a/tools/utils.ts +++ b/tools/utils.ts @@ -1,5 +1,5 @@ -// Copyright Metatype OÜ, licensed under the Elastic License 2.0. -// SPDX-License-Identifier: Elastic-2.0 +// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. +// SPDX-License-Identifier: MPL-2.0 import { copySync, dirname, fromFileUrl, join, resolve } from "./deps.ts"; From d69f9ce602a251966e861671e5464c938a69b617 Mon Sep 17 00:00:00 2001 From: Natoandro Date: Sat, 9 Nov 2024 08:50:14 +0300 Subject: [PATCH 7/9] fix: fix optional field filter in apply (#909) - Fix the optional field filter on apply: resolve types before matching. #### Migration notes _No migrations needed._ --- - [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --- deno.lock | 5 -- src/typegraph/core/src/params/apply.rs | 22 +++++---- tests/params/apply_test.ts | 68 +++++++++++++++++++++++++- tests/params/prisma_apply.py | 38 ++++++++++++++ 4 files changed, 118 insertions(+), 15 deletions(-) create mode 100644 tests/params/prisma_apply.py diff --git a/deno.lock b/deno.lock index 9a679f2d84..9b89ecb14c 100644 --- a/deno.lock +++ b/deno.lock @@ -9,7 +9,6 @@ "jsr:@std/assert@^1.0.2": "jsr:@std/assert@1.0.4", "jsr:@std/assert@^1.0.4": "jsr:@std/assert@1.0.6", "jsr:@std/assert@^1.0.6": "jsr:@std/assert@1.0.6", - "jsr:@std/async@^1.0.3": "jsr:@std/async@1.0.3", "jsr:@std/bytes@^0.221.0": "jsr:@std/bytes@0.221.0", "jsr:@std/bytes@^1.0.2": "jsr:@std/bytes@1.0.2", "jsr:@std/bytes@^1.0.2-rc.3": "jsr:@std/bytes@1.0.2", @@ -47,7 +46,6 @@ "jsr:@std/semver@^1.0.1": "jsr:@std/semver@1.0.2", "jsr:@std/streams@0.221.0": "jsr:@std/streams@0.221.0", "jsr:@std/streams@1": "jsr:@std/streams@1.0.4", - "jsr:@std/streams@^1.0.2": "jsr:@std/streams@1.0.4", "jsr:@std/testing@^1.0.1": "jsr:@std/testing@1.0.2", "jsr:@std/url@^0.225.0": "jsr:@std/url@0.225.0", "jsr:@std/uuid@^1.0.1": "jsr:@std/uuid@1.0.2", @@ -114,9 +112,6 @@ "jsr:@std/internal@^1.0.4" ] }, - "@std/async@1.0.3": { - "integrity": "6ed64678db43451683c6c176a21426a2ccd21ba0269ebb2c36133ede3f165792" - }, "@std/bytes@0.221.0": { "integrity": "64a047011cf833890a4a2ab7293ac55a1b4f5a050624ebc6a0159c357de91966" }, diff --git a/src/typegraph/core/src/params/apply.rs b/src/typegraph/core/src/params/apply.rs index e90f31b45a..92fa675347 100644 --- a/src/typegraph/core/src/params/apply.rs +++ b/src/typegraph/core/src/params/apply.rs @@ -3,7 +3,7 @@ use crate::errors::{ErrorContext, Result, TgError}; use crate::t::{self, TypeBuilder}; -use crate::types::{Type, TypeDef, TypeId}; +use crate::types::{AsTypeDefEx as _, TypeDef, TypeId}; use crate::wit::core::{ParameterTransform, TransformData}; use serde::{Deserialize, Serialize}; use std::collections::HashMap; @@ -307,26 +307,30 @@ impl TransformDataBuildContext { .filter_map(|(&k, &type_id)| { TypeId(type_id) .as_type() - .map(|ty| { - if !matches!(ty, Type::Def(TypeDef::Optional(_))) { - Some(k) - } else { - None - } - }) .with_context(|| { format!( "Error while resolving type #{type_id} at the field {k:?} at {path:?}", path = stringify_path(&self.path).unwrap() ) }) + .and_then(|ty| { + ty.as_xdef() + .with_context(|| format!("resolving type: {}", ty.id().repr().unwrap())) + }) + .map(|ty| { + if !matches!(ty.type_def, TypeDef::Optional(_)) { + Some(k) + } else { + None + } + }) .transpose() }) .collect::>>()?; if !non_optional_fields.is_empty() { Err(format!( - "Missing non-optional fields {non_optional_fields:?} at {path:?}", + "missing non-optional fields {non_optional_fields:?} at {path:?}", path = stringify_path(&self.path).unwrap() ) .into()) diff --git a/tests/params/apply_test.ts b/tests/params/apply_test.ts index 5839ec91a9..217a9b4fb5 100644 --- a/tests/params/apply_test.ts +++ b/tests/params/apply_test.ts @@ -1,7 +1,10 @@ // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 -import { gql, Meta } from "../utils/mod.ts"; +import { randomPGConnStr } from "test-utils/database.ts"; +import { gql, Meta } from "test-utils/mod.ts"; +import { dropSchemas, recreateMigrations } from "test-utils/migrations.ts"; +import { assertEquals } from "@std/assert/equals"; Meta.test("(python (sdk): apply)", async (t) => { const e = await t.engine("params/apply.py", { @@ -253,3 +256,66 @@ Meta.test("nested context access", async (t) => { .on(e); }); }); + +Meta.test("apply with prisma generated types", async (t) => { + const { connStr, schema: _ } = randomPGConnStr(); + const e = await t.engine("params/prisma_apply.py", { + secrets: { + "POSTGRES": connStr, + }, + }); + await dropSchemas(e); + await recreateMigrations(e); + + let id: string = null!; + + await t.should("create user", async () => { + await gql` + mutation { + createUser( + name: "Alice" + email: "alice@example.com" + age: 30 + ) { + id + name + email + age + } + } + ` + .expectBody((body) => { + id = body.data.createUser.id; + assertEquals(body.data.createUser, { + id: id, + name: "Alice", + email: "alice@example.com", + age: 30, + }); + }) + .on(e); + }); + + await t.should("find user by id", async () => { + await gql` + query Q($id: ID!) { + findUser(id: $id) { + id + name + email + age + } + } + ` + .withVars({ id }) + .expectData({ + findUser: { + id, + name: "Alice", + email: "alice@example.com", + age: 30, + }, + }) + .on(e); + }); +}); diff --git a/tests/params/prisma_apply.py b/tests/params/prisma_apply.py new file mode 100644 index 0000000000..78afba91b7 --- /dev/null +++ b/tests/params/prisma_apply.py @@ -0,0 +1,38 @@ +from typegraph import Graph, Policy, t, typegraph +from typegraph.providers import PrismaRuntime + + +@typegraph() +def prisma_apply(g: Graph): + prisma = PrismaRuntime("db", "POSTGRES") + public = Policy.public() + + user = t.struct( + { + "id": t.uuid(config=["auto"]).id(), + "name": t.string(), + "email": t.email(config=["unique"]), + "age": t.integer(), + }, + name="user", + ) + + g.expose( + public, + createUser=prisma.create(user).apply( + { + "data": { + "name": g.as_arg(), + "email": g.as_arg(), + "age": g.as_arg(), + } + } + ), + findUser=prisma.find_unique(user).apply( + { + "where": { + "id": g.as_arg(), + } + } + ), + ) From d669167ea094cfcbd9ca4fed56075bbfc882722d Mon Sep 17 00:00:00 2001 From: Yohe-Am <56622350+Yohe-Am@users.noreply.github.com> Date: Sun, 10 Nov 2024 18:20:16 +0300 Subject: [PATCH 8/9] feat: substantial function secrets support (#908) - Add support for passing secrets to substantial workflows - Bump version to 0.5.0-rc5 --- - [x] The change comes with new or modified tests --- Cargo.lock | 18 +- Cargo.toml | 2 +- deno.lock | 116 ++++++++++ examples/templates/deno/api/example.ts | 6 +- examples/templates/deno/compose.yml | 2 +- examples/templates/node/compose.yml | 2 +- examples/templates/node/package.json | 2 +- examples/templates/python/compose.yml | 2 +- examples/templates/python/pyproject.toml | 4 +- pyproject.toml | 2 +- src/meta-lsp/package.json | 2 +- src/meta-lsp/ts-language-server/package.json | 2 +- .../vscode-metatype-support/package.json | 2 +- src/pyrt_wit_wire/pyproject.toml | 2 +- src/typegate/src/runtimes/substantial.ts | 58 +++-- .../src/runtimes/substantial/agent.ts | 11 +- .../src/runtimes/substantial/deno_context.ts | 3 - .../src/runtimes/substantial/worker.ts | 2 +- src/typegate/src/runtimes/wit_wire/mod.ts | 2 +- src/typegraph/core/Cargo.toml | 2 +- src/typegraph/core/src/global_store.rs | 2 +- src/typegraph/core/src/lib.rs | 1 + .../core/src/runtimes/substantial.rs | 201 +++++++++-------- src/typegraph/core/wit/typegraph.wit | 23 +- src/typegraph/deno/deno.json | 2 +- .../deno/src/runtimes/substantial.ts | 65 +++--- src/typegraph/python/pyproject.toml | 2 +- src/typegraph/python/typegraph/__init__.py | 2 +- .../python/typegraph/graph/tg_deploy.py | 10 +- .../python/typegraph/runtimes/deno.py | 2 +- .../python/typegraph/runtimes/substantial.py | 104 ++++----- src/xtask/Cargo.toml | 2 +- .../__snapshots__/metagen_test.ts.snap | 4 +- tests/metagen/typegraphs/sample/py/client.py | 208 +++++++++++------- tests/runtimes/substantial/common.ts | 15 +- .../substantial/imports/common_types.ts | 19 +- tests/runtimes/substantial/substantial.py | 13 +- .../runtimes/substantial/substantial_test.ts | 6 + tests/runtimes/substantial/workflow.ts | 28 ++- tests/runtimes/wasm_reflected/rust/Cargo.toml | 2 +- tools/Dockerfile | 19 +- tools/Dockerfile.dockerignore | 2 + tools/consts.ts | 4 +- 43 files changed, 619 insertions(+), 359 deletions(-) create mode 100644 tests/runtimes/substantial/substantial_test.ts diff --git a/Cargo.lock b/Cargo.lock index 193fe71cb9..db49daf380 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1600,7 +1600,7 @@ dependencies = [ [[package]] name = "common" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "async-trait", @@ -6891,7 +6891,7 @@ dependencies = [ [[package]] name = "meta-cli" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "actix", "assert_cmd", @@ -6958,7 +6958,7 @@ dependencies = [ [[package]] name = "metagen" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "color-eyre", "common", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "mt_deno" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "deno", @@ -11268,7 +11268,7 @@ dependencies = [ [[package]] name = "substantial" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "chrono", @@ -12756,7 +12756,7 @@ dependencies = [ [[package]] name = "typegate" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "colored", "env_logger 0.11.0", @@ -12769,7 +12769,7 @@ dependencies = [ [[package]] name = "typegate_engine" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "base64 0.22.1", @@ -12814,7 +12814,7 @@ dependencies = [ [[package]] name = "typegraph_core" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "color-eyre", @@ -14567,7 +14567,7 @@ checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" [[package]] name = "xtask" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 4deca359b8..dc6aa63196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ exclude = [ ] [workspace.package] -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" edition = "2021" [workspace.dependencies] diff --git a/deno.lock b/deno.lock index 9b89ecb14c..756ca5d198 100644 --- a/deno.lock +++ b/deno.lock @@ -2080,6 +2080,122 @@ "https://raw.githubusercontent.com/metatypedev/ghjk/v0.2.1/utils/unarchive.ts": "f6d0e9e75f470eeef5aecd0089169f4350fc30ebfdc05466bb7b30042294d6d3", "https://raw.githubusercontent.com/metatypedev/ghjk/v0.2.1/utils/url.ts": "e1ada6fd30fc796b8918c88456ea1b5bbd87a07d0a0538b092b91fd2bb9b7623", "https://raw.githubusercontent.com/metatypedev/ghjk/v0.2.1/utils/worker.ts": "ac4caf72a36d2e4af4f4e92f2e0a95f9fc2324b568640f24c7c2ff6dc0c11d62", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/engine/bindings.ts": "7c3e28ec60a0381030310228be6c02f1a434046b4cbcf793a537aaef47be949f", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/engine/runtime.js": "1ae55e76d3de8e79c37054d9127c92af496ce10aa905ea64021893048bb33794", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/config.ts": "63ea402f9a993888a9e3ec88d35112186f8f13bcd3a5fe358e69e0bb603311a5", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/config/loader.ts": "91cc2b67cc9bee413b0b44f9aa2ea7814f50e2465e6bc114eece248554d7477d", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/config/shared.ts": "252b42038eb68059b2cac85c792e36f5849b8e7392b98452341ccc3ee680a774", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/config/types.ts": "73357168542ef041da67997acdd98097444d92f0a1663be03ad1523fd20f768c", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/crypto.ts": "f550775b9e5bf9e7ec286a1596246a631b117fd91e093169bcad4898fb729634", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/computation_engine.ts": "07a3826fcf0bb13eb3912b8e5cbf69932848cd28c1c4ebda7042f977510d00a5", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/args.ts": "de16ba5c087afae319f65d02ab39779146da37ea925f610da8887cffe7828060", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/dependency_resolver.ts": "b851f4a6e2d500f9427dd1a59920d6c71f10904b31863bb1fac4d26e01d02b67", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/injection_utils.ts": "6f9ad0f8f9cde9a985b6ad36bf58418637a85f50749abe6870c792ade7dc45a2", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/mod.ts": "9a4429e7a579903f4f67ab53bd602b2d05a58138bdbd91c7cc5b1b44cf714b68", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/parameter_transformer.ts": "3ba3b9603c6d28c0d54648f8177bce30b8b667e0e1be903d468af3f2645649ff", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/planner/policies.ts": "caf3cfd8a46e21a5d09fdb46882d6ea4ffb376c56070bdb1ccff92fa70989d63", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/query_engine.ts": "39281c309b3d72123fcd8695700bd2831956e09d2b1c082ef899886beea6ae82", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/stage_id.ts": "b3b3c62215ff421103788079b77943af8f0026a56eafaa929415cb39ccde3cca", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/code_generator.ts": "edb77e2b98da2f040d3f7567d204dba2a3d8c66ae1a7c2709c049e464763f0cd", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/common.ts": "b585975e1a978dfa966df1a549261049ab159077bc90203a33bfe8ae055b3c6f", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/common.ts": "112f56c8e590215b0af0c1b46dc84b85cb5b9b43621a52646876c35a43103499", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/constraints.ts": "3237d0acce31aca8b2f2bbc0cae8a82d86f3671fcc7fabc3158037c4f79008f5", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/list.ts": "bd70fef3bc3840cfb6255a518de5fdb3db79a68a4481594475aebcbdd6a10102", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/number.ts": "9890c8af998dca2e573fc2ad02e63d9abc9b506b4a0c451d31f5916a8888e401", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/object.ts": "bd4f8891ee823bf82481df2ee181256514fd7299b5fe4fd7cd7194defa228f57", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/inline_validators/string.ts": "914a2b809a344075279578cb35ac3d03cb6025eb9f62c1f9f86958191b9857da", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/input.ts": "cf24fcffa1891dfc2f2af941a64aade9da069a6ef92baa432e2d7dcf5f9a8b86", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/matching_variant.ts": "aca8db649194921a01aca42b02113d0735262bb63d41ec44174e61c4cfa85369", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/engine/typecheck/result.ts": "6544f206b67c32015950ec96134415c261a60f54c469c1cd73f8accadf87fff6", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/errors.ts": "29dfbfdc8b7a85ee9551831d6db882e50a4e0104102b5885b2bd9a42878365f6", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/libs/jsonpath.ts": "f6851288fb8600dec0e62d5f804f41332b6197b255b6497360ba7e4b7f375cba", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/log.ts": "1330c01d489956c7530e2f2e2e60967f30c6b3a0c5c1d6c18d161ea2cf44fa0e", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/main.ts": "f390cfd2b5b836f1a54fa9ea7d8a5f5ba80430b6e849032145c0a7c0ae7216f3", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/Runtime.ts": "cc476f09f7d32d10dec3812a9a589da2866247e2064ce149ea2dc68fca833730", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/deno.ts": "c893dcf170b38547239d550080a856aca46a788de9922f282bbacf9b5841b5fe", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/deno/deno.ts": "bb0cdad8e785d43f6c59232e214fab82d43476acbcef740f561708b064bae172", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/deno/deno_messenger.ts": "81160c8a9c9817b46b52c4eee15cde880fb3f6b013c3b5110ee07a4c9c7f7a5e", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/deno/shared_types.ts": "34d56aa89c5a34e943a34b623b20d13ca54ab5466ea5313e0543da68b7aebcb1", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/deno/worker.ts": "ffeabab915301a666ac06b28989d5be4b29e600fb2932e25005ec1c9f48aac1d", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/graphql.ts": "5f0f4125367fd5fc43ccb2b8c9e8ba1f9c84348595e70e5ed9870e776d2efed3", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/grpc.ts": "92b2f5214ebe0f7b61e582faa67d6759641feaf788166a939ec6db8d819708da", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/http.ts": "f598a33aa3cafcf37a1f33d84c06bfd0ef5fd768f72837042c83ac6ae1d90762", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/kv.ts": "7d87409d8f93a4f684e1a0aabd020e5f3e559669fe3ca8efee9cd5045fde99dd", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/mod.ts": "26c06f1bff03255c20df97e1a109944b6fd2872acbb27aa97ab38b081fb19d7e", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/patterns/messenger/async_messenger.ts": "40644e011e3a258138ff1fb7a5323754a547016da9c1deb2114cfc471ee28bf0", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/patterns/messenger/lazy_async_messenger.ts": "b93d5e7252231d27d6b76ec4172d67cc23880b78411fb371d0cba2db712e2161", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma.ts": "e4b679c3b5e28a323d72bde5ebbcc113abe0efc8da82d70b3b2e390149c57d84", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/hooks/generate_schema.ts": "f55ffcb6fdfdfcb29eb5543ac23f89e224fc7e233f4ec598f7c5f44f05eefed2", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/hooks/mod.ts": "3e33752e3676b538c7016f3ddd4f1f49d75e217c410bcaa6319d33ed987d3c60", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/hooks/run_migrations.ts": "b94b09ecdc7d81ddcfd7596ae8cfb1ebbc8896d4c67207da627dcd79d19c658c", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/migration.ts": "f501540557b13a32f7b57e5a87f4ae1794cdd95214a49b34a429d7a33a96d5d8", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/mod.ts": "a0e44e86a45aad8b2bb0357ddbe8ba02802e6979451553940ec3688be571127f", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/prisma.ts": "bc370cfcb0f2aad520b8d2fd082e18dad5d41386225b50c9ce577b6c45df55b3", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/prisma/types.ts": "b4912f164aa8cdb1db3a98238a0271882864ff2778c10920dd7f0f3d59165dd6", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/python.ts": "77e7f683830962365ce7ce0af5fc5d326e11bc9751ab33d7add16d27feb32633", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/random.ts": "e7651e262ef5857e777ad46877c66f9098a2dfe774c13720a4cd38be327b53ff", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/s3.ts": "d7a0372faf555180bd4326550c1c6a07b156d3c5f0bbbcf9c0f6eb4b0f2bfff1", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/substantial.ts": "175644d75911d09919c06577bfa86239b3a44b1217664035551ff0989e22882a", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/substantial/agent.ts": "223288cb3d7baa02fa2d4e37207da7fa69cf4f16eb04ed7810d3e91ac725615b", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/substantial/types.ts": "8255ea84c5129ffc049d6fa88ad57eadf298d420ff11782c43eae9d2031efed1", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/substantial/workflow_worker_manager.ts": "589611456b82df0637db5f63af0881a459747d7c8963684bdcde291af13515cd", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/temporal.ts": "fef8a8f70d3f75957a5a741c275abea96cc492722784ea4aadffd9fce9cbff3f", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/typegate.ts": "52d49471d2682c1be323b53e4cca9866f2babb93708a855daa8c471ba4174b64", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/typegraph.ts": "e5808e5a20080fc260e54113e5941e5dffaeead5e3b7448dc17a48031d4799cf", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/utils/graphql_forward_vars.ts": "f0bb091aadd191eb1491dd86b7abd311ab60e09f532d226c8328b2cfa6025d9e", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/utils/graphql_inline_vars.ts": "9c3c339ee596c93cf65cda696d756c9ef08d34b78e4136472e27a92f2254ec8a", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/utils/http.ts": "842af99040fd0e3456690f7674311da3a0b9ea64c608d7bc588df1ab28f163a3", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/wasm_reflected.ts": "99d59cdd0c4b228c42ac90099036ecf5d2e14d6758916b27e4017d53b69cf481", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/wasm_wire.ts": "d10c891f12c9521bcd1a7e1cb459f642a5f4e0936f25f4e04174141691ba06d1", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/runtimes/wit_wire/mod.ts": "78ff89ee3972aafd73be8965e1f682b5877c9d1fc4ec2bce0db09f7bc13a0252", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/artifact_service.ts": "282a9a6c3d89afc8955aabab6b3b242edccba664f5f41558e9c9b07d43dd8d13", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/cookies.ts": "ee17535cb19eab884732cefcdc46e63a2905041d5b5942e9ad6783c50a1f8624", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/mod.ts": "5b15823ec19cec1c985a77d525ee2e9e5c5aa367f5e24c96e305e485b6c633a9", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/protocols/basic.ts": "3c233ae1ccd0d3a8ff47a32c74682921abaf84e0de7c096f220f63b05756fc58", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/protocols/internal.ts": "7a9173406fbc1b885e08dd74a8dd34f168de2f1e9bedef4cdd88dad613e59166", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/protocols/jwt.ts": "e39249df7c2d088da07af1ccf5e97815addb46a994469efd4a335f6ae8618bc5", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/protocols/oauth2.ts": "7172cc6da5ecba71775bbc2d467d52d1f78505204e55452170f35004923b847b", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/protocols/protocol.ts": "158c55618be6165a9ee393ccd1a9da267b084ff04df7e627af1e4fc8fe636644", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/routes/mod.ts": "8fe85c16feb3da7086d3d6fd19a4579585b632893f3534c533c60aed84b9413a", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/routes/take.ts": "bc343c5d34870aeeaf9b0cc9473ba18fe7b324a23a630a57c9fd41eea4418a46", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/auth/routes/validate.ts": "56e52bb6d1660735683bdd398a86936f24ad8a00e402b7d88790867ad559e476", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/graphql_service.ts": "458e3cedcd22a44e166e531bcac4c65972916d81f3776c8161b2440ad212626f", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/info_service.ts": "a9a1f6ebdcbe64d55806597b879dd5714c32b8b861bed695a944f5e2f1213beb", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/middlewares.ts": "8af6277ce67c940564538f4def8e6567b5783b51f7c5f38c902736d620ffe405", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/playground_service.ts": "2cc8689899be7c31ad6c2e9c2c5adde0c6cc1f1442b27a55e8ead830e867dbe5", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/responses.ts": "5c45923c1374aab1ac8dd5b1a09ae69062ab34a448f8e92630678a236e38b2ba", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/services/rest_service.ts": "ae6ffdbddaccdbc7ed11dfb86511f2917332dcf5ae22ed814e1059e640ff7b08", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/sync/replicated_map.ts": "6b94fb884ce81d7e17572ae0abbeb91ceadb31f9356c4e9255982a00edcfe729", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/sync/typegraph.ts": "78120bc4d35e728ed86a98781c5d60996050fa8b35fa91f563c3c8b2a964b5dd", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/system_typegraphs.ts": "51299d60c1bb75b3e74998eb77bdf1680ee9d4a2f29a267d3ca90b2867c577fb", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/graphql/gq.ts": "78435e53ec1c5b7aec29364c051eb8f10802714050d24ee68a65e1e263495d7d", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/graphql/graphql.ts": "9f4aa79276e05acc6020da2a18472a1cc54c0ecf42efcbf017d67a88b0b90af2", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/graphql/request_parser.ts": "afbc95debcb1bbfa6fc2b88937d7abedbed1f4335bb2d17bf98c7293761cfdb0", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/graphql/typegraph.ts": "fc0ba3f62e1dd687a0545adb1dbaf7185176e0f1e938bfdd29cfef7f85951635", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/graphql/utils.ts": "d09147add80f5e53a643ed3126ee8675a1655480728311de2def04ffe6262a4b", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/transports/rest/rest_schema_generator.ts": "c776e83c6a55e9bee3ec72c36c1d771b3ca711e4086b3728e4983ab866472624", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/artifacts/local.ts": "d36ece0f53a56922744dd4d3e170101466b3816ba136f9574e799880e27d1a4b", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/artifacts/mod.ts": "fc931ffd49dc168da12882acf1055d3252e0cb3b666928e67d08d2a6c5be3447", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/artifacts/shared.ts": "5061a07eb880e33c1543e7397e945d50b476ed51d81fc01d109c53295f089131", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/hooks.ts": "ea97c08285388300802676d03dbc06caadf060093736abce07ef8f99a60e9a04", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/memory_register.ts": "6eab24914a941f85c233037013dc13749d8b689c5f9ffb38600df4c7b00a94f0", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/mod.ts": "d9f10b53a40192863a431c6be541effb4fd3c012ed8a716712d5176eba8c884a", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/no_limiter.ts": "1e98610a737bd74668f80b7014c64669a59a801355340eaa14411e07f4a8a94e", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/rate_limiter.ts": "b5718ab9e718314f11f5d88d84795bd0e61575856470793f1fe83d499f4a9d40", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegate/register.ts": "d7a8732386ad019d4dcee0372b6cab93bfc55e0146729842db2aaecf1411b15d", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/mod.ts": "27c917783dd8cf99d06290c0768e852ab348c3e989e47c77e648ffcc564b79fb", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/type_node.ts": "7f721cd5f6da2cbc7e66b804e0f81e0429aa2893e0a93244f9e66b39cb96b1a0", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/types.ts": "fc813b5f18e71b58e5f7904cd7fe3d6cae38b3c7055a8875042588c1561df160", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/utils.ts": "66fe8e1b5072f52ea2efebc5cf42001c3b858068b2d970ee3c8558032ff53103", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/versions.ts": "cdab4b07960f78c1f18511a8cc464a7e97c4c1fd15c6e8678c109483d3c26508", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraph/visitor.ts": "0fb0f89d92cb1654c1b010494a14c1aad88c7923102ea3e89866b232d3bcdf04", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraphs/introspection.json": "bbcf2c4233371c7f36052e5fe9e1cb1d18a46d3f31391cfcba2a3063c9141adb", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraphs/prisma_migration.json": "dfc346ff8fc2cef611c8f172b90e9d13eae6fed8b3dd65dea8631f9533159173", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/typegraphs/typegate.json": "bc0cbf4cd2c5de34410779994240993db4f1dd3d1eeda10b6045efdc37eb48a4", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/types.ts": "a36918c2bfab397edec906c23d2cd7558246337bb16fdf1ea4e353cffea5f2b4", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/utils.ts": "de1a17260e76607e1a8fd6d7384cbc21bb26e08f64bffc41d6508bf5a8359311", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/utils/hash.ts": "df6cf462c7a6a805b91dce9d3e7bbbd00ea3bfd8dcc973fb3e6c94e48e33d9b9", + "https://raw.githubusercontent.com/metatypedev/metatype/43faf1107eae75aacd3cb30d46ad0fba368eba7e/src/typegate/src/worker_utils.ts": "19f686d729b947ab3eb2f29e99ccd07578037a3bccced65fc0dce42d5338cd31", "https://raw.githubusercontent.com/metatypedev/metatype/54558c719cf3d491c396af019a50b68159c5209f/src/typegate/engine/bindings.ts": "4529b86703a1512302164bca346c29df2a246d0ebbf20248cc39ee9745490dc1", "https://raw.githubusercontent.com/metatypedev/metatype/54558c719cf3d491c396af019a50b68159c5209f/src/typegate/engine/runtime.js": "1ae55e76d3de8e79c37054d9127c92af496ce10aa905ea64021893048bb33794", "https://raw.githubusercontent.com/metatypedev/metatype/54558c719cf3d491c396af019a50b68159c5209f/src/typegate/src/config.ts": "63ea402f9a993888a9e3ec88d35112186f8f13bcd3a5fe358e69e0bb603311a5", diff --git a/examples/templates/deno/api/example.ts b/examples/templates/deno/api/example.ts index f852c3fab4..65ca612621 100644 --- a/examples/templates/deno/api/example.ts +++ b/examples/templates/deno/api/example.ts @@ -1,6 +1,6 @@ -import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.0-rc.4/index.ts"; -import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.4/runtimes/python.ts"; -import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.4/runtimes/deno.ts"; +import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.0-rc.5/index.ts"; +import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.5/runtimes/python.ts"; +import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.5/runtimes/deno.ts"; await typegraph("example", (g) => { const pub = Policy.public(); diff --git a/examples/templates/deno/compose.yml b/examples/templates/deno/compose.yml index 82d20d6cc6..32eaab03f6 100644 --- a/examples/templates/deno/compose.yml +++ b/examples/templates/deno/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.4 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/compose.yml b/examples/templates/node/compose.yml index 77c4f00ae7..1814897da9 100644 --- a/examples/templates/node/compose.yml +++ b/examples/templates/node/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.4 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/package.json b/examples/templates/node/package.json index 617098c32d..8fd1ab330a 100644 --- a/examples/templates/node/package.json +++ b/examples/templates/node/package.json @@ -6,7 +6,7 @@ "dev": "MCLI_LOADER_CMD='npm x tsx' meta dev" }, "dependencies": { - "@typegraph/sdk": "^0.5.0-rc.4" + "@typegraph/sdk": "^0.5.0-rc.5" }, "devDependencies": { "tsx": "^3.13.0", diff --git a/examples/templates/python/compose.yml b/examples/templates/python/compose.yml index 77c4f00ae7..1814897da9 100644 --- a/examples/templates/python/compose.yml +++ b/examples/templates/python/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.4 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 restart: always ports: - "7890:7890" diff --git a/examples/templates/python/pyproject.toml b/examples/templates/python/pyproject.toml index a801a8b75a..4f7581522c 100644 --- a/examples/templates/python/pyproject.toml +++ b/examples/templates/python/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "example" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" description = "" authors = [] [tool.poetry.dependencies] python = ">=3.8,<4.0" -typegraph = "0.5.0-rc.4" +typegraph = "0.5.0-rc.5" [build-system] requires = ["poetry-core"] diff --git a/pyproject.toml b/pyproject.toml index b10c72007d..3fe6894989 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ [tool.poetry] name = "metatype" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" description = "" authors = [] diff --git a/src/meta-lsp/package.json b/src/meta-lsp/package.json index f088c8b096..6d5daf839f 100644 --- a/src/meta-lsp/package.json +++ b/src/meta-lsp/package.json @@ -4,7 +4,7 @@ "description": "VSCode extension for Metatype support", "icon": "logo.png", "author": "Metatype Team", - "version": "0.5.0-rc.4", + "version": "0.5.0-rc.5", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/meta-lsp/ts-language-server/package.json b/src/meta-lsp/ts-language-server/package.json index 31c733135b..e3f80f4774 100644 --- a/src/meta-lsp/ts-language-server/package.json +++ b/src/meta-lsp/ts-language-server/package.json @@ -2,7 +2,7 @@ "name": "typegraph-ts-server", "description": "TypeScript language server for TypeGraph", "author": "Metatype Team", - "version": "0.5.0-rc.4", + "version": "0.5.0-rc.5", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/meta-lsp/vscode-metatype-support/package.json b/src/meta-lsp/vscode-metatype-support/package.json index 9b7f735336..a8cf018d26 100644 --- a/src/meta-lsp/vscode-metatype-support/package.json +++ b/src/meta-lsp/vscode-metatype-support/package.json @@ -2,7 +2,7 @@ "name": "vscode-metatype-support", "description": "VSCode extension for Metatype support", "author": "Metatype Team", - "version": "0.5.0-rc.4", + "version": "0.5.0-rc.5", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/pyrt_wit_wire/pyproject.toml b/src/pyrt_wit_wire/pyproject.toml index d25807c3c0..429c6d1d1c 100644 --- a/src/pyrt_wit_wire/pyproject.toml +++ b/src/pyrt_wit_wire/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrt_wit_wire" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" description = "Wasm component implementing the PythonRuntime host using wit_wire protocol." license = "MPL-2.0" readme = "README.md" diff --git a/src/typegate/src/runtimes/substantial.ts b/src/typegate/src/runtimes/substantial.ts index 8d294555a3..3f4ac726f2 100644 --- a/src/typegate/src/runtimes/substantial.ts +++ b/src/typegate/src/runtimes/substantial.ts @@ -15,12 +15,11 @@ import { Backend } from "../../engine/runtime.js"; import { Agent, AgentConfig, + type StdKwargs, WorkflowDescription, } from "./substantial/agent.ts"; import { closestWord } from "../utils.ts"; import { InternalAuth } from "../services/auth/protocols/internal.ts"; -import { TaskContext } from "./deno/shared_types.ts"; -import { globalConfig } from "../config.ts"; const logger = getLogger(import.meta); @@ -68,6 +67,7 @@ export class SubstantialRuntime extends Runtime { queue: string, agent: Agent, typegate: Typegate, + private secrets: Record, ) { super(typegraphName); this.logger = getLogger(`substantial:'${typegraphName}'`); @@ -112,20 +112,7 @@ export class SubstantialRuntime extends Runtime { maxAcquirePerTick: typegate.config.base.substantial_max_acquire_per_tick, } satisfies AgentConfig; - // Note: required for ctx.gql() - const token = await InternalAuth.emit(typegate.cryptoKeys); - const internalTCtx = { - context: {}, - secrets: {}, - effect: null, - meta: { - url: `http://127.0.0.1:${globalConfig.tg_port}/${tgName}`, - token, - }, - headers: {}, - } satisfies TaskContext; - - const agent = new Agent(backend, queue, agentConfig, internalTCtx); + const agent = new Agent(backend, queue, agentConfig); const wfDescriptions = await getWorkflowDescriptions( tgName, @@ -144,6 +131,7 @@ export class SubstantialRuntime extends Runtime { queue, agent, typegate, + secrets, ); await instance.#prepareWorkflowFiles( tg.meta.artifacts, @@ -211,9 +199,9 @@ export class SubstantialRuntime extends Runtime { switch (matName) { case "start": - return this.#startResolver(false); + return this.#startResolver(mat, false); case "start_raw": - return this.#startResolver(true); + return this.#startResolver(mat, true); case "stop": return this.#stopResolver(); case "send": @@ -240,13 +228,41 @@ export class SubstantialRuntime extends Runtime { } } - #startResolver(enableGenerics: boolean): Resolver { - return async ({ name: workflowName, kwargs }) => { + #startResolver(mat: TypeMaterializer, enableGenerics: boolean): Resolver { + const secrets = ((mat.data.secrets as []) ?? []).reduce( + (agg, secretName) => ({ ...agg, [secretName]: this.secrets[secretName] }), + {}, + ); + return async ({ + name: workflowName, + kwargs, + _: { + context, + parent, + info: { url, headers }, + }, + }) => { this.#checkWorkflowExistOrThrow(workflowName); const runId = Agent.nextId(workflowName); const schedule = new Date().toJSON(); + const token = await InternalAuth.emit(this.typegate.cryptoKeys); + const stdKwargs = { + kwargs: enableGenerics ? JSON.parse(kwargs) : kwargs, + taskContext: { + parent, + context, + secrets, + effect: mat.effect.effect ?? null, + meta: { + url: `${url.protocol}//${url.host}/${this.typegraphName}`, + token, + }, + headers, + }, + } satisfies StdKwargs; + logger.info( `Start request "${workflowName}" received: new run "${runId}" should be scheduled.`, ); @@ -259,7 +275,7 @@ export class SubstantialRuntime extends Runtime { at: schedule, event: { type: "Start", - kwargs: enableGenerics ? JSON.parse(kwargs) : kwargs, + kwargs: stdKwargs, }, }, }); diff --git a/src/typegate/src/runtimes/substantial/agent.ts b/src/typegate/src/runtimes/substantial/agent.ts index 709d29faa2..78439d637c 100644 --- a/src/typegate/src/runtimes/substantial/agent.ts +++ b/src/typegate/src/runtimes/substantial/agent.ts @@ -18,6 +18,11 @@ import { RunId, WorkerManager } from "./workflow_worker_manager.ts"; const logger = getLogger(); +export interface StdKwargs { + taskContext: TaskContext; + kwargs: Record; +} + export interface WorkflowDescription { name: string; path: string; @@ -39,7 +44,6 @@ export class Agent { private backend: Backend, private queue: string, private config: AgentConfig, - private internalTCtx: TaskContext, ) {} async schedule(input: AddScheduleInput) { @@ -247,6 +251,7 @@ export class Agent { return; } + const { taskContext, kwargs } = first.event.kwargs as unknown as StdKwargs; try { this.workerManager.triggerStart( workflow.name, @@ -254,8 +259,8 @@ export class Agent { workflow.path, run, next.schedule_date, - first.event.kwargs, - this.internalTCtx, + kwargs, + taskContext, ); this.workerManager.listen( diff --git a/src/typegate/src/runtimes/substantial/deno_context.ts b/src/typegate/src/runtimes/substantial/deno_context.ts index 03e73edb5f..32b85f66b3 100644 --- a/src/typegate/src/runtimes/substantial/deno_context.ts +++ b/src/typegate/src/runtimes/substantial/deno_context.ts @@ -1,9 +1,6 @@ // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 -// FIXME: DO NOT IMPORT any file that refers to Meta, this will be instantiated in a Worker -// import { sleep } from "../../utils.ts"; // will silently fail?? - import { make_internal } from "../../worker_utils.ts"; import { TaskContext } from "../deno/shared_types.ts"; import { appendIfOngoing, Interrupt, OperationEvent, Run } from "./types.ts"; diff --git a/src/typegate/src/runtimes/substantial/worker.ts b/src/typegate/src/runtimes/substantial/worker.ts index bff137738a..61f7a5dec5 100644 --- a/src/typegate/src/runtimes/substantial/worker.ts +++ b/src/typegate/src/runtimes/substantial/worker.ts @@ -28,7 +28,7 @@ self.onmessage = async function (event) { runCtx = new Context(run, kwargs, internal); - workflowFn(runCtx) + workflowFn(runCtx, internal) .then((wfResult: unknown) => { self.postMessage( Ok( diff --git a/src/typegate/src/runtimes/wit_wire/mod.ts b/src/typegate/src/runtimes/wit_wire/mod.ts index c0984b51fb..0270fd2214 100644 --- a/src/typegate/src/runtimes/wit_wire/mod.ts +++ b/src/typegate/src/runtimes/wit_wire/mod.ts @@ -9,7 +9,7 @@ import { getLogger } from "../../log.ts"; const logger = getLogger(import.meta); -const METATYPE_VERSION = "0.5.0-rc.4"; +const METATYPE_VERSION = "0.5.0-rc.5"; export class WitWireMessenger { static async init( diff --git a/src/typegraph/core/Cargo.toml b/src/typegraph/core/Cargo.toml index 2fd6f83b36..6752ff48f0 100644 --- a/src/typegraph/core/Cargo.toml +++ b/src/typegraph/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typegraph_core" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" edition = "2021" [lib] diff --git a/src/typegraph/core/src/global_store.rs b/src/typegraph/core/src/global_store.rs index 118b5ac8ca..dd31e9f310 100644 --- a/src/typegraph/core/src/global_store.rs +++ b/src/typegraph/core/src/global_store.rs @@ -107,7 +107,7 @@ const PREDEFINED_DENO_FUNCTIONS: &[&str] = &["identity", "true"]; thread_local! { pub static STORE: RefCell = RefCell::new(Store::new()); - pub static SDK_VERSION: String = "0.5.0-rc.4".to_owned(); + pub static SDK_VERSION: String = "0.5.0-rc.5".to_owned(); } fn with_store T>(f: F) -> T { diff --git a/src/typegraph/core/src/lib.rs b/src/typegraph/core/src/lib.rs index f44c45e921..e13e0db35c 100644 --- a/src/typegraph/core/src/lib.rs +++ b/src/typegraph/core/src/lib.rs @@ -42,6 +42,7 @@ use wit::runtimes::{Guest, MaterializerDenoFunc}; pub mod wit { wit_bindgen::generate!({ + world: "typegraph" }); use crate::Lib; diff --git a/src/typegraph/core/src/runtimes/substantial.rs b/src/typegraph/core/src/runtimes/substantial.rs index 552cd78f85..23a8245538 100644 --- a/src/typegraph/core/src/runtimes/substantial.rs +++ b/src/typegraph/core/src/runtimes/substantial.rs @@ -10,15 +10,14 @@ use crate::types::WithRuntimeConfig; use crate::wit::core::FuncParams; use crate::wit::{ core::RuntimeId, runtimes::Effect as WitEffect, runtimes::SubstantialOperationData, - runtimes::SubstantialOperationType, }; use common::typegraph::Materializer; use serde_json::json; #[derive(Debug)] pub enum SubstantialMaterializer { - Start, - StartRaw, + Start { secrets: Vec }, + StartRaw { secrets: Vec }, Stop, Send, SendRaw, @@ -38,8 +37,15 @@ impl MaterializerConverter for SubstantialMaterializer { let runtime = c.register_runtime(runtime_id)?; let (name, data) = match self { - SubstantialMaterializer::Start => ("start".to_string(), json!({})), - SubstantialMaterializer::StartRaw => ("start_raw".to_string(), json!({})), + SubstantialMaterializer::Start { secrets } => { + ("start".to_string(), json!({ "secrets":secrets })) + } + SubstantialMaterializer::StartRaw { secrets } => ( + "start_raw".to_string(), + json!({ + "secrets": secrets + }), + ), SubstantialMaterializer::Stop => ("stop".to_string(), json!({})), SubstantialMaterializer::Send => ("send".to_string(), json!({})), SubstantialMaterializer::SendRaw => ("send_raw".to_string(), json!({})), @@ -65,23 +71,37 @@ pub fn substantial_operation( data: SubstantialOperationData, ) -> Result { let mut inp = t::struct_(); - let (effect, mat_data, out_ty) = match data.operation { - SubstantialOperationType::Start | SubstantialOperationType::StartRaw => { - let (mat, flag) = match data.operation { - SubstantialOperationType::Start => (SubstantialMaterializer::Start, true), - SubstantialOperationType::StartRaw => (SubstantialMaterializer::StartRaw, false), - _ => unreachable!(), - }; - + let (effect, mat_data, out_ty) = match data { + SubstantialOperationData::Start(data) => { inp.prop("name", t::string().build()?); inp.prop( "kwargs", - use_arg_or_json_string(data.func_arg, flag)?.into(), + data.func_arg + .ok_or("input or output shape is not defined on the typegraph".to_string())? + .into(), ); - (WitEffect::Create(true), mat, t::string().build()?) + ( + WitEffect::Create(true), + SubstantialMaterializer::Start { + secrets: data.secrets, + }, + t::string().build()?, + ) + } + SubstantialOperationData::StartRaw(data) => { + inp.prop("name", t::string().build()?); + inp.prop("kwargs", t_json_string()?.into()); + + ( + WitEffect::Create(true), + SubstantialMaterializer::StartRaw { + secrets: data.secrets, + }, + t::string().build()?, + ) } - SubstantialOperationType::Stop => { + SubstantialOperationData::Stop => { inp.prop("run_id", t::string().build()?); ( @@ -90,27 +110,37 @@ pub fn substantial_operation( t::list(t::string().build()?).build()?, ) } - SubstantialOperationType::Send | SubstantialOperationType::SendRaw => { - let (mat, flag) = match data.operation { - SubstantialOperationType::Send => (SubstantialMaterializer::Send, true), - SubstantialOperationType::SendRaw => (SubstantialMaterializer::SendRaw, false), - _ => unreachable!(), - }; + SubstantialOperationData::Send(data) => { + let event = t::struct_() + .prop("name", t::string().build()?) + .prop("payload", data.into()) + .build()?; + + inp.prop("run_id", t::string().build()?); + inp.prop("event", event); + ( + WitEffect::Create(false), + SubstantialMaterializer::Send, + t::string().build()?, + ) + } + SubstantialOperationData::SendRaw => { let event = t::struct_() .prop("name", t::string().build()?) - .prop( - "payload", - use_arg_or_json_string(data.func_arg, flag)?.into(), - ) + .prop("payload", t_json_string()?.into()) .build()?; inp.prop("run_id", t::string().build()?); inp.prop("event", event); - (WitEffect::Create(false), mat, t::string().build()?) + ( + WitEffect::Create(false), + SubstantialMaterializer::SendRaw, + t::string().build()?, + ) } - SubstantialOperationType::Resources => { + SubstantialOperationData::Resources => { inp.prop("name", t::string().build()?); let row = t::struct_() @@ -129,65 +159,23 @@ pub fn substantial_operation( (WitEffect::Read, SubstantialMaterializer::Resources, out) } - SubstantialOperationType::Results | SubstantialOperationType::ResultsRaw => { - let (mat, flag) = match data.operation { - SubstantialOperationType::Results => (SubstantialMaterializer::Results, true), - SubstantialOperationType::ResultsRaw => { - (SubstantialMaterializer::ResultsRaw, false) - } - _ => unreachable!(), - }; - + SubstantialOperationData::Results(data) => { inp.prop("name", t::string().build()?); - let out = use_arg_or_json_string(data.func_out, flag)?; - - let count = t::integer().build()?; - - let result = t::struct_() - .prop("status", t::string().build()?) - .prop("value", t::optional(out.into()).build()?) - .build()?; - - let ongoing_runs = t::list( - t::struct_() - .prop("run_id", t::string().build()?) - .prop("started_at", t::string().build()?) - .build()?, - ) - .build()?; - - let completed_runs = t::list( - t::struct_() - .prop("run_id", t::string().build()?) - .prop("started_at", t::string().build()?) - .prop("ended_at", t::string().build()?) - .prop("result", result) - .build()?, + ( + WitEffect::Read, + SubstantialMaterializer::Results, + results_op_results_ty(data)?, ) - .build()?; - + } + SubstantialOperationData::ResultsRaw => { + inp.prop("name", t::string().build()?); ( WitEffect::Read, - mat, - t::struct_() - .prop( - "ongoing", - t::struct_() - .prop("count", count) - .prop("runs", ongoing_runs) - .build()?, - ) - .prop( - "completed", - t::struct_() - .prop("count", count) - .prop("runs", completed_runs) - .build()?, - ) - .build()?, + SubstantialMaterializer::ResultsRaw, + results_op_results_ty(t_json_string()?)?, ) } - SubstantialOperationType::InternalLinkParentChild => { + SubstantialOperationData::InternalLinkParentChild => { inp.prop("parent_run_id", t::string().build()?); inp.prop("child_run_id", t::string().build()?); @@ -208,12 +196,7 @@ pub fn substantial_operation( }) } -fn use_arg_or_json_string(arg: Option, flag: bool) -> Result { - if flag { - let arg = arg.ok_or("input or output shape is not defined on the typegraph".to_string())?; - return Ok(arg); - }; - +fn t_json_string() -> Result { t::string() .build() .and_then(|r| { @@ -223,3 +206,47 @@ fn use_arg_or_json_string(arg: Option, flag: bool) -> Result { }) .map(|r| r.id().into()) } + +fn results_op_results_ty(out: u32) -> Result { + let count = t::integer().build()?; + + let result = t::struct_() + .prop("status", t::string().build()?) + .prop("value", t::optional(out.into()).build()?) + .build()?; + + let ongoing_runs = t::list( + t::struct_() + .prop("run_id", t::string().build()?) + .prop("started_at", t::string().build()?) + .build()?, + ) + .build()?; + + let completed_runs = t::list( + t::struct_() + .prop("run_id", t::string().build()?) + .prop("started_at", t::string().build()?) + .prop("ended_at", t::string().build()?) + .prop("result", result) + .build()?, + ) + .build()?; + + t::struct_() + .prop( + "ongoing", + t::struct_() + .prop("count", count) + .prop("runs", ongoing_runs) + .build()?, + ) + .prop( + "completed", + t::struct_() + .prop("count", count) + .prop("runs", completed_runs) + .build()?, + ) + .build() +} diff --git a/src/typegraph/core/wit/typegraph.wit b/src/typegraph/core/wit/typegraph.wit index 611fe47393..19ff85ccfa 100644 --- a/src/typegraph/core/wit/typegraph.wit +++ b/src/typegraph/core/wit/typegraph.wit @@ -514,24 +514,25 @@ interface runtimes { file-descriptions: list } - variant substantial-operation-type { - start, - start-raw, + record substantial-start-data { + func-arg: option, + secrets: list, + } + + variant substantial-operation-data { + start(substantial-start-data), + start-raw(substantial-start-data), stop, - send, + // type of send value + send(type-id), send-raw, resources, - results, + // type of result + results(type-id), results-raw, internal-link-parent-child } - record substantial-operation-data { - func-arg: option, - func-out: option, - operation: substantial-operation-type, - } - register-substantial-runtime: func(data: substantial-runtime-data) -> result; generate-substantial-operation: func(runtime: runtime-id, data: substantial-operation-data) -> result; diff --git a/src/typegraph/deno/deno.json b/src/typegraph/deno/deno.json index c63181d72d..99d2a8b2d9 100644 --- a/src/typegraph/deno/deno.json +++ b/src/typegraph/deno/deno.json @@ -1,6 +1,6 @@ { "name": "@typegraph/sdk", - "version": "0.5.0-rc.4", + "version": "0.5.0-rc.5", "publish": { "exclude": [ "!src/gen", diff --git a/src/typegraph/deno/src/runtimes/substantial.ts b/src/typegraph/deno/src/runtimes/substantial.ts index 63687739c5..7e9c81f858 100644 --- a/src/typegraph/deno/src/runtimes/substantial.ts +++ b/src/typegraph/deno/src/runtimes/substantial.ts @@ -7,28 +7,12 @@ import { Func, type Typedef } from "../types.ts"; import type { SubstantialBackend, SubstantialOperationData, - SubstantialOperationType, WorkflowFileDescription, WorkflowKind, } from "../gen/typegraph_core.d.ts"; -export class Backend { - static devMemory(): SubstantialBackend { - return { tag: "memory" }; - } - - static devFs(): SubstantialBackend { - return { tag: "fs" }; - } - - static redis(connectionStringSecret: string): SubstantialBackend { - return { - tag: "redis", - val: { - connectionStringSecret, - }, - }; - } +interface StartFunc { + secrets?: string[]; } export class SubstantialRuntime extends Runtime { @@ -47,31 +31,30 @@ export class SubstantialRuntime extends Runtime { } _genericSubstantialFunc( - operation: SubstantialOperationType, - funcArg?: Typedef, - funcOut?: Typedef, + data: SubstantialOperationData, ): Func { - const data = { - funcArg: funcArg?._id, - funcOut: funcOut?._id, - operation, - } as SubstantialOperationData; const funcData = runtimes.generateSubstantialOperation(this._id, data); return Func.fromTypeFunc(funcData); } - start(kwargs: Typedef): Func { + start( + kwargs: Typedef, + { secrets }: StartFunc = {}, + ): Func { return this._genericSubstantialFunc( { tag: "start", + val: { secrets: secrets ?? [], funcArg: kwargs._id }, }, - kwargs, ); } - startRaw(): Func { + startRaw( + { secrets }: StartFunc = {}, + ): Func { return this._genericSubstantialFunc({ tag: "start-raw", + val: { secrets: secrets ?? [] }, }); } @@ -85,8 +68,8 @@ export class SubstantialRuntime extends Runtime { return this._genericSubstantialFunc( { tag: "send", + val: payload._id, }, - payload, ); } @@ -106,9 +89,8 @@ export class SubstantialRuntime extends Runtime { return this._genericSubstantialFunc( { tag: "results", + val: output._id, }, - undefined, - output, ); } @@ -135,6 +117,25 @@ export class SubstantialRuntime extends Runtime { } } +export class Backend { + static devMemory(): SubstantialBackend { + return { tag: "memory" }; + } + + static devFs(): SubstantialBackend { + return { tag: "fs" }; + } + + static redis(connectionStringSecret: string): SubstantialBackend { + return { + tag: "redis", + val: { + connectionStringSecret, + }, + }; + } +} + export class WorkflowFile { private workflows: Array = []; diff --git a/src/typegraph/python/pyproject.toml b/src/typegraph/python/pyproject.toml index bdddb1e818..bc4c252bd3 100644 --- a/src/typegraph/python/pyproject.toml +++ b/src/typegraph/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typegraph" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are." authors = ["Metatype Contributors "] license = "MPL-2.0" diff --git a/src/typegraph/python/typegraph/__init__.py b/src/typegraph/python/typegraph/__init__.py index b73ccef9b1..ef07c55fd5 100644 --- a/src/typegraph/python/typegraph/__init__.py +++ b/src/typegraph/python/typegraph/__init__.py @@ -5,4 +5,4 @@ from typegraph.policy import Policy # noqa from typegraph import effects as fx # noqa -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" diff --git a/src/typegraph/python/typegraph/graph/tg_deploy.py b/src/typegraph/python/typegraph/graph/tg_deploy.py index e5fbdc6afe..af5d01e311 100644 --- a/src/typegraph/python/typegraph/graph/tg_deploy.py +++ b/src/typegraph/python/typegraph/graph/tg_deploy.py @@ -126,17 +126,17 @@ def tg_deploy(tg: TypegraphOutput, params: TypegraphDeployParams) -> DeployResul response = response.read().decode() response = handle_response(response) - if response.get("errors") is not None: - for err in response.errors: - Log.error(err.message) + if "errors" in response: + for err in response["errors"]: + Log.error(err["message"]) raise Exception(f"failed to deploy typegraph {tg.name}") add_typegraph = response.get("data").get("addTypegraph") """ # FIXME: read comments in similar section of typescript - if add_typegraph.get("failure") is not None: - Log.error(add_typegraph.failure) + if "failure" in add_typegraph: + Log.error(add_typegraph["failure"]) raise Exception(f"failed to deploy typegraph {tg.name}") """ return DeployResult(serialized=tg_json, response=add_typegraph) diff --git a/src/typegraph/python/typegraph/runtimes/deno.py b/src/typegraph/python/typegraph/runtimes/deno.py index 99a9c7e51d..58657df4a9 100644 --- a/src/typegraph/python/typegraph/runtimes/deno.py +++ b/src/typegraph/python/typegraph/runtimes/deno.py @@ -159,7 +159,7 @@ def import_policy( res = runtimes.import_deno_function( store, MaterializerDenoImport( - func_name=func_name, module=module, secrets=secrets or [] + func_name=func_name, module=module, secrets=secrets or [], deps=[] ), EffectRead(), ) diff --git a/src/typegraph/python/typegraph/runtimes/substantial.py b/src/typegraph/python/typegraph/runtimes/substantial.py index 836d35ccdd..f0cb7a80c6 100644 --- a/src/typegraph/python/typegraph/runtimes/substantial.py +++ b/src/typegraph/python/typegraph/runtimes/substantial.py @@ -1,7 +1,7 @@ # Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. # SPDX-License-Identifier: MPL-2.0 -from typing import List, Union +from typing import List, Optional from typegraph import t from typegraph.gen.exports.runtimes import ( RedisBackend, @@ -10,17 +10,17 @@ SubstantialBackendMemory, SubstantialBackendRedis, SubstantialOperationData, - SubstantialOperationType, - SubstantialOperationTypeSend, - SubstantialOperationTypeSendRaw, - SubstantialOperationTypeStart, - SubstantialOperationTypeStartRaw, - SubstantialOperationTypeStop, - SubstantialOperationTypeResources, - SubstantialOperationTypeResults, - SubstantialOperationTypeResultsRaw, - SubstantialOperationTypeInternalLinkParentChild, + SubstantialOperationDataInternalLinkParentChild, + SubstantialOperationDataResources, + SubstantialOperationDataResults, + SubstantialOperationDataResultsRaw, + SubstantialOperationDataSend, + SubstantialOperationDataSendRaw, + SubstantialOperationDataStart, + SubstantialOperationDataStartRaw, + SubstantialOperationDataStop, SubstantialRuntimeData, + SubstantialStartData, WorkflowFileDescription, WorkflowKind, ) @@ -29,17 +29,6 @@ from typegraph.wit import runtimes, store -class Backend: - def dev_memory(): - return SubstantialBackendMemory() - - def dev_fs(): - return SubstantialBackendFs() - - def redis(connection_string_secret: str): - return SubstantialBackendRedis(value=RedisBackend(connection_string_secret)) - - class SubstantialRuntime(Runtime): def __init__( self, @@ -47,62 +36,59 @@ def __init__( file_descriptions: List[WorkflowFileDescription], ): data = SubstantialRuntimeData(backend, file_descriptions) - super().__init__(runtimes.register_substantial_runtime(store, data)) + res = runtimes.register_substantial_runtime(store, data) + if isinstance(res, Err): + raise Exception(res.value) + super().__init__(res.value) self.backend = backend def _generic_substantial_func( self, - operation: SubstantialOperationType, - func_arg: Union[None, "t.typedef"] = None, - func_out: Union[None, "t.typedef"] = None, + data: SubstantialOperationData, ): - data = SubstantialOperationData( - func_arg=None if func_arg is None else func_arg._id, - func_out=None if func_out is None else func_out._id, - operation=operation, - ) - func_data = runtimes.generate_substantial_operation(store, self.id.value, data) + func_data = runtimes.generate_substantial_operation(store, self.id, data) if isinstance(func_data, Err): raise Exception(func_data.value) return t.func.from_type_func(func_data.value) - def start(self, kwargs: "t.struct"): - operation = SubstantialOperationTypeStart() - return self._generic_substantial_func(operation, kwargs, None) + def start(self, kwargs: "t.struct", *, secrets: Optional[List[str]] = None): + return self._generic_substantial_func( + SubstantialOperationDataStart( + SubstantialStartData(kwargs._id, secrets or []) + ) + ) - def start_raw(self): - operation = SubstantialOperationTypeStartRaw() - return self._generic_substantial_func(operation, None, None) + def start_raw(self, *, secrets: Optional[List[str]] = None): + return self._generic_substantial_func( + SubstantialOperationDataStartRaw(SubstantialStartData(None, secrets or [])) + ) def stop(self): - operation = SubstantialOperationTypeStop() - return self._generic_substantial_func(operation, None, None) + return self._generic_substantial_func(SubstantialOperationDataStop()) def send(self, payload: "t.typedef"): - operation = SubstantialOperationTypeSend() - return self._generic_substantial_func(operation, payload, None) + return self._generic_substantial_func(SubstantialOperationDataSend(payload._id)) def send_raw(self): - operation = SubstantialOperationTypeSendRaw() - return self._generic_substantial_func(operation, None, None) + return self._generic_substantial_func(SubstantialOperationDataSendRaw()) def query_resources(self): - operation = SubstantialOperationTypeResources() - return self._generic_substantial_func(operation, None, None) + return self._generic_substantial_func(SubstantialOperationDataResources()) def query_results(self, output: "t.typedef"): - operation = SubstantialOperationTypeResults() - return self._generic_substantial_func(operation, None, output) + return self._generic_substantial_func( + SubstantialOperationDataResults(output._id) + ) def query_results_raw(self): - operation = SubstantialOperationTypeResultsRaw() - return self._generic_substantial_func(operation, None, None) + return self._generic_substantial_func(SubstantialOperationDataResultsRaw()) def _internal_link_parent_child(self): - operation = SubstantialOperationTypeInternalLinkParentChild() - return self._generic_substantial_func(operation, None, None) + return self._generic_substantial_func( + SubstantialOperationDataInternalLinkParentChild() + ) def internals(self): return { @@ -114,6 +100,20 @@ def internals(self): } +class Backend: + @staticmethod + def dev_memory(): + return SubstantialBackendMemory() + + @staticmethod + def dev_fs(): + return SubstantialBackendFs() + + @staticmethod + def redis(connection_string_secret: str): + return SubstantialBackendRedis(value=RedisBackend(connection_string_secret)) + + class WorkflowFile: def __init__(self, file: str, kind: WorkflowKind, deps: List[str] = []): self.file = file diff --git a/src/xtask/Cargo.toml b/src/xtask/Cargo.toml index da75373dd1..a93a17451c 100644 --- a/src/xtask/Cargo.toml +++ b/src/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" edition = "2021" # this allows us to exclude the rust files diff --git a/tests/metagen/__snapshots__/metagen_test.ts.snap b/tests/metagen/__snapshots__/metagen_test.ts.snap index 63a65f5e2b..87775e9dbe 100644 --- a/tests/metagen/__snapshots__/metagen_test.ts.snap +++ b/tests/metagen/__snapshots__/metagen_test.ts.snap @@ -448,7 +448,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.4"; + static MT_VERSION: &str = "0.5.0-rc.5"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } @@ -1254,7 +1254,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.4"; + static MT_VERSION: &str = "0.5.0-rc.5"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } diff --git a/tests/metagen/typegraphs/sample/py/client.py b/tests/metagen/typegraphs/sample/py/client.py index 10a2eb34dc..935d695e9a 100644 --- a/tests/metagen/typegraphs/sample/py/client.py +++ b/tests/metagen/typegraphs/sample/py/client.py @@ -608,7 +608,7 @@ class NodeDescs: @staticmethod def scalar(): return NodeMeta() - + @staticmethod def Post(): return NodeMeta( @@ -736,29 +736,42 @@ def RootMixedUnionFn(): }, ) + UserIdStringUuid = str PostSlugString = str -Post = typing.TypedDict("Post", { - "id": UserIdStringUuid, - "slug": PostSlugString, - "title": PostSlugString, -}, total=False) - -RootCompositeArgsFnInput = typing.TypedDict("RootCompositeArgsFnInput", { - "id": PostSlugString, -}, total=False) +Post = typing.TypedDict( + "Post", + { + "id": UserIdStringUuid, + "slug": PostSlugString, + "title": PostSlugString, + }, + total=False, +) + +RootCompositeArgsFnInput = typing.TypedDict( + "RootCompositeArgsFnInput", + { + "id": PostSlugString, + }, + total=False, +) UserEmailStringEmail = str UserPostsPostList = typing.List[Post] -User = typing.TypedDict("User", { - "id": UserIdStringUuid, - "email": UserEmailStringEmail, - "posts": UserPostsPostList, -}, total=False) +User = typing.TypedDict( + "User", + { + "id": UserIdStringUuid, + "email": UserEmailStringEmail, + "posts": UserPostsPostList, + }, + total=False, +) RootScalarUnionFnOutputT1Integer = int @@ -782,111 +795,140 @@ def RootMixedUnionFn(): ] - -PostSelections = typing.TypedDict("PostSelections", { - "_": SelectionFlags, - "id": ScalarSelectNoArgs, - "slug": ScalarSelectNoArgs, - "title": ScalarSelectNoArgs, -}, total=False) - -UserSelections = typing.TypedDict("UserSelections", { - "_": SelectionFlags, - "id": ScalarSelectNoArgs, - "email": ScalarSelectNoArgs, - "posts": CompositeSelectNoArgs["PostSelections"], -}, total=False) - -RootCompositeUnionFnOutputSelections = typing.TypedDict("RootCompositeUnionFnOutputSelections", { - "_": SelectionFlags, - "post": CompositeSelectNoArgs["PostSelections"], - "user": CompositeSelectNoArgs["UserSelections"], -}, total=False) - -RootMixedUnionFnOutputSelections = typing.TypedDict("RootMixedUnionFnOutputSelections", { - "_": SelectionFlags, - "post": CompositeSelectNoArgs["PostSelections"], - "user": CompositeSelectNoArgs["UserSelections"], -}, total=False) +PostSelections = typing.TypedDict( + "PostSelections", + { + "_": SelectionFlags, + "id": ScalarSelectNoArgs, + "slug": ScalarSelectNoArgs, + "title": ScalarSelectNoArgs, + }, + total=False, +) + +UserSelections = typing.TypedDict( + "UserSelections", + { + "_": SelectionFlags, + "id": ScalarSelectNoArgs, + "email": ScalarSelectNoArgs, + "posts": CompositeSelectNoArgs["PostSelections"], + }, + total=False, +) + +RootCompositeUnionFnOutputSelections = typing.TypedDict( + "RootCompositeUnionFnOutputSelections", + { + "_": SelectionFlags, + "post": CompositeSelectNoArgs["PostSelections"], + "user": CompositeSelectNoArgs["UserSelections"], + }, + total=False, +) + +RootMixedUnionFnOutputSelections = typing.TypedDict( + "RootMixedUnionFnOutputSelections", + { + "_": SelectionFlags, + "post": CompositeSelectNoArgs["PostSelections"], + "user": CompositeSelectNoArgs["UserSelections"], + }, + total=False, +) class QueryGraph(QueryGraphBase): def __init__(self): - super().__init__({ - "UserIdStringUuid": "String!", - "PostSlugString": "String!", - "post": "post!", - "user": "user!", - }) - + super().__init__( + { + "UserIdStringUuid": "String!", + "PostSlugString": "String!", + "post": "post!", + "user": "user!", + } + ) + def get_user(self, select: UserSelections) -> QueryNode[User]: node = selection_to_nodes( - {"getUser": select}, - {"getUser": NodeDescs.RootGetUserFn}, - "$q" + {"getUser": select}, {"getUser": NodeDescs.RootGetUserFn}, "$q" )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) def get_posts(self, select: PostSelections) -> QueryNode[Post]: node = selection_to_nodes( - {"getPosts": select}, - {"getPosts": NodeDescs.RootGetPostsFn}, - "$q" + {"getPosts": select}, {"getPosts": NodeDescs.RootGetPostsFn}, "$q" )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) def scalar_no_args(self) -> QueryNode[PostSlugString]: node = selection_to_nodes( - {"scalarNoArgs": True}, - {"scalarNoArgs": NodeDescs.RootScalarNoArgsFn}, - "$q" + {"scalarNoArgs": True}, {"scalarNoArgs": NodeDescs.RootScalarNoArgsFn}, "$q" )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) - def scalar_args(self, args: typing.Union[Post, PlaceholderArgs]) -> MutationNode[PostSlugString]: + def scalar_args( + self, args: typing.Union[Post, PlaceholderArgs] + ) -> MutationNode[PostSlugString]: node = selection_to_nodes( - {"scalarArgs": args}, - {"scalarArgs": NodeDescs.RootScalarArgsFn}, - "$q" + {"scalarArgs": args}, {"scalarArgs": NodeDescs.RootScalarArgsFn}, "$q" )[0] - return MutationNode(node.node_name, node.instance_name, node.args, node.sub_nodes) + return MutationNode( + node.node_name, node.instance_name, node.args, node.sub_nodes + ) def composite_no_args(self, select: PostSelections) -> MutationNode[Post]: node = selection_to_nodes( - {"compositeNoArgs": select}, - {"compositeNoArgs": NodeDescs.RootCompositeNoArgsFn}, - "$q" + {"compositeNoArgs": select}, + {"compositeNoArgs": NodeDescs.RootCompositeNoArgsFn}, + "$q", )[0] - return MutationNode(node.node_name, node.instance_name, node.args, node.sub_nodes) + return MutationNode( + node.node_name, node.instance_name, node.args, node.sub_nodes + ) - def composite_args(self, args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], select: PostSelections) -> MutationNode[Post]: + def composite_args( + self, + args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], + select: PostSelections, + ) -> MutationNode[Post]: node = selection_to_nodes( - {"compositeArgs": (args, select)}, - {"compositeArgs": NodeDescs.RootCompositeArgsFn}, - "$q" + {"compositeArgs": (args, select)}, + {"compositeArgs": NodeDescs.RootCompositeArgsFn}, + "$q", )[0] - return MutationNode(node.node_name, node.instance_name, node.args, node.sub_nodes) + return MutationNode( + node.node_name, node.instance_name, node.args, node.sub_nodes + ) - def scalar_union(self, args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs]) -> QueryNode[RootScalarUnionFnOutput]: + def scalar_union( + self, args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs] + ) -> QueryNode[RootScalarUnionFnOutput]: node = selection_to_nodes( - {"scalarUnion": args}, - {"scalarUnion": NodeDescs.RootScalarUnionFn}, - "$q" + {"scalarUnion": args}, {"scalarUnion": NodeDescs.RootScalarUnionFn}, "$q" )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) - def composite_union(self, args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], select: RootCompositeUnionFnOutputSelections) -> QueryNode[RootCompositeUnionFnOutput]: + def composite_union( + self, + args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], + select: RootCompositeUnionFnOutputSelections, + ) -> QueryNode[RootCompositeUnionFnOutput]: node = selection_to_nodes( - {"compositeUnion": (args, select)}, - {"compositeUnion": NodeDescs.RootCompositeUnionFn}, - "$q" + {"compositeUnion": (args, select)}, + {"compositeUnion": NodeDescs.RootCompositeUnionFn}, + "$q", )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) - def mixed_union(self, args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], select: RootMixedUnionFnOutputSelections) -> QueryNode[RootMixedUnionFnOutput]: + def mixed_union( + self, + args: typing.Union[RootCompositeArgsFnInput, PlaceholderArgs], + select: RootMixedUnionFnOutputSelections, + ) -> QueryNode[RootMixedUnionFnOutput]: node = selection_to_nodes( - {"mixedUnion": (args, select)}, - {"mixedUnion": NodeDescs.RootMixedUnionFn}, - "$q" + {"mixedUnion": (args, select)}, + {"mixedUnion": NodeDescs.RootMixedUnionFn}, + "$q", )[0] return QueryNode(node.node_name, node.instance_name, node.args, node.sub_nodes) diff --git a/tests/runtimes/substantial/common.ts b/tests/runtimes/substantial/common.ts index 3cc42b1f5d..5aca8d3dda 100644 --- a/tests/runtimes/substantial/common.ts +++ b/tests/runtimes/substantial/common.ts @@ -47,7 +47,10 @@ export function basicTestTemplate( cleanup && t.addCleanup(cleanup); const e = await t.engine("runtimes/substantial/substantial.py", { - secrets, + secrets: { + MY_SECRET: "Hello", + ...secrets, + }, }); let currentRunId: string | null = null; @@ -173,7 +176,10 @@ export function concurrentWorkflowTestTemplate( cleanup && t.addCleanup(cleanup); const e = await t.engine("runtimes/substantial/substantial.py", { - secrets, + secrets: { + MY_SECRET: "Hello", + ...secrets, + }, }); const emails = [ @@ -349,7 +355,10 @@ export function retrySaveTestTemplate( cleanup && t.addCleanup(cleanup); const e = await t.engine("runtimes/substantial/substantial.py", { - secrets, + secrets: { + MY_SECRET: "Hello", + ...secrets, + }, }); let resolvedId: string, diff --git a/tests/runtimes/substantial/imports/common_types.ts b/tests/runtimes/substantial/imports/common_types.ts index 3e40785083..b3c0130651 100644 --- a/tests/runtimes/substantial/imports/common_types.ts +++ b/tests/runtimes/substantial/imports/common_types.ts @@ -1,7 +1,7 @@ // TODO: include this as part of the metagen generated code -// TODO: -export type Workflow = (ctx: Context) => Promise; +// TODO: merge these +export type Workflow = (ctx: Context, ctx2: TaskCtx) => Promise; export interface SerializableWorkflowHandle { runId?: string; @@ -45,6 +45,21 @@ export interface Context { ): ChildWorkflowHandle; } +export type TaskCtx = { + parent?: Record; + /** + * Request context extracted by auth extractors. + */ + context?: Record; + secrets: Record; + effect: "create" | "update" | "delete" | "read" | undefined | null; + meta: { + url: string; + token: string; + }; + headers: Record; +}; + export interface SaveOption { timeoutMs?: number; retry?: { diff --git a/tests/runtimes/substantial/substantial.py b/tests/runtimes/substantial/substantial.py index f079980563..55c2b82a9c 100644 --- a/tests/runtimes/substantial/substantial.py +++ b/tests/runtimes/substantial/substantial.py @@ -19,7 +19,14 @@ def substantial(g: Graph): file = ( WorkflowFile.deno(file="workflow.ts", deps=["imports/common_types.ts"]) - .import_(["saveAndSleepExample", "eventsAndExceptionExample", "retryExample"]) + .import_( + [ + "saveAndSleepExample", + "eventsAndExceptionExample", + "retryExample", + "secretsExample", + ] + ) .build() ) @@ -55,5 +62,9 @@ def substantial(g: Graph): start_retry=sub.start( t.struct({"fail": t.boolean(), "timeout": t.boolean()}) ).reduce({"name": "retryExample"}), + # secret + start_secret=sub.start(t.struct({}), secrets=["MY_SECRET"]).reduce( + {"name": "secretsExample"} + ), **sub.internals(), ) diff --git a/tests/runtimes/substantial/substantial_test.ts b/tests/runtimes/substantial/substantial_test.ts new file mode 100644 index 0000000000..f071401015 --- /dev/null +++ b/tests/runtimes/substantial/substantial_test.ts @@ -0,0 +1,6 @@ +import { basicTestTemplate } from "./common.ts"; + +basicTestTemplate("memory", { + secrets: { MY_SECRET: "Hello" }, + delays: { awaitSleepCompleteSec: 10 }, +}); diff --git a/tests/runtimes/substantial/workflow.ts b/tests/runtimes/substantial/workflow.ts index b4df2cb5f4..59d7a70737 100644 --- a/tests/runtimes/substantial/workflow.ts +++ b/tests/runtimes/substantial/workflow.ts @@ -3,9 +3,12 @@ import { queryThatTakesAWhile, sendSubscriptionEmail, sleep, + Workflow, } from "./imports/common_types.ts"; -export async function eventsAndExceptionExample(ctx: Context) { +export const eventsAndExceptionExample: Workflow = async ( + ctx: Context, +) => { const { to } = ctx.kwargs; const messageDialog = await ctx.save(() => sendSubscriptionEmail(to)); @@ -17,7 +20,7 @@ export async function eventsAndExceptionExample(ctx: Context) { } return `${messageDialog}: confirmed!`; -} +}; export async function saveAndSleepExample(ctx: Context) { const { a, b } = ctx.kwargs; @@ -28,18 +31,18 @@ export async function saveAndSleepExample(ctx: Context) { const sum = await ctx.save(async () => { const remoteAdd = new Date().getTime(); - const { data } = await ctx.gql/**/ `query { remote_add(a: $a, b: $b) }`.run( + const { data } = await ctx.gql /**/`query { remote_add(a: $a, b: $b) }`.run( { a: newA, b: newB, - } + }, ); const remoteAddEnd = new Date().getTime(); console.log( "Remote add:", (remoteAddEnd - remoteAdd) / 1000, ", Response:", - data + data, ); return (data as any)?.remote_add as number; @@ -67,7 +70,7 @@ export async function retryExample(ctx: Context) { maxBackoffMs: 5000, maxRetries: 4, }, - } + }, ); const timeoutRet = await ctx.save( @@ -86,8 +89,19 @@ export async function retryExample(ctx: Context) { maxBackoffMs: 3000, maxRetries: 5, }, - } + }, ); return [timeoutRet, retryRet].join(", "); } + +export const secretsExample: Workflow = (_, { secrets }) => { + const { MY_SECRET, ...rest } = secrets; + if (!MY_SECRET) { + throw new Error("unable to read secret"); + } + if (Object.keys(rest).length > 0) { + throw new Error("unexpected secrets found: ", rest); + } + return Promise.resolve(); +}; diff --git a/tests/runtimes/wasm_reflected/rust/Cargo.toml b/tests/runtimes/wasm_reflected/rust/Cargo.toml index 1a09a8c835..ea6f24c97d 100644 --- a/tests/runtimes/wasm_reflected/rust/Cargo.toml +++ b/tests/runtimes/wasm_reflected/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust" -version = "0.5.0-rc.4" +version = "0.5.0-rc.5" edition = "2021" [lib] diff --git a/tools/Dockerfile b/tools/Dockerfile index 42f0e227b4..468d2e6fbb 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -53,7 +53,7 @@ RUN set -eux; \ apt clean autoclean; apt autoremove --yes; rm -rf /var/lib/{apt,dpkg,cache,log}/; ARG GHJK_VERSION=v0.2.1 -RUN GHJK_INSTALL_EXE_DIR=/usr/bin GHJK_INSTALL_HOOK_SHELLS=bash \ +RUN GHJK_INSTALL_EXE_DIR=/usr/bin \ deno run -A https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.ts COPY tools/ tools/ @@ -62,33 +62,31 @@ ENV GHJK_ENV=oci ENV GHJK_ACTIVATE=.ghjk/envs/$GHJK_ENV/activate.sh RUN ghjk envs cook +SHELL ["/bin/sh", "-c", ". .ghjk/envs/oci/activate.sh && sh -c \"$*\"", "sh"] + COPY --from=plan /app/recipe.json recipe.json ARG CARGO_PROFILE=release -RUN . "$GHJK_ACTIVATE" \ - && cargo chef cook --recipe-path recipe.json --profile $CARGO_PROFILE --package typegate \ +RUN cargo chef cook --recipe-path recipe.json --profile $CARGO_PROFILE --package typegate \ && rm recipe.json COPY . . -RUN . "$GHJK_ACTIVATE" \ - && cargo build --profile $CARGO_PROFILE --package typegate --locked \ +RUN cargo build --profile $CARGO_PROFILE --package typegate --locked \ && ( \ [ $CARGO_PROFILE = 'release' ] \ && cp target/release/typegate typegate-bin \ || cp target/debug/typegate typegate-bin \ ) -RUN . "$GHJK_ACTIVATE" \ - && deno run -A tools/update.ts --cache-only --src-only \ +RUN deno run -A tools/update.ts --cache-only --src-only \ && mkdir -p .metatype # FROM builder AS dev -RUN . "$GHJK_ACTIVATE" \ - && mv target /tmp/target \ +RUN mv target /tmp/target \ && rm -rf * \ && mv /tmp/target . @@ -100,8 +98,7 @@ ARG TARGETARCH ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} /tini -RUN . "$GHJK_ACTIVATE" \ - && chmod +x /tini \ +RUN chmod +x /tini \ && mkdir -p /lib/sym \ && ln -s /lib/aarch64-linux-gnu /lib/sym/arm64 \ && ln -s /lib/x86_64-linux-gnu /lib/sym/amd64 diff --git a/tools/Dockerfile.dockerignore b/tools/Dockerfile.dockerignore index d7a2ead680..009d0d863c 100644 --- a/tools/Dockerfile.dockerignore +++ b/tools/Dockerfile.dockerignore @@ -8,8 +8,10 @@ !src/meta-cli/Cargo.toml !src/metagen/Cargo.toml !src/metagen/src/fdk_rust/static/Cargo.toml +!src/metagen/src/client_rs/static/Cargo.toml !src/mt_deno !src/pyrt_wit_wire +!src/substantial/ !src/typegate/ !src/typegraph/core/ !src/wit/ diff --git a/tools/consts.ts b/tools/consts.ts index 7b011efcee..4c11549171 100644 --- a/tools/consts.ts +++ b/tools/consts.ts @@ -1,8 +1,8 @@ // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 -export const METATYPE_VERSION = "0.5.0-rc.4"; -export const PUBLISHED_VERSION = "0.5.0-rc.3"; +export const METATYPE_VERSION = "0.5.0-rc.5"; +export const PUBLISHED_VERSION = "0.5.0-rc.4"; export const GHJK_VERSION = "v0.2.1"; export const GHJK_ACTION_VERSION = "318209a9d215f70716a4ac89dbeb9653a2deb8bc"; export const RUST_VERSION = "1.80.1"; From a178fec40ed115613f0fd2b728a2051b1108da8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 22:41:37 +0300 Subject: [PATCH 9/9] chore(release): prepare for 0.5.0-rc.6 (#912) Automatic suggested bump Co-authored-by: Yohe-Am <56622350+Yohe-Am@users.noreply.github.com> --- CHANGELOG.md | 4021 ++++++++--------- Cargo.lock | 18 +- Cargo.toml | 2 +- examples/templates/deno/api/example.ts | 6 +- examples/templates/deno/compose.yml | 2 +- examples/templates/node/compose.yml | 2 +- examples/templates/node/package.json | 2 +- examples/templates/python/compose.yml | 2 +- examples/templates/python/pyproject.toml | 4 +- pyproject.toml | 2 +- src/meta-lsp/package.json | 2 +- src/meta-lsp/ts-language-server/package.json | 2 +- .../vscode-metatype-support/package.json | 2 +- src/pyrt_wit_wire/pyproject.toml | 2 +- src/typegate/src/runtimes/wit_wire/mod.ts | 2 +- src/typegraph/core/Cargo.toml | 2 +- src/typegraph/core/src/global_store.rs | 2 +- src/typegraph/deno/deno.json | 2 +- src/typegraph/python/pyproject.toml | 2 +- src/typegraph/python/typegraph/__init__.py | 2 +- src/xtask/Cargo.toml | 2 +- .../__snapshots__/metagen_test.ts.snap | 4 +- tests/runtimes/wasm_reflected/rust/Cargo.toml | 2 +- tools/consts.ts | 4 +- 24 files changed, 2040 insertions(+), 2053 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3effa087fe..7fd479dd06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,25 +2,65 @@ All notable changes to this project will be documented in this file. -## [v0.5.0-rc.1](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.1) - 2024-10-22 +## [v0.5.0-rc.5](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.5) - 2024-11-10 ### Bug Fixes

-(ci) Disable sccache when secrets not avail (#874) +Meta dev does not exit properly upon `SIGTERM` (#895) -- Makes sccache optional so PRs from dependabot and forks can still run -the test suite. -- Increases sccache allotment to 50g. - ---------- +#### Migration notes + +None + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-(cli) Change default installation directory (#873) +Fix optional field filter in apply (#909) + + + + + + +- Fix the optional field filter on apply: resolve types before matching. + + + + + + + +#### Migration notes +_No migrations needed._ + +--- + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + +
+ + +### Documentation + +
+ +Grpc annoucement blog (#872) -- Remplacement PR for #843. +- -- ... +- @@ -48,38 +88,102 @@ readable changelog. - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- +- [ ] End-user documentation is updated to reflect the change
+ + +### Features +
-(docs) Grpc docs (#852) +(cli) Watch artifacts (#897) - + +- ... + + + +#### Migration notes + +--- + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + +
+
+ +Substantial function secrets support (#908) + + +- Add support for passing secrets to substantial workflows +- Bump version to 0.5.0-rc5 -Having a good title and description is important for the users to get -readable changelog. ---> +--- - +- [x] The change comes with new or modified tests + +
+ + +### Miscellaneous Tasks + +
+ +License change to MPL Version 2.0 (#899) + - BREAKING: license change to MPL Version 2.0 (#899) + + +#### Migration notes -- +All license headers has changed to MPL 2.0. + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + +--------- + +
+ + +## [v0.5.0-rc.4](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.4) - 2024-11-05 + +### Bug Fixes + +
+ +(typegraph) Send rpc message in chunks in the TS typegraph client (#904) + + +- Send the JSON-RPC message is chunks in the TypeScript typegraph client +to prevent reaching the line size limit for stdout. Note: we could not +reproduce the issue locally as it only occurs when using the published +package for Node.js. +- Use JSON-RPC notification for logging and report from the typegraph +clients. +- Other changes: + - Use relative paths for static task sources in the CLI; +- Fix TODO in `meta gen`: pass the working directory on the +`working_dir` param of `SerializeActionGenerator::new`. -- + #### Migration notes +_N/A_ -... +--- - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -88,81 +192,86 @@ readable changelog.
-(gate) Make __typename returns the variant name on unions (#838) +Speculative fix for `typegate_prisma_test.ts` (#898) - - - - -- Add missing implementation for static injection for parameter -transformations on the typegate -- Solves -[MET-642](https://linear.app/metatypedev/issue/MET-642/gate-typename-on-union-selections-should-hold-member-title): -Fix the `__typename` result on union variants: return the variant name -instead of the parent type name - - +- Assigns special schemas for each test that relies on the +`runtimes/prisma/prisma.py` typegraph. +- Bumps version tag to 0.5.0-rc4 +- Fixes issues in release pipeline +- Disables all but the `test-full` job when the test pipeline is run +with tmate enabled. +The flakeout of `typegate_prisma_test.ts` has proved difficult to +recreate. Looking at the code and going from recent similar cases, I +suspect it happens due to the old code reusing the same pg schema for +multiple tests. Assigning special schemas for each tests should +hopefully help. - - #### Migration notes N/A -#### Checklist +--- - [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments + +--------- + +
+ + +## [v0.5.0-rc.3](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.3) - 2024-10-30 + +### Bug Fixes + +
+ +Update license file (#890) + + +# PR Summary +Commit d84e4ed6c3f88d52c95f1491a050daa924e14b87 moved the +`LICENSE-MPL-2.0.md` file. This PR adjusts sources to changes. + +#### Migration notes + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-(subs) Key collision on redis (#865) +Minor bug fixes (#894) -Follow up of #863 -When multiple start occurs for redis, some schedules can happen -**exactly** at the same time resulting into the same identifier (and -leading to an inconsistent state). - -This solution simply combines the `schedule` with the run_id making it -unique instead of using it as is. - -```gql -mutation AllAtOnce { - a: start_retry(kwargs: { .. }) # => calls add_schedule( ... date ...) - b: start_retry(kwargs: { .. }) - c: start_retry(kwargs: { .. }) - d: start_retry(kwargs: { .. }) - e: start_retry(kwargs: { .. }) - f: start_retry(kwargs: { .. }) - # .. -} -``` +- Bug with typegraph context reset around deno_modules +- Bug with typegate onPush hook error detection and typegraph parsing of +such errors +- Bug with artifact resolution when they're reused. +- Bug with return type of the KvRuntime get functions +- Bumps metatype to 0.5.0-rc.3 #### Migration notes -None +N/A -- [ ] The change comes with new or modified tests +--- + +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
+ + +### Documentation +
-Fix missing images (#847) +Add substantial (#891) -## Fix missing images for `durable execution` blog +- docs -- +- N/A -#### Migration notes +#### Migration -... +N/A - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
+ + +## [v0.5.0-rc.2](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.2) - 2024-10-24 + +### Bug Fixes +
-Improve name generation for prisma types (#849) +Fix `.apply` serialization error with optional structs (#886) -Solve -[MET-657](https://linear.app/metatypedev/issue/MET-657/sdk-improve-generated-titles-for-prisma-types) +- Fix the error on `.apply` when the apply tree goes beyond an optional +struct, mostly changing the implementation of `resolve_optional` method. +- Improve the errors when we encounter an exception raise by +`Result::Err` from typegraph_core. @@ -222,109 +339,69 @@ Solve ... -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-### Documentation +### Features
-(blog) Running python with WebAssembly part 1 (#823) +Add GraphQL alias support for prisma runtime (#887) -Running python with webassembly (part 1) - -#### Migration notes - -None + + - -## Summary by CodeRabbit +- Add GraphQL alias support for prisma runtime -## Summary by CodeRabbit + -- **New Features** -- Introduced a comprehensive guide for integrating Python runtime with -WebAssembly (WASI) in the Metatype ecosystem. -- Detailed the advantages of using WebAssembly over Docker for platform -independence and resource management. -- Provided technical requirements and a refined solution for executing -Python scripts in a sandboxed environment. -- Expanded vocabulary with new relevant terms for enhanced text -processing and validation. -- **Documentation** -- Updated YAML configuration structure in documentation for clarity on -type gate usage. - ---------- - -
-
- -`/docs/reference/typegraph/client` (#777) - - -Pre-documentation for the code-first queries feature. + #### Migration notes ... -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-### Features +## [v0.5.0-rc.1](https://github.com/metatypedev/metatype/releases/tag/v0.5.0-rc.1) - 2024-10-22 + +### Bug Fixes
-(dev) Typegraph explorer (#859) - - -- Add a web version of tree-view which is more interactive -- Enable typegraph serialization without `metatype.yml` config file - - -![image](https://github.com/user-attachments/assets/81771c07-1f2a-493a-81df-969c8182f9bf) - -
-
- -(gate) Empty object as custom scalar (#876) +(ci) Disable sccache when secrets not avail (#874) -* Allow empty object on the output without any change -* Just like `Int`, `String`, and such, rightfully refer the constant -`{}` as a scalar -* **Any** empty object will now be refered as `EmptyObject` scalar - -#### Migration notes - -None +- Makes sccache optional so PRs from dependabot and forks can still run +the test suite. +- Increases sccache allotment to 50g. -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +---------
-(mdk) Overridable templates (#842) +(cli) Change default installation directory (#873) -Solve -[MET-630](https://linear.app/metatypedev/issue/MET-630/gen-add-parameter-to-replace-static-sections) -- [x] Make templates in the _static_ sections overridable - - [x] `mdk_rust` - - [x] `mdk_python` - - [x] `mdk_typescript` -- [x] Add a CLI tool to generate extract the default template +- Remplacement PR for #843. + + +- ... #### Migration notes -No changes needed. - ---- +... -- [x] The change comes with new or modified tests +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change + +---------
-(metagen) Union/either for clients (#857) +(docs) Grpc docs (#852) -- Add union support for the `client_xx` metagen implementations. - -There are still some edge cases especially around variant identification -in the client languages. I tried many things but our hands are tied by -serde. Basically, users will have to be careful when designing their -union types to avoid ambiguity cases. Hopefully, -[674](https://linear.app/metatypedev/issue/MET-674/graph-checksvalidation-on-teither) -will help there. + -... + -- [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- + - +- -## Summary by CodeRabbit + -- **New Features** -- Introduced new methods for rendering union types in both TypeScript -and Python. -- Enhanced GraphQL query generation with support for multiple union -types. -- Added a new `variants` property to the `NodeMeta` type for improved -selection handling. - -- **Bug Fixes** - - Improved error handling for node selections and argument processing. +#### Migration notes -- **Tests** -- Updated test cases to reflect schema changes and added new tests for -client functionality. +... - +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-(subs) Redis backend (#855) +(gate) Make __typename returns the variant name on unions (#838) -* Redis Backend base logic port + some improvements -* Moved `SUBSTANTIAL_POLL_INTERVAL_SEC` and -`SUBSTANTIAL_LEASE_LIFESPAN_SEC` to config + -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change + +- Add missing implementation for static injection for parameter +transformations on the typegate +- Solves +[MET-642](https://linear.app/metatypedev/issue/MET-642/gate-typename-on-union-selections-should-hold-member-title): +Fix the `__typename` result on union variants: return the variant name +instead of the parent type name - + -## Summary by CodeRabbit -## Release Notes -- **New Features** -- Introduced Redis as a new backend option for enhanced data management. - - Added Docker Compose configuration for a Redis service. -- Implemented comprehensive testing for Redis functionality and backend -integration. + -- **Bug Fixes** - - Improved error handling during backend initialization. +#### Migration notes -- **Documentation** -- Updated type definitions for backend configurations to streamline -Redis integration. +N/A -- **Chores** -- Refactored test cases for clarity and consistency across different -backend types. +#### Checklist - +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-(subs) Retry + timeout on save (#863) +(subs) Key collision on redis (#865) -Port and improve retry/timeout. +Follow up of #863 +When multiple start occurs for redis, some schedules can happen +**exactly** at the same time resulting into the same identifier (and +leading to an inconsistent state). + +This solution simply combines the `schedule` with the run_id making it +unique instead of using it as is. + +```gql +mutation AllAtOnce { + a: start_retry(kwargs: { .. }) # => calls add_schedule( ... date ...) + b: start_retry(kwargs: { .. }) + c: start_retry(kwargs: { .. }) + d: start_retry(kwargs: { .. }) + e: start_retry(kwargs: { .. }) + f: start_retry(kwargs: { .. }) + # .. +} +``` #### Migration notes -N/A +None - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -472,71 +543,40 @@ N/A
-(subs) Child workflows + docs (#867) +Fix missing images (#847) -Support for child workflows. + -#### Migration notes + -Previously -```python - sub = SubstantialRuntime(backend) - hello = sub.deno(file="workflow.ts", name="sayHello", deps=[]) +## Fix missing images for `durable execution` blog - g.expose( - # each function start, stop, result, ... holds a copy of the workflow data - start_hello = hello.start(...), - stop_hello = hello.stop() - ) -``` -This approach relied on workflow files being referenced in each -materializer, but the constructs were too restrictive to support -something like `mutation { results(name: "nameManuallyGiven") }`. + -We now have instead -```python - file = ( - WorkflowFile - .deno(file="workflow.ts", deps=[]) - .import_(["sayHello"]) - .build() - ) +- - # workflow data are refered only once - sub = SubstantialRuntime(backend, [file]) - g.expose( - start_hello = sub.start(...).reduce({ "name": "sayHello" }), - stop = sub.stop() - ) -``` + -- [x] The change comes with new or modified tests +#### Migration notes + +... + +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-(subs,gate) Substantial integration (#844) - - - - -
-
- -(subs,gate) Port agent concept (#845) - - -Continuation of #844 - -
-
- -Well-defined type comparison semantics (#846) +Improve name generation for prisma types (#849) Solve -[MET-655](https://linear.app/metatypedev/issue/MET-655/sdk-improve-the-ensuresubtypeof-implementation) -- [x] Document the type comparison semantics -- [x] Improve the implementation (`EnsureSubtypeOf` trait) -- [x] Add more test cases for type comparisons +[MET-657](https://linear.app/metatypedev/issue/MET-657/sdk-improve-generated-titles-for-prisma-types) @@ -564,86 +601,63 @@ Solve #### Migration notes -_No change is needed._ - ... -- [x] The change comes with new or modified tests +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - - - - -## Summary by CodeRabbit - -## Release Notes - -- **New Features** -- Introduced comprehensive type comparison rules and semantics for -scalar types, optionals, lists, objects, and unions. -- Added support for enumerated types in the type system, allowing for -more precise type definitions. -- Enhanced parent injection mechanism documentation to clarify type -compatibility requirements. -- Implemented a new suite of type comparison tests and validation -mechanisms. - -- **Bug Fixes** -- Improved error reporting and handling in the type validation process. - -- **Documentation** -- Updated and expanded documentation for type comparisons, enumerations, -and parent injections. - -- **Tests** - - Added new tests for type comparison and validation scenarios. - - +- [ ] End-user documentation is updated to reflect the change
+ + +### Documentation +
-Grpc runtime (#819) +(blog) Running python with WebAssembly part 1 (#823) +Running python with webassembly (part 1) + #### Migration notes -... +None -- [x] The change comes with new or modified tests -- [X] End-user documentation is updated to reflect the change +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments +- [x] End-user documentation is updated to reflect the change + + + +## Summary by CodeRabbit + +## Summary by CodeRabbit + +- **New Features** +- Introduced a comprehensive guide for integrating Python runtime with +WebAssembly (WASI) in the Metatype ecosystem. +- Detailed the advantages of using WebAssembly over Docker for platform +independence and resource management. +- Provided technical requirements and a refined solution for executing +Python scripts in a sandboxed environment. +- Expanded vocabulary with new relevant terms for enhanced text +processing and validation. + +- **Documentation** +- Updated YAML configuration structure in documentation for clarity on +type gate usage. + ---------
-Python hostcall (#860) +`/docs/reference/typegraph/client` (#777) -Dead lock on python worker - - - - - -- - - - -- - - +Pre-documentation for the code-first queries feature. #### Migration notes @@ -656,53 +670,42 @@ readable changelog.
-### Miscellaneous Tasks +### Features -
+
-Checks/validation on t.either (#868) - - BREAKING: Checks/validation on t.either (#868) +(dev) Typegraph explorer (#859) -Emit a warning or an error when a variant is a subtype of another one. +- Add a web version of tree-view which is more interactive +- Enable typegraph serialization without `metatype.yml` config file -#### Migration notes -**BREAKING CHANGE**: Previously valid typegraph might fail validation. -You will need to fix your types to add some consistency in -`t.either`/`t.union` types. -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +![image](https://github.com/user-attachments/assets/81771c07-1f2a-493a-81df-969c8182f9bf)
-Update prisma + deno + rust deps (#869) +(gate) Empty object as custom scalar (#876) -- Bump deno to 1.46.3 -- Update prisma-engines to 5.20 -- Update other rust deps. - -Closes MET-669 and MET-622 and MET-680. +* Allow empty object on the output without any change +* Just like `Int`, `String`, and such, rightfully refer the constant +`{}` as a scalar +* **Any** empty object will now be refered as `EmptyObject` scalar #### Migration notes -... +None -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
- - -### Refactor -
-(gate) Add err msg for missing env vars (#827) +(mdk) Overridable templates (#842) -- - - +Solve +[MET-630](https://linear.app/metatypedev/issue/MET-630/gen-add-parameter-to-replace-static-sections) +- [x] Make templates in the _static_ sections overridable + - [x] `mdk_rust` + - [x] `mdk_python` + - [x] `mdk_typescript` +- [x] Add a CLI tool to generate extract the default template -- #### Migration notes -... +No changes needed. -- [ ] The change comes with new or modified tests +--- + +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-(gate) Use stream during artifact upload to s3 (#841) +(metagen) Union/either for clients (#857) - +There are still some edge cases especially around variant identification +in the client languages. I tried many things but our hands are tied by +serde. Basically, users will have to be careful when designing their +union types to avoid ambiguity cases. Hopefully, +[674](https://linear.app/metatypedev/issue/MET-674/graph-checksvalidation-on-teither) +will help there. - +#### Migration notes -- +... - +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change -- - + -#### Migration notes +## Summary by CodeRabbit -... +- **New Features** +- Introduced new methods for rendering union types in both TypeScript +and Python. +- Enhanced GraphQL query generation with support for multiple union +types. +- Added a new `variants` property to the `NodeMeta` type for improved +selection handling. + +- **Bug Fixes** + - Improved error handling for node selections and argument processing. -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- **Tests** +- Updated test cases to reflect schema changes and added new tests for +client functionality. + +
-(gen, doc) Rename mdk to fdk (#851) +(subs) Redis backend (#855) - - +## Summary by CodeRabbit -- +## Release Notes - +- **New Features** +- Introduced Redis as a new backend option for enhanced data management. + - Added Docker Compose configuration for a Redis service. +- Implemented comprehensive testing for Redis functionality and backend +integration. -- +- **Bug Fixes** + - Improved error handling during backend initialization. - +- **Documentation** +- Updated type definitions for backend configurations to streamline +Redis integration. + +- **Chores** +- Refactored test cases for clarity and consistency across different +backend types. + + + +
+
+ +(subs) Retry + timeout on save (#863) + + +Port and improve retry/timeout. #### Migration notes -... +N/A - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-
+
-(sdk) Remove index based names (#848) - - BREAKING: remove index based names (#848) +(subs) Child workflows + docs (#867) -- Replace index based names for types by one that relies on type context -in graph -- Tests for type deduplication +Support for child workflows. + +Solves MET-689 and MET-668. #### Migration notes -TODO +Previously +```python + sub = SubstantialRuntime(backend) + hello = sub.deno(file="workflow.ts", name="sayHello", deps=[]) + + g.expose( + # each function start, stop, result, ... holds a copy of the workflow data + start_hello = hello.start(...), + stop_hello = hello.stop() + ) +``` +This approach relied on workflow files being referenced in each +materializer, but the constructs were too restrictive to support +something like `mutation { results(name: "nameManuallyGiven") }`. + +We now have instead +```python + file = ( + WorkflowFile + .deno(file="workflow.ts", deps=[]) + .import_(["sayHello"]) + .build() + ) + + # workflow data are refered only once + sub = SubstantialRuntime(backend, [file]) + g.expose( + start_hello = sub.start(...).reduce({ "name": "sayHello" }), + stop = sub.stop() + ) +``` - [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-
+
-Move as_id out of `TypeNode` (#866) - - BREAKING: Move as_id out of `TypeNode` (#866) +(subs,gate) Substantial integration (#844) + + + + +
+
+ +(subs,gate) Port agent concept (#845) + + +Continuation of #844 + +
+
+ +Well-defined type comparison semantics (#846) Solve -[MET-684](https://linear.app/metatypedev/issue/MET-684/store-the-id-field-in-tstruct-instead-of-in-the-target-type-as-id) -and -[MET-471](https://linear.app/metatypedev/issue/MET-471/parent-injection-use-property-name-instead-of-function-name) -- **common/typegraph** -- [x] Store the id field in `ObjectTypeData` instead of in the target -type (`as_id`) - - [x] Add `id()` method on `t.integer` and `t.string` -- **typegraph/core** - - [x] Store `as_id`, `injection` and `policy` in `TypeRef::attribute` - - [x] Add support for direct and link target in `TypeRef` - - [x] Only allow name registration for `TypeDef` -- Semantics -- [x] Use property name instead of type name in from_parent injection -source +[MET-655](https://linear.app/metatypedev/issue/MET-655/sdk-improve-the-ensuresubtypeof-implementation) +- [x] Document the type comparison semantics +- [x] Improve the implementation (`EnsureSubtypeOf` trait) +- [x] Add more test cases for type comparisons + + + + + + #### Migration notes -**BREAKING CHANGE** -`from_parent` injections source shall be changed to the key in the -parent `t.struct` instead of the type name. +_No change is needed._ -#### Checklist +... - [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change - -
-
- -Move injection data to `t.func` (#871) - - -- -[MET-682](https://linear.app/metatypedev/issue/MET-682/move-all-injection-data-to-tfunc) - - [x] Move all injection data in `ObjectTypeData` (i.e. `t.func`) -- -[MET-656](https://linear.app/metatypedev/issue/MET-656/sdk-improve-generated-titles-from-applyreduce) - - [x] Translate reduce to injection specification on `t.func` -- -[MET-94](https://linear.app/metatypedev/issue/MET-94/remove-runtime-field-from-typenode) - - [x] Remove runtime field from `TypeNode` (#858) -- -[MET-683](https://linear.app/metatypedev/issue/MET-683/move-runtime-related-type-configs-out-of-typenode) -- [x] Move runtime-related configs to `MaterializerData` or -`RuntimeData` -- Misc. -- Enable random ports for the typegate (when `TG_PORT=0`); this will -work with `meta dev` with embedded typegate if you set the `--gate` -option with port `0`. +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change - + +## Summary by CodeRabbit - +## Release Notes -#### Migration notes +- **New Features** +- Introduced comprehensive type comparison rules and semantics for +scalar types, optionals, lists, objects, and unions. +- Added support for enumerated types in the type system, allowing for +more precise type definitions. +- Enhanced parent injection mechanism documentation to clarify type +compatibility requirements. +- Implemented a new suite of type comparison tests and validation +mechanisms. -... +- **Bug Fixes** +- Improved error reporting and handling in the type validation process. -- [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - -
- - -## [v0.4.10](https://github.com/metatypedev/metatype/releases/tag/v0.4.10) - 2024-09-04 - -### Miscellaneous Tasks - -
- -Bump to v0.4.10 (#835) - - -- Bump v0.4.10 - -
- - -## [v0.4.10-rc1](https://github.com/metatypedev/metatype/releases/tag/v0.4.10-rc1) - 2024-09-03 - -### Bug Fixes - -
- -Use import_map at runtime (#833) - - -- Bump to release v0.4.10-rc1 -- Use import_map.json at runtime since remote configs aren't supported - -
- - -## [v0.4.9](https://github.com/metatypedev/metatype/releases/tag/v0.4.9) - 2024-09-02 - -### Miscellaneous Tasks - -
- -Bump to v0.4.9 (#831) - - -- Bump version to v0.4.9 -- Fix issue with cross config context - -
- - -## [v0.4.9-rc2](https://github.com/metatypedev/metatype/releases/tag/v0.4.9-rc2) - 2024-09-02 - -### Miscellaneous Tasks - -
- -(release) Prepare 0.4.9-rc2 (#829) - - -- Fix the minor issues with rc1 -- Bump to rc2 +- **Documentation** +- Updated and expanded documentation for type comparisons, enumerations, +and parent injections. + +- **Tests** + - Added new tests for type comparison and validation scenarios. + +
- - -## [v0.4.9-rc1](https://github.com/metatypedev/metatype/releases/tag/v0.4.9-rc1) - 2024-09-02 - -### Features -
-(docs) Post on `Durable Execution`. (#816) +Grpc runtime (#819) - +#### Migration notes + +... + +- [x] The change comes with new or modified tests +- [X] End-user documentation is updated to reflect the change +- [ ] Hard-to-understand functions have explanatory comments + +---------
-(metagen) Client_ts (#790) +Python hostcall (#860) -- Implements `client_ts` as described in #777 . +Dead lock on python worker -#### Migration notes + -- [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change + +- - -## Summary by CodeRabbit + -- **Bug Fixes** -- Improved error handling in the `typegraph` function to provide better -error messages. +- -- **Chores** -- Updated Docker image references to use `docker.io` prefix for -consistency. - - Excluded unnecessary files from the VSCode settings. - - Enhanced configurability of Docker commands in development tasks. -- Updated environment variable `GHJK_VERSION` to reflect a semantic -versioning format. + -- **New Features** -- Introduced modules and methods for TypeScript and Python code -generation in the `metagen` library, enhancing client generation -capabilities. - - Added `test_typegraph_3` function for improved testing capabilities. - - Included metadata for the package manager in the project settings. - +#### Migration notes + +... + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-
+ + +### Miscellaneous Tasks + +
-(sub) Sdk and typing (#811) +Checks/validation on t.either (#868) + - BREAKING: Checks/validation on t.either (#868) -User side of substantial +Emit a warning or an error when a variant is a subtype of another one. #### Migration notes +**BREAKING CHANGE**: Previously valid typegraph might fail validation. +You will need to fix your types to add some consistency in +`t.either`/`t.union` types. -None - -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
-Add caching to Secrets struct to improve performance (#813) +Update prisma + deno + rust deps (#869) +- Bump deno to 1.46.3 +- Update prisma-engines to 5.20 +- Update other rust deps. + +Closes MET-669 and MET-622 and MET-680. + #### Migration notes +... + - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change @@ -1050,7 +1083,7 @@ Add caching to Secrets struct to improve performance (#822) +(gate) Add err msg for missing env vars (#827) -## Ensure documentation is pushing for meta dev instead of meta typegate -- [x] add a warning that envs are not set. +- - -[MET-635](https://linear.app/metatypedev/issue/MET-635/cli-ensure-documentation-is-pushing-for-meta-dev-instead-of-meta) +- #### Migration notes -_No Migration Needed_ +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -1085,112 +1116,93 @@ _No Migration Needed_
-Flatten deps and improve repo folder (#821) +(gate) Use stream during artifact upload to s3 (#841) -- Renames `libs/` to `src/`. -- Moves `typegate/`, `meta-cli`, `typegraph/`, `meta-lsp/` to `src/`. -- Renames `dev/` to `tools/` -- Moves `website/` to `docs/metatype.dev`/ -- Moves `src/typegate/tests` to `tests/` -- Moves `src/typegraph/deno/dev` to `tools/jsr/` -- Moves `src/typegraph/deno/sdk` to `src/typegraph/deno/` -- Renames `src/deno` to `src/mt_deno` -- Bumps deno to `1.46.1` -- Bumps rust toolchain to `1.80.1` -- Moves all rust dependencies to workspace section -- Moves `tools/task-*.ts` to `tools/task/*.ts` -- Moves `cliff.toml`, `Cross.toml`, `ruff.toml` to `tools/` -- Uses deno -[workspaces](https://docs.deno.com/runtime/manual/basics/workspaces/) to -organize `src/typegraph/deno`, `src/typegate`, `tools/`, `tests/` and -more. -- Closes MET-607 -- Updates poetry to 1.8.3 -- Bumps metatype to version 0.4.9-rc1 -- [x] Update CONTRIBUTING.md -- [x] Fix CI workflows -- [x] Fix Dockerfile -- [x] Fix all tests + + + + +- + + + +- + + #### Migration notes -- No end user changes required +... -- [x] The change comes with new or modified tests +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- - -
- - -## [v0.4.8](https://github.com/metatypedev/metatype/releases/tag/v0.4.8) - 2024-08-16 - -### Bug Fixes - -
- -Table method for kv runtime (#815) - - -I discover an issue in the KV runtime documentation -[kvruntime docs](https://metatype.dev/docs/reference/runtimes/kv) - -
-
- -`wasm_backtrace` config bug (#814) - - -- `$WASM_BACKTRACE_DETAILS` was enabled in `main` ghjk env which -affected embedded wasm module compilation to have backtrace enabled. -This broke typegate runs without the flag enabled due to mismatch. -- Fixes Cargo.lock not being used in Dockerfile. -- Prepare 0.4.8 release +- [ ] End-user documentation is updated to reflect the change
- - -### Features -
-Kv runtime (#797) +(gen, doc) Rename mdk to fdk (#851) + + + + +- + + + +- + + + #### Migration notes ... -- [x] The change comes with new or modified tests -- [x] End-user documentation is updated to reflect the change -- [ ] Hard-to-understand functions have explanatory comments +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
- - -### Miscellaneous Tasks - -
+
-Bump to 0.4.8-0 (#810) +(sdk) Remove index based names (#848) + - BREAKING: remove index based names (#848) -- Bump prerelease -- Fix minor issue with release pipeline +- Replace index based names for types by one that relies on type context +in graph +- Tests for type deduplication + +#### Migration notes + +TODO + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
- - -## [v0.4.7](https://github.com/metatypedev/metatype/releases/tag/v0.4.7) - 2024-08-08 - -### Features - -
+
-(cli) Fix auto deployment (#806) +Move as_id out of `TypeNode` (#866) + - BREAKING: Move as_id out of `TypeNode` (#866) -- Upgrade lade-sdk -- Fix discovery -- Remove obsolete dep: actix-web +Solve +[MET-684](https://linear.app/metatypedev/issue/MET-684/store-the-id-field-in-tstruct-instead-of-in-the-target-type-as-id) +and +[MET-471](https://linear.app/metatypedev/issue/MET-471/parent-injection-use-property-name-instead-of-function-name) +- **common/typegraph** +- [x] Store the id field in `ObjectTypeData` instead of in the target +type (`as_id`) + - [x] Add `id()` method on `t.integer` and `t.string` +- **typegraph/core** + - [x] Store `as_id`, `injection` and `policy` in `TypeRef::attribute` + - [x] Add support for direct and link target in `TypeRef` + - [x] Only allow name registration for `TypeDef` +- Semantics +- [x] Use property name instead of type name in from_parent injection +source + +#### Migration notes +**BREAKING CHANGE** +`from_parent` injections source shall be changed to the key in the +parent `t.struct` instead of the type name. + + +#### Checklist + +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments +- [x] End-user documentation is updated to reflect the change + +
+
+ +Move injection data to `t.func` (#871) + + +- +[MET-682](https://linear.app/metatypedev/issue/MET-682/move-all-injection-data-to-tfunc) + - [x] Move all injection data in `ObjectTypeData` (i.e. `t.func`) +- +[MET-656](https://linear.app/metatypedev/issue/MET-656/sdk-improve-generated-titles-from-applyreduce) + - [x] Translate reduce to injection specification on `t.func` +- +[MET-94](https://linear.app/metatypedev/issue/MET-94/remove-runtime-field-from-typenode) + - [x] Remove runtime field from `TypeNode` (#858) +- +[MET-683](https://linear.app/metatypedev/issue/MET-683/move-runtime-related-type-configs-out-of-typenode) +- [x] Move runtime-related configs to `MaterializerData` or +`RuntimeData` +- Misc. +- Enable random ports for the typegate (when `TG_PORT=0`); this will +work with `meta dev` with embedded typegate if you set the `--gate` +option with port `0`. -- `lade-sdk` uses the main branch, which now has the fix for the -following issues: -- dependency version conflict with -[deno](https://github.com/metatypedev/deno/blob/691f297537c4a3d9a12ce005c0478b4aee86287c/Cargo.toml#L179): -`url` is set at `<2.5.0`; -- required ProjectID error for infisical: the project id is added -explicitly on the command. + @@ -1224,79 +1278,97 @@ explicitly on the command. ... -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
+ + +## [v0.4.10](https://github.com/metatypedev/metatype/releases/tag/v0.4.10) - 2024-09-04 + +### Miscellaneous Tasks + +
+ +Bump to v0.4.10 (#835) + + +- Bump v0.4.10 + +
+ + +## [v0.4.10-rc1](https://github.com/metatypedev/metatype/releases/tag/v0.4.10-rc1) - 2024-09-03 + +### Bug Fixes + +
+ +Use import_map at runtime (#833) + + +- Bump to release v0.4.10-rc1 +- Use import_map.json at runtime since remote configs aren't supported + +
+ + +## [v0.4.9](https://github.com/metatypedev/metatype/releases/tag/v0.4.9) - 2024-09-02 + +### Miscellaneous Tasks +
-Cors headers on error (#803) +Bump to v0.4.9 (#831) - - - - -- - - - -- - - - -#### Migration notes - -... - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- Bump version to v0.4.9 +- Fix issue with cross config context
+## [v0.4.9-rc2](https://github.com/metatypedev/metatype/releases/tag/v0.4.9-rc2) - 2024-09-02 + ### Miscellaneous Tasks
-Bump to 0.4.7-0 (#805) +(release) Prepare 0.4.9-rc2 (#829) -- Bump version to 0.4.7-0 +- Fix the minor issues with rc1 +- Bump to rc2
-### Refactor +## [v0.4.9-rc1](https://github.com/metatypedev/metatype/releases/tag/v0.4.9-rc1) - 2024-09-02 + +### Features
-(docs) Add how to test typegraphs doc (#798) +(docs) Post on `Durable Execution`. (#816) -# `How to test your typegraphs` documentation - - - -- [x] add python doc -- [x] add ts doc -- [x] upgrade bitnami/minIo image to 2024? + + +
+
+ +(metagen) Client_ts (#790) + + +- Implements `client_ts` as described in #777 . #### Migration notes -_No Migrations Needed_ +... -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change @@ -1304,66 +1376,62 @@ _No Migrations Needed_ --> ## Summary by CodeRabbit -- **New Features** -- Updated the Minio service to the latest version for improved -performance and potential new features. -- Introduced comprehensive documentation for testing typegraphs in both -TypeScript and Python, enhancing developer experience. - -- **Documentation** - - Enhanced readability of the `Meta CLI` upgrade instructions. -- Reformatted installation instructions for the `typegraph` package for -better clarity. +- **Bug Fixes** +- Improved error handling in the `typegraph` function to provide better +error messages. - **Chores** -- Updated dependency management configuration for improved compatibility -and performance across different platforms. +- Updated Docker image references to use `docker.io` prefix for +consistency. + - Excluded unnecessary files from the VSCode settings. + - Enhanced configurability of Docker commands in development tasks. +- Updated environment variable `GHJK_VERSION` to reflect a semantic +versioning format. + +- **New Features** +- Introduced modules and methods for TypeScript and Python code +generation in the `metagen` library, enhancing client generation +capabilities. + - Added `test_typegraph_3` function for improved testing capabilities. + - Included metadata for the package manager in the project settings.
-Improve JSR score (part 1) (#807) +(sub) Sdk and typing (#811) - - - - -- Add symbol documentations -- Fix slow types - - - -- - - +User side of substantial #### Migration notes -... +None - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
+
+ +Add caching to Secrets struct to improve performance (#813) + + +#### Migration notes + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change +
-## [v0.4.6](https://github.com/metatypedev/metatype/releases/tag/v0.4.6) - 2024-08-01 -### Features +### Refactor
-Better arg split logic for MCLI_LOADER (#799) +(docs, gate) Push for `meta dev` instead of `meta typegate` on docs (#822) -- +## Ensure documentation is pushing for meta dev instead of meta typegate +- [x] add a warning that envs are not set. -- + +[MET-635](https://linear.app/metatypedev/issue/MET-635/cli-ensure-documentation-is-pushing-for-meta-dev-instead-of-meta) #### Migration notes -... +_No Migration Needed_ - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
- - -### Miscellaneous Tasks - -
- -Prepare 0.4.6 (#795) - - -- Bump version to 0.4.6-0 -- Add sanity tests for published SDKs -- Bump deno to 1.45.2 -- Bump rust to 1.79.0 -- Fix myriad of bugs - -#### Migration notes - -... - -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - - - - -## Summary by CodeRabbit - -- **New Features** -- Introduced new logging capabilities in the `ConnectedEngine` with -adjustable logging levels. -- Implemented cleanup procedures in tests to enhance resource -management. - -- **Bug Fixes** -- Fixed import paths for permissions to ensure correct functionality in -tests and applications. - -- **Version Updates** -- Incremented version numbers across multiple projects and packages to -reflect ongoing development and improvements. - -- **Documentation** -- Added comments to clarify code behavior and potential future -considerations in various modules. - -- **Refactor** -- Optimized string handling in several functions and adjusted method -signatures for improved clarity and efficiency. - - - -
- - -### Refactor -
-(docs) Better documentation on `quick-start` page (#793) +Flatten deps and improve repo folder (#821) -## Improve the documentation on `quick-start` page - -- [x] add dev hunt result to homepage. - - - - - - -- - - - -- - - +- Renames `libs/` to `src/`. +- Moves `typegate/`, `meta-cli`, `typegraph/`, `meta-lsp/` to `src/`. +- Renames `dev/` to `tools/` +- Moves `website/` to `docs/metatype.dev`/ +- Moves `src/typegate/tests` to `tests/` +- Moves `src/typegraph/deno/dev` to `tools/jsr/` +- Moves `src/typegraph/deno/sdk` to `src/typegraph/deno/` +- Renames `src/deno` to `src/mt_deno` +- Bumps deno to `1.46.1` +- Bumps rust toolchain to `1.80.1` +- Moves all rust dependencies to workspace section +- Moves `tools/task-*.ts` to `tools/task/*.ts` +- Moves `cliff.toml`, `Cross.toml`, `ruff.toml` to `tools/` +- Uses deno +[workspaces](https://docs.deno.com/runtime/manual/basics/workspaces/) to +organize `src/typegraph/deno`, `src/typegate`, `tools/`, `tests/` and +more. +- Closes MET-607 +- Updates poetry to 1.8.3 +- Bumps metatype to version 0.4.9-rc1 +- [x] Update CONTRIBUTING.md +- [x] Fix CI workflows +- [x] Fix Dockerfile +- [x] Fix all tests #### Migration notes -... +- No end user changes required -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change + +---------
-## [v0.4.5](https://github.com/metatypedev/metatype/releases/tag/v0.4.5) - 2024-07-18 +## [v0.4.8](https://github.com/metatypedev/metatype/releases/tag/v0.4.8) - 2024-08-16 ### Bug Fixes
-Broken pipeline for 0.4.4 (#782) +Table method for kv runtime (#815) -Fixes erroneous usage of `setup-deno` which has been replaced by `ghjk` -itself. - -#### Migration notes - -... - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +I discover an issue in the KV runtime documentation +[kvruntime docs](https://metatype.dev/docs/reference/runtimes/kv)
-Broken release pipeline 2 (#783) +`wasm_backtrace` config bug (#814) -Fix issue with the three remaining failing jobs. - -#### Migration notes - -... - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- `$WASM_BACKTRACE_DETAILS` was enabled in `main` ghjk env which +affected embedded wasm module compilation to have backtrace enabled. +This broke typegate runs without the flag enabled due to mismatch. +- Fixes Cargo.lock not being used in Dockerfile. +- Prepare 0.4.8 release
+ + +### Features +
-Release pipeline 3 (#784) +Kv runtime (#797) -- Remove accidental dry-run from jsr publish -- Fix cross dockerfile - #### Migration notes ... -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [x] The change comes with new or modified tests +- [x] End-user documentation is updated to reflect the change +- [ ] Hard-to-understand functions have explanatory comments
+ + +### Miscellaneous Tasks +
-Skip deno stack trace from error message (#787) +Bump to 0.4.8-0 (#810) - - - - -Skip the deno stack trace from the error message when tg_manage fails. - - - - - - - -#### Migration notes - -_N/A_ - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- Bump prerelease +- Fix minor issue with release pipeline
+## [v0.4.7](https://github.com/metatypedev/metatype/releases/tag/v0.4.7) - 2024-08-08 + ### Features -
+
-(cli) Configurable backoff (#789) - - BREAKING: configurable backoff (#789) +(cli) Fix auto deployment (#806) -- Make the backoff configurable through the `--retry` and -`--retry-interval-ms` options. -- The default max retry count is changed to 0 on the default mode, and -remains 3 on the watch mode. -- The `--max-parallel-loads` option has been renamed to `--threads`. +- Upgrade lade-sdk +- Fix discovery +- Remove obsolete dep: actix-web - +- `lade-sdk` uses the main branch, which now has the fix for the +following issues: +- dependency version conflict with +[deno](https://github.com/metatypedev/deno/blob/691f297537c4a3d9a12ce005c0478b4aee86287c/Cargo.toml#L179): +`url` is set at `<2.5.0`; +- required ProjectID error for infisical: the project id is added +explicitly on the command. #### Migration notes -The `--max-parallel-loads` option has been renamed to `--threads`. +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change
-Add list subcommand features to meta_cli (#775) +Cors headers on error (#803) -new branch after conflict with main branch - -
+### Miscellaneous Tasks +
-Add back gleap (#791) +Bump to 0.4.7-0 (#805) - - - - -- Gleap.io was removed a while back -- this adds it back so visitors can open ticket and suggest feedback -- internally, we will use this to fine tune the documentation +- Bump version to 0.4.7-0
-### Miscellaneous Tasks +### Refactor
-Bump v0.4.5 (#792) +(docs) Add how to test typegraphs doc (#798) -- Bumps metatype version to 0.4.5 -- Bumps ghjk to latest commit -- Fixes `setup` whiz task to avoid issues on macos -- Fixes release pipeline to publish JSR +# `How to test your typegraphs` documentation -MET-614 MET-606 MET-605 MET-613 + + +- [x] add python doc +- [x] add ts doc +- [x] upgrade bitnami/minIo image to 2024? #### Migration notes -_No changes required._ +_No Migrations Needed_ - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - -
- - -## [v0.4.4](https://github.com/metatypedev/metatype/releases/tag/v0.4.4) - 2024-07-05 - -### Bug Fixes - -
- -(gate) Ensure all deps are defined in import_map.json (#768) - - -Ensure that all deps are defined in `import_map.json` with a specific -version. +- [ ] End-user documentation is updated to reflect the change + + + +## Summary by CodeRabbit + +- **New Features** +- Updated the Minio service to the latest version for improved +performance and potential new features. +- Introduced comprehensive documentation for testing typegraphs in both +TypeScript and Python, enhancing developer experience. + +- **Documentation** + - Enhanced readability of the `Meta CLI` upgrade instructions. +- Reformatted installation instructions for the `typegraph` package for +better clarity. + +- **Chores** +- Updated dependency management configuration for improved compatibility +and performance across different platforms. +
-Missing typegraphs (#755) +Improve JSR score (part 1) (#807) -- fix the typegraphs that were incorrectly formatted +- Add symbol documentations +- Fix slow types - +- +#### Migration notes +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
+ + +## [v0.4.6](https://github.com/metatypedev/metatype/releases/tag/v0.4.6) - 2024-08-01 + +### Features +
-Stable formatting and uniformize the code-loader (#766) +Better arg split logic for MCLI_LOADER (#799) -- add prettier to avoid doc formatting issue -- now explicitly require `!!code-loader!` to load code inside the -documentation (will hopefully help also with the missing typegraphs -issues, still under investigation) +- +- + +#### Migration notes +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- +- [ ] End-user documentation is updated to reflect the change
-### Documentation +### Miscellaneous Tasks
-Generate clients from openapi (#778) +Prepare 0.4.6 (#795) -Demonstrate how to use the openapi spec to generate clients in most -languages/frameworks. +- Bump version to 0.4.6-0 +- Add sanity tests for published SDKs +- Bump deno to 1.45.2 +- Bump rust to 1.79.0 +- Fix myriad of bugs #### Migration notes -None +... -- [ ] The change comes with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change @@ -1825,30 +1804,45 @@ None ## Summary by CodeRabbit -- **Documentation** -- Updated REST API documentation URLs with placeholders for easier -configuration. -- Added information on generating and using OpenAPI clients, including -TypeScript fetch client generation. +- **New Features** +- Introduced new logging capabilities in the `ConnectedEngine` with +adjustable logging levels. +- Implemented cleanup procedures in tests to enhance resource +management. + - **Bug Fixes** -- Corrected a regular expression in import handling to ensure accurate -replacements. -- **Chores** -- Improved file writing by appending a newline character to JSON -strings. +- Fixed import paths for permissions to ensure correct functionality in +tests and applications. + +- **Version Updates** +- Incremented version numbers across multiple projects and packages to +reflect ongoing development and improvements. + +- **Documentation** +- Added comments to clarify code behavior and potential future +considerations in various modules. + +- **Refactor** +- Optimized string handling in several functions and adjusted method +signatures for improved clarity and efficiency.
-### Features +### Refactor
-Move all the configs to one single file (#733) +(docs) Better documentation on `quick-start` page (#793) +## Improve the documentation on `quick-start` page + +- [x] add dev hunt result to homepage. + + -- Move all the configs to one single file -- Remove some specific configs from the global config variable and make -them accessible on the `Typegate` instance, to improve test -configurability. +- - +- #### Migration notes -- `SYNC_REDIS_PASSWORD` has been removed, can only be set on the -`SYNC_REDIS_URL`. - +... -- [x] The change comes with new or modified tests +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change - ---------- +- [ ] End-user documentation is updated to reflect the change
+ + +## [v0.4.5](https://github.com/metatypedev/metatype/releases/tag/v0.4.5) - 2024-07-18 + +### Bug Fixes +
-Remove restrictions for union/either types (#761) +Broken pipeline for 0.4.4 (#782) - +Fixes erroneous usage of `setup-deno` which has been replaced by `ghjk` +itself. - +#### Migration notes -In the previous versions, we restricted the variant types allowed in -union/either to be all in the same category (after flattening -multi-level unions): -- *Category 1* - **GraphQL leaf types**: scalar type, or array of scalar -type, which require no selection set on GraphQL. -- *Category 2* - **GraphQL non-leaf types**: object type or array of -object type, which require a selection set on GraphQL (aka selectable -types in the codebase). +... -Those restrictions can be lifted, and the selection field of an -union-type field will have inline fragments with type conditions for -each *Category 2* variant. No type condition is required for *Category -1* types, the selection sets are not relevant. +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + +
+
+ +Broken release pipeline 2 (#783) + + +Fix issue with the three remaining failing jobs. -The case that is not handled by this PR is when one of the variants is -an array of union type. +#### Migration notes +... - +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + +
+
+ +Release pipeline 3 (#784) + + +- Remove accidental dry-run from jsr publish +- Fix cross dockerfile #### Migration notes -_N/A_ +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- +- [ ] End-user documentation is updated to reflect the change
-Typegate in meta dev, upgrade test (#776) +Skip deno stack trace from error message (#787) -- Test the typegate upgrade from the latest published version to the -current version. -- Add a flag to run an instance of the typegate with the target -configuration (port, admin passsword) to `meta deploy`, enabled by -default for `meta dev`. +Skip the deno stack trace from the error message when tg_manage fails. @@ -1961,150 +1953,114 @@ default for `meta dev`. #### Migration notes -If you have a script that runs `meta dev`, add the flag `--no-typegate` -if you already have a typegate. - -- [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +_N/A_ ---------- +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-### Miscellaneous Tasks +### Features -
+
-Add programmatic deploy tests (#769) +(cli) Configurable backoff (#789) + - BREAKING: configurable backoff (#789) -## Add Programmatic deploy tests for the docs + - -[MET-591](https://linear.app/metatypedev/issue/MET-591/docstest-test-example-script-for-tg-deploy) +- Make the backoff configurable through the `--retry` and +`--retry-interval-ms` options. +- The default max retry count is changed to 0 on the default mode, and +remains 3 on the watch mode. +- The `--max-parallel-loads` option has been renamed to `--threads`. -- + #### Migration notes -_No Migrations Needed_ - -... - -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change - -
-
- -Bump to version 0.4.4 (#779) - - -Prepare release of the 0.4.4 version. - -#### Migration notes +The `--max-parallel-loads` option has been renamed to `--threads`. - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - -
- - -### Refactor - -
- -(sdk) Back to deno + jsr exploration (#760) - - BREAKING: back to deno + jsr exploration (#760) - - -Try reverting back to deno runtime for the typescript sdk in hope of -making the dx easier. -Hosting a custom node/npm project adds more layer of indirection which -may result in cryptic issues sometimes. - -This should also facilitate publishing on jsr although additional work -are still required on the `jco` codegen side. - -#### Migration notes - -N/A - -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- +- [x] End-user documentation is updated to reflect the change
-Move to ghjk 0.2.0 (#754) +Add list subcommand features to meta_cli (#775) -- Refactors the ghjk.ts, CI to the latest version of ghjk -- Bumps version to 0.4.4-0 -- Fixes race bug in python_sync tests -- Fixes flakeout of wasm `build.sh` scripts due to wasm-tools EOF issue -- #763 -- #746 - -#### Migration notes +new branch after conflict with main branch -- [ ] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change + -## Summary by CodeRabbit - -- **Chores** -- Updated GitHub Actions workflows to use the latest version of -`metatypedev/setup-ghjk` for improved stability and performance. -- Modified `GHJK_VERSION` and various environment variables across -multiple configuration files to ensure compatibility with updated -dependencies. -- Revised Dockerfiles to streamline environment setup and improve build -efficiency. -- Updated dependency management in `pyproject.toml` for better security -and performance. - - Enhanced logging and error handling in test scripts. + -These updates collectively optimize the development environment, -ensuring smoother builds and more reliable workflows. +- - + + +- + + + +#### Migration notes + +... + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change ---------
+
+ +Upgrade www and gha (#786) + + -### Testing - +
-(full) Update test runner (#705) +Add back gleap (#791) - - -New test runner, by default: -- Less verbose -- No output for successful tests - -Parallel tests re-enabled. - - - - - - + +- Gleap.io was removed a while back +- this adds it back so visitors can open ticket and suggest feedback +- internally, we will use this to fine tune the documentation + +
+ + +### Miscellaneous Tasks + +
+ +Bump v0.4.5 (#792) + + +- Bumps metatype version to 0.4.5 +- Bumps ghjk to latest commit +- Fixes `setup` whiz task to avoid issues on macos +- Fixes release pipeline to publish JSR - +MET-614 MET-606 MET-605 MET-613 #### Migration notes -_N/A_ +_No changes required._ - +- [ ] End-user documentation is updated to reflect the change
-## [v0.4.3](https://github.com/metatypedev/metatype/releases/tag/v0.4.3) - 2024-06-22 +## [v0.4.4](https://github.com/metatypedev/metatype/releases/tag/v0.4.4) - 2024-07-05 ### Bug Fixes
-(ci) Poetry lockfile (#732) +(gate) Ensure all deps are defined in import_map.json (#768) -- Fixes poetry lockfile and adds pre-commit hook to prevent issue from -happening +Ensure that all deps are defined in `import_map.json` with a specific +version.
-(docs) Fix demo typegraphs 2 (#756) +Missing typegraphs (#755) -Fix example typegraphs on metatype.dev. -- [x] reduce.ts -- [x] policies.ts -- [x] graphql.ts -- [x] authentication.ts - - -[MET_574](https://linear.app/metatypedev/issue/MET-574/docs-fix-demo-typegraphs-2) +- fix the typegraphs that were incorrectly formatted @@ -2187,9 +2139,7 @@ Fix example typegraphs on metatype.dev. -#### Migration notes -_No Migrations Needed_ - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -2198,7 +2148,7 @@ _No Migrations Needed_
-(docs) Fix programmatic deployment guides (#762) +Stable formatting and uniformize the code-loader (#766) -- [x] Fix typo -- [x] fix/test tg deploy -- [x] fix/test tg remove - - -[MET-587](https://linear.app/metatypedev/issue/MET-587/docs-fix-programmatic-deployment-guides) +- add prettier to avoid doc formatting issue +- now explicitly require `!!code-loader!` to load code inside the +documentation (will hopefully help also with the missing typegraphs +issues, still under investigation) -- - -#### Migration notes - -_No Migration Needed_ -... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change + +---------
+ + +### Documentation +
-Only build xtask once for the tests (#720) +Generate clients from openapi (#778) -Use the xtask binary to run the tests. +Demonstrate how to use the openapi spec to generate clients in most +languages/frameworks. + +#### Migration notes + +None - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -2253,26 +2206,68 @@ Use the xtask binary to run the tests. ## Summary by CodeRabbit -- **New Features** - - Updated platform compatibility to `x86_64-linux`. -- Added new configuration entry for enhanced versioning and platform -support. +- **Documentation** +- Updated REST API documentation URLs with placeholders for easier +configuration. +- Added information on generating and using OpenAPI clients, including +TypeScript fetch client generation. +- **Bug Fixes** +- Corrected a regular expression in import handling to ensure accurate +replacements. +- **Chores** +- Improved file writing by appending a newline character to JSON +strings. -- **Improvements** -- Modified test script to use a custom build script for better test -management. + + +
+ + +### Features + +
+ +Move all the configs to one single file (#733) + + + - + + +- Move all the configs to one single file +- Remove some specific configs from the global config variable and make +them accessible on the `Typegate` instance, to improve test +configurability. + + + + + + + +#### Migration notes + +- `SYNC_REDIS_PASSWORD` has been removed, can only be set on the +`SYNC_REDIS_URL`. + + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [x] End-user documentation is updated to reflect the change ---------
-Missing typegraphs (#741) +Remove restrictions for union/either types (#761) -**Fix Missing Typegraphs** -- attempt to fix the missing typegraphs on metatype.dev. +In the previous versions, we restricted the variant types allowed in +union/either to be all in the same category (after flattening +multi-level unions): +- *Category 1* - **GraphQL leaf types**: scalar type, or array of scalar +type, which require no selection set on GraphQL. +- *Category 2* - **GraphQL non-leaf types**: object type or array of +object type, which require a selection set on GraphQL (aka selectable +types in the codebase). - +Those restrictions can be lifted, and the selection field of an +union-type field will have inline fragments with type conditions for +each *Category 2* variant. No type condition is required for *Category +1* types, the selection sets are not relevant. + +The case that is not handled by this PR is when one of the variants is +an array of union type. -- -[MET-563](https://linear.app/metatypedev/issue/MET-563/docs-complete-missing-typegraphs) #### Migration notes -_No Migrations Needed_ -... + +_N/A_ - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change + +---------
-Upload url path and add logging in the SDK (#740) +Typegate in meta dev, upgrade test (#776) -- Fix upload url: prepare-upload returns upload tokens instead of upload -urls -- Add logging in the typegraph SDK -- Refactor the actor system in the CLI -- Use jsonrpc for communication between the CLI and typegraph processes -(over stdin/stdout) + + + + +- Test the typegate upgrade from the latest published version to the +current version. +- Add a flag to run an instance of the typegate with the target +configuration (port, admin passsword) to `meta deploy`, enabled by +default for `meta dev`. + + + + + + #### Migration notes -- The `typegraphs.deno` section of the `metatype.yaml` config file has -been replaced by `typegraphs.typescript` and `typegraphs.javascript`. -- `tg_deploy` params has changed. - +If you have a script that runs `meta dev`, add the flag `--no-typegate` +if you already have a typegate. - [x] The change comes with new or modified tests - [x] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change +- [ ] End-user documentation is updated to reflect the change + +---------
+ + +### Miscellaneous Tasks +
-Failed typegraph deployment (#758) +Add programmatic deploy tests (#769) - +- [x] Add programmatic typegraph deploy/remove tests +- [x] refactor tg_remove to accept `typegraph_name` instead of +`TypegraphOutput` obj. -- Fix casing typo in the typescript sdk -- Fix error reporting in the typescript sdk -- Display the retry number -- Warning on cancelled retry + +[MET-591](https://linear.app/metatypedev/issue/MET-591/docstest-test-example-script-for-tg-deploy) +- + #### Migration notes -N/A +_No Migrations Needed_ + +... + +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [x] End-user documentation is updated to reflect the change + +
+
+ +Bump to version 0.4.4 (#779) + + +Prepare release of the 0.4.4 version. + +#### Migration notes - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -2365,145 +2405,101 @@ N/A
-### Documentation +### Refactor -
+
-`/docs/concepts/features-overview/` (#725) +(sdk) Back to deno + jsr exploration (#760) + - BREAKING: back to deno + jsr exploration (#760) -- Re-does the feature overview page of the documentation. - - -## Summary by CodeRabbit +Try reverting back to deno runtime for the typescript sdk in hope of +making the dx easier. +Hosting a custom node/npm project adds more layer of indirection which +may result in cryptic issues sometimes. -- **New Features** -- Added a "Features Roadmap" component to the website, displaying a list -of features with details and links. +This should also facilitate publishing on jsr although additional work +are still required on the `jco` codegen side. -- **Documentation** -- Updated various guides and reference documents to improve clarity and -presentation of code examples. -- Added new sections for various features such as Typegate, Typegraph, -Runtimes, Prisma, Auth, Tooling, and SDK. +#### Migration notes -- **Bug Fixes** - - Corrected a typo in the GraphQL runtimes reference documentation. +N/A -- **Refactor** -- Replaced `SDKTabs` and `TabItem` components with `TGExample` for -better code example presentation. -- Adjusted the `MiniQL` component to handle optional properties and -default settings. - +- [x] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change ---------
-`/docs/reference/metagen` + `/docs/guides/wasm-functions` (#751) +Move to ghjk 0.2.0 (#754) -- Adds `/docs/reference/metagen` -- Adds `/docs/guides/wasm-functions` -- Adds a codegen section to `/docs/guides/external-functions` - -MDK-492. +- Refactors the ghjk.ts, CI to the latest version of ghjk +- Bumps version to 0.4.4-0 +- Fixes race bug in python_sync tests +- Fixes flakeout of wasm `build.sh` scripts due to wasm-tools EOF issue +- #763 +- #746 #### Migration notes -... - - [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments +- [x] Hard-to-understand functions have explanatory comments - [x] End-user documentation is updated to reflect the change - ## Summary by CodeRabbit -- **New Features** -- Added new targets for `metagen` with different generators and paths -for TypeScript, Python, and Rust. -- Introduced new functionality for defining and exposing typegraphs with -policies in various environments (Deno, Python, Rust). -- Added automated Rust WebAssembly project generation and compilation -script. -- Enhanced documentation with new sections and updated code examples -using `TGExample`. - -- **Bug Fixes** - - Updated `.gitignore` to exclude `*.wasm` files. - -- **Documentation** -- Updated links and added detailed instructions for generating types -using `metagen`. +- **Chores** +- Updated GitHub Actions workflows to use the latest version of +`metatypedev/setup-ghjk` for improved stability and performance. +- Modified `GHJK_VERSION` and various environment variables across +multiple configuration files to ensure compatibility with updated +dependencies. +- Revised Dockerfiles to streamline environment setup and improve build +efficiency. +- Updated dependency management in `pyproject.toml` for better security +and performance. + - Enhanced logging and error handling in test scripts. -- **Refactor** -- Switched from `HashMap` to `BTreeMap` and `HashSet` to `BTreeSet` in -various modules for better data structure handling. - - Added logging enhancements in the `Typegate` class. +These updates collectively optimize the development environment, +ensuring smoother builds and more reliable workflows. -- **Chores** - - Updated build script for Rust WebAssembly target. + - - -
-
- -Programmatic deployment blogpost (#752) - - -Blogpost to help discover programmatic deployment additions. - - -#### Migration notes - -... - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - - - - -## Summary by CodeRabbit - -- **New Features** -- Introduced programmatic deployment feature for deploying typegraphs -within the Metatype ecosystem using TypeScript/Python SDKs. -- Added new configuration options and deployment functions to enhance -automation and flexibility in deployment processes. - -- **Documentation** -- Added a new blog post detailing the programmatic deployment feature -and its usage. - - +---------
-### Features +### Testing
-(SDK) Add `globs` and `dir` support for artifact deps. (#698) +(full) Update test runner (#705) -- [x] Include glob and dir support for `PythonRuntime` deps. -- [x] Include glob and dir support for `DenoRuntime` deps. -- [x] add tests + + + + +New test runner, by default: +- Less verbose +- No output for successful tests + +Parallel tests re-enabled. @@ -2511,56 +2507,39 @@ The change includes support for declaring artifact dependencies through -[MET-441](https://linear.app/metatypedev/issue/MET-441/sdk-support-globs-and-directories-in-artifact-dependencies) #### Migration notes -In the `deps` parameter for `python.import(...)` and `deno.import(...)`, -globs and dirs can be passed in addition to files. - +_N/A_ -- [x] The change come with new or modified tests + -## Summary by CodeRabbit - -- **New Features** -- Introduced functionality for defining and deploying Typegraphs for -Deno and Python runtimes. -- Added support for defining a Deno runtime dependency graph with -policies for test scenarios. - -- **Bug Fixes** -- Corrected the structure of the `Deno.serve` call in the `serve` -function. - -- **Refactor** -- Enhanced method chaining for better readability in the `MetaTest` -class. - -- **Tests** -- Updated test coverage reporting to include new Deno runtime test -files. - - Commented out and removed outdated test cases in Deno runtime tests. - -- **Chores** - - Updated platform specification in configuration files. - - ---------- +--> + +
+ + +## [v0.4.3](https://github.com/metatypedev/metatype/releases/tag/v0.4.3) - 2024-06-22 + +### Bug Fixes + +
+ +(ci) Poetry lockfile (#732) + + +- Fixes poetry lockfile and adds pre-commit hook to prevent issue from +happening
-(docs) Add `embedded typegate` page (#747) +(docs) Fix demo typegraphs 2 (#756) -# Embedded typegate docs page - -- [x] need a page under meta-cli/embedded typegate to explain how that -works -- [x] tutorials should take advantage of the embedded one -- [x] the embedded one should be the default everything -- [x] explain that there is 2 flavors in reference/meta-cli - -[MET-562](https://linear.app/metatypedev/issue/MET-562/docs-use-embedded-whenever-possible-in-the-docs-and-examples) +Fix example typegraphs on metatype.dev. +- [x] reduce.ts +- [x] policies.ts +- [x] graphql.ts +- [x] authentication.ts -- + +[MET_574](https://linear.app/metatypedev/issue/MET-574/docs-fix-demo-typegraphs-2) -- + #### Migration notes _No Migrations Needed_ -... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -2604,295 +2579,140 @@ _No Migrations Needed_
-(mdk) Mdk python (#707) +(docs) Fix programmatic deployment guides (#762) -Mdk for python runtime - -#### Migration notes - -None + -## Summary by CodeRabbit -- **New Features** -- Introduced new functionalities for generating Python code based on -configurations, including handling of templates and required objects. -- Added Python script templates for defining typed functions and -structured objects with comprehensive data type handling. - - Enhanced type management and priority handling in utility functions. +- [x] Fix typo +- [x] fix/test tg deploy +- [x] fix/test tg remove -- **Documentation** -- Provided detailed summaries and documentation for new functionalities -and templates. + -- **Refactor** -- Implemented new structures and methods for efficient code generation -and type handling. -- **Tests** - - Added tests for defining typegraph structures and policies in Python. +[MET-587](https://linear.app/metatypedev/issue/MET-587/docs-fix-programmatic-deployment-guides) -- **Chores** -- Updated URLs in the `.ghjk/deno.lock` file to reflect new changes in -the codebase. - + ---------- - -
-
- -(mdk) `mdk_typescript` (#739) - - BREAKING: `mdk_typescript` (#739) - - -- Implements the `mdk_typescript` code generator for typescript type -inference on Deno runtime external modules. -- Ports the very simple generator already present in meta-cli. -- Removes old codegen from cli and sdk. - -#### Migration notes - -- Metagen section of `metatype.yaml` has changed. Targets are now lists -instead of maps, items no sporting `generator` field instead of key -acting as ref to generator. -- (sdk) WasmRuntime's `fromExport` method has been renamed to `export` -to make it more uniform to handler. -- (sdk) WasmRuntime `export` and `handler` method's now expect -handler/func name under `name` instead of `func`. -- (sdk) `codegen` flag has been removed from `ArtifactsConfig` object. -- (cli) `gen mod/mdk` has been simplified to just `gen` as the previous -mod option is no longer avail. - ---- - -- [x] The change comes with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - -
-
- -(mdk,gate) Hostcall (#706) - - -Introduces a mechanism for wasm materializers to access hostgate -functions. +- -This implements a pretty basic JSON wire interface, a singular -`hostcall` function that's exposed to materializers. The only -implemented function on this interface are `gql` queries. + -This is a stacked PR on top of #687. +#### Migration notes -MET-473. +_No Migration Needed_ -- [x] The change come with new or modified tests +... - - - - -## Summary by CodeRabbit - -- **New Features** -- Added an import statement for `std_url` and a new task for installing -WASI adapter related files. -- Introduced new functionalities in the application's runtime to support -additional parameters and error handling. - -- **Enhancements** -- Improved the application's handling of GraphQL queries with new error -types and display methods. -- Enhanced the WASM runtime build process to target a more appropriate -architecture. - -- **Bug Fixes** -- Fixed issues in Python and WASM runtime tests to ensure reliability -and performance. - -- **Documentation** -- Updated internal documentation to reflect new command interfaces and -environmental interactions in the application's CLI tools. - -- **Refactor** -- Refactored various internal APIs to improve code maintainability and -efficiency. - - ---------- +- [ ] End-user documentation is updated to reflect the change
-(meta-test) Update `t.engine()` impl (#716) +Only build xtask once for the tests (#720) -Update the implementation of `t.engine()` - - - -The change comes with removing the different spin-offs of `t.engine` -which arose from the previous impl of t.engine incompatibility with -artifact upload protocol. The change will make `t.engine` deploy the -artifacts in Artifact Resolution mode by running a shell command to -deploy the typegraph. - - - -... - - - - -[MET-500](https://linear.app/metatypedev/issue/MET-500/test-update-the-implementation-of-tengine) - - - -- [x] remove different versions of `t.engine` -- [x] add tg_deploy caller script which imports typegraphs dynamically -and deploys them. -- [x] make changes to make `t.engine` run in artifact resolution mode -- [x] update existing tests to adhere to the current change -- [x] pass unique different `tempDir`s to all the typegate instances -created during test. -- [x] add support for authoring multiple typegraphs in a single file in -`meta-test` and add multi typegraph tests. - -#### Migration notes - -python SDK test typegraphs' function names should be the same with the -filename of the typegraph file, for dynamic import compatibility -reasons. +Use the xtask binary to run the tests. - + ## Summary by CodeRabbit - **New Features** -- Introduced a new function `wasm_duplicate` to handle WebAssembly -runtimes with specific policies. + - Updated platform compatibility to `x86_64-linux`. +- Added new configuration entry for enhanced versioning and platform +support. -- **Refactor** -- Renamed and refactored functions and test setups to align with updated -test frameworks and improve code clarity. +- **Improvements** +- Modified test script to use a custom build script for better test +management. -- **Bug Fixes** -- Added error handling in the `getLocalPath` function to log warnings if -linking errors occur. +These changes improve platform compatibility and streamline the testing +process. -- **Tests** -- Updated test scripts to reflect changes in function calls, imports, -and engine instantiation for better test accuracy and reliability. - + + +---------
-Doc polish (#735) +Missing typegraphs (#741) -- doc polish and cleanup -- upgrade website except Docusaurus as the css issue is stil present -- bump to next pre-release -- not everything is done, but let's iterate! - - + +**Fix Missing Typegraphs** -## Summary by CodeRabbit - -- **New Features** - - Added platform compatibility for `x86_64-linux`. -- Introduced new functionalities for generating Python code and enhanced -type management. -- Added import statement for `std_url` and new task for installing WASI -adapter files. -- Enhanced runtime support for additional parameters and error handling. - -- **Improvements** -- Enhanced GraphQL query handling with new error types and display -methods. -- Improved WASM runtime build process for better architecture targeting. + -- **Documentation** - - Updated feature overview and added a "Features Roadmap" component. - - Enhanced various guides and references for better clarity. -- Added new sections for Typegate, Typegraph, Runtimes, Prisma, Auth, -Tooling, and SDK. - - Corrected typos and improved code example presentation. +- attempt to fix the missing typegraphs on metatype.dev. -- **Bug Fixes** - - Fixed issues in Python and WASM runtime tests to ensure reliability. + - +- +[MET-563](https://linear.app/metatypedev/issue/MET-563/docs-complete-missing-typegraphs) ---------- + + +#### Migration notes +_No Migrations Needed_ +... + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
- - -### Miscellaneous Tasks -
-(docs) Replace term materializer with function for user facing concepts (#736) +Upload url path and add logging in the SDK (#740) -Materializer and function might introduce confusion as they are pretty -much the same thing from the user point of view, one can be defined in -terms of the other. +- Fix upload url: prepare-upload returns upload tokens instead of upload +urls +- Add logging in the typegraph SDK +- Refactor the actor system in the CLI +- Use jsonrpc for communication between the CLI and typegraph processes +(over stdin/stdout) #### Migration notes -None - -- [ ] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - - - - -## Summary by CodeRabbit - -- **Documentation** -- Updated terminology from "materializers" to "functions" across various -documentation files to reflect a semantic shift and provide clearer -descriptions. -- Improved clarity in descriptions of custom functions, runtimes, and -their roles in the Metatype computing model. -- Corrected typos and refined explanations in multiple guides and -reference documents. +- The `typegraphs.deno` section of the `metatype.yaml` config file has +been replaced by `typegraphs.typescript` and `typegraphs.javascript`. +- `tg_deploy` params has changed. -These changes enhance the readability and consistency of our -documentation, making it easier for users to understand and implement -the features and concepts within the system. - +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments +- [x] End-user documentation is updated to reflect the change
-(docs) Embedded typegate (v0.3.x) blog (#750) +Failed typegraph deployment (#758) -# Add a blog about Embedded Typegate. - - -[MET-564](https://linear.app/metatypedev/issue/MET-564/docs-embedded-typegate-v03x) +- Fix casing typo in the typescript sdk +- Fix error reporting in the typescript sdk +- Display the retry number +- Warning on cancelled retry - - #### Migration notes -_No Migrations Needed_ +N/A - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - +- [ ] End-user documentation is updated to reflect the change + +
+ + +### Documentation + +
+ +`/docs/concepts/features-overview/` (#725) + + +- Re-does the feature overview page of the documentation. - ## Summary by CodeRabbit - **New Features** -- Introduced a new blog post on emulating server nodes locally using the -Embedded Typegate feature in Meta CLI. -- Added a new `BlogIntro` component to the website for displaying styled -blog introductions. +- Added a "Features Roadmap" component to the website, displaying a list +of features with details and links. - **Documentation** -- Updated documentation to explain how to spin up a local instance of -Typegate for testing and development. +- Updated various guides and reference documents to improve clarity and +presentation of code examples. +- Added new sections for various features such as Typegate, Typegraph, +Runtimes, Prisma, Auth, Tooling, and SDK. -- **Chores** -- Updated platform compatibility from "x86_64-linux" to -"aarch64-darwin". +- **Bug Fixes** + - Corrected a typo in the GraphQL runtimes reference documentation. - +- **Refactor** +- Replaced `SDKTabs` and `TabItem` components with `TGExample` for +better code example presentation. +- Adjusted the `MiniQL` component to handle optional properties and +default settings. + + +---------
-(website) `g.rest` reference at `/docs/reference/rest` (#734) +`/docs/reference/metagen` + `/docs/guides/wasm-functions` (#751) -Add reference page for `g.rest(..)` +- Adds `/docs/reference/metagen` +- Adds `/docs/guides/wasm-functions` +- Adds a codegen section to `/docs/guides/external-functions` + +MDK-492. #### Migration notes -None +... - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments @@ -2969,41 +2807,141 @@ None ## Summary by CodeRabbit +- **New Features** +- Added new targets for `metagen` with different generators and paths +for TypeScript, Python, and Rust. +- Introduced new functionality for defining and exposing typegraphs with +policies in various environments (Deno, Python, Rust). +- Added automated Rust WebAssembly project generation and compilation +script. +- Enhanced documentation with new sections and updated code examples +using `TGExample`. + +- **Bug Fixes** + - Updated `.gitignore` to exclude `*.wasm` files. + - **Documentation** - - Added a reference to the REST reference section in the REST guide. - - Introduced new documentation for consuming APIs using Metatype. -- Included examples in Python and TypeScript for interacting with REST -APIs. - - Explained query types, dynamic queries, and endpoint access. -- Provided guidance on accessing auto-generated documentation and -downloading the OpenAPI spec. +- Updated links and added detailed instructions for generating types +using `metagen`. - +- **Refactor** +- Switched from `HashMap` to `BTreeMap` and `HashSet` to `BTreeSet` in +various modules for better data structure handling. + - Added logging enhancements in the `Typegate` class. ---------- +- **Chores** + - Updated build script for Rust WebAssembly target. + +
-Bump deno to 1.43.6 (#737) +Programmatic deployment blogpost (#752) -Update deno to 1.43.6 and make requisite changes. +Blogpost to help discover programmatic deployment additions. + + +#### Migration notes + +... + +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change + + + + +## Summary by CodeRabbit + +- **New Features** +- Introduced programmatic deployment feature for deploying typegraphs +within the Metatype ecosystem using TypeScript/Python SDKs. +- Added new configuration options and deployment functions to enhance +automation and flexibility in deployment processes. + +- **Documentation** +- Added a new blog post detailing the programmatic deployment feature +and its usage. + + + +
+ + +### Features + +
+ +(SDK) Add `globs` and `dir` support for artifact deps. (#698) + + +- [x] Include glob and dir support for `PythonRuntime` deps. +- [x] Include glob and dir support for `DenoRuntime` deps. +- [x] add tests -Required because of dep conflicts with latest lade-sdk. +The change includes support for declaring artifact dependencies through +`globs` and `dirs` + + + + + + + +[MET-441](https://linear.app/metatypedev/issue/MET-441/sdk-support-globs-and-directories-in-artifact-dependencies) + + #### Migration notes -- [ ] The change comes with new or modified tests +In the `deps` parameter for `python.import(...)` and `deno.import(...)`, +globs and dirs can be passed in addition to files. + + +- [x] The change come with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change + + + +## Summary by CodeRabbit + +- **New Features** +- Introduced functionality for defining and deploying Typegraphs for +Deno and Python runtimes. +- Added support for defining a Deno runtime dependency graph with +policies for test scenarios. + +- **Bug Fixes** +- Corrected the structure of the `Deno.serve` call in the `serve` +function. + +- **Refactor** +- Enhanced method chaining for better readability in the `MetaTest` +class. + +- **Tests** +- Updated test coverage reporting to include new Deno runtime test +files. + - Commented out and removed outdated test cases in Deno runtime tests. + +- **Chores** + - Updated platform specification in configuration files. + + ---------
-Update `rust` dependencies (#748) +(docs) Add `embedded typegate` page (#747) +# Embedded typegate docs page + +- [x] need a page under meta-cli/embedded typegate to explain how that +works +- [x] tutorials should take advantage of the embedded one +- [x] the embedded one should be the default everything +- [x] explain that there is 2 flavors in reference/meta-cli + + +[MET-562](https://linear.app/metatypedev/issue/MET-562/docs-use-embedded-whenever-possible-in-the-docs-and-examples) -update Rust dependencies +- - -[MET-479](https://linear.app/metatypedev/issue/MET-479/sdkgate-update-rust-dependencies) +- #### Migration notes _No Migrations Needed_ - ... - [ ] The change comes with new or modified tests @@ -3039,69 +2985,95 @@ _No Migrations Needed_
-Bump `METATYPE_VERSION` to 0.4.3 (#764) - - - - -
- - -## [v0.4.2](https://github.com/metatypedev/metatype/releases/tag/v0.4.2) - 2024-05-22 - -### Bug Fixes - -
- -(release) Fix fat CLI compilation (#730) +(mdk) Mdk python (#707) -- Fix fat CLI compilation -- Bump to 0.4.2 -- Bump wasmtime to 21 -- Bump rust to 1.78.0 +Mdk for python runtime +#### Migration notes +None -- [x] The change comes with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change + +## Summary by CodeRabbit + +- **New Features** +- Introduced new functionalities for generating Python code based on +configurations, including handling of templates and required objects. +- Added Python script templates for defining typed functions and +structured objects with comprehensive data type handling. + - Enhanced type management and priority handling in utility functions. + +- **Documentation** +- Provided detailed summaries and documentation for new functionalities +and templates. + +- **Refactor** +- Implemented new structures and methods for efficient code generation +and type handling. + +- **Tests** + - Added tests for defining typegraph structures and policies in Python. + +- **Chores** +- Updated URLs in the `.ghjk/deno.lock` file to reflect new changes in +the codebase. + ---------
+
+ +(mdk) `mdk_typescript` (#739) + - BREAKING: `mdk_typescript` (#739) + +- Implements the `mdk_typescript` code generator for typescript type +inference on Deno runtime external modules. +- Ports the very simple generator already present in meta-cli. +- Removes old codegen from cli and sdk. -## [v0.4.1](https://github.com/metatypedev/metatype/releases/tag/v0.4.1) - 2024-05-20 +#### Migration notes -### Bug Fixes +- Metagen section of `metatype.yaml` has changed. Targets are now lists +instead of maps, items no sporting `generator` field instead of key +acting as ref to generator. +- (sdk) WasmRuntime's `fromExport` method has been renamed to `export` +to make it more uniform to handler. +- (sdk) WasmRuntime `export` and `handler` method's now expect +handler/func name under `name` instead of `func`. +- (sdk) `codegen` flag has been removed from `ArtifactsConfig` object. +- (cli) `gen mod/mdk` has been simplified to just `gen` as the previous +mod option is no longer avail. -
- -(SDK) Artifact upload fails when same file referred multiple times (#715) - +--- -- [x] fix the bug where duplicate artifact references causing failure -during artifact resolution(typegate) during runtime. -- [x] add sync mode tests for Python and Deno runtime. -- [x] add other edge test cases to artifact upload. - - [x] test for no artifact in typegraph - - [x] test for duplicate artifact reference in the same typegraph +- [x] The change comes with new or modified tests +- [x] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-(gate) Improve logging and responses, prepare 0.4.1 (#714) +(mdk,gate) Hostcall (#706) -- Logging before and after each faillible operation - - Runtimes: foreign resolvers -- Always log before reporting error: HTTP response -- Fix error code in artifact_service -- Add `BaseError` class for structured messages in responses +Introduces a mechanism for wasm materializers to access hostgate +functions. + +This implements a pretty basic JSON wire interface, a singular +`hostcall` function that's exposed to materializers. The only +implemented function on this interface are `gql` queries. + +This is a stacked PR on top of #687. + +MET-473. + +- [x] The change come with new or modified tests @@ -3112,96 +3084,75 @@ during artifact resolution(typegate) during runtime. ## Summary by CodeRabbit - **New Features** -- Updated Docker image versions and dependency versions to ensure -compatibility and stability. - - Added a search functionality to the app. +- Added an import statement for `std_url` and a new task for installing +WASI adapter related files. +- Introduced new functionalities in the application's runtime to support +additional parameters and error handling. + +- **Enhancements** +- Improved the application's handling of GraphQL queries with new error +types and display methods. +- Enhanced the WASM runtime build process to target a more appropriate +architecture. - **Bug Fixes** -- Enhanced error handling with specific error classes for more detailed -error messages. +- Fixed issues in Python and WASM runtime tests to ensure reliability +and performance. -- **Refactor** -- Replaced generic `Error` instances with specific error classes for -better error categorization. -- Refactored error handling in HTTP response functions to use a -`BaseError` class. +- **Documentation** +- Updated internal documentation to reflect new command interfaces and +environmental interactions in the application's CLI tools. -- **Chores** -- Updated version numbers across multiple configuration files to -`0.4.1-0`. +- **Refactor** +- Refactored various internal APIs to improve code maintainability and +efficiency. ---------
- - -### Features -
-Polish documentation and project (#696) +(meta-test) Update `t.engine()` impl (#716) - +Update the implementation of `t.engine()` -- update the headline, the overviews and many other documentation areas -- upgrades the dependencies. +The change comes with removing the different spin-offs of `t.engine` +which arose from the previous impl of t.engine incompatibility with +artifact upload protocol. The change will make `t.engine` deploy the +artifacts in Artifact Resolution mode by running a shell command to +deploy the typegraph. +... - - -- [ ] The change come with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change - - - -## Summary by CodeRabbit - + -- **Bug Fixes** -- Updated Docker image version for the `typegate` service to ensure -stability and compatibility. -- **Documentation** -- Revised `TAGLINE` for better clarity on supported languages: WASM, -Typescript, and Python. -- Updated version declarations for improved consistency and -functionality across multiple files. +[MET-500](https://linear.app/metatypedev/issue/MET-500/test-update-the-implementation-of-tengine) - + ---------- - -
- - -### Miscellaneous Tasks - -
- -(docs) Final polish to comparison table. (#709) - - -some changes to comparison table(docs) +- [x] remove different versions of `t.engine` +- [x] add tg_deploy caller script which imports typegraphs dynamically +and deploys them. +- [x] make changes to make `t.engine` run in artifact resolution mode +- [x] update existing tests to adhere to the current change +- [x] pass unique different `tempDir`s to all the typegate instances +created during test. +- [x] add support for authoring multiple typegraphs in a single file in +`meta-test` and add multi typegraph tests. #### Migration notes -_No Migrations Needed_ +python SDK test typegraphs' function names should be the same with the +filename of the typegraph file, for dynamic import compatibility +reasons. ## Summary by CodeRabbit +- **New Features** +- Introduced a new function `wasm_duplicate` to handle WebAssembly +runtimes with specific policies. + +- **Refactor** +- Renamed and refactored functions and test setups to align with updated +test frameworks and improve code clarity. -- **Documentation** -- Introduced a new section on Artifact Tracking Protocol in the -architecture documentation, explaining artifact classification and -tracking modes in Metatype. -- Updated comparisons documentation with additional platforms, criteria -for choosing Metatype, and detailed feature comparison tables. -- Renamed project directory for clarity and consistency in project setup -documentation. - **Bug Fixes** - - Removed outdated `TODO` comment in installation documentation. +- Added error handling in the `getLocalPath` function to log warnings if +linking errors occur. +- **Tests** +- Updated test scripts to reflect changes in function calls, imports, +and engine instantiation for better test accuracy and reliability.
-Bump to version 0.4.1-0 (#713) +Doc polish (#735) -- Bumps version to 0.4.1-0. -- Fixes broken release CI. -- #719 -- Adds 20 minutes to test-full timeout. +- doc polish and cleanup +- upgrade website except Docusaurus as the css issue is stil present +- bump to next pre-release +- not everything is done, but let's iterate! - -## Summary by CodeRabbit ## Summary by CodeRabbit - **New Features** -- Updated platform support for better compatibility with "x86_64-linux". + - Added platform compatibility for `x86_64-linux`. +- Introduced new functionalities for generating Python code and enhanced +type management. +- Added import statement for `std_url` and new task for installing WASI +adapter files. +- Enhanced runtime support for additional parameters and error handling. -- **Bug Fixes** -- Minor version updates across multiple configurations to enhance -stability. +- **Improvements** +- Enhanced GraphQL query handling with new error types and display +methods. +- Improved WASM runtime build process for better architecture targeting. -- **Chores** -- Updated version numbers from "0.4.0" to "0.4.1-0" across various files -and configurations. +- **Documentation** + - Updated feature overview and added a "Features Roadmap" component. + - Enhanced various guides and references for better clarity. +- Added new sections for Typegate, Typegraph, Runtimes, Prisma, Auth, +Tooling, and SDK. + - Corrected typos and improved code example presentation. -- **Refactor** -- Adjusted build and test scripts for improved efficiency and -compatibility. +- **Bug Fixes** + - Fixed issues in Python and WASM runtime tests to ensure reliability. -- **Documentation** -- Enhanced internal documentation to reflect version and platform -changes. --------- @@ -3277,272 +3230,298 @@ changes.
-## [v0.4.0](https://github.com/metatypedev/metatype/releases/tag/v0.4.0) - 2024-05-09 - -### Bug Fixes +### Miscellaneous Tasks
-(gh-tests) Fix local npm registry config (#692) +(docs) Replace term materializer with function for user facing concepts (#736) - +#### Migration notes - +None -Fix the NPM registry config in the Github tests. +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change - - + - +## Summary by CodeRabbit -#### Migration notes +- **Documentation** +- Updated terminology from "materializers" to "functions" across various +documentation files to reflect a semantic shift and provide clearer +descriptions. +- Improved clarity in descriptions of custom functions, runtimes, and +their roles in the Metatype computing model. +- Corrected typos and refined explanations in multiple guides and +reference documents. -_N/A_ +These changes enhance the readability and consistency of our +documentation, making it easier for users to understand and implement +the features and concepts within the system. - +
-Website and headline (#691) +(docs) Embedded typegate (v0.3.x) blog (#750) - - -#### Motivation and context - -Fix the CSS issue introduced by docusaurus 3.2.0 -(https://github.com/facebook/docusaurus/issues/10005). 3.2.1 should fix -it but the affected version maybe loaded by dependencies, so we will -have to wait a bit more. +# Add a blog about Embedded Typegate. - + - +[MET-564](https://linear.app/metatypedev/issue/MET-564/docs-embedded-typegate-v03x) -### Checklist + -- [ ] The change come with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change ---------- - -
-
- -Do not override log level when no verbosity flag is present (#694) - - - + - +#### Migration notes -Remove log level override by the verbosity flag when no flag is present. -It will default to the configured env_logger default level (or env -variable). +_No Migrations Needed_ - +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change -... - + -The default log level became "error" after #664, and `RUST_LOG` -environment variable where ignored. +## Summary by CodeRabbit - +- **New Features** +- Introduced a new blog post on emulating server nodes locally using the +Embedded Typegate feature in Meta CLI. +- Added a new `BlogIntro` component to the website for displaying styled +blog introductions. -#### Migration notes +- **Documentation** +- Updated documentation to explain how to spin up a local instance of +Typegate for testing and development. -_N/A_ +- **Chores** +- Updated platform compatibility from "x86_64-linux" to +"aarch64-darwin". - +
- - -### Documentation -
-Add examples for each command (#684) +(website) `g.rest` reference at `/docs/reference/rest` (#734) -#### Motivation and context - -Getting started with `meta` cli should be easy +Add reference page for `g.rest(..)` #### Migration notes None -### Checklist - -- [ ] The change come with new or modified tests +- [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- [x] End-user documentation is updated to reflect the change + + + + +## Summary by CodeRabbit + +- **Documentation** + - Added a reference to the REST reference section in the REST guide. + - Introduced new documentation for consuming APIs using Metatype. +- Included examples in Python and TypeScript for interacting with REST +APIs. + - Explained query types, dynamic queries, and endpoint access. +- Provided guidance on accessing auto-generated documentation and +downloading the OpenAPI spec. + + + +---------
-Improve `/tutorials/quick-start` section. (#681) +Bump deno to 1.43.6 (#737) -- [x] Improve Layout -- [x] Include a simple project. -- [x] Add the result/outputs to running CLI commands. -- [x] Remove Metatype cloud registration form. -- [x] Separate the CLI commands to separate code blocks -- [x] Add links to references and concepts. -- [x] Add playground. - -#### Motivation and context +Update deno to 1.43.6 and make requisite changes. -[Docs -Meta-task](https://linear.app/metatypedev/issue/MET-440/docs-meta-task) +Required because of dep conflicts with latest lade-sdk. #### Migration notes -_No Migration Needed_ - -### Checklist +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change -- [x] Test the commands and the examples. -- [ ] The change come with new or modified tests +---------
-Improve `/docs/tutorials/metatype-basics` (#688) +Update `rust` dependencies (#748) -Improve `/docs/tutorials/metatype-basics` + + + + +update Rust dependencies + + + + +[MET-479](https://linear.app/metatypedev/issue/MET-479/sdkgate-update-rust-dependencies) -[Docs -Meta-task](https://linear.app/metatypedev/issue/MET-440/docs-meta-task) + #### Migration notes _No Migrations Needed_ -### Checklist +... -- [ ] The change come with new or modified tests +- [ ] The change comes with new or modified tests +- [ ] Hard-to-understand functions have explanatory comments +- [ ] End-user documentation is updated to reflect the change
-Improve `/reference/runtimes/` (#676) +Bump `METATYPE_VERSION` to 0.4.3 (#764) -#### Motivation and context - -Better documentation - -#### Migration notes - -N/A - -### Checklist - -- [ ] The change come with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change +
+ + +## [v0.4.2](https://github.com/metatypedev/metatype/releases/tag/v0.4.2) - 2024-05-22 + +### Bug Fixes +
-Improve `/guides/external-functions` (#677) +(release) Fix fat CLI compilation (#730) -- Improvements to the `/guides/external-functions` page. -- Adds a configuration file for git-town - -#### Motivation and context - -_N/A_ - -#### Migration notes +- Fix fat CLI compilation +- Bump to 0.4.2 +- Bump wasmtime to 21 +- Bump rust to 1.78.0 -_N/A_ -### Checklist -- [ ] The change come with new or modified tests +- [x] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change ---------
+ + +## [v0.4.1](https://github.com/metatypedev/metatype/releases/tag/v0.4.1) - 2024-05-20 + +### Bug Fixes + +
+ +(SDK) Artifact upload fails when same file referred multiple times (#715) + + +- [x] fix the bug where duplicate artifact references causing failure +during artifact resolution(typegate) during runtime. +- [x] add sync mode tests for Python and Deno runtime. +- [x] add other edge test cases to artifact upload. + - [x] test for no artifact in typegraph + - [x] test for duplicate artifact reference in the same typegraph + +
-Improve `docs/reference/types` (#685) +(gate) Improve logging and responses, prepare 0.4.1 (#714) -Improves `docs/reference/types` +- Logging before and after each faillible operation + - Runtimes: foreign resolvers +- Always log before reporting error: HTTP response +- Fix error code in artifact_service +- Add `BaseError` class for structured messages in responses -#### Motivation and context + -_N/A_ -#### Migration notes + +## Summary by CodeRabbit -_N/A_ +- **New Features** +- Updated Docker image versions and dependency versions to ensure +compatibility and stability. + - Added a search functionality to the app. -### Checklist +- **Bug Fixes** +- Enhanced error handling with specific error classes for more detailed +error messages. -- [ ] The change come with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [x] End-user documentation is updated to reflect the change +- **Refactor** +- Replaced generic `Error` instances with specific error classes for +better error categorization. +- Refactored error handling in HTTP response functions to use a +`BaseError` class. + +- **Chores** +- Updated version numbers across multiple configuration files to +`0.4.1-0`. + ---------
+ + +### Features +
-Add a comparison b/n metatype and other similar solutions/products. (#697) +Polish documentation and project (#696) -- Adds a comparison table between metatype and other similar services. -- Add artifact upload protocol to `Architecture` section in docs. - - +- update the headline, the overviews and many other documentation areas +- upgrades the dependencies. - + -[MET-443](https://linear.app/metatypedev/issue/MET-443/include-comparisons-with-other-products-similar-to-metatype) -#### Migration notes -_No Migration Needed_ - - +- [x] End-user documentation is updated to reflect the change + + + +## Summary by CodeRabbit + + +- **Bug Fixes** +- Updated Docker image version for the `typegate` service to ensure +stability and compatibility. + +- **Documentation** +- Revised `TAGLINE` for better clarity on supported languages: WASM, +Typescript, and Python. +- Updated version declarations for improved consistency and +functionality across multiple files. + + + +---------
-### Features - -
- -(cli) Timeout loader process (#693) - - - +### Miscellaneous Tasks -
-(cli,sdk) Better error messages (#689) +(docs) Final polish to comparison table. (#709) -#### Motivation and context - -Make it more clear where failures happen +some changes to comparison table(docs) #### Migration notes -None - -### Checklist +_No Migrations Needed_ + -#### Migration notes -No changes needed. + +## Summary by CodeRabbit -### Checklist -- [x] The change come with new or modified tests -- [x] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- **Documentation** +- Introduced a new section on Artifact Tracking Protocol in the +architecture documentation, explaining artifact classification and +tracking modes in Metatype. +- Updated comparisons documentation with additional platforms, criteria +for choosing Metatype, and detailed feature comparison tables. +- Renamed project directory for clarity and consistency in project setup +documentation. +- **Bug Fixes** + - Removed outdated `TODO` comment in installation documentation. ---------- +
-Upload `PythonRuntime` artifacts and deps (#672) +Bump to version 0.4.1-0 (#713) -#### Motivation and context +- Bumps version to 0.4.1-0. +- Fixes broken release CI. +- #719 +- Adds 20 minutes to test-full timeout. -Track artifact/module dependencis for `PythonRuntime` + -#### Migration notes + +## Summary by CodeRabbit -`python.import(...)` and `python.import_(...)` accept an optional parameter `deps` that accepts list of dependencies for the python module. +## Summary by CodeRabbit -### Checklist +- **New Features** +- Updated platform support for better compatibility with "x86_64-linux". -- [x] The change come with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change +- **Bug Fixes** +- Minor version updates across multiple configurations to enhance +stability. + +- **Chores** +- Updated version numbers from "0.4.0" to "0.4.1-0" across various files +and configurations. + +- **Refactor** +- Adjusted build and test scripts for improved efficiency and +compatibility. + +- **Documentation** +- Enhanced internal documentation to reflect version and platform +changes. + ---------
+ + +## [v0.4.0](https://github.com/metatypedev/metatype/releases/tag/v0.4.0) - 2024-05-09 + +### Documentation +
-Upload `DenoRuntime` artifacts and deps (#674) +Add a comparison b/n metatype and other similar solutions/products. (#697) -- [x] Track deno runtime artifacts(also dependencies) -- [x] Upload artifacts during deploy to either local(single replica) or -shared(s3) -- [x] resolve artifacts(module and deps) upon typegate runtime. + -Persisting deno runtime artifacts to a local/shared storage. + +- Adds a comparison table between metatype and other similar services. +- Add artifact upload protocol to `Architecture` section in docs. -#### Migration notes + -`deno.import(...)` and `deno.import_(...)` accept an optional parameter -that accepts list of dependencies for the deno/ts module. -### Checklist + -- [x] The change come with new or modified tests +[MET-443](https://linear.app/metatypedev/issue/MET-443/include-comparisons-with-other-products-similar-to-metatype) + + + +#### Migration notes +_No Migration Needed_ + +
-
- -Enable batch prisma queries in the typegate runtime (#682) - - -Enable batch prisma queries (and transaction) in the typegate runtime - -#### Motivation and context - -Console - -[MET-381](https://linear.app/metatypedev/issue/MET-381/console-collections) - -#### Migration notes - - -### Checklist -- [x] The change come with new or modified tests -- [ ] Hard-to-understand functions have explanatory comments -- [ ] End-user documentation is updated to reflect the change - ---------- +### Features -
Artifact removal (#668) @@ -3806,14 +3798,6 @@ and stability with the new software version 0.4.0. --------- -
-
- -(sdk,gate) Bump wasmtime to 20.0.0 and wit-bindgen to 0.24.0 (#695) - - - -
@@ -3844,3 +3828,6 @@ Make sure to sync `typegate/src/types.ts` when an update is made on the typegraph schema.
+ + + diff --git a/Cargo.lock b/Cargo.lock index db49daf380..54ad24769e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1600,7 +1600,7 @@ dependencies = [ [[package]] name = "common" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "async-trait", @@ -6891,7 +6891,7 @@ dependencies = [ [[package]] name = "meta-cli" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "actix", "assert_cmd", @@ -6958,7 +6958,7 @@ dependencies = [ [[package]] name = "metagen" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "color-eyre", "common", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "mt_deno" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "deno", @@ -11268,7 +11268,7 @@ dependencies = [ [[package]] name = "substantial" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "chrono", @@ -12756,7 +12756,7 @@ dependencies = [ [[package]] name = "typegate" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "colored", "env_logger 0.11.0", @@ -12769,7 +12769,7 @@ dependencies = [ [[package]] name = "typegate_engine" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "base64 0.22.1", @@ -12814,7 +12814,7 @@ dependencies = [ [[package]] name = "typegraph_core" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "color-eyre", @@ -14567,7 +14567,7 @@ checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" [[package]] name = "xtask" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index dc6aa63196..81d6052c74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ exclude = [ ] [workspace.package] -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" edition = "2021" [workspace.dependencies] diff --git a/examples/templates/deno/api/example.ts b/examples/templates/deno/api/example.ts index 65ca612621..3dfd55f70f 100644 --- a/examples/templates/deno/api/example.ts +++ b/examples/templates/deno/api/example.ts @@ -1,6 +1,6 @@ -import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.0-rc.5/index.ts"; -import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.5/runtimes/python.ts"; -import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.5/runtimes/deno.ts"; +import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.0-rc.6/index.ts"; +import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.6/runtimes/python.ts"; +import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.6/runtimes/deno.ts"; await typegraph("example", (g) => { const pub = Policy.public(); diff --git a/examples/templates/deno/compose.yml b/examples/templates/deno/compose.yml index 32eaab03f6..a911a1a8df 100644 --- a/examples/templates/deno/compose.yml +++ b/examples/templates/deno/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.6 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/compose.yml b/examples/templates/node/compose.yml index 1814897da9..5a51e0e18d 100644 --- a/examples/templates/node/compose.yml +++ b/examples/templates/node/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.6 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/package.json b/examples/templates/node/package.json index 8fd1ab330a..87626906b7 100644 --- a/examples/templates/node/package.json +++ b/examples/templates/node/package.json @@ -6,7 +6,7 @@ "dev": "MCLI_LOADER_CMD='npm x tsx' meta dev" }, "dependencies": { - "@typegraph/sdk": "^0.5.0-rc.5" + "@typegraph/sdk": "^0.5.0-rc.6" }, "devDependencies": { "tsx": "^3.13.0", diff --git a/examples/templates/python/compose.yml b/examples/templates/python/compose.yml index 1814897da9..5a51e0e18d 100644 --- a/examples/templates/python/compose.yml +++ b/examples/templates/python/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.5.0-rc.5 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.6 restart: always ports: - "7890:7890" diff --git a/examples/templates/python/pyproject.toml b/examples/templates/python/pyproject.toml index 4f7581522c..d96722f353 100644 --- a/examples/templates/python/pyproject.toml +++ b/examples/templates/python/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "example" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" description = "" authors = [] [tool.poetry.dependencies] python = ">=3.8,<4.0" -typegraph = "0.5.0-rc.5" +typegraph = "0.5.0-rc.6" [build-system] requires = ["poetry-core"] diff --git a/pyproject.toml b/pyproject.toml index 3fe6894989..3286edbfcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ [tool.poetry] name = "metatype" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" description = "" authors = [] diff --git a/src/meta-lsp/package.json b/src/meta-lsp/package.json index 6d5daf839f..687932fa8c 100644 --- a/src/meta-lsp/package.json +++ b/src/meta-lsp/package.json @@ -4,7 +4,7 @@ "description": "VSCode extension for Metatype support", "icon": "logo.png", "author": "Metatype Team", - "version": "0.5.0-rc.5", + "version": "0.5.0-rc.6", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/meta-lsp/ts-language-server/package.json b/src/meta-lsp/ts-language-server/package.json index e3f80f4774..0aca12ac35 100644 --- a/src/meta-lsp/ts-language-server/package.json +++ b/src/meta-lsp/ts-language-server/package.json @@ -2,7 +2,7 @@ "name": "typegraph-ts-server", "description": "TypeScript language server for TypeGraph", "author": "Metatype Team", - "version": "0.5.0-rc.5", + "version": "0.5.0-rc.6", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/meta-lsp/vscode-metatype-support/package.json b/src/meta-lsp/vscode-metatype-support/package.json index a8cf018d26..4e59ab4eaa 100644 --- a/src/meta-lsp/vscode-metatype-support/package.json +++ b/src/meta-lsp/vscode-metatype-support/package.json @@ -2,7 +2,7 @@ "name": "vscode-metatype-support", "description": "VSCode extension for Metatype support", "author": "Metatype Team", - "version": "0.5.0-rc.5", + "version": "0.5.0-rc.6", "repository": { "type": "git", "url": "https://github.com/metatypedev/metatype" diff --git a/src/pyrt_wit_wire/pyproject.toml b/src/pyrt_wit_wire/pyproject.toml index 429c6d1d1c..2219100cea 100644 --- a/src/pyrt_wit_wire/pyproject.toml +++ b/src/pyrt_wit_wire/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrt_wit_wire" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" description = "Wasm component implementing the PythonRuntime host using wit_wire protocol." license = "MPL-2.0" readme = "README.md" diff --git a/src/typegate/src/runtimes/wit_wire/mod.ts b/src/typegate/src/runtimes/wit_wire/mod.ts index 0270fd2214..f6299e8cad 100644 --- a/src/typegate/src/runtimes/wit_wire/mod.ts +++ b/src/typegate/src/runtimes/wit_wire/mod.ts @@ -9,7 +9,7 @@ import { getLogger } from "../../log.ts"; const logger = getLogger(import.meta); -const METATYPE_VERSION = "0.5.0-rc.5"; +const METATYPE_VERSION = "0.5.0-rc.6"; export class WitWireMessenger { static async init( diff --git a/src/typegraph/core/Cargo.toml b/src/typegraph/core/Cargo.toml index 6752ff48f0..7df4647268 100644 --- a/src/typegraph/core/Cargo.toml +++ b/src/typegraph/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typegraph_core" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" edition = "2021" [lib] diff --git a/src/typegraph/core/src/global_store.rs b/src/typegraph/core/src/global_store.rs index dd31e9f310..5f95ee80af 100644 --- a/src/typegraph/core/src/global_store.rs +++ b/src/typegraph/core/src/global_store.rs @@ -107,7 +107,7 @@ const PREDEFINED_DENO_FUNCTIONS: &[&str] = &["identity", "true"]; thread_local! { pub static STORE: RefCell = RefCell::new(Store::new()); - pub static SDK_VERSION: String = "0.5.0-rc.5".to_owned(); + pub static SDK_VERSION: String = "0.5.0-rc.6".to_owned(); } fn with_store T>(f: F) -> T { diff --git a/src/typegraph/deno/deno.json b/src/typegraph/deno/deno.json index 99d2a8b2d9..960caa6de9 100644 --- a/src/typegraph/deno/deno.json +++ b/src/typegraph/deno/deno.json @@ -1,6 +1,6 @@ { "name": "@typegraph/sdk", - "version": "0.5.0-rc.5", + "version": "0.5.0-rc.6", "publish": { "exclude": [ "!src/gen", diff --git a/src/typegraph/python/pyproject.toml b/src/typegraph/python/pyproject.toml index bc4c252bd3..582d73e186 100644 --- a/src/typegraph/python/pyproject.toml +++ b/src/typegraph/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typegraph" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are." authors = ["Metatype Contributors "] license = "MPL-2.0" diff --git a/src/typegraph/python/typegraph/__init__.py b/src/typegraph/python/typegraph/__init__.py index ef07c55fd5..d6b9ef3382 100644 --- a/src/typegraph/python/typegraph/__init__.py +++ b/src/typegraph/python/typegraph/__init__.py @@ -5,4 +5,4 @@ from typegraph.policy import Policy # noqa from typegraph import effects as fx # noqa -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" diff --git a/src/xtask/Cargo.toml b/src/xtask/Cargo.toml index a93a17451c..a792626bb1 100644 --- a/src/xtask/Cargo.toml +++ b/src/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" edition = "2021" # this allows us to exclude the rust files diff --git a/tests/metagen/__snapshots__/metagen_test.ts.snap b/tests/metagen/__snapshots__/metagen_test.ts.snap index 87775e9dbe..8631459cdf 100644 --- a/tests/metagen/__snapshots__/metagen_test.ts.snap +++ b/tests/metagen/__snapshots__/metagen_test.ts.snap @@ -448,7 +448,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.5"; + static MT_VERSION: &str = "0.5.0-rc.6"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } @@ -1254,7 +1254,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.5"; + static MT_VERSION: &str = "0.5.0-rc.6"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } diff --git a/tests/runtimes/wasm_reflected/rust/Cargo.toml b/tests/runtimes/wasm_reflected/rust/Cargo.toml index ea6f24c97d..7ffa7b88b9 100644 --- a/tests/runtimes/wasm_reflected/rust/Cargo.toml +++ b/tests/runtimes/wasm_reflected/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust" -version = "0.5.0-rc.5" +version = "0.5.0-rc.6" edition = "2021" [lib] diff --git a/tools/consts.ts b/tools/consts.ts index 4c11549171..898ab8eaca 100644 --- a/tools/consts.ts +++ b/tools/consts.ts @@ -1,8 +1,8 @@ // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 -export const METATYPE_VERSION = "0.5.0-rc.5"; -export const PUBLISHED_VERSION = "0.5.0-rc.4"; +export const METATYPE_VERSION = "0.5.0-rc.6"; +export const PUBLISHED_VERSION = "0.5.0-rc.5"; export const GHJK_VERSION = "v0.2.1"; export const GHJK_ACTION_VERSION = "318209a9d215f70716a4ac89dbeb9653a2deb8bc"; export const RUST_VERSION = "1.80.1";