From 980f694ee1f123ca9c17a6af5ec663368ef689a8 Mon Sep 17 00:00:00 2001 From: panda2134 Date: Tue, 12 Mar 2024 03:17:02 -0500 Subject: [PATCH 01/25] ammonite: 2.5.3 -> 3.0.0-M1 This update breaks binary compatibility with ammonite 2.5.x. --- pkgs/development/tools/ammonite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix index 39f69f402b94..aa38d17cda6b 100644 --- a/pkgs/development/tools/ammonite/default.nix +++ b/pkgs/development/tools/ammonite/default.nix @@ -7,7 +7,7 @@ let common = { scalaVersion, sha256 }: stdenv.mkDerivation rec { pname = "ammonite"; - version = "2.5.3"; + version = "3.0.0-M1"; src = fetchurl { url = @@ -82,10 +82,10 @@ let in { ammonite_2_12 = common { scalaVersion = "2.12"; - sha256 = "sha256-Iov55ohFjcGhur5UEng7aAZJPVua1H/JaKKW6OKS6Zg="; + sha256 = "sha256-SlweOVHudknbInM4rfEPJ9bLd3Z/EImLhVLzeKfjfMQ="; }; ammonite_2_13 = common { scalaVersion = "2.13"; - sha256 = "sha256-dzUhKUQDHrYZ4WyCk4z4CTxb6vK05qfApR/WPOwhA5s="; + sha256 = "sha256-2BydXmF6AkWDdG5rbRLD2I/6z3w3UD0dCd5Tp+3lU7c="; }; } From f917ed536b91b8cd5f9cdb0d6c2482bbfc6251c4 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 15 Mar 2024 17:18:35 +0100 Subject: [PATCH 02/25] doc: migrate lib.attrsets to use doc-comments --- lib/attrsets.nix | 1689 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 1242 insertions(+), 447 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 34054460ba76..9cdf0f75098a 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -1,4 +1,6 @@ -/* Operations on attribute sets. */ +/** + Operations on attribute sets. +*/ { lib }: let @@ -12,28 +14,53 @@ rec { inherit (builtins) attrNames listToAttrs hasAttr isAttrs getAttr removeAttrs; - /* Return an attribute from nested attribute sets. + /** + Return an attribute from nested attribute sets. - Nix has an [attribute selection operator `. or`](https://nixos.org/manual/nix/stable/language/operators#attribute-selection) which is sufficient for such queries, as long as the number of attributes is static. For example: + Nix has an [attribute selection operator `. or`](https://nixos.org/manual/nix/stable/language/operators#attribute-selection) which is sufficient for such queries, as long as the number of attributes is static. For example: - ```nix - (x.a.b or 6) == attrByPath ["a" "b"] 6 x - # and - (x.${f p}."example.com" or 6) == attrByPath [ (f p) "example.com" ] 6 x - ``` + ```nix + (x.a.b or 6) == attrByPath ["a" "b"] 6 x + # and + (x.${f p}."example.com" or 6) == attrByPath [ (f p) "example.com" ] 6 x + ``` - Example: - x = { a = { b = 3; }; } - # ["a" "b"] is equivalent to x.a.b - # 6 is a default value to return if the path does not exist in attrset - attrByPath ["a" "b"] 6 x - => 3 - attrByPath ["z" "z"] 6 x - => 6 - Type: - attrByPath :: [String] -> Any -> AttrSet -> Any + # Inputs + `attrPath` + + : A list of strings representing the attribute path to return from `set` + + `default` + + : Default value if `attrPath` does not resolve to an existing value + + `set` + + : The nested attribute set to select values from + + # Type + + ``` + attrByPath :: [String] -> Any -> AttrSet -> Any + ``` + + # Examples + :::{.example} + ## `lib.attrsets.attrByPath` usage example + + ```nix + x = { a = { b = 3; }; } + # ["a" "b"] is equivalent to x.a.b + # 6 is a default value to return if the path does not exist in attrset + attrByPath ["a" "b"] 6 x + => 3 + attrByPath ["z" "z"] 6 x + => 6 + ``` + + ::: */ attrByPath = # A list of strings representing the attribute path to return from `set` @@ -57,32 +84,54 @@ rec { in attrByPath' 0 set; - /* Return if an attribute from nested attribute set exists. + /** + Return if an attribute from nested attribute set exists. - Nix has a [has attribute operator `?`](https://nixos.org/manual/nix/stable/language/operators#has-attribute), which is sufficient for such queries, as long as the number of attributes is static. For example: + Nix has a [has attribute operator `?`](https://nixos.org/manual/nix/stable/language/operators#has-attribute), which is sufficient for such queries, as long as the number of attributes is static. For example: - ```nix - (x?a.b) == hasAttryByPath ["a" "b"] x - # and - (x?${f p}."example.com") == hasAttryByPath [ (f p) "example.com" ] x - ``` + ```nix + (x?a.b) == hasAttryByPath ["a" "b"] x + # and + (x?${f p}."example.com") == hasAttryByPath [ (f p) "example.com" ] x + ``` - **Laws**: - 1. ```nix - hasAttrByPath [] x == true - ``` + **Laws**: + 1. ```nix + hasAttrByPath [] x == true + ``` - Example: - x = { a = { b = 3; }; } - hasAttrByPath ["a" "b"] x - => true - hasAttrByPath ["z" "z"] x - => false - hasAttrByPath [] (throw "no need") - => true - Type: - hasAttrByPath :: [String] -> AttrSet -> Bool + # Inputs + + `attrPath` + + : A list of strings representing the attribute path to check from `set` + + `e` + + : The nested attribute set to check + + # Type + + ``` + hasAttrByPath :: [String] -> AttrSet -> Bool + ``` + + # Examples + :::{.example} + ## `lib.attrsets.hasAttrByPath` usage example + + ```nix + x = { a = { b = 3; }; } + hasAttrByPath ["a" "b"] x + => true + hasAttrByPath ["z" "z"] x + => false + hasAttrByPath [] (throw "no need") + => true + ``` + + ::: */ hasAttrByPath = # A list of strings representing the attribute path to check from `set` @@ -103,7 +152,7 @@ rec { in hasAttrByPath' 0 e; - /* + /** Return the longest prefix of an attribute path that refers to an existing attribute in a nesting of attribute sets. Can be used after [`mapAttrsRecursiveCond`](#function-library-lib.attrsets.mapAttrsRecursiveCond) to apply a condition, @@ -120,19 +169,40 @@ rec { hasAttrByPath (attrsets.longestValidPathPrefix p x) x == true ``` - Example: - x = { a = { b = 3; }; } - attrsets.longestValidPathPrefix ["a" "b" "c"] x - => ["a" "b"] - attrsets.longestValidPathPrefix ["a"] x - => ["a"] - attrsets.longestValidPathPrefix ["z" "z"] x - => [] - attrsets.longestValidPathPrefix ["z" "z"] (throw "no need") - => [] - Type: - attrsets.longestValidPathPrefix :: [String] -> Value -> [String] + # Inputs + + `attrPath` + + : A list of strings representing the longest possible path that may be returned. + + `v` + + : The nested attribute set to check. + + # Type + + ``` + attrsets.longestValidPathPrefix :: [String] -> Value -> [String] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.longestValidPathPrefix` usage example + + ```nix + x = { a = { b = 3; }; } + attrsets.longestValidPathPrefix ["a" "b" "c"] x + => ["a" "b"] + attrsets.longestValidPathPrefix ["a"] x + => ["a"] + attrsets.longestValidPathPrefix ["z" "z"] x + => [] + attrsets.longestValidPathPrefix ["z" "z"] (throw "no need") + => [] + ``` + + ::: */ longestValidPathPrefix = # A list of strings representing the longest possible path that may be returned. @@ -168,14 +238,36 @@ rec { in getPrefixForSetAtIndex v 0; - /* Create a new attribute set with `value` set at the nested attribute location specified in `attrPath`. + /** + Create a new attribute set with `value` set at the nested attribute location specified in `attrPath`. - Example: - setAttrByPath ["a" "b"] 3 - => { a = { b = 3; }; } - Type: - setAttrByPath :: [String] -> Any -> AttrSet + # Inputs + + `attrPath` + + : A list of strings representing the attribute path to set + + `value` + + : The value to set at the location described by `attrPath` + + # Type + + ``` + setAttrByPath :: [String] -> Any -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.setAttrByPath` usage example + + ```nix + setAttrByPath ["a" "b"] 3 + => { a = { b = 3; }; } + ``` + + ::: */ setAttrByPath = # A list of strings representing the attribute path to set @@ -190,7 +282,8 @@ rec { else { ${elemAt attrPath n} = atDepth (n + 1); }; in atDepth 0; - /* Like `attrByPath`, but without a default value. If it doesn't find the + /** + Like `attrByPath`, but without a default value. If it doesn't find the path it will throw an error. Nix has an [attribute selection operator](https://nixos.org/manual/nix/stable/language/operators#attribute-selection) which is sufficient for such queries, as long as the number of attributes is static. For example: @@ -201,15 +294,36 @@ rec { x.${f p}."example.com" == getAttrByPath [ (f p) "example.com" ] x ``` - Example: - x = { a = { b = 3; }; } - getAttrFromPath ["a" "b"] x - => 3 - getAttrFromPath ["z" "z"] x - => error: cannot find attribute `z.z' - Type: - getAttrFromPath :: [String] -> AttrSet -> Any + # Inputs + + `attrPath` + + : A list of strings representing the attribute path to get from `set` + + `set` + + : The nested attribute set to find the value in. + + # Type + + ``` + getAttrFromPath :: [String] -> AttrSet -> Any + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getAttrFromPath` usage example + + ```nix + x = { a = { b = 3; }; } + getAttrFromPath ["a" "b"] x + => 3 + getAttrFromPath ["z" "z"] x + => error: cannot find attribute `z.z' + ``` + + ::: */ getAttrFromPath = # A list of strings representing the attribute path to get from `set` @@ -218,19 +332,41 @@ rec { set: attrByPath attrPath (abort ("cannot find attribute `" + concatStringsSep "." attrPath + "'")) set; - /* Map each attribute in the given set and merge them into a new attribute set. + /** + Map each attribute in the given set and merge them into a new attribute set. - Type: - concatMapAttrs :: (String -> a -> AttrSet) -> AttrSet -> AttrSet - Example: - concatMapAttrs - (name: value: { - ${name} = value; - ${name + value} = value; - }) - { x = "a"; y = "b"; } - => { x = "a"; xa = "a"; y = "b"; yb = "b"; } + # Inputs + + `f` + + : 1\. Function argument + + `v` + + : 2\. Function argument + + # Type + + ``` + concatMapAttrs :: (String -> a -> AttrSet) -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.concatMapAttrs` usage example + + ```nix + concatMapAttrs + (name: value: { + ${name} = value; + ${name + value} = value; + }) + { x = "a"; y = "b"; } + => { x = "a"; xa = "a"; y = "b"; yb = "b"; } + ``` + + ::: */ concatMapAttrs = f: v: foldl' mergeAttrs { } @@ -239,49 +375,61 @@ rec { ); - /* Update or set specific paths of an attribute set. + /** + Update or set specific paths of an attribute set. - Takes a list of updates to apply and an attribute set to apply them to, - and returns the attribute set with the updates applied. Updates are - represented as `{ path = ...; update = ...; }` values, where `path` is a - list of strings representing the attribute path that should be updated, - and `update` is a function that takes the old value at that attribute path - as an argument and returns the new - value it should be. + Takes a list of updates to apply and an attribute set to apply them to, + and returns the attribute set with the updates applied. Updates are + represented as `{ path = ...; update = ...; }` values, where `path` is a + list of strings representing the attribute path that should be updated, + and `update` is a function that takes the old value at that attribute path + as an argument and returns the new + value it should be. - Properties: + Properties: - - Updates to deeper attribute paths are applied before updates to more - shallow attribute paths + - Updates to deeper attribute paths are applied before updates to more + shallow attribute paths - - Multiple updates to the same attribute path are applied in the order - they appear in the update list + - Multiple updates to the same attribute path are applied in the order + they appear in the update list - - If any but the last `path` element leads into a value that is not an - attribute set, an error is thrown + - If any but the last `path` element leads into a value that is not an + attribute set, an error is thrown - - If there is an update for an attribute path that doesn't exist, - accessing the argument in the update function causes an error, but - intermediate attribute sets are implicitly created as needed + - If there is an update for an attribute path that doesn't exist, + accessing the argument in the update function causes an error, but + intermediate attribute sets are implicitly created as needed - Example: - updateManyAttrsByPath [ - { - path = [ "a" "b" ]; - update = old: { d = old.c; }; - } - { - path = [ "a" "b" "c" ]; - update = old: old + 1; - } - { - path = [ "x" "y" ]; - update = old: "xy"; - } - ] { a.b.c = 0; } - => { a = { b = { d = 1; }; }; x = { y = "xy"; }; } + # Type - Type: updateManyAttrsByPath :: [{ path :: [String]; update :: (Any -> Any); }] -> AttrSet -> AttrSet + ``` + updateManyAttrsByPath :: [{ path :: [String]; update :: (Any -> Any); }] -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.updateManyAttrsByPath` usage example + + ```nix + updateManyAttrsByPath [ + { + path = [ "a" "b" ]; + update = old: { d = old.c; }; + } + { + path = [ "a" "b" "c" ]; + update = old: old + 1; + } + { + path = [ "x" "y" ]; + update = old: "xy"; + } + ] { a.b.c = 0; } + => { a = { b = { d = 1; }; }; x = { y = "xy"; }; } + ``` + + ::: */ updateManyAttrsByPath = let # When recursing into attributes, instead of updating the `path` of each @@ -342,14 +490,36 @@ rec { in updates: value: go 0 true value updates; - /* Return the specified attributes from a set. + /** + Return the specified attributes from a set. - Example: - attrVals ["a" "b" "c"] as - => [as.a as.b as.c] - Type: - attrVals :: [String] -> AttrSet -> [Any] + # Inputs + + `nameList` + + : The list of attributes to fetch from `set`. Each attribute name must exist on the attrbitue set + + `set` + + : The set to get attribute values from + + # Type + + ``` + attrVals :: [String] -> AttrSet -> [Any] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.attrVals` usage example + + ```nix + attrVals ["a" "b" "c"] as + => [as.a as.b as.c] + ``` + + ::: */ attrVals = # The list of attributes to fetch from `set`. Each attribute name must exist on the attrbitue set @@ -358,28 +528,61 @@ rec { set: map (x: set.${x}) nameList; - /* Return the values of all attributes in the given set, sorted by - attribute name. + /** + Return the values of all attributes in the given set, sorted by + attribute name. - Example: - attrValues {c = 3; a = 1; b = 2;} - => [1 2 3] + # Type - Type: - attrValues :: AttrSet -> [Any] + ``` + attrValues :: AttrSet -> [Any] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.attrValues` usage example + + ```nix + attrValues {c = 3; a = 1; b = 2;} + => [1 2 3] + ``` + + ::: */ attrValues = builtins.attrValues; - /* Given a set of attribute names, return the set of the corresponding - attributes from the given set. + /** + Given a set of attribute names, return the set of the corresponding + attributes from the given set. - Example: - getAttrs [ "a" "b" ] { a = 1; b = 2; c = 3; } - => { a = 1; b = 2; } - Type: - getAttrs :: [String] -> AttrSet -> AttrSet + # Inputs + + `names` + + : A list of attribute names to get out of `set` + + `attrs` + + : The set to get the named attributes from + + # Type + + ``` + getAttrs :: [String] -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getAttrs` usage example + + ```nix + getAttrs [ "a" "b" ] { a = 1; b = 2; c = 3; } + => { a = 1; b = 2; } + ``` + + ::: */ getAttrs = # A list of attribute names to get out of `set` @@ -387,28 +590,61 @@ rec { # The set to get the named attributes from attrs: genAttrs names (name: attrs.${name}); - /* Collect each attribute named `attr` from a list of attribute - sets. Sets that don't contain the named attribute are ignored. + /** + Collect each attribute named `attr` from a list of attribute + sets. Sets that don't contain the named attribute are ignored. - Example: - catAttrs "a" [{a = 1;} {b = 0;} {a = 2;}] - => [1 2] + # Type - Type: - catAttrs :: String -> [AttrSet] -> [Any] + ``` + catAttrs :: String -> [AttrSet] -> [Any] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.catAttrs` usage example + + ```nix + catAttrs "a" [{a = 1;} {b = 0;} {a = 2;}] + => [1 2] + ``` + + ::: */ catAttrs = builtins.catAttrs; - /* Filter an attribute set by removing all attributes for which the - given predicate return false. + /** + Filter an attribute set by removing all attributes for which the + given predicate return false. - Example: - filterAttrs (n: v: n == "foo") { foo = 1; bar = 2; } - => { foo = 1; } - Type: - filterAttrs :: (String -> Any -> Bool) -> AttrSet -> AttrSet + # Inputs + + `pred` + + : Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. + + `set` + + : The attribute set to filter + + # Type + + ``` + filterAttrs :: (String -> Any -> Bool) -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.filterAttrs` usage example + + ```nix + filterAttrs (n: v: n == "foo") { foo = 1; bar = 2; } + => { foo = 1; } + ``` + + ::: */ filterAttrs = # Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. @@ -418,15 +654,37 @@ rec { listToAttrs (concatMap (name: let v = set.${name}; in if pred name v then [(nameValuePair name v)] else []) (attrNames set)); - /* Filter an attribute set recursively by removing all attributes for - which the given predicate return false. + /** + Filter an attribute set recursively by removing all attributes for + which the given predicate return false. - Example: - filterAttrsRecursive (n: v: v != null) { foo = { bar = null; }; } - => { foo = {}; } - Type: - filterAttrsRecursive :: (String -> Any -> Bool) -> AttrSet -> AttrSet + # Inputs + + `pred` + + : Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. + + `set` + + : The attribute set to filter + + # Type + + ``` + filterAttrsRecursive :: (String -> Any -> Bool) -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.filterAttrsRecursive` usage example + + ```nix + filterAttrsRecursive (n: v: v != null) { foo = { bar = null; }; } + => { foo = {}; } + ``` + + ::: */ filterAttrsRecursive = # Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. @@ -445,7 +703,7 @@ rec { ) (attrNames set) ); - /* + /** Like [`lib.lists.foldl'`](#function-library-lib.lists.foldl-prime) but for attribute sets. Iterates over every name-value pair in the given attribute set. The result of the callback function is often called `acc` for accumulator. It is passed between callbacks from left to right and the final `acc` is the return value of `foldlAttrs`. @@ -455,49 +713,74 @@ rec { `lib.foldAttrs` which has nothing to do with this function, despite the similar name. - Example: - foldlAttrs - (acc: name: value: { - sum = acc.sum + value; - names = acc.names ++ [name]; - }) - { sum = 0; names = []; } - { - foo = 1; - bar = 10; - } - -> - { - sum = 11; - names = ["bar" "foo"]; - } - foldlAttrs - (throw "function not needed") - 123 - {}; - -> - 123 + # Inputs - foldlAttrs - (acc: _: _: acc) - 3 - { z = throw "value not needed"; a = throw "value not needed"; }; - -> - 3 + `f` - The accumulator doesn't have to be an attrset. - It can be as simple as a number or string. + : 1\. Function argument - foldlAttrs - (acc: _: v: acc * 10 + v) - 1 - { z = 1; a = 2; }; - -> - 121 + `init` - Type: - foldlAttrs :: ( a -> String -> b -> a ) -> a -> { ... :: b } -> a + : 2\. Function argument + + `set` + + : 3\. Function argument + + # Type + + ``` + foldlAttrs :: ( a -> String -> b -> a ) -> a -> { ... :: b } -> a + ``` + + # Examples + :::{.example} + ## `lib.attrsets.foldlAttrs` usage example + + ```nix + foldlAttrs + (acc: name: value: { + sum = acc.sum + value; + names = acc.names ++ [name]; + }) + { sum = 0; names = []; } + { + foo = 1; + bar = 10; + } + -> + { + sum = 11; + names = ["bar" "foo"]; + } + + foldlAttrs + (throw "function not needed") + 123 + {}; + -> + 123 + + foldlAttrs + (acc: _: _: acc) + 3 + { z = throw "value not needed"; a = throw "value not needed"; }; + -> + 3 + + The accumulator doesn't have to be an attrset. + It can be as simple as a number or string. + + foldlAttrs + (acc: _: v: acc * 10 + v) + 1 + { z = 1; a = 2; }; + -> + 121 + ``` + + ::: */ foldlAttrs = f: init: set: foldl' @@ -505,15 +788,40 @@ rec { init (attrNames set); - /* Apply fold functions to values grouped by key. + /** + Apply fold functions to values grouped by key. - Example: - foldAttrs (item: acc: [item] ++ acc) [] [{ a = 2; } { a = 3; }] - => { a = [ 2 3 ]; } - Type: - foldAttrs :: (Any -> Any -> Any) -> Any -> [AttrSets] -> Any + # Inputs + `op` + + : A function, given a value and a collector combines the two. + + `nul` + + : The starting value. + + `list_of_attrs` + + : A list of attribute sets to fold together by key. + + # Type + + ``` + foldAttrs :: (Any -> Any -> Any) -> Any -> [AttrSets] -> Any + ``` + + # Examples + :::{.example} + ## `lib.attrsets.foldAttrs` usage example + + ```nix + foldAttrs (item: acc: [item] ++ acc) [] [{ a = 2; } { a = 3; }] + => { a = [ 2 3 ]; } + ``` + + ::: */ foldAttrs = # A function, given a value and a collector combines the two. @@ -529,20 +837,42 @@ rec { ) {} list_of_attrs; - /* Recursively collect sets that verify a given predicate named `pred` - from the set `attrs`. The recursion is stopped when the predicate is - verified. + /** + Recursively collect sets that verify a given predicate named `pred` + from the set `attrs`. The recursion is stopped when the predicate is + verified. - Example: - collect isList { a = { b = ["b"]; }; c = [1]; } - => [["b"] [1]] - collect (x: x ? outPath) - { a = { outPath = "a/"; }; b = { outPath = "b/"; }; } - => [{ outPath = "a/"; } { outPath = "b/"; }] + # Inputs - Type: - collect :: (AttrSet -> Bool) -> AttrSet -> [x] + `pred` + + : Given an attribute's value, determine if recursion should stop. + + `attrs` + + : The attribute set to recursively collect. + + # Type + + ``` + collect :: (AttrSet -> Bool) -> AttrSet -> [x] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.collect` usage example + + ```nix + collect isList { a = { b = ["b"]; }; c = [1]; } + => [["b"] [1]] + + collect (x: x ? outPath) + { a = { outPath = "a/"; }; b = { outPath = "b/"; }; } + => [{ outPath = "a/"; } { outPath = "b/"; }] + ``` + + ::: */ collect = # Given an attribute's value, determine if recursion should stop. @@ -556,18 +886,37 @@ rec { else []; - /* Return the cartesian product of attribute set value combinations. + /** + Return the cartesian product of attribute set value combinations. - Example: - cartesianProductOfSets { a = [ 1 2 ]; b = [ 10 20 ]; } - => [ - { a = 1; b = 10; } - { a = 1; b = 20; } - { a = 2; b = 10; } - { a = 2; b = 20; } - ] - Type: - cartesianProductOfSets :: AttrSet -> [AttrSet] + + # Inputs + + `attrsOfLists` + + : Attribute set with attributes that are lists of values + + # Type + + ``` + cartesianProductOfSets :: AttrSet -> [AttrSet] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.cartesianProductOfSets` usage example + + ```nix + cartesianProductOfSets { a = [ 1 2 ]; b = [ 10 20 ]; } + => [ + { a = 1; b = 10; } + { a = 1; b = 20; } + { a = 2; b = 10; } + { a = 2; b = 20; } + ] + ``` + + ::: */ cartesianProductOfSets = # Attribute set with attributes that are lists of values @@ -579,14 +928,36 @@ rec { ) [{}] (attrNames attrsOfLists); - /* Utility function that creates a `{name, value}` pair as expected by `builtins.listToAttrs`. + /** + Utility function that creates a `{name, value}` pair as expected by `builtins.listToAttrs`. - Example: - nameValuePair "some" 6 - => { name = "some"; value = 6; } - Type: - nameValuePair :: String -> Any -> { name :: String; value :: Any; } + # Inputs + + `name` + + : Attribute name + + `value` + + : Attribute value + + # Type + + ``` + nameValuePair :: String -> Any -> { name :: String; value :: Any; } + ``` + + # Examples + :::{.example} + ## `lib.attrsets.nameValuePair` usage example + + ```nix + nameValuePair "some" 6 + => { name = "some"; value = 6; } + ``` + + ::: */ nameValuePair = # Attribute name @@ -596,30 +967,63 @@ rec { { inherit name value; }; - /* Apply a function to each element in an attribute set, creating a new attribute set. + /** + Apply a function to each element in an attribute set, creating a new attribute set. - Example: - mapAttrs (name: value: name + "-" + value) - { x = "foo"; y = "bar"; } - => { x = "x-foo"; y = "y-bar"; } + # Type - Type: - mapAttrs :: (String -> Any -> Any) -> AttrSet -> AttrSet + ``` + mapAttrs :: (String -> Any -> Any) -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.mapAttrs` usage example + + ```nix + mapAttrs (name: value: name + "-" + value) + { x = "foo"; y = "bar"; } + => { x = "x-foo"; y = "y-bar"; } + ``` + + ::: */ mapAttrs = builtins.mapAttrs; - /* Like `mapAttrs`, but allows the name of each attribute to be - changed in addition to the value. The applied function should - return both the new name and value as a `nameValuePair`. + /** + Like `mapAttrs`, but allows the name of each attribute to be + changed in addition to the value. The applied function should + return both the new name and value as a `nameValuePair`. - Example: - mapAttrs' (name: value: nameValuePair ("foo_" + name) ("bar-" + value)) - { x = "a"; y = "b"; } - => { foo_x = "bar-a"; foo_y = "bar-b"; } - Type: - mapAttrs' :: (String -> Any -> { name :: String; value :: Any; }) -> AttrSet -> AttrSet + # Inputs + + `f` + + : A function, given an attribute's name and value, returns a new `nameValuePair`. + + `set` + + : Attribute set to map over. + + # Type + + ``` + mapAttrs' :: (String -> Any -> { name :: String; value :: Any; }) -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.mapAttrs'` usage example + + ```nix + mapAttrs' (name: value: nameValuePair ("foo_" + name) ("bar-" + value)) + { x = "a"; y = "b"; } + => { foo_x = "bar-a"; foo_y = "bar-b"; } + ``` + + ::: */ mapAttrs' = # A function, given an attribute's name and value, returns a new `nameValuePair`. @@ -629,17 +1033,38 @@ rec { listToAttrs (map (attr: f attr set.${attr}) (attrNames set)); - /* Call a function for each attribute in the given set and return - the result in a list. + /** + Call a function for each attribute in the given set and return + the result in a list. - Example: - mapAttrsToList (name: value: name + value) - { x = "a"; y = "b"; } - => [ "xa" "yb" ] - Type: - mapAttrsToList :: (String -> a -> b) -> AttrSet -> [b] + # Inputs + `f` + + : A function, given an attribute's name and value, returns a new value. + + `attrs` + + : Attribute set to map over. + + # Type + + ``` + mapAttrsToList :: (String -> a -> b) -> AttrSet -> [b] + ``` + + # Examples + :::{.example} + ## `lib.attrsets.mapAttrsToList` usage example + + ```nix + mapAttrsToList (name: value: name + value) + { x = "a"; y = "b"; } + => [ "xa" "yb" ] + ``` + + ::: */ mapAttrsToList = # A function, given an attribute's name and value, returns a new value. @@ -648,7 +1073,7 @@ rec { attrs: map (name: f name attrs.${name}) (attrNames attrs); - /* + /** Deconstruct an attrset to a list of name-value pairs as expected by [`builtins.listToAttrs`](https://nixos.org/manual/nix/stable/language/builtins.html#builtins-listToAttrs). Each element of the resulting list is an attribute set with these attributes: - `name` (string): The name of the attribute @@ -668,13 +1093,22 @@ rec { This is because the `listToAttrs` removes duplicate names and doesn't preserve the order of the list. ::: - Example: - attrsToList { foo = 1; bar = "asdf"; } - => [ { name = "bar"; value = "asdf"; } { name = "foo"; value = 1; } ] + # Type - Type: - attrsToList :: AttrSet -> [ { name :: String; value :: Any; } ] + ``` + attrsToList :: AttrSet -> [ { name :: String; value :: Any; } ] + ``` + # Examples + :::{.example} + ## `lib.attrsets.attrsToList` usage example + + ```nix + attrsToList { foo = 1; bar = "asdf"; } + => [ { name = "bar"; value = "asdf"; } { name = "foo"; value = 1; } ] + ``` + + ::: */ attrsToList = mapAttrsToList nameValuePair; @@ -754,15 +1188,37 @@ rec { recurse [ ] set; - /* Generate an attribute set by mapping a function over a list of - attribute names. + /** + Generate an attribute set by mapping a function over a list of + attribute names. - Example: - genAttrs [ "foo" "bar" ] (name: "x_" + name) - => { foo = "x_foo"; bar = "x_bar"; } - Type: - genAttrs :: [ String ] -> (String -> Any) -> AttrSet + # Inputs + + `names` + + : Names of values in the resulting attribute set. + + `f` + + : A function, given the name of the attribute, returns the attribute's value. + + # Type + + ``` + genAttrs :: [ String ] -> (String -> Any) -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.genAttrs` usage example + + ```nix + genAttrs [ "foo" "bar" ] (name: "x_" + name) + => { foo = "x_foo"; bar = "x_bar"; } + ``` + + ::: */ genAttrs = # Names of values in the resulting attribute set. @@ -772,28 +1228,57 @@ rec { listToAttrs (map (n: nameValuePair n (f n)) names); - /* Check whether the argument is a derivation. Any set with - `{ type = "derivation"; }` counts as a derivation. + /** + Check whether the argument is a derivation. Any set with + `{ type = "derivation"; }` counts as a derivation. - Example: - nixpkgs = import {} - isDerivation nixpkgs.ruby - => true - isDerivation "foobar" - => false - Type: - isDerivation :: Any -> Bool + # Inputs + + `value` + + : Value to check. + + # Type + + ``` + isDerivation :: Any -> Bool + ``` + + # Examples + :::{.example} + ## `lib.attrsets.isDerivation` usage example + + ```nix + nixpkgs = import {} + isDerivation nixpkgs.ruby + => true + isDerivation "foobar" + => false + ``` + + ::: */ isDerivation = # Value to check. value: value.type or null == "derivation"; - /* Converts a store path to a fake derivation. + /** + Converts a store path to a fake derivation. - Type: - toDerivation :: Path -> Derivation - */ + + # Inputs + + `path` + + : A store path to convert to a derivation. + + # Type + + ``` + toDerivation :: Path -> Derivation + ``` + */ toDerivation = # A store path to convert to a derivation. path: @@ -810,17 +1295,39 @@ rec { in res; - /* If `cond` is true, return the attribute set `as`, - otherwise an empty attribute set. + /** + If `cond` is true, return the attribute set `as`, + otherwise an empty attribute set. - Example: - optionalAttrs (true) { my = "set"; } - => { my = "set"; } - optionalAttrs (false) { my = "set"; } - => { } - Type: - optionalAttrs :: Bool -> AttrSet -> AttrSet + # Inputs + + `cond` + + : Condition under which the `as` attribute set is returned. + + `as` + + : The attribute set to return if `cond` is `true`. + + # Type + + ``` + optionalAttrs :: Bool -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.optionalAttrs` usage example + + ```nix + optionalAttrs (true) { my = "set"; } + => { my = "set"; } + optionalAttrs (false) { my = "set"; } + => { } + ``` + + ::: */ optionalAttrs = # Condition under which the `as` attribute set is returned. @@ -830,15 +1337,41 @@ rec { if cond then as else {}; - /* Merge sets of attributes and use the function `f` to merge attributes - values. + /** + Merge sets of attributes and use the function `f` to merge attributes + values. - Example: - zipAttrsWithNames ["a"] (name: vs: vs) [{a = "x";} {a = "y"; b = "z";}] - => { a = ["x" "y"]; } - Type: - zipAttrsWithNames :: [ String ] -> (String -> [ Any ] -> Any) -> [ AttrSet ] -> AttrSet + # Inputs + + `names` + + : List of attribute names to zip. + + `f` + + : A function, accepts an attribute name, all the values, and returns a combined value. + + `sets` + + : List of values from the list of attribute sets. + + # Type + + ``` + zipAttrsWithNames :: [ String ] -> (String -> [ Any ] -> Any) -> [ AttrSet ] -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.zipAttrsWithNames` usage example + + ```nix + zipAttrsWithNames ["a"] (name: vs: vs) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; } + ``` + + ::: */ zipAttrsWithNames = # List of attribute names to zip. @@ -853,52 +1386,91 @@ rec { }) names); - /* Merge sets of attributes and use the function f to merge attribute values. - Like `lib.attrsets.zipAttrsWithNames` with all key names are passed for `names`. + /** + Merge sets of attributes and use the function f to merge attribute values. + Like `lib.attrsets.zipAttrsWithNames` with all key names are passed for `names`. - Implementation note: Common names appear multiple times in the list of - names, hopefully this does not affect the system because the maximal - laziness avoid computing twice the same expression and `listToAttrs` does - not care about duplicated attribute names. + Implementation note: Common names appear multiple times in the list of + names, hopefully this does not affect the system because the maximal + laziness avoid computing twice the same expression and `listToAttrs` does + not care about duplicated attribute names. - Example: - zipAttrsWith (name: values: values) [{a = "x";} {a = "y"; b = "z";}] - => { a = ["x" "y"]; b = ["z"]; } + # Type - Type: - zipAttrsWith :: (String -> [ Any ] -> Any) -> [ AttrSet ] -> AttrSet + ``` + zipAttrsWith :: (String -> [ Any ] -> Any) -> [ AttrSet ] -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.zipAttrsWith` usage example + + ```nix + zipAttrsWith (name: values: values) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"]; } + ``` + + ::: */ zipAttrsWith = builtins.zipAttrsWith or (f: sets: zipAttrsWithNames (concatMap attrNames sets) f sets); - /* Merge sets of attributes and combine each attribute value in to a list. + /** + Merge sets of attributes and combine each attribute value in to a list. - Like `lib.attrsets.zipAttrsWith` with `(name: values: values)` as the function. + Like `lib.attrsets.zipAttrsWith` with `(name: values: values)` as the function. - Example: - zipAttrs [{a = "x";} {a = "y"; b = "z";}] - => { a = ["x" "y"]; b = ["z"]; } + # Type - Type: - zipAttrs :: [ AttrSet ] -> AttrSet + ``` + zipAttrs :: [ AttrSet ] -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.zipAttrs` usage example + + ```nix + zipAttrs [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"]; } + ``` + + ::: */ zipAttrs = zipAttrsWith (name: values: values); - /* + /** Merge a list of attribute sets together using the `//` operator. In case of duplicate attributes, values from later list elements take precedence over earlier ones. The result is the same as `foldl mergeAttrs { }`, but the performance is better for large inputs. For n list elements, each with an attribute set containing m unique attributes, the complexity of this operation is O(nm log n). - Type: - mergeAttrsList :: [ Attrs ] -> Attrs - Example: - mergeAttrsList [ { a = 0; b = 1; } { c = 2; d = 3; } ] - => { a = 0; b = 1; c = 2; d = 3; } - mergeAttrsList [ { a = 0; } { a = 1; } ] - => { a = 1; } + # Inputs + + `list` + + : 1\. Function argument + + # Type + + ``` + mergeAttrsList :: [ Attrs ] -> Attrs + ``` + + # Examples + :::{.example} + ## `lib.attrsets.mergeAttrsList` usage example + + ```nix + mergeAttrsList [ { a = 0; b = 1; } { c = 2; d = 3; } ] + => { a = 0; b = 1; c = 2; d = 3; } + mergeAttrsList [ { a = 0; } { a = 1; } ] + => { a = 1; } + ``` + + ::: */ mergeAttrsList = list: let @@ -922,35 +1494,61 @@ rec { binaryMerge 0 (length list); - /* Does the same as the update operator '//' except that attributes are - merged until the given predicate is verified. The predicate should - accept 3 arguments which are the path to reach the attribute, a part of - the first attribute set and a part of the second attribute set. When - the predicate is satisfied, the value of the first attribute set is - replaced by the value of the second attribute set. + /** + Does the same as the update operator '//' except that attributes are + merged until the given predicate is verified. The predicate should + accept 3 arguments which are the path to reach the attribute, a part of + the first attribute set and a part of the second attribute set. When + the predicate is satisfied, the value of the first attribute set is + replaced by the value of the second attribute set. - Example: - recursiveUpdateUntil (path: l: r: path == ["foo"]) { - # first attribute set - foo.bar = 1; - foo.baz = 2; - bar = 3; - } { - #second attribute set - foo.bar = 1; - foo.quz = 2; - baz = 4; - } - => { - foo.bar = 1; # 'foo.*' from the second set - foo.quz = 2; # - bar = 3; # 'bar' from the first set - baz = 4; # 'baz' from the second set - } + # Inputs - Type: - recursiveUpdateUntil :: ( [ String ] -> AttrSet -> AttrSet -> Bool ) -> AttrSet -> AttrSet -> AttrSet + `pred` + + : Predicate, taking the path to the current attribute as a list of strings for attribute names, and the two values at that path from the original arguments. + + `lhs` + + : Left attribute set of the merge. + + `rhs` + + : Right attribute set of the merge. + + # Type + + ``` + recursiveUpdateUntil :: ( [ String ] -> AttrSet -> AttrSet -> Bool ) -> AttrSet -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.recursiveUpdateUntil` usage example + + ```nix + recursiveUpdateUntil (path: l: r: path == ["foo"]) { + # first attribute set + foo.bar = 1; + foo.baz = 2; + bar = 3; + } { + #second attribute set + foo.bar = 1; + foo.quz = 2; + baz = 4; + } + + => { + foo.bar = 1; # 'foo.*' from the second set + foo.quz = 2; # + bar = 3; # 'bar' from the first set + baz = 4; # 'baz' from the second set + } + ``` + + ::: */ recursiveUpdateUntil = # Predicate, taking the path to the current attribute as a list of strings for attribute names, and the two values at that path from the original arguments. @@ -971,26 +1569,48 @@ rec { in f [] [rhs lhs]; - /* A recursive variant of the update operator ‘//’. The recursion - stops when one of the attribute values is not an attribute set, - in which case the right hand side value takes precedence over the - left hand side value. + /** + A recursive variant of the update operator ‘//’. The recursion + stops when one of the attribute values is not an attribute set, + in which case the right hand side value takes precedence over the + left hand side value. - Example: - recursiveUpdate { - boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/hda"; - } { - boot.loader.grub.device = ""; - } - returns: { - boot.loader.grub.enable = true; - boot.loader.grub.device = ""; - } + # Inputs - Type: - recursiveUpdate :: AttrSet -> AttrSet -> AttrSet + `lhs` + + : Left attribute set of the merge. + + `rhs` + + : Right attribute set of the merge. + + # Type + + ``` + recursiveUpdate :: AttrSet -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.recursiveUpdate` usage example + + ```nix + recursiveUpdate { + boot.loader.grub.enable = true; + boot.loader.grub.device = "/dev/hda"; + } { + boot.loader.grub.device = ""; + } + + returns: { + boot.loader.grub.enable = true; + boot.loader.grub.device = ""; + } + ``` + + ::: */ recursiveUpdate = # Left attribute set of the merge. @@ -1000,17 +1620,38 @@ rec { recursiveUpdateUntil (path: lhs: rhs: !(isAttrs lhs && isAttrs rhs)) lhs rhs; - /* + /** Recurse into every attribute set of the first argument and check that: - Each attribute path also exists in the second argument. - If the attribute's value is not a nested attribute set, it must have the same value in the right argument. - Example: - matchAttrs { cpu = {}; } { cpu = { bits = 64; }; } - => true - Type: - matchAttrs :: AttrSet -> AttrSet -> Bool + # Inputs + + `pattern` + + : Attribute set structure to match + + `attrs` + + : Attribute set to check + + # Type + + ``` + matchAttrs :: AttrSet -> AttrSet -> Bool + ``` + + # Examples + :::{.example} + ## `lib.attrsets.matchAttrs` usage example + + ```nix + matchAttrs { cpu = {}; } { cpu = { bits = 64; }; } + => true + ``` + + ::: */ matchAttrs = # Attribute set structure to match @@ -1034,19 +1675,41 @@ rec { ) (attrNames pattern); - /* Override only the attributes that are already present in the old set + /** + Override only the attributes that are already present in the old set useful for deep-overriding. - Example: - overrideExisting {} { a = 1; } - => {} - overrideExisting { b = 2; } { a = 1; } - => { b = 2; } - overrideExisting { a = 3; b = 2; } { a = 1; } - => { a = 1; b = 2; } - Type: - overrideExisting :: AttrSet -> AttrSet -> AttrSet + # Inputs + + `old` + + : Original attribute set + + `new` + + : Attribute set with attributes to override in `old`. + + # Type + + ``` + overrideExisting :: AttrSet -> AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.overrideExisting` usage example + + ```nix + overrideExisting {} { a = 1; } + => {} + overrideExisting { b = 2; } { a = 1; } + => { b = 2; } + overrideExisting { a = 3; b = 2; } { a = 1; } + => { a = 1; b = 2; } + ``` + + ::: */ overrideExisting = # Original attribute set @@ -1056,19 +1719,37 @@ rec { mapAttrs (name: value: new.${name} or value) old; - /* Turns a list of strings into a human-readable description of those + /** + Turns a list of strings into a human-readable description of those strings represented as an attribute path. The result of this function is not intended to be machine-readable. Create a new attribute set with `value` set at the nested attribute location specified in `attrPath`. - Example: - showAttrPath [ "foo" "10" "bar" ] - => "foo.\"10\".bar" - showAttrPath [] - => "" - Type: - showAttrPath :: [String] -> String + # Inputs + + `path` + + : Attribute path to render to a string + + # Type + + ``` + showAttrPath :: [String] -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.showAttrPath` usage example + + ```nix + showAttrPath [ "foo" "10" "bar" ] + => "foo.\"10\".bar" + showAttrPath [] + => "" + ``` + + ::: */ showAttrPath = # Attribute path to render to a string @@ -1077,118 +1758,232 @@ rec { else concatMapStringsSep "." escapeNixIdentifier path; - /* Get a package output. - If no output is found, fallback to `.out` and then to the default. + /** + Get a package output. + If no output is found, fallback to `.out` and then to the default. - Example: - getOutput "dev" pkgs.openssl - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev" - Type: - getOutput :: String -> Derivation -> String + # Inputs + + `output` + + : 1\. Function argument + + `pkg` + + : 2\. Function argument + + # Type + + ``` + getOutput :: String -> Derivation -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getOutput` usage example + + ```nix + getOutput "dev" pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev" + ``` + + ::: */ getOutput = output: pkg: if ! pkg ? outputSpecified || ! pkg.outputSpecified then pkg.${output} or pkg.out or pkg else pkg; - /* Get a package's `bin` output. - If the output does not exist, fallback to `.out` and then to the default. + /** + Get a package's `bin` output. + If the output does not exist, fallback to `.out` and then to the default. - Example: - getBin pkgs.openssl - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r" + # Type - Type: - getBin :: Derivation -> String + ``` + getBin :: Derivation -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getBin` usage example + + ```nix + getBin pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r" + ``` + + ::: */ getBin = getOutput "bin"; - /* Get a package's `lib` output. - If the output does not exist, fallback to `.out` and then to the default. + /** + Get a package's `lib` output. + If the output does not exist, fallback to `.out` and then to the default. - Example: - getLib pkgs.openssl - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-lib" + # Type - Type: - getLib :: Derivation -> String + ``` + getLib :: Derivation -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getLib` usage example + + ```nix + getLib pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-lib" + ``` + + ::: */ getLib = getOutput "lib"; - /* Get a package's `dev` output. - If the output does not exist, fallback to `.out` and then to the default. + /** + Get a package's `dev` output. + If the output does not exist, fallback to `.out` and then to the default. - Example: - getDev pkgs.openssl - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev" + # Type - Type: - getDev :: Derivation -> String + ``` + getDev :: Derivation -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getDev` usage example + + ```nix + getDev pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev" + ``` + + ::: */ getDev = getOutput "dev"; - /* Get a package's `man` output. - If the output does not exist, fallback to `.out` and then to the default. + /** + Get a package's `man` output. + If the output does not exist, fallback to `.out` and then to the default. - Example: - getMan pkgs.openssl - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-man" + # Type - Type: - getMan :: Derivation -> String + ``` + getMan :: Derivation -> String + ``` + + # Examples + :::{.example} + ## `lib.attrsets.getMan` usage example + + ```nix + getMan pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-man" + ``` + + ::: */ getMan = getOutput "man"; - /* Pick the outputs of packages to place in `buildInputs` + /** + Pick the outputs of packages to place in `buildInputs` - Type: chooseDevOutputs :: [Derivation] -> [String] + # Type + ``` + chooseDevOutputs :: [Derivation] -> [String] + ``` */ chooseDevOutputs = builtins.map getDev; - /* Make various Nix tools consider the contents of the resulting - attribute set when looking for what to build, find, etc. + /** + Make various Nix tools consider the contents of the resulting + attribute set when looking for what to build, find, etc. - This function only affects a single attribute set; it does not - apply itself recursively for nested attribute sets. + This function only affects a single attribute set; it does not + apply itself recursively for nested attribute sets. - Example: - { pkgs ? import {} }: - { - myTools = pkgs.lib.recurseIntoAttrs { - inherit (pkgs) hello figlet; - }; - } - Type: - recurseIntoAttrs :: AttrSet -> AttrSet + # Inputs - */ + `attrs` + + : An attribute set to scan for derivations. + + # Type + + ``` + recurseIntoAttrs :: AttrSet -> AttrSet + ``` + + # Examples + :::{.example} + ## `lib.attrsets.recurseIntoAttrs` usage example + + ```nix + { pkgs ? import {} }: + { + myTools = pkgs.lib.recurseIntoAttrs { + inherit (pkgs) hello figlet; + }; + } + ``` + + ::: + */ recurseIntoAttrs = # An attribute set to scan for derivations. attrs: attrs // { recurseForDerivations = true; }; - /* Undo the effect of recurseIntoAttrs. + /** + Undo the effect of recurseIntoAttrs. - Type: - dontRecurseIntoAttrs :: AttrSet -> AttrSet - */ + + # Inputs + + `attrs` + + : An attribute set to not scan for derivations. + + # Type + + ``` + dontRecurseIntoAttrs :: AttrSet -> AttrSet + ``` + */ dontRecurseIntoAttrs = # An attribute set to not scan for derivations. attrs: attrs // { recurseForDerivations = false; }; - /* `unionOfDisjoint x y` is equal to `x // y // z` where the - attrnames in `z` are the intersection of the attrnames in `x` and - `y`, and all values `assert` with an error message. This - operator is commutative, unlike (//). + /** + `unionOfDisjoint x y` is equal to `x // y // z` where the + attrnames in `z` are the intersection of the attrnames in `x` and + `y`, and all values `assert` with an error message. This + operator is commutative, unlike (//). - Type: unionOfDisjoint :: AttrSet -> AttrSet -> AttrSet + + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + + # Type + + ``` + unionOfDisjoint :: AttrSet -> AttrSet -> AttrSet + ``` */ unionOfDisjoint = x: y: let From e645f01e5e4894d375eb984d7b21041bfc26d44c Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 17 Mar 2024 13:40:02 +0100 Subject: [PATCH 03/25] python312Packages.mouseinfo: normalize pname --- pkgs/development/python-modules/mouseinfo/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/mouseinfo/default.nix b/pkgs/development/python-modules/mouseinfo/default.nix index f5c76b875241..9d4fe2af480f 100644 --- a/pkgs/development/python-modules/mouseinfo/default.nix +++ b/pkgs/development/python-modules/mouseinfo/default.nix @@ -7,7 +7,7 @@ , pillow }: buildPythonPackage rec { - pname = "MouseInfo"; + pname = "mouseinfo"; version = "0.1.3"; src = fetchFromGitHub { From 7ae56925a338ad1f3dd47469dea25bf2d157be3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 17 Mar 2024 09:15:26 -0700 Subject: [PATCH 04/25] python311Packages.signify: 0.5.2 -> 0.6.0 Diff: https://github.com/ralphje/signify/compare/refs/tags/v0.5.2...v0.6.0 Changelog: https://github.com/ralphje/signify/blob/refs/tags/v0.6.0/docs/changelog.rst --- .../python-modules/signify/default.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/signify/default.nix b/pkgs/development/python-modules/signify/default.nix index a1924902fe8e..1c7f503d33c1 100644 --- a/pkgs/development/python-modules/signify/default.nix +++ b/pkgs/development/python-modules/signify/default.nix @@ -3,7 +3,6 @@ , buildPythonPackage , certvalidator , fetchFromGitHub -, fetchpatch2 , mscerts , oscrypto , pyasn1 @@ -11,30 +10,23 @@ , pytestCheckHook , pythonOlder , setuptools +, typing-extensions }: buildPythonPackage rec { pname = "signify"; - version = "0.5.2"; + version = "0.6.0"; pyproject = true; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "ralphje"; repo = "signify"; rev = "refs/tags/v${version}"; - hash = "sha256-+UhZF+QYuv8pq/sTu7GDPUrlPNNixFgVZL+L0ulj/ko="; + hash = "sha256-29SyzqtZ1cI+1xrSPLFr63vwB5st/9i5b3FYtJn6eok="; }; - patches = [ - # https://github.com/ralphje/signify/pull/42 - (fetchpatch2 { - url = "https://github.com/ralphje/signify/commit/38cad57bf86f7498259b47bfef1354aec27c0955.patch"; - hash = "sha256-dLmHSlj2Cj6jbbrZStgK2Rh/H5vOaIbi5lut5RAbd+s="; - }) - ]; - nativeBuildInputs = [ setuptools ]; @@ -46,6 +38,7 @@ buildPythonPackage rec { oscrypto pyasn1 pyasn1-modules + typing-extensions ]; pythonImportsCheck = [ From 0254c86fe8030f5f2ccb12b77b9071808a5c5490 Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Mon, 18 Mar 2024 11:35:18 +0100 Subject: [PATCH 05/25] kodiPackages.inputstream-adaptive: 20.3.16 -> 20.3.18 https://github.com/xbmc/inputstream.adaptive/releases/tag/20.3.17-Nexus https://github.com/xbmc/inputstream.adaptive/releases/tag/20.3.18-Nexus --- .../video/kodi/addons/inputstream-adaptive/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix b/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix index 49afbf8507b1..cb85df276412 100644 --- a/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix +++ b/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix @@ -10,13 +10,13 @@ in buildKodiBinaryAddon rec { pname = "inputstream-adaptive"; namespace = "inputstream.adaptive"; - version = "20.3.16"; + version = "20.3.18"; src = fetchFromGitHub { owner = "xbmc"; repo = "inputstream.adaptive"; rev = "${version}-${rel}"; - sha256 = "sha256-1OY+3pvpVW8rkj7HL84IECyHpAmWsUQ9mTzuGesH+jI="; + sha256 = "sha256-cjlUKrus4Dv48dCk6AlOgY2iZYTwT39tj2u7aq1P104="; }; extraCMakeFlags = [ From dc471d5bd41634617b54547d5b2649a807c57fe3 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:25:20 +0100 Subject: [PATCH 06/25] hqplayerd: 5.2.0-6 -> 5.5.0-13 --- pkgs/servers/hqplayerd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/hqplayerd/default.nix b/pkgs/servers/hqplayerd/default.nix index 07f0c1dc4858..aa08f781121c 100644 --- a/pkgs/servers/hqplayerd/default.nix +++ b/pkgs/servers/hqplayerd/default.nix @@ -26,11 +26,11 @@ let in stdenv.mkDerivation rec { pname = "hqplayerd"; - version = "5.2.0-6"; + version = "5.5.0-13"; src = fetchurl { url = "https://www.signalyst.eu/bins/${pname}/fc37/${pname}-${version}.fc37.x86_64.rpm"; - hash = "sha256-AJKSj7t1yog3EXrzdods9Jk35ibEbegnXQzFcsr2N7I="; + hash = "sha256-yfdgsQu2w56apq5lyD0JcEkM9/EtlfdZQ9I5x1BBOcU="; }; unpackPhase = '' From f174d3c61a1187650d08991f3e1f02ba30af4f77 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Mar 2024 02:31:03 +0000 Subject: [PATCH 07/25] rymdport: 3.5.2 -> 3.5.3 --- pkgs/applications/networking/rymdport/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/rymdport/default.nix b/pkgs/applications/networking/rymdport/default.nix index 8f78701fb9e5..7108b2306b79 100644 --- a/pkgs/applications/networking/rymdport/default.nix +++ b/pkgs/applications/networking/rymdport/default.nix @@ -11,16 +11,16 @@ buildGoModule rec { pname = "rymdport"; - version = "3.5.2"; + version = "3.5.3"; src = fetchFromGitHub { owner = "Jacalz"; repo = "rymdport"; rev = "v${version}"; - hash = "sha256-LTCr1OFh+1QQhXFNl9SoLPqEY0ERlLlWfSxRKjyyqPk="; + hash = "sha256-lCtFm360UeypzYpivlYXxuqZ0BzGzGkkq31dmgjwv4M="; }; - vendorHash = "sha256-twXeLNWy/5wTaFb645mCeI5PzByEGj5aCWl6vO+qRLQ="; + vendorHash = "sha256-PXRy12JWYQQMMzh7jrEhquileY2oYFvqt8KZvrfp2o0="; nativeBuildInputs = [ pkg-config From 91f612c98c17357d30fbb7332d69701563c4497c Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 19 Mar 2024 04:20:00 +0000 Subject: [PATCH 08/25] python311Packages.soundcloud-v2: 1.3.1 -> 1.3.6 Diff: https://github.com/7x11x13/soundcloud.py/compare/v1.3.1...v1.3.6 --- .../python-modules/soundcloud-v2/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/soundcloud-v2/default.nix b/pkgs/development/python-modules/soundcloud-v2/default.nix index 573d1a108027..d5b0d73cc0ce 100644 --- a/pkgs/development/python-modules/soundcloud-v2/default.nix +++ b/pkgs/development/python-modules/soundcloud-v2/default.nix @@ -3,19 +3,27 @@ , fetchPypi , dacite , python-dateutil +, pythonOlder , requests +, setuptools }: buildPythonPackage rec { pname = "soundcloud-v2"; - version = "1.3.1"; - format = "setuptools"; + version = "1.3.6"; + pyproject = true; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "9a9c12aa22e71566e2ca6015267cabc1856afd79fa458f0fc43c44872c184741"; + sha256 = "sha256-cHFxx/9fGQvpRuy0mGTUsh3CyU2xmE9frbd5+mnHo3Y="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ dacite python-dateutil From f64676ee0e5e6e9d29888a72bbe7242526da91ac Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 19 Mar 2024 14:23:07 +0900 Subject: [PATCH 09/25] nodePackages.coinmon: remove coinmon was removed since it was abandoned upstream --- pkgs/development/node-packages/aliases.nix | 1 + pkgs/development/node-packages/node-packages.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 34751db8f193..64708d8ffd92 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -66,6 +66,7 @@ mapAliases { inherit (pkgs) clean-css-cli; # added 2023-08-18 inherit (pkgs) clubhouse-cli; # added 2023-08-18 coc-imselect = throw "coc-imselect was removed because it was broken"; # added 2023-08-21 + coinmon = throw "coinmon was removed since it was abandoned upstream"; # added 2024-03-19 coffee-script = pkgs.coffeescript; # added 2023-08-18 inherit (pkgs) configurable-http-proxy; # added 2023-08-19 inherit (pkgs) cordova; # added 2023-08-18 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index de10dd251f41..f7015177d57b 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -83,7 +83,6 @@ , "coc-yaml" , "coc-yank" , "code-theme-converter" -, "coinmon" , "concurrently" , "conventional-changelog-cli" , "cpy-cli" From b59790992dc71a05863e9a00db82849f4b2b91ad Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Mar 2024 07:09:02 +0000 Subject: [PATCH 10/25] python312Packages.langsmith: 0.1.27 -> 0.1.29 --- pkgs/development/python-modules/langsmith/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langsmith/default.nix b/pkgs/development/python-modules/langsmith/default.nix index 2a950f548e4b..76596395bab3 100644 --- a/pkgs/development/python-modules/langsmith/default.nix +++ b/pkgs/development/python-modules/langsmith/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "langsmith"; - version = "0.1.27"; + version = "0.1.29"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "langchain-ai"; repo = "langsmith-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-Nakcio+GMiMH4kztFCaypaafo4VZkK+pECcQCX9TkA8="; + hash = "sha256-E+N+Ge4BnkR4fvoe6HeTJOX1t+XYBpPitrQClLUzkK0="; }; sourceRoot = "${src.name}/python"; From 9653c6ec84c8d56fffd5480533f5bde4c943e54e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Mar 2024 12:47:54 +0000 Subject: [PATCH 11/25] xivlauncher: 1.0.7 -> 1.0.8 --- pkgs/games/xivlauncher/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/xivlauncher/default.nix b/pkgs/games/xivlauncher/default.nix index 63a0e5e4e35f..ec617ad0f0f5 100644 --- a/pkgs/games/xivlauncher/default.nix +++ b/pkgs/games/xivlauncher/default.nix @@ -3,7 +3,7 @@ , useSteamRun ? true }: let - rev = "1.0.7"; + rev = "1.0.8"; in buildDotnetModule rec { pname = "XIVLauncher"; @@ -13,7 +13,7 @@ in owner = "goatcorp"; repo = "XIVLauncher.Core"; inherit rev; - hash = "sha256-bWrFGaNkcKo5vUhhrpzEMuX1Ws6ud57sJ0tM4CUuUEk="; + hash = "sha256-x4W5L4k+u0MYKDWJu82QcXARW0zjmqqwGiueR1IevMk="; fetchSubmodules = true; }; From 9cd2f3f91a3c756cdefd911a37a182be58658275 Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 19 Mar 2024 14:24:11 +0900 Subject: [PATCH 12/25] nodePackages: update to latest --- .../node-packages/node-packages.nix | 10749 ++++++++-------- pkgs/development/node-packages/overrides.nix | 25 +- 2 files changed, 5166 insertions(+), 5608 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index b4e6477be9d3..eb1b8054fef9 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -31,6 +31,15 @@ let sha512 = "DSzEEkbMYbAUVlhy7fg+BzccoRuSQzqHbIPGxGv19OJ2WKwS3/9ChAnQcII4g+GujcHhyJ8BUuOVAx/S5uAfQg=="; }; }; + "@adobe/css-tools-4.3.2" = { + name = "_at_adobe_slash_css-tools"; + packageName = "@adobe/css-tools"; + version = "4.3.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz"; + sha512 = "DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw=="; + }; + }; "@adobe/css-tools-4.3.3" = { name = "_at_adobe_slash_css-tools"; packageName = "@adobe/css-tools"; @@ -67,40 +76,40 @@ let sha512 = "UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="; }; }; - "@ampproject/remapping-2.2.1" = { + "@ampproject/remapping-2.3.0" = { name = "_at_ampproject_slash_remapping"; packageName = "@ampproject/remapping"; - version = "2.2.1"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"; - sha512 = "lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="; + url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz"; + sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="; }; }; - "@angular-devkit/architect-0.1702.0" = { + "@angular-devkit/architect-0.1703.0" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1702.0"; + version = "0.1703.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.0.tgz"; - sha512 = "+HkOYhdq8ez2+yqpxaQ6XtQevOYJNaDpM4oDmZ2lIpiIusFNsmpY2b9iL5PZGb4EfUgN8KsY3n9Q9fmRlRB9eA=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.0.tgz"; + sha512 = "2X2cswI4TIwtQxCe5U9f4jeiDjAb8r89XLpU0QwEHyZyWx02uhYHO3FDMJq/NxCS95IUAQOBGBhbD4ey4Hl9cQ=="; }; }; - "@angular-devkit/core-17.2.0" = { + "@angular-devkit/core-17.3.0" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-17.2.0.tgz"; - sha512 = "GIOYHChtDqSOvSiEefJ6hAledEl55J5Pxw8JuKXrM4IJBbviI3c40FAc0Lu5NCj2lYoELOhrLy/UP36sLy+DGA=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.0.tgz"; + sha512 = "ldErhMYq8rcFOhWQ0syQdLy6IYb/LL0erigj7gCMOf59oJgM7B13o/ZTOCvyJttUZ9IP0HB98Gi3epEuJ30VLg=="; }; }; - "@angular-devkit/schematics-17.2.0" = { + "@angular-devkit/schematics-17.3.0" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.2.0.tgz"; - sha512 = "gGyUVYRKTeRODW9S0MohfBlryoUHrbxqN27olhktrM/fZavyUVnZpyfb8okp6tTUz9HWmGac8ULE6IU+YW16gw=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.0.tgz"; + sha512 = "EW4Y8W/KTlvvT2fw3bh9hY7quDF2b9EaF+KftEqoDRWYbw0tlF8hWIdlfA6JxQC12d6uefh3kDNj5am0Il2oNQ=="; }; }; "@apidevtools/json-schema-ref-parser-9.0.6" = { @@ -283,13 +292,13 @@ let sha512 = "o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw=="; }; }; - "@astrojs/compiler-2.5.3" = { + "@astrojs/compiler-2.7.0" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "2.5.3"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.5.3.tgz"; - sha512 = "jzj01BRv/fmo+9Mr2FhocywGzEYiyiP2GVHje1ziGNU6c97kwhYGsnvwMkHrncAy9T9Vi54cjaMK7UE4ClX4vA=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.7.0.tgz"; + sha512 = "XpC8MAaWjD1ff6/IfkRq/5k1EFj6zhCNqXRd5J43SVJEBj/Bsmizkm8N0xOYscGcDFQkRgEw6/eKnI5x/1l6aA=="; }; }; "@asyncapi/specs-4.3.1" = { @@ -409,13 +418,13 @@ let sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; }; }; - "@aws-sdk/client-s3-3.515.0" = { + "@aws-sdk/client-s3-3.536.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.515.0"; + version = "3.536.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.515.0.tgz"; - sha512 = "K527n83hrMUdosxOYTzL63wtlJtmN5SUJZnGY1sUR6UyOrnOr9lS6t3AB6BgHqLFRFZJqSqmhflv2cOD7P1UPg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.536.0.tgz"; + sha512 = "UM5txJxq8qKzLDVuW9c904bpb7+u1jOeyJITLz79WpyHSOP6ERHoTx/ltEuGJ4zQVazfkgthqR0lIn09sXEEuw=="; }; }; "@aws-sdk/client-sso-3.296.0" = { @@ -427,13 +436,13 @@ let sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; }; }; - "@aws-sdk/client-sso-3.515.0" = { + "@aws-sdk/client-sso-3.535.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.515.0.tgz"; - sha512 = "4oGBLW476zmkdN98lAns3bObRNO+DLOfg4MDUSR6l6GYBV/zGAtoy2O/FhwYKgA2L5h2ZtElGopLlk/1Q0ePLw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.535.0.tgz"; + sha512 = "h9eQRdFnjDRVBnPJIKXuX7D+isSAioIfZPC4PQwsL5BscTRlk4c90DX0R0uk64YUtp7LZu8TNtrosFZ/1HtTrQ=="; }; }; "@aws-sdk/client-sso-oidc-3.296.0" = { @@ -445,13 +454,13 @@ let sha512 = "GRycCVdlFICvWwv9z6Mc/2BvSBOvchWO7UTklvbKXeDn6D05C+02PfxeoocMTc4r8/eFoEQWs67h5u/lPpyHDw=="; }; }; - "@aws-sdk/client-sso-oidc-3.515.0" = { + "@aws-sdk/client-sso-oidc-3.535.0" = { name = "_at_aws-sdk_slash_client-sso-oidc"; packageName = "@aws-sdk/client-sso-oidc"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.515.0.tgz"; - sha512 = "zACa8LNlPUdlNUBqQRf5a3MfouLNtcBfm84v2c8M976DwJrMGONPe1QjyLLsD38uESQiXiVQRruj/b000iMXNw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.535.0.tgz"; + sha512 = "M2cG4EQXDpAJQyq33ORIr6abmdX9p9zX0ssVy8XwFNB7lrgoIKxuVoGL+fX+XMgecl24x7ELz6b4QlILOevbCw=="; }; }; "@aws-sdk/client-sts-3.296.0" = { @@ -463,13 +472,13 @@ let sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; }; }; - "@aws-sdk/client-sts-3.515.0" = { + "@aws-sdk/client-sts-3.535.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.515.0.tgz"; - sha512 = "ScYuvaIDgip3atOJIA1FU2n0gJkEdveu1KrrCPathoUCV5zpK8qQmO/n+Fj/7hKFxeKdFbB+4W4CsJWYH94nlg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.535.0.tgz"; + sha512 = "ii9OOm3TJwP3JmO1IVJXKWIShVKPl0VtdlgROc/SkDglO/kuAw9eDdlROgc+qbFl+gm6bBTguOVTUXt3tS3flw=="; }; }; "@aws-sdk/config-resolver-3.296.0" = { @@ -481,13 +490,13 @@ let sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; }; }; - "@aws-sdk/core-3.513.0" = { + "@aws-sdk/core-3.535.0" = { name = "_at_aws-sdk_slash_core"; packageName = "@aws-sdk/core"; - version = "3.513.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.513.0.tgz"; - sha512 = "L+9DL4apWuqNKVOMJ8siAuWoRM9rZf9w1iPv8S2o83WO2jVK7E/m+rNW1dFo9HsA5V1ccDl2H2qLXx24HiHmOw=="; + url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.535.0.tgz"; + sha512 = "+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw=="; }; }; "@aws-sdk/credential-provider-env-3.296.0" = { @@ -499,22 +508,22 @@ let sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; }; }; - "@aws-sdk/credential-provider-env-3.515.0" = { + "@aws-sdk/credential-provider-env-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-env"; packageName = "@aws-sdk/credential-provider-env"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.515.0.tgz"; - sha512 = "45vxdyqhTAaUMERYVWOziG3K8L2TV9G4ryQS/KZ84o7NAybE9GMdoZRVmGHAO7mJJ1wQiYCM/E+i5b3NW9JfNA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.535.0.tgz"; + sha512 = "XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA=="; }; }; - "@aws-sdk/credential-provider-http-3.515.0" = { + "@aws-sdk/credential-provider-http-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-http"; packageName = "@aws-sdk/credential-provider-http"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.515.0.tgz"; - sha512 = "Ba6FXK77vU4WyheiamNjEuTFmir0eAXuJGPO27lBaA8g+V/seXGHScsbOG14aQGDOr2P02OPwKGZrWWA7BFpfQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.535.0.tgz"; + sha512 = "kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw=="; }; }; "@aws-sdk/credential-provider-imds-3.296.0" = { @@ -535,13 +544,13 @@ let sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; }; }; - "@aws-sdk/credential-provider-ini-3.515.0" = { + "@aws-sdk/credential-provider-ini-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.515.0.tgz"; - sha512 = "ouDlNZdv2TKeVEA/YZk2+XklTXyAAGdbWnl4IgN9ItaodWI+lZjdIoNC8BAooVH+atIV/cZgoGTGQL7j2TxJ9A=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.535.0.tgz"; + sha512 = "bm3XOYlyCjtAb8eeHXLrxqRxYVRw2Iqv9IufdJb4gM13TbNSYniUT1WKaHxGIZ5p+FuNlXVhvk1OpHFM13+gXA=="; }; }; "@aws-sdk/credential-provider-node-3.296.0" = { @@ -553,13 +562,13 @@ let sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; }; }; - "@aws-sdk/credential-provider-node-3.515.0" = { + "@aws-sdk/credential-provider-node-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.515.0.tgz"; - sha512 = "Y4kHSpbxksiCZZNcvsiKUd8Fb2XlyUuONEwqWFNL82ZH6TCCjBGS31wJQCSxBHqYcOL3tiORUEJkoO7uS30uQA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.535.0.tgz"; + sha512 = "6JXp/EuL6euUkH5k4d+lQFF6gBwukrcCOWfNHCmq14mNJf/cqT3HAX1VMtWFRSK20am0IxfYQGccb0/nZykdKg=="; }; }; "@aws-sdk/credential-provider-process-3.296.0" = { @@ -571,13 +580,13 @@ let sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; }; }; - "@aws-sdk/credential-provider-process-3.515.0" = { + "@aws-sdk/credential-provider-process-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-process"; packageName = "@aws-sdk/credential-provider-process"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.515.0.tgz"; - sha512 = "pSjiOA2FM63LHRKNDvEpBRp80FVGT0Mw/gzgbqFXP+sewk0WVonYbEcMDTJptH3VsLPGzqH/DQ1YL/aEIBuXFQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.535.0.tgz"; + sha512 = "9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA=="; }; }; "@aws-sdk/credential-provider-sso-3.296.0" = { @@ -589,13 +598,13 @@ let sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; }; }; - "@aws-sdk/credential-provider-sso-3.515.0" = { + "@aws-sdk/credential-provider-sso-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.515.0.tgz"; - sha512 = "j7vUkiSmuhpBvZYoPTRTI4ePnQbiZMFl6TNhg9b9DprC1zHkucsZnhRhqjOVlrw/H6J4jmcPGcHHTZ5WQNI5xQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.535.0.tgz"; + sha512 = "2Dw0YIr8ETdFpq65CC4zK8ZIEbX78rXoNRZXUGNQW3oSKfL0tj8O8ErY6kg1IdEnYbGnEQ35q6luZ5GGNKLgDg=="; }; }; "@aws-sdk/credential-provider-web-identity-3.296.0" = { @@ -607,13 +616,13 @@ let sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; }; }; - "@aws-sdk/credential-provider-web-identity-3.515.0" = { + "@aws-sdk/credential-provider-web-identity-3.535.0" = { name = "_at_aws-sdk_slash_credential-provider-web-identity"; packageName = "@aws-sdk/credential-provider-web-identity"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.515.0.tgz"; - sha512 = "66+2g4z3fWwdoGReY8aUHvm6JrKZMTRxjuizljVmMyOBttKPeBYXvUTop/g3ZGUx1f8j+C5qsGK52viYBvtjuQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.535.0.tgz"; + sha512 = "t2/JWrKY0H66A7JW7CqX06/DG2YkJddikt5ymdQvx/Q7dRMJ3d+o/vgjoKr7RvEx/pNruCeyM1599HCvwrVMrg=="; }; }; "@aws-sdk/eventstream-codec-3.296.0" = { @@ -715,13 +724,13 @@ let sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; }; }; - "@aws-sdk/lib-storage-3.515.0" = { + "@aws-sdk/lib-storage-3.536.0" = { name = "_at_aws-sdk_slash_lib-storage"; packageName = "@aws-sdk/lib-storage"; - version = "3.515.0"; + version = "3.536.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.515.0.tgz"; - sha512 = "/7z/3KnMs1ODNS9c8Skj/DFTsy6/v7n17clh1IGOcTYhhioCMA3MIzIZecWFeLjPYcUSkNQHIIjKFQt1nhZkwA=="; + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.536.0.tgz"; + sha512 = "jeHnxHy02n2oEaXZx0fwNbZwnA1LZvSC6mEQZYlz3trhhqE3Ryn8HnODGR+cUKb8i+iyVCWdKRa4mfz1Xu+sQw=="; }; }; "@aws-sdk/md5-js-3.296.0" = { @@ -742,13 +751,13 @@ let sha512 = "Xhzucs5psscjXJW7V6vMrjJWGmej8Xtw8XIKd91RLmbxdmecMy85/mQC3bIqxgTGhC/e3pKqWSp8z/YjV6iPZg=="; }; }; - "@aws-sdk/middleware-bucket-endpoint-3.515.0" = { + "@aws-sdk/middleware-bucket-endpoint-3.535.0" = { name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; packageName = "@aws-sdk/middleware-bucket-endpoint"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.515.0.tgz"; - sha512 = "Vm423j3udFrhKPaKiXtie+6aF05efjX8lhAu5VOruIvbam7olvdWNdkH7sGWlz1ko3CVa7PwOYjGHiOOhxpEOA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.535.0.tgz"; + sha512 = "7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A=="; }; }; "@aws-sdk/middleware-content-length-3.296.0" = { @@ -778,13 +787,13 @@ let sha512 = "aVCv9CdAVWt9AlZKQZRweIywkAszRrZUCo8K5bBUJNdD4061DoDqLK/6jmqXmObas0j1wQr/eNzjYbv99MZBCg=="; }; }; - "@aws-sdk/middleware-expect-continue-3.515.0" = { + "@aws-sdk/middleware-expect-continue-3.535.0" = { name = "_at_aws-sdk_slash_middleware-expect-continue"; packageName = "@aws-sdk/middleware-expect-continue"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.515.0.tgz"; - sha512 = "TWCXulivab4reOMx/vxa/IwnPX78fLwI9NUoAxjsqB6W9qjmSnPD43BSVeGvbbl/YNmgk7XfMbZb6IgxW7RyzA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.535.0.tgz"; + sha512 = "hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA=="; }; }; "@aws-sdk/middleware-flexible-checksums-3.296.0" = { @@ -796,13 +805,13 @@ let sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.515.0" = { + "@aws-sdk/middleware-flexible-checksums-3.535.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.515.0.tgz"; - sha512 = "ydGjnqNeYlJaAkmQeQnS4pZRAAvzefdm8c234Qh0Fg55xRwHTNLp7uYsdfkTjrdAlj6YIO3Zr6vK6VJ6MGCwug=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.535.0.tgz"; + sha512 = "rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA=="; }; }; "@aws-sdk/middleware-host-header-3.296.0" = { @@ -814,13 +823,13 @@ let sha512 = "V47dFtfkX5lXWv9GDp71gZVCRws4fEdQ9QF9BQ/2UMSNrYjQLg6mFe7NibH+IJoNOid2FIwWIl94Eos636VGYQ=="; }; }; - "@aws-sdk/middleware-host-header-3.515.0" = { + "@aws-sdk/middleware-host-header-3.535.0" = { name = "_at_aws-sdk_slash_middleware-host-header"; packageName = "@aws-sdk/middleware-host-header"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.515.0.tgz"; - sha512 = "I1MwWPzdRKM1luvdDdjdGsDjNVPhj9zaIytEchjTY40NcKOg+p2evLD2y69ozzg8pyXK63r8DdvDGOo9QPuh0A=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.535.0.tgz"; + sha512 = "0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew=="; }; }; "@aws-sdk/middleware-location-constraint-3.296.0" = { @@ -832,13 +841,13 @@ let sha512 = "KHkWaIrZOtJmV1/WO9KOf7kSK41ngfqts3YIun956NYglKTDKyrBIOPCgmXTT/03odnYsKVT/UfbEIh/v4RxGA=="; }; }; - "@aws-sdk/middleware-location-constraint-3.515.0" = { + "@aws-sdk/middleware-location-constraint-3.535.0" = { name = "_at_aws-sdk_slash_middleware-location-constraint"; packageName = "@aws-sdk/middleware-location-constraint"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.515.0.tgz"; - sha512 = "ORFC5oijjTJsHhUXy9o52/vl5Irf6e83bE/8tBp+sVVx81+E8zTTWZbysoa41c0B5Ycd0H3wCWutvjdXT16ydQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.535.0.tgz"; + sha512 = "SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw=="; }; }; "@aws-sdk/middleware-logger-3.296.0" = { @@ -850,13 +859,13 @@ let sha512 = "LzfEEFyBR9LXdWwLdtBrmi1vLdzgdJNntEgzqktVF8LwaCyY+9xIE6TGu/2V+9fJHAwECxjOC1eQbNQdAZ0Tmw=="; }; }; - "@aws-sdk/middleware-logger-3.515.0" = { + "@aws-sdk/middleware-logger-3.535.0" = { name = "_at_aws-sdk_slash_middleware-logger"; packageName = "@aws-sdk/middleware-logger"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.515.0.tgz"; - sha512 = "qXomJzg2m/5seQOxHi/yOXOKfSjwrrJSmEmfwJKJyQgdMbBcjz3Cz0H/1LyC6c5hHm6a/SZgSTzDAbAoUmyL+Q=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.535.0.tgz"; + sha512 = "huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A=="; }; }; "@aws-sdk/middleware-recursion-detection-3.296.0" = { @@ -868,13 +877,13 @@ let sha512 = "UG7TLDPz9ImQG0uVklHTxE9Us7rTImwN+6el6qZCpoTBuGeXgOkfb0/p8izJyFgY/hMUR4cZqs7IdCDUkxQF3w=="; }; }; - "@aws-sdk/middleware-recursion-detection-3.515.0" = { + "@aws-sdk/middleware-recursion-detection-3.535.0" = { name = "_at_aws-sdk_slash_middleware-recursion-detection"; packageName = "@aws-sdk/middleware-recursion-detection"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.515.0.tgz"; - sha512 = "dokHLbTV3IHRIBrw9mGoxcNTnQsjlm7TpkJhPdGT9T4Mq399EyQo51u6IsVMm07RXLl2Zw7u+u9p+qWBFzmFRA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.535.0.tgz"; + sha512 = "am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw=="; }; }; "@aws-sdk/middleware-retry-3.296.0" = { @@ -895,13 +904,13 @@ let sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; }; }; - "@aws-sdk/middleware-sdk-s3-3.515.0" = { + "@aws-sdk/middleware-sdk-s3-3.535.0" = { name = "_at_aws-sdk_slash_middleware-sdk-s3"; packageName = "@aws-sdk/middleware-sdk-s3"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.515.0.tgz"; - sha512 = "vB8JwiTEAqm1UT9xfugnCgl0H0dtBLUQQK99JwQEWjHPZmQ3HQuVkykmJRY3X0hzKMEgqXodz0hZOvf3Hq1mvQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.535.0.tgz"; + sha512 = "/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg=="; }; }; "@aws-sdk/middleware-sdk-sts-3.296.0" = { @@ -931,13 +940,13 @@ let sha512 = "wyiG+WPDvugGTIPpKchGOdvvpcMZEN2IfP6iK//QAqGXsC6rDm5+SNZ3+elvduZjPUdVA06W0CcFYBAkVz8D7Q=="; }; }; - "@aws-sdk/middleware-signing-3.515.0" = { + "@aws-sdk/middleware-signing-3.535.0" = { name = "_at_aws-sdk_slash_middleware-signing"; packageName = "@aws-sdk/middleware-signing"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.515.0.tgz"; - sha512 = "SdjCyQCL702I07KhCiBFcoh6+NYtnruHJQIzWwMpBteuYHnCHW1k9uZ6pqacsS+Y6qpAKfTVNpQx2zP2s6QoHA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.535.0.tgz"; + sha512 = "Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw=="; }; }; "@aws-sdk/middleware-ssec-3.296.0" = { @@ -949,13 +958,13 @@ let sha512 = "vcSyXxEXAC9rWzUd7rq2/JxPdt87DKiA+wfiBrpGvFV+bacocIV0TFcpJncgZqMOoP8b6Osd+mW4BjlkwBamtA=="; }; }; - "@aws-sdk/middleware-ssec-3.515.0" = { + "@aws-sdk/middleware-ssec-3.535.0" = { name = "_at_aws-sdk_slash_middleware-ssec"; packageName = "@aws-sdk/middleware-ssec"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.515.0.tgz"; - sha512 = "0qLjKiorosVBzzaV/o7MEyS9xqLLu02qGbP564Z/FZY74JUQEpBNedgveMUbb6lqr85RnOuwZ0GZ0cBRfH2brQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.535.0.tgz"; + sha512 = "QAQ++9my7VZzusUPOFcUMdhTnjpGRyy/OvPC+jg9usdfcaSZeQbfzbdaVBalcm2Wt+1qxh3LZSTS+LxKikm02Q=="; }; }; "@aws-sdk/middleware-stack-3.296.0" = { @@ -976,13 +985,13 @@ let sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; }; }; - "@aws-sdk/middleware-user-agent-3.515.0" = { + "@aws-sdk/middleware-user-agent-3.535.0" = { name = "_at_aws-sdk_slash_middleware-user-agent"; packageName = "@aws-sdk/middleware-user-agent"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.515.0.tgz"; - sha512 = "nOqZjGA/GkjuJ5fUshec9Fv6HFd7ovOTxMJbw3MfAhqXuVZ6dKF41lpVJ4imNsgyFt3shUg9WDY8zGFjlYMB3g=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.535.0.tgz"; + sha512 = "Uvb2WJ+zdHdCOtsWVPI/M0BcfNrjOYsicDZWtaljucRJKLclY5gNWwD+RwIC+8b5TvfnVOlH+N5jhvpi5Impog=="; }; }; "@aws-sdk/node-config-provider-3.296.0" = { @@ -1039,22 +1048,22 @@ let sha512 = "nLNZKVQfK42euv7101cE5qfg17YCtGcfccx3B5XSAzvyTROR46kwYqbEvYSsWisbZoRhbQc905gB/5E0U5HDIw=="; }; }; - "@aws-sdk/region-config-resolver-3.515.0" = { + "@aws-sdk/region-config-resolver-3.535.0" = { name = "_at_aws-sdk_slash_region-config-resolver"; packageName = "@aws-sdk/region-config-resolver"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.515.0.tgz"; - sha512 = "RIRx9loxMgEAc/r1wPfnfShOuzn4RBi8pPPv6/jhhITEeMnJe6enAh2k5y9DdiVDDgCWZgVFSv0YkAIfzAFsnQ=="; + url = "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.535.0.tgz"; + sha512 = "IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg=="; }; }; - "@aws-sdk/s3-presigned-post-3.515.0" = { + "@aws-sdk/s3-presigned-post-3.536.0" = { name = "_at_aws-sdk_slash_s3-presigned-post"; packageName = "@aws-sdk/s3-presigned-post"; - version = "3.515.0"; + version = "3.536.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.515.0.tgz"; - sha512 = "YQfqo0TlMX5F9gC1fjJBxEBpKNNNgbTKDwMDoAIECT9saQYgBjL23QLHke9EWizt+OpC94Sns98gCnugori3iQ=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.536.0.tgz"; + sha512 = "6CRDpD5GZkHmxBD5UB7NdOmOd2v2By8Mw/kqSGmxgHPsQwrYWnuR3FdxAX4j/QDv81KUiCgak2w/SacDaiPN3g=="; }; }; "@aws-sdk/s3-request-presigner-3.296.0" = { @@ -1066,13 +1075,13 @@ let sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; }; }; - "@aws-sdk/s3-request-presigner-3.515.0" = { + "@aws-sdk/s3-request-presigner-3.536.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.515.0"; + version = "3.536.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.515.0.tgz"; - sha512 = "B6RcXWJTOHSqZDII/sYeM89MWc//AwA7iIcZk+oXyUSdVTl03z6raJMxWqY0dPx7KuBjLTnZPqUXKCCoQvnp/g=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.536.0.tgz"; + sha512 = "bMz7nxYfSjCkw72Hah40o0c9scwU2LQWoT3CkTcWs9OCrG4MCzMTBJNlzRUpxOpfGTZqVzrCaUGINIjh3jP/tQ=="; }; }; "@aws-sdk/service-error-classification-3.296.0" = { @@ -1102,13 +1111,13 @@ let sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; }; }; - "@aws-sdk/signature-v4-crt-3.515.0" = { + "@aws-sdk/signature-v4-crt-3.535.0" = { name = "_at_aws-sdk_slash_signature-v4-crt"; packageName = "@aws-sdk/signature-v4-crt"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.515.0.tgz"; - sha512 = "bfWsHyNg6+b+97MpJ3frfJfHjXcL7NEk252Al7bhNyhKJnPGhbhDXiudvDE+uiINoZgIJ59xqBBQQdB8ymS4RQ=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.535.0.tgz"; + sha512 = "xSULYfliLkI2xnRLgo3pRZAy7ZNBFDPG4vFz4sgl5FX5gPuLt5l55YXtCTNK0hJWJs3gi6WrsCWO9rsGcUH5pg=="; }; }; "@aws-sdk/signature-v4-multi-region-3.296.0" = { @@ -1120,13 +1129,13 @@ let sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; }; }; - "@aws-sdk/signature-v4-multi-region-3.515.0" = { + "@aws-sdk/signature-v4-multi-region-3.535.0" = { name = "_at_aws-sdk_slash_signature-v4-multi-region"; packageName = "@aws-sdk/signature-v4-multi-region"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.515.0.tgz"; - sha512 = "5lrCn4DSE0zL41k0L6moqcdExZhWdAnV0/oMEagrISzQYoia+aNTEeyVD3xqJhRbEW4gCj3Uoyis6c8muf7b9g=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.535.0.tgz"; + sha512 = "tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog=="; }; }; "@aws-sdk/smithy-client-3.296.0" = { @@ -1147,13 +1156,13 @@ let sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; }; }; - "@aws-sdk/token-providers-3.515.0" = { + "@aws-sdk/token-providers-3.535.0" = { name = "_at_aws-sdk_slash_token-providers"; packageName = "@aws-sdk/token-providers"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.515.0.tgz"; - sha512 = "MQuf04rIcTXqwDzmyHSpFPF1fKEzRl64oXtCRUF3ddxTdK6wxXkePfK6wNCuL+GEbEcJAoCtIGIRpzGPJvQjHA=="; + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.535.0.tgz"; + sha512 = "4g+l/B9h1H/SiDtFRosW3pMwc+3PTXljZit+5NUBcET2XqcdUyHmgj3lBdu+CJ9CHdIMggRalYMAFXnRFe3Psg=="; }; }; "@aws-sdk/types-3.296.0" = { @@ -1165,13 +1174,13 @@ let sha512 = "s0wIac64rrMEo2ioUxP9IarGiiCGmelCspNcoNTPSjGl25QqjhyfQqTeGgS58qJ4fHoQb07qra39930xp1IzJg=="; }; }; - "@aws-sdk/types-3.515.0" = { + "@aws-sdk/types-3.535.0" = { name = "_at_aws-sdk_slash_types"; packageName = "@aws-sdk/types"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.515.0.tgz"; - sha512 = "B3gUpiMlpT6ERaLvZZ61D0RyrQPsFYDkCncLPVkZOKkCOoFU46zi1o6T5JcYiz8vkx1q9RGloQ5exh79s5pU/w=="; + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.535.0.tgz"; + sha512 = "aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg=="; }; }; "@aws-sdk/url-parser-3.296.0" = { @@ -1192,13 +1201,13 @@ let sha512 = "kSSVymcbjyQQHvCZaTt1teKKW4MSSMPRdPNxSNO1aLsVwxrWdnAggDrpHwFjvPCRUcKtpThepATOz75PfUm9Bg=="; }; }; - "@aws-sdk/util-arn-parser-3.495.0" = { + "@aws-sdk/util-arn-parser-3.535.0" = { name = "_at_aws-sdk_slash_util-arn-parser"; packageName = "@aws-sdk/util-arn-parser"; - version = "3.495.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.495.0.tgz"; - sha512 = "hwdA3XAippSEUxs7jpznwD63YYFR+LtQvlEcebPTgWR9oQgG9TfS+39PUfbnEeje1ICuOrN3lrFqFbmP9uzbMg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.535.0.tgz"; + sha512 = "smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg=="; }; }; "@aws-sdk/util-base64-3.295.0" = { @@ -1282,13 +1291,13 @@ let sha512 = "YraGGLJepXM6HCTaqEGTFf8RFRBdJ0C6uG5k0kVhiXmYxBkeupn8J07CVp9jfWqcPYWElAnMGVEZKU1OjRo4HQ=="; }; }; - "@aws-sdk/util-endpoints-3.515.0" = { + "@aws-sdk/util-endpoints-3.535.0" = { name = "_at_aws-sdk_slash_util-endpoints"; packageName = "@aws-sdk/util-endpoints"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.515.0.tgz"; - sha512 = "UJi+jdwcGFV/F7d3+e2aQn5yZOVpDiAgfgNhPnEtgV0WozJ5/ZUeZBgWvSc/K415N4A4D/9cbBc7+I+35qzcDQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.535.0.tgz"; + sha512 = "c8TlaQsiPchOOmTTR6qvHCO2O7L7NJwlKWAoQJ2GqWDZuC5es/fyuF2rp1h+ZRrUVraUomS0YdGkAmaDC7hJQg=="; }; }; "@aws-sdk/util-format-url-3.296.0" = { @@ -1300,13 +1309,13 @@ let sha512 = "CcYECzkUAnHL5q3uyPicafn2OY0GiklIYfuOUHPZ/4FMxIesd1BnCDDRjTlFxLWjuNuiihIdwB7Qb1pDzxc3Iw=="; }; }; - "@aws-sdk/util-format-url-3.515.0" = { + "@aws-sdk/util-format-url-3.535.0" = { name = "_at_aws-sdk_slash_util-format-url"; packageName = "@aws-sdk/util-format-url"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.515.0.tgz"; - sha512 = "7BgmUldmECebZU2qUAxOoEkHnji5NZX/j6TcgY4xgl1tUycw72BeKdcQYLUt4YoXQmIGZHiBL8L/TfO48W+FpA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.535.0.tgz"; + sha512 = "ElbNkm0bddu53CuW44Iuux1ZbTV50fydbSh/4ypW3LrmUvHx193ogj0HXQ7X26kmmo9rXcsrLdM92yIeTjidVg=="; }; }; "@aws-sdk/util-hex-encoding-3.295.0" = { @@ -1318,13 +1327,13 @@ let sha512 = "XJcoVo41kHzhe28PBm/rqt5mdCp8R6abwiW9ug1dA6FOoPUO8kBUxDv6xaOmA2hfRvd2ocFfBXaUCBqUowkGcQ=="; }; }; - "@aws-sdk/util-locate-window-3.495.0" = { + "@aws-sdk/util-locate-window-3.535.0" = { name = "_at_aws-sdk_slash_util-locate-window"; packageName = "@aws-sdk/util-locate-window"; - version = "3.495.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.495.0.tgz"; - sha512 = "MfaPXT0kLX2tQaR90saBT9fWQq2DHqSSJRzW+MZWsmF+y5LGCOhO22ac/2o6TKSQm7h0HRc2GaADqYYYor62yg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.535.0.tgz"; + sha512 = "PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA=="; }; }; "@aws-sdk/util-middleware-3.296.0" = { @@ -1381,13 +1390,13 @@ let sha512 = "MGGG+09VkF0N+8KEht8NNE6Q7bqmddgqLkUbvzSky0y18UPEZyq9LTC4JZtzDDOzf/swgbq2IQ/5wtB81iouog=="; }; }; - "@aws-sdk/util-user-agent-browser-3.515.0" = { + "@aws-sdk/util-user-agent-browser-3.535.0" = { name = "_at_aws-sdk_slash_util-user-agent-browser"; packageName = "@aws-sdk/util-user-agent-browser"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.515.0.tgz"; - sha512 = "pTWQb0JCafTmLHLDv3Qqs/nAAJghcPdGQIBpsCStb0YEzg3At/dOi2AIQ683yYnXmeOxLXJDzmlsovfVObJScw=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.535.0.tgz"; + sha512 = "RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig=="; }; }; "@aws-sdk/util-user-agent-node-3.296.0" = { @@ -1399,13 +1408,13 @@ let sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; }; }; - "@aws-sdk/util-user-agent-node-3.515.0" = { + "@aws-sdk/util-user-agent-node-3.535.0" = { name = "_at_aws-sdk_slash_util-user-agent-node"; packageName = "@aws-sdk/util-user-agent-node"; - version = "3.515.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.515.0.tgz"; - sha512 = "A/KJ+/HTohHyVXLH+t/bO0Z2mPrQgELbQO8tX+B2nElo8uklj70r5cT7F8ETsI9oOy+HDVpiL5/v45ZgpUOiPg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.535.0.tgz"; + sha512 = "dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ=="; }; }; "@aws-sdk/util-utf8-3.295.0" = { @@ -1444,13 +1453,13 @@ let sha512 = "7VX3Due7Ip73yfYErFDHZvhgBohC4IyMTfW49DI4C/LFKFCcAoB888MdevUkB87GoiNaRLeT3ZMZ86IWlSEaow=="; }; }; - "@aws-sdk/xml-builder-3.496.0" = { + "@aws-sdk/xml-builder-3.535.0" = { name = "_at_aws-sdk_slash_xml-builder"; packageName = "@aws-sdk/xml-builder"; - version = "3.496.0"; + version = "3.535.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.496.0.tgz"; - sha512 = "GvEjh537IIeOw1ZkZuB37sV12u+ipS5Z1dwjEC/HAvhl5ac23ULtTr1/n+U1gLNN+BAKSWjKiQ2ksj8DiUzeyw=="; + url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.535.0.tgz"; + sha512 = "VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng=="; }; }; "@azu/format-text-1.0.2" = { @@ -1480,31 +1489,31 @@ let sha512 = "TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw=="; }; }; - "@azure/abort-controller-2.0.0" = { + "@azure/abort-controller-2.1.0" = { name = "_at_azure_slash_abort-controller"; packageName = "@azure/abort-controller"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.0.0.tgz"; - sha512 = "RP/mR/WJchR+g+nQFJGOec+nzeN/VvjlwbinccoqfhTsTHbb8X5+mLDp48kHT0ueyum0BNSwGm0kX0UZuIqTGg=="; + url = "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.0.tgz"; + sha512 = "SYtcG13aiV7znycu6plCClWUzD9BBtfnsbIxT89nkkRvQRB4n0kuZyJJvJ7hqdKOn7x7YoGKZ9lVStLJpLnOFw=="; }; }; - "@azure/core-auth-1.6.0" = { + "@azure/core-auth-1.7.0" = { name = "_at_azure_slash_core-auth"; packageName = "@azure/core-auth"; - version = "1.6.0"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.6.0.tgz"; - sha512 = "3X9wzaaGgRaBCwhLQZDtFp5uLIXCPrGbwJNWPPugvL4xbIGgScv77YzzxToKGLAKvG9amDoofMoP+9hsH1vs1w=="; + url = "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.7.0.tgz"; + sha512 = "OuDVn9z2LjyYbpu6e7crEwSipa62jX7/ObV/pmXQfnOG8cHwm363jYtg3FSX3GB1V7jsIKri1zgq7mfXkFk/qw=="; }; }; - "@azure/core-client-1.8.0" = { + "@azure/core-client-1.9.0" = { name = "_at_azure_slash_core-client"; packageName = "@azure/core-client"; - version = "1.8.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.8.0.tgz"; - sha512 = "+gHS3gEzPlhyQBMoqVPOTeNH031R5DM/xpCvz72y38C09rg4Hui/1sJS/ujoisDZbbSHyuRLVWdFlwL0pIFwbg=="; + url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.0.tgz"; + sha512 = "x50SSD7bbG5wen3tMDI2oWVSAjt1K1xw6JZSnc6239RmBwqLJF9dPsKsh9w0Rzh5+mGpsu9FDu3DlsT0lo1+Uw=="; }; }; "@azure/core-http-3.0.4" = { @@ -1516,22 +1525,22 @@ let sha512 = "Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ=="; }; }; - "@azure/core-lro-2.6.0" = { + "@azure/core-lro-2.7.0" = { name = "_at_azure_slash_core-lro"; packageName = "@azure/core-lro"; - version = "2.6.0"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.6.0.tgz"; - sha512 = "PyRNcaIOfMgoUC01/24NoG+k8O81VrKxYARnDlo+Q2xji0/0/j2nIt8BwQh294pb1c5QnXTDPbNR4KzoDKXEoQ=="; + url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.7.0.tgz"; + sha512 = "oj7d8vWEvOREIByH1+BnoiFwszzdE7OXUEd6UTv+cmx5HvjBBlkVezm3uZgpXWaxDj5ATL/k89+UMeGx1Ou9TQ=="; }; }; - "@azure/core-paging-1.5.0" = { + "@azure/core-paging-1.6.0" = { name = "_at_azure_slash_core-paging"; packageName = "@azure/core-paging"; - version = "1.5.0"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.5.0.tgz"; - sha512 = "zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw=="; + url = "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.6.0.tgz"; + sha512 = "W8eRv7MVFx/jbbYfcRT5+pGnZ9St/P1UvOi+63vxPwuQ3y+xj+wqWTGxpkXUETv3szsqGu0msdxVtjszCeB4zA=="; }; }; "@azure/core-rest-pipeline-1.10.1" = { @@ -1543,13 +1552,13 @@ let sha512 = "Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA=="; }; }; - "@azure/core-rest-pipeline-1.14.0" = { + "@azure/core-rest-pipeline-1.15.0" = { name = "_at_azure_slash_core-rest-pipeline"; packageName = "@azure/core-rest-pipeline"; - version = "1.14.0"; + version = "1.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.14.0.tgz"; - sha512 = "Tp4M6NsjCmn9L5p7HsW98eSOS7A0ibl3e5ntZglozT0XuD/0y6i36iW829ZbBq0qihlGgfaeFpkLjZ418KDm1Q=="; + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.15.0.tgz"; + sha512 = "6kBQwE75ZVlOjBbp0/PX0fgNLHxoMDxHe3aIPV/RLVwrIDidxTbsHtkSbPNTkheMset3v9s1Z08XuMNpWRK/7w=="; }; }; "@azure/core-tracing-1.0.0-preview.13" = { @@ -1561,13 +1570,13 @@ let sha512 = "KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ=="; }; }; - "@azure/core-tracing-1.0.1" = { + "@azure/core-tracing-1.1.0" = { name = "_at_azure_slash_core-tracing"; packageName = "@azure/core-tracing"; - version = "1.0.1"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.1.tgz"; - sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; + url = "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.1.0.tgz"; + sha512 = "MVeJvGHB4jmF7PeHhyr72vYJsBJ3ff1piHikMgRaabPAC4P3rxhf9fm42I+DixLysBunskJWhsDQD2A+O+plkQ=="; }; }; "@azure/core-util-1.2.0" = { @@ -1579,13 +1588,13 @@ let sha512 = "ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng=="; }; }; - "@azure/core-util-1.7.0" = { + "@azure/core-util-1.8.0" = { name = "_at_azure_slash_core-util"; packageName = "@azure/core-util"; - version = "1.7.0"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.7.0.tgz"; - sha512 = "Zq2i3QO6k9DA8vnm29mYM4G8IE9u1mhF1GUabVEqPNX8Lj833gdxQ2NAFxt2BZsfAL+e9cT8SyVN7dFVJ/Hf0g=="; + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.8.0.tgz"; + sha512 = "w8NrGnrlGDF7fj36PBnJhGXDK2Y3kpTOgL7Ksb5snEHXq/3EAbKYOp1yqme0yWCUlSDq5rjqvxSBAJmsqYac3w=="; }; }; "@azure/identity-4.0.1" = { @@ -1597,13 +1606,13 @@ let sha512 = "yRdgF03SFLqUMZZ1gKWt0cs0fvrDIkq2bJ6Oidqcoo5uM85YMBnXWMzYKK30XqIT76lkFyAaoAAy5knXhrG4Lw=="; }; }; - "@azure/logger-1.0.4" = { + "@azure/logger-1.1.0" = { name = "_at_azure_slash_logger"; packageName = "@azure/logger"; - version = "1.0.4"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/logger/-/logger-1.0.4.tgz"; - sha512 = "ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg=="; + url = "https://registry.npmjs.org/@azure/logger/-/logger-1.1.0.tgz"; + sha512 = "BnfkfzVEsrgbVCtqq0RYRMePSH2lL/cgUUR5sYRF4yNN10zJZq/cODz0r89k3ykY83MqeM3twR292a3YBNgC3w=="; }; }; "@azure/msal-browser-3.10.0" = { @@ -1696,13 +1705,13 @@ let sha512 = "uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw=="; }; }; - "@babel/core-7.23.9" = { + "@babel/core-7.24.0" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz"; - sha512 = "5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz"; + sha512 = "fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw=="; }; }; "@babel/generator-7.17.7" = { @@ -1759,13 +1768,13 @@ let sha512 = "9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ=="; }; }; - "@babel/helper-create-class-features-plugin-7.23.10" = { + "@babel/helper-create-class-features-plugin-7.24.0" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.23.10"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz"; - sha512 = "2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.0.tgz"; + sha512 = "QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g=="; }; }; "@babel/helper-create-regexp-features-plugin-7.22.15" = { @@ -1786,6 +1795,15 @@ let sha512 = "NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q=="; }; }; + "@babel/helper-define-polyfill-provider-0.6.1" = { + name = "_at_babel_slash_helper-define-polyfill-provider"; + packageName = "@babel/helper-define-polyfill-provider"; + version = "0.6.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz"; + sha512 = "o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA=="; + }; + }; "@babel/helper-environment-visitor-7.22.20" = { name = "_at_babel_slash_helper-environment-visitor"; packageName = "@babel/helper-environment-visitor"; @@ -1849,13 +1867,13 @@ let sha512 = "HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="; }; }; - "@babel/helper-plugin-utils-7.22.5" = { + "@babel/helper-plugin-utils-7.24.0" = { name = "_at_babel_slash_helper-plugin-utils"; packageName = "@babel/helper-plugin-utils"; - version = "7.22.5"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"; - sha512 = "uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="; + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz"; + sha512 = "9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w=="; }; }; "@babel/helper-remap-async-to-generator-7.22.20" = { @@ -1939,13 +1957,13 @@ let sha512 = "pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw=="; }; }; - "@babel/helpers-7.23.9" = { + "@babel/helpers-7.24.0" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz"; - sha512 = "87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz"; + sha512 = "ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA=="; }; }; "@babel/highlight-7.23.4" = { @@ -1975,13 +1993,13 @@ let sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; }; }; - "@babel/parser-7.23.9" = { + "@babel/parser-7.24.0" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz"; - sha512 = "9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz"; + sha512 = "QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg=="; }; }; "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3" = { @@ -2029,13 +2047,13 @@ let sha512 = "cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="; }; }; - "@babel/plugin-proposal-decorators-7.23.9" = { + "@babel/plugin-proposal-decorators-7.24.0" = { name = "_at_babel_slash_plugin-proposal-decorators"; packageName = "@babel/plugin-proposal-decorators"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.9.tgz"; - sha512 = "hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.0.tgz"; + sha512 = "LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ=="; }; }; "@babel/plugin-proposal-export-default-from-7.23.3" = { @@ -2119,13 +2137,13 @@ let sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; }; }; - "@babel/plugin-syntax-decorators-7.23.3" = { + "@babel/plugin-syntax-decorators-7.24.0" = { name = "_at_babel_slash_plugin-syntax-decorators"; packageName = "@babel/plugin-syntax-decorators"; - version = "7.23.3"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz"; - sha512 = "cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA=="; + url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.0.tgz"; + sha512 = "MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw=="; }; }; "@babel/plugin-syntax-dynamic-import-7.8.3" = { @@ -2569,13 +2587,13 @@ let sha512 = "mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q=="; }; }; - "@babel/plugin-transform-object-rest-spread-7.23.4" = { + "@babel/plugin-transform-object-rest-spread-7.24.0" = { name = "_at_babel_slash_plugin-transform-object-rest-spread"; packageName = "@babel/plugin-transform-object-rest-spread"; - version = "7.23.4"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz"; - sha512 = "9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz"; + sha512 = "y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w=="; }; }; "@babel/plugin-transform-object-super-7.23.3" = { @@ -2695,13 +2713,13 @@ let sha512 = "QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg=="; }; }; - "@babel/plugin-transform-runtime-7.23.9" = { + "@babel/plugin-transform-runtime-7.24.0" = { name = "_at_babel_slash_plugin-transform-runtime"; packageName = "@babel/plugin-transform-runtime"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz"; - sha512 = "A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.0.tgz"; + sha512 = "zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA=="; }; }; "@babel/plugin-transform-shorthand-properties-7.23.3" = { @@ -2803,22 +2821,22 @@ let sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g=="; }; }; - "@babel/preset-env-7.23.9" = { + "@babel/preset-env-7.24.0" = { name = "_at_babel_slash_preset-env"; packageName = "@babel/preset-env"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz"; - sha512 = "3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A=="; + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.0.tgz"; + sha512 = "ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA=="; }; }; - "@babel/preset-flow-7.23.3" = { + "@babel/preset-flow-7.24.0" = { name = "_at_babel_slash_preset-flow"; packageName = "@babel/preset-flow"; - version = "7.23.3"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.23.3.tgz"; - sha512 = "7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA=="; + url = "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.0.tgz"; + sha512 = "cum/nSi82cDaSJ21I4PgLTVlj0OXovFk6GRguJYe/IKg6y6JHLTbJhybtX4k35WT9wdeJfEVjycTixMhBHd0Dg=="; }; }; "@babel/preset-modules-0.1.6-no-external-plugins" = { @@ -2857,13 +2875,13 @@ let sha512 = "x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="; }; }; - "@babel/runtime-7.23.9" = { + "@babel/runtime-7.24.0" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz"; - sha512 = "0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw=="; + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz"; + sha512 = "Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw=="; }; }; "@babel/runtime-7.9.0" = { @@ -2875,22 +2893,13 @@ let sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; }; }; - "@babel/template-7.22.15" = { + "@babel/template-7.24.0" = { name = "_at_babel_slash_template"; packageName = "@babel/template"; - version = "7.22.15"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"; - sha512 = "QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="; - }; - }; - "@babel/template-7.23.9" = { - name = "_at_babel_slash_template"; - packageName = "@babel/template"; - version = "7.23.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz"; - sha512 = "+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA=="; + url = "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz"; + sha512 = "Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA=="; }; }; "@babel/traverse-7.23.2" = { @@ -2902,13 +2911,13 @@ let sha512 = "azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw=="; }; }; - "@babel/traverse-7.23.9" = { + "@babel/traverse-7.24.0" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.23.9"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz"; - sha512 = "I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz"; + sha512 = "HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw=="; }; }; "@babel/types-7.17.0" = { @@ -2929,31 +2938,13 @@ let sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="; }; }; - "@babel/types-7.23.6" = { + "@babel/types-7.24.0" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.23.6"; + version = "7.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz"; - sha512 = "+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg=="; - }; - }; - "@babel/types-7.23.9" = { - name = "_at_babel_slash_types"; - packageName = "@babel/types"; - version = "7.23.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz"; - sha512 = "dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q=="; - }; - }; - "@bconnorwhite/module-2.0.2" = { - name = "_at_bconnorwhite_slash_module"; - packageName = "@bconnorwhite/module"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@bconnorwhite/module/-/module-2.0.2.tgz"; - sha512 = "ck1me5WMgZKp06gnJrVKEkytpehTTQbvsAMbF1nGPeHri/AZNhj87++PSE2LOxmZqM0EtGMaqeLdx7Lw7SUnTA=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz"; + sha512 = "+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w=="; }; }; "@bmewburn/js-beautify-1.14.9" = { @@ -3037,49 +3028,49 @@ let sha512 = "htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA=="; }; }; - "@cdktf/cli-core-0.20.3" = { + "@cdktf/cli-core-0.20.5" = { name = "_at_cdktf_slash_cli-core"; packageName = "@cdktf/cli-core"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.20.3.tgz"; - sha512 = "FlxQC7VFmOvYV/0CAd3BRP45nvrjFu1QEfr0OuS0YfyBpF/GG1FCBm1D7hepfqkxbvpGUxglI/JhCoI9IYQ54Q=="; + url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.20.5.tgz"; + sha512 = "QTOQjzxLYksskbEk1Db+LsXcCE3OXCGpX/i7JiBcp1IUCr7IRHC/W9adb9qKuJvZfCsRwHcIUmCPNAGUheRHUg=="; }; }; - "@cdktf/commons-0.20.3" = { + "@cdktf/commons-0.20.5" = { name = "_at_cdktf_slash_commons"; packageName = "@cdktf/commons"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.20.3.tgz"; - sha512 = "9vysGHMeUnvv5G59bBKGHs7Gh3XaW9gqfmDU4xIivwsTLmcFJERUQGDrHNB3DNgLLc8LCCOTN0FKte51Mx+VgA=="; + url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.20.5.tgz"; + sha512 = "5Fa8CN2nEfbwxQyuSwMLit/r34CIWq7v9PoBn+8PiG9fPeVw1OT+4zmcQYAwKa7JD5trqpvheVNCnCKesx2TWA=="; }; }; - "@cdktf/hcl-tools-0.20.3" = { + "@cdktf/hcl-tools-0.20.5" = { name = "_at_cdktf_slash_hcl-tools"; packageName = "@cdktf/hcl-tools"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl-tools/-/hcl-tools-0.20.3.tgz"; - sha512 = "S0i3XKSFVVRW16xvodbIC81/2WiEAySJQK3JttmMMgADWGs76j9aIiDOZzs0NF9EbLY4QkxgcPApO33l9EATLw=="; + url = "https://registry.npmjs.org/@cdktf/hcl-tools/-/hcl-tools-0.20.5.tgz"; + sha512 = "mbm9lzS8GeEi3A2AXcAwaWYvi4z/DY2nAOYTQnhvPDjEDPMn8bS7/6BCRj/+G4VcfRJG3vSIrV1szLYIueBuag=="; }; }; - "@cdktf/hcl2cdk-0.20.3" = { + "@cdktf/hcl2cdk-0.20.5" = { name = "_at_cdktf_slash_hcl2cdk"; packageName = "@cdktf/hcl2cdk"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.20.3.tgz"; - sha512 = "XXNDp52vIXh2revaaosE/e6TXY6SDoss48cCJ1FQjd5GJw9HdwAXEhQvCH59v7wAVokZk3NGEUybSXHq3zwCYA=="; + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.20.5.tgz"; + sha512 = "sA5ldRMQxy3zxfq+Kq/MqtDOrg8u6k/X2wMz3p11hZSJiAdDK/7vranUsm3iUvHUIjAGqurGbLOJ40bVggF4ow=="; }; }; - "@cdktf/hcl2json-0.20.3" = { + "@cdktf/hcl2json-0.20.5" = { name = "_at_cdktf_slash_hcl2json"; packageName = "@cdktf/hcl2json"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.20.3.tgz"; - sha512 = "GCq/GrVRXI0nR5gQM0LW7pxEA/tZav0dGQZGowHif/vXsMlOZjTh/F1ISVmDUCkNHV7pgbFmy6tDg7RtsiavXw=="; + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.20.5.tgz"; + sha512 = "dI2M7X05ak6v5rwKzI68SocEH5YQFxF5hQzpaj9Bli672zhD88QTLOzdC61/GvAkbqf955C05jqcvC7KCY0h1w=="; }; }; "@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11" = { @@ -3091,22 +3082,22 @@ let sha512 = "qvga/nzEtdCJMu/6jJfDqpzbRejvXtNhWFnbubfuYyN5nMNORNXX+POT4j+mQSDQar5bIQ1a812szw/zr47cfw=="; }; }; - "@cdktf/provider-generator-0.20.3" = { + "@cdktf/provider-generator-0.20.5" = { name = "_at_cdktf_slash_provider-generator"; packageName = "@cdktf/provider-generator"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.20.3.tgz"; - sha512 = "PIu/7kK3YZk9YefCTqJ8OiSER2zojz1EvpeeOxpIj+m98iMB2fpIRAA0ytVzkC3ilbDRCLyQb6+SlMxgSnenYg=="; + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.20.5.tgz"; + sha512 = "wyH0I0gzwGAOOizd1stMLyFBkGkrwoR5h+BAP08HutyyiVlcs1ddeceh+mwD4HyH1pI+F+ZJh2lt1ViHhzNCrw=="; }; }; - "@cdktf/provider-schema-0.20.3" = { + "@cdktf/provider-schema-0.20.5" = { name = "_at_cdktf_slash_provider-schema"; packageName = "@cdktf/provider-schema"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-schema/-/provider-schema-0.20.3.tgz"; - sha512 = "fgqHtVY5FYN2spYsDLTPOxvspWu2JfmV4nxThVwd8bGBmdFf36ceWCSyyuc5tnSd4rJstXoAXMkTYlX2GtOubQ=="; + url = "https://registry.npmjs.org/@cdktf/provider-schema/-/provider-schema-0.20.5.tgz"; + sha512 = "YfLsoAmHrBrkj24/oXBuDydd8FC7ux6+cR9gN7xhcO1gCrzYnIprQ2LHwHAgr6UUtHJgeAhVaJQWjyLaMAf1PA=="; }; }; "@chemzqm/msgpack-lite-0.1.29" = { @@ -3136,13 +3127,13 @@ let sha512 = "lKN2XCfKCmpKb86a1tl4GIwsJYDy9TGuwjhDELLmpKygQhw8X2xR4dusgpC5Tg7q1pB96Eb0rBo81kxSILQMwA=="; }; }; - "@cloudflare/workers-types-4.20240208.0" = { + "@cloudflare/workers-types-4.20240314.0" = { name = "_at_cloudflare_slash_workers-types"; packageName = "@cloudflare/workers-types"; - version = "4.20240208.0"; + version = "4.20240314.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20240208.0.tgz"; - sha512 = "MVGTTjZpJu4kJONvai5SdJzWIhOJbuweVZ3goI7FNyG+JdoQH41OoB+nMhLsX626vPLZVWGPIWsiSo/WZHzgQw=="; + url = "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20240314.0.tgz"; + sha512 = "eg2dK/tYSiFvQu3sexjB32WEGi3GEmY6pLRF4nrV9Rwi2F2965o6f6604jQY8whhrmNdEoWErSjhuuUld6xgKQ=="; }; }; "@colors/colors-1.5.0" = { @@ -3163,139 +3154,139 @@ let sha512 = "Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA=="; }; }; - "@commitlint/config-validator-18.6.1" = { + "@commitlint/config-validator-19.0.3" = { name = "_at_commitlint_slash_config-validator"; packageName = "@commitlint/config-validator"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-18.6.1.tgz"; - sha512 = "05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw=="; + url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.3.tgz"; + sha512 = "2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q=="; }; }; - "@commitlint/ensure-18.6.1" = { + "@commitlint/ensure-19.0.3" = { name = "_at_commitlint_slash_ensure"; packageName = "@commitlint/ensure"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-18.6.1.tgz"; - sha512 = "BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ=="; + url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.3.tgz"; + sha512 = "SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ=="; }; }; - "@commitlint/execute-rule-18.6.1" = { + "@commitlint/execute-rule-19.0.0" = { name = "_at_commitlint_slash_execute-rule"; packageName = "@commitlint/execute-rule"; - version = "18.6.1"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-18.6.1.tgz"; - sha512 = "7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg=="; + url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz"; + sha512 = "mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw=="; }; }; - "@commitlint/format-18.6.1" = { + "@commitlint/format-19.0.3" = { name = "_at_commitlint_slash_format"; packageName = "@commitlint/format"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/format/-/format-18.6.1.tgz"; - sha512 = "K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg=="; + url = "https://registry.npmjs.org/@commitlint/format/-/format-19.0.3.tgz"; + sha512 = "QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q=="; }; }; - "@commitlint/is-ignored-18.6.1" = { + "@commitlint/is-ignored-19.0.3" = { name = "_at_commitlint_slash_is-ignored"; packageName = "@commitlint/is-ignored"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-18.6.1.tgz"; - sha512 = "MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA=="; + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.0.3.tgz"; + sha512 = "MqDrxJaRSVSzCbPsV6iOKG/Lt52Y+PVwFVexqImmYYFhe51iVJjK2hRhOG2jUAGiUHk4jpdFr0cZPzcBkSzXDQ=="; }; }; - "@commitlint/lint-18.6.1" = { + "@commitlint/lint-19.1.0" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "18.6.1"; + version = "19.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-18.6.1.tgz"; - sha512 = "8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-19.1.0.tgz"; + sha512 = "ESjaBmL/9cxm+eePyEr6SFlBUIYlYpI80n+Ltm7IA3MAcrmiP05UMhJdAD66sO8jvo8O4xdGn/1Mt2G5VzfZKw=="; }; }; - "@commitlint/load-18.6.1" = { + "@commitlint/load-19.2.0" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "18.6.1"; + version = "19.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-18.6.1.tgz"; - sha512 = "p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-19.2.0.tgz"; + sha512 = "XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ=="; }; }; - "@commitlint/message-18.6.1" = { + "@commitlint/message-19.0.0" = { name = "_at_commitlint_slash_message"; packageName = "@commitlint/message"; - version = "18.6.1"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/message/-/message-18.6.1.tgz"; - sha512 = "VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw=="; + url = "https://registry.npmjs.org/@commitlint/message/-/message-19.0.0.tgz"; + sha512 = "c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw=="; }; }; - "@commitlint/parse-18.6.1" = { + "@commitlint/parse-19.0.3" = { name = "_at_commitlint_slash_parse"; packageName = "@commitlint/parse"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-18.6.1.tgz"; - sha512 = "eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ=="; + url = "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.3.tgz"; + sha512 = "Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA=="; }; }; - "@commitlint/read-18.6.1" = { + "@commitlint/read-19.2.0" = { name = "_at_commitlint_slash_read"; packageName = "@commitlint/read"; - version = "18.6.1"; + version = "19.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/read/-/read-18.6.1.tgz"; - sha512 = "ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w=="; + url = "https://registry.npmjs.org/@commitlint/read/-/read-19.2.0.tgz"; + sha512 = "HlGeEd/jyp2a5Fb9mvtsaDm5hFCmj80dJYjLQkpG3DzWneWBc37YU3kM8Za1D1HUazZaTkdsWq73M3XDE4CvCA=="; }; }; - "@commitlint/resolve-extends-18.6.1" = { + "@commitlint/resolve-extends-19.1.0" = { name = "_at_commitlint_slash_resolve-extends"; packageName = "@commitlint/resolve-extends"; - version = "18.6.1"; + version = "19.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-18.6.1.tgz"; - sha512 = "ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ=="; + url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz"; + sha512 = "z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg=="; }; }; - "@commitlint/rules-18.6.1" = { + "@commitlint/rules-19.0.3" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-18.6.1.tgz"; - sha512 = "kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-19.0.3.tgz"; + sha512 = "TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw=="; }; }; - "@commitlint/to-lines-18.6.1" = { + "@commitlint/to-lines-19.0.0" = { name = "_at_commitlint_slash_to-lines"; packageName = "@commitlint/to-lines"; - version = "18.6.1"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-18.6.1.tgz"; - sha512 = "Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q=="; + url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.0.0.tgz"; + sha512 = "vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw=="; }; }; - "@commitlint/top-level-18.6.1" = { + "@commitlint/top-level-19.0.0" = { name = "_at_commitlint_slash_top-level"; packageName = "@commitlint/top-level"; - version = "18.6.1"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-18.6.1.tgz"; - sha512 = "HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw=="; + url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.0.0.tgz"; + sha512 = "KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ=="; }; }; - "@commitlint/types-18.6.1" = { + "@commitlint/types-19.0.3" = { name = "_at_commitlint_slash_types"; packageName = "@commitlint/types"; - version = "18.6.1"; + version = "19.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/types/-/types-18.6.1.tgz"; - sha512 = "gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg=="; + url = "https://registry.npmjs.org/@commitlint/types/-/types-19.0.3.tgz"; + sha512 = "tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA=="; }; }; "@cronvel/get-pixels-3.4.1" = { @@ -3307,58 +3298,58 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-8.3.2" = { + "@cspell/cspell-bundled-dicts-8.6.0" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.3.2.tgz"; - sha512 = "3ubOgz1/MDixJbq//0rQ2omB3cSdhVJDviERZeiREGz4HOq84aaK1Fqbw5SjNZHvhpoq+AYXm6kJbIAH8YhKgg=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.6.0.tgz"; + sha512 = "hRVvir4G4276Kz/Cru34AJg1FObIw5MrzezAwHkD3obNMwZkof8aX3MEN6AzWusJSVG2ZxZxZAEnYbgqvGr2Fg=="; }; }; - "@cspell/cspell-json-reporter-8.3.2" = { + "@cspell/cspell-json-reporter-8.6.0" = { name = "_at_cspell_slash_cspell-json-reporter"; packageName = "@cspell/cspell-json-reporter"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.3.2.tgz"; - sha512 = "gHSz4jXMJPcxx+lOGfXhHuoyenAWQ8PVA/atHFrWYKo1LzKTbpkEkrsDnlX8QNJubc3EMH63Uy+lOIaFDVyHiQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.6.0.tgz"; + sha512 = "fPpE4a3zpdfwgTyfLgCmxZn4owkZ4IP6A/oL4XLW22IxW5xBIbXEveOSY+uiWAnVfEnqfrMNRLAGj7JoXnJ1Vg=="; }; }; - "@cspell/cspell-pipe-8.3.2" = { + "@cspell/cspell-pipe-8.6.0" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.3.2.tgz"; - sha512 = "GZmDwvQGOjQi3IjD4k9xXeVTDANczksOsgVKb3v2QZk9mR4Qj8c6Uarjd4AgSiIhu/wBliJfzr5rWFJu4X2VfQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.6.0.tgz"; + sha512 = "gbAZksz38OHaN8s4fOmmgtgQfie1K8dRGlo9z/uxSx5FIELV48GWTbHn9t1TY2yBXBwJ7+4NF2+r624rtlPoHQ=="; }; }; - "@cspell/cspell-resolver-8.3.2" = { + "@cspell/cspell-resolver-8.6.0" = { name = "_at_cspell_slash_cspell-resolver"; packageName = "@cspell/cspell-resolver"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.3.2.tgz"; - sha512 = "w2Tmb95bzdEz9L4W5qvsP5raZbyEzKL7N2ksU/+yh8NEJcTuExmAl/nMnb3aIk7m2b+kPHnMOcJuwfUMLmyv4A=="; + url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.6.0.tgz"; + sha512 = "ARwO6TWKy8fLHNhC/ls5Wo/AK86E1oLVChwWtHdq7eVyEUIykQaXGLqoRThkIT2jyLfGDrhSvaU+yqcXVLE48Q=="; }; }; - "@cspell/cspell-service-bus-8.3.2" = { + "@cspell/cspell-service-bus-8.6.0" = { name = "_at_cspell_slash_cspell-service-bus"; packageName = "@cspell/cspell-service-bus"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.3.2.tgz"; - sha512 = "skTHNyVi74//W/O+f4IauDhm6twA9S2whkylonsIzPxEl4Pn3y2ZEMXNki/MWUwZfDIzKKSxlcREH61g7zCvhg=="; + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.6.0.tgz"; + sha512 = "veCGlhlNGmYMgzX/rMiDp8j7ndLxFHIZq3h6DNlIsIoSjP1v5Rk6UcCwEoWYexwKmNXo7c2VooB0GM9LSBcPAQ=="; }; }; - "@cspell/cspell-types-8.3.2" = { + "@cspell/cspell-types-8.6.0" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.3.2.tgz"; - sha512 = "qS/gWd9ItOrN6ZX5pwC9lJjnBoyiAyhxYq0GUXuV892LQvwrBmECGk6KhsA1lPW7JJS7o57YTAS1jmXnmXMEpg=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.6.0.tgz"; + sha512 = "+CU/nuFOpswJAA3IS2TcKGskfM/o/4aNG1IMUVaOEQi1Sc5qZQ4Wj1qDIWJArSHFYW1Q4XFa4U8K1jnVHkAhZQ=="; }; }; "@cspell/dict-ada-4.0.2" = { @@ -3604,13 +3595,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.3.16" = { + "@cspell/dict-en_us-4.3.17" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.3.16"; + version = "4.3.17"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.16.tgz"; - sha512 = "fyNuAvYpkllmsMpfAJaMip250LRAnEDp2EZbkjYwAJXXjtgQ4/1yh6sLityxPMDtJZN65Eko+8rJzGJHez4zbA=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.17.tgz"; + sha512 = "CS0Tb2f2YwQZ4VZ6+WLAO5uOzb0iO/iYSRl34kX4enq6quXxLYzwdfGAwv85wSYHPdga8tGiZFP+p8GPsi2JEg=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -3928,13 +3919,13 @@ let sha512 = "lEdzrcyau6mgzu1ie98GjOEegwVHvoaWtzQnm1ie4DyZgMr+N6D0Iyj1lzvtmt0snvsDFa5F2bsYzf3IMKcpcA=="; }; }; - "@cspell/dict-public-licenses-2.0.5" = { + "@cspell/dict-public-licenses-2.0.6" = { name = "_at_cspell_slash_dict-public-licenses"; packageName = "@cspell/dict-public-licenses"; - version = "2.0.5"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.5.tgz"; - sha512 = "91HK4dSRri/HqzAypHgduRMarJAleOX5NugoI8SjDLPzWYkwZ1ftuCXSk+fy8DLc3wK7iOaFcZAvbjmnLhVs4A=="; + url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.6.tgz"; + sha512 = "bHqpSpJvLCUcWxj1ov/Ki8WjmESpYwRpQlqfdchekOTc93Huhvjm/RXVN1R4fVf4Hspyem1QVkCGqAmjJMj6sw=="; }; }; "@cspell/dict-python-1.0.38" = { @@ -4090,22 +4081,22 @@ let sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A=="; }; }; - "@cspell/dynamic-import-8.3.2" = { + "@cspell/dynamic-import-8.6.0" = { name = "_at_cspell_slash_dynamic-import"; packageName = "@cspell/dynamic-import"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.3.2.tgz"; - sha512 = "4t0xM5luA3yQhar2xWvYK4wQSDB2r0u8XkpzzJqd57MnJXd7uIAxI0awGUrDXukadRaCo0tDIlMUBemH48SNVg=="; + url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.6.0.tgz"; + sha512 = "yDJZ/uXCpZcAkXwaWa0JcCZHZFxnF3qtiFiq2WG5cEw8tiJiNdawjSCd8/D35dT3QFNaInMP+H3sOf68dNueew=="; }; }; - "@cspell/strong-weak-map-8.3.2" = { + "@cspell/strong-weak-map-8.6.0" = { name = "_at_cspell_slash_strong-weak-map"; packageName = "@cspell/strong-weak-map"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.3.2.tgz"; - sha512 = "Mte/2000ap278kRYOUhiGWI7MNr1+A7WSWJmlcdP4CAH5SO20sZI3/cyZLjJJEyapdhK5vaP1L5J9sUcVDHd3A=="; + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.6.0.tgz"; + sha512 = "QenBOdIT1zRa0kF3Z1mwObcvmdhxn+rzQDdmkxwSyRB/9KsNnib6XXTUo8P+Z/ZKXOYbP9Wmf4FX+vKd3yVX0Q=="; }; }; "@cspotcode/source-map-support-0.8.1" = { @@ -4243,121 +4234,121 @@ let sha512 = "0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="; }; }; - "@electron-forge/core-7.2.0" = { + "@electron-forge/core-7.3.0" = { name = "_at_electron-forge_slash_core"; packageName = "@electron-forge/core"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.2.0.tgz"; - sha512 = "7Sh0KW79Z/y9MStU3sWTBbTkM4SvV6rL557/ndlfAbZrxcGMnmWHrzn/odAZW1eyfhKguBb7C1Ijw0YTpsdVsw=="; + url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.3.0.tgz"; + sha512 = "Z0wvs/YutUzo5xbCBjhoWSnlO1y5DbM4LMa5Di4Dxaf8v/xi7PQ/ncjAiOJKFYI8mG23Nn8Ae13weG0tiXISbA=="; }; }; - "@electron-forge/core-utils-7.2.0" = { + "@electron-forge/core-utils-7.3.0" = { name = "_at_electron-forge_slash_core-utils"; packageName = "@electron-forge/core-utils"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.2.0.tgz"; - sha512 = "PI1wETlF/+Cxm1m/IgURQ9S3LzHU70/S4CHmkw4xJg4wYVRTfiKpH2XRE9VqEJU854hEnsCGynAIn7/Z2h6SIA=="; + url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.3.0.tgz"; + sha512 = "cKeWuC8zYcp2n9caRWvCQgwIFtDqaUlwQVeg2VBpgJTGYHNKEDQHadR2xtIXTcfNgPUbQEAXiaS2xuxuhPQLfw=="; }; }; - "@electron-forge/maker-base-7.2.0" = { + "@electron-forge/maker-base-7.3.0" = { name = "_at_electron-forge_slash_maker-base"; packageName = "@electron-forge/maker-base"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.2.0.tgz"; - sha512 = "5dCFiVo4WhSlLf/T9MP+jnMqP3qfmwvjCSiTRE08USeotNWhycztcFox94NbxMJkRt329tNeG2RRs7RzdCz21w=="; + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.3.0.tgz"; + sha512 = "1o0YT1QBCf9oAfQNJmWQehn+DQp8mqaUbwaivNtIgTKRlzAVfD7UoAS7izuUqEW6M6NOvFXfCQjp7IgGckVVBg=="; }; }; - "@electron-forge/plugin-base-7.2.0" = { + "@electron-forge/plugin-base-7.3.0" = { name = "_at_electron-forge_slash_plugin-base"; packageName = "@electron-forge/plugin-base"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.2.0.tgz"; - sha512 = "c/pQK36BMBMKiemO68g1ZQOCXBA93x/aeX3lIXwK5bKVuaGt16Unfmby5Q7iIvY+/KsBuLYGkAder8HDN+4Nbw=="; + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.3.0.tgz"; + sha512 = "cS0dqi9yTMgKzy1RhJ21YheRjWSbUh0bOKuByYAWevdqMZfqO2KyhXIsmH5QizL+bub8uWOUsknXVrOp73NLfw=="; }; }; - "@electron-forge/publisher-base-7.2.0" = { + "@electron-forge/publisher-base-7.3.0" = { name = "_at_electron-forge_slash_publisher-base"; packageName = "@electron-forge/publisher-base"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.2.0.tgz"; - sha512 = "c0pwcQeMZi0S4iLlgA3pqm6ZdW2u7Ea4Ynat04Gw7su5GLtbrKRgYSL36ZRhzz7sgm4372niI0k91KaH5KToHg=="; + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.3.0.tgz"; + sha512 = "iO8QuM0zTLcEA0/7adEUOzMrhu/h6Qk9UiWNUllBctZXZ+FO0CbAY7eGzOgjOKqH5akbEKHwCSRnjrFt91QpQg=="; }; }; - "@electron-forge/shared-types-7.2.0" = { + "@electron-forge/shared-types-7.3.0" = { name = "_at_electron-forge_slash_shared-types"; packageName = "@electron-forge/shared-types"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.2.0.tgz"; - sha512 = "d8i+pwPwBnlmFTRkq7QfaoRS9LywfyjDdHqQZuArFbL6NLAEbZ52irFiAE3NSLf4STew/BA6IK9sTPz3KRmvQw=="; + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.3.0.tgz"; + sha512 = "+YGOTGUGVrcaRm9zO3xsWSj2GS9iVY6E1WTG0vD2OxZtdEGcdy3hZryV72f5gH+qeZZvujYSR2s7VvZjhFEHaQ=="; }; }; - "@electron-forge/template-base-7.2.0" = { + "@electron-forge/template-base-7.3.0" = { name = "_at_electron-forge_slash_template-base"; packageName = "@electron-forge/template-base"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.2.0.tgz"; - sha512 = "X7JrgQctgN0saFih/kKWVJ3KxiI1BpzdrkW58vs5H0kXXmA6UObE16/dWuKYfB06j0yIsfMbZ32Md1yAkgdCfg=="; + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.3.0.tgz"; + sha512 = "Lf0fupMzuO9XuBOaWoQ5QljjQ89B7TYU40+eEUvxnIMNAfnU3n+cfhC4xGLldmh+LYRuotB1jJitX79BwRqzIA=="; }; }; - "@electron-forge/template-vite-7.2.0" = { + "@electron-forge/template-vite-7.3.0" = { name = "_at_electron-forge_slash_template-vite"; packageName = "@electron-forge/template-vite"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.2.0.tgz"; - sha512 = "Q5FSD+NVNMJKuAo/htQXpk3Q/eo116Xhx0zTzhSldAqpsgfxdAIJhl8TFmdVvCJIig1vEcLG2n/PgudxnuDuEQ=="; + url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.3.0.tgz"; + sha512 = "4vdOLmd0/rThA9lO/Tf16oCoDBPWGLRZZF+XM+ECPDfaL0CbFNoEa/NLrr6T/2D6IlV5+GnmVjz29LlVOFUB7w=="; }; }; - "@electron-forge/template-vite-typescript-7.2.0" = { + "@electron-forge/template-vite-typescript-7.3.0" = { name = "_at_electron-forge_slash_template-vite-typescript"; packageName = "@electron-forge/template-vite-typescript"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.2.0.tgz"; - sha512 = "knN3lxJY6UyXa2u5957K4ZyItCoCw22wrUhQARvdHOcgXvMFAcwvfEDT8zOQy6ki6A9W3cMHhSTys7dC8/ChVw=="; + url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.3.0.tgz"; + sha512 = "4gVlJihXLM+r6GBOCeO6mSv5vZImew9Vp/xFfxMrf3nDThMCnA6HYLIGA361ZTbn4z3ARquXPo6Vsm7/s4ykbw=="; }; }; - "@electron-forge/template-webpack-7.2.0" = { + "@electron-forge/template-webpack-7.3.0" = { name = "_at_electron-forge_slash_template-webpack"; packageName = "@electron-forge/template-webpack"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.2.0.tgz"; - sha512 = "h2LQ3vAzIraRqLUM5fKOLXknp7n5hrQXudRjO/vEEbm1a0jbl4yjp6liKk3yx8MFFO4eAHVDrXwRSsLR3a2Wew=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.3.0.tgz"; + sha512 = "5Cv0g+AHdEI2R4hPI38PzWTnqUwqpM36jpQgkXV1RnL3V9FvNuza/w9RLMj5bhGzB0j5M4bVbcnglMX0pDvVBQ=="; }; }; - "@electron-forge/template-webpack-typescript-7.2.0" = { + "@electron-forge/template-webpack-typescript-7.3.0" = { name = "_at_electron-forge_slash_template-webpack-typescript"; packageName = "@electron-forge/template-webpack-typescript"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.2.0.tgz"; - sha512 = "eshvPcYXUgmpB+ts9/xRPvQexY46unfe0mGmLDaj8s/5fqCANgyUO5jusvMXlJdf3qwJ/rfi3jS0NuqnjsqskQ=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.3.0.tgz"; + sha512 = "eiBhsY/LUaV1vIy/PZqnmkxWyjEyN/PsXyq79lr1nuOKrqkVgZUe/IdvtNxr8wvPoKSScORNLHjiD/C2Jp74HA=="; }; }; - "@electron-forge/tracer-7.2.0" = { + "@electron-forge/tracer-7.3.0" = { name = "_at_electron-forge_slash_tracer"; packageName = "@electron-forge/tracer"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.2.0.tgz"; - sha512 = "EoJ07nptEuuY2fcs/bUWzIf11RQRx6Ch/dZ6A9WIRcFYe9cFrslQwvyUf0siY3jcqVvxETCz69JGuBxKGwak7A=="; + url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.3.0.tgz"; + sha512 = "FS7ABTm52BMP2BlR/pDmUIKtH9NI1i+BBJuKke58KguToBRuvAX1cLt0Hhkq4HlqYR9fNjRoCo1vrK4OBb0Bew=="; }; }; - "@electron/asar-3.2.8" = { + "@electron/asar-3.2.9" = { name = "_at_electron_slash_asar"; packageName = "@electron/asar"; - version = "3.2.8"; + version = "3.2.9"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.8.tgz"; - sha512 = "cmskk5M06ewHMZAplSiF4AlME3IrnnZhKnWbtwKVLRkdJkKyUVjMLhDIiPIx/+6zQWVlKX/LtmK9xDme7540Sg=="; + url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.9.tgz"; + sha512 = "Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA=="; }; }; "@electron/get-3.0.0" = { @@ -4414,13 +4405,13 @@ let sha512 = "fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA=="; }; }; - "@electron/windows-sign-1.1.1" = { + "@electron/windows-sign-1.1.2" = { name = "_at_electron_slash_windows-sign"; packageName = "@electron/windows-sign"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.1.1.tgz"; - sha512 = "g8/atfOCKuuGedjVE6Xu/rlBtJvfDrmBH9UokBrjrvBVWdVz3SGV7DTjPTLvl7F+XUlmqj4genub62r3jKHIHw=="; + url = "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.1.2.tgz"; + sha512 = "eXEiZjDtxW3QORCWfRUarANPRTlH9B6At4jqBZJ0NzokSGutXQUVLPA6WmGpIhDW6w2yCMdHW1EJd1HrXtU5sg=="; }; }; "@emmetio/abbreviation-2.3.3" = { @@ -4918,13 +4909,13 @@ let sha512 = "Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw=="; }; }; - "@eslint/js-8.56.0" = { + "@eslint/js-8.57.0" = { name = "_at_eslint_slash_js"; packageName = "@eslint/js"; - version = "8.56.0"; + version = "8.57.0"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz"; - sha512 = "gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A=="; + url = "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz"; + sha512 = "Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g=="; }; }; "@ethereumjs/rlp-4.0.1" = { @@ -4972,13 +4963,13 @@ let sha512 = "V8gMy1C63oAYlvkSjhfGYOET7sOmRIUAYv/wVcKJZiVAMZ5MQ2geeXCpLGC4+vuOQe2Hs3+qAgl4y0/b8OUO+A=="; }; }; - "@expo/apple-utils-1.4.0" = { + "@expo/apple-utils-1.7.0" = { name = "_at_expo_slash_apple-utils"; packageName = "@expo/apple-utils"; - version = "1.4.0"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-1.4.0.tgz"; - sha512 = "tbSWy10f/xdfUb3TZkshRLk4zIuG2wNIyuypUX1jvDrOt0bokSbwmIVYkkLRazZ+mOR0ZRcDUuBHKkZmyGuegQ=="; + url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-1.7.0.tgz"; + sha512 = "RVzZTiOeuNT04fE5V4f536XmIyxbRFOJ3m/rE6kImbIZ65upOS7xdIQpihEdYOiHB5uZAcD3JClUEsMfFhTv4w=="; }; }; "@expo/bunyan-4.0.0" = { @@ -5116,22 +5107,22 @@ let sha512 = "ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="; }; }; - "@expo/eas-build-job-1.0.61" = { + "@expo/eas-build-job-1.0.83" = { name = "_at_expo_slash_eas-build-job"; packageName = "@expo/eas-build-job"; - version = "1.0.61"; + version = "1.0.83"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.61.tgz"; - sha512 = "dlE88FLPShcJio7BYybuUilEgm41oxCkgGHET3PLvLRQsC3qCkV3jlSCQyQTxwCEamWKTlxS8pDMyb0s1OfqUA=="; + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.83.tgz"; + sha512 = "JELlXmCzYdOXprcVhY7PsSdLRnfEZixcsSP+FPytUEdyhPhERCvZI4pI2TKTcopFG0WAdGphvwZPvg8S0h6A4Q=="; }; }; - "@expo/eas-json-7.1.3" = { + "@expo/eas-json-7.5.0" = { name = "_at_expo_slash_eas-json"; packageName = "@expo/eas-json"; - version = "7.1.3"; + version = "7.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-7.1.3.tgz"; - sha512 = "BI3MF1HtIOHf1Fxa4JjGt/Im1Cz7dv063SNmZ5EFrBBvz0yQsGcWxTetdl0RbcUpBGIWWCJ+0gqK2fLXb03z6g=="; + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-7.5.0.tgz"; + sha512 = "t/uMC8WyzY37iJxah46+Fay8Gfi+SPseK4KP/CCUQFVlX6Ez2bIxpSvGrlGBwzkL5vVi8Deo6G9/2FzSwDbJhA=="; }; }; "@expo/fingerprint-0.6.0" = { @@ -5422,13 +5413,13 @@ let sha512 = "QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew=="; }; }; - "@expo/steps-1.0.67" = { + "@expo/steps-1.0.85" = { name = "_at_expo_slash_steps"; packageName = "@expo/steps"; - version = "1.0.67"; + version = "1.0.85"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.67.tgz"; - sha512 = "vgmCke1yNj9OjxzzQuTlAnNYI452X6s8VDmSe/olFsJfA+8F3g8coi7CJ3j+rzrpY+LvVYTC27/84Mno0uQSrg=="; + url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.85.tgz"; + sha512 = "l0W2YfC8uNUICfkFrnsLdhAwQhnkSlj2JB5OpYoHTI1vI6D3hrVkXlDgz+DDruI7ZoYyJkiBVU3opQ5uIZDjhg=="; }; }; "@expo/timeago.js-1.0.0" = { @@ -5494,13 +5485,13 @@ let sha512 = "tzTXX1TFEjWCseEsNdIlXXkD+48uJoN+zpqIojUX4pSoMscsbhO/UuVEB5SzJucexqDWOo2ma0ECwdD7hZdrzg=="; }; }; - "@fastify/busboy-2.1.0" = { + "@fastify/busboy-2.1.1" = { name = "_at_fastify_slash_busboy"; packageName = "@fastify/busboy"; - version = "2.1.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz"; - sha512 = "+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA=="; + url = "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz"; + sha512 = "vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA=="; }; }; "@gar/promisify-1.1.3" = { @@ -5512,31 +5503,31 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; - "@gitbeaker/core-39.34.2" = { + "@gitbeaker/core-40.0.1" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; - version = "39.34.2"; + version = "40.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/core/-/core-39.34.2.tgz"; - sha512 = "Vs1BKnEMnHltq1nMuBKxust1E+JUroDVKLy87ElLgvjAkH726mEVJCFnNC2/o2Ru7Et2qqhFN+PlUeYzzAbU2w=="; + url = "https://registry.npmjs.org/@gitbeaker/core/-/core-40.0.1.tgz"; + sha512 = "Zh2eVUgy2kYVnp7Db4gWoFqFbjgsnm2FvBEERbH3UM3cOA/iMqM+tw/of+Qk4yO+gv6tGZ9f4nF7+vK0tQFmDA=="; }; }; - "@gitbeaker/requester-utils-39.34.2" = { + "@gitbeaker/requester-utils-40.0.1" = { name = "_at_gitbeaker_slash_requester-utils"; packageName = "@gitbeaker/requester-utils"; - version = "39.34.2"; + version = "40.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-39.34.2.tgz"; - sha512 = "ToCwNKQe/+uHjB2kPTXY72SvbAyjsPABb9T1EiMGuVahk6rWdhtVZIM659rGuqdJGTqQ4y18wk0A+w6D3Z2lCQ=="; + url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-40.0.1.tgz"; + sha512 = "cn6fltKuQ3TbthoMTg+JsKQfozqGcRcz1jT9Nqzr4gpHWgjdQ/nr5JpjwzKABQNVL2JH3UJWr6Eji60CFZDZ6Q=="; }; }; - "@gitbeaker/rest-39.34.2" = { + "@gitbeaker/rest-40.0.1" = { name = "_at_gitbeaker_slash_rest"; packageName = "@gitbeaker/rest"; - version = "39.34.2"; + version = "40.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-39.34.2.tgz"; - sha512 = "MT4Vue1ltvsR7Nug18A6DIk+u+gu64+b0Un/R2XIsLB7eSAX8Pm/sQnYxsjHksroZJVlyGHiGsaxbllX75Pntg=="; + url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-40.0.1.tgz"; + sha512 = "JEd9WNuzgur7gLiJPMWPYKaWe5uX1ic8CGKR1fMtBityFZ2xyZkTZ+LG0nqWTV1MyiowYnJ1swTh8Yff+kLsKA=="; }; }; "@grammarly/sdk-1.11.0" = { @@ -5575,13 +5566,13 @@ let sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; }; }; - "@graphql-tools/batch-execute-9.0.2" = { + "@graphql-tools/batch-execute-9.0.4" = { name = "_at_graphql-tools_slash_batch-execute"; packageName = "@graphql-tools/batch-execute"; - version = "9.0.2"; + version = "9.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.2.tgz"; - sha512 = "Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ=="; + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.4.tgz"; + sha512 = "kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w=="; }; }; "@graphql-tools/code-file-loader-8.0.3" = { @@ -5593,13 +5584,13 @@ let sha512 = "gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA=="; }; }; - "@graphql-tools/delegate-10.0.3" = { + "@graphql-tools/delegate-10.0.4" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "10.0.3"; + version = "10.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.3.tgz"; - sha512 = "Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.4.tgz"; + sha512 = "WswZRbQZMh/ebhc8zSomK9DIh6Pd5KbuiMsyiKkKz37TWTrlCOe+4C/fyrBFez30ksq6oFyCeSKMwfrCbeGo0Q=="; }; }; "@graphql-tools/delegate-7.1.5" = { @@ -5611,40 +5602,40 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/executor-1.2.0" = { + "@graphql-tools/executor-1.2.2" = { name = "_at_graphql-tools_slash_executor"; packageName = "@graphql-tools/executor"; - version = "1.2.0"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.0.tgz"; - sha512 = "SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg=="; + url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.2.tgz"; + sha512 = "wZkyjndwlzi01HTU3PDveoucKA8qVO0hdKmJhjIGK/vRN/A4w5rDdeqRGcyXVss0clCAy3R6jpixCVu5pWs2Qg=="; }; }; - "@graphql-tools/executor-graphql-ws-1.1.1" = { + "@graphql-tools/executor-graphql-ws-1.1.2" = { name = "_at_graphql-tools_slash_executor-graphql-ws"; packageName = "@graphql-tools/executor-graphql-ws"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.1.tgz"; - sha512 = "llfLyRpmXqMX6kM3AvepviTxi06UTutphJljQupoU8FaTh0OcGFPjLjVSbgP7tOqI6lD1YbPR7qY83vDeYLarA=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz"; + sha512 = "+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg=="; }; }; - "@graphql-tools/executor-http-1.0.8" = { + "@graphql-tools/executor-http-1.0.9" = { name = "_at_graphql-tools_slash_executor-http"; packageName = "@graphql-tools/executor-http"; - version = "1.0.8"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.8.tgz"; - sha512 = "tBHT4aRkMCeyo+tcfEz7znqdd4QqoYF9vY1YTSo2+FV00usBB+R1YL3YaINBQNVkSVpZ41elffoF/fjI+QE8ZQ=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz"; + sha512 = "+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q=="; }; }; - "@graphql-tools/executor-legacy-ws-1.0.5" = { + "@graphql-tools/executor-legacy-ws-1.0.6" = { name = "_at_graphql-tools_slash_executor-legacy-ws"; packageName = "@graphql-tools/executor-legacy-ws"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.5.tgz"; - sha512 = "w54AZ7zkNuvpyV09FH+eGHnnAmaxhBVHg4Yh2ICcsMfRg0brkLt77PlbjBuxZ4HY8XZnKJaYWf+tKazQZtkQtg=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz"; + sha512 = "lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg=="; }; }; "@graphql-tools/graphql-file-loader-6.2.7" = { @@ -5656,13 +5647,13 @@ let sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/graphql-file-loader-8.0.0" = { + "@graphql-tools/graphql-file-loader-8.0.1" = { name = "_at_graphql-tools_slash_graphql-file-loader"; packageName = "@graphql-tools/graphql-file-loader"; - version = "8.0.0"; + version = "8.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.0.tgz"; - sha512 = "wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg=="; + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.1.tgz"; + sha512 = "7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA=="; }; }; "@graphql-tools/graphql-tag-pluck-8.1.0" = { @@ -5683,13 +5674,13 @@ let sha512 = "XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ=="; }; }; - "@graphql-tools/import-7.0.0" = { + "@graphql-tools/import-7.0.1" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "7.0.0"; + version = "7.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.0.tgz"; - sha512 = "NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.1.tgz"; + sha512 = "935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -5701,13 +5692,13 @@ let sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; }; }; - "@graphql-tools/json-file-loader-8.0.0" = { + "@graphql-tools/json-file-loader-8.0.1" = { name = "_at_graphql-tools_slash_json-file-loader"; packageName = "@graphql-tools/json-file-loader"; - version = "8.0.0"; + version = "8.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.0.tgz"; - sha512 = "ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg=="; + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.1.tgz"; + sha512 = "lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA=="; }; }; "@graphql-tools/load-6.2.4" = { @@ -5719,13 +5710,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-8.0.1" = { + "@graphql-tools/load-8.0.2" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "8.0.1"; + version = "8.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.1.tgz"; - sha512 = "qSMsKngJhDqRbuWyo3NvakEFqFL6+eSjy8ooJ1o5qYD26N7dqXkKzIMycQsX7rBK19hOuINAUSaRcVWH6hTccw=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.2.tgz"; + sha512 = "S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -5755,13 +5746,13 @@ let sha512 = "XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw=="; }; }; - "@graphql-tools/merge-9.0.1" = { + "@graphql-tools/merge-9.0.3" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "9.0.1"; + version = "9.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.1.tgz"; - sha512 = "hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.3.tgz"; + sha512 = "FeKv9lKLMwqDu0pQjPpF59GY3HReUkWXKsMIuMuJQOKh9BETu7zPEFUELvcw8w+lwZkl4ileJsHXC9+AnsT2Lw=="; }; }; "@graphql-tools/mock-8.7.20" = { @@ -5773,13 +5764,13 @@ let sha512 = "ljcHSJWjC/ZyzpXd5cfNhPI7YljRVvabKHPzKjEs5ElxWu2cdlLGvyNYepApXDsM/OJG/2xuhGM+9GWu5gEAPQ=="; }; }; - "@graphql-tools/schema-10.0.2" = { + "@graphql-tools/schema-10.0.3" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "10.0.2"; + version = "10.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.2.tgz"; - sha512 = "TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.3.tgz"; + sha512 = "p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog=="; }; }; "@graphql-tools/schema-7.1.5" = { @@ -5818,22 +5809,22 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-8.0.1" = { + "@graphql-tools/url-loader-8.0.2" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "8.0.1"; + version = "8.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.1.tgz"; - sha512 = "B2k8KQEkEQmfV1zhurT5GLoXo8jbXP+YQHUayhCSxKYlRV7j/1Fhp1b21PDM8LXIDGlDRXaZ0FbWKOs7eYXDuQ=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.2.tgz"; + sha512 = "1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ=="; }; }; - "@graphql-tools/utils-10.0.13" = { + "@graphql-tools/utils-10.1.2" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "10.0.13"; + version = "10.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.13.tgz"; - sha512 = "fMILwGr5Dm2zefNItjQ6C2rauigklv69LIwppccICuGTnGaOp3DspLt/6Lxj72cbg5d9z60Sr+Egco3CJKLsNg=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.1.2.tgz"; + sha512 = "fX13CYsDnX4yifIyNdiN0cVygz/muvkreWWem6BBw130+ODbRRgfiVveL0NizCEnKXkpvdeTy9Bxvo9LIKlhrw=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -5881,13 +5872,13 @@ let sha512 = "WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A=="; }; }; - "@graphql-tools/wrap-10.0.1" = { + "@graphql-tools/wrap-10.0.5" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "10.0.1"; + version = "10.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.1.tgz"; - sha512 = "Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.5.tgz"; + sha512 = "Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ=="; }; }; "@graphql-tools/wrap-7.0.8" = { @@ -6034,22 +6025,22 @@ let sha512 = "trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="; }; }; - "@ibm-cloud/openapi-ruleset-1.15.2" = { + "@ibm-cloud/openapi-ruleset-1.15.3" = { name = "_at_ibm-cloud_slash_openapi-ruleset"; packageName = "@ibm-cloud/openapi-ruleset"; - version = "1.15.2"; + version = "1.15.3"; src = fetchurl { - url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-1.15.2.tgz"; - sha512 = "LePXcmEIQ9nYe8kNY/uQwacEtuMNM6CS8T4ugb7qqFDE6jU6TTdJITFZ5M3ECJERWe2wozuPM9/VfKH88pzNxQ=="; + url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-1.15.3.tgz"; + sha512 = "iHX831iXlFuV6QAfn08bjrW6jRblmXdRvQJiwLn96tLm0tcoCoUcsQcrFVjuAuCF9+F5Lfy/lYpS58rztL++4Q=="; }; }; - "@ibm-cloud/openapi-ruleset-utilities-1.3.0" = { + "@ibm-cloud/openapi-ruleset-utilities-1.3.1" = { name = "_at_ibm-cloud_slash_openapi-ruleset-utilities"; packageName = "@ibm-cloud/openapi-ruleset-utilities"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset-utilities/-/openapi-ruleset-utilities-1.3.0.tgz"; - sha512 = "CuG5u6+gSEbU8IKGZqKH+WsH4rFU9KMYriDzG6F+DJ8XbtEd3RTHWMQdAeO/ec2XiyPF2j4VxWEXMzVZJ05bAA=="; + url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset-utilities/-/openapi-ruleset-utilities-1.3.1.tgz"; + sha512 = "I0/5qOruBwV70f7mU0p1kkzgWO/ZzNc+IiTMGKYfdbEoOML4mVWNVZvn+mcTqOwfdWFUznWwPnAaXbxnIO7WiA=="; }; }; "@inquirer/checkbox-1.5.2" = { @@ -6124,13 +6115,13 @@ let sha512 = "aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw=="; }; }; - "@inquirer/prompts-2.3.0" = { + "@inquirer/prompts-2.3.1" = { name = "_at_inquirer_slash_prompts"; packageName = "@inquirer/prompts"; - version = "2.3.0"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/prompts/-/prompts-2.3.0.tgz"; - sha512 = "x79tSDIZAibOl9WaBoOuyaQqNnisOO8Pk0qWyulP/nPaD/WkoRvkzk7hR4WTRmWAyE8CNbjdYgGltvd0qmvCGQ=="; + url = "https://registry.npmjs.org/@inquirer/prompts/-/prompts-2.3.1.tgz"; + sha512 = "YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ=="; }; }; "@inquirer/prompts-3.3.2" = { @@ -6160,13 +6151,13 @@ let sha512 = "RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg=="; }; }; - "@inquirer/type-1.2.0" = { + "@inquirer/type-1.2.1" = { name = "_at_inquirer_slash_type"; packageName = "@inquirer/type"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/type/-/type-1.2.0.tgz"; - sha512 = "/vvkUkYhrjbm+RolU7V1aUFDydZVKNKqKHR5TsE+j5DXgXFwrsOPcoGUJ02K0O7q7O53CU2DOTMYCHeGZ25WHA=="; + url = "https://registry.npmjs.org/@inquirer/type/-/type-1.2.1.tgz"; + sha512 = "xwMfkPAxeo8Ji/IxfUSqzRi0/+F2GIqJmpc5/thelgMGsjNZcjDDRBO9TLXT1s/hdx/mK5QbVIvgoLIFgXhTMQ=="; }; }; "@isaacs/cliui-8.0.2" = { @@ -6511,85 +6502,85 @@ let sha512 = "qqNS/YD0Nck5wtQLCPHAfGVgWbbGafxSPjNh0ekYPFSNNqnDH2kamnduzYly8IiADmeVx/MfAE1njMEjVeHTMA=="; }; }; - "@joplin/fork-htmlparser2-4.1.50" = { + "@joplin/fork-htmlparser2-4.1.51" = { name = "_at_joplin_slash_fork-htmlparser2"; packageName = "@joplin/fork-htmlparser2"; - version = "4.1.50"; + version = "4.1.51"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.50.tgz"; - sha512 = "wA2NE1/BhFWn4jYW07J/XOCblp+PnNoqcil82WkYvfJVxspje+pGToB99aH682BOGb/GIopC6i+UMphpvwj0hQ=="; + url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.51.tgz"; + sha512 = "IaZAttfsyppAo1q1KwI/ln0U/+bpUYpX0AWm7M/gWNYorWU6g/EakQwZIkmVRIcAD+6gji4T+xR4oF8fBxJ8HA=="; }; }; - "@joplin/fork-sax-1.2.54" = { + "@joplin/fork-sax-1.2.55" = { name = "_at_joplin_slash_fork-sax"; packageName = "@joplin/fork-sax"; - version = "1.2.54"; + version = "1.2.55"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.54.tgz"; - sha512 = "aruagwcNB2GZZ1eF3zoj2aeAybH6zuaRqnlmZm2Mk2Sy6F7mmXD/yjEUgs8UK5QvE4HCrS/uZ077DARK4J0c0A=="; + url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.55.tgz"; + sha512 = "FgwqhVEZfN3yrArhDdkjMQJ9CG2V/9ed8NPFsDIK/QR6CK+vzWTPuAKFq57CN76ydvr6c0kX8nOSDpxJatzhpw=="; }; }; - "@joplin/fork-uslug-1.0.15" = { + "@joplin/fork-uslug-1.0.16" = { name = "_at_joplin_slash_fork-uslug"; packageName = "@joplin/fork-uslug"; - version = "1.0.15"; + version = "1.0.16"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-uslug/-/fork-uslug-1.0.15.tgz"; - sha512 = "J/9y01glxS/mU0c81J/iX1apbQiZrBy58pWzQKotpZ7nFKIaFsJzDvibL0UYZfgTRs6FzM/4wE7g0Uqe3I/ZPQ=="; + url = "https://registry.npmjs.org/@joplin/fork-uslug/-/fork-uslug-1.0.16.tgz"; + sha512 = "N3UyuqUG+t67YXH37HPS9qSr7Z+GdciZ1FfHHZ7FjgVElR+Ch049OWrI+NX/ruHFkfofmQKHLNRKVmNrPnclNA=="; }; }; - "@joplin/htmlpack-2.13.4" = { + "@joplin/htmlpack-2.14.1" = { name = "_at_joplin_slash_htmlpack"; packageName = "@joplin/htmlpack"; - version = "2.13.4"; + version = "2.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/htmlpack/-/htmlpack-2.13.4.tgz"; - sha512 = "K4WmVIK+tLV5jLn0qoZUUHK8dwXhDU25vY4C20vMkncRM6JnRgRVGbd8iNQTQo04BY9KAB+C2mjJ1OKnwDbGLg=="; + url = "https://registry.npmjs.org/@joplin/htmlpack/-/htmlpack-2.14.1.tgz"; + sha512 = "ZIQBkfVffFbFURT+lLoB9oYSkDFcE3KJ5IE434Rd3i6BCSXn4qYQyVF8K6t0oVPHGJAmTnnM5RpTVhRx+mBERw=="; }; }; - "@joplin/lib-2.13.4" = { + "@joplin/lib-2.14.1" = { name = "_at_joplin_slash_lib"; packageName = "@joplin/lib"; - version = "2.13.4"; + version = "2.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.13.4.tgz"; - sha512 = "QVbYwM+VT1B4g/th5w+nxWRhsghHp+/41iPaJKViEcBJFQUWUDjxNzKpvuxgJ5E2WHF3LD0/09pSgmYONMI2Vg=="; + url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.14.1.tgz"; + sha512 = "EnvOoj4b8vG/oq58QFWSyyoAiQ/BnMyffw58iacmPAG9jGIwbPPDA4HP3RLCirwwdgrdtTlRxl7WaLHnSO3h6A=="; }; }; - "@joplin/renderer-2.13.4" = { + "@joplin/renderer-2.14.1" = { name = "_at_joplin_slash_renderer"; packageName = "@joplin/renderer"; - version = "2.13.4"; + version = "2.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.13.4.tgz"; - sha512 = "EgkNIpvZr8MHHcZBJxQjQDRk1snhyTZcNrqLiw0whr49EtsYk0MhFMEwWGhMQI56COQfHMgeK/woCvMaICSH5Q=="; + url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.14.1.tgz"; + sha512 = "AbnE1g976pNrx3rjdKOR6JYWgowdmH3kTN8yWmSYnU2OD8qPhTovMROClxF6m7fLc3N49fxEBZwCjbRFLv35iA=="; }; }; - "@joplin/turndown-4.0.72" = { + "@joplin/turndown-4.0.73" = { name = "_at_joplin_slash_turndown"; packageName = "@joplin/turndown"; - version = "4.0.72"; + version = "4.0.73"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.72.tgz"; - sha512 = "FEfb4vunyMc574kIXoQTSgWY3DO+OKp9ljYhJLTh6fOeySHNGyAaQSeFcsqJCuMcssmfTlOuKYVOQRA8Louc2g=="; + url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.73.tgz"; + sha512 = "5u5CUih9otHMkWpvH1VtHLyF0VMYnl2FVxv+/QvAX7PfwvGdmfMQISzC/wwb3MueMb/yhemv5c+6oiN4RCNlWw=="; }; }; - "@joplin/turndown-plugin-gfm-1.0.54" = { + "@joplin/turndown-plugin-gfm-1.0.55" = { name = "_at_joplin_slash_turndown-plugin-gfm"; packageName = "@joplin/turndown-plugin-gfm"; - version = "1.0.54"; + version = "1.0.55"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.54.tgz"; - sha512 = "QoNPwP7CDJOn/pfehGrLTKl6fgcl/VIXQP1bNqm8tfx3bx3uedyjFE75ef8yRGwNIe+ukqPbDFo+EVBc7rE4+Q=="; + url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.55.tgz"; + sha512 = "ij5DquSAWnu1fVM02N2m32uMxslJZcdMuTsLJfTHYEVs96R8MKFaHtWjbQycpx9PRYdlL5jW4SaW9A92OCccxA=="; }; }; - "@joplin/utils-2.13.4" = { + "@joplin/utils-2.14.1" = { name = "_at_joplin_slash_utils"; packageName = "@joplin/utils"; - version = "2.13.4"; + version = "2.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/utils/-/utils-2.13.4.tgz"; - sha512 = "jkWCfxLgUXpqBLMUnvuWnX0tDQyCRg3/SW9ITaJhu3QJFs653yfKIEZPztlxWapvmBM71SSJRJgBM+M7rTSnqw=="; + url = "https://registry.npmjs.org/@joplin/utils/-/utils-2.14.1.tgz"; + sha512 = "HOR9UOivlbFiANAVPeK5TNYRE5KQ3dCxVC7Sus8bcA+ZIrJxM0P73Ng1p96HkzsZAE71OEqVKn6HMd67gZOy4Q=="; }; }; "@josephg/resolvable-1.0.1" = { @@ -6601,13 +6592,13 @@ let sha512 = "CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg=="; }; }; - "@jridgewell/gen-mapping-0.3.3" = { + "@jridgewell/gen-mapping-0.3.5" = { name = "_at_jridgewell_slash_gen-mapping"; packageName = "@jridgewell/gen-mapping"; - version = "0.3.3"; + version = "0.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"; - sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"; + sha512 = "IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="; }; }; "@jridgewell/resolve-uri-3.1.2" = { @@ -6619,22 +6610,22 @@ let sha512 = "bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="; }; }; - "@jridgewell/set-array-1.1.2" = { + "@jridgewell/set-array-1.2.1" = { name = "_at_jridgewell_slash_set-array"; packageName = "@jridgewell/set-array"; - version = "1.1.2"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"; - sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; + url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz"; + sha512 = "R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="; }; }; - "@jridgewell/source-map-0.3.5" = { + "@jridgewell/source-map-0.3.6" = { name = "_at_jridgewell_slash_source-map"; packageName = "@jridgewell/source-map"; - version = "0.3.5"; + version = "0.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz"; - sha512 = "UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="; + url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz"; + sha512 = "1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ=="; }; }; "@jridgewell/sourcemap-codec-1.4.15" = { @@ -6646,13 +6637,13 @@ let sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; }; }; - "@jridgewell/trace-mapping-0.3.22" = { + "@jridgewell/trace-mapping-0.3.25" = { name = "_at_jridgewell_slash_trace-mapping"; packageName = "@jridgewell/trace-mapping"; - version = "0.3.22"; + version = "0.3.25"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz"; - sha512 = "Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw=="; + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"; + sha512 = "vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="; }; }; "@jridgewell/trace-mapping-0.3.9" = { @@ -6700,15 +6691,6 @@ let sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; }; }; - "@jsii/check-node-1.93.0" = { - name = "_at_jsii_slash_check-node"; - packageName = "@jsii/check-node"; - version = "1.93.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.93.0.tgz"; - sha512 = "NLn1Js6wEG2hYjH7gE5Q8s/hPlp3I+KhK/T8ykGdYVod7iODnk/0QVSZsk2iEyuw8NzvvgXUDBWreadUIWSz+g=="; - }; - }; "@jsii/check-node-1.94.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; @@ -6718,13 +6700,22 @@ let sha512 = "46W+V1oTFvF9ZpKpPYy//1WUmhZ8AD8O0ElmQtv9mundLHccZm+q7EmCYhozr7rlK5uSjU9/WHfbIx2DwynuJw=="; }; }; - "@jsii/spec-1.94.0" = { + "@jsii/check-node-1.95.0" = { + name = "_at_jsii_slash_check-node"; + packageName = "@jsii/check-node"; + version = "1.95.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.95.0.tgz"; + sha512 = "E5njkBk6X4WrQHtGeO0ed+cvkMxqinQZY83TJZ9RFEIwrndDfj7asMgWkRkYQRF05AlQXks+Eh8wza7ErIl85Q=="; + }; + }; + "@jsii/spec-1.95.0" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.94.0"; + version = "1.95.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.94.0.tgz"; - sha512 = "ur1aUMPsdZgflUIZC4feyJzrkGYzvtiIJxRowkSxr7Ip/sLCKvi61dvImWtJY9ZhEAl7Kiq7I/R32WVyxW0JrQ=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.95.0.tgz"; + sha512 = "gQtNQHAvSYIsuOEt/Et256SNFJJhG4mpm4k6bwJ5BX2ibEAN4t0amAKjYslrYLhJo8iSGcMedh/YC9hOReL2Iw=="; }; }; "@kamilkisiela/fast-url-parser-1.1.4" = { @@ -6790,13 +6781,13 @@ let sha512 = "Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg=="; }; }; - "@ljharb/through-2.3.12" = { + "@ljharb/through-2.3.13" = { name = "_at_ljharb_slash_through"; packageName = "@ljharb/through"; - version = "2.3.12"; + version = "2.3.13"; src = fetchurl { - url = "https://registry.npmjs.org/@ljharb/through/-/through-2.3.12.tgz"; - sha512 = "ajo/heTlG3QgC8EGP6APIejksVAYt4ayz4tqoP3MolFELzcH1x1fzwEYRJTPO0IELutZ5HQ0c26/GqAYy79u3g=="; + url = "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz"; + sha512 = "/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ=="; }; }; "@lmdb/lmdb-darwin-arm64-2.5.3" = { @@ -6934,13 +6925,13 @@ let sha512 = "Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ=="; }; }; - "@microsoft/applicationinsights-web-snippet-1.1.1" = { + "@microsoft/applicationinsights-web-snippet-1.1.2" = { name = "_at_microsoft_slash_applicationinsights-web-snippet"; packageName = "@microsoft/applicationinsights-web-snippet"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.1.1.tgz"; - sha512 = "uITh+P/cfN+nkUfazVt9paML6rjc6H/VWdw0jb4PUj7JG1w4hamjxkYWFvDjMZfhZ75tC4kgepPgOeG2i610Qg=="; + url = "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.1.2.tgz"; + sha512 = "qPoOk3MmEx3gS6hTc1/x8JWQG5g4BvRdH7iqZMENBsKCL927b7D7Mvl19bh3sW9Ucrg1fVrF+4hqShwQNdqLxQ=="; }; }; "@microsoft/fetch-event-source-2.0.1" = { @@ -6952,13 +6943,13 @@ let sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; }; }; - "@microsoft/rush-lib-5.113.4" = { + "@microsoft/rush-lib-5.117.9" = { name = "_at_microsoft_slash_rush-lib"; packageName = "@microsoft/rush-lib"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.113.4.tgz"; - sha512 = "s7Ltkx+Ww5RyxOuUVghu5JZkHseUxlAseyb5ObRIpgncLJj9TwhXfAB7foKicEZ7Z2P38w8DV4ZPQgi2XZUF8A=="; + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.117.9.tgz"; + sha512 = "fZC4B/ZVHELMsj7MVgcbmtUBuk1Ljp1MsNc2ZJ51mzMvo0Q7Wtr7qfw01ZIpjgD4uJ2PTpYCeA1HD00sIA5tTQ=="; }; }; "@mischnic/json-sourcemap-0.1.1" = { @@ -7042,58 +7033,58 @@ let sha512 = "fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw=="; }; }; - "@node-red/editor-api-3.1.5" = { + "@node-red/editor-api-3.1.7" = { name = "_at_node-red_slash_editor-api"; packageName = "@node-red/editor-api"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-3.1.5.tgz"; - sha512 = "j8NiT5SdjC0PUtmZ4nD17MJSer8Mt579+8TrufEduTpt1tOcJtxwMtW9463eQHsu7dceSwduJyV5mr9CL8ldDw=="; + url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-3.1.7.tgz"; + sha512 = "u0UzXmIhJmvAQTWdiMFi9JoA7hvvBn4egXcgrnfRlWzvcRd8igi4LWth4vKo9/VUYsmXrnxv+JE+qm4RLfIvKA=="; }; }; - "@node-red/editor-client-3.1.5" = { + "@node-red/editor-client-3.1.7" = { name = "_at_node-red_slash_editor-client"; packageName = "@node-red/editor-client"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-3.1.5.tgz"; - sha512 = "dw7v3u0664BYDLb/u0uOLxvlJwHOXzY7YgGiqA/FuMv+KB1UPu3b5j9o7MbdHN1I4KxnGVdiTin9+WcOBO/GgQ=="; + url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-3.1.7.tgz"; + sha512 = "L6E04FAFcBgssFuGroLmau+Mdhbt7NcLIWxDDkdvdmVKP4LQwOvfQP8uVHQyiMzotkIfng5nQqTBpHrnsBA+Ww=="; }; }; - "@node-red/nodes-3.1.5" = { + "@node-red/nodes-3.1.7" = { name = "_at_node-red_slash_nodes"; packageName = "@node-red/nodes"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-3.1.5.tgz"; - sha512 = "Yib+/0LkSdkqjgE6pgRL9mSWJXdjPpDx+OUEKjTDCrhjcATzrs3HT3fIkdGLOoSUXHP5hhgsLDTAkl2jfemArA=="; + url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-3.1.7.tgz"; + sha512 = "aRlwKHRkbaS+Sd1kcK+W/wafY2t4J8CDlkRL79mPXINBLZCsg3Y8mXqgmWb4lpHU68dkMp6HOl1V+imlr80yJQ=="; }; }; - "@node-red/registry-3.1.5" = { + "@node-red/registry-3.1.7" = { name = "_at_node-red_slash_registry"; packageName = "@node-red/registry"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/registry/-/registry-3.1.5.tgz"; - sha512 = "Twf6d9R31F9/yo/N+KTjzgh8E3bALWmCgiZ6ROle/a2qzNaKj3qE8WeFSh4D06FWzmICv4gfkyGN7jmE0a6peg=="; + url = "https://registry.npmjs.org/@node-red/registry/-/registry-3.1.7.tgz"; + sha512 = "bSAIBTTYkEckOC0I9kYLNP/rMFzR7b8/kb8Z9NKYYEMMEf32DjjwXEIq14/6+E+zUkenFv5Vy7V6zrox1JqNTA=="; }; }; - "@node-red/runtime-3.1.5" = { + "@node-red/runtime-3.1.7" = { name = "_at_node-red_slash_runtime"; packageName = "@node-red/runtime"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-3.1.5.tgz"; - sha512 = "GS+Aa3XrnQjgyR6ZJQL6z20ONeiBAacPLLKQeHrEoEpsRSyOprjHu267WRi73KhmCG1t/hYmIi0Uv+JOB1GnLA=="; + url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-3.1.7.tgz"; + sha512 = "8Fq2GDqb8Tfc+QDGtTwEHs1mPtT3aRJzgfr5yUCbVSNkB6eewsuVHrPWnj58caUcJm/b9wB+7SBPcaVOifdssg=="; }; }; - "@node-red/util-3.1.5" = { + "@node-red/util-3.1.7" = { name = "_at_node-red_slash_util"; packageName = "@node-red/util"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/util/-/util-3.1.5.tgz"; - sha512 = "yLui/6FbgL0HVBWUq76cru9lf5VDCw+j60rUQd/iDwa41dXR5lxiBpM+T9BGCFUlroK2F0XcH6qq4r+dnfANxg=="; + url = "https://registry.npmjs.org/@node-red/util/-/util-3.1.7.tgz"; + sha512 = "vUnuoOwVjGtJ3j5WcL468neXGciDRvZnRAqB0Fl//cjPLklTkipK6C5b0vYGTgy+cL5K+KjcV10yl3F2tiAOQw=="; }; }; "@nodelib/fs.scandir-2.1.5" = { @@ -7132,22 +7123,22 @@ let sha512 = "H4FrOVtNyWC8MUwL3UfjOsAihHvT1Pe8POj3JvjXhSTJipsZMtgUALCT4mGyYZNxymkUfOw3PUj6dE4QPp6osQ=="; }; }; - "@npmcli/config-6.4.0" = { + "@npmcli/config-6.4.1" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "6.4.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-6.4.0.tgz"; - sha512 = "/fQjIbuNVIT/PbXvw178Tm97bxV0E0nVUFKHivMKtSI2pcs8xKdaWkHJxf9dTI0G/y5hp/KuCvgcUu5HwAtI1w=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.4.1.tgz"; + sha512 = "uSz+elSGzjCMANWa5IlbGczLYPkNI/LeR+cHrgaTqTrTSh9RHhOFA4daD2eRUz6lMtOW+Fnsb+qv7V2Zz8ML0g=="; }; }; - "@npmcli/config-8.1.0" = { + "@npmcli/config-8.2.0" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "8.1.0"; + version = "8.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-8.1.0.tgz"; - sha512 = "61LNEybTFaa9Z/f8y6X9s2Blc75aijZK67LxqC5xicBcfkw8M/88nYrRXGXxAUKm6GRlxTZ216dp1UK2+TbaYw=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-8.2.0.tgz"; + sha512 = "YoEYZFg0hRSRP/Chmq+J4FvULFvji6SORUYWQc10FiJ+ReAnViXcDCENg6kM6dID04bAoKNUygrby798+gYBbQ=="; }; }; "@npmcli/fs-1.1.1" = { @@ -7276,31 +7267,31 @@ let sha512 = "9ApYM/3+rBt9V80aYg6tZfzj3UWdiYyCt7gJUD1VJKvWF5nwKDSICXbYIQbspFTq6TOpbsEtIC0LArB8d9PFmg=="; }; }; - "@nrwl/devkit-18.0.4" = { + "@nrwl/devkit-18.1.2" = { name = "_at_nrwl_slash_devkit"; packageName = "@nrwl/devkit"; - version = "18.0.4"; + version = "18.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.0.4.tgz"; - sha512 = "fKHnjg4/9MdFd2U4e8p6ja9fRa864DCyF70kB4YUB9NuUIgWLQ15Uj6wXC3xjdXmxQRyHDa7ORodVoFzdo4UCg=="; + url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.1.2.tgz"; + sha512 = "x+6UJNeWoDtke1FhEAP6ptDLUPJC/xOJ+Wri6RFTi+/ekw7qD3Bj73XHU9C47HBxMxN2voUVMfIX3mC65/CXiQ=="; }; }; - "@nrwl/tao-18.0.4" = { + "@nrwl/tao-18.1.2" = { name = "_at_nrwl_slash_tao"; packageName = "@nrwl/tao"; - version = "18.0.4"; + version = "18.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-18.0.4.tgz"; - sha512 = "/PzGOJevlDQnp5RPXF3WDe+w1cdohGkY+mbJUgDVA4Q5JEPT1DtE10h9GgdHdzkPjVPNYsaI4Vs/53NUdlVHHA=="; + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-18.1.2.tgz"; + sha512 = "IA+osZ5TlKMwJmcP7TECW7TO0JdNNQud9Dgkh1ZfJ4GWnT7WEkE9b2Yf1IFeeB81kCTXXq8jfISa8ZY21MjRaQ=="; }; }; - "@nx/devkit-18.0.4" = { + "@nx/devkit-18.1.2" = { name = "_at_nx_slash_devkit"; packageName = "@nx/devkit"; - version = "18.0.4"; + version = "18.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/devkit/-/devkit-18.0.4.tgz"; - sha512 = "Vs1AXgOjMJyaWpKopD04dy0FwQ22n5ZR1bFf98Ab4Ht0WJwJE90IpUVAkwI03n5BYxAKOlQnFltsB4gu6Y8mZQ=="; + url = "https://registry.npmjs.org/@nx/devkit/-/devkit-18.1.2.tgz"; + sha512 = "xgiPqKdJ6GVrqXsAyHD/yxqCDW1LekkWgazkuBI8MKA5J2IwZ4Ex5pMsOVMuWz2sTRejuPRqajBclFRMbhfCig=="; }; }; "@oclif/color-1.0.13" = { @@ -7366,13 +7357,13 @@ let sha512 = "fNEMG5DzJHhYmI3MgpByTvltBOMyFcnRIUMxbiz2ai8rhaYgaTHMG3Q38HcosfIvtw9nCjxpcQtC8MN8QtVCcA=="; }; }; - "@oclif/core-3.15.1" = { + "@oclif/core-3.19.6" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "3.15.1"; + version = "3.19.6"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-3.15.1.tgz"; - sha512 = "d4457zVo2agLoJG97CmdY6M3BeP5sogBP3BtP65hUvJH6wA6Us1hdY3UiPPtD/ZzZImq7cATVMABuCF9tM+rWA=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-3.19.6.tgz"; + sha512 = "1ryQWAx7VOf+Wq6pv00uilOo56DrG0drr42crmCQ3eYrPPz252EmNCoFkoOBk7McN6x0f4ega83c0yNNCXmiXw=="; }; }; "@oclif/errors-1.3.5" = { @@ -7429,13 +7420,13 @@ let sha512 = "Ow1AR8WtjzlyCtiWWPgzMyT8SbcDJFr47009riLioHa+MHX2BCDtVn2DVnN/E6b9JlPV5ptQpjefoRSNWBesmg=="; }; }; - "@oclif/plugin-commands-2.2.24" = { + "@oclif/plugin-commands-2.2.28" = { name = "_at_oclif_slash_plugin-commands"; packageName = "@oclif/plugin-commands"; - version = "2.2.24"; + version = "2.2.28"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-2.2.24.tgz"; - sha512 = "bUZOBefMPR59oHngWNHDn+zGRQctVR5iMkO3qRWFUSVYt1VQtqOwAPBtpTIuIxL17/iGTG+U2b8jafn09lQNxA=="; + url = "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-2.2.28.tgz"; + sha512 = "w1vQ6WGltMnyjJnnt6Vo/VVtyhz1V0O9McCy0qKIY+os7SunjnUMRNS/y8MZ7b6AjMSdbLGV9/VAYSlWyQg9SQ=="; }; }; "@oclif/plugin-help-3.3.1" = { @@ -7447,15 +7438,6 @@ let sha512 = "QuSiseNRJygaqAdABYFWn/H1CwIZCp9zp/PLid6yXvy6VcQV7OenEFF5XuYaCvSARe2Tg9r8Jqls5+fw1A9CbQ=="; }; }; - "@oclif/plugin-help-5.2.18" = { - name = "_at_oclif_slash_plugin-help"; - packageName = "@oclif/plugin-help"; - version = "5.2.18"; - src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.2.18.tgz"; - sha512 = "0JjupXUuDzlI0Ojj7/YL42btfUNuvSgZxdi8ZfeYt/uhC1/zvsSkO29KjffPxKEnbhr6jrkjOgy/Vly5JquYLg=="; - }; - }; "@oclif/plugin-help-5.2.20" = { name = "_at_oclif_slash_plugin-help"; packageName = "@oclif/plugin-help"; @@ -7483,13 +7465,13 @@ let sha512 = "6fzUDLWrSK7n6+EBrEekEEYrYTCneRoOF9TzojkjuFn1+ailvUlr98G90bblxKOyy8fqMe7QjvqwTgIDQ9ZIzg=="; }; }; - "@oclif/plugin-plugins-3.1.8" = { + "@oclif/plugin-plugins-3.9.4" = { name = "_at_oclif_slash_plugin-plugins"; packageName = "@oclif/plugin-plugins"; - version = "3.1.8"; + version = "3.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-3.1.8.tgz"; - sha512 = "514sFBzLcR9QCSMWCHt/1XntfjJEZvb637b9YuV4kwq749pKEPF7fjCxSV1gYQCCP4TjMB5gB4AwPL4cCbe+/A=="; + url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-3.9.4.tgz"; + sha512 = "JtumjspRdzJgHk1S10wu68tdlqSnyYRmSgCsmsc6AEvU+Orb0DQfrAgJEO77rPKPNo5MfnVAj0WyCDTi0JT/vw=="; }; }; "@oclif/plugin-update-3.2.4" = { @@ -7798,13 +7780,13 @@ let sha512 = "OWlrQAnWn9577PhVgqjUvMr1pg57Bc4jv0iL4w0PRuOSRvq67rvHW9Ie/dZVMvCzhSCB+UxhcY/PmCmFj33Q+g=="; }; }; - "@opentelemetry/api-1.7.0" = { + "@opentelemetry/api-1.8.0" = { name = "_at_opentelemetry_slash_api"; packageName = "@opentelemetry/api"; - version = "1.7.0"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz"; - sha512 = "AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw=="; + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz"; + sha512 = "I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w=="; }; }; "@opentelemetry/api-logs-0.43.0" = { @@ -7834,13 +7816,13 @@ let sha512 = "I6LrZvl1FF97FQXPR0iieWQmKnGxYtMbWA1GrAXnLUR+B1Hn2m8KqQNEIlZAucyv00GBgpWkpllmULmZfG8P3g=="; }; }; - "@opentelemetry/core-1.21.0" = { + "@opentelemetry/core-1.22.0" = { name = "_at_opentelemetry_slash_core"; packageName = "@opentelemetry/core"; - version = "1.21.0"; + version = "1.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.21.0.tgz"; - sha512 = "KP+OIweb3wYoP7qTYL/j5IpOlu52uxBv5M4+QhSmmUfLyTgu1OIS71msK3chFo1D6Y61BIH3wMiMYRCxJCQctA=="; + url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.22.0.tgz"; + sha512 = "0VoAlT6x+Xzik1v9goJ3pZ2ppi6+xd3aUfg4brfrLkDBHRIVjMP0eBHrKrhB+NKcDyMAg8fAbGL3Npg/F6AwWA=="; }; }; "@opentelemetry/exporter-metrics-otlp-http-0.43.0" = { @@ -7897,13 +7879,13 @@ let sha512 = "M2e5emqg5I7qRKqlzKx0ROkcPyF8PbcSaWEdsm72od9txP7Z/Pl8PDYOyu80xWvbHAWk5mDxOF6v3vNdifzclA=="; }; }; - "@opentelemetry/resources-1.21.0" = { + "@opentelemetry/resources-1.22.0" = { name = "_at_opentelemetry_slash_resources"; packageName = "@opentelemetry/resources"; - version = "1.21.0"; + version = "1.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.21.0.tgz"; - sha512 = "1Z86FUxPKL6zWVy2LdhueEGl9AHDJcx+bvHStxomruz6Whd02mE3lNUMjVJ+FGRoktx/xYQcxccYb03DiUP6Yw=="; + url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.22.0.tgz"; + sha512 = "+vNeIFPH2hfcNL0AJk/ykJXoUCtR1YaDUZM+p3wZNU4Hq98gzq+7b43xbkXjadD9VhWIUQqEwXyY64q6msPj6A=="; }; }; "@opentelemetry/sdk-logs-0.43.0" = { @@ -7942,13 +7924,13 @@ let sha512 = "2T5HA1/1iE36Q9eg6D4zYlC4Y4GcycI1J6NsHPKZY9oWfAxWsoYnRlkPfUqyY5XVtocCo/xHpnJvGNHwzT70oQ=="; }; }; - "@opentelemetry/sdk-trace-base-1.21.0" = { + "@opentelemetry/sdk-trace-base-1.22.0" = { name = "_at_opentelemetry_slash_sdk-trace-base"; packageName = "@opentelemetry/sdk-trace-base"; - version = "1.21.0"; + version = "1.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.21.0.tgz"; - sha512 = "yrElGX5Fv0umzp8Nxpta/XqU71+jCAyaLk34GmBzNcrW43nqbrqvdPs4gj4MVy/HcTjr6hifCDCYA3rMkajxxA=="; + url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.22.0.tgz"; + sha512 = "pfTuSIpCKONC6vkTpv6VmACxD+P1woZf4q0K46nSUvXFvOFqjBYKFaAMkKD3M1mlKUUh0Oajwj35qNjMl80m1Q=="; }; }; "@opentelemetry/semantic-conventions-1.17.0" = { @@ -7969,409 +7951,409 @@ let sha512 = "xbR2U+2YjauIuo42qmE8XyJK6dYeRMLJuOlUP5SO4auET4VtOHOzgkRVOq+Ik18N+Xf3YPcqJs9dZMiDddz1eQ=="; }; }; - "@opentelemetry/semantic-conventions-1.21.0" = { + "@opentelemetry/semantic-conventions-1.22.0" = { name = "_at_opentelemetry_slash_semantic-conventions"; packageName = "@opentelemetry/semantic-conventions"; - version = "1.21.0"; + version = "1.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.21.0.tgz"; - sha512 = "lkC8kZYntxVKr7b8xmjCVUgE0a8xgDakPyDo9uSWavXPyYqLgYYGdEd2j8NxihRyb6UwpX3G/hFUF4/9q2V+/g=="; + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.22.0.tgz"; + sha512 = "CAOgFOKLybd02uj/GhCdEeeBjOS0yeoDeo/CA7ASBSmenpZHAKGB3iDm/rv3BQLcabb/OprDEsSQ1y0P8A7Siw=="; }; }; - "@orval/angular-6.24.0" = { + "@orval/angular-6.25.0" = { name = "_at_orval_slash_angular"; packageName = "@orval/angular"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/angular/-/angular-6.24.0.tgz"; - sha512 = "ENnwxhbSdYo4d5J5eDspDqF9OrHnf1XYnWWouMGeIHs6l6NBq+AGb6uFEH5pzGPi7Erw5GvXIDbTWFv3W/0Vxw=="; + url = "https://registry.npmjs.org/@orval/angular/-/angular-6.25.0.tgz"; + sha512 = "lS86bmv1o4jFaGDAglFIHjuMz3Bhymz9A3ObYzZ3JKbZWV/5Vyz5/pk722QTyjH7cQ9Au8Tg5flCL70Tv5sHUA=="; }; }; - "@orval/axios-6.24.0" = { + "@orval/axios-6.25.0" = { name = "_at_orval_slash_axios"; packageName = "@orval/axios"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/axios/-/axios-6.24.0.tgz"; - sha512 = "VxQgwAo5Djxvpixs15BVY1gMjd49YmjqBfEeQB7PrrY1T1PvVyENgFkBr+hg2QoBdy2LmdMxXDfFig00FNoerQ=="; + url = "https://registry.npmjs.org/@orval/axios/-/axios-6.25.0.tgz"; + sha512 = "OjfWatlOpTCnbtg0DSMx7NZOl5eqNZZFWk/OtZJi5pZOveCr8wzdFxUEcQ7Wn3f+k/NceO4i/mZHXeTfrxUb1Q=="; }; }; - "@orval/core-6.24.0" = { + "@orval/core-6.25.0" = { name = "_at_orval_slash_core"; packageName = "@orval/core"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/core/-/core-6.24.0.tgz"; - sha512 = "8pfzviEPuP/hlxj0PGUKphKRjfIVYYKCkWamCiNqmUyVxrL+plQnIYvUf5I9Xol0d+oZ1lG2VNV2v4Gtt/zwXQ=="; + url = "https://registry.npmjs.org/@orval/core/-/core-6.25.0.tgz"; + sha512 = "P0HTyb/CXR1MT7rjEij+Aflns2GZJN7iqNFKz3E10kc1Xts8JT1FfiKIdMOtr1I7o2/wZUEGo4HNiVV8YtZ2KQ=="; }; }; - "@orval/mock-6.24.0" = { + "@orval/mock-6.25.0" = { name = "_at_orval_slash_mock"; packageName = "@orval/mock"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/mock/-/mock-6.24.0.tgz"; - sha512 = "7U1Bpa2FmRqGdFZBIf6qAKJ+9z6aF/1LjxHabxkcdChP8jrPLVncCKK/mqwE0/8lntxA28/NR7q4l5NAE/GC8w=="; + url = "https://registry.npmjs.org/@orval/mock/-/mock-6.25.0.tgz"; + sha512 = "pc99Qxlzk7btg9fu68d18uKGMSCtUin5R+f80niK0CHBbQmLa3AEkTYOiusToq3ioL87WnBhxWxGsI6lkQfKnw=="; }; }; - "@orval/query-6.24.0" = { + "@orval/query-6.25.0" = { name = "_at_orval_slash_query"; packageName = "@orval/query"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/query/-/query-6.24.0.tgz"; - sha512 = "I0NCXBdcro7+kgu4UyCM4m/PZPwTBZHHUPiIfhkxkUUzqY2gX0k3Au2sZcHULyEZBB8A2+s42YPEWPGg1yjP7Q=="; + url = "https://registry.npmjs.org/@orval/query/-/query-6.25.0.tgz"; + sha512 = "hR8pEXuPsEiZosgP/pf3IKKgylF/sKEDoUr68JUgBqBAc4Foy/F/97aJl6Jkn6rGjM+IDtPafu+yV3MzZxNwKA=="; }; }; - "@orval/swr-6.24.0" = { + "@orval/swr-6.25.0" = { name = "_at_orval_slash_swr"; packageName = "@orval/swr"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/swr/-/swr-6.24.0.tgz"; - sha512 = "13gGIiYE1hg7h/ps/z//ITUcZUQI6e6L7wFaE6+A0EoEuC6z2UXIx+4TV0t43G8S+E8Ow6ZUNjLzeR1GjiRmPA=="; + url = "https://registry.npmjs.org/@orval/swr/-/swr-6.25.0.tgz"; + sha512 = "OfN/D5xS9z8KBfTg26gYbFFXlQEzOekyJwzgiEKnGiL/CPAs9h1C0zNMrjdgAXOoX84t+lA344SB5qdY5Pq4hw=="; }; }; - "@orval/zod-6.24.0" = { + "@orval/zod-6.25.0" = { name = "_at_orval_slash_zod"; packageName = "@orval/zod"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/zod/-/zod-6.24.0.tgz"; - sha512 = "EknDRi9Toh635CwDXtyzvwB4bGWw2NvbVHpw0ne7/y7nWsUW7N5+RRi+OAk39q/psFlCZtsI1EJtfyQ6Zr5MzQ=="; + url = "https://registry.npmjs.org/@orval/zod/-/zod-6.25.0.tgz"; + sha512 = "35lvt9K/DUEkDb9M2FGHWL105Aarud6/iT5aM4JO6RiXf4rxBMXycAoGiYl/i3Pz45lS9krkXOEufKry9bRUyg=="; }; }; - "@parcel/bundler-default-2.11.0" = { + "@parcel/bundler-default-2.12.0" = { name = "_at_parcel_slash_bundler-default"; packageName = "@parcel/bundler-default"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.11.0.tgz"; - sha512 = "ZIs0865Lp871ZK83k5I9L4DeeE26muNMrHa7j8bvls6fKBJKAn8djrhfU4XOLyziU4aAOobcPwXU0+npWqs52g=="; + url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.12.0.tgz"; + sha512 = "3ybN74oYNMKyjD6V20c9Gerdbh7teeNvVMwIoHIQMzuIFT6IGX53PyOLlOKRLbjxMc0TMimQQxIt2eQqxR5LsA=="; }; }; - "@parcel/cache-2.11.0" = { + "@parcel/cache-2.12.0" = { name = "_at_parcel_slash_cache"; packageName = "@parcel/cache"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.11.0.tgz"; - sha512 = "RSSkGNjO00lJPyftzaC9eaNVs4jMjPSAm0VJNWQ9JSm2n4A9BzQtTFAt1vhJOzzW1UsQvvBge9DdfkB7a2gIOw=="; + url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.12.0.tgz"; + sha512 = "FX5ZpTEkxvq/yvWklRHDESVRz+c7sLTXgFuzz6uEnBcXV38j6dMSikflNpHA6q/L4GKkCqRywm9R6XQwhwIMyw=="; }; }; - "@parcel/codeframe-2.11.0" = { + "@parcel/codeframe-2.12.0" = { name = "_at_parcel_slash_codeframe"; packageName = "@parcel/codeframe"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.11.0.tgz"; - sha512 = "YHs9g/i5af/sd/JrWAojU9YFbKffcJ3Tx2EJaK0ME8OJsye91UaI/3lxSUYLmJG9e4WLNJtqci8V5FBMz//ZPg=="; + url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.12.0.tgz"; + sha512 = "v2VmneILFiHZJTxPiR7GEF1wey1/IXPdZMcUlNXBiPZyWDfcuNgGGVQkx/xW561rULLIvDPharOMdxz5oHOKQg=="; }; }; - "@parcel/compressor-raw-2.11.0" = { + "@parcel/compressor-raw-2.12.0" = { name = "_at_parcel_slash_compressor-raw"; packageName = "@parcel/compressor-raw"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.11.0.tgz"; - sha512 = "RArhBPRTCfz77soX2IECH09NUd76UBWujXiPRcXGPIHK+C3L1cRuzsNcA39QeSb3thz3b99JcozMJ1nkC2Bsgw=="; + url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.12.0.tgz"; + sha512 = "h41Q3X7ZAQ9wbQ2csP8QGrwepasLZdXiuEdpUryDce6rF9ZiHoJ97MRpdLxOhOPyASTw/xDgE1xyaPQr0Q3f5A=="; }; }; - "@parcel/config-default-2.11.0" = { + "@parcel/config-default-2.12.0" = { name = "_at_parcel_slash_config-default"; packageName = "@parcel/config-default"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.11.0.tgz"; - sha512 = "1e2+qcZkm5/0f4eI20p/DemcYiSxq9d/eyjpTXA7PulJaHbL1wonwUAuy3mvnAvDnLOJmAk/obDVgX1ZfxMGtg=="; + url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.12.0.tgz"; + sha512 = "dPNe2n9eEsKRc1soWIY0yToMUPirPIa2QhxcCB3Z5RjpDGIXm0pds+BaiqY6uGLEEzsjhRO0ujd4v2Rmm0vuFg=="; }; }; - "@parcel/core-2.11.0" = { + "@parcel/core-2.12.0" = { name = "_at_parcel_slash_core"; packageName = "@parcel/core"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/core/-/core-2.11.0.tgz"; - sha512 = "Npe0S6hVaqWEwRL+HI7gtOYOaoE5bJQZTgUDhsDoppWbau51jOlRYOZTXuvRK/jxXnze4/S1sdM24xBYAQ5qkw=="; + url = "https://registry.npmjs.org/@parcel/core/-/core-2.12.0.tgz"; + sha512 = "s+6pwEj+GfKf7vqGUzN9iSEPueUssCCQrCBUlcAfKrJe0a22hTUCjewpB0I7lNrCIULt8dkndD+sMdOrXsRl6Q=="; }; }; - "@parcel/diagnostic-2.11.0" = { + "@parcel/diagnostic-2.12.0" = { name = "_at_parcel_slash_diagnostic"; packageName = "@parcel/diagnostic"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.11.0.tgz"; - sha512 = "4dJmOXVL5YGGQRRsQosQbSRONBcboB71mSwaeaEgz3pPdq9QXVPLACkGe/jTXSqa3OnAHu3g5vQLpE1g5xqBqw=="; + url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.12.0.tgz"; + sha512 = "8f1NOsSFK+F4AwFCKynyIu9Kr/uWHC+SywAv4oS6Bv3Acig0gtwUjugk0C9UaB8ztBZiW5TQZhw+uPZn9T/lJA=="; }; }; - "@parcel/events-2.11.0" = { + "@parcel/events-2.12.0" = { name = "_at_parcel_slash_events"; packageName = "@parcel/events"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/events/-/events-2.11.0.tgz"; - sha512 = "K6SOjOrQsz1GdNl2qKBktq7KJ3Q3yxK8WXdmQYo10wG39dr051xtMb38aqieTp4eVhL8Yaq2iJgGkdr11fuBnA=="; + url = "https://registry.npmjs.org/@parcel/events/-/events-2.12.0.tgz"; + sha512 = "nmAAEIKLjW1kB2cUbCYSmZOGbnGj8wCzhqnK727zCCWaA25ogzAtt657GPOeFyqW77KyosU728Tl63Fc8hphIA=="; }; }; - "@parcel/fs-2.11.0" = { + "@parcel/fs-2.12.0" = { name = "_at_parcel_slash_fs"; packageName = "@parcel/fs"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.11.0.tgz"; - sha512 = "zWckdnnovdrgdFX4QYuQV4bbKCsh6IYCkmwaB4yp47rhw1MP0lkBINLt4yFPHBxWXOpElCfxjL+z69c9xJQRBQ=="; + url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.12.0.tgz"; + sha512 = "NnFkuvou1YBtPOhTdZr44WN7I60cGyly2wpHzqRl62yhObyi1KvW0SjwOMa0QGNcBOIzp4G0CapoZ93hD0RG5Q=="; }; }; - "@parcel/graph-3.1.0" = { + "@parcel/graph-3.2.0" = { name = "_at_parcel_slash_graph"; packageName = "@parcel/graph"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/graph/-/graph-3.1.0.tgz"; - sha512 = "d1dTW5C7A52HgDtoXlyvlET1ypSlmIxSIZOJ1xp3R9L9hgo3h1u3jHNyaoTe/WPkGVe2QnFxh0h+UibVJhu9vg=="; - }; - }; - "@parcel/logger-2.11.0" = { - name = "_at_parcel_slash_logger"; - packageName = "@parcel/logger"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.11.0.tgz"; - sha512 = "HtMEdCq3LKnvv4T2CIskcqlf2gpBvHMm3pkeUFB/hc/7hW/hE1k6/HA2VOQvc0tBsaMpmEx7PCrfrH56usQSyA=="; - }; - }; - "@parcel/markdown-ansi-2.11.0" = { - name = "_at_parcel_slash_markdown-ansi"; - packageName = "@parcel/markdown-ansi"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.11.0.tgz"; - sha512 = "YA60EWbXi6cLOIzcwRC2wijotPauOGQbUi0vSbu0O6/mjQ68kWCMGz0hwZjDRQcPypQVJEIvTgMymLbvumxwhg=="; - }; - }; - "@parcel/namer-default-2.11.0" = { - name = "_at_parcel_slash_namer-default"; - packageName = "@parcel/namer-default"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.11.0.tgz"; - sha512 = "DEwBSKSClg4DA2xAWimYkw9bFi7MFb9TdT7/TYZStMTsfYHPWOyyjGR7aVr3Ra4wNb+XX6g4rR41yp3HD6KO7A=="; - }; - }; - "@parcel/node-resolver-core-3.2.0" = { - name = "_at_parcel_slash_node-resolver-core"; - packageName = "@parcel/node-resolver-core"; version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-3.2.0.tgz"; - sha512 = "XJRSxCkNbGFWjfmwFdcQZ/qlzWZd35qLtvLz2va8euGL7M5OMEQOv7dsvEhl0R+CC2zcnfFzZwxk78q6ezs8AQ=="; + url = "https://registry.npmjs.org/@parcel/graph/-/graph-3.2.0.tgz"; + sha512 = "xlrmCPqy58D4Fg5umV7bpwDx5Vyt7MlnQPxW68vae5+BA4GSWetfZt+Cs5dtotMG2oCHzZxhIPt7YZ7NRyQzLA=="; }; }; - "@parcel/optimizer-css-2.11.0" = { + "@parcel/logger-2.12.0" = { + name = "_at_parcel_slash_logger"; + packageName = "@parcel/logger"; + version = "2.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.12.0.tgz"; + sha512 = "cJ7Paqa7/9VJ7C+KwgJlwMqTQBOjjn71FbKk0G07hydUEBISU2aDfmc/52o60ErL9l+vXB26zTrIBanbxS8rVg=="; + }; + }; + "@parcel/markdown-ansi-2.12.0" = { + name = "_at_parcel_slash_markdown-ansi"; + packageName = "@parcel/markdown-ansi"; + version = "2.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.12.0.tgz"; + sha512 = "WZz3rzL8k0H3WR4qTHX6Ic8DlEs17keO9gtD4MNGyMNQbqQEvQ61lWJaIH0nAtgEetu0SOITiVqdZrb8zx/M7w=="; + }; + }; + "@parcel/namer-default-2.12.0" = { + name = "_at_parcel_slash_namer-default"; + packageName = "@parcel/namer-default"; + version = "2.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.12.0.tgz"; + sha512 = "9DNKPDHWgMnMtqqZIMiEj/R9PNWW16lpnlHjwK3ciRlMPgjPJ8+UNc255teZODhX0T17GOzPdGbU/O/xbxVPzA=="; + }; + }; + "@parcel/node-resolver-core-3.3.0" = { + name = "_at_parcel_slash_node-resolver-core"; + packageName = "@parcel/node-resolver-core"; + version = "3.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-3.3.0.tgz"; + sha512 = "rhPW9DYPEIqQBSlYzz3S0AjXxjN6Ub2yS6tzzsW/4S3Gpsgk/uEq4ZfxPvoPf/6TgZndVxmKwpmxaKtGMmf3cA=="; + }; + }; + "@parcel/optimizer-css-2.12.0" = { name = "_at_parcel_slash_optimizer-css"; packageName = "@parcel/optimizer-css"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.11.0.tgz"; - sha512 = "bV97PRxshHV3dMwOpLRgcP1QNhrVWh6VVDfm2gmWULpvsjoykcPS6vrCFksY5CpQsSvNHqJBzQjWS8FubUI76w=="; + url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.12.0.tgz"; + sha512 = "ifbcC97fRzpruTjaa8axIFeX4MjjSIlQfem3EJug3L2AVqQUXnM1XO8L0NaXGNLTW2qnh1ZjIJ7vXT/QhsphsA=="; }; }; - "@parcel/optimizer-htmlnano-2.11.0" = { + "@parcel/optimizer-htmlnano-2.12.0" = { name = "_at_parcel_slash_optimizer-htmlnano"; packageName = "@parcel/optimizer-htmlnano"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.11.0.tgz"; - sha512 = "c20pz4EFF5DNFmqYgptlIj49eT6xjGLkDTdHH3RRzxKovuSXWfYSPs3GED3ZsjVuQyjNQif+/MAk9547F7hrdQ=="; + url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.12.0.tgz"; + sha512 = "MfPMeCrT8FYiOrpFHVR+NcZQlXAptK2r4nGJjfT+ndPBhEEZp4yyL7n1y7HfX9geg5altc4WTb4Gug7rCoW8VQ=="; }; }; - "@parcel/optimizer-image-2.11.0" = { + "@parcel/optimizer-image-2.12.0" = { name = "_at_parcel_slash_optimizer-image"; packageName = "@parcel/optimizer-image"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.11.0.tgz"; - sha512 = "jCaJww5QFG2GuNzYW8nlSW+Ea+Cv47TRnOPJNquFIajgfTLJ5ddsWbaNal0GQsL8yNiCBKWd1AV4W0RH9tG0Jg=="; + url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.12.0.tgz"; + sha512 = "bo1O7raeAIbRU5nmNVtx8divLW9Xqn0c57GVNGeAK4mygnQoqHqRZ0mR9uboh64pxv6ijXZHPhKvU9HEpjPjBQ=="; }; }; - "@parcel/optimizer-svgo-2.11.0" = { + "@parcel/optimizer-svgo-2.12.0" = { name = "_at_parcel_slash_optimizer-svgo"; packageName = "@parcel/optimizer-svgo"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.11.0.tgz"; - sha512 = "TQpvfBhjV2IsuFHXUolbDS6XWB3DDR2rYTlqlA8LMmuOY7jQd9Bnkl4JnapzWm/bRuzRlzdGjjVCPGL8iShFvA=="; + url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.12.0.tgz"; + sha512 = "Kyli+ZZXnoonnbeRQdoWwee9Bk2jm/49xvnfb+2OO8NN0d41lblBoRhOyFiScRnJrw7eVl1Xrz7NTkXCIO7XFQ=="; }; }; - "@parcel/optimizer-swc-2.11.0" = { + "@parcel/optimizer-swc-2.12.0" = { name = "_at_parcel_slash_optimizer-swc"; packageName = "@parcel/optimizer-swc"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-swc/-/optimizer-swc-2.11.0.tgz"; - sha512 = "ftf42F3JyZxJb6nnLlgNGyNQ273YOla4dFGH/tWC8iTwObHUpWe7cMbCGcrSJBvAlsLkZfLpFNAXFxUgxdKyHQ=="; + url = "https://registry.npmjs.org/@parcel/optimizer-swc/-/optimizer-swc-2.12.0.tgz"; + sha512 = "iBi6LZB3lm6WmbXfzi8J3DCVPmn4FN2lw7DGXxUXu7MouDPVWfTsM6U/5TkSHJRNRogZ2gqy5q9g34NPxHbJcw=="; }; }; - "@parcel/package-manager-2.11.0" = { + "@parcel/package-manager-2.12.0" = { name = "_at_parcel_slash_package-manager"; packageName = "@parcel/package-manager"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.11.0.tgz"; - sha512 = "QzdsrUYlAwIzb8by7WJjqYnbR1MoMKWbtE1MXUeYsZbFusV8B6pOH+lwqNJKS/BFtddZMRPYFueZS2N2fwzjig=="; + url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.12.0.tgz"; + sha512 = "0nvAezcjPx9FT+hIL+LS1jb0aohwLZXct7jAh7i0MLMtehOi0z1Sau+QpgMlA9rfEZZ1LIeFdnZZwqSy7Ccspw=="; }; }; - "@parcel/packager-css-2.11.0" = { + "@parcel/packager-css-2.12.0" = { name = "_at_parcel_slash_packager-css"; packageName = "@parcel/packager-css"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.11.0.tgz"; - sha512 = "AyIxsp4eL8c22vp2oO2hSRnr3hSVNkARNZc9DG6uXxCc2Is5tUEX0I4PwxWnAx0EI44l+3zX/o414zT8yV9wwQ=="; + url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.12.0.tgz"; + sha512 = "j3a/ODciaNKD19IYdWJT+TP+tnhhn5koBGBWWtrKSu0UxWpnezIGZetit3eE+Y9+NTePalMkvpIlit2eDhvfJA=="; }; }; - "@parcel/packager-html-2.11.0" = { + "@parcel/packager-html-2.12.0" = { name = "_at_parcel_slash_packager-html"; packageName = "@parcel/packager-html"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.11.0.tgz"; - sha512 = "ho5AQ70naTV8IqkKIbKtK+jsXQ5TJfFgtBvmJlyB3YydRMbIc+3g4G0xgIvf15V4uCMw9Md0Sv1W65nQXHPQoA=="; + url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.12.0.tgz"; + sha512 = "PpvGB9hFFe+19NXGz2ApvPrkA9GwEqaDAninT+3pJD57OVBaxB8U+HN4a5LICKxjUppPPqmrLb6YPbD65IX4RA=="; }; }; - "@parcel/packager-js-2.11.0" = { + "@parcel/packager-js-2.12.0" = { name = "_at_parcel_slash_packager-js"; packageName = "@parcel/packager-js"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.11.0.tgz"; - sha512 = "SxjCsd0xQfg5H73YtVJj9VOpr9s0rwMsSoeykjkatbkEla9NsZajsUkd/bfYf+/0WvEKOrB8oUBo15HkGOgKug=="; + url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.12.0.tgz"; + sha512 = "viMF+FszITRRr8+2iJyk+4ruGiL27Y6AF7hQ3xbJfzqnmbOhGFtLTQwuwhOLqN/mWR2VKdgbLpZSarWaO3yAMg=="; }; }; - "@parcel/packager-raw-2.11.0" = { + "@parcel/packager-raw-2.12.0" = { name = "_at_parcel_slash_packager-raw"; packageName = "@parcel/packager-raw"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.11.0.tgz"; - sha512 = "2/0JQ8DZrz7cVNXwD6OYoUUtSSnlr4dsz8ZkpFDKsBJhvMHtC78Sq+1EDixDGOMiUcalSEjNsoHtkpq9uNh+Xw=="; + url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.12.0.tgz"; + sha512 = "tJZqFbHqP24aq1F+OojFbQIc09P/u8HAW5xfndCrFnXpW4wTgM3p03P0xfw3gnNq+TtxHJ8c3UFE5LnXNNKhYA=="; }; }; - "@parcel/packager-svg-2.11.0" = { + "@parcel/packager-svg-2.12.0" = { name = "_at_parcel_slash_packager-svg"; packageName = "@parcel/packager-svg"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.11.0.tgz"; - sha512 = "2wQBkzLwcaWFGWz8TP+bgsXgiueWPzrjKsWugWdDfq0FbXh8XVeR/599qnus3RFHZy4cH6L6yq/7zxcljtxK8A=="; + url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.12.0.tgz"; + sha512 = "ldaGiacGb2lLqcXas97k8JiZRbAnNREmcvoY2W2dvW4loVuDT9B9fU777mbV6zODpcgcHWsLL3lYbJ5Lt3y9cg=="; }; }; - "@parcel/packager-wasm-2.11.0" = { + "@parcel/packager-wasm-2.12.0" = { name = "_at_parcel_slash_packager-wasm"; packageName = "@parcel/packager-wasm"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-wasm/-/packager-wasm-2.11.0.tgz"; - sha512 = "tTy4EbDXeeiZ0oB7L2FWaHSD1mbmYZP6R5HXqkvc5dECGUKPU5Jz6ek2C5AM+HfQdQLKXPQ/Xw3eJnI/AmctVg=="; + url = "https://registry.npmjs.org/@parcel/packager-wasm/-/packager-wasm-2.12.0.tgz"; + sha512 = "fYqZzIqO9fGYveeImzF8ll6KRo2LrOXfD+2Y5U3BiX/wp9wv17dz50QLDQm9hmTcKGWxK4yWqKQh+Evp/fae7A=="; }; }; - "@parcel/plugin-2.11.0" = { + "@parcel/plugin-2.12.0" = { name = "_at_parcel_slash_plugin"; packageName = "@parcel/plugin"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.11.0.tgz"; - sha512 = "9npuKBlhnPn7oeUpLJGecceg16GkXbvzbr6MNSZiHhkx3IBeITHQXlZnp2zAjUOFreNsYOfifwEF2S4KsARfBQ=="; + url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.12.0.tgz"; + sha512 = "nc/uRA8DiMoe4neBbzV6kDndh/58a4wQuGKw5oEoIwBCHUvE2W8ZFSu7ollSXUGRzfacTt4NdY8TwS73ScWZ+g=="; }; }; - "@parcel/profiler-2.11.0" = { + "@parcel/profiler-2.12.0" = { name = "_at_parcel_slash_profiler"; packageName = "@parcel/profiler"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/profiler/-/profiler-2.11.0.tgz"; - sha512 = "s10SS09prOdwnaAcjK8M5zO8o+zPJJW5oOqXPNdf6KH4NGD/ue7iOk2xM8QLw6ulSwxE7NDt++lyfW3AXgCZwg=="; + url = "https://registry.npmjs.org/@parcel/profiler/-/profiler-2.12.0.tgz"; + sha512 = "q53fvl5LDcFYzMUtSusUBZSjQrKjMlLEBgKeQHFwkimwR1mgoseaDBDuNz0XvmzDzF1UelJ02TUKCGacU8W2qA=="; }; }; - "@parcel/reporter-cli-2.11.0" = { + "@parcel/reporter-cli-2.12.0" = { name = "_at_parcel_slash_reporter-cli"; packageName = "@parcel/reporter-cli"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.11.0.tgz"; - sha512 = "hY0iO0f+LifgJHDUIjGQJnxLFSkk2jlbfy+kIaft5oI3/IM+UljecfGO+14XH8mYlqRXXPsT09TJe8ZKQzp4ZQ=="; + url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.12.0.tgz"; + sha512 = "TqKsH4GVOLPSCanZ6tcTPj+rdVHERnt5y4bwTM82cajM21bCX1Ruwp8xOKU+03091oV2pv5ieB18pJyRF7IpIw=="; }; }; - "@parcel/reporter-dev-server-2.11.0" = { + "@parcel/reporter-dev-server-2.12.0" = { name = "_at_parcel_slash_reporter-dev-server"; packageName = "@parcel/reporter-dev-server"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.11.0.tgz"; - sha512 = "T4ue1+oLFNdcd9maw8QWQuxzOS2kX2jOrSvYKwYd9oGnqiAr1rpiHYYKJhHng+PF5ybwWkj8dUJfGh2NoQysJA=="; + url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.12.0.tgz"; + sha512 = "tIcDqRvAPAttRlTV28dHcbWT5K2r/MBFks7nM4nrEDHWtnrCwimkDmZTc1kD8QOCCjGVwRHcQybpHvxfwol6GA=="; }; }; - "@parcel/reporter-tracer-2.11.0" = { + "@parcel/reporter-tracer-2.12.0" = { name = "_at_parcel_slash_reporter-tracer"; packageName = "@parcel/reporter-tracer"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-tracer/-/reporter-tracer-2.11.0.tgz"; - sha512 = "33q4ftO26OPWHkUpEm0bzzSjW2kHEh6q/JFePwf8W6APTQVruj4mV46+Fh6rxX42ixs92K/QoiE0gYgWZQVDHA=="; + url = "https://registry.npmjs.org/@parcel/reporter-tracer/-/reporter-tracer-2.12.0.tgz"; + sha512 = "g8rlu9GxB8Ut/F8WGx4zidIPQ4pcYFjU9bZO+fyRIPrSUFH2bKijCnbZcr4ntqzDGx74hwD6cCG4DBoleq2UlQ=="; }; }; - "@parcel/resolver-default-2.11.0" = { + "@parcel/resolver-default-2.12.0" = { name = "_at_parcel_slash_resolver-default"; packageName = "@parcel/resolver-default"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.11.0.tgz"; - sha512 = "suZNN2lE5W48LPTwAbG7gnj1IeubkCVEm0XspWXcXUtCzglimNJ8PVVBGx171o5CqDpdbGF3AqHjG9N3uOwXag=="; + url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.12.0.tgz"; + sha512 = "uuhbajTax37TwCxu7V98JtRLiT6hzE4VYSu5B7Qkauy14/WFt2dz6GOUXPgVsED569/hkxebPx3KCMtZW6cHHA=="; }; }; - "@parcel/runtime-browser-hmr-2.11.0" = { + "@parcel/runtime-browser-hmr-2.12.0" = { name = "_at_parcel_slash_runtime-browser-hmr"; packageName = "@parcel/runtime-browser-hmr"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.11.0.tgz"; - sha512 = "uVwNBtoLMrlPHLvRS05BVhLseduMOpZT36yiIjS0YSBJcC6/otI9AY7ZiDPYmrB5xTqM0R+D554JhPaJHCuocw=="; + url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.12.0.tgz"; + sha512 = "4ZLp2FWyD32r0GlTulO3+jxgsA3oO1P1b5oO2IWuWilfhcJH5LTiazpL5YdusUjtNn9PGN6QLAWfxmzRIfM+Ow=="; }; }; - "@parcel/runtime-js-2.11.0" = { + "@parcel/runtime-js-2.12.0" = { name = "_at_parcel_slash_runtime-js"; packageName = "@parcel/runtime-js"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.11.0.tgz"; - sha512 = "fH3nJoexINz7s4cDzp0Vjsx0k1pMYSa5ch38LbbNqCKTermy0pS0zZuvgfLfHFFP+AMRpFQenrF7h7N3bgDmHw=="; + url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.12.0.tgz"; + sha512 = "sBerP32Z1crX5PfLNGDSXSdqzlllM++GVnVQVeM7DgMKS8JIFG3VLi28YkX+dYYGtPypm01JoIHCkvwiZEcQJg=="; }; }; - "@parcel/runtime-react-refresh-2.11.0" = { + "@parcel/runtime-react-refresh-2.12.0" = { name = "_at_parcel_slash_runtime-react-refresh"; packageName = "@parcel/runtime-react-refresh"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.11.0.tgz"; - sha512 = "Kfnc7gLjhoephLMnjABrkIkzVfzPrpJlxiJFIleY2Fm57YhmCfKsEYxm3lHOutNaYl1VArW0LKClPH/VHG9vfQ=="; + url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.12.0.tgz"; + sha512 = "SCHkcczJIDFTFdLTzrHTkQ0aTrX3xH6jrA4UsCBL6ji61+w+ohy4jEEe9qCgJVXhnJfGLE43HNXek+0MStX+Mw=="; }; }; - "@parcel/runtime-service-worker-2.11.0" = { + "@parcel/runtime-service-worker-2.12.0" = { name = "_at_parcel_slash_runtime-service-worker"; packageName = "@parcel/runtime-service-worker"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.11.0.tgz"; - sha512 = "c8MaSpSbXIKuN5sA/g4UsrsH1BtBZ6Em+eSxt9AYbdPtWrW+qwCioNVZj9lugBRUzDMjVfJz0yK59nS42hABvw=="; + url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.12.0.tgz"; + sha512 = "BXuMBsfiwpIEnssn+jqfC3jkgbS8oxeo3C7xhSQsuSv+AF2FwY3O3AO1c1RBskEW3XrBLNINOJujroNw80VTKA=="; }; }; - "@parcel/rust-2.11.0" = { + "@parcel/rust-2.12.0" = { name = "_at_parcel_slash_rust"; packageName = "@parcel/rust"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/rust/-/rust-2.11.0.tgz"; - sha512 = "UkLWdHOD8Md2YmJDPsqd3yIs9chhdl/ATfV/B/xdPKGmqtNouYpDCRlq+WxMt3mLoYgHEg9UwrWLTebo2rr2iQ=="; + url = "https://registry.npmjs.org/@parcel/rust/-/rust-2.12.0.tgz"; + sha512 = "005cldMdFZFDPOjbDVEXcINQ3wT4vrxvSavRWI3Az0e3E18exO/x/mW9f648KtXugOXMAqCEqhFHcXECL9nmMw=="; }; }; "@parcel/source-map-2.1.1" = { @@ -8383,247 +8365,247 @@ let sha512 = "Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew=="; }; }; - "@parcel/transformer-babel-2.11.0" = { + "@parcel/transformer-babel-2.12.0" = { name = "_at_parcel_slash_transformer-babel"; packageName = "@parcel/transformer-babel"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.11.0.tgz"; - sha512 = "WKGblnp7r426VG+cpeQzc6dj/30EoUaYwyl4OEaigQSJizyuPWTBWTz6FUw+ih1/sg37h+D1BIh9C2FsVzpzbw=="; + url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.12.0.tgz"; + sha512 = "zQaBfOnf/l8rPxYGnsk/ufh/0EuqvmnxafjBIpKZ//j6rGylw5JCqXSb1QvvAqRYruKeccxGv7+HrxpqKU6V4A=="; }; }; - "@parcel/transformer-css-2.11.0" = { + "@parcel/transformer-css-2.12.0" = { name = "_at_parcel_slash_transformer-css"; packageName = "@parcel/transformer-css"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.11.0.tgz"; - sha512 = "nFmBulF/ErNoafO87JbVrBavjBMNwE/kahbCRVxc2Mvlphz4F4lBW4eDRS5l4xBqFJaNkHr9R55ehLBBilF4Jw=="; + url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.12.0.tgz"; + sha512 = "vXhOqoAlQGATYyQ433Z1DXKmiKmzOAUmKysbYH3FD+LKEKLMEl/pA14goqp00TW+A/EjtSKKyeMyHlMIIUqj4Q=="; }; }; - "@parcel/transformer-html-2.11.0" = { + "@parcel/transformer-html-2.12.0" = { name = "_at_parcel_slash_transformer-html"; packageName = "@parcel/transformer-html"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.11.0.tgz"; - sha512 = "90vp7mbvvfqPr9XIINpMcELtywj56f1bxfOkLQgWU1bm22H0FT3i5dqdac++2My0IGDvMwhAEjQfbn4pA579NQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.12.0.tgz"; + sha512 = "5jW4dFFBlYBvIQk4nrH62rfA/G/KzVzEDa6S+Nne0xXhglLjkm64Ci9b/d4tKZfuGWUbpm2ASAq8skti/nfpXw=="; }; }; - "@parcel/transformer-image-2.11.0" = { + "@parcel/transformer-image-2.12.0" = { name = "_at_parcel_slash_transformer-image"; packageName = "@parcel/transformer-image"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.11.0.tgz"; - sha512 = "QiZj18UHf3lVFsi65Vz8YbS3ydx9Pe9x8ktMxE1oh9qpznN8lD7gE/Z9DxuTZB84EZ9pKytKwcv5WGXP25xIFg=="; + url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.12.0.tgz"; + sha512 = "8hXrGm2IRII49R7lZ0RpmNk27EhcsH+uNKsvxuMpXPuEnWgC/ha/IrjaI29xCng1uGur74bJF43NUSQhR4aTdw=="; }; }; - "@parcel/transformer-js-2.11.0" = { + "@parcel/transformer-js-2.12.0" = { name = "_at_parcel_slash_transformer-js"; packageName = "@parcel/transformer-js"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.11.0.tgz"; - sha512 = "G1sv0n8/fJqHqwUs0iVnVdmRY0Kh8kWaDkuWcU/GJBHMGhUnLXKdNwxX2Av9UdBL14bU1nTINfr9qOfnQotXWg=="; + url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.12.0.tgz"; + sha512 = "OSZpOu+FGDbC/xivu24v092D9w6EGytB3vidwbdiJ2FaPgfV7rxS0WIUjH4I0OcvHAcitArRXL0a3+HrNTdQQw=="; }; }; - "@parcel/transformer-json-2.11.0" = { + "@parcel/transformer-json-2.12.0" = { name = "_at_parcel_slash_transformer-json"; packageName = "@parcel/transformer-json"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.11.0.tgz"; - sha512 = "Wt/wgSBaRWmPL4gpvjkV0bCBRxFOtsuLNzsm8vYA5poxTFhuLY+AoyQ8S2+xXU4VxwBfdppfIr2Ny3SwGs8xbQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.12.0.tgz"; + sha512 = "Utv64GLRCQILK5r0KFs4o7I41ixMPllwOLOhkdjJKvf1hZmN6WqfOmB1YLbWS/y5Zb/iB52DU2pWZm96vLFQZQ=="; }; }; - "@parcel/transformer-postcss-2.11.0" = { + "@parcel/transformer-postcss-2.12.0" = { name = "_at_parcel_slash_transformer-postcss"; packageName = "@parcel/transformer-postcss"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.11.0.tgz"; - sha512 = "Ugy8XHBaUptGotsvwzq7gPCvkCopTIqqZ0JZ40Jmy9slGms8wnx06pNHA1Be/RcJwkJ2TbSu+7ncZdgmP5x5GQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.12.0.tgz"; + sha512 = "FZqn+oUtiLfPOn67EZxPpBkfdFiTnF4iwiXPqvst3XI8H+iC+yNgzmtJkunOOuylpYY6NOU5jT8d7saqWSDv2Q=="; }; }; - "@parcel/transformer-posthtml-2.11.0" = { + "@parcel/transformer-posthtml-2.12.0" = { name = "_at_parcel_slash_transformer-posthtml"; packageName = "@parcel/transformer-posthtml"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.11.0.tgz"; - sha512 = "dMK4p1RRAoIJEjK/Wz9GOLqwHqdD/VQDhMPk+6sUKp5zf2MhSohUstpp5gKsSZivCM3PS2f8k9rgroacJ/ReuA=="; + url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.12.0.tgz"; + sha512 = "z6Z7rav/pcaWdeD+2sDUcd0mmNZRUvtHaUGa50Y2mr+poxrKilpsnFMSiWBT+oOqPt7j71jzDvrdnAF4XkCljg=="; }; }; - "@parcel/transformer-raw-2.11.0" = { + "@parcel/transformer-raw-2.12.0" = { name = "_at_parcel_slash_transformer-raw"; packageName = "@parcel/transformer-raw"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.11.0.tgz"; - sha512 = "2ltp3TgS+cxEqSM1vk5gDtJrYx4KMuRRtbSgSvkdldyOgPhflnLU3/HRz72hXSNGqYOV0/JN0+ocsfPnqR00ug=="; + url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.12.0.tgz"; + sha512 = "Ht1fQvXxix0NncdnmnXZsa6hra20RXYh1VqhBYZLsDfkvGGFnXIgO03Jqn4Z8MkKoa0tiNbDhpKIeTjyclbBxQ=="; }; }; - "@parcel/transformer-react-refresh-wrap-2.11.0" = { + "@parcel/transformer-react-refresh-wrap-2.12.0" = { name = "_at_parcel_slash_transformer-react-refresh-wrap"; packageName = "@parcel/transformer-react-refresh-wrap"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.11.0.tgz"; - sha512 = "6pY0CdIgIpXC6XpsDWizf+zLgiuEsJ106HjWLwF7/R72BrvDhLPZ6jRu4UTrnd6bM89KahPw9fZZzjKoA5Efcw=="; + url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.12.0.tgz"; + sha512 = "GE8gmP2AZtkpBIV5vSCVhewgOFRhqwdM5Q9jNPOY5PKcM3/Ff0qCqDiTzzGLhk0/VMBrdjssrfZkVx6S/lHdJw=="; }; }; - "@parcel/transformer-svg-2.11.0" = { + "@parcel/transformer-svg-2.12.0" = { name = "_at_parcel_slash_transformer-svg"; packageName = "@parcel/transformer-svg"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.11.0.tgz"; - sha512 = "GrTNi04OoQSXsyrB7FqQPeYREscEXFhIBPkyQ0q7WDG/yYynWljiA0kwITCtMjPfv2EDVks292dvM3EcnERRIA=="; + url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.12.0.tgz"; + sha512 = "cZJqGRJ4JNdYcb+vj94J7PdOuTnwyy45dM9xqbIMH+HSiiIkfrMsdEwYft0GTyFTdsnf+hdHn3tau7Qa5hhX+A=="; }; }; - "@parcel/types-2.11.0" = { + "@parcel/types-2.12.0" = { name = "_at_parcel_slash_types"; packageName = "@parcel/types"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/types/-/types-2.11.0.tgz"; - sha512 = "lN5XlfV9b1s2rli8q1LqsLtu+D4ZwNI3sKmNcL/3tohSfQcF2EgF+MaiANGo9VzXOzoWFHt4dqWjO4OcdyC5tg=="; + url = "https://registry.npmjs.org/@parcel/types/-/types-2.12.0.tgz"; + sha512 = "8zAFiYNCwNTQcglIObyNwKfRYQK5ELlL13GuBOrSMxueUiI5ylgsGbTS1N7J3dAGZixHO8KhHGv5a71FILn9rQ=="; }; }; - "@parcel/utils-2.11.0" = { + "@parcel/utils-2.12.0" = { name = "_at_parcel_slash_utils"; packageName = "@parcel/utils"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.11.0.tgz"; - sha512 = "AcL70cXlIyE7eQdvjQbYxegN5l+skqvlJllxTWg4YkIZe9p8Gmv74jLAeLWh5F+IGl5WRn0TSy9JhNJjIMQGwQ=="; + url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.12.0.tgz"; + sha512 = "z1JhLuZ8QmDaYoEIuUCVZlhcFrS7LMfHrb2OCRui5SQFntRWBH2fNM6H/fXXUkT9SkxcuFP2DUA6/m4+Gkz72g=="; }; }; - "@parcel/watcher-2.4.0" = { + "@parcel/watcher-2.4.1" = { name = "_at_parcel_slash_watcher"; packageName = "@parcel/watcher"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.0.tgz"; - sha512 = "XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg=="; + url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz"; + sha512 = "HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA=="; }; }; - "@parcel/watcher-android-arm64-2.4.0" = { + "@parcel/watcher-android-arm64-2.4.1" = { name = "_at_parcel_slash_watcher-android-arm64"; packageName = "@parcel/watcher-android-arm64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.0.tgz"; - sha512 = "+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA=="; + url = "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz"; + sha512 = "LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg=="; }; }; - "@parcel/watcher-darwin-arm64-2.4.0" = { + "@parcel/watcher-darwin-arm64-2.4.1" = { name = "_at_parcel_slash_watcher-darwin-arm64"; packageName = "@parcel/watcher-darwin-arm64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.0.tgz"; - sha512 = "T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA=="; + url = "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz"; + sha512 = "ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA=="; }; }; - "@parcel/watcher-darwin-x64-2.4.0" = { + "@parcel/watcher-darwin-x64-2.4.1" = { name = "_at_parcel_slash_watcher-darwin-x64"; packageName = "@parcel/watcher-darwin-x64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.0.tgz"; - sha512 = "vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q=="; + url = "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz"; + sha512 = "yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg=="; }; }; - "@parcel/watcher-freebsd-x64-2.4.0" = { + "@parcel/watcher-freebsd-x64-2.4.1" = { name = "_at_parcel_slash_watcher-freebsd-x64"; packageName = "@parcel/watcher-freebsd-x64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.0.tgz"; - sha512 = "dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA=="; + url = "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz"; + sha512 = "TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w=="; }; }; - "@parcel/watcher-linux-arm-glibc-2.4.0" = { + "@parcel/watcher-linux-arm-glibc-2.4.1" = { name = "_at_parcel_slash_watcher-linux-arm-glibc"; packageName = "@parcel/watcher-linux-arm-glibc"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.0.tgz"; - sha512 = "9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ=="; + url = "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz"; + sha512 = "4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA=="; }; }; - "@parcel/watcher-linux-arm64-glibc-2.4.0" = { + "@parcel/watcher-linux-arm64-glibc-2.4.1" = { name = "_at_parcel_slash_watcher-linux-arm64-glibc"; packageName = "@parcel/watcher-linux-arm64-glibc"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.0.tgz"; - sha512 = "QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg=="; + url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz"; + sha512 = "BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA=="; }; }; - "@parcel/watcher-linux-arm64-musl-2.4.0" = { + "@parcel/watcher-linux-arm64-musl-2.4.1" = { name = "_at_parcel_slash_watcher-linux-arm64-musl"; packageName = "@parcel/watcher-linux-arm64-musl"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.0.tgz"; - sha512 = "oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng=="; + url = "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz"; + sha512 = "p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA=="; }; }; - "@parcel/watcher-linux-x64-glibc-2.4.0" = { + "@parcel/watcher-linux-x64-glibc-2.4.1" = { name = "_at_parcel_slash_watcher-linux-x64-glibc"; packageName = "@parcel/watcher-linux-x64-glibc"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.0.tgz"; - sha512 = "KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ=="; + url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz"; + sha512 = "s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg=="; }; }; - "@parcel/watcher-linux-x64-musl-2.4.0" = { + "@parcel/watcher-linux-x64-musl-2.4.1" = { name = "_at_parcel_slash_watcher-linux-x64-musl"; packageName = "@parcel/watcher-linux-x64-musl"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.0.tgz"; - sha512 = "7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA=="; + url = "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz"; + sha512 = "L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ=="; }; }; - "@parcel/watcher-win32-arm64-2.4.0" = { + "@parcel/watcher-win32-arm64-2.4.1" = { name = "_at_parcel_slash_watcher-win32-arm64"; packageName = "@parcel/watcher-win32-arm64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.0.tgz"; - sha512 = "NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg=="; + url = "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz"; + sha512 = "Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg=="; }; }; - "@parcel/watcher-win32-ia32-2.4.0" = { + "@parcel/watcher-win32-ia32-2.4.1" = { name = "_at_parcel_slash_watcher-win32-ia32"; packageName = "@parcel/watcher-win32-ia32"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.0.tgz"; - sha512 = "IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA=="; + url = "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz"; + sha512 = "maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw=="; }; }; - "@parcel/watcher-win32-x64-2.4.0" = { + "@parcel/watcher-win32-x64-2.4.1" = { name = "_at_parcel_slash_watcher-win32-x64"; packageName = "@parcel/watcher-win32-x64"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.0.tgz"; - sha512 = "pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA=="; + url = "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz"; + sha512 = "+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A=="; }; }; - "@parcel/workers-2.11.0" = { + "@parcel/workers-2.12.0" = { name = "_at_parcel_slash_workers"; packageName = "@parcel/workers"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.11.0.tgz"; - sha512 = "wjybqdSy6Nk0N9iBGsFcp7739W2zvx0WGfVxPVShqhz46pIkPOiFF/iSn+kFu5EmMKTRWeUif42+a6rRZ7pCnQ=="; + url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.12.0.tgz"; + sha512 = "zv5We5Jmb+ZWXlU6A+AufyjY4oZckkxsZ8J4dvyWL0W8IQvGO1JB4FGeryyttzQv3RM3OxcN/BpTGPiDG6keBw=="; }; }; "@peculiar/asn1-schema-2.3.8" = { @@ -8806,67 +8788,67 @@ let sha512 = "OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA=="; }; }; - "@polka/url-1.0.0-next.24" = { + "@polka/url-1.0.0-next.25" = { name = "_at_polka_slash_url"; packageName = "@polka/url"; - version = "1.0.0-next.24"; + version = "1.0.0-next.25"; src = fetchurl { - url = "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz"; - sha512 = "2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ=="; + url = "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz"; + sha512 = "j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ=="; }; }; - "@prisma/debug-5.9.1" = { + "@prisma/debug-5.11.0" = { name = "_at_prisma_slash_debug"; packageName = "@prisma/debug"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/debug/-/debug-5.9.1.tgz"; - sha512 = "yAHFSFCg8KVoL0oRUno3m60GAjsUKYUDkQ+9BA2X2JfVR3kRVSJFc/GpQ2fSORi4pSHZR9orfM4UC9OVXIFFTA=="; + url = "https://registry.npmjs.org/@prisma/debug/-/debug-5.11.0.tgz"; + sha512 = "N6yYr3AbQqaiUg+OgjkdPp3KPW1vMTAgtKX6+BiB/qB2i1TjLYCrweKcUjzOoRM5BriA4idrkTej9A9QqTfl3A=="; }; }; - "@prisma/engines-5.9.1" = { + "@prisma/engines-5.11.0" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.9.1.tgz"; - sha512 = "gkdXmjxQ5jktxWNdDA5aZZ6R8rH74JkoKq6LD5mACSvxd2vbqWeWIOV0Py5wFC8vofOYShbt6XUeCIUmrOzOnQ=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.11.0.tgz"; + sha512 = "gbrpQoBTYWXDRqD+iTYMirDlF9MMlQdxskQXbhARhG6A/uFQjB7DZMYocMQLoiZXO/IskfDOZpPoZE8TBQKtEw=="; }; }; - "@prisma/engines-version-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64" = { + "@prisma/engines-version-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102" = { name = "_at_prisma_slash_engines-version"; packageName = "@prisma/engines-version"; - version = "5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"; + version = "5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64.tgz"; - sha512 = "HFl7275yF0FWbdcNvcSRbbu9JCBSLMcurYwvWc8WGDnpu7APxQo2ONtZrUggU3WxLxUJ2uBX+0GOFIcJeVeOOQ=="; + url = "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102.tgz"; + sha512 = "WXCuyoymvrS4zLz4wQagSsc3/nE6CHy8znyiMv8RKazKymOMd5o9FP5RGwGHAtgoxd+aB/BWqxuP/Ckfu7/3MA=="; }; }; - "@prisma/fetch-engine-5.9.1" = { + "@prisma/fetch-engine-5.11.0" = { name = "_at_prisma_slash_fetch-engine"; packageName = "@prisma/fetch-engine"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.9.1.tgz"; - sha512 = "l0goQOMcNVOJs1kAcwqpKq3ylvkD9F04Ioe1oJoCqmz05mw22bNAKKGWuDd3zTUoUZr97va0c/UfLNru+PDmNA=="; + url = "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.11.0.tgz"; + sha512 = "994viazmHTJ1ymzvWugXod7dZ42T2ROeFuH6zHPcUfp/69+6cl5r9u3NFb6bW8lLdNjwLYEVPeu3hWzxpZeC0w=="; }; }; - "@prisma/get-platform-5.9.1" = { + "@prisma/get-platform-5.11.0" = { name = "_at_prisma_slash_get-platform"; packageName = "@prisma/get-platform"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.9.1.tgz"; - sha512 = "6OQsNxTyhvG+T2Ksr8FPFpuPeL4r9u0JF0OZHUBI/Uy9SS43sPyAIutt4ZEAyqWQt104ERh70EZedkHZKsnNbg=="; + url = "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.11.0.tgz"; + sha512 = "rxtHpMLxNTHxqWuGOLzR2QOyQi79rK1u1XYAVLZxDGTLz/A+uoDnjz9veBFlicrpWjwuieM4N6jcnjj/DDoidw=="; }; }; - "@prisma/prisma-schema-wasm-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64" = { + "@prisma/prisma-schema-wasm-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102" = { name = "_at_prisma_slash_prisma-schema-wasm"; packageName = "@prisma/prisma-schema-wasm"; - version = "5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64"; + version = "5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64.tgz"; - sha512 = "IuqMy9uI6bax2TiKPfwEOdAsdG8g0+F+1JD28ugUL4q40Q2iLHBgqUgyavSev1z/TUIA/cYJm3ObEUWz9pNnBQ=="; + url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102.tgz"; + sha512 = "1VdfJ7fIM9X0opDyuNIrHLeynRdjIqI2waepLpi42ARiztPyD3getsgOtntiqMg3jGVwvnNdshUKuwHBFbv5Fg=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -8959,13 +8941,13 @@ let sha512 = "Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="; }; }; - "@putdotio/api-client-8.46.0" = { + "@putdotio/api-client-8.47.0" = { name = "_at_putdotio_slash_api-client"; packageName = "@putdotio/api-client"; - version = "8.46.0"; + version = "8.47.0"; src = fetchurl { - url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.46.0.tgz"; - sha512 = "502d7sDRLvjhYGp0qYGkH+nVl6P3Ww4Et2V8eSbtvXlMB/fOGo5EfUL4hmmuVlutOC95TLRxIVcYAewJFhE8Lg=="; + url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.47.0.tgz"; + sha512 = "K9PoSzHRTFnc3ThhwC0w9xjyMU3BWMd2M2mDFVU2BW1KqkavLSOZSjtPvX0foWbflRbSROH3DEfDuquxCBsZnw=="; }; }; "@react-native/normalize-color-2.1.0" = { @@ -9175,211 +9157,211 @@ let sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; }; }; - "@rspack/binding-0.5.4" = { + "@rspack/binding-0.5.7" = { name = "_at_rspack_slash_binding"; packageName = "@rspack/binding"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding/-/binding-0.5.4.tgz"; - sha512 = "WoAq+pkNAe4jetIwIoUbiqO4cLSvpll90GtpYHqaNS9r9n28l4LBQY/A15W0/XBZeoj0wvMkYEvEZtn64PULLw=="; + url = "https://registry.npmjs.org/@rspack/binding/-/binding-0.5.7.tgz"; + sha512 = "47MX6wNF1lP/LdShPVhbg689FX1W96Zji7QgbxhRhXmkpOKor7gdajhxqszFHxHYJtqNTLA9BSG38rpIGxJ+fw=="; }; }; - "@rspack/binding-darwin-arm64-0.5.4" = { + "@rspack/binding-darwin-arm64-0.5.7" = { name = "_at_rspack_slash_binding-darwin-arm64"; packageName = "@rspack/binding-darwin-arm64"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-0.5.4.tgz"; - sha512 = "MWTLMzrgWk5enKGfctVIhbU5WlpJbXpvUnHKzxSr4dclf+IeBIaXBEs1fwogrS87VdfWTOh+lndyzrozBnxMmQ=="; + url = "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-0.5.7.tgz"; + sha512 = "zYTMILRyrON25MW7ifEhkZ6jL33mz8bAHTOhgR8yMpYVJjrKu60+s1qPa+t+GkaH7nNnVmzkTVGECCvaA75hJQ=="; }; }; - "@rspack/binding-darwin-x64-0.5.4" = { + "@rspack/binding-darwin-x64-0.5.7" = { name = "_at_rspack_slash_binding-darwin-x64"; packageName = "@rspack/binding-darwin-x64"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-darwin-x64/-/binding-darwin-x64-0.5.4.tgz"; - sha512 = "+8kvYjN9IllQSSzTrKp74Cf2efFNJZNMk6PWoOeakk43+Z1BgMgzLJTs/1xIDFhzylvLSMYSLO8AhbMMX48TCw=="; + url = "https://registry.npmjs.org/@rspack/binding-darwin-x64/-/binding-darwin-x64-0.5.7.tgz"; + sha512 = "4THSPWVKPMSSD/y3/TWZ5xlSeh1B33I+YnBu/Y3lDFcFrFPtc3ojIDHw3is6l2wcACX6Rro4RgN6zcUij7eEmQ=="; }; }; - "@rspack/binding-linux-arm64-gnu-0.5.4" = { + "@rspack/binding-linux-arm64-gnu-0.5.7" = { name = "_at_rspack_slash_binding-linux-arm64-gnu"; packageName = "@rspack/binding-linux-arm64-gnu"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.5.4.tgz"; - sha512 = "mXtRKCblBT+H1KPWUfeJt6gQFGoMt+lnhk2POcoCeS1AxnxcTFpnci4BC4Ro5zKS2QWSdGdUMtc5GKlBmgwxvg=="; + url = "https://registry.npmjs.org/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.5.7.tgz"; + sha512 = "JB9FAYWjYAeNCPFh0mQu3SZdFHiA+EY37z1AktLDl789SoEec2HPGkvvOs+OIET1pKWgjUGD4Z4Uq4P/r5JFNA=="; }; }; - "@rspack/binding-linux-arm64-musl-0.5.4" = { + "@rspack/binding-linux-arm64-musl-0.5.7" = { name = "_at_rspack_slash_binding-linux-arm64-musl"; packageName = "@rspack/binding-linux-arm64-musl"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.5.4.tgz"; - sha512 = "P96R8yLT4BKtwYCtomIJE4uIGAh+5I8qLbrTrGamj/6N1D79GgwORW6CllCEnVU9l/Tjkdd+yMJkT9zoACa9gQ=="; + url = "https://registry.npmjs.org/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.5.7.tgz"; + sha512 = "3fNhPvA9Kj/L7rwr2Pj1bvxWBLBgqfkqSvt91iUxPbxgfTiSBQh0Tfb9+hkHv2VCTyNQI/vytkOH+4i4DNXCBw=="; }; }; - "@rspack/binding-linux-x64-gnu-0.5.4" = { + "@rspack/binding-linux-x64-gnu-0.5.7" = { name = "_at_rspack_slash_binding-linux-x64-gnu"; packageName = "@rspack/binding-linux-x64-gnu"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.5.4.tgz"; - sha512 = "/EjM7CkALS7uUF0laVp+wtOICrX2sR5gy4liIYVHKDLu+b4PGRtEQvubrDxikkzPpOYRvF38R7OBMUOJBuBW7A=="; + url = "https://registry.npmjs.org/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.5.7.tgz"; + sha512 = "y/GnXt1hhbKSqzBSy+ALWwievlejQhIIF8FPXL1kKFh60zl7DE+iYHSJ128jIJiph9dQkBnHw0ABJ5D+vbSqdA=="; }; }; - "@rspack/binding-linux-x64-musl-0.5.4" = { + "@rspack/binding-linux-x64-musl-0.5.7" = { name = "_at_rspack_slash_binding-linux-x64-musl"; packageName = "@rspack/binding-linux-x64-musl"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-0.5.4.tgz"; - sha512 = "dMT9QW4IZ7IGzczsOmzdpGf84IzIecvitSwj7DnulRkxj3++IWLAo80+HDtgn+nPm+1gNVFb11wg5L9x+VjFXw=="; + url = "https://registry.npmjs.org/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-0.5.7.tgz"; + sha512 = "US/FUv6cvbxbe4nymINwer/EQTvGEgCaAIrvKuAP0yAfK0eyqIHYZj/zCBM2qOS69Mpc2FWVMC/ftRyCvAz/xw=="; }; }; - "@rspack/binding-win32-arm64-msvc-0.5.4" = { + "@rspack/binding-win32-arm64-msvc-0.5.7" = { name = "_at_rspack_slash_binding-win32-arm64-msvc"; packageName = "@rspack/binding-win32-arm64-msvc"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.5.4.tgz"; - sha512 = "SsnOqWRw5VQnbz/63wtKsoyj6lfUpQQZyFWfQAMsNt8suIauWI/kf3QLWL/vmBX5Q24Sq16Kl5cMIjxAIJQfiQ=="; + url = "https://registry.npmjs.org/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.5.7.tgz"; + sha512 = "g7NWXa5EGvh6j1VPXGOFaWuOVxdPYYLh3wpUl46Skrd6qFZKB2r+yNhuXo6lqezwYvbtHEDrmFOHF2S6epXO5g=="; }; }; - "@rspack/binding-win32-ia32-msvc-0.5.4" = { + "@rspack/binding-win32-ia32-msvc-0.5.7" = { name = "_at_rspack_slash_binding-win32-ia32-msvc"; packageName = "@rspack/binding-win32-ia32-msvc"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.5.4.tgz"; - sha512 = "xLlUHn712WhnWN40JeljQCiWBIRd/meMRKSEqTJJdZfNwozd4cZUbq5rxexX6HNjZvkwLACpATDotPVfCKPjbQ=="; + url = "https://registry.npmjs.org/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.5.7.tgz"; + sha512 = "5Udt4pYpPSd1wlbVKTdWzjha8oV+FQ/EXILHhoS9G7l9rbpqhMs6oIqAgEavQS3t6fKtQU837b+MSBNprudTtw=="; }; }; - "@rspack/binding-win32-x64-msvc-0.5.4" = { + "@rspack/binding-win32-x64-msvc-0.5.7" = { name = "_at_rspack_slash_binding-win32-x64-msvc"; packageName = "@rspack/binding-win32-x64-msvc"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.5.4.tgz"; - sha512 = "33IBq3yuJTyUKhTGbPwP/kvSf58wpOCBdPvye+ExNSw0uEVwXMs2AqDWDnbBPtZjP8DVN/zu0EoeLhYk9fwkYg=="; + url = "https://registry.npmjs.org/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.5.7.tgz"; + sha512 = "tB/SB27BBDVV0+GpEUHkl2uanCP4Jk/hlnbvl5u6lSGcIxCFm+da4OsyiGDRE24bSEdMc91dmyWVlx5425je+A=="; }; }; - "@rspack/core-0.5.4" = { + "@rspack/core-0.5.7" = { name = "_at_rspack_slash_core"; packageName = "@rspack/core"; - version = "0.5.4"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rspack/core/-/core-0.5.4.tgz"; - sha512 = "3yxOllEC93gf4pNiLlgtzE8dPo0QV2naQY24gAPk+EoWlwpmR6p1r7ZdD53etFZPGB4hMm78J/zgwx8jy1TRsw=="; + url = "https://registry.npmjs.org/@rspack/core/-/core-0.5.7.tgz"; + sha512 = "gUF0PcanPrC2cVfFA4e+qmG66X7FkEKlRbnaUfB4LKw9JQuwiMOXCAtrBdveDjB89KE/3cw/nuYVQwd106uqWA=="; }; }; - "@rushstack/heft-config-file-0.14.7" = { + "@rushstack/heft-config-file-0.14.14" = { name = "_at_rushstack_slash_heft-config-file"; packageName = "@rushstack/heft-config-file"; - version = "0.14.7"; + version = "0.14.14"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.14.7.tgz"; - sha512 = "yfYCLKBEIS7J2M2QIab1Sdqkj85MqcNARPN8Q+lVN1jy05YGX/LiqevvUrFGiH0zJUP3qBp2nS2LCdm7l+N55g=="; + url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.14.14.tgz"; + sha512 = "3DolQTSw7GTq3GtIPgTAL9bkuNxy2Z3niUN9MAgYxNla0Bi6d2SDRjTnDirLbasRhU8T/9AbGuiLwExiBnQ3sA=="; }; }; - "@rushstack/node-core-library-3.64.2" = { + "@rushstack/node-core-library-4.0.2" = { name = "_at_rushstack_slash_node-core-library"; packageName = "@rushstack/node-core-library"; - version = "3.64.2"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.64.2.tgz"; - sha512 = "n1S2VYEklONiwKpUyBq/Fym6yAsfsCXrqFabuOMcCuj4C+zW+HyaspSHXJCKqkMxfjviwe/c9+DUqvRWIvSN9Q=="; + url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz"; + sha512 = "hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg=="; }; }; - "@rushstack/package-deps-hash-4.1.21" = { + "@rushstack/package-deps-hash-4.1.38" = { name = "_at_rushstack_slash_package-deps-hash"; packageName = "@rushstack/package-deps-hash"; - version = "4.1.21"; + version = "4.1.38"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.1.21.tgz"; - sha512 = "sE0mXl/OVwF0P8mY7pRwim7TbLFFp2bvmsYz7bWlDRkbITpF9yCF+tNc0N6XlhVB7/Jwn0z2vci2jLRCM/k5bg=="; + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.1.38.tgz"; + sha512 = "Fdm6JPUefpxLDP/ky4MakPtnSvm1didSt0UnGvDXaFcMdu/xSu+h6+FjIcqY404JKtte2rnrjtxRiSNyS5hoFA=="; }; }; - "@rushstack/package-extractor-0.6.23" = { + "@rushstack/package-extractor-0.6.40" = { name = "_at_rushstack_slash_package-extractor"; packageName = "@rushstack/package-extractor"; - version = "0.6.23"; + version = "0.6.40"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.6.23.tgz"; - sha512 = "ySRr7yLFWwibh7XPqDokMK7N6UAfT+j+34JoP+Ta6oKYcDqFRqW/lbV923wW26rrx7L8lHQOldUDskIssn39dw=="; + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.6.40.tgz"; + sha512 = "Kx8MH3sGyJZz8Ha6evgy1ymHwMFpY7U/0ttahAf9K45r1HUPL2X86g6UfwBabXV44uAs3I5lgdZCvi+qUEqiWg=="; }; }; - "@rushstack/rig-package-0.5.1" = { + "@rushstack/rig-package-0.5.2" = { name = "_at_rushstack_slash_rig-package"; packageName = "@rushstack/rig-package"; - version = "0.5.1"; + version = "0.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.1.tgz"; - sha512 = "pXRYSe29TjRw7rqxD4WS3HN/sRSbfr+tJs4a9uuaSIBAITbUggygdhuG0VrO0EO+QqH91GhYMN4S6KRtOEmGVA=="; + url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.2.tgz"; + sha512 = "mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA=="; }; }; - "@rushstack/rush-amazon-s3-build-cache-plugin-5.113.4" = { + "@rushstack/rush-amazon-s3-build-cache-plugin-5.117.9" = { name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.113.4.tgz"; - sha512 = "ySSyDbWOd0xHGNWYP9zRWB4mqg+deVrZ1LIBL+mIIH8Y+gWIPS4B8C358fDeaylWV+JLx5Lwpp7hRYAVAy465w=="; + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.117.9.tgz"; + sha512 = "1VUCZ0bWQEpKM7hGWnysrohqgOdCqfKtKJ3C6xCtDy9fxQfOm4XKU8eT0+jSH8HbgwgxrWWlAMkDVJTSUIARtA=="; }; }; - "@rushstack/rush-azure-storage-build-cache-plugin-5.113.4" = { + "@rushstack/rush-azure-storage-build-cache-plugin-5.117.9" = { name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.113.4.tgz"; - sha512 = "9Aw8u/I3ojl68Ym1QdFX6XXuL645LCKZXLu7DFNHFSDHxV1f+X7fbpMERTTdF1EbZ0HAWKww+OXaiSIfyBk4CA=="; + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.117.9.tgz"; + sha512 = "MNbNu81mElwqRzEFz08tNAYAjOI0bynsum5CsK5fakzWNbXlvFnHGKO/AzLvzUwYJO+96Awq37K4WPHPfUGHsA=="; }; }; - "@rushstack/rush-http-build-cache-plugin-5.113.4" = { + "@rushstack/rush-http-build-cache-plugin-5.117.9" = { name = "_at_rushstack_slash_rush-http-build-cache-plugin"; packageName = "@rushstack/rush-http-build-cache-plugin"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.113.4.tgz"; - sha512 = "CzrUrCr7csEQ2Hy/mfNdNz5akJsDtF335bJr4AC1gbxUGnOExCUnsry7zVexA/BtLVARScZMLbUF4p+Y/M4a2g=="; + url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.117.9.tgz"; + sha512 = "Bv1rM6dqE+HkXBm4BlwIKIOkPD1yg3qce4pqszDwmadTCS1ZY0KM3eEKkOeSuclNibl4PUxhvRy8WLnTNwRHYw=="; }; }; - "@rushstack/rush-sdk-5.113.4" = { + "@rushstack/rush-sdk-5.117.9" = { name = "_at_rushstack_slash_rush-sdk"; packageName = "@rushstack/rush-sdk"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.113.4.tgz"; - sha512 = "2BdUJGWTcDPuDKHrPvo2UxmfSBriVcW4P6dbCNwAdIgOa+OmiloPZx0sBKPLN5NPonxnRR2747FSMbXREVDGYQ=="; + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.117.9.tgz"; + sha512 = "8JjYIdUUPf57YtydlnedzEIa6+2l3nEI62VY7AyXxp3sG1yVzYUDafCOndISOCaA4HJD+sM482OS3DzEOLUPZg=="; }; }; - "@rushstack/stream-collator-4.1.21" = { + "@rushstack/stream-collator-4.1.38" = { name = "_at_rushstack_slash_stream-collator"; packageName = "@rushstack/stream-collator"; - version = "4.1.21"; + version = "4.1.38"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.21.tgz"; - sha512 = "C6WNcdT9RDYKqwiDHLjM4WLqJZHazyxnW8YvdtoaQi4MiQztbI5B+q8VvpifirmHp7z/GAGO8qrWtJXXgOLCyw=="; + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.38.tgz"; + sha512 = "SbncDR+7eSU+lWwH+4TMnXNYUlcqmF1o9bFYKRb0f0R6Q3mr/TMWMlr5+qzfU9ilDorE0H4tD7tTB6olYv/FfQ=="; }; }; - "@rushstack/terminal-0.7.20" = { + "@rushstack/terminal-0.10.0" = { name = "_at_rushstack_slash_terminal"; packageName = "@rushstack/terminal"; - version = "0.7.20"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.7.20.tgz"; - sha512 = "e23GExH43r1VSpcudhvXNlatjDn/jZiajaW3Bs/Nd9wyRPsWxs1b+6iEFdZSDoBDRwAKxrSv96no9qCszOSmkQ=="; + url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.10.0.tgz"; + sha512 = "UbELbXnUdc7EKwfH2sb8ChqNgapUOdqcCIdQP4NGxBpTZV2sQyeekuK3zmfQSa/MN+/7b4kBogl2wq0vpkpYGw=="; }; }; - "@rushstack/ts-command-line-4.17.1" = { + "@rushstack/ts-command-line-4.19.1" = { name = "_at_rushstack_slash_ts-command-line"; packageName = "@rushstack/ts-command-line"; - version = "4.17.1"; + version = "4.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.17.1.tgz"; - sha512 = "2jweO1O57BYP5qdBGl6apJLB+aRIn5ccIRTPDyULh0KMwVzFqWtw6IZWt1qtUoZD/pD2RNkIOosH6Cq45rIYeg=="; + url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.19.1.tgz"; + sha512 = "J7H768dgcpG60d7skZ5uSSwyCZs/S2HrWP1Ds8d1qYAyaaeJmpmmLr9BVw97RjFzmQPOYnoXcKA4GkqDCkduQg=="; }; }; "@samverschueren/stream-to-observable-0.3.1" = { @@ -9391,13 +9373,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-17.2.0" = { + "@schematics/angular-17.3.0" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-17.2.0.tgz"; - sha512 = "k5SisAPTRXxP2WVjWHgQl2sQkaAkUiOZJrHhTmUghTowULN2eIiW+1SSdNBFCbv+qkl276NfavOi22j+C7uaKQ=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.0.tgz"; + sha512 = "QqugP4Uyxk966VaUb/Jk5LQ5rE1BV4v2TmniPZtN3GZ6MDkpvPnFvlysvoq6y+7uiRhCLiT1DsBIwc9vXz3vWA=="; }; }; "@scure/base-1.1.5" = { @@ -9454,157 +9436,112 @@ let sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; }; }; - "@sentry-internal/tracing-7.64.0" = { + "@sentry-internal/tracing-7.104.0" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.64.0"; + version = "7.104.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.64.0.tgz"; - sha512 = "1XE8W6ki7hHyBvX9hfirnGkKDBKNq3bDJyXS86E0bYVDl94nvbRM9BD9DHsCFetqYkVm1yDGEK+6aUVs4CztoQ=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.104.0.tgz"; + sha512 = "2z7OijM1J5ndJUiJJElC3iH9qb/Eb8eYm2v8oJhM8WVdc5uCKfrQuYHNgGOnmY2FOCfEUlTmMQGpDw7DJ67L5w=="; }; }; - "@sentry-internal/tracing-7.91.0" = { + "@sentry-internal/tracing-7.107.0" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.91.0"; + version = "7.107.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.91.0.tgz"; - sha512 = "JH5y6gs6BS0its7WF2DhySu7nkhPDfZcdpAXldxzIlJpqFkuwQKLU5nkYJpiIyZz1NHYYtW5aum2bV2oCOdDRA=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.107.0.tgz"; + sha512 = "le9wM8+OHBbq7m/8P7JUJ1UhSPIty+Z/HmRXc5Z64ODZcOwFV6TmDpYx729IXDdz36XUKmeI+BeM7yQdTTZPfQ=="; }; }; - "@sentry-internal/tracing-7.94.1" = { - name = "_at_sentry-internal_slash_tracing"; - packageName = "@sentry-internal/tracing"; - version = "7.94.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.94.1.tgz"; - sha512 = "znxCdrz7tPXm9Bwoe46PW72Zr0Iv7bXT6+b2LNg5fxWiCQVBbQFrMuVvtXEmHxeRRJVEgTh/4TdulB7wrtQIUQ=="; - }; - }; - "@sentry/core-7.64.0" = { + "@sentry/core-7.104.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.64.0"; + version = "7.104.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.64.0.tgz"; - sha512 = "IzmEyl5sNG7NyEFiyFHEHC+sizsZp9MEw1+RJRLX6U5RITvcsEgcajSkHQFafaBPzRrcxZMdm47Cwhl212LXcw=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.104.0.tgz"; + sha512 = "XPndD6IGQGd07/EntvYVzOWQUo/Gd7L3DwYFeEKeBv6ByWjbBNmVZFRhU0GPPsCHKyW9yMU9OO9diLSS4ijsRg=="; }; }; - "@sentry/core-7.91.0" = { + "@sentry/core-7.107.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.91.0"; + version = "7.107.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.91.0.tgz"; - sha512 = "tu+gYq4JrTdrR+YSh5IVHF0fJi/Pi9y0HZ5H9HnYy+UMcXIotxf6hIEaC6ZKGeLWkGXffz2gKpQLe/g6vy/lPA=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.107.0.tgz"; + sha512 = "C7ogye6+KPyBi8NVL0P8Rxx3Ur7Td8ufnjxosVy678lqY+dcYPk/HONROrzUFYW5fMKWL4/KYnwP+x9uHnkDmw=="; }; }; - "@sentry/core-7.94.1" = { - name = "_at_sentry_slash_core"; - packageName = "@sentry/core"; - version = "7.94.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.94.1.tgz"; - sha512 = "4sjiMnkbGpv9O98YHVZe7fHNwwdYl+zLoCOoEOadtrJ1EYYvnK/MSixN2HJF7g/0s22xd4xY958QyNIRVR+Iiw=="; - }; - }; - "@sentry/node-7.64.0" = { + "@sentry/node-7.104.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.64.0"; + version = "7.104.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.64.0.tgz"; - sha512 = "wRi0uTnp1WSa83X2yLD49tV9QPzGh5e42IKdIDBiQ7lV9JhLILlyb34BZY1pq6p4dp35yDasDrP3C7ubn7wo6A=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.104.0.tgz"; + sha512 = "Ixt8qg6IV8gywi4+H1cAtQeglAAww2nwLHybCxAvnu3czdF8w7ifF+o5BY1FmO5UYVCAfr8vEb+XG4CuRrFb7g=="; }; }; - "@sentry/node-7.91.0" = { + "@sentry/node-7.107.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.91.0"; + version = "7.107.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.91.0.tgz"; - sha512 = "hTIfSQxD7L+AKIqyjoq8CWBRkEQrrMZmA3GSZgPI5JFWBHgO0HBo5TH/8TU81oEJh6kqqHAl2ObMhmcnaFqlzg=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.107.0.tgz"; + sha512 = "UZXkG7uThT2YyPW8AOSKRXp1LbVcBHufa4r1XAwBukA2FKO6HHJPjMUgY6DYVQ6k+BmA56CNfVjYrdLbyjBYYA=="; }; }; - "@sentry/node-7.94.1" = { - name = "_at_sentry_slash_node"; - packageName = "@sentry/node"; - version = "7.94.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.94.1.tgz"; - sha512 = "30nyrfVbY1vNoWg5ptGW+soykU532VvKLuXiKty3SKEXjp5bv23JrCcVtuwp9KrW4josHOJbxZUqeNni85YplQ=="; - }; - }; - "@sentry/types-7.64.0" = { + "@sentry/types-7.104.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.64.0"; + version = "7.104.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.64.0.tgz"; - sha512 = "LqjQprWXjUFRmzIlUjyA+KL+38elgIYmAeoDrdyNVh8MK5IC1W2Lh1Q87b4yOiZeMiIhIVNBd7Ecoh2rodGrGA=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.104.0.tgz"; + sha512 = "5bs0xe0+GZR4QBm9Nrqw59o0sv3kBtCosrZDVxBru/dQbrfnB+/kVorvuM0rV3+coNITTKcKDegSZmK1d2uOGQ=="; }; }; - "@sentry/types-7.91.0" = { + "@sentry/types-7.107.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.91.0"; + version = "7.107.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.91.0.tgz"; - sha512 = "bcQnb7J3P3equbCUc+sPuHog2Y47yGD2sCkzmnZBjvBT0Z1B4f36fI/5WjyZhTjLSiOdg3F2otwvikbMjmBDew=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.107.0.tgz"; + sha512 = "H7qcPjPSUWHE/Zf5bR1EE24G0pGVuJgrSx8Tvvl5nKEepswMYlbXHRVSDN0gTk/E5Z7cqf+hUBOpkQgZyps77w=="; }; }; - "@sentry/types-7.94.1" = { - name = "_at_sentry_slash_types"; - packageName = "@sentry/types"; - version = "7.94.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.94.1.tgz"; - sha512 = "A7CdEXFSgGyWv2BT2p9cAvJfb+dypvOtsY8ZvZvdPLUa7kqCV7ndhURUqKjvMBzsL2GParHn3ehDTl2eVc7pvA=="; - }; - }; - "@sentry/utils-7.64.0" = { + "@sentry/utils-7.104.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.64.0"; + version = "7.104.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.64.0.tgz"; - sha512 = "HRlM1INzK66Gt+F4vCItiwGKAng4gqzCR4C5marsL3qv6SrKH98dQnCGYgXluSWaaa56h97FRQu7TxCk6jkSvQ=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.104.0.tgz"; + sha512 = "ZVg+xZirI9DlOi0NegNVocswdh/8p6QkzlQzDQY2LP2CC6JQdmwi64o0S4rPH4YIHNKQJTpIjduoxeKgd1EO5g=="; }; }; - "@sentry/utils-7.91.0" = { + "@sentry/utils-7.107.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.91.0"; + version = "7.107.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.91.0.tgz"; - sha512 = "fvxjrEbk6T6Otu++Ax9ntlQ0sGRiwSC179w68aC3u26Wr30FAIRKqHTCCdc2jyWk7Gd9uWRT/cq+g8NG/8BfSg=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.107.0.tgz"; + sha512 = "C6PbN5gHh73MRHohnReeQ60N8rrLYa9LciHue3Ru2290eSThg4CzsPnx4SzkGpkSeVlhhptKtKZ+hp/ha3iVuw=="; }; }; - "@sentry/utils-7.94.1" = { - name = "_at_sentry_slash_utils"; - packageName = "@sentry/utils"; - version = "7.94.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.94.1.tgz"; - sha512 = "gQ2EaMpUU1gGH3S+iqpog9gkXbCo8tlhGYA9a5FUtEtER3D3OAlp8dGFwClwzWDAwzjdLT1+X55zmEptU1cP/A=="; - }; - }; - "@shopify/cli-kit-3.56.1" = { + "@shopify/cli-kit-3.57.1" = { name = "_at_shopify_slash_cli-kit"; packageName = "@shopify/cli-kit"; - version = "3.56.1"; + version = "3.57.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/cli-kit/-/cli-kit-3.56.1.tgz"; - sha512 = "QDHcUODGA33ch0f3uMqALv+qKUK4kXqH1nl1XlRXqrFEx+l5xpU+BXWRn4cW5SsHWU7xiVwlf3hnrHQDrGMLdw=="; + url = "https://registry.npmjs.org/@shopify/cli-kit/-/cli-kit-3.57.1.tgz"; + sha512 = "DppI6F/q/QNzt+9SUZsumEnLLPs/IYZlDZJPomlgwN3h0i5qjGcGUihURhLPl8l1oUquwwGL4X9CLgoRVX4Nww=="; }; }; - "@shopify/plugin-did-you-mean-3.56.1" = { + "@shopify/plugin-did-you-mean-3.57.1" = { name = "_at_shopify_slash_plugin-did-you-mean"; packageName = "@shopify/plugin-did-you-mean"; - version = "3.56.1"; + version = "3.57.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/plugin-did-you-mean/-/plugin-did-you-mean-3.56.1.tgz"; - sha512 = "Pn7MtQzMFucFWUedXu1wapaki73KMYjzG4xRLtru37WYaWlXazLmhL1G1ywjMBytukrgNIdQ3yCHPvQp1GIuoQ=="; + url = "https://registry.npmjs.org/@shopify/plugin-did-you-mean/-/plugin-did-you-mean-3.57.1.tgz"; + sha512 = "4CA6qf+Rvf6rZrtqia+oCEC6oPs+NW+12IRvXzzrvmF/O9OTsQFlsOthhGuIT/BmnWUt2fDTl3d3bjNInQpWXw=="; }; }; "@sideway/address-4.1.5" = { @@ -9814,463 +9751,463 @@ let sha512 = "TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="; }; }; - "@sindresorhus/merge-streams-2.2.1" = { + "@sindresorhus/merge-streams-2.3.0" = { name = "_at_sindresorhus_slash_merge-streams"; packageName = "@sindresorhus/merge-streams"; - version = "2.2.1"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.2.1.tgz"; - sha512 = "255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw=="; + url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz"; + sha512 = "LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg=="; }; }; - "@smithy/abort-controller-2.1.1" = { + "@smithy/abort-controller-2.2.0" = { name = "_at_smithy_slash_abort-controller"; packageName = "@smithy/abort-controller"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.1.1.tgz"; - sha512 = "1+qdrUqLhaALYL0iOcN43EP6yAXXQ2wWZ6taf4S2pNGowmOc5gx+iMQv+E42JizNJjB0+gEadOXeV1Bf7JWL1Q=="; - }; - }; - "@smithy/chunked-blob-reader-2.1.1" = { - name = "_at_smithy_slash_chunked-blob-reader"; - packageName = "@smithy/chunked-blob-reader"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.1.1.tgz"; - sha512 = "NjNFCKxC4jVvn+lUr3Yo4/PmUJj3tbyqH6GNHueyTGS5Q27vlEJ1MkNhUDV8QGxJI7Bodnc2pD18lU2zRfhHlQ=="; - }; - }; - "@smithy/chunked-blob-reader-native-2.1.1" = { - name = "_at_smithy_slash_chunked-blob-reader-native"; - packageName = "@smithy/chunked-blob-reader-native"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.1.1.tgz"; - sha512 = "zNW+43dltfNMUrBEYLMWgI8lQr0uhtTcUyxkgC9EP4j17WREzgSFMPUFVrVV6Rc2+QtWERYjb4tzZnQGa7R9fQ=="; - }; - }; - "@smithy/config-resolver-2.1.1" = { - name = "_at_smithy_slash_config-resolver"; - packageName = "@smithy/config-resolver"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.1.1.tgz"; - sha512 = "lxfLDpZm+AWAHPFZps5JfDoO9Ux1764fOgvRUBpHIO8HWHcSN1dkgsago1qLRVgm1BZ8RCm8cgv99QvtaOWIhw=="; - }; - }; - "@smithy/core-1.3.2" = { - name = "_at_smithy_slash_core"; - packageName = "@smithy/core"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/core/-/core-1.3.2.tgz"; - sha512 = "tYDmTp0f2TZVE18jAOH1PnmkngLQ+dOGUlMd1u67s87ieueNeyqhja6z/Z4MxhybEiXKOWFOmGjfTZWFxljwJw=="; - }; - }; - "@smithy/credential-provider-imds-2.2.1" = { - name = "_at_smithy_slash_credential-provider-imds"; - packageName = "@smithy/credential-provider-imds"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.2.1.tgz"; - sha512 = "7XHjZUxmZYnONheVQL7j5zvZXga+EWNgwEAP6OPZTi7l8J4JTeNh9aIOfE5fKHZ/ee2IeNOh54ZrSna+Vc6TFA=="; - }; - }; - "@smithy/eventstream-codec-2.1.1" = { - name = "_at_smithy_slash_eventstream-codec"; - packageName = "@smithy/eventstream-codec"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.1.1.tgz"; - sha512 = "E8KYBxBIuU4c+zrpR22VsVrOPoEDzk35bQR3E+xm4k6Pa6JqzkDOdMyf9Atac5GPNKHJBdVaQ4JtjdWX2rl/nw=="; - }; - }; - "@smithy/eventstream-serde-browser-2.1.1" = { - name = "_at_smithy_slash_eventstream-serde-browser"; - packageName = "@smithy/eventstream-serde-browser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.1.1.tgz"; - sha512 = "JvEdCmGlZUay5VtlT8/kdR6FlvqTDUiJecMjXsBb0+k1H/qc9ME5n2XKPo8q/MZwEIA1GmGgYMokKGjVvMiDow=="; - }; - }; - "@smithy/eventstream-serde-config-resolver-2.1.1" = { - name = "_at_smithy_slash_eventstream-serde-config-resolver"; - packageName = "@smithy/eventstream-serde-config-resolver"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.1.1.tgz"; - sha512 = "EqNqXYp3+dk//NmW3NAgQr9bEQ7fsu/CcxQmTiq07JlaIcne/CBWpMZETyXm9w5LXkhduBsdXdlMscfDUDn2fA=="; - }; - }; - "@smithy/eventstream-serde-node-2.1.1" = { - name = "_at_smithy_slash_eventstream-serde-node"; - packageName = "@smithy/eventstream-serde-node"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.1.1.tgz"; - sha512 = "LF882q/aFidFNDX7uROAGxq3H0B7rjyPkV6QDn6/KDQ+CG7AFkRccjxRf1xqajq/Pe4bMGGr+VKAaoF6lELIQw=="; - }; - }; - "@smithy/eventstream-serde-universal-2.1.1" = { - name = "_at_smithy_slash_eventstream-serde-universal"; - packageName = "@smithy/eventstream-serde-universal"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.1.1.tgz"; - sha512 = "LR0mMT+XIYTxk4k2fIxEA1BPtW3685QlqufUEUAX1AJcfFfxNDKEvuCRZbO8ntJb10DrIFVJR9vb0MhDCi0sAQ=="; - }; - }; - "@smithy/fetch-http-handler-2.4.1" = { - name = "_at_smithy_slash_fetch-http-handler"; - packageName = "@smithy/fetch-http-handler"; - version = "2.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.4.1.tgz"; - sha512 = "VYGLinPsFqH68lxfRhjQaSkjXM7JysUOJDTNjHBuN/ykyRb2f1gyavN9+VhhPTWCy32L4yZ2fdhpCs/nStEicg=="; - }; - }; - "@smithy/hash-blob-browser-2.1.1" = { - name = "_at_smithy_slash_hash-blob-browser"; - packageName = "@smithy/hash-blob-browser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.1.1.tgz"; - sha512 = "jizu1+2PAUjiGIfRtlPEU8Yo6zn+d78ti/ZHDesdf1SUn2BuZW433JlPoCOLH3dBoEEvTgLvQ8tUGSoTTALA+A=="; - }; - }; - "@smithy/hash-node-2.1.1" = { - name = "_at_smithy_slash_hash-node"; - packageName = "@smithy/hash-node"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.1.1.tgz"; - sha512 = "Qhoq0N8f2OtCnvUpCf+g1vSyhYQrZjhSwvJ9qvR8BUGOtTXiyv2x1OD2e6jVGmlpC4E4ax1USHoyGfV9JFsACg=="; - }; - }; - "@smithy/hash-stream-node-2.1.1" = { - name = "_at_smithy_slash_hash-stream-node"; - packageName = "@smithy/hash-stream-node"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.1.1.tgz"; - sha512 = "VgDaKcfCy0iHcmtAZgZ3Yw9g37Gkn2JsQiMtFQXUh8Wmo3GfNgDwLOtdhJ272pOT7DStzpe9cNr+eV5Au8KfQA=="; - }; - }; - "@smithy/invalid-dependency-2.1.1" = { - name = "_at_smithy_slash_invalid-dependency"; - packageName = "@smithy/invalid-dependency"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.1.1.tgz"; - sha512 = "7WTgnKw+VPg8fxu2v9AlNOQ5yaz6RA54zOVB4f6vQuR0xFKd+RzlCpt0WidYTsye7F+FYDIaS/RnJW4pxjNInw=="; - }; - }; - "@smithy/is-array-buffer-2.1.1" = { - name = "_at_smithy_slash_is-array-buffer"; - packageName = "@smithy/is-array-buffer"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.1.1.tgz"; - sha512 = "xozSQrcUinPpNPNPds4S7z/FakDTh1MZWtRP/2vQtYB/u3HYrX2UXuZs+VhaKBd6Vc7g2XPr2ZtwGBNDN6fNKQ=="; - }; - }; - "@smithy/md5-js-2.1.1" = { - name = "_at_smithy_slash_md5-js"; - packageName = "@smithy/md5-js"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.1.1.tgz"; - sha512 = "L3MbIYBIdLlT+MWTYrdVSv/dow1+6iZ1Ad7xS0OHxTTs17d753ZcpOV4Ro7M7tRAVWML/sg2IAp/zzCb6aAttg=="; - }; - }; - "@smithy/middleware-content-length-2.1.1" = { - name = "_at_smithy_slash_middleware-content-length"; - packageName = "@smithy/middleware-content-length"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.1.1.tgz"; - sha512 = "rSr9ezUl9qMgiJR0UVtVOGEZElMdGFyl8FzWEF5iEKTlcWxGr2wTqGfDwtH3LAB7h+FPkxqv4ZU4cpuCN9Kf/g=="; - }; - }; - "@smithy/middleware-endpoint-2.4.1" = { - name = "_at_smithy_slash_middleware-endpoint"; - packageName = "@smithy/middleware-endpoint"; - version = "2.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.4.1.tgz"; - sha512 = "XPZTb1E2Oav60Ven3n2PFx+rX9EDsU/jSTA8VDamt7FXks67ekjPY/XrmmPDQaFJOTUHJNKjd8+kZxVO5Ael4Q=="; - }; - }; - "@smithy/middleware-retry-2.1.1" = { - name = "_at_smithy_slash_middleware-retry"; - packageName = "@smithy/middleware-retry"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.1.1.tgz"; - sha512 = "eMIHOBTXro6JZ+WWzZWd/8fS8ht5nS5KDQjzhNMHNRcG5FkNTqcKpYhw7TETMYzbLfhO5FYghHy1vqDWM4FLDA=="; - }; - }; - "@smithy/middleware-serde-2.1.1" = { - name = "_at_smithy_slash_middleware-serde"; - packageName = "@smithy/middleware-serde"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.1.1.tgz"; - sha512 = "D8Gq0aQBeE1pxf3cjWVkRr2W54t+cdM2zx78tNrVhqrDykRA7asq8yVJij1u5NDtKzKqzBSPYh7iW0svUKg76g=="; - }; - }; - "@smithy/middleware-stack-2.1.1" = { - name = "_at_smithy_slash_middleware-stack"; - packageName = "@smithy/middleware-stack"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.1.1.tgz"; - sha512 = "KPJhRlhsl8CjgGXK/DoDcrFGfAqoqvuwlbxy+uOO4g2Azn1dhH+GVfC3RAp+6PoL5PWPb+vt6Z23FP+Mr6qeCw=="; - }; - }; - "@smithy/node-config-provider-2.2.1" = { - name = "_at_smithy_slash_node-config-provider"; - packageName = "@smithy/node-config-provider"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.2.1.tgz"; - sha512 = "epzK3x1xNxA9oJgHQ5nz+2j6DsJKdHfieb+YgJ7ATWxzNcB7Hc+Uya2TUck5MicOPhDV8HZImND7ZOecVr+OWg=="; - }; - }; - "@smithy/node-http-handler-2.3.1" = { - name = "_at_smithy_slash_node-http-handler"; - packageName = "@smithy/node-http-handler"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.3.1.tgz"; - sha512 = "gLA8qK2nL9J0Rk/WEZSvgin4AppvuCYRYg61dcUo/uKxvMZsMInL5I5ZdJTogOvdfVug3N2dgI5ffcUfS4S9PA=="; - }; - }; - "@smithy/property-provider-2.1.1" = { - name = "_at_smithy_slash_property-provider"; - packageName = "@smithy/property-provider"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.1.1.tgz"; - sha512 = "FX7JhhD/o5HwSwg6GLK9zxrMUrGnb3PzNBrcthqHKBc3dH0UfgEAU24xnJ8F0uow5mj17UeBEOI6o3CF2k7Mhw=="; - }; - }; - "@smithy/protocol-http-3.1.1" = { - name = "_at_smithy_slash_protocol-http"; - packageName = "@smithy/protocol-http"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.1.1.tgz"; - sha512 = "6ZRTSsaXuSL9++qEwH851hJjUA0OgXdQFCs+VDw4tGH256jQ3TjYY/i34N4vd24RV3nrjNsgd1yhb57uMoKbzQ=="; - }; - }; - "@smithy/querystring-builder-2.1.1" = { - name = "_at_smithy_slash_querystring-builder"; - packageName = "@smithy/querystring-builder"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.1.1.tgz"; - sha512 = "C/ko/CeEa8jdYE4gt6nHO5XDrlSJ3vdCG0ZAc6nD5ZIE7LBp0jCx4qoqp7eoutBu7VrGMXERSRoPqwi1WjCPbg=="; - }; - }; - "@smithy/querystring-parser-2.1.1" = { - name = "_at_smithy_slash_querystring-parser"; - packageName = "@smithy/querystring-parser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.1.1.tgz"; - sha512 = "H4+6jKGVhG1W4CIxfBaSsbm98lOO88tpDWmZLgkJpt8Zkk/+uG0FmmqMuCAc3HNM2ZDV+JbErxr0l5BcuIf/XQ=="; - }; - }; - "@smithy/service-error-classification-2.1.1" = { - name = "_at_smithy_slash_service-error-classification"; - packageName = "@smithy/service-error-classification"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.1.1.tgz"; - sha512 = "txEdZxPUgM1PwGvDvHzqhXisrc5LlRWYCf2yyHfvITWioAKat7srQvpjMAvgzf0t6t7j8yHrryXU9xt7RZqFpw=="; - }; - }; - "@smithy/shared-ini-file-loader-2.3.1" = { - name = "_at_smithy_slash_shared-ini-file-loader"; - packageName = "@smithy/shared-ini-file-loader"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.3.1.tgz"; - sha512 = "2E2kh24igmIznHLB6H05Na4OgIEilRu0oQpYXo3LCNRrawHAcfDKq9004zJs+sAMt2X5AbY87CUCJ7IpqpSgdw=="; - }; - }; - "@smithy/signature-v4-2.1.1" = { - name = "_at_smithy_slash_signature-v4"; - packageName = "@smithy/signature-v4"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.1.1.tgz"; - sha512 = "Hb7xub0NHuvvQD3YwDSdanBmYukoEkhqBjqoxo+bSdC0ryV9cTfgmNjuAQhTPYB6yeU7hTR+sPRiFMlxqv6kmg=="; - }; - }; - "@smithy/smithy-client-2.3.1" = { - name = "_at_smithy_slash_smithy-client"; - packageName = "@smithy/smithy-client"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.3.1.tgz"; - sha512 = "YsTdU8xVD64r2pLEwmltrNvZV6XIAC50LN6ivDopdt+YiF/jGH6PY9zUOu0CXD/d8GMB8gbhnpPsdrjAXHS9QA=="; - }; - }; - "@smithy/types-2.9.1" = { - name = "_at_smithy_slash_types"; - packageName = "@smithy/types"; - version = "2.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/types/-/types-2.9.1.tgz"; - sha512 = "vjXlKNXyprDYDuJ7UW5iobdmyDm6g8dDG+BFUncAg/3XJaN45Gy5RWWWUVgrzIK7S4R1KWgIX5LeJcfvSI24bw=="; - }; - }; - "@smithy/url-parser-2.1.1" = { - name = "_at_smithy_slash_url-parser"; - packageName = "@smithy/url-parser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.1.1.tgz"; - sha512 = "qC9Bv8f/vvFIEkHsiNrUKYNl8uKQnn4BdhXl7VzQRP774AwIjiSMMwkbT+L7Fk8W8rzYVifzJNYxv1HwvfBo3Q=="; - }; - }; - "@smithy/util-base64-2.1.1" = { - name = "_at_smithy_slash_util-base64"; - packageName = "@smithy/util-base64"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.1.1.tgz"; - sha512 = "UfHVpY7qfF/MrgndI5PexSKVTxSZIdz9InghTFa49QOvuu9I52zLPLUHXvHpNuMb1iD2vmc6R+zbv/bdMipR/g=="; - }; - }; - "@smithy/util-body-length-browser-2.1.1" = { - name = "_at_smithy_slash_util-body-length-browser"; - packageName = "@smithy/util-body-length-browser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.1.1.tgz"; - sha512 = "ekOGBLvs1VS2d1zM2ER4JEeBWAvIOUKeaFch29UjjJsxmZ/f0L3K3x0dEETgh3Q9bkZNHgT+rkdl/J/VUqSRag=="; - }; - }; - "@smithy/util-body-length-node-2.2.1" = { - name = "_at_smithy_slash_util-body-length-node"; - packageName = "@smithy/util-body-length-node"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.2.1.tgz"; - sha512 = "/ggJG+ta3IDtpNVq4ktmEUtOkH1LW64RHB5B0hcr5ZaWBmo96UX2cIOVbjCqqDickTXqBWZ4ZO0APuaPrD7Abg=="; - }; - }; - "@smithy/util-buffer-from-2.1.1" = { - name = "_at_smithy_slash_util-buffer-from"; - packageName = "@smithy/util-buffer-from"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.1.1.tgz"; - sha512 = "clhNjbyfqIv9Md2Mg6FffGVrJxw7bgK7s3Iax36xnfVj6cg0fUG7I4RH0XgXJF8bxi+saY5HR21g2UPKSxVCXg=="; - }; - }; - "@smithy/util-config-provider-2.2.1" = { - name = "_at_smithy_slash_util-config-provider"; - packageName = "@smithy/util-config-provider"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.2.1.tgz"; - sha512 = "50VL/tx9oYYcjJn/qKqNy7sCtpD0+s8XEBamIFo4mFFTclKMNp+rsnymD796uybjiIquB7VCB/DeafduL0y2kw=="; - }; - }; - "@smithy/util-defaults-mode-browser-2.1.1" = { - name = "_at_smithy_slash_util-defaults-mode-browser"; - packageName = "@smithy/util-defaults-mode-browser"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.1.1.tgz"; - sha512 = "lqLz/9aWRO6mosnXkArtRuQqqZBhNpgI65YDpww4rVQBuUT7qzKbDLG5AmnQTCiU4rOquaZO/Kt0J7q9Uic7MA=="; - }; - }; - "@smithy/util-defaults-mode-node-2.2.0" = { - name = "_at_smithy_slash_util-defaults-mode-node"; - packageName = "@smithy/util-defaults-mode-node"; version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.2.0.tgz"; - sha512 = "iFJp/N4EtkanFpBUtSrrIbtOIBf69KNuve03ic1afhJ9/korDxdM0c6cCH4Ehj/smI9pDCfVv+bqT3xZjF2WaA=="; + url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.2.0.tgz"; + sha512 = "wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw=="; }; }; - "@smithy/util-endpoints-1.1.1" = { + "@smithy/chunked-blob-reader-2.2.0" = { + name = "_at_smithy_slash_chunked-blob-reader"; + packageName = "@smithy/chunked-blob-reader"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.2.0.tgz"; + sha512 = "3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ=="; + }; + }; + "@smithy/chunked-blob-reader-native-2.2.0" = { + name = "_at_smithy_slash_chunked-blob-reader-native"; + packageName = "@smithy/chunked-blob-reader-native"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz"; + sha512 = "VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ=="; + }; + }; + "@smithy/config-resolver-2.2.0" = { + name = "_at_smithy_slash_config-resolver"; + packageName = "@smithy/config-resolver"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.2.0.tgz"; + sha512 = "fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA=="; + }; + }; + "@smithy/core-1.4.0" = { + name = "_at_smithy_slash_core"; + packageName = "@smithy/core"; + version = "1.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/core/-/core-1.4.0.tgz"; + sha512 = "uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw=="; + }; + }; + "@smithy/credential-provider-imds-2.3.0" = { + name = "_at_smithy_slash_credential-provider-imds"; + packageName = "@smithy/credential-provider-imds"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.3.0.tgz"; + sha512 = "BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w=="; + }; + }; + "@smithy/eventstream-codec-2.2.0" = { + name = "_at_smithy_slash_eventstream-codec"; + packageName = "@smithy/eventstream-codec"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz"; + sha512 = "8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw=="; + }; + }; + "@smithy/eventstream-serde-browser-2.2.0" = { + name = "_at_smithy_slash_eventstream-serde-browser"; + packageName = "@smithy/eventstream-serde-browser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz"; + sha512 = "UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw=="; + }; + }; + "@smithy/eventstream-serde-config-resolver-2.2.0" = { + name = "_at_smithy_slash_eventstream-serde-config-resolver"; + packageName = "@smithy/eventstream-serde-config-resolver"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz"; + sha512 = "RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA=="; + }; + }; + "@smithy/eventstream-serde-node-2.2.0" = { + name = "_at_smithy_slash_eventstream-serde-node"; + packageName = "@smithy/eventstream-serde-node"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz"; + sha512 = "zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA=="; + }; + }; + "@smithy/eventstream-serde-universal-2.2.0" = { + name = "_at_smithy_slash_eventstream-serde-universal"; + packageName = "@smithy/eventstream-serde-universal"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz"; + sha512 = "pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA=="; + }; + }; + "@smithy/fetch-http-handler-2.5.0" = { + name = "_at_smithy_slash_fetch-http-handler"; + packageName = "@smithy/fetch-http-handler"; + version = "2.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz"; + sha512 = "BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw=="; + }; + }; + "@smithy/hash-blob-browser-2.2.0" = { + name = "_at_smithy_slash_hash-blob-browser"; + packageName = "@smithy/hash-blob-browser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz"; + sha512 = "SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg=="; + }; + }; + "@smithy/hash-node-2.2.0" = { + name = "_at_smithy_slash_hash-node"; + packageName = "@smithy/hash-node"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.2.0.tgz"; + sha512 = "zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g=="; + }; + }; + "@smithy/hash-stream-node-2.2.0" = { + name = "_at_smithy_slash_hash-stream-node"; + packageName = "@smithy/hash-stream-node"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz"; + sha512 = "aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ=="; + }; + }; + "@smithy/invalid-dependency-2.2.0" = { + name = "_at_smithy_slash_invalid-dependency"; + packageName = "@smithy/invalid-dependency"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz"; + sha512 = "nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q=="; + }; + }; + "@smithy/is-array-buffer-2.2.0" = { + name = "_at_smithy_slash_is-array-buffer"; + packageName = "@smithy/is-array-buffer"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz"; + sha512 = "GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA=="; + }; + }; + "@smithy/md5-js-2.2.0" = { + name = "_at_smithy_slash_md5-js"; + packageName = "@smithy/md5-js"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.2.0.tgz"; + sha512 = "M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ=="; + }; + }; + "@smithy/middleware-content-length-2.2.0" = { + name = "_at_smithy_slash_middleware-content-length"; + packageName = "@smithy/middleware-content-length"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz"; + sha512 = "5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ=="; + }; + }; + "@smithy/middleware-endpoint-2.5.0" = { + name = "_at_smithy_slash_middleware-endpoint"; + packageName = "@smithy/middleware-endpoint"; + version = "2.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.0.tgz"; + sha512 = "OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA=="; + }; + }; + "@smithy/middleware-retry-2.2.0" = { + name = "_at_smithy_slash_middleware-retry"; + packageName = "@smithy/middleware-retry"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.2.0.tgz"; + sha512 = "PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA=="; + }; + }; + "@smithy/middleware-serde-2.3.0" = { + name = "_at_smithy_slash_middleware-serde"; + packageName = "@smithy/middleware-serde"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz"; + sha512 = "sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q=="; + }; + }; + "@smithy/middleware-stack-2.2.0" = { + name = "_at_smithy_slash_middleware-stack"; + packageName = "@smithy/middleware-stack"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz"; + sha512 = "Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA=="; + }; + }; + "@smithy/node-config-provider-2.3.0" = { + name = "_at_smithy_slash_node-config-provider"; + packageName = "@smithy/node-config-provider"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.3.0.tgz"; + sha512 = "0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg=="; + }; + }; + "@smithy/node-http-handler-2.5.0" = { + name = "_at_smithy_slash_node-http-handler"; + packageName = "@smithy/node-http-handler"; + version = "2.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz"; + sha512 = "mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA=="; + }; + }; + "@smithy/property-provider-2.2.0" = { + name = "_at_smithy_slash_property-provider"; + packageName = "@smithy/property-provider"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.2.0.tgz"; + sha512 = "+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg=="; + }; + }; + "@smithy/protocol-http-3.3.0" = { + name = "_at_smithy_slash_protocol-http"; + packageName = "@smithy/protocol-http"; + version = "3.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.3.0.tgz"; + sha512 = "Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ=="; + }; + }; + "@smithy/querystring-builder-2.2.0" = { + name = "_at_smithy_slash_querystring-builder"; + packageName = "@smithy/querystring-builder"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz"; + sha512 = "L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A=="; + }; + }; + "@smithy/querystring-parser-2.2.0" = { + name = "_at_smithy_slash_querystring-parser"; + packageName = "@smithy/querystring-parser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.2.0.tgz"; + sha512 = "BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA=="; + }; + }; + "@smithy/service-error-classification-2.1.5" = { + name = "_at_smithy_slash_service-error-classification"; + packageName = "@smithy/service-error-classification"; + version = "2.1.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz"; + sha512 = "uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ=="; + }; + }; + "@smithy/shared-ini-file-loader-2.4.0" = { + name = "_at_smithy_slash_shared-ini-file-loader"; + packageName = "@smithy/shared-ini-file-loader"; + version = "2.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.4.0.tgz"; + sha512 = "WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA=="; + }; + }; + "@smithy/signature-v4-2.2.0" = { + name = "_at_smithy_slash_signature-v4"; + packageName = "@smithy/signature-v4"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.2.0.tgz"; + sha512 = "+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg=="; + }; + }; + "@smithy/smithy-client-2.5.0" = { + name = "_at_smithy_slash_smithy-client"; + packageName = "@smithy/smithy-client"; + version = "2.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.5.0.tgz"; + sha512 = "DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g=="; + }; + }; + "@smithy/types-2.12.0" = { + name = "_at_smithy_slash_types"; + packageName = "@smithy/types"; + version = "2.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/types/-/types-2.12.0.tgz"; + sha512 = "QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw=="; + }; + }; + "@smithy/url-parser-2.2.0" = { + name = "_at_smithy_slash_url-parser"; + packageName = "@smithy/url-parser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.2.0.tgz"; + sha512 = "hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ=="; + }; + }; + "@smithy/util-base64-2.3.0" = { + name = "_at_smithy_slash_util-base64"; + packageName = "@smithy/util-base64"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.3.0.tgz"; + sha512 = "s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw=="; + }; + }; + "@smithy/util-body-length-browser-2.2.0" = { + name = "_at_smithy_slash_util-body-length-browser"; + packageName = "@smithy/util-body-length-browser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.2.0.tgz"; + sha512 = "dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w=="; + }; + }; + "@smithy/util-body-length-node-2.3.0" = { + name = "_at_smithy_slash_util-body-length-node"; + packageName = "@smithy/util-body-length-node"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.3.0.tgz"; + sha512 = "ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw=="; + }; + }; + "@smithy/util-buffer-from-2.2.0" = { + name = "_at_smithy_slash_util-buffer-from"; + packageName = "@smithy/util-buffer-from"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz"; + sha512 = "IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA=="; + }; + }; + "@smithy/util-config-provider-2.3.0" = { + name = "_at_smithy_slash_util-config-provider"; + packageName = "@smithy/util-config-provider"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.3.0.tgz"; + sha512 = "HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ=="; + }; + }; + "@smithy/util-defaults-mode-browser-2.2.0" = { + name = "_at_smithy_slash_util-defaults-mode-browser"; + packageName = "@smithy/util-defaults-mode-browser"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.2.0.tgz"; + sha512 = "2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g=="; + }; + }; + "@smithy/util-defaults-mode-node-2.3.0" = { + name = "_at_smithy_slash_util-defaults-mode-node"; + packageName = "@smithy/util-defaults-mode-node"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.0.tgz"; + sha512 = "hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw=="; + }; + }; + "@smithy/util-endpoints-1.2.0" = { name = "_at_smithy_slash_util-endpoints"; packageName = "@smithy/util-endpoints"; - version = "1.1.1"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.1.1.tgz"; - sha512 = "sI4d9rjoaekSGEtq3xSb2nMjHMx8QXcz2cexnVyRWsy4yQ9z3kbDpX+7fN0jnbdOp0b3KSTZJZ2Yb92JWSanLw=="; + url = "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz"; + sha512 = "BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ=="; }; }; - "@smithy/util-hex-encoding-2.1.1" = { + "@smithy/util-hex-encoding-2.2.0" = { name = "_at_smithy_slash_util-hex-encoding"; packageName = "@smithy/util-hex-encoding"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.1.1.tgz"; - sha512 = "3UNdP2pkYUUBGEXzQI9ODTDK+Tcu1BlCyDBaRHwyxhA+8xLP8agEKQq4MGmpjqb4VQAjq9TwlCQX0kP6XDKYLg=="; + url = "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz"; + sha512 = "7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ=="; }; }; - "@smithy/util-middleware-2.1.1" = { + "@smithy/util-middleware-2.2.0" = { name = "_at_smithy_slash_util-middleware"; packageName = "@smithy/util-middleware"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.1.1.tgz"; - sha512 = "mKNrk8oz5zqkNcbcgAAepeJbmfUW6ogrT2Z2gDbIUzVzNAHKJQTYmH9jcy0jbWb+m7ubrvXKb6uMjkSgAqqsFA=="; + url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.2.0.tgz"; + sha512 = "L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw=="; }; }; - "@smithy/util-retry-2.1.1" = { + "@smithy/util-retry-2.2.0" = { name = "_at_smithy_slash_util-retry"; packageName = "@smithy/util-retry"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.1.1.tgz"; - sha512 = "Mg+xxWPTeSPrthpC5WAamJ6PW4Kbo01Fm7lWM1jmGRvmrRdsd3192Gz2fBXAMURyXpaNxyZf6Hr/nQ4q70oVEA=="; + url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.2.0.tgz"; + sha512 = "q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g=="; }; }; - "@smithy/util-stream-2.1.1" = { + "@smithy/util-stream-2.2.0" = { name = "_at_smithy_slash_util-stream"; packageName = "@smithy/util-stream"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.1.1.tgz"; - sha512 = "J7SMIpUYvU4DQN55KmBtvaMc7NM3CZ2iWICdcgaovtLzseVhAqFRYqloT3mh0esrFw+3VEK6nQFteFsTqZSECQ=="; + url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.2.0.tgz"; + sha512 = "17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA=="; }; }; - "@smithy/util-uri-escape-2.1.1" = { + "@smithy/util-uri-escape-2.2.0" = { name = "_at_smithy_slash_util-uri-escape"; packageName = "@smithy/util-uri-escape"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.1.1.tgz"; - sha512 = "saVzI1h6iRBUVSqtnlOnc9ssU09ypo7n+shdQ8hBTZno/9rZ3AuRYvoHInV57VF7Qn7B+pFJG7qTzFiHxWlWBw=="; + url = "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz"; + sha512 = "jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA=="; }; }; - "@smithy/util-utf8-2.1.1" = { + "@smithy/util-utf8-2.3.0" = { name = "_at_smithy_slash_util-utf8"; packageName = "@smithy/util-utf8"; - version = "2.1.1"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.1.1.tgz"; - sha512 = "BqTpzYEcUMDwAKr7/mVRUtHDhs6ZoXDi9NypMvMfOr/+u1NW7JgqodPDECiiLboEm6bobcPcECxzjtQh865e9A=="; + url = "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz"; + sha512 = "R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A=="; }; }; - "@smithy/util-waiter-2.1.1" = { + "@smithy/util-waiter-2.2.0" = { name = "_at_smithy_slash_util-waiter"; packageName = "@smithy/util-waiter"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.1.1.tgz"; - sha512 = "kYy6BLJJNif+uqNENtJqWdXcpqo1LS+nj1AfXcDhOpqpSHJSAkVySLyZV9fkmuVO21lzGoxjvd1imGGJHph/IA=="; + url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.2.0.tgz"; + sha512 = "IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA=="; }; }; "@socket.io/component-emitter-3.1.0" = { @@ -10471,40 +10408,40 @@ let sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; }; }; - "@swc-node/core-1.12.0" = { + "@swc-node/core-1.13.0" = { name = "_at_swc-node_slash_core"; packageName = "@swc-node/core"; - version = "1.12.0"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/core/-/core-1.12.0.tgz"; - sha512 = "AYrEmPL2BT46wbikHwSMR5IK98SelBEYH+ycjalUxJ5xYjEupjF8Fd+NkadKoZAzf5zDtysFKd5R1PY4QBHIiw=="; + url = "https://registry.npmjs.org/@swc-node/core/-/core-1.13.0.tgz"; + sha512 = "lFPD4nmy4ifAOVMChFjwlpXN5KQXvegqeyuzz1KQz42q1lf+cL3Qux1/GteGuZjh8HC+Rj1RdNrHpE/MCfJSTw=="; }; }; - "@swc-node/register-1.8.0" = { + "@swc-node/register-1.9.0" = { name = "_at_swc-node_slash_register"; packageName = "@swc-node/register"; - version = "1.8.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/register/-/register-1.8.0.tgz"; - sha512 = "8K3589HoBSmVmrEVrtr4K5sWEithpGDzcFGic81OW0A9sZY38IV5EGRODQWCk0SBDyLhaF+pid120vJAtsHo1A=="; + url = "https://registry.npmjs.org/@swc-node/register/-/register-1.9.0.tgz"; + sha512 = "i0iYInD4q5v3xQC6bKvs0QtfUxu197CU5qKALmpxEqTYs7sIhQ7KFLe3kP+eAR4gRkJTvAgjQgrokXLN2jZrOw=="; }; }; - "@swc-node/sourcemap-support-0.4.0" = { + "@swc-node/sourcemap-support-0.5.0" = { name = "_at_swc-node_slash_sourcemap-support"; packageName = "@swc-node/sourcemap-support"; - version = "0.4.0"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.4.0.tgz"; - sha512 = "weuRmYTO+4yOtHtPZHXlPdA1dJJJp3QOoZAFZ6uZidu992F2X5v1fQdnb26xs1o3Ex/e2sYhRyY5R6NGNuoATQ=="; + url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.5.0.tgz"; + sha512 = "fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q=="; }; }; - "@swc/core-1.4.1" = { + "@swc/core-1.4.8" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.4.1"; + version = "1.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.4.1.tgz"; - sha512 = "3y+Y8js+e7BbM16iND+6Rcs3jdiL28q3iVtYsCviYSSpP2uUVKkp5sJnCY4pg8AaVvyN7CGQHO7gLEZQ5ByozQ=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.4.8.tgz"; + sha512 = "uY2RSJcFPgNOEg12RQZL197LZX+MunGiKxsbxmh22VfVxrOYGRvh4mPANFlrD1yb38CgmW1wI6YgIi8LkIwmWg=="; }; }; "@swc/counter-0.1.3" = { @@ -10516,31 +10453,31 @@ let sha512 = "e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="; }; }; - "@swc/helpers-0.5.6" = { + "@swc/helpers-0.5.7" = { name = "_at_swc_slash_helpers"; packageName = "@swc/helpers"; - version = "0.5.6"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.6.tgz"; - sha512 = "aYX01Ke9hunpoCexYAgQucEpARGQ5w/cqHFrIR+e9gdKb1QWTsVJuTJ2ozQzIAxLyRQe/m+2RqzkyOOGiMKRQA=="; + url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.7.tgz"; + sha512 = "BVvNZhx362+l2tSwSuyEUV4h7+jk9raNdoTSdLfwTshXJSaGmYKluGRJznziCI3KX02Z19DdsQrdfrpXAU3Hfg=="; }; }; - "@swc/types-0.1.5" = { + "@swc/types-0.1.6" = { name = "_at_swc_slash_types"; packageName = "@swc/types"; - version = "0.1.5"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz"; - sha512 = "myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw=="; + url = "https://registry.npmjs.org/@swc/types/-/types-0.1.6.tgz"; + sha512 = "/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg=="; }; }; - "@swc/wasm-1.4.1" = { + "@swc/wasm-1.4.8" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.4.1"; + version = "1.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.4.1.tgz"; - sha512 = "T9wbyNM9pZNxE5aJR+dZAMhKVKSElw9Clz73pjFEV2ddB5DHmi4ndn1X3RwCF8JBryVkoPIsZ/MQXty+LSbyQw=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.4.8.tgz"; + sha512 = "HoK4GiT0jh8wAtSZuhpnqMy/y0IyuAVdKPQhHniNsfH+gZYqL6sdHYmeE+KnLjn9UuBt5AJWiAPbcuwZAv3xsg=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -10579,22 +10516,22 @@ let sha512 = "QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw=="; }; }; - "@tanstack/react-virtual-3.0.4" = { + "@tanstack/react-virtual-3.2.0" = { name = "_at_tanstack_slash_react-virtual"; packageName = "@tanstack/react-virtual"; - version = "3.0.4"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.0.4.tgz"; - sha512 = "tiqKW/e2MJVCr7/pRUXulpkyxllaOclkHNfhKTo4pmHjJIqnhMfwIjc1Q1R0Un3PI3kQywywu/791c8z9u0qeA=="; + url = "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.2.0.tgz"; + sha512 = "OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg=="; }; }; - "@tanstack/virtual-core-3.0.0" = { + "@tanstack/virtual-core-3.2.0" = { name = "_at_tanstack_slash_virtual-core"; packageName = "@tanstack/virtual-core"; - version = "3.0.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.0.0.tgz"; - sha512 = "SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg=="; + url = "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.2.0.tgz"; + sha512 = "P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ=="; }; }; "@taplo/core-0.1.1" = { @@ -10633,13 +10570,13 @@ let sha512 = "qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ=="; }; }; - "@textlint/ast-node-types-14.0.3" = { + "@textlint/ast-node-types-14.0.4" = { name = "_at_textlint_slash_ast-node-types"; packageName = "@textlint/ast-node-types"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.3.tgz"; - sha512 = "umIMn3yy2arl9QHH2fEhCxVgbLbQFC8NpzYbAzOQ4Y5m+p0RQaKClHtHXnDqsXHp6WKAVAXxcuFolW2SZMnhDQ=="; + url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz"; + sha512 = "O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA=="; }; }; "@textlint/ast-node-types-4.4.3" = { @@ -10651,139 +10588,139 @@ let sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A=="; }; }; - "@textlint/ast-tester-14.0.3" = { + "@textlint/ast-tester-14.0.4" = { name = "_at_textlint_slash_ast-tester"; packageName = "@textlint/ast-tester"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.0.3.tgz"; - sha512 = "TNArbA0a/9nxJadZDsnfV6I4kB6C+Vb6BmFbDxBglS/NWtFqI9SYPV2tRhGBnTHFyTl5bgyzrAyb2FNSxbrSuQ=="; + url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-14.0.4.tgz"; + sha512 = "SQ/2DjxVlDVeCEjVlD8c8R2Sl3VGDZEx8o9+i8bV8NUdY8qsSHbo29/BfiUZf/uaX6eeNpZsurtstJ25hbVrsQ=="; }; }; - "@textlint/ast-traverse-14.0.3" = { + "@textlint/ast-traverse-14.0.4" = { name = "_at_textlint_slash_ast-traverse"; packageName = "@textlint/ast-traverse"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.0.3.tgz"; - sha512 = "rZ0PwLWuLlAOkDp/9wGsHa1jZMjNdJ3CpZMPTNnqEppaxb3o4OKFbjt2Hh87E215B84Cz8KaeKFT/QEn+YiRjA=="; + url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-14.0.4.tgz"; + sha512 = "bzFC7UJ2FvhjH5ekXGQ0i9vjK+xzMT69gHBsYVEl+TtbplnH2YY3+sbw6B1j3LocJuo6xngZ2YWXXqmQlKgzLg=="; }; }; - "@textlint/config-loader-14.0.3" = { + "@textlint/config-loader-14.0.4" = { name = "_at_textlint_slash_config-loader"; packageName = "@textlint/config-loader"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-14.0.3.tgz"; - sha512 = "uUDVKEkIcq7VDljM6RWIpz76TvHQfOjXh+CFgZ/oVScSsPuvqR3TeBRLm8tgyho4MKmdTtHrhmuZj5DQrTOxig=="; + url = "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-14.0.4.tgz"; + sha512 = "qgAvZ1RcTq58+yNbzhaKHsb52yHRxt8SRpG7S4WFjYj2DEStjIxzssSQvlZtEBjSUQ7RZNJ93d+pL0YK8MIVoA=="; }; }; - "@textlint/feature-flag-14.0.3" = { + "@textlint/feature-flag-14.0.4" = { name = "_at_textlint_slash_feature-flag"; packageName = "@textlint/feature-flag"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.0.3.tgz"; - sha512 = "qDQr8qA3glb6WF0cgmhG2OST5zTY5ft6OJ/J6smDoKse/1cnPlFwbvDLvrlxwnmWDyujvqb3p9Kw7GDToTIxYg=="; + url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-14.0.4.tgz"; + sha512 = "1FMZqnjOA4KVpt/aloI1fNs46P0rUeHWcCRKl33/08wRHHMdcbaN4EsHkq7UfriuSfFgUuiyeo0bPjCpv15hhQ=="; }; }; - "@textlint/fixer-formatter-14.0.3" = { + "@textlint/fixer-formatter-14.0.4" = { name = "_at_textlint_slash_fixer-formatter"; packageName = "@textlint/fixer-formatter"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-14.0.3.tgz"; - sha512 = "Uk8CYLRye7KglYa1y8kW1BikA7kJ6bn9xK6FX93iwcL5yz9vOUUHYz9IINcOdg1NYfST4KaDbnBNKGfeQqr52Q=="; + url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-14.0.4.tgz"; + sha512 = "HkMxzGPo/pgA9UvddqJG6qm62ICNgil3AmBVp0QpOv5uTV1u9gCSQ5jOdb/aOJBw7W8fd+CcnEsEBYn9HT8e6A=="; }; }; - "@textlint/kernel-14.0.3" = { + "@textlint/kernel-14.0.4" = { name = "_at_textlint_slash_kernel"; packageName = "@textlint/kernel"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.0.3.tgz"; - sha512 = "RRyY7oL6CD5JwD3cgl8KvSd80rbnJKSUXTsn2ZAtLAjqJR+io0tVZLkQwij7diXaMjCnoJQfmnbIJf8C29/G5Q=="; + url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-14.0.4.tgz"; + sha512 = "6WNoEBZ4lYTYOGK4EEEdjp+kgxSSC1nIFwN6tY9XGVkd4OACzDNothVTvJBwaX73FWFG5zoSjnNQxBDPUHMc8g=="; }; }; - "@textlint/linter-formatter-14.0.3" = { + "@textlint/linter-formatter-14.0.4" = { name = "_at_textlint_slash_linter-formatter"; packageName = "@textlint/linter-formatter"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-14.0.3.tgz"; - sha512 = "CSwrE7LH/0KeQPP6/Nar5sakI+c1ToaYc14MwjWKCljK9RqkZCBFZqEWdy7LhXeIL5Pwf2BhsdGOImx14NpyHw=="; + url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-14.0.4.tgz"; + sha512 = "EQZJPydExEIvBARkdmkoGsKWie1ekNAiqerQgIqwPb3SqOzKnlaDGrZOMy40HufTcacZrrvlbByDyai6m30+Lw=="; }; }; - "@textlint/markdown-to-ast-14.0.3" = { + "@textlint/markdown-to-ast-14.0.4" = { name = "_at_textlint_slash_markdown-to-ast"; packageName = "@textlint/markdown-to-ast"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.3.tgz"; - sha512 = "+CkWt9a9pd1+Rl37dqiiEGQ2f2faLX/vd7qiV+OTfkKUyHQ0HkOLK7sfbPpTx5ee5+5fKVMTStTTHrFZz5mlBw=="; + url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.4.tgz"; + sha512 = "D9UUxnRJoNROVjOa9bhoQPDdRvlvS/xP3MJo0Kl6b/mJFi0dOlW31WUfpOFjZkp4uXkL+oo0ji7AMnmV6JORsQ=="; }; }; - "@textlint/module-interop-14.0.3" = { + "@textlint/module-interop-14.0.4" = { name = "_at_textlint_slash_module-interop"; packageName = "@textlint/module-interop"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-14.0.3.tgz"; - sha512 = "76K6y4wNCZH3+BGziJm6iGPbKsBtb214332EgdXDMNsYah51LPT9YrXuOI1ROyxvfVoztJMH0MDZdtdY/t7cig=="; + url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-14.0.4.tgz"; + sha512 = "okv52pRSQ1aeC8rim8qp2D2Fmj/oKDYGY2itdeZhj9E/vdkU9/r7OpdcxyuNiuqLEd/sWw03EAwt3S6mlfNIOw=="; }; }; - "@textlint/source-code-fixer-14.0.3" = { + "@textlint/source-code-fixer-14.0.4" = { name = "_at_textlint_slash_source-code-fixer"; packageName = "@textlint/source-code-fixer"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.0.3.tgz"; - sha512 = "/htnQzs+8qMIiZWQEpFF4+PgxDhi6flP+qIdoL8l5Q/jbIIZbGgOz9pdEFwnwOur/ddqFfuOKy5GtwZDoF+gOg=="; + url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-14.0.4.tgz"; + sha512 = "gIUeWjF0WdSwgCUhW310hKJsWOyRyFe6PGaqqCk7Mhc+vVcePfmC8mmmhVgeuyys/Dhe+0iaP4M1eJf4COaIQw=="; }; }; - "@textlint/text-to-ast-14.0.3" = { + "@textlint/text-to-ast-14.0.4" = { name = "_at_textlint_slash_text-to-ast"; packageName = "@textlint/text-to-ast"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-14.0.3.tgz"; - sha512 = "NrlZQ5RO3O6aSqDMzLzGWhKP5Rx2UlbGulVgO2sQ+59837+32cHjzrV+J1nBVVcsfsv+GOFperfo5C/Rn+F7SA=="; + url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-14.0.4.tgz"; + sha512 = "r2KSnKzhsCIvX72yX+7sEuu9nDQIS4+xRsSffuXYB0etRQUI6VTTsE6Ibd6yMbEsMDUF4BfKWzNGn+bQ8U7oHA=="; }; }; - "@textlint/textlint-plugin-markdown-14.0.3" = { + "@textlint/textlint-plugin-markdown-14.0.4" = { name = "_at_textlint_slash_textlint-plugin-markdown"; packageName = "@textlint/textlint-plugin-markdown"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.3.tgz"; - sha512 = "1zwiwmayFRIElGdeCUXCJjlP+mpZDCCtcsNqB+07i/xi3UlSFM3NGRUzJ5CYQbjJ7Nrb3kmA5FKxB7xTMdZH4w=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.4.tgz"; + sha512 = "mqQieI9U5GTRTjkK4Cj57Axl6fVloaA8g0+sCsp3TjmNWyEgGBvt3aw+FIUiFTvheg9L3RGe/aXgvp5ORADOAA=="; }; }; - "@textlint/textlint-plugin-text-14.0.3" = { + "@textlint/textlint-plugin-text-14.0.4" = { name = "_at_textlint_slash_textlint-plugin-text"; packageName = "@textlint/textlint-plugin-text"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.3.tgz"; - sha512 = "dDRkNAoOH/HHxpC5Ghn89L90Ax5GQ4CIwCiV91qmjYUaCH710wkqRppBCEIHnS+1E/5wq1ukhTbGJjvxe7rP4w=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.4.tgz"; + sha512 = "HwTQyOcwDRrPPHyD8lwSMyGR1ETasR2WK6BLO0PRbowRe6K/K4b9OBBd6+nJcRFa+9Nd6p7nxPzA2WxDi1X/Zg=="; }; }; - "@textlint/types-14.0.3" = { + "@textlint/types-14.0.4" = { name = "_at_textlint_slash_types"; packageName = "@textlint/types"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/types/-/types-14.0.3.tgz"; - sha512 = "Ft08kK3BNxbuRYb0BOEjSr9CkJyHIYBiUfWvaNcqhXESQLhplb5EfynkXw0uAerzhx9CxkdC2FcOFU+HIcuYRg=="; + url = "https://registry.npmjs.org/@textlint/types/-/types-14.0.4.tgz"; + sha512 = "SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg=="; }; }; - "@textlint/utils-14.0.3" = { + "@textlint/utils-14.0.4" = { name = "_at_textlint_slash_utils"; packageName = "@textlint/utils"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/utils/-/utils-14.0.3.tgz"; - sha512 = "Rt7KFrqPpLmpTz3ftTbA8A4kUABwW8CuvgbAAOL/XYpejnQeGPmVfVF3b3AvDtD5jYjp4rPkXHGHDPJTj+lYwA=="; + url = "https://registry.npmjs.org/@textlint/utils/-/utils-14.0.4.tgz"; + sha512 = "/ThtVZCB/vB2e8+MnKquCFNO2cKXCPEGxFlkdvJ5g9q9ODpVyFcf2ogYoIlvR7cNotvq67zVjENS7dsGDNFEmw=="; }; }; "@tinyhttp/accepts-2.2.1" = { @@ -10984,6 +10921,15 @@ let sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="; }; }; + "@tootallnate/quickjs-emscripten-0.23.0" = { + name = "_at_tootallnate_slash_quickjs-emscripten"; + packageName = "@tootallnate/quickjs-emscripten"; + version = "0.23.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz"; + sha512 = "C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="; + }; + }; "@trivago/prettier-plugin-sort-imports-4.2.1" = { name = "_at_trivago_slash_prettier-plugin-sort-imports"; packageName = "@trivago/prettier-plugin-sort-imports"; @@ -11272,6 +11218,15 @@ let sha512 = "n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw=="; }; }; + "@types/conventional-commits-parser-5.0.0" = { + name = "_at_types_slash_conventional-commits-parser"; + packageName = "@types/conventional-commits-parser"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz"; + sha512 = "loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ=="; + }; + }; "@types/cookie-0.4.1" = { name = "_at_types_slash_cookie"; packageName = "@types/cookie"; @@ -11371,13 +11326,13 @@ let sha512 = "qJ7LIFp06h1QE1aVxbVd+zJP2wdaugYXYfd6JxsyRMrYHaxb6itXPogW2tz+ylUJ1n1b+JF1PHyYCfYHm0dvUg=="; }; }; - "@types/eslint-8.56.2" = { + "@types/eslint-8.56.5" = { name = "_at_types_slash_eslint"; packageName = "@types/eslint"; - version = "8.56.2"; + version = "8.56.5"; src = fetchurl { - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz"; - sha512 = "uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw=="; + url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.5.tgz"; + sha512 = "u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw=="; }; }; "@types/eslint-scope-3.7.7" = { @@ -11398,13 +11353,13 @@ let sha512 = "/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw=="; }; }; - "@types/estree-jsx-1.0.4" = { + "@types/estree-jsx-1.0.5" = { name = "_at_types_slash_estree-jsx"; packageName = "@types/estree-jsx"; - version = "1.0.4"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.4.tgz"; - sha512 = "5idy3hvI9lAMqsyilBM+N+boaCf1MgoefbDxN6KEO5aK17TOHwFAYT9sjxzeKAiIWRUBgLxmZ9mPcnzZXtTcRQ=="; + url = "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz"; + sha512 = "52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg=="; }; }; "@types/express-4.17.14" = { @@ -11632,13 +11587,13 @@ let sha512 = "yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw=="; }; }; - "@types/lodash-4.14.202" = { + "@types/lodash-4.17.0" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.202"; + version = "4.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz"; - sha512 = "OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz"; + sha512 = "t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA=="; }; }; "@types/long-4.0.2" = { @@ -11821,13 +11776,13 @@ let sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ=="; }; }; - "@types/node-16.18.82" = { + "@types/node-16.18.90" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.82"; + version = "16.18.90"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.82.tgz"; - sha512 = "pcDZtkx9z8XYV+ius2P3Ot2VVrcYOfXffBQUBuiszrlUzKSmoDYqo+mV+IoL8iIiIjjtOMvNSmH1hwJ+Q+f96Q=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.18.90.tgz"; + sha512 = "ofx8kJGTumXmOfYHrJckfdunEiEoq6Aa8x3JKVtGS25z/DTV/fUqIolnHPssDs8P3fq2ZWayNwkAWEk/RmdmwQ=="; }; }; "@types/node-16.9.1" = { @@ -11839,31 +11794,31 @@ let sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g=="; }; }; - "@types/node-18.19.17" = { + "@types/node-18.19.24" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.19.17"; + version = "18.19.24"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz"; - sha512 = "SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.19.24.tgz"; + sha512 = "eghAz3gnbQbvnHqB+mgB2ZR3aH6RhdEmHGS48BnV75KceQPHqabkxKI0BbUSsqhqy2Ddhc2xD/VAR9ySZd57Lw=="; }; }; - "@types/node-18.19.7" = { + "@types/node-18.19.25" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.19.7"; + version = "18.19.25"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.19.7.tgz"; - sha512 = "IGRJfoNX10N/PfrReRZ1br/7SQ+2vF/tK3KXNwzXz82D32z5dMQEoOlFew18nLSN+vMNcLY4GrKfzwi/yWI8/w=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.19.25.tgz"; + sha512 = "NrNXHJCexZtcbR9K1hsv1fSbwAwnhv7ql7l331aKvW0sej5H0NY1o64BHe0AA2ZoQuTm7NE6fyNW079MOWXe4Q=="; }; }; - "@types/node-20.11.19" = { + "@types/node-20.11.29" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "20.11.19"; + version = "20.11.29"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz"; - sha512 = "7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.11.29.tgz"; + sha512 = "P99thMkD/1YkCvAtOd6/zGedKNA0p2fj4ZpjCzcNiSCBWgm3cNRTBfa/qjFnsKkkojxu4vVLtWpesnZ9+ap+gA=="; }; }; "@types/node-20.5.9" = { @@ -11947,13 +11902,13 @@ let sha512 = "Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA=="; }; }; - "@types/qs-6.9.11" = { + "@types/qs-6.9.13" = { name = "_at_types_slash_qs"; packageName = "@types/qs"; - version = "6.9.11"; + version = "6.9.13"; src = fetchurl { - url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz"; - sha512 = "oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ=="; + url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.13.tgz"; + sha512 = "iLR+1vTTJ3p0QaOUq6ACbY1mzKTODFDT/XedZI8BksOotFmL4ForwDfRQ/DZeuTHR7/2i4lI1D203gdfxuqTlA=="; }; }; "@types/range-parser-1.2.7" = { @@ -11965,22 +11920,22 @@ let sha512 = "hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="; }; }; - "@types/react-18.2.56" = { + "@types/react-18.2.67" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "18.2.56"; + version = "18.2.67"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-18.2.56.tgz"; - sha512 = "NpwHDMkS/EFZF2dONFQHgkPRwhvgq/OAvIaGQzxGSBmaeR++kTg6njr15Vatz0/2VcCEwJQFi6Jf4Q0qBu0rLA=="; + url = "https://registry.npmjs.org/@types/react/-/react-18.2.67.tgz"; + sha512 = "vkIE2vTIMHQ/xL0rgmuoECBCkZFZeHr49HeWSc24AptMbNRo7pwSBvj73rlJJs9fGKj0koS+V7kQB1jHS0uCgw=="; }; }; - "@types/react-dom-18.2.19" = { + "@types/react-dom-18.2.22" = { name = "_at_types_slash_react-dom"; packageName = "@types/react-dom"; - version = "18.2.19"; + version = "18.2.22"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz"; - sha512 = "aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA=="; + url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.22.tgz"; + sha512 = "fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ=="; }; }; "@types/readdir-glob-1.1.5" = { @@ -12046,13 +12001,13 @@ let sha512 = "giB9gzDeiCeloIXDgzFBCgjj1k4WxcDrZtGl6h1IqmUPlxF+Nx8Ve+96QCyDZ/HseB/uvDsKbpib9hU5cU53pw=="; }; }; - "@types/semver-7.5.7" = { + "@types/semver-7.5.8" = { name = "_at_types_slash_semver"; packageName = "@types/semver"; - version = "7.5.7"; + version = "7.5.8"; src = fetchurl { - url = "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz"; - sha512 = "/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg=="; + url = "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz"; + sha512 = "I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ=="; }; }; "@types/send-0.17.4" = { @@ -12460,13 +12415,13 @@ let sha512 = "1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug=="; }; }; - "@vercel/build-utils-7.7.0" = { + "@vercel/build-utils-7.9.1" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "7.7.0"; + version = "7.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-7.7.0.tgz"; - sha512 = "dYE0QKnRj9tN1F2AAKHagh3QkgQhz7AWcrRqnp5gjEp74EnxBKJIcZe5qqyKANMCLQ1e96RYy1pQB3zPMGeEzg=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-7.9.1.tgz"; + sha512 = "yqbP7d8oLAGkh5iy9/Vu1c0+s5jLFK56QHEZlkj1lY3t3OQ+7dsAi0oUP/gv8YxtUYwMDfeYSqZr/4cNhnSBsg=="; }; }; "@vercel/error-utils-2.0.2" = { @@ -12496,13 +12451,13 @@ let sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-2.0.18" = { + "@vercel/gatsby-plugin-vercel-builder-2.0.22" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "2.0.18"; + version = "2.0.22"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.18.tgz"; - sha512 = "SbYV8ZBnROHJzS5DbFgSZ3Szp6UiY28DyHwtJ8cJ3z82tnCgIVqRMthUx/icPUZlHXKex4y+QhOWpyqopvEyqQ=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.22.tgz"; + sha512 = "bpbfWzNfn/7MyCDCXbFMmTqtFt+ni0ezmXQBZ5rzdEob+uTBYQg15hf+A8zr9oB66+EPaxt7So/KBjsb6s6n2A=="; }; }; "@vercel/go-3.0.5" = { @@ -12523,31 +12478,31 @@ let sha512 = "/Q2MKk1GfOuZAnkE9jQexjtUQqanbY65R+xtJWd9yKIgwcfRI1hxiNH3uXyVM5AvLoY+fxxULkSuxDtUKpkJpQ=="; }; }; - "@vercel/next-4.1.1" = { + "@vercel/next-4.1.6" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "4.1.1"; + version = "4.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-4.1.1.tgz"; - sha512 = "bc+UimeP+Swwye10LNcB93uaGq2lMuPUhB3den0GBJ+x/aSFmSwVziohF+p1n4ozFGEUx6Qx/CyZcfopuO5jZA=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-4.1.6.tgz"; + sha512 = "+U/D75RZFIe6Z9EA4kDLDZgP0hEl4ONWqFg47EtJpigWl5ulJ9YYsMD2nQZF5sq/YKbqy/7/sUDRIL0Co+3JuA=="; }; }; - "@vercel/nft-0.26.3" = { + "@vercel/nft-0.26.4" = { name = "_at_vercel_slash_nft"; packageName = "@vercel/nft"; - version = "0.26.3"; + version = "0.26.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.3.tgz"; - sha512 = "h1z/NN9ppS4YOKwSgBoopJlhm7tS2Qb/9Ld1HXjDpvvTE7mY0xVD8nllXs+RihD9uTGJISOIMzp18Eg0EApaMA=="; + url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.4.tgz"; + sha512 = "j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA=="; }; }; - "@vercel/node-3.0.19" = { + "@vercel/node-3.0.24" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "3.0.19"; + version = "3.0.24"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-3.0.19.tgz"; - sha512 = "geiAo2QjkNyWZSMbNKgaCvUvqg44tWDF0XDhEc6D+2H+2553Ea/RFpJNY7oSruuR1Rk43GUOKbxnVEDft/2JhQ=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-3.0.24.tgz"; + sha512 = "2EbC6zsoaj2HH97BZYdkqHNeQ3gpcsETHXySSslkylU1uTAZU5i4c+Ze+RIinVkk7P+DVv4XzDK6xaSHvkXkGA=="; }; }; "@vercel/python-4.1.1" = { @@ -12559,22 +12514,22 @@ let sha512 = "EbAdKOZ0hPd5b59tLt7R3RQK1azNvuZTrCFRAVHNjqcIHNCmrSvjag5zBGn7Memkk8qWb3+CgBw9K/3LJKei0w=="; }; }; - "@vercel/redwood-2.0.7" = { + "@vercel/redwood-2.0.8" = { name = "_at_vercel_slash_redwood"; packageName = "@vercel/redwood"; - version = "2.0.7"; + version = "2.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.0.7.tgz"; - sha512 = "5BqSq9QP4kC3h9YmXJbuUM79EMErs2qs8MMBlw7r2zTLc2rqlUR6suzshn5Ei/Beqoj2pm7d+qrludEBVDBxkw=="; + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.0.8.tgz"; + sha512 = "hAu7SYXDt+W7kscjtQ5NsuNflXH+QB5/xAdA6FRSS/e41lG6Xq6pqLMDobqq4BR7E2PpppVDw2DUx9KzPNoeEw=="; }; }; - "@vercel/remix-builder-2.0.19" = { + "@vercel/remix-builder-2.1.4" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "2.0.19"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.0.19.tgz"; - sha512 = "mODNijOpRGKtW09ksg01ju6tOt+C/fba71l1rrHi8I/ejPxpXHnfArNyO5SPRldyq5eHrhBMeePStQLVKNetug=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.1.4.tgz"; + sha512 = "y3RYWyxHQn5UMq8YFYj4palPs+ylcboLtqi7hqsn2P4uVFwDFCg15jKnWNYbk0XRUg+NGGtiuW4L3V9ILUxVeg=="; }; }; "@vercel/routing-utils-3.1.0" = { @@ -12595,13 +12550,13 @@ let sha512 = "Gfm8HDech41vf+EPleRzgoJUnDTJerKgckMm4KX0JT860gV9XBMSOWYH7eMWHmMza104+HRCWL7wT6OlpftF2Q=="; }; }; - "@vercel/static-build-2.4.0" = { + "@vercel/static-build-2.4.4" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "2.4.0"; + version = "2.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.4.0.tgz"; - sha512 = "i+JDorkLGUVSoBrxbT86LL7L+TrBdL7uwVtqKA6S3QEQb8OfGOfvQKCjtbIRmplTxHWHWo3zFALrmFuB1AaubQ=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.4.4.tgz"; + sha512 = "2n09maqunhSAApvQ8GT2sUzGkZrb8OYm4seaMsRDA/zIkil+s4HoTCfB7WZDUetkhewBZZHvNb/b+KBQcGMY2Q=="; }; }; "@vercel/static-config-3.0.0" = { @@ -12694,13 +12649,13 @@ let sha512 = "NwqBBruD1DvVmFVyPinOuuMGqpSroVTnl1R1vOnhbKquButOj+0b2k43Gn1fz/Uqe9hijLCxMEtMIIcW38ny8w=="; }; }; - "@volar/kit-2.0.4" = { + "@volar/kit-2.1.2" = { name = "_at_volar_slash_kit"; packageName = "@volar/kit"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/kit/-/kit-2.0.4.tgz"; - sha512 = "USRx/o0jKz7o8+lEKWMxWqbqvC46XFrf3IE6CZBYzRo9kM7RERQLwUYaoT2bOcHt5DQWublpnTgdgHMm37Gysg=="; + url = "https://registry.npmjs.org/@volar/kit/-/kit-2.1.2.tgz"; + sha512 = "u20R1lCWCgFYBCHC+FR/e9J+P61vUNQpyWt4keAY+zpVHEHsSXVA2xWMJV1l1Iq5Dd0jBUSqrb1zsEya455AzA=="; }; }; "@volar/language-core-1.4.1" = { @@ -12712,13 +12667,13 @@ let sha512 = "EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ=="; }; }; - "@volar/language-core-2.0.4" = { + "@volar/language-core-2.1.2" = { name = "_at_volar_slash_language-core"; packageName = "@volar/language-core"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-core/-/language-core-2.0.4.tgz"; - sha512 = "VhC8i03P0x9LKGLTBi81xNTNWm40yxQ/Iba8IpH+LFr+Yb7c/D7fF90Cvf31MzPDM4G5rjIOlCfs+eQKPBkwQw=="; + url = "https://registry.npmjs.org/@volar/language-core/-/language-core-2.1.2.tgz"; + sha512 = "5qsDp0Gf6fE09UWCeK7bkVn6NxMwC9OqFWQkMMkeej8h8XjyABPdRygC2RCrqDrfVdGijqlMQeXs6yRS+vfZYA=="; }; }; "@volar/language-server-1.4.1" = { @@ -12730,13 +12685,13 @@ let sha512 = "UxhiN205o8ZfTnMNhRPCtW+ncrBtqZMd+f08Xf99Je4WB+SYyv3VNnIZEQDXfaTXR6mLUgQ1mDwPsUOLKKGY8A=="; }; }; - "@volar/language-server-2.0.4" = { + "@volar/language-server-2.1.2" = { name = "_at_volar_slash_language-server"; packageName = "@volar/language-server"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-server/-/language-server-2.0.4.tgz"; - sha512 = "VnljhooQjT6RhmvwwJK9+3YYs2ovFmav4IVNHiQgnTMfiOiyABzcghwvJrJrI39rJDI6LNOWF7BYUJq7K07BKQ=="; + url = "https://registry.npmjs.org/@volar/language-server/-/language-server-2.1.2.tgz"; + sha512 = "5NR5Ztg+OxvDI4oRrjS0/4ZVPumWwhVq5acuK2BJbakG1kJXViYI9NOWiWITMjnliPvf12TEcSrVDBmIq54DOg=="; }; }; "@volar/language-service-1.4.1" = { @@ -12748,22 +12703,22 @@ let sha512 = "F30uT+xk20ZYpxRwNW9xBEoErSqd9zNW7iuFwSIX9bYO/12RLjB2I+vgM/GdPZnzZ37imXa76ykwqTRXrafigQ=="; }; }; - "@volar/language-service-2.0.4" = { + "@volar/language-service-2.1.2" = { name = "_at_volar_slash_language-service"; packageName = "@volar/language-service"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-service/-/language-service-2.0.4.tgz"; - sha512 = "DoanyU9I9Nl85lUytDl8jgyk+nrUDR5CFNVMrxWXGXclP4WTqBayBgSFAeF1L/5AwP3MywmWoK4GLAEVvl8D+Q=="; + url = "https://registry.npmjs.org/@volar/language-service/-/language-service-2.1.2.tgz"; + sha512 = "CmVbbKdqzVq+0FT67hfELdHpboqXhKXh6EjypypuFX5ptIRftHZdkaq3/lCCa46EHxS5tvE44jn+s7faN4iRDA=="; }; }; - "@volar/snapshot-document-2.0.4" = { + "@volar/snapshot-document-2.1.2" = { name = "_at_volar_slash_snapshot-document"; packageName = "@volar/snapshot-document"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/snapshot-document/-/snapshot-document-2.0.4.tgz"; - sha512 = "YzgdmvpdRFxiBFCOVWga67naAtbPtKmPaFtGnmxWx+KXrjGkpUXT/2tzeKn5FLdtoYV+DRTdpMdP/45ArnVwZQ=="; + url = "https://registry.npmjs.org/@volar/snapshot-document/-/snapshot-document-2.1.2.tgz"; + sha512 = "ZpJIBZrdm/Gx4jC/zn8H+O6H5vZZwY7B5CMTxl9y8HvcqlePOyDi+VkX8pjQz1VFG9Z5Z+Bau/RL6exqkoVDDA=="; }; }; "@volar/source-map-1.4.1" = { @@ -12775,22 +12730,22 @@ let sha512 = "bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA=="; }; }; - "@volar/source-map-2.0.4" = { + "@volar/source-map-2.1.2" = { name = "_at_volar_slash_source-map"; packageName = "@volar/source-map"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/source-map/-/source-map-2.0.4.tgz"; - sha512 = "BbxUinEMoJZqrHsSj1aBa0boCBnN3BoXnf7j9IBwjxosxGXOhCvqmH2L9raJemadaKjeVR8ZQLhV7AOhyoHt/Q=="; + url = "https://registry.npmjs.org/@volar/source-map/-/source-map-2.1.2.tgz"; + sha512 = "yFJqsuLm1OaWrsz9E3yd3bJcYIlHqdZ8MbmIoZLrAzMYQDcoF26/INIhgziEXSdyHc8xd7rd/tJdSnUyh0gH4Q=="; }; }; - "@volar/typescript-2.0.4" = { + "@volar/typescript-2.1.2" = { name = "_at_volar_slash_typescript"; packageName = "@volar/typescript"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/typescript/-/typescript-2.0.4.tgz"; - sha512 = "KF7yh7GIo4iWuAQOKf/ONeFHdQA+wFriitW8LtGZB4iOOT6MdlRlYNsRL8do7XxmXvsBKcs4jTMtGn+uZRwlWg=="; + url = "https://registry.npmjs.org/@volar/typescript/-/typescript-2.1.2.tgz"; + sha512 = "lhTancZqamvaLvoz0u/uth8dpudENNt2LFZOWCw9JZiX14xRFhdhfzmphiCRb7am9E6qAJSbdS/gMt1utXAoHQ=="; }; }; "@volar/vue-language-core-1.6.5" = { @@ -12865,13 +12820,13 @@ let sha512 = "z3eiChaCQXMqBnk2aHHSEkobmC2VRalFQN0ApOAtydL172zXGxTwGrRtviT5HnUB+Q+G3vtEYFtuQkYqBzYgMA=="; }; }; - "@vscode/vsce-2.23.0" = { + "@vscode/vsce-2.24.0" = { name = "_at_vscode_slash_vsce"; packageName = "@vscode/vsce"; - version = "2.23.0"; + version = "2.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.23.0.tgz"; - sha512 = "Wf9yN8feZf4XmUW/erXyKQvCL577u72AQv4AI4Cwt5o5NyE49C5mpfw3pN78BJYYG3qnSIxwRo7JPvEurkQuNA=="; + url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.24.0.tgz"; + sha512 = "p6CIXpH5HXDqmUkgFXvIKTjZpZxy/uDx4d/UsfhS9vQUun43KDNUbYeZocyAHgqcJlPEurgArHz9te1PPiqPyA=="; }; }; "@vue/cli-shared-utils-5.0.8" = { @@ -12910,22 +12865,22 @@ let sha512 = "jNYQ+3z7HDZ3IR3Z3Dlo3yOPbHexpygkn2IJ7sjA62oGolnNWeF7kvpLwni18l8N5InhS66m9w31an1Fs5pCZA=="; }; }; - "@vue/compiler-core-3.4.19" = { + "@vue/compiler-core-3.4.21" = { name = "_at_vue_slash_compiler-core"; packageName = "@vue/compiler-core"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.19.tgz"; - sha512 = "gj81785z0JNzRcU0Mq98E56e4ltO1yf8k5PQ+tV/7YHnbZkrM0fyFyuttnN8ngJZjbpofWE/m4qjKBiLl8Ju4w=="; + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.21.tgz"; + sha512 = "MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og=="; }; }; - "@vue/compiler-dom-3.4.19" = { + "@vue/compiler-dom-3.4.21" = { name = "_at_vue_slash_compiler-dom"; packageName = "@vue/compiler-dom"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.19.tgz"; - sha512 = "vm6+cogWrshjqEHTzIDCp72DKtea8Ry/QVpQRYoyTIg9k7QZDX6D8+HGURjtmatfgM8xgCFtJJaOlCaRYRK3QA=="; + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.21.tgz"; + sha512 = "IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA=="; }; }; "@vue/compiler-sfc-2.7.16" = { @@ -12937,40 +12892,40 @@ let sha512 = "KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg=="; }; }; - "@vue/compiler-sfc-3.4.19" = { + "@vue/compiler-sfc-3.4.21" = { name = "_at_vue_slash_compiler-sfc"; packageName = "@vue/compiler-sfc"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.19.tgz"; - sha512 = "LQ3U4SN0DlvV0xhr1lUsgLCYlwQfUfetyPxkKYu7dkfvx7g3ojrGAkw0AERLOKYXuAGnqFsEuytkdcComei3Yg=="; + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.21.tgz"; + sha512 = "me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ=="; }; }; - "@vue/compiler-ssr-3.4.19" = { + "@vue/compiler-ssr-3.4.21" = { name = "_at_vue_slash_compiler-ssr"; packageName = "@vue/compiler-ssr"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.19.tgz"; - sha512 = "P0PLKC4+u4OMJ8sinba/5Z/iDT84uMRRlrWzadgLA69opCpI1gG4N55qDSC+dedwq2fJtzmGald05LWR5TFfLw=="; + url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.21.tgz"; + sha512 = "M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q=="; }; }; - "@vue/reactivity-3.4.19" = { + "@vue/reactivity-3.4.21" = { name = "_at_vue_slash_reactivity"; packageName = "@vue/reactivity"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.19.tgz"; - sha512 = "+VcwrQvLZgEclGZRHx4O2XhyEEcKaBi50WbxdVItEezUf4fqRh838Ix6amWTdX0CNb/b6t3Gkz3eOebfcSt+UA=="; + url = "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.21.tgz"; + sha512 = "UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw=="; }; }; - "@vue/shared-3.4.19" = { + "@vue/shared-3.4.21" = { name = "_at_vue_slash_shared"; packageName = "@vue/shared"; - version = "3.4.19"; + version = "3.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.4.19.tgz"; - sha512 = "/KliRRHMF6LoiThEy+4c1Z4KB/gbPrGjWwJR+crg2otgrf/egKzRaCPvJ51S5oetgsgXLfc4Rm5ZgrKHZrtMSw=="; + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.4.21.tgz"; + sha512 = "PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g=="; }; }; "@webassemblyjs/ast-1.11.1" = { @@ -12982,13 +12937,13 @@ let sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; }; }; - "@webassemblyjs/ast-1.11.6" = { + "@webassemblyjs/ast-1.12.1" = { name = "_at_webassemblyjs_slash_ast"; packageName = "@webassemblyjs/ast"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz"; - sha512 = "IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q=="; + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz"; + sha512 = "EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg=="; }; }; "@webassemblyjs/ast-1.8.1" = { @@ -13054,13 +13009,13 @@ let sha512 = "79RidFwQOl8vG+Wv1uQWfCw4JQO5XR8iQcNGKLum3oPsSG8jkuEK5ILT6NxT3MNOa+xwSd3d+YqVFB1V0/W7/w=="; }; }; - "@webassemblyjs/helper-buffer-1.11.6" = { + "@webassemblyjs/helper-buffer-1.12.1" = { name = "_at_webassemblyjs_slash_helper-buffer"; packageName = "@webassemblyjs/helper-buffer"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz"; - sha512 = "z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz"; + sha512 = "nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw=="; }; }; "@webassemblyjs/helper-buffer-1.8.1" = { @@ -13180,13 +13135,13 @@ let sha512 = "MDdqmxj6ea1qfHBLKVHaF2+IyWLQtw8+bvRaeZc4MtcO7dNBz/2cZZ/GCFN9kGTJVvhe37tkeCi2JAB3evoU2w=="; }; }; - "@webassemblyjs/helper-wasm-section-1.11.6" = { + "@webassemblyjs/helper-wasm-section-1.12.1" = { name = "_at_webassemblyjs_slash_helper-wasm-section"; packageName = "@webassemblyjs/helper-wasm-section"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz"; - sha512 = "LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz"; + sha512 = "Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g=="; }; }; "@webassemblyjs/helper-wasm-section-1.8.1" = { @@ -13288,22 +13243,22 @@ let sha512 = "qNByLv/qST8x4CshQ8vUuX/+OebI9gK+FHkGPMnLnwALKFJOG0jIxG8TXaf2L+fVHNyd96qhsZ/GL54G3KTjpg=="; }; }; - "@webassemblyjs/wasm-edit-1.11.6" = { + "@webassemblyjs/wasm-edit-1.12.1" = { name = "_at_webassemblyjs_slash_wasm-edit"; packageName = "@webassemblyjs/wasm-edit"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz"; - sha512 = "Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz"; + sha512 = "1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g=="; }; }; - "@webassemblyjs/wasm-gen-1.11.6" = { + "@webassemblyjs/wasm-gen-1.12.1" = { name = "_at_webassemblyjs_slash_wasm-gen"; packageName = "@webassemblyjs/wasm-gen"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz"; - sha512 = "3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz"; + sha512 = "TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w=="; }; }; "@webassemblyjs/wasm-gen-1.8.1" = { @@ -13315,13 +13270,13 @@ let sha512 = "xOgoGf6rR6gHlhlNlU0EfMIgDAjbLCO2cNdEIKdGfKj2/fc02pbAyS3gYJ6EWAzSnL/XpAOf3Q/trp/EUeikug=="; }; }; - "@webassemblyjs/wasm-opt-1.11.6" = { + "@webassemblyjs/wasm-opt-1.12.1" = { name = "_at_webassemblyjs_slash_wasm-opt"; packageName = "@webassemblyjs/wasm-opt"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz"; - sha512 = "cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz"; + sha512 = "Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg=="; }; }; "@webassemblyjs/wasm-parser-1.11.1" = { @@ -13333,13 +13288,13 @@ let sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; }; }; - "@webassemblyjs/wasm-parser-1.11.6" = { + "@webassemblyjs/wasm-parser-1.12.1" = { name = "_at_webassemblyjs_slash_wasm-parser"; packageName = "@webassemblyjs/wasm-parser"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz"; - sha512 = "6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz"; + sha512 = "xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ=="; }; }; "@webassemblyjs/wasm-parser-1.8.1" = { @@ -13378,13 +13333,13 @@ let sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; }; }; - "@webassemblyjs/wast-printer-1.11.6" = { + "@webassemblyjs/wast-printer-1.12.1" = { name = "_at_webassemblyjs_slash_wast-printer"; packageName = "@webassemblyjs/wast-printer"; - version = "1.11.6"; + version = "1.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz"; - sha512 = "JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A=="; + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz"; + sha512 = "+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA=="; }; }; "@webassemblyjs/wast-printer-1.8.1" = { @@ -13441,22 +13396,22 @@ let sha512 = "AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="; }; }; - "@whatwg-node/fetch-0.9.16" = { + "@whatwg-node/fetch-0.9.17" = { name = "_at_whatwg-node_slash_fetch"; packageName = "@whatwg-node/fetch"; - version = "0.9.16"; + version = "0.9.17"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.16.tgz"; - sha512 = "mqasZiUNquRe3ea9+aCAuo81BR6vq5opUKprPilIHTnrg8a21Z1T1OrI+KiMFX8OmwO5HUJe/vro47lpj2JPWQ=="; + url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz"; + sha512 = "TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q=="; }; }; - "@whatwg-node/node-fetch-0.5.6" = { + "@whatwg-node/node-fetch-0.5.8" = { name = "_at_whatwg-node_slash_node-fetch"; packageName = "@whatwg-node/node-fetch"; - version = "0.5.6"; + version = "0.5.8"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.6.tgz"; - sha512 = "cmAsGMHoI0S3AHi3CmD3ma1Q234ZI2JNmXyDyM9rLtbXejBKxU3ZWdhS+mzRIAyUxZCMGlFW1tHmROv0MDdxpw=="; + url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.8.tgz"; + sha512 = "rB+2P3oi9fD4TcsijkflJAQqOh4yZrPgOV4fGaDgCdOqqwTicJvL2nnVbr3comW8bxEuypOcyE1AtBtkpip0Gw=="; }; }; "@xmldom/xmldom-0.7.13" = { @@ -14386,15 +14341,6 @@ let sha512 = "GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg=="; }; }; - "all-package-names-2.0.859" = { - name = "all-package-names"; - packageName = "all-package-names"; - version = "2.0.859"; - src = fetchurl { - url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.859.tgz"; - sha512 = "pqpWYHx5Jp8c5WjjsNKO1jtLB7lhH+G2NEnCZavawDnxULs1nV74YKmXoHntrPC2vEn7dJgH1R6hzCxQzkWbjQ=="; - }; - }; "amdefine-1.0.1" = { name = "amdefine"; packageName = "amdefine"; @@ -15349,15 +15295,6 @@ let sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; }; }; - "array.prototype.filter-1.0.3" = { - name = "array.prototype.filter"; - packageName = "array.prototype.filter"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz"; - sha512 = "VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw=="; - }; - }; "array.prototype.findlastindex-1.2.4" = { name = "array.prototype.findlastindex"; packageName = "array.prototype.findlastindex"; @@ -15493,6 +15430,15 @@ let sha512 = "ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="; }; }; + "asn1.js-4.10.1" = { + name = "asn1.js"; + packageName = "asn1.js"; + version = "4.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz"; + sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="; + }; + }; "asn1.js-5.4.1" = { name = "asn1.js"; packageName = "asn1.js"; @@ -15592,6 +15538,15 @@ let sha512 = "H2izJAyT2xwew4TxShpmxe6f9R5hHgJQy1QloLiUC2yrJMtyraBWNJL7903rpeCY9keNUipORR/zIUC2XcYKng=="; }; }; + "ast-types-0.13.4" = { + name = "ast-types"; + packageName = "ast-types"; + version = "0.13.4"; + src = fetchurl { + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz"; + sha512 = "x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w=="; + }; + }; "ast-types-0.14.2" = { name = "ast-types"; packageName = "ast-types"; @@ -15808,6 +15763,15 @@ let sha512 = "eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA=="; }; }; + "async-mutex-0.4.1" = { + name = "async-mutex"; + packageName = "async-mutex"; + version = "0.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.4.1.tgz"; + sha512 = "WfoBo4E/TbCX1G95XTjbWTE3X2XLG0m1Xbv2cwOtuPdyH9CZvnaA5nCt1ucjaKEgW2A5IF71hxrRhr83Je5xjA=="; + }; + }; "async-retry-1.3.3" = { name = "async-retry"; packageName = "async-retry"; @@ -15835,15 +15799,6 @@ let sha512 = "VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw=="; }; }; - "asynciterator.prototype-1.0.0" = { - name = "asynciterator.prototype"; - packageName = "asynciterator.prototype"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz"; - sha512 = "wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg=="; - }; - }; "asynckit-0.4.0" = { name = "asynckit"; packageName = "asynckit"; @@ -15907,13 +15862,13 @@ let sha512 = "ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg=="; }; }; - "autoprefixer-10.4.17" = { + "autoprefixer-10.4.18" = { name = "autoprefixer"; packageName = "autoprefixer"; - version = "10.4.17"; + version = "10.4.18"; src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz"; - sha512 = "/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg=="; + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.18.tgz"; + sha512 = "1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g=="; }; }; "autoprefixer-9.8.8" = { @@ -15925,13 +15880,13 @@ let sha512 = "eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA=="; }; }; - "available-typed-arrays-1.0.6" = { + "available-typed-arrays-1.0.7" = { name = "available-typed-arrays"; packageName = "available-typed-arrays"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz"; - sha512 = "j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg=="; + url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz"; + sha512 = "wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="; }; }; "await-semaphore-0.1.3" = { @@ -16042,13 +15997,13 @@ let sha512 = "S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA=="; }; }; - "axios-1.6.7" = { + "axios-1.6.8" = { name = "axios"; packageName = "axios"; - version = "1.6.7"; + version = "1.6.8"; src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz"; - sha512 = "/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA=="; + url = "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz"; + sha512 = "v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ=="; }; }; "axobject-query-4.0.0" = { @@ -16123,13 +16078,13 @@ let sha512 = "MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA=="; }; }; - "babel-plugin-polyfill-corejs2-0.4.8" = { + "babel-plugin-polyfill-corejs2-0.4.10" = { name = "babel-plugin-polyfill-corejs2"; packageName = "babel-plugin-polyfill-corejs2"; - version = "0.4.8"; + version = "0.4.10"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz"; - sha512 = "OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg=="; + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz"; + sha512 = "rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ=="; }; }; "babel-plugin-polyfill-corejs3-0.9.0" = { @@ -16384,6 +16339,15 @@ let sha512 = "NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="; }; }; + "basic-ftp-5.0.5" = { + name = "basic-ftp"; + packageName = "basic-ftp"; + version = "5.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz"; + sha512 = "4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg=="; + }; + }; "batch-0.6.1" = { name = "batch"; packageName = "batch"; @@ -16573,13 +16537,13 @@ let sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; }; }; - "binary-extensions-2.2.0" = { + "binary-extensions-2.3.0" = { name = "binary-extensions"; packageName = "binary-extensions"; - version = "2.2.0"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz"; + sha512 = "Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="; }; }; "binary-search-1.3.6" = { @@ -16618,13 +16582,13 @@ let sha512 = "VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw=="; }; }; - "bit-field-1.8.0" = { + "bit-field-1.9.0" = { name = "bit-field"; packageName = "bit-field"; - version = "1.8.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/bit-field/-/bit-field-1.8.0.tgz"; - sha512 = "xChg+vwCPZckjT1s0bJU5KbGWVqA+LDsi4YOiXVFntl+yzlPpBMdyeDU/wTTqoKAZAdOMDfGjpOUyP+untdOWQ=="; + url = "https://registry.npmjs.org/bit-field/-/bit-field-1.9.0.tgz"; + sha512 = "/rVbn/yK2UBwfrlwUnNFM/MtYC5zsX+5fq8kC4J9uAPPVFWJW332TFjFlD9qMeWxwtHR014Rg5JyrLbSI9Vrlw=="; }; }; "bitfield-0.1.0" = { @@ -17329,13 +17293,13 @@ let sha512 = "AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog=="; }; }; - "browserify-sign-4.2.2" = { + "browserify-sign-4.2.3" = { name = "browserify-sign"; packageName = "browserify-sign"; - version = "4.2.2"; + version = "4.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz"; - sha512 = "1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg=="; + url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz"; + sha512 = "JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw=="; }; }; "browserify-zlib-0.2.0" = { @@ -17383,13 +17347,13 @@ let sha512 = "gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="; }; }; - "bsert-0.0.12" = { + "bsert-0.0.13" = { name = "bsert"; packageName = "bsert"; - version = "0.0.12"; + version = "0.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/bsert/-/bsert-0.0.12.tgz"; - sha512 = "lUB0EMu4KhIf+VQ6RZJ7J3dFdohYSeta+gNgDi00Hi/t3k/W6xZlwm9PSSG0q7hJ2zW9Rsn5yaMPymETxroTRw=="; + url = "https://registry.npmjs.org/bsert/-/bsert-0.0.13.tgz"; + sha512 = "gYzSj8I2lDTKvl4aRSYs2CZIpeJugq7RjGhLRG+Jl//gEW5B2u1MKB6exVCL09FqYj6JRQAAgRwQHMOWvr7A8A=="; }; }; "btoa-1.2.1" = { @@ -17698,15 +17662,6 @@ let sha512 = "qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ=="; }; }; - "bundle-name-3.0.0" = { - name = "bundle-name"; - packageName = "bundle-name"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz"; - sha512 = "PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw=="; - }; - }; "bundle-name-4.1.0" = { name = "bundle-name"; packageName = "bundle-name"; @@ -18031,15 +17986,6 @@ let sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; }; }; - "callsites-4.1.0" = { - name = "callsites"; - packageName = "callsites"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/callsites/-/callsites-4.1.0.tgz"; - sha512 = "aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw=="; - }; - }; "camel-case-3.0.0" = { name = "camel-case"; packageName = "camel-case"; @@ -18193,13 +18139,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001587" = { + "caniuse-lite-1.0.30001599" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001587"; + version = "1.0.30001599"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz"; - sha512 = "HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001599.tgz"; + sha512 = "LRAQHZ4yT1+f9LemSMeqdMpMxZcc4RMWdj4tiFe3G8tNkWK+E58g+/tzotb5cU6TbcVJLr4fySiAW7XmxQvZQA=="; }; }; "canvas-2.11.2" = { @@ -18328,31 +18274,31 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.68.38" = { + "cdk8s-2.68.46" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.68.38"; + version = "2.68.46"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.68.38.tgz"; - sha512 = "1BMZ2lAt5TjaFnproUocU9oj1GLAIfUvdJAcrkso0SwsaaL2bV1rng5hJQZfK1xl2GbhpWLeep29kuSNGQWpwg=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.68.46.tgz"; + sha512 = "dTT0ug2XeWnov5rAEeRUu0R8J7/mVPInBHH8QqCADDWvBShT/76yJsdkKj0Q2he0RluOtWabwXACCW1DeOlqxg=="; }; }; - "cdk8s-plus-25-2.22.76" = { + "cdk8s-plus-25-2.22.79" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.22.76"; + version = "2.22.79"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.22.76.tgz"; - sha512 = "85WWL/++F4yc8clZ+LUAjE6qYiZDnKUTz+OMPtd44jgqYUaqWkCqcU3wA8HkIGUmCDUi9gYFGuctdw+3I8wu8A=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.22.79.tgz"; + sha512 = "QSxCBAbLvDJvC3lqt7lO2x8Il84kCsrwIdfAVFxUiwh4wHQxi18ENI9JI16tEhS/2gxv1YyeUNBM1ucH6q9oJA=="; }; }; - "cdktf-0.20.3" = { + "cdktf-0.20.5" = { name = "cdktf"; packageName = "cdktf"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.20.3.tgz"; - sha512 = "y8F3pjYzbMHy9ZG3yXSSerx2Yv9dr2i2j2842IKT1tpN74CBfuuPrselTNdI6QoaMvlQJQQB2l93cJmL6eIkaw=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.20.5.tgz"; + sha512 = "CA0RkrKJETnaxGG6fBQHiojTZ8Sl+MCYsISbOqYYRfakHaM9mN4/a0v0bH1u5zi9ODyjyUmjfh7BqGfZagMjRw=="; }; }; "center-align-0.1.3" = { @@ -18814,15 +18760,6 @@ let sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; }; }; - "ci-info-3.8.0" = { - name = "ci-info"; - packageName = "ci-info"; - version = "3.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz"; - sha512 = "eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw=="; - }; - }; "ci-info-3.9.0" = { name = "ci-info"; packageName = "ci-info"; @@ -19066,15 +19003,6 @@ let sha512 = "tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A=="; }; }; - "cli-spinners-1.3.1" = { - name = "cli-spinners"; - packageName = "cli-spinners"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz"; - sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg=="; - }; - }; "cli-spinners-2.6.1" = { name = "cli-spinners"; packageName = "cli-spinners"; @@ -19102,15 +19030,6 @@ let sha512 = "IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ=="; }; }; - "cli-table3-0.5.1" = { - name = "cli-table3"; - packageName = "cli-table3"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz"; - sha512 = "7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw=="; - }; - }; "cli-table3-0.6.3" = { name = "cli-table3"; packageName = "cli-table3"; @@ -19588,15 +19507,6 @@ let sha512 = "7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw=="; }; }; - "codemaker-1.93.0" = { - name = "codemaker"; - packageName = "codemaker"; - version = "1.93.0"; - src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.93.0.tgz"; - sha512 = "n9AdncxhGti20YhA7HI2oAYhELh/qlDnW9JIAYQW9iULXdeaKtsxHgvcwBCltpieOcQrq10bt+sUawBs62vxLg=="; - }; - }; "codemaker-1.94.0" = { name = "codemaker"; packageName = "codemaker"; @@ -19606,6 +19516,15 @@ let sha512 = "V+896C7RojQVfG0UlOXaFfVVxmFb08rPtJvzcxhdJfowc2o6xGwGG0OpWSLHy6fQrmt4BxLXnKZ6Xeuqt4aKjw=="; }; }; + "codemaker-1.95.0" = { + name = "codemaker"; + packageName = "codemaker"; + version = "1.95.0"; + src = fetchurl { + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.95.0.tgz"; + sha512 = "q/U2NeZSaKnVMarOi+BR8MbaHEFKVmBefTSSXj/0W4OBarw/uUT2qCPojYF16gJtfFz7qCkJeuP+zYDq+xNEpg=="; + }; + }; "coffeescript-2.7.0" = { name = "coffeescript"; packageName = "coffeescript"; @@ -19759,15 +19678,6 @@ let sha512 = "ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w=="; }; }; - "colors-1.2.5" = { - name = "colors"; - packageName = "colors"; - version = "1.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz"; - sha512 = "erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg=="; - }; - }; "colors-1.4.0" = { name = "colors"; packageName = "colors"; @@ -19885,6 +19795,15 @@ let sha512 = "yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="; }; }; + "commander-12.0.0" = { + name = "commander"; + packageName = "commander"; + version = "12.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/commander/-/commander-12.0.0.tgz"; + sha512 = "MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA=="; + }; + }; "commander-2.11.0" = { name = "commander"; packageName = "commander"; @@ -20011,15 +19930,6 @@ let sha512 = "KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ=="; }; }; - "commander-version-1.1.0" = { - name = "commander-version"; - packageName = "commander-version"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander-version/-/commander-version-1.1.0.tgz"; - sha512 = "9aNW4N6q6EPDUszLRH6k9IwO6OoGYh3HRgUF/fA7Zs+Mz1v1x5akSqT7QGB8JsGY7AG7qMA7oRRB/4yyn33FYA=="; - }; - }; "comment-json-1.1.3" = { name = "comment-json"; packageName = "comment-json"; @@ -20074,6 +19984,15 @@ let sha512 = "j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA=="; }; }; + "commonmark-0.31.0" = { + name = "commonmark"; + packageName = "commonmark"; + version = "0.31.0"; + src = fetchurl { + url = "https://registry.npmjs.org/commonmark/-/commonmark-0.31.0.tgz"; + sha512 = "nuDsQ34gjmgAqjyIz6mbRWBW/XPE9wsBempAMBk2V/AA88ekztjTM46oi07J6c6Y/2Y8TdYCZi9L0pIBt/oMZw=="; + }; + }; "compact2string-1.4.1" = { name = "compact2string"; packageName = "compact2string"; @@ -20912,22 +20831,22 @@ let sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; }; }; - "core-js-3.36.0" = { + "core-js-3.36.1" = { name = "core-js"; packageName = "core-js"; - version = "3.36.0"; + version = "3.36.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.36.0.tgz"; - sha512 = "mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.36.1.tgz"; + sha512 = "BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA=="; }; }; - "core-js-compat-3.36.0" = { + "core-js-compat-3.36.1" = { name = "core-js-compat"; packageName = "core-js-compat"; - version = "3.36.0"; + version = "3.36.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.0.tgz"; - sha512 = "iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw=="; + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz"; + sha512 = "Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA=="; }; }; "core-util-is-1.0.2" = { @@ -21011,6 +20930,15 @@ let sha512 = "kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="; }; }; + "cosmiconfig-9.0.0" = { + name = "cosmiconfig"; + packageName = "cosmiconfig"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz"; + sha512 = "itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg=="; + }; + }; "cosmiconfig-toml-loader-1.0.0" = { name = "cosmiconfig-toml-loader"; packageName = "cosmiconfig-toml-loader"; @@ -21344,13 +21272,13 @@ let sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; }; }; - "cspell-config-lib-8.3.2" = { + "cspell-config-lib-8.6.0" = { name = "cspell-config-lib"; packageName = "cspell-config-lib"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.3.2.tgz"; - sha512 = "Wc98XhBNLwDxnxCzMtgRJALI9a69cu3C5Gf1rGjNTKSFo9JYiQmju0Ur3z25Pkx9Sa86f+2IjvNCf33rUDSoBQ=="; + url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.6.0.tgz"; + sha512 = "Q1rvQFUDJTu4hUtxwL6+q83Hjx/a5grEjMS5axxFJzjJuFRbRsXCagncdSCx/YBqLkNM5noBbRP/0rVh7ufqxw=="; }; }; "cspell-dict-vimlang-1.0.1" = { @@ -21362,22 +21290,22 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-8.3.2" = { + "cspell-dictionary-8.6.0" = { name = "cspell-dictionary"; packageName = "cspell-dictionary"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.3.2.tgz"; - sha512 = "xyK95hO2BMPFxIo8zBwGml8035qOxSBdga1BMhwW/p2wDrQP8S4Cdm/54//tCDmKn6uRkFQvyOfWGaX2l8WMEg=="; + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.6.0.tgz"; + sha512 = "ohToeOQznIrb2/z7RfKxX3NID0WiO4sXK3IxKdnbn2viGgdn17tQ8Z2f4Xuy9egjSGRKyr6N25Z5AOes1C8R3w=="; }; }; - "cspell-gitignore-8.3.2" = { + "cspell-gitignore-8.6.0" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.3.2.tgz"; - sha512 = "3Qc9P5BVvl/cg//s2s+zIMGKcoH5v7oOtRgwn4UQry8yiyo19h0tiTKkSR574FMhF5NtcShTnwIwPSIXVBPFHA=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.6.0.tgz"; + sha512 = "6INRlNb17iKtQH7NmDM/EsX5OZOD2TzIwHiJnnWci0Y5l10V/zN9WGLDegTjMh9HU3TS6uUuN4I/ffkCs9m+LA=="; }; }; "cspell-glob-0.1.25" = { @@ -21389,22 +21317,22 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-8.3.2" = { + "cspell-glob-8.6.0" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.3.2.tgz"; - sha512 = "KtIFxE+3l5dGEofND4/CdZffXP8XN1+XGQKxJ96lIzWsc01mkotfhxTkla6mgvfH039t7BsY/SWv0460KyGslQ=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.6.0.tgz"; + sha512 = "AyuExc34F8JsEYNl4inx1m1v5VoSRA/cTptREq/AoNTcMTyG5s+wt5J+VWBfvJjEDEEpd9Cb2it0j8TMo/Tpjw=="; }; }; - "cspell-grammar-8.3.2" = { + "cspell-grammar-8.6.0" = { name = "cspell-grammar"; packageName = "cspell-grammar"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.3.2.tgz"; - sha512 = "tYCkOmRzJe1a6/R+8QGSwG7TwTgznLPqsHtepKzLmnS4YX54VXjKRI9zMARxXDzUVfyCSVdW5MyiY/0WTNoy+A=="; + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.6.0.tgz"; + sha512 = "wVpZ4pPOqRoOmzLUc34wyOQnBi/6RsV3Y1KiPn8BNSkObb9XSohb1xJJMJ69unEmgE0snQDMHIeUaLTQH414MA=="; }; }; "cspell-io-4.1.7" = { @@ -21416,13 +21344,13 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-8.3.2" = { + "cspell-io-8.6.0" = { name = "cspell-io"; packageName = "cspell-io"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.3.2.tgz"; - sha512 = "WYpKsyBCQP0SY4gXnhW5fPuxcYchKYKG1PIXVV3ezFU4muSgW6GuLNbGuSfwv/8YNXRgFSN0e3hYH0rdBK2Aow=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.6.0.tgz"; + sha512 = "jx7ccRpcshqxN6xnOiGnX4VycaqTpmatRjHITn4vLoDmQNfxQeU69YT62bhyjogCBuJsZS9ksjo7GQIsrYBekA=="; }; }; "cspell-lib-4.3.12" = { @@ -21434,13 +21362,13 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-8.3.2" = { + "cspell-lib-8.6.0" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.3.2.tgz"; - sha512 = "wTvdaev/TyGB/ln6CVD1QbVs2D7/+QiajQ67S7yj1suLHM6YcNQQb/5sPAM8VPtj0E7PgwgPXf3bq18OtPvnFg=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.6.0.tgz"; + sha512 = "l1bBxBz8noPOxEIIu1Ahvd4e/j6Re1PNDD9FwZgaRmvMyIPZbupTxzCM0MZWvYz1VymBmrrVEKRwtZ34VocaCw=="; }; }; "cspell-trie-lib-4.2.8" = { @@ -21452,13 +21380,13 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-8.3.2" = { + "cspell-trie-lib-8.6.0" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.3.2.tgz"; - sha512 = "8qh2FqzkLMwzlTlvO/5Z+89fhi30rrfekocpight/BmqKbE2XFJQD7wS2ml24e7q/rdHJLXVpJbY/V5mByucCA=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.6.0.tgz"; + sha512 = "S8nGCnEJBL1maiKPd3FhI54QG+OgtOkcJ/yUDXGXGrokSruWFdNocioPirlFAHf959ax1GBUVEYNIgnu/EIWNg=="; }; }; "cspell-util-bundle-4.1.11" = { @@ -21641,13 +21569,13 @@ let sha512 = "j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw=="; }; }; - "cssnano-6.0.3" = { + "cssnano-6.1.0" = { name = "cssnano"; packageName = "cssnano"; - version = "6.0.3"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz"; - sha512 = "MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw=="; + url = "https://registry.npmjs.org/cssnano/-/cssnano-6.1.0.tgz"; + sha512 = "e2v4w/t3OFM6HTuSweI4RSdABaqgVgHlJp5FZrQsopHnKKHLFIvK2D3C4kHWeFIycN/1L1J5VIrg5KlDzn3r/g=="; }; }; "cssnano-preset-default-5.2.14" = { @@ -21659,13 +21587,13 @@ let sha512 = "t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A=="; }; }; - "cssnano-preset-default-6.0.3" = { + "cssnano-preset-default-6.1.0" = { name = "cssnano-preset-default"; packageName = "cssnano-preset-default"; - version = "6.0.3"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz"; - sha512 = "4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA=="; + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.0.tgz"; + sha512 = "4DUXZoDj+PI3fRl3MqMjl9DwLGjcsFP4qt+92nLUcN1RGfw2TY+GwNoG2B38Usu1BrcTs8j9pxNfSusmvtSjfg=="; }; }; "cssnano-utils-3.1.0" = { @@ -21677,13 +21605,13 @@ let sha512 = "JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA=="; }; }; - "cssnano-utils-4.0.1" = { + "cssnano-utils-4.0.2" = { name = "cssnano-utils"; packageName = "cssnano-utils"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz"; - sha512 = "6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ=="; + url = "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz"; + sha512 = "ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ=="; }; }; "csso-2.0.0" = { @@ -21794,13 +21722,13 @@ let sha512 = "byxnDBxM1AVF3YfmsK7Smop9/usNz7gAZYSo9eYp61TGcNXraJby1rAiLyJSt1/8Iho2qaxZOtZCOvQMXogPtg=="; }; }; - "csv-parse-5.5.3" = { + "csv-parse-5.5.5" = { name = "csv-parse"; packageName = "csv-parse"; - version = "5.5.3"; + version = "5.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.3.tgz"; - sha512 = "v0KW6C0qlZzoGjk6u5tLmVfyZxNgPGXZsWTXshpAgKVGmGXzaVWGdlCFxNx5iuzcXT/oJN1HHM9DZKwtAtYa+A=="; + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.5.tgz"; + sha512 = "erCk7tyU3yLWAhk6wvKxnyPtftuy/6Ak622gOO7BCJ05+TYffnPCJF905wmOQm+BpkX54OdAl8pveJwUdpnCXQ=="; }; }; "csv-stream-0.2.0" = { @@ -21920,22 +21848,22 @@ let sha512 = "ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ=="; }; }; - "d-1.0.1" = { + "d-1.0.2" = { name = "d"; packageName = "d"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/d/-/d-1.0.1.tgz"; - sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; + url = "https://registry.npmjs.org/d/-/d-1.0.2.tgz"; + sha512 = "MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw=="; }; }; - "d3-7.8.5" = { + "d3-7.9.0" = { name = "d3"; packageName = "d3"; - version = "7.8.5"; + version = "7.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-7.8.5.tgz"; - sha512 = "JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA=="; + url = "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz"; + sha512 = "e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA=="; }; }; "d3-array-2.12.1" = { @@ -22073,13 +22001,13 @@ let sha512 = "YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA=="; }; }; - "d3-geo-3.1.0" = { + "d3-geo-3.1.1" = { name = "d3-geo"; packageName = "d3-geo"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz"; - sha512 = "JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA=="; + url = "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz"; + sha512 = "637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q=="; }; }; "d3-geo-projection-4.0.0" = { @@ -22181,13 +22109,13 @@ let sha512 = "GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ=="; }; }; - "d3-scale-chromatic-3.0.0" = { + "d3-scale-chromatic-3.1.0" = { name = "d3-scale-chromatic"; packageName = "d3-scale-chromatic"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz"; - sha512 = "Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g=="; + url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz"; + sha512 = "A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ=="; }; }; "d3-selection-3.0.0" = { @@ -22352,6 +22280,15 @@ let sha512 = "0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A=="; }; }; + "data-uri-to-buffer-6.0.2" = { + name = "data-uri-to-buffer"; + packageName = "data-uri-to-buffer"; + version = "6.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz"; + sha512 = "7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw=="; + }; + }; "data-urls-1.1.0" = { name = "data-urls"; packageName = "data-urls"; @@ -22379,6 +22316,33 @@ let sha512 = "/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g=="; }; }; + "data-view-buffer-1.0.1" = { + name = "data-view-buffer"; + packageName = "data-view-buffer"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz"; + sha512 = "0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA=="; + }; + }; + "data-view-byte-length-1.0.1" = { + name = "data-view-byte-length"; + packageName = "data-view-byte-length"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz"; + sha512 = "4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ=="; + }; + }; + "data-view-byte-offset-1.0.0" = { + name = "data-view-byte-offset"; + packageName = "data-view-byte-offset"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz"; + sha512 = "t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA=="; + }; + }; "dataloader-2.0.0" = { name = "dataloader"; packageName = "dataloader"; @@ -22865,15 +22829,6 @@ let sha512 = "3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="; }; }; - "default-browser-4.0.0" = { - name = "default-browser"; - packageName = "default-browser"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz"; - sha512 = "wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA=="; - }; - }; "default-browser-5.2.1" = { name = "default-browser"; packageName = "default-browser"; @@ -22883,15 +22838,6 @@ let sha512 = "WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg=="; }; }; - "default-browser-id-3.0.0" = { - name = "default-browser-id"; - packageName = "default-browser-id"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz"; - sha512 = "OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA=="; - }; - }; "default-browser-id-5.0.0" = { name = "default-browser-id"; packageName = "default-browser-id"; @@ -23045,6 +22991,15 @@ let sha512 = "hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q=="; }; }; + "degenerator-5.0.1" = { + name = "degenerator"; + packageName = "degenerator"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz"; + sha512 = "TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ=="; + }; + }; "del-4.1.1" = { name = "del"; packageName = "del"; @@ -23837,13 +23792,13 @@ let sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ=="; }; }; - "dompurify-3.0.8" = { + "dompurify-3.0.9" = { name = "dompurify"; packageName = "dompurify"; - version = "3.0.8"; + version = "3.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/dompurify/-/dompurify-3.0.8.tgz"; - sha512 = "b7uwreMYL2eZhrSCRC4ahLTeZcPZxSmYfmcQGXGkXiZSNW1X85v+SDM5KsWcpivIiUBH47Ji7NtyUdpLeF5JZQ=="; + url = "https://registry.npmjs.org/dompurify/-/dompurify-3.0.9.tgz"; + sha512 = "uyb4NDIvQ3hRn6NiC+SIFaP4mJ/MdXlvtunaqK9Bn6dD3RuB/1S/gasEjDHD8eiaqdSael2vBv+hOs7Y+jhYOQ=="; }; }; "domutils-1.4.3" = { @@ -23981,13 +23936,13 @@ let sha512 = "HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ=="; }; }; - "dotenv-16.4.4" = { + "dotenv-16.4.5" = { name = "dotenv"; packageName = "dotenv"; - version = "16.4.4"; + version = "16.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/dotenv/-/dotenv-16.4.4.tgz"; - sha512 = "XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg=="; + url = "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz"; + sha512 = "ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg=="; }; }; "dotenv-7.0.0" = { @@ -24161,13 +24116,13 @@ let sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; }; }; - "duplexify-4.1.2" = { + "duplexify-4.1.3" = { name = "duplexify"; packageName = "duplexify"; - version = "4.1.2"; + version = "4.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz"; - sha512 = "fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw=="; + url = "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz"; + sha512 = "M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA=="; }; }; "e-prime-0.10.4" = { @@ -24287,13 +24242,13 @@ let sha512 = "rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ=="; }; }; - "electron-to-chromium-1.4.673" = { + "electron-to-chromium-1.4.710" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.673"; + version = "1.4.710"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.673.tgz"; - sha512 = "zjqzx4N7xGdl5468G+vcgzDhaHkaYgVcf9MqgexcTqsl2UHSCmOj/Bi3HAprg4BZCpC7HyD8a6nZl6QAZf72gw=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.710.tgz"; + sha512 = "w+9yAVHoHhysCa+gln7AzbO9CdjFcL/wN/5dd+XW/Msl2d/4+WisEaCF1nty0xbAKaxdaJfgLB2296U7zZB7BA=="; }; }; "elegant-spinner-1.0.1" = { @@ -24323,13 +24278,13 @@ let sha512 = "L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ=="; }; }; - "elliptic-6.5.4" = { + "elliptic-6.5.5" = { name = "elliptic"; packageName = "elliptic"; - version = "6.5.4"; + version = "6.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz"; - sha512 = "iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ=="; + url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz"; + sha512 = "7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw=="; }; }; "emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = { @@ -24360,13 +24315,13 @@ let sha512 = "AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ=="; }; }; - "emmet-2.4.6" = { + "emmet-2.4.7" = { name = "emmet"; packageName = "emmet"; - version = "2.4.6"; + version = "2.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/emmet/-/emmet-2.4.6.tgz"; - sha512 = "dJfbdY/hfeTyf/Ef7Y7ubLYzkBvPQ912wPaeVYpAxvFxkEBf/+hJu4H6vhAvFN6HlxqedlfVn2x1S44FfQ97pg=="; + url = "https://registry.npmjs.org/emmet/-/emmet-2.4.7.tgz"; + sha512 = "O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA=="; }; }; "emoji-regex-10.3.0" = { @@ -24639,13 +24594,13 @@ let sha512 = "QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ=="; }; }; - "enhanced-resolve-5.15.0" = { + "enhanced-resolve-5.16.0" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "5.15.0"; + version = "5.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz"; - sha512 = "LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg=="; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz"; + sha512 = "O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA=="; }; }; "enquirer-2.3.6" = { @@ -24873,13 +24828,13 @@ let sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; }; }; - "es-abstract-1.22.4" = { + "es-abstract-1.23.2" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.22.4"; + version = "1.23.2"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz"; - sha512 = "vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.2.tgz"; + sha512 = "60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w=="; }; }; "es-aggregate-error-1.0.12" = { @@ -24936,13 +24891,13 @@ let sha512 = "sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw=="; }; }; - "es-iterator-helpers-1.0.17" = { + "es-iterator-helpers-1.0.18" = { name = "es-iterator-helpers"; packageName = "es-iterator-helpers"; - version = "1.0.17"; + version = "1.0.18"; src = fetchurl { - url = "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz"; - sha512 = "lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ=="; + url = "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz"; + sha512 = "scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA=="; }; }; "es-module-lexer-1.4.1" = { @@ -24954,13 +24909,22 @@ let sha512 = "cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w=="; }; }; - "es-set-tostringtag-2.0.2" = { + "es-object-atoms-1.0.0" = { + name = "es-object-atoms"; + packageName = "es-object-atoms"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz"; + sha512 = "MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw=="; + }; + }; + "es-set-tostringtag-2.0.3" = { name = "es-set-tostringtag"; packageName = "es-set-tostringtag"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz"; - sha512 = "BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q=="; + url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz"; + sha512 = "3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ=="; }; }; "es-shim-unscopables-1.0.2" = { @@ -24990,13 +24954,13 @@ let sha512 = "pLqqZoOutAXQXyBJrUYVNM5fZngiOJYi1Xl4svQMrluTsqDUOQlBMw9EYgLrsWL6niDYn/Yd1y2Pj6GC+j/yjA=="; }; }; - "es5-ext-0.10.62" = { + "es5-ext-0.10.64" = { name = "es5-ext"; packageName = "es5-ext"; - version = "0.10.62"; + version = "0.10.64"; src = fetchurl { - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz"; - sha512 = "BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA=="; + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz"; + sha512 = "p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg=="; }; }; "es6-error-4.1.1" = { @@ -25080,13 +25044,13 @@ let sha512 = "TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw=="; }; }; - "es6-symbol-3.1.3" = { + "es6-symbol-3.1.4" = { name = "es6-symbol"; packageName = "es6-symbol"; - version = "3.1.3"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; - sha512 = "NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA=="; + url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz"; + sha512 = "U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg=="; }; }; "es6-weak-map-2.0.3" = { @@ -25467,13 +25431,13 @@ let sha512 = "pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw=="; }; }; - "eslint-8.56.0" = { + "eslint-8.57.0" = { name = "eslint"; packageName = "eslint"; - version = "8.56.0"; + version = "8.57.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz"; - sha512 = "Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz"; + sha512 = "dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ=="; }; }; "eslint-config-prettier-8.10.0" = { @@ -25503,13 +25467,13 @@ let sha512 = "WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g=="; }; }; - "eslint-module-utils-2.8.0" = { + "eslint-module-utils-2.8.1" = { name = "eslint-module-utils"; packageName = "eslint-module-utils"; - version = "2.8.0"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz"; - sha512 = "aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw=="; + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz"; + sha512 = "rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q=="; }; }; "eslint-plugin-import-2.28.1" = { @@ -25539,13 +25503,13 @@ let sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; }; }; - "eslint-plugin-react-refresh-0.4.5" = { + "eslint-plugin-react-refresh-0.4.6" = { name = "eslint-plugin-react-refresh"; packageName = "eslint-plugin-react-refresh"; - version = "0.4.5"; + version = "0.4.6"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz"; - sha512 = "D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w=="; + url = "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz"; + sha512 = "NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA=="; }; }; "eslint-plugin-unicorn-48.0.1" = { @@ -25566,13 +25530,13 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.21.1" = { + "eslint-plugin-vue-9.23.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "9.21.1"; + version = "9.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.21.1.tgz"; - sha512 = "XVtI7z39yOVBFJyi8Ljbn7kY9yHzznKXL02qQYn+ta63Iy4A9JFBw6o4OSB9hyD2++tVT+su9kQqetUyCCwhjw=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.23.0.tgz"; + sha512 = "Bqd/b7hGYGrlV+wP/g77tjyFmp81lh5TMw0be9093X02SyelxRRfCI6/IsGq/J7Um0YwB9s0Ry0wlFyjPdmtUw=="; }; }; "eslint-rule-docs-1.1.235" = { @@ -25647,6 +25611,15 @@ let sha512 = "Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA=="; }; }; + "esniff-2.0.1" = { + name = "esniff"; + packageName = "esniff"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz"; + sha512 = "kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg=="; + }; + }; "espree-3.5.4" = { name = "espree"; packageName = "espree"; @@ -25800,13 +25773,13 @@ let sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; }; }; - "eta-3.2.0" = { + "eta-3.4.0" = { name = "eta"; packageName = "eta"; - version = "3.2.0"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/eta/-/eta-3.2.0.tgz"; - sha512 = "Qzc3it7nLn49dbOb9+oHV9rwtt9qN8oShRztqkZ3gXPqQflF0VLin5qhWk0g/2ioibBwT4DU6OIMVft7tg/rVg=="; + url = "https://registry.npmjs.org/eta/-/eta-3.4.0.tgz"; + sha512 = "tCsc7WXTjrTx4ZjYLplcqrI3o4mYJ+Z6YspeuGL8tbt/hHoMchwBwtKfwM09svEY86iRapY93vUqQttcNuIO5Q=="; }; }; "etag-1.8.1" = { @@ -26385,6 +26358,15 @@ let sha512 = "5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ=="; }; }; + "express-4.18.3" = { + name = "express"; + packageName = "express"; + version = "4.18.3"; + src = fetchurl { + url = "https://registry.npmjs.org/express/-/express-4.18.3.tgz"; + sha512 = "6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw=="; + }; + }; "express-handlebars-3.1.0" = { name = "express-handlebars"; packageName = "express-handlebars"; @@ -27438,6 +27420,15 @@ let sha512 = "v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw=="; }; }; + "find-up-7.0.0" = { + name = "find-up"; + packageName = "find-up"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz"; + sha512 = "YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g=="; + }; + }; "find-up-simple-1.0.0" = { name = "find-up-simple"; packageName = "find-up-simple"; @@ -27591,13 +27582,13 @@ let sha512 = "CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw=="; }; }; - "flat-cache-4.0.0" = { + "flat-cache-4.0.1" = { name = "flat-cache"; packageName = "flat-cache"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.0.tgz"; - sha512 = "EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA=="; + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz"; + sha512 = "f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="; }; }; "flatiron-0.4.3" = { @@ -27618,13 +27609,13 @@ let sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; }; }; - "flatted-3.2.9" = { + "flatted-3.3.1" = { name = "flatted"; packageName = "flatted"; - version = "3.2.9"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz"; - sha512 = "36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ=="; + url = "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz"; + sha512 = "X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw=="; }; }; "flatten-0.0.1" = { @@ -27645,13 +27636,13 @@ let sha512 = "dz4HxH6pOvbUzZpZ/yXhafjbR2I8cenK5xL0KtBFb7U2ADsR+OwXifnxZjij/pZWF775uSCMzWVd+jDik2H2IA=="; }; }; - "flow-parser-0.229.0" = { + "flow-parser-0.231.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.229.0"; + version = "0.231.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.229.0.tgz"; - sha512 = "mOYmMuvJwAo/CvnMFEq4SHftq7E5188hYMTTxJyQOXk2nh+sgslRdYMw3wTthH+FMcFaZLtmBPuMu6IwztdoUQ=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.231.0.tgz"; + sha512 = "WVzuqwq7ZnvBceCG0DGeTQebZE+iIU0mlk5PmJgYj9DDrt+0isGC2m1ezW9vxL4V+HERJJo9ExppOnwKH2op6Q=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -27690,24 +27681,6 @@ let sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; }; }; - "follow-redirects-1.15.3" = { - name = "follow-redirects"; - packageName = "follow-redirects"; - version = "1.15.3"; - src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz"; - sha512 = "1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q=="; - }; - }; - "follow-redirects-1.15.4" = { - name = "follow-redirects"; - packageName = "follow-redirects"; - version = "1.15.4"; - src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz"; - sha512 = "Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw=="; - }; - }; "follow-redirects-1.15.5" = { name = "follow-redirects"; packageName = "follow-redirects"; @@ -27717,6 +27690,15 @@ let sha512 = "vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw=="; }; }; + "follow-redirects-1.15.6" = { + name = "follow-redirects"; + packageName = "follow-redirects"; + version = "1.15.6"; + src = fetchurl { + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz"; + sha512 = "wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA=="; + }; + }; "follow-redirects-1.5.10" = { name = "follow-redirects"; packageName = "follow-redirects"; @@ -27951,13 +27933,13 @@ let sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; }; }; - "fp-ts-2.16.2" = { + "fp-ts-2.16.4" = { name = "fp-ts"; packageName = "fp-ts"; - version = "2.16.2"; + version = "2.16.4"; src = fetchurl { - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.2.tgz"; - sha512 = "CkqAjnIKFqvo3sCyoBTqgJvF+bHrSik584S9nhTjtBESLx26cbtVMR/T9a6ApChOcSDAaM3JydDmWDUn4EEXng=="; + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.4.tgz"; + sha512 = "EkV/l6oHaf/w/DlVc5UiqLibqTV1S+idiDdcWQ+UjnLLflL9pZG28ebJfPLor8ifoL8NgEFDIo9fOvHyiSCrJQ=="; }; }; "fraction.js-4.3.7" = { @@ -28428,13 +28410,13 @@ let sha512 = "BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g=="; }; }; - "gc-stats-1.4.0" = { + "gc-stats-1.4.1" = { name = "gc-stats"; packageName = "gc-stats"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/gc-stats/-/gc-stats-1.4.0.tgz"; - sha512 = "4FcCj9e8j8rCjvLkqRpGZBLgTC/xr9XEf5By3x77cDucWWB3pJK6FEwXZCTCbb4z8xdaOoi4owBNrvn3ciDdxA=="; + url = "https://registry.npmjs.org/gc-stats/-/gc-stats-1.4.1.tgz"; + sha512 = "eAvDBpI6UjVIYwLxshPCJJIkPyfamIrJzBtW/103+ooJWkISS+chVnHNnsZ+ubaw2607rFeiRDNWHkNUA+ioqg=="; }; }; "gelf-stream-1.1.1" = { @@ -28509,13 +28491,13 @@ let sha512 = "ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g=="; }; }; - "gensequence-6.0.0" = { + "gensequence-7.0.0" = { name = "gensequence"; packageName = "gensequence"; - version = "6.0.0"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gensequence/-/gensequence-6.0.0.tgz"; - sha512 = "8WwuywE9pokJRAcg2QFR/plk3cVPebSUqRPzpGQh3WQ0wIiHAw+HyOQj5IuHyUTQBHpBKFoB2JUMu9zT3vJ16Q=="; + url = "https://registry.npmjs.org/gensequence/-/gensequence-7.0.0.tgz"; + sha512 = "47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ=="; }; }; "gensync-1.0.0-beta.2" = { @@ -28806,6 +28788,15 @@ let sha512 = "LRn8Jlk+DwZE4GTlDbT3Hikd1wSHgLMme/+7ddlqKd7ldwR6LjJgTVWzBnR01wnYGe4KgrXjg287RaI22UHmAw=="; }; }; + "get-uri-6.0.3" = { + name = "get-uri"; + packageName = "get-uri"; + version = "6.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz"; + sha512 = "BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw=="; + }; + }; "get-value-2.0.6" = { name = "get-value"; packageName = "get-value"; @@ -28860,15 +28851,6 @@ let sha512 = "qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA=="; }; }; - "git-diff-2.0.6" = { - name = "git-diff"; - packageName = "git-diff"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/git-diff/-/git-diff-2.0.6.tgz"; - sha512 = "/Iu4prUrydE3Pb3lCBMbcSNIf81tgGt0W1ZwknnyF62t3tHmtiJTRj0f+1ZIhp3+Rh0ktz1pJVoa7ZXUCskivA=="; - }; - }; "git-diff-tree-1.1.0" = { name = "git-diff-tree"; packageName = "git-diff-tree"; @@ -28878,15 +28860,6 @@ let sha512 = "PdNkH2snpXsKIzho6OWMZKEl+KZG6Zm+1ghQIDi0tEq1sz/S1tDjvNuYrX2ZpomalHAB89OUQim8O6vN+jesNQ=="; }; }; - "git-raw-commits-2.0.11" = { - name = "git-raw-commits"; - packageName = "git-raw-commits"; - version = "2.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz"; - sha512 = "VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A=="; - }; - }; "git-raw-commits-3.0.0" = { name = "git-raw-commits"; packageName = "git-raw-commits"; @@ -30013,13 +29986,13 @@ let sha512 = "55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="; }; }; - "has-proto-1.0.1" = { + "has-proto-1.0.3" = { name = "has-proto"; packageName = "has-proto"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"; - sha512 = "7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="; + url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz"; + sha512 = "SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="; }; }; "has-symbol-support-x-1.4.2" = { @@ -30130,6 +30103,15 @@ let sha512 = "CCd8e/w2w28G8DyZvKgiHnQJ/5XXDz6qiUHnthvtag/6T5acUeN5lqq+HMoBqcmgWueWDhiCplrw0Kb1zDACRg=="; }; }; + "hash-base-3.0.4" = { + name = "hash-base"; + packageName = "hash-base"; + version = "3.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz"; + sha512 = "EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow=="; + }; + }; "hash-base-3.1.0" = { name = "hash-base"; packageName = "hash-base"; @@ -30184,13 +30166,13 @@ let sha512 = "U/fnTE3edW0AV92ZI/BfEluMZuVcu3MDOopsN7jS+HqDYcarQo8rXQiWlsBlm0uX48/taYSdxRsfzh2HRg5Z6w=="; }; }; - "hasown-2.0.1" = { + "hasown-2.0.2" = { name = "hasown"; packageName = "hasown"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz"; - sha512 = "1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA=="; + url = "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz"; + sha512 = "0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="; }; }; "hast-util-embedded-2.0.1" = { @@ -30409,13 +30391,13 @@ let sha512 = "s/SIX6yp/5S1p8aC/NRDC1fwEb+myGIfp8/TzZz0rtAv8fzsdX7vGl3Q1TrXCsczFq8DI3CBFBCySPClfBSdbg=="; }; }; - "highlight.js-11.8.0" = { + "highlight.js-11.9.0" = { name = "highlight.js"; packageName = "highlight.js"; - version = "11.8.0"; + version = "11.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz"; - sha512 = "MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg=="; + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.9.0.tgz"; + sha512 = "fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw=="; }; }; "highlight.js-9.12.0" = { @@ -30571,13 +30553,13 @@ let sha512 = "8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA=="; }; }; - "html-entities-2.4.0" = { + "html-entities-2.5.2" = { name = "html-entities"; packageName = "html-entities"; - version = "2.4.0"; + version = "2.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz"; - sha512 = "igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ=="; + url = "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz"; + sha512 = "K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA=="; }; }; "html-escaper-2.0.2" = { @@ -30940,13 +30922,13 @@ let sha512 = "G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg=="; }; }; - "http-status-1.7.3" = { + "http-status-1.7.4" = { name = "http-status"; packageName = "http-status"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/http-status/-/http-status-1.7.3.tgz"; - sha512 = "GS8tL1qHT2nBCMJDYMHGkkkKQLNkIAHz37vgO68XKvzv+XyqB4oh/DfmMHdtRzfqSJPj1xKG2TaELZtlCz6BEQ=="; + url = "https://registry.npmjs.org/http-status/-/http-status-1.7.4.tgz"; + sha512 = "c2qSwNtTlHVYAhMj9JpGdyo0No/+DiKXCJ9pHtZ2Yf3QmPnBIytKSRT7BuyIiQ7icXLynavGmxUqkOjSrAuMuA=="; }; }; "http2-client-1.3.5" = { @@ -31084,15 +31066,6 @@ let sha512 = "Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ=="; }; }; - "hyperdyperid-1.2.0" = { - name = "hyperdyperid"; - packageName = "hyperdyperid"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz"; - sha512 = "Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A=="; - }; - }; "hyperlinker-1.0.0" = { name = "hyperlinker"; packageName = "hyperlinker"; @@ -31651,6 +31624,15 @@ let sha512 = "QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="; }; }; + "ini-4.1.2" = { + name = "ini"; + packageName = "ini"; + version = "4.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz"; + sha512 = "AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw=="; + }; + }; "init-package-json-5.0.0" = { name = "init-package-json"; packageName = "init-package-json"; @@ -31687,15 +31669,6 @@ let sha512 = "rXckvqPBB0Krifk5rn/5LvQGmyXwCUpBfmTwbkQNBY9JY8RSl3b8OftBNEYxg4+SWUhEKcPifgope28uL9inlA=="; }; }; - "ink-select-input-4.2.1" = { - name = "ink-select-input"; - packageName = "ink-select-input"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ink-select-input/-/ink-select-input-4.2.1.tgz"; - sha512 = "WvlrYdwmdnD6/nE/9mNhaaanTQOKmwy/hT/vuAqbDec3PUQBQ8Pkwszii/8eGvDTx5bGiUHu18P9D5IoB/ERaw=="; - }; - }; "ink-select-input-4.2.2" = { name = "ink-select-input"; packageName = "ink-select-input"; @@ -31714,13 +31687,13 @@ let sha512 = "uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ=="; }; }; - "ink-table-3.0.0" = { + "ink-table-3.1.0" = { name = "ink-table"; packageName = "ink-table"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ink-table/-/ink-table-3.0.0.tgz"; - sha512 = "RtcYjenHKZWjnwVNQ6zSYWMOLKwkWscDAJsqUQXftyjkYho1gGrluGss87NOoIzss0IKr74lKasd6MtlQYALiA=="; + url = "https://registry.npmjs.org/ink-table/-/ink-table-3.1.0.tgz"; + sha512 = "qxVb4DIaEaJryvF9uZGydnmP9Hkmas3DCKVpEcBYC0E4eJd3qNgNe+PZKuzgCERFe9LfAS1TNWxCr9+AU4v3YA=="; }; }; "ink-testing-library-2.1.0" = { @@ -31750,13 +31723,13 @@ let sha512 = "rVsqnw4tQEAJUoknU09+zHdDf30GJdkumkHr0iz/TOYMYEZJkYqziQSGJAM+Z+M603EDfO89+Nxyn/Ko2Zknfw=="; }; }; - "inline-source-map-0.6.2" = { + "inline-source-map-0.6.3" = { name = "inline-source-map"; packageName = "inline-source-map"; - version = "0.6.2"; + version = "0.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz"; - sha512 = "0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA=="; + url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.3.tgz"; + sha512 = "1aVsPEsJWMJq/pdMU61CDlm1URcW702MTB4w9/zUjMus6H/Py8o7g68Pr9D4I6QluWGt/KdmswuRhaA05xVR1w=="; }; }; "innertext-1.0.3" = { @@ -31822,13 +31795,22 @@ let sha512 = "M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg=="; }; }; - "inquirer-9.2.14" = { + "inquirer-9.2.15" = { name = "inquirer"; packageName = "inquirer"; - version = "9.2.14"; + version = "9.2.15"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.14.tgz"; - sha512 = "4ByIMt677Iz5AvjyKrDpzaepIyMewNvDcvwpVVRZNmy9dLakVoVgdCHZXbK1SlVJra1db0JZ6XkJyHsanpdrdQ=="; + url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.15.tgz"; + sha512 = "vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg=="; + }; + }; + "inquirer-9.2.16" = { + name = "inquirer"; + packageName = "inquirer"; + version = "9.2.16"; + src = fetchurl { + url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.16.tgz"; + sha512 = "qzgbB+yNjgSzk2omeqMDtO9IgJet/UL67luT1MaaggRpGK73DBQct5Q4pipwFQcIKK1GbMODYd4UfsRCkSP1DA=="; }; }; "inquirer-autocomplete-prompt-3.0.1" = { @@ -32083,13 +32065,13 @@ let sha512 = "pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA=="; }; }; - "ip-1.1.8" = { + "ip-1.1.9" = { name = "ip"; packageName = "ip"; - version = "1.1.8"; + version = "1.1.9"; src = fetchurl { - url = "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz"; - sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; + url = "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz"; + sha512 = "cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ=="; }; }; "ip-address-6.1.0" = { @@ -32488,6 +32470,15 @@ let sha512 = "bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw=="; }; }; + "is-data-view-1.0.1" = { + name = "is-data-view"; + packageName = "is-data-view"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz"; + sha512 = "AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w=="; + }; + }; "is-date-object-1.0.5" = { name = "is-date-object"; packageName = "is-date-object"; @@ -32884,13 +32875,13 @@ let sha512 = "bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ=="; }; }; - "is-map-2.0.2" = { + "is-map-2.0.3" = { name = "is-map"; packageName = "is-map"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz"; - sha512 = "cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg=="; + url = "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz"; + sha512 = "1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="; }; }; "is-my-ip-valid-1.0.1" = { @@ -32911,15 +32902,6 @@ let sha512 = "1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw=="; }; }; - "is-name-taken-2.0.0" = { - name = "is-name-taken"; - packageName = "is-name-taken"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-name-taken/-/is-name-taken-2.0.0.tgz"; - sha512 = "W+FUWF5g7ONVJTx3rldZeVizmPzrMMUdscpSQ96vyYerx+4b2NcqaujLJJDWruGzE0FjzGZO9RFIipOGxx/WIw=="; - }; - }; "is-nan-1.3.2" = { name = "is-nan"; packageName = "is-nan"; @@ -32947,13 +32929,13 @@ let sha512 = "czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug=="; }; }; - "is-negative-zero-2.0.2" = { + "is-negative-zero-2.0.3" = { name = "is-negative-zero"; packageName = "is-negative-zero"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; - sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; + url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"; + sha512 = "5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="; }; }; "is-network-error-1.0.1" = { @@ -33361,22 +33343,22 @@ let sha512 = "ezxLUq30kiTvP0w/5n9tj4qTOKlrA07Oty1hwTQ+lcqw11x6uc8sp7VRb2OVGRzKfCHZ2A22T5Zsau/Q2Akb0g=="; }; }; - "is-set-2.0.2" = { + "is-set-2.0.3" = { name = "is-set"; packageName = "is-set"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz"; - sha512 = "+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g=="; + url = "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz"; + sha512 = "iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="; }; }; - "is-shared-array-buffer-1.0.2" = { + "is-shared-array-buffer-1.0.3" = { name = "is-shared-array-buffer"; packageName = "is-shared-array-buffer"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; - sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; + url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz"; + sha512 = "nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg=="; }; }; "is-ssh-1.4.0" = { @@ -33577,13 +33559,13 @@ let sha512 = "+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A=="; }; }; - "is-weakmap-2.0.1" = { + "is-weakmap-2.0.2" = { name = "is-weakmap"; packageName = "is-weakmap"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz"; - sha512 = "NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA=="; + url = "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz"; + sha512 = "K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="; }; }; "is-weakref-1.0.2" = { @@ -33595,13 +33577,13 @@ let sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; }; }; - "is-weakset-2.0.2" = { + "is-weakset-2.0.3" = { name = "is-weakset"; packageName = "is-weakset"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz"; - sha512 = "t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg=="; + url = "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz"; + sha512 = "LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ=="; }; }; "is-what-3.14.1" = { @@ -33892,13 +33874,13 @@ let sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; }; }; - "istanbul-reports-3.1.6" = { + "istanbul-reports-3.1.7" = { name = "istanbul-reports"; packageName = "istanbul-reports"; - version = "3.1.6"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz"; - sha512 = "TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg=="; + url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz"; + sha512 = "BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g=="; }; }; "isuri-2.0.3" = { @@ -34099,13 +34081,13 @@ let sha512 = "NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ=="; }; }; - "joi-17.12.1" = { + "joi-17.12.2" = { name = "joi"; packageName = "joi"; - version = "17.12.1"; + version = "17.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/joi/-/joi-17.12.1.tgz"; - sha512 = "vtxmq+Lsc5SlfqotnfVjlViWfOL9nt/avKNbKYizwf6gsCfq9NYY/ceYRMFD8XDdrjJ9abJyScWmhmIiy+XRtQ=="; + url = "https://registry.npmjs.org/joi/-/joi-17.12.2.tgz"; + sha512 = "RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw=="; }; }; "join-async-iterator-1.1.1" = { @@ -34171,13 +34153,13 @@ let sha512 = "fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg=="; }; }; - "js-base64-3.7.6" = { + "js-base64-3.7.7" = { name = "js-base64"; packageName = "js-base64"; - version = "3.7.6"; + version = "3.7.7"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.6.tgz"; - sha512 = "NPrWuHFxFUknr1KqJRDgUQPexQF0uIJWjeT+2KjEePhitQxQEx5EJBG1lVn5/hc8aLycTpXrDOgPQ6Zq+EDiTA=="; + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz"; + sha512 = "7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw=="; }; }; "js-cookie-3.0.5" = { @@ -34405,58 +34387,31 @@ let sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; }; }; - "jsii-1.94.0" = { + "jsii-1.95.0" = { name = "jsii"; packageName = "jsii"; - version = "1.94.0"; + version = "1.95.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.94.0.tgz"; - sha512 = "20KlKsBZlo7Ti6vfqTpKfZXnT2MKRGfh5bIPrwDODoCQmHNATfPFt1fs5+Wqd7xdrEj+A+sLAtjfHTw6i+sxCw=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.95.0.tgz"; + sha512 = "GvBqcZrhKZ5WV6u44w88aFym8G4Xkw9QRZuAAGYHOFJWiK/fyqeRPPgPkEBqfE+xs412JvGVdejUodKLlhEP9w=="; }; }; - "jsii-5.2.44" = { + "jsii-5.3.24" = { name = "jsii"; packageName = "jsii"; - version = "5.2.44"; + version = "5.3.24"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.2.44.tgz"; - sha512 = "Z7sTqYzQ5yoJU/ie+svjqSzrOF5rl4pW/bojvCb/7MfJ+SaGqhMUQMxQGTfqmSvauME8JoVYqwMH89x6qreJ8A=="; + url = "https://registry.npmjs.org/jsii/-/jsii-5.3.24.tgz"; + sha512 = "x6U15Q8OnwOCFGCjUAyq5qlxGWccc+tOVMEDBOlFq6jLeLgWbVwjG+4chObDffXC/TCUhxeQipUlsuOXCPeyzQ=="; }; }; - "jsii-5.3.18" = { + "jsii-5.3.29" = { name = "jsii"; packageName = "jsii"; - version = "5.3.18"; + version = "5.3.29"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.3.18.tgz"; - sha512 = "1BQT5rMDNiyZp7u5461EQQuEOnPJv0UEFlTHgDZJqqCeh1OquTpB0fYFfpJnsvl4C1aleBYo3f0QMzvV7wLVjw=="; - }; - }; - "jsii-5.3.2" = { - name = "jsii"; - packageName = "jsii"; - version = "5.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.3.2.tgz"; - sha512 = "wwwp47+6orlMXpny4dlTOP6776cBo2WFDgxZyGjQaV4VWNydsJiTcinuJzCj1XVZicBhpAnkuBMr89+2aT8Dcg=="; - }; - }; - "jsii-5.3.3" = { - name = "jsii"; - packageName = "jsii"; - version = "5.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.3.3.tgz"; - sha512 = "M+kAUKJiLXXJXKYmBB0Q2n1aGoeNHyzMCLAx7402JqXSLxH4JGh6kOf4EH3U3LmQKzv2kxOHMRCg3Ssh82KtrQ=="; - }; - }; - "jsii-pacmak-1.93.0" = { - name = "jsii-pacmak"; - packageName = "jsii-pacmak"; - version = "1.93.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.93.0.tgz"; - sha512 = "A2rn4seHN+1/VzwQ0H8t6zxAz9HpZWbF+kVi9MpNgqd2iiNYxS1XNyirzyQ8D3e5ZNWoPAyFVuGqkXrtdo4etg=="; + url = "https://registry.npmjs.org/jsii/-/jsii-5.3.29.tgz"; + sha512 = "vEEOtjD8s/C8ORHvN87Bt9jHcY1diJoC1sS+TVnCkeb4V9q5fOEVr4gl/FsU5ea8dSWZHdd7VqCtr0jYAwKleg=="; }; }; "jsii-pacmak-1.94.0" = { @@ -34468,40 +34423,40 @@ let sha512 = "L5s3RZ0AOx1XfAhXsEjyeCteVrw6nwJLynL+t93eXVDcw7NFT7S0fCFXzQ4lpYQ23P/yVpSIy32J3zpUOf4uDQ=="; }; }; - "jsii-reflect-1.94.0" = { + "jsii-pacmak-1.95.0" = { + name = "jsii-pacmak"; + packageName = "jsii-pacmak"; + version = "1.95.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.95.0.tgz"; + sha512 = "h/eo3p3jG4/Wtb9WdavvcgXzyN5QXZck3k0xvIWp5SKxFLorQ+TWhY7BHG0e+VXl+mxcni6BuQ5wFLavq65RQQ=="; + }; + }; + "jsii-reflect-1.95.0" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.94.0"; + version = "1.95.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.94.0.tgz"; - sha512 = "Oupkl5iFFeq3GJ2a/fQNMnsXRMISmEKklPHksYs/l6MqrNFUQ5kg9oj1qxjSyaCpvvXBI8Eh7y73dqNE8w4cVw=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.95.0.tgz"; + sha512 = "/o/UdqX1MtOmavwAF+cqMAHs7Ewi/j2a9PVGYTzi3U4M5Cvxsyrk7e1EWKvw/NHK0JZmmKd1UqE0Mz5EHqZSxw=="; }; }; - "jsii-rosetta-1.94.0" = { + "jsii-rosetta-1.95.0" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.94.0"; + version = "1.95.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.94.0.tgz"; - sha512 = "FLQAxdZJsH0sg87S9u/e4+HDGr6Pth+UZ4ool3//MFMsw+C0iwagAlNVhZuyohMdlvumpQeg9Gr+FvoBZFoBrA=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.95.0.tgz"; + sha512 = "J9tQy6wT7ERgXC73ubjWmkp8EO5SHPn9eDkTKLmAi+AkMAOAJEb1oxaA1bKPBf/2SQp6wDU5TUfEpx6ukSmc1g=="; }; }; - "jsii-rosetta-5.3.7" = { + "jsii-rosetta-5.3.27" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "5.3.7"; + version = "5.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.3.7.tgz"; - sha512 = "x9knz6DaGPwLucSUAZNxz8EQW3WwsCBrZldWs/FBVKKbdszSH5HHvXKG7elpitqzj+7XDFH9QnKv/bLfUWy5lA=="; - }; - }; - "jsii-srcmak-0.1.1005" = { - name = "jsii-srcmak"; - packageName = "jsii-srcmak"; - version = "0.1.1005"; - src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.1005.tgz"; - sha512 = "JnL8UNW3akZW+XYhrAU5/wtpmyaEHwTrb455PsYMYpHU1OsWcqAHBdn2xdXV05X754yAYKAEv9ga+KV2OVNDOw=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.3.27.tgz"; + sha512 = "aNetT3WwckB72qCNAvSCV8a+gHm+ghfHDcFGKyx3zlEI6V5hWyR6HL4sn8EHZKF5RfOcIiGNaZ3IOPh7qnCfDg=="; }; }; "jsii-srcmak-0.1.1039" = { @@ -34513,15 +34468,6 @@ let sha512 = "3lBjyxBy5UpPGK8bXFmVRzaoK6caDQ5DO40Qbyv3LOWtrsuUQmuVI2/5wRwNtfg6sFzOFD3+kE3LZuNXo7QE/Q=="; }; }; - "jsii-srcmak-0.1.999" = { - name = "jsii-srcmak"; - packageName = "jsii-srcmak"; - version = "0.1.999"; - src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.999.tgz"; - sha512 = "8jhGRjceKdvYlW3rujnrZWTa1bss7TUhcsVrRsT7Q+MDYxRZan0FsqyHKrjfb8GYpgSh5DVpc9iYCwmn6VgXsw=="; - }; - }; "json-buffer-3.0.0" = { name = "json-buffer"; packageName = "json-buffer"; @@ -34540,15 +34486,6 @@ let sha512 = "4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="; }; }; - "json-joy-11.28.0" = { - name = "json-joy"; - packageName = "json-joy"; - version = "11.28.0"; - src = fetchurl { - url = "https://registry.npmjs.org/json-joy/-/json-joy-11.28.0.tgz"; - sha512 = "WTq2tYD2r+0rUFId4gtUjwejV20pArh4q2WRJKxJdwLlPFHyW94HwwB2vUr5lUJTVkehhhWEVLwOUI0MSacNIw=="; - }; - }; "json-parse-better-errors-1.0.2" = { name = "json-parse-better-errors"; packageName = "json-parse-better-errors"; @@ -34792,13 +34729,13 @@ let sha512 = "oDPf7b6nFDKcX2qt5OLI/ZwGwH43qS/g2Z98UWo8ChoNtVMYdGa3Y48WHvjPqvNKnTUa2fOanvHFeE7ZxkiboQ=="; }; }; - "jsonata-1.8.6" = { + "jsonata-1.8.7" = { name = "jsonata"; packageName = "jsonata"; - version = "1.8.6"; + version = "1.8.7"; src = fetchurl { - url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.6.tgz"; - sha512 = "ZH2TPYdNP2JecOl/HvrH47Xc+9imibEMQ4YqKy/F/FrM+2a6vfbGxeCX23dB9Fr6uvGwv+ghf1KxWB3iZk09wA=="; + url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.7.tgz"; + sha512 = "tOW2/hZ+nR2bcQZs+0T62LVe5CHaNa3laFFWb/262r39utN6whJGBF7IR2Wq1QXrDbhftolk5gggW8uUJYlBTQ=="; }; }; "jsonc-parser-1.0.3" = { @@ -35422,6 +35359,15 @@ let sha512 = "Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A=="; }; }; + "ky-1.2.2" = { + name = "ky"; + packageName = "ky"; + version = "1.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ky/-/ky-1.2.2.tgz"; + sha512 = "gYA2QOI3uIaImJPJjaBbLCdvKHzwxsuB03s7PjrXmoO6tcn6k53rwYoSRgqrmVsEV6wFFegOXDVjABxFZ0aRSg=="; + }; + }; "labeled-stream-splicer-2.0.2" = { name = "labeled-stream-splicer"; packageName = "labeled-stream-splicer"; @@ -35692,15 +35638,6 @@ let sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; }; }; - "levenshtein-1.0.5" = { - name = "levenshtein"; - packageName = "levenshtein"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/levenshtein/-/levenshtein-1.0.5.tgz"; - sha512 = "UQf1nnmxjl7O0+snDXj2YF2r74Gkya8ZpnegrUBYN9tikh2dtxV/ey8e07BO5wwo0i76yjOvbDhFHdcPEiH9aA=="; - }; - }; "levn-0.3.0" = { name = "levn"; packageName = "levn"; @@ -35773,13 +35710,13 @@ let sha512 = "yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw=="; }; }; - "lightningcss-1.23.0" = { + "lightningcss-1.24.1" = { name = "lightningcss"; packageName = "lightningcss"; - version = "1.23.0"; + version = "1.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.23.0.tgz"; - sha512 = "SEArWKMHhqn/0QzOtclIwH5pXIYQOUEkF8DgICd/105O+GCgd7jxjNod/QPnBCSWvpRHQBGVz5fQ9uScby03zA=="; + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.24.1.tgz"; + sha512 = "kUpHOLiH5GB0ERSv4pxqlL0RYKnOXtgGtVe7shDGfhS0AZ4D1ouKFYAcLcZhql8aMspDNzaUCumGHZ78tb2fTg=="; }; }; "lilconfig-2.1.0" = { @@ -35791,13 +35728,13 @@ let sha512 = "utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="; }; }; - "lilconfig-3.1.0" = { + "lilconfig-3.1.1" = { name = "lilconfig"; packageName = "lilconfig"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.0.tgz"; - sha512 = "p3cz0JV5vw/XeouBU3Ldnp+ZkBjE+n8ydJ4mcwBrOiXXPqNlrzGBqWs9X4MWF7f+iKUBu794Y8Hh8yawiJbCjw=="; + url = "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz"; + sha512 = "O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ=="; }; }; "limit-spawn-0.0.3" = { @@ -35863,13 +35800,13 @@ let sha512 = "8oI90ziJlcTi4k2DnQ0o0Waa2Uk00xbIN8ylvhstEqfJtiRaB4LJ6u8H63If7zTrnnuhCw8SjTJoHf+wLs3ICg=="; }; }; - "link-check-5.2.0" = { + "link-check-5.3.0" = { name = "link-check"; packageName = "link-check"; - version = "5.2.0"; + version = "5.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/link-check/-/link-check-5.2.0.tgz"; - sha512 = "xRbhYLaGDw7eRDTibTAcl6fXtmUQ13vkezQiTqshHHdGueQeumgxxmQMIOmJYsh2p8BF08t8thhDQ++EAOOq3w=="; + url = "https://registry.npmjs.org/link-check/-/link-check-5.3.0.tgz"; + sha512 = "Jhb7xueDgQgBaZzkfOtAyOZEZAIMJQIjUpYD2QY/zEB+LKTY1tWiBwZg8QIDbzQdPBOcqzg7oLQDNcES/tQmXg=="; }; }; "linkify-it-2.2.0" = { @@ -37510,15 +37447,6 @@ let sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; }; }; - "lru_map-0.3.3" = { - name = "lru_map"; - packageName = "lru_map"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz"; - sha512 = "Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ=="; - }; - }; "lt_donthave-1.0.1" = { name = "lt_donthave"; packageName = "lt_donthave"; @@ -37574,13 +37502,13 @@ let sha512 = "RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="; }; }; - "magic-string-0.30.7" = { + "magic-string-0.30.8" = { name = "magic-string"; packageName = "magic-string"; - version = "0.30.7"; + version = "0.30.8"; src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.30.7.tgz"; - sha512 = "8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA=="; + url = "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz"; + sha512 = "ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ=="; }; }; "magicli-0.0.5" = { @@ -37970,13 +37898,13 @@ let sha512 = "UB/IbzjWazwTlNAX0pvWNlJS8NKsOQ4syrXZQ/C72j+jirrsjVRT627lCaylrKJFBQWfRsPmIVQie8x38DEhAQ=="; }; }; - "markdown-link-extractor-3.1.0" = { + "markdown-link-extractor-4.0.2" = { name = "markdown-link-extractor"; packageName = "markdown-link-extractor"; - version = "3.1.0"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-3.1.0.tgz"; - sha512 = "r0NEbP1dsM+IqB62Ru9TXLP/HDaTdBNIeylYXumuBi6Xv4ufjE1/g3TnslYL8VNqNcGAGbMptQFHrrdfoZ/Sug=="; + url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-4.0.2.tgz"; + sha512 = "5cUOu4Vwx1wenJgxaudsJ8xwLUMN7747yDJX3V/L7+gi3e4MsCm7w5nbrDQQy8nEfnl4r5NV3pDXMAjhGXYXAw=="; }; }; "markdown-table-2.0.0" = { @@ -37997,6 +37925,15 @@ let sha512 = "Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw=="; }; }; + "marked-12.0.1" = { + name = "marked"; + packageName = "marked"; + version = "12.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/marked/-/marked-12.0.1.tgz"; + sha512 = "Y1/V2yafOcOdWQCX0XpAKXzDakPOpn6U0YLxTJs3cww6VxOzZV1BTOOYWLvH3gX38cq+iLwljHHTnMtlDfg01Q=="; + }; + }; "marked-4.3.0" = { name = "marked"; packageName = "marked"; @@ -38573,13 +38510,13 @@ let sha512 = "EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ=="; }; }; - "memfs-4.7.1" = { + "memfs-4.7.7" = { name = "memfs"; packageName = "memfs"; - version = "4.7.1"; + version = "4.7.7"; src = fetchurl { - url = "https://registry.npmjs.org/memfs/-/memfs-4.7.1.tgz"; - sha512 = "29/L94MxlTPkJOCvLwWG4OIAfBPoB921eOLU4wr6RR4yQ40y/et8mroRE5t4rIQrLtmOACtLhZvGVKJgPGPDxQ=="; + url = "https://registry.npmjs.org/memfs/-/memfs-4.7.7.tgz"; + sha512 = "x9qc6k88J/VVwnfTkJV8pRRswJ2156Rc4w5rciRqKceFDZ0y1MqsNL9pkg5sE0GOcDzZYbonreALhaHzg1siFw=="; }; }; "memory-cache-0.2.0" = { @@ -38645,6 +38582,15 @@ let sha512 = "BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw=="; }; }; + "meow-13.2.0" = { + name = "meow"; + packageName = "meow"; + version = "13.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz"; + sha512 = "pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA=="; + }; + }; "meow-3.7.0" = { name = "meow"; packageName = "meow"; @@ -38717,13 +38663,13 @@ let sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; }; }; - "mermaid-10.5.1" = { + "mermaid-10.6.1" = { name = "mermaid"; packageName = "mermaid"; - version = "10.5.1"; + version = "10.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/mermaid/-/mermaid-10.5.1.tgz"; - sha512 = "+4mkGW5PptHDSae4YZ/Jw1pEOf0irrB/aCL6BwZcJPhr5+84UJBrQnHTvyPqCUz67tXkrDvSzWv4B+J2hLO78g=="; + url = "https://registry.npmjs.org/mermaid/-/mermaid-10.6.1.tgz"; + sha512 = "Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A=="; }; }; "meros-1.1.4" = { @@ -39653,13 +39599,13 @@ let sha512 = "vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw=="; }; }; - "mimic-function-5.0.0" = { + "mimic-function-5.0.1" = { name = "mimic-function"; packageName = "mimic-function"; - version = "5.0.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.0.tgz"; - sha512 = "RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g=="; + url = "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz"; + sha512 = "VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="; }; }; "mimic-response-1.0.1" = { @@ -39716,13 +39662,13 @@ let sha512 = "I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="; }; }; - "mini-css-extract-plugin-2.8.0" = { + "mini-css-extract-plugin-2.8.1" = { name = "mini-css-extract-plugin"; packageName = "mini-css-extract-plugin"; - version = "2.8.0"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz"; - sha512 = "CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg=="; + url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.1.tgz"; + sha512 = "/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA=="; }; }; "mini-svg-data-uri-1.4.4" = { @@ -39734,13 +39680,13 @@ let sha512 = "r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg=="; }; }; - "miniflare-3.20240129.3" = { + "miniflare-3.20240304.2" = { name = "miniflare"; packageName = "miniflare"; - version = "3.20240129.3"; + version = "3.20240304.2"; src = fetchurl { - url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20240129.3.tgz"; - sha512 = "PCmLJ+UvtbpPj/fgNzTGbd+U5QBkt3akRNcdks9RBJU2SH+gUCp7iahsaI4GA344NX5MIbC6ctw1A6TfcA+aFA=="; + url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20240304.2.tgz"; + sha512 = "yQ5TBKv7TlvF8khFvvH+1WWk8cBnaLgNzcbJ5DLQOdecxdDxUCVlN38HThd6Nhcz6EY+ckDkww8FkugUbSSpIQ=="; }; }; "minilog-3.1.0" = { @@ -39824,15 +39770,6 @@ let sha512 = "nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g=="; }; }; - "minimatch-5.1.0" = { - name = "minimatch"; - packageName = "minimatch"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz"; - sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; - }; - }; "minimatch-5.1.2" = { name = "minimatch"; packageName = "minimatch"; @@ -40625,13 +40562,13 @@ let sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; }; }; - "nan-2.18.0" = { + "nan-2.19.0" = { name = "nan"; packageName = "nan"; - version = "2.18.0"; + version = "2.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz"; - sha512 = "W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w=="; + url = "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz"; + sha512 = "nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw=="; }; }; "nanoid-2.1.11" = { @@ -40652,15 +40589,6 @@ let sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; }; }; - "nanoid-3.3.6" = { - name = "nanoid"; - packageName = "nanoid"; - version = "3.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz"; - sha512 = "BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="; - }; - }; "nanoid-3.3.7" = { name = "nanoid"; packageName = "nanoid"; @@ -41058,13 +40986,13 @@ let sha512 = "3yZ1vfGKOcv0dyyhUeqA0Qa6RsQ4SfUnL6o2IWR4sVg8kdnJo48XTWbMLdtnfiZTbCUdsMttNwyJcihEdGCZBw=="; }; }; - "node-abi-3.54.0" = { + "node-abi-3.56.0" = { name = "node-abi"; packageName = "node-abi"; - version = "3.54.0"; + version = "3.56.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.54.0.tgz"; - sha512 = "p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA=="; + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.56.0.tgz"; + sha512 = "fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q=="; }; }; "node-abort-controller-3.1.1" = { @@ -41760,13 +41688,13 @@ let sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; }; }; - "normalize-url-8.0.0" = { + "normalize-url-8.0.1" = { name = "normalize-url"; packageName = "normalize-url"; - version = "8.0.0"; + version = "8.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz"; - sha512 = "uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw=="; + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz"; + sha512 = "IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w=="; }; }; "now-and-later-2.0.1" = { @@ -41778,13 +41706,13 @@ let sha512 = "KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ=="; }; }; - "npm-9.9.2" = { + "npm-9.8.1" = { name = "npm"; packageName = "npm"; - version = "9.9.2"; + version = "9.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.9.2.tgz"; - sha512 = "D3tV+W0PzJOlwo8YmO6fNzaB1CrMVYd1V+2TURF6lbCbmZKqMsYgeQfPVvqiM3zbNSJPhFEnmlEXIogH2Vq7PQ=="; + url = "https://registry.npmjs.org/npm/-/npm-9.8.1.tgz"; + sha512 = "AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw=="; }; }; "npm-bundled-1.1.2" = { @@ -41832,13 +41760,13 @@ let sha512 = "W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw=="; }; }; - "npm-name-7.1.1" = { + "npm-name-8.0.0" = { name = "npm-name"; packageName = "npm-name"; - version = "7.1.1"; + version = "8.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm-name/-/npm-name-7.1.1.tgz"; - sha512 = "lyOwsFndLoozriMEsaqJ5lXvhCATYOEhDvxlom8TNvB9a/htDXuLgpVhMUOBd9zCewUXCyBXAPxrGr2TK2adgQ=="; + url = "https://registry.npmjs.org/npm-name/-/npm-name-8.0.0.tgz"; + sha512 = "DIuCGcKYYhASAZW6Xh/tiaGMko8IHOHe0n3zOA7SzTi0Yvy00x8L7sa5yNiZ75Ny58O/KeRtNouy8Ut6gPbKiw=="; }; }; "npm-normalize-package-bin-1.0.1" = { @@ -42021,13 +41949,13 @@ let sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; }; }; - "npm-run-path-5.2.0" = { + "npm-run-path-5.3.0" = { name = "npm-run-path"; packageName = "npm-run-path"; - version = "5.2.0"; + version = "5.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.2.0.tgz"; - sha512 = "W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg=="; + url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz"; + sha512 = "ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ=="; }; }; "npmconf-2.1.3" = { @@ -42165,13 +42093,13 @@ let sha512 = "ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="; }; }; - "nx-18.0.4" = { + "nx-18.1.2" = { name = "nx"; packageName = "nx"; - version = "18.0.4"; + version = "18.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/nx/-/nx-18.0.4.tgz"; - sha512 = "Njb1fGppOw/wM7nOA1hYlLduV2aL4PdXSv5QS5cVYicHT5tw5RnG/0z4j9e6QfFj2EydxVeDUtlGR98diZ3/Yw=="; + url = "https://registry.npmjs.org/nx/-/nx-18.1.2.tgz"; + sha512 = "E414xp6lVtiTGdDUMVo72G96G66t7oJMqmcHRMEZ/mVq5ZpNWUhfMuRq5Fh8orXPtrM3xk5SHokmmFvo5PKC+g=="; }; }; "nyc-15.1.0" = { @@ -42318,13 +42246,13 @@ let sha512 = "5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ=="; }; }; - "object-is-1.1.5" = { + "object-is-1.1.6" = { name = "object-is"; packageName = "object-is"; - version = "1.1.5"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz"; - sha512 = "3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw=="; + url = "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz"; + sha512 = "F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q=="; }; }; "object-keys-0.4.0" = { @@ -42399,22 +42327,22 @@ let sha512 = "c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA=="; }; }; - "object.entries-1.1.7" = { + "object.entries-1.1.8" = { name = "object.entries"; packageName = "object.entries"; - version = "1.1.7"; + version = "1.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz"; - sha512 = "jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA=="; + url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz"; + sha512 = "cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ=="; }; }; - "object.fromentries-2.0.7" = { + "object.fromentries-2.0.8" = { name = "object.fromentries"; packageName = "object.fromentries"; - version = "2.0.7"; + version = "2.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz"; - sha512 = "UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA=="; + url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz"; + sha512 = "k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ=="; }; }; "object.getownpropertydescriptors-2.1.7" = { @@ -42426,13 +42354,13 @@ let sha512 = "PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g=="; }; }; - "object.groupby-1.0.2" = { + "object.groupby-1.0.3" = { name = "object.groupby"; packageName = "object.groupby"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz"; - sha512 = "bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw=="; + url = "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz"; + sha512 = "+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ=="; }; }; "object.hasown-1.1.3" = { @@ -42480,13 +42408,13 @@ let sha512 = "naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw=="; }; }; - "object.values-1.1.7" = { + "object.values-1.2.0" = { name = "object.values"; packageName = "object.values"; - version = "1.1.7"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz"; - sha512 = "aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng=="; + url = "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz"; + sha512 = "yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ=="; }; }; "object_values-0.1.2" = { @@ -42642,13 +42570,13 @@ let sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; }; }; - "oo-ascii-tree-1.94.0" = { + "oo-ascii-tree-1.95.0" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.94.0"; + version = "1.95.0"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.94.0.tgz"; - sha512 = "i6UllReifEW2InBJHVFJNxrledRp3yr/yKVbpDmgWTguRe8/7BtBK3njzjvZNcPLEAtiWWxr0o9SpwYjapmTOw=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.95.0.tgz"; + sha512 = "e9LWcjDtQIwFHICbeAjv2+RGJUFu3+A6oTjpymH+gfxATqPqcUV5oeGON9a/1uBr8Q0bc2/yEHVp1A/dp1iaog=="; }; }; "open-0.0.2" = { @@ -42669,13 +42597,13 @@ let sha512 = "+X/dJYLapVO1VbC620DhtNZK9U4/kQVaTQp/Gh7cb6UTLYfGZzzU2ZXkWrOA/wBrf4UqAFwtLqXYTxe4tSnWQQ=="; }; }; - "open-10.0.3" = { + "open-10.1.0" = { name = "open"; packageName = "open"; - version = "10.0.3"; + version = "10.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/open/-/open-10.0.3.tgz"; - sha512 = "dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A=="; + url = "https://registry.npmjs.org/open/-/open-10.1.0.tgz"; + sha512 = "mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw=="; }; }; "open-7.3.0" = { @@ -42705,15 +42633,6 @@ let sha512 = "7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ=="; }; }; - "open-9.1.0" = { - name = "open"; - packageName = "open"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/open/-/open-9.1.0.tgz"; - sha512 = "OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg=="; - }; - }; "openapi-to-graphql-2.2.5" = { name = "openapi-to-graphql"; packageName = "openapi-to-graphql"; @@ -42741,13 +42660,13 @@ let sha512 = "KL1mKwkZii5ce+tb24KCUmQHyWB/oanG5fzUY35UB+wenWJv4Kr/IWBntpn5R8ODiJcxx13ZDophcpHnLGeIOw=="; }; }; - "openpgp-5.11.0" = { + "openpgp-5.11.1" = { name = "openpgp"; packageName = "openpgp"; - version = "5.11.0"; + version = "5.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/openpgp/-/openpgp-5.11.0.tgz"; - sha512 = "hytHsxIPtRhuh6uAmoBUThHSwHSX3imLu7x4453T+xkVqIw49rl22MRD4KQIAQdCDoVdouejzYgcuLmMA/2OAA=="; + url = "https://registry.npmjs.org/openpgp/-/openpgp-5.11.1.tgz"; + sha512 = "TynUBPuaSI7dN0gP+A38CjNRLxkOkkptefNanalDQ71BFAKKm+dLbksymSW5bUrB7RcAneMySL/Y+r/TbLpOnQ=="; }; }; "opentracing-0.14.7" = { @@ -42849,15 +42768,6 @@ let sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg=="; }; }; - "ora-1.4.0" = { - name = "ora"; - packageName = "ora"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz"; - sha512 = "iMK1DOQxzzh2MBlVsU42G80mnrvUhqsMh74phHtDlrcTZPK0pH6o7l7DRshK+0YsxDyEuaOkziVdvM3T0QTzpw=="; - }; - }; "ora-3.4.0" = { name = "ora"; packageName = "ora"; @@ -43002,15 +42912,6 @@ let sha512 = "LG7wTzy4eYV/KolFeO4AwWPzQSARvCONzd5oHQlNvYOlji2r/zjbdK8pyObZN84uZlk6rQBWrJrAdJfh/SX0Hg=="; }; }; - "ow-1.1.1" = { - name = "ow"; - packageName = "ow"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ow/-/ow-1.1.1.tgz"; - sha512 = "sJBRCbS5vh1Jp9EOgwp1Ws3c16lJrUkJYlvWTYC03oyiYVwS/ns7lKRWow4w4XjDyTrA2pplQv4B2naWSR6yDA=="; - }; - }; "p-any-2.1.0" = { name = "p-any"; packageName = "p-any"; @@ -43227,15 +43128,6 @@ let sha512 = "wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="; }; }; - "p-lock-2.1.0" = { - name = "p-lock"; - packageName = "p-lock"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-lock/-/p-lock-2.1.0.tgz"; - sha512 = "pi2yT8gNhVrV4LgsUvJWQy58TXH1HG2+NXDby9+UrsS/9fXb0FJH9aCxbdHJ0EAQ6XC7ggSP6GAzuR5puDArUQ=="; - }; - }; "p-map-2.1.0" = { name = "p-map"; packageName = "p-map"; @@ -43281,6 +43173,15 @@ let sha512 = "T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw=="; }; }; + "p-map-7.0.1" = { + name = "p-map"; + packageName = "p-map"; + version = "7.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/p-map/-/p-map-7.0.1.tgz"; + sha512 = "2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw=="; + }; + }; "p-map-series-2.1.0" = { name = "p-map-series"; packageName = "p-map-series"; @@ -43452,6 +43353,24 @@ let sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw=="; }; }; + "pac-proxy-agent-7.0.1" = { + name = "pac-proxy-agent"; + packageName = "pac-proxy-agent"; + version = "7.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz"; + sha512 = "ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A=="; + }; + }; + "pac-resolver-7.0.1" = { + name = "pac-resolver"; + packageName = "pac-resolver"; + version = "7.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz"; + sha512 = "5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg=="; + }; + }; "package-hash-4.0.0" = { name = "package-hash"; packageName = "package-hash"; @@ -43524,15 +43443,6 @@ let sha512 = "mtKKtCeSZMtWcc5hHJS6OlEGP7J9g7WN6vWCCZi2hCXFag/Zmjokh6WFFTQb9TuMnBcZpRjhhMQyOyglPCAahw=="; }; }; - "package-name-conflict-1.0.3" = { - name = "package-name-conflict"; - packageName = "package-name-conflict"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/package-name-conflict/-/package-name-conflict-1.0.3.tgz"; - sha512 = "DPBNWSUWC0wPofXeNThao0uP4a93J7r90UyhagmJS0QcacTTkorZwXYsOop70phn1hKdcf/2e9lJIhazS8bx5A=="; - }; - }; "pacote-17.0.6" = { name = "pacote"; packageName = "pacote"; @@ -43596,13 +43506,13 @@ let sha512 = "mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg=="; }; }; - "parse-asn1-5.1.6" = { + "parse-asn1-5.1.7" = { name = "parse-asn1"; packageName = "parse-asn1"; - version = "5.1.6"; + version = "5.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"; - sha512 = "RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw=="; + url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz"; + sha512 = "CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg=="; }; }; "parse-author-2.0.0" = { @@ -43776,24 +43686,6 @@ let sha512 = "rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA=="; }; }; - "parse-json-object-1.1.0" = { - name = "parse-json-object"; - packageName = "parse-json-object"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json-object/-/parse-json-object-1.1.0.tgz"; - sha512 = "4w5s6uJY1tW9REY8UwUOyaZKSKsrbQrMEzlV/Le/g5t4iMWuuyK83pZZ0OZimSOL9iyv2ORvRSgz71Ekd7iD3g=="; - }; - }; - "parse-json-object-2.0.1" = { - name = "parse-json-object"; - packageName = "parse-json-object"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json-object/-/parse-json-object-2.0.1.tgz"; - sha512 = "/oF7PUUBjCqHmMEE6xIQeX5ZokQ9+miudACzPt4KBU2qi6CxZYPdisPXx4ad7wpZJYi2ZpcW2PacLTU3De3ebw=="; - }; - }; "parse-latin-5.0.1" = { name = "parse-latin"; packageName = "parse-latin"; @@ -44919,6 +44811,15 @@ let sha512 = "LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow=="; }; }; + "pnpm-sync-lib-0.1.4" = { + name = "pnpm-sync-lib"; + packageName = "pnpm-sync-lib"; + version = "0.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/pnpm-sync-lib/-/pnpm-sync-lib-0.1.4.tgz"; + sha512 = "3xwsXcsu+lj2l1nTF0TcgjHuMrnPpQJqHioPj5DTL9gFU+RSsoND2nEMelOo9qAz+BlPelxXZOc5z1Tgs7gwiQ=="; + }; + }; "pony-cause-1.1.1" = { name = "pony-cause"; packageName = "pony-cause"; @@ -44964,6 +44865,15 @@ let sha512 = "xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg=="; }; }; + "possible-typed-array-names-1.0.0" = { + name = "possible-typed-array-names"; + packageName = "possible-typed-array-names"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz"; + sha512 = "d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q=="; + }; + }; "postcss-7.0.39" = { name = "postcss"; packageName = "postcss"; @@ -44973,13 +44883,13 @@ let sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; }; }; - "postcss-8.4.35" = { + "postcss-8.4.36" = { name = "postcss"; packageName = "postcss"; - version = "8.4.35"; + version = "8.4.36"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz"; - sha512 = "u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.36.tgz"; + sha512 = "/n7eumA6ZjFHAsbX30yhHup/IMkOmlmvtEi7P+6RMYf+bGJSUHc3geH4a0NSZxAz/RJfiS9tooCTs9LAVYUZKw=="; }; }; "postcss-calc-8.2.4" = { @@ -45009,13 +44919,13 @@ let sha512 = "UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ=="; }; }; - "postcss-colormin-6.0.2" = { + "postcss-colormin-6.1.0" = { name = "postcss-colormin"; packageName = "postcss-colormin"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz"; - sha512 = "TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw=="; + url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz"; + sha512 = "x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw=="; }; }; "postcss-convert-values-5.1.3" = { @@ -45027,13 +44937,13 @@ let sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA=="; }; }; - "postcss-convert-values-6.0.2" = { + "postcss-convert-values-6.1.0" = { name = "postcss-convert-values"; packageName = "postcss-convert-values"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz"; - sha512 = "aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw=="; + url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz"; + sha512 = "zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w=="; }; }; "postcss-discard-comments-5.1.2" = { @@ -45045,13 +44955,13 @@ let sha512 = "+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ=="; }; }; - "postcss-discard-comments-6.0.1" = { + "postcss-discard-comments-6.0.2" = { name = "postcss-discard-comments"; packageName = "postcss-discard-comments"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz"; - sha512 = "f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg=="; + url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz"; + sha512 = "65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw=="; }; }; "postcss-discard-duplicates-5.1.0" = { @@ -45063,13 +44973,13 @@ let sha512 = "zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw=="; }; }; - "postcss-discard-duplicates-6.0.1" = { + "postcss-discard-duplicates-6.0.3" = { name = "postcss-discard-duplicates"; packageName = "postcss-discard-duplicates"; - version = "6.0.1"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz"; - sha512 = "1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg=="; + url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz"; + sha512 = "+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw=="; }; }; "postcss-discard-empty-5.1.1" = { @@ -45081,13 +44991,13 @@ let sha512 = "zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A=="; }; }; - "postcss-discard-empty-6.0.1" = { + "postcss-discard-empty-6.0.3" = { name = "postcss-discard-empty"; packageName = "postcss-discard-empty"; - version = "6.0.1"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz"; - sha512 = "yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg=="; + url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz"; + sha512 = "znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ=="; }; }; "postcss-discard-overridden-5.1.0" = { @@ -45099,13 +45009,13 @@ let sha512 = "21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw=="; }; }; - "postcss-discard-overridden-6.0.1" = { + "postcss-discard-overridden-6.0.2" = { name = "postcss-discard-overridden"; packageName = "postcss-discard-overridden"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz"; - sha512 = "qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA=="; + url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz"; + sha512 = "j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ=="; }; }; "postcss-html-0.36.0" = { @@ -45180,13 +45090,13 @@ let sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ=="; }; }; - "postcss-merge-longhand-6.0.2" = { + "postcss-merge-longhand-6.0.4" = { name = "postcss-merge-longhand"; packageName = "postcss-merge-longhand"; - version = "6.0.2"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz"; - sha512 = "+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw=="; + url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.4.tgz"; + sha512 = "vAfWGcxUUGlFiPM3nDMZA+/Yo9sbpc3JNkcYZez8FfJDv41Dh7tAgA3QGVTocaHCZZL6aXPXPOaBMJsjujodsA=="; }; }; "postcss-merge-rules-5.1.4" = { @@ -45198,13 +45108,13 @@ let sha512 = "0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g=="; }; }; - "postcss-merge-rules-6.0.3" = { + "postcss-merge-rules-6.1.0" = { name = "postcss-merge-rules"; packageName = "postcss-merge-rules"; - version = "6.0.3"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz"; - sha512 = "yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA=="; + url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.0.tgz"; + sha512 = "lER+W3Gr6XOvxOYk1Vi/6UsAgKMg6MDBthmvbNqi2XxAk/r9XfhdYZSigfWjuWWn3zYw2wLelvtM8XuAEFqRkA=="; }; }; "postcss-minify-font-values-5.1.0" = { @@ -45216,13 +45126,13 @@ let sha512 = "el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA=="; }; }; - "postcss-minify-font-values-6.0.1" = { + "postcss-minify-font-values-6.0.3" = { name = "postcss-minify-font-values"; packageName = "postcss-minify-font-values"; - version = "6.0.1"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz"; - sha512 = "tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w=="; + url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.3.tgz"; + sha512 = "SmAeTA1We5rMnN3F8X9YBNo9bj9xB4KyDHnaNJnBfQIPi+60fNiR9OTRnIaMqkYzAQX0vObIw4Pn0vuKEOettg=="; }; }; "postcss-minify-gradients-5.1.1" = { @@ -45234,13 +45144,13 @@ let sha512 = "VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw=="; }; }; - "postcss-minify-gradients-6.0.1" = { + "postcss-minify-gradients-6.0.3" = { name = "postcss-minify-gradients"; packageName = "postcss-minify-gradients"; - version = "6.0.1"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz"; - sha512 = "M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w=="; + url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz"; + sha512 = "4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q=="; }; }; "postcss-minify-params-5.1.4" = { @@ -45252,13 +45162,13 @@ let sha512 = "+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw=="; }; }; - "postcss-minify-params-6.0.2" = { + "postcss-minify-params-6.1.0" = { name = "postcss-minify-params"; packageName = "postcss-minify-params"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz"; - sha512 = "zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw=="; + url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz"; + sha512 = "bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA=="; }; }; "postcss-minify-selectors-5.2.1" = { @@ -45270,13 +45180,13 @@ let sha512 = "nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg=="; }; }; - "postcss-minify-selectors-6.0.2" = { + "postcss-minify-selectors-6.0.3" = { name = "postcss-minify-selectors"; packageName = "postcss-minify-selectors"; - version = "6.0.2"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz"; - sha512 = "0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg=="; + url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.3.tgz"; + sha512 = "IcV7ZQJcaXyhx4UBpWZMsinGs2NmiUC60rJSkyvjPCPqhNjVGsrJUM+QhAtCaikZ0w0/AbZuH4wVvF/YMuMhvA=="; }; }; "postcss-modules-extract-imports-3.0.0" = { @@ -45333,13 +45243,13 @@ let sha512 = "mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg=="; }; }; - "postcss-normalize-charset-6.0.1" = { + "postcss-normalize-charset-6.0.2" = { name = "postcss-normalize-charset"; packageName = "postcss-normalize-charset"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz"; - sha512 = "aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg=="; + url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz"; + sha512 = "a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ=="; }; }; "postcss-normalize-display-values-5.1.0" = { @@ -45351,13 +45261,13 @@ let sha512 = "WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA=="; }; }; - "postcss-normalize-display-values-6.0.1" = { + "postcss-normalize-display-values-6.0.2" = { name = "postcss-normalize-display-values"; packageName = "postcss-normalize-display-values"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz"; - sha512 = "mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw=="; + url = "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz"; + sha512 = "8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg=="; }; }; "postcss-normalize-positions-5.1.1" = { @@ -45369,13 +45279,13 @@ let sha512 = "6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg=="; }; }; - "postcss-normalize-positions-6.0.1" = { + "postcss-normalize-positions-6.0.2" = { name = "postcss-normalize-positions"; packageName = "postcss-normalize-positions"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz"; - sha512 = "HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg=="; + url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz"; + sha512 = "/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q=="; }; }; "postcss-normalize-repeat-style-5.1.1" = { @@ -45387,13 +45297,13 @@ let sha512 = "mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g=="; }; }; - "postcss-normalize-repeat-style-6.0.1" = { + "postcss-normalize-repeat-style-6.0.2" = { name = "postcss-normalize-repeat-style"; packageName = "postcss-normalize-repeat-style"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz"; - sha512 = "Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ=="; + url = "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz"; + sha512 = "YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ=="; }; }; "postcss-normalize-string-5.1.0" = { @@ -45405,13 +45315,13 @@ let sha512 = "oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w=="; }; }; - "postcss-normalize-string-6.0.1" = { + "postcss-normalize-string-6.0.2" = { name = "postcss-normalize-string"; packageName = "postcss-normalize-string"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz"; - sha512 = "5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg=="; + url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz"; + sha512 = "vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ=="; }; }; "postcss-normalize-timing-functions-5.1.0" = { @@ -45423,13 +45333,13 @@ let sha512 = "DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg=="; }; }; - "postcss-normalize-timing-functions-6.0.1" = { + "postcss-normalize-timing-functions-6.0.2" = { name = "postcss-normalize-timing-functions"; packageName = "postcss-normalize-timing-functions"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz"; - sha512 = "4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g=="; + url = "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz"; + sha512 = "a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA=="; }; }; "postcss-normalize-unicode-5.1.1" = { @@ -45441,13 +45351,13 @@ let sha512 = "qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA=="; }; }; - "postcss-normalize-unicode-6.0.2" = { + "postcss-normalize-unicode-6.1.0" = { name = "postcss-normalize-unicode"; packageName = "postcss-normalize-unicode"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz"; - sha512 = "Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA=="; + url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz"; + sha512 = "QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg=="; }; }; "postcss-normalize-url-5.1.0" = { @@ -45459,13 +45369,13 @@ let sha512 = "5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew=="; }; }; - "postcss-normalize-url-6.0.1" = { + "postcss-normalize-url-6.0.2" = { name = "postcss-normalize-url"; packageName = "postcss-normalize-url"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz"; - sha512 = "jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ=="; + url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz"; + sha512 = "kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ=="; }; }; "postcss-normalize-whitespace-5.1.1" = { @@ -45477,13 +45387,13 @@ let sha512 = "83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA=="; }; }; - "postcss-normalize-whitespace-6.0.1" = { + "postcss-normalize-whitespace-6.0.2" = { name = "postcss-normalize-whitespace"; packageName = "postcss-normalize-whitespace"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz"; - sha512 = "76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA=="; + url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz"; + sha512 = "sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q=="; }; }; "postcss-ordered-values-5.1.3" = { @@ -45495,13 +45405,13 @@ let sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ=="; }; }; - "postcss-ordered-values-6.0.1" = { + "postcss-ordered-values-6.0.2" = { name = "postcss-ordered-values"; packageName = "postcss-ordered-values"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz"; - sha512 = "XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA=="; + url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz"; + sha512 = "VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q=="; }; }; "postcss-reduce-initial-5.1.2" = { @@ -45513,13 +45423,13 @@ let sha512 = "dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg=="; }; }; - "postcss-reduce-initial-6.0.2" = { + "postcss-reduce-initial-6.1.0" = { name = "postcss-reduce-initial"; packageName = "postcss-reduce-initial"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz"; - sha512 = "YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw=="; + url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz"; + sha512 = "RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw=="; }; }; "postcss-reduce-transforms-5.1.0" = { @@ -45531,13 +45441,13 @@ let sha512 = "2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ=="; }; }; - "postcss-reduce-transforms-6.0.1" = { + "postcss-reduce-transforms-6.0.2" = { name = "postcss-reduce-transforms"; packageName = "postcss-reduce-transforms"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz"; - sha512 = "fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ=="; + url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz"; + sha512 = "sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA=="; }; }; "postcss-reporter-7.1.0" = { @@ -45594,13 +45504,13 @@ let sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; }; }; - "postcss-selector-parser-6.0.15" = { + "postcss-selector-parser-6.0.16" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; - version = "6.0.15"; + version = "6.0.16"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz"; - sha512 = "rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw=="; + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz"; + sha512 = "A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw=="; }; }; "postcss-selector-parser-6.0.2" = { @@ -45621,13 +45531,13 @@ let sha512 = "D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA=="; }; }; - "postcss-svgo-6.0.2" = { + "postcss-svgo-6.0.3" = { name = "postcss-svgo"; packageName = "postcss-svgo"; - version = "6.0.2"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz"; - sha512 = "IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ=="; + url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz"; + sha512 = "dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g=="; }; }; "postcss-syntax-0.36.2" = { @@ -45648,13 +45558,13 @@ let sha512 = "5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA=="; }; }; - "postcss-unique-selectors-6.0.2" = { + "postcss-unique-selectors-6.0.3" = { name = "postcss-unique-selectors"; packageName = "postcss-unique-selectors"; - version = "6.0.2"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz"; - sha512 = "8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ=="; + url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.3.tgz"; + sha512 = "NFXbYr8qdmCr/AFceaEfdcsKGCvWTeGO6QVC9h2GvtWgj0/0dklKQcaMMVzs6tr8bY+ase8hOtHW8OBTTRvS8A=="; }; }; "postcss-value-parser-4.2.0" = { @@ -45720,6 +45630,15 @@ let sha512 = "jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw=="; }; }; + "prebuild-install-7.1.2" = { + name = "prebuild-install"; + packageName = "prebuild-install"; + version = "7.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz"; + sha512 = "UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ=="; + }; + }; "precond-0.2.3" = { name = "precond"; packageName = "precond"; @@ -45729,13 +45648,13 @@ let sha512 = "QCYG84SgGyGzqJ/vlMsxeXd/pgL/I94ixdNFyh1PusWmTCyVfPJjZ1K1jvHtsbfnXQs2TSkEP2fR7QiMZAnKFQ=="; }; }; - "preferred-pm-3.1.2" = { + "preferred-pm-3.1.3" = { name = "preferred-pm"; packageName = "preferred-pm"; - version = "3.1.2"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.2.tgz"; - sha512 = "nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q=="; + url = "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.3.tgz"; + sha512 = "MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w=="; }; }; "prelude-ls-1.1.2" = { @@ -45819,15 +45738,6 @@ let sha512 = "L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg=="; }; }; - "prettier-3.1.1" = { - name = "prettier"; - packageName = "prettier"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz"; - sha512 = "22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw=="; - }; - }; "prettier-3.2.5" = { name = "prettier"; packageName = "prettier"; @@ -45855,13 +45765,13 @@ let sha512 = "5HrJNnPmZqTUNoA97zn4gNQv9BgVhv+et03314WpQ9H9N8m2L9OSV798olwmG2YLXPl1iSstlJCR1zB3x5xG4g=="; }; }; - "prettier-plugin-svelte-3.1.2" = { + "prettier-plugin-svelte-3.2.2" = { name = "prettier-plugin-svelte"; packageName = "prettier-plugin-svelte"; - version = "3.1.2"; + version = "3.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.1.2.tgz"; - sha512 = "7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA=="; + url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.2.2.tgz"; + sha512 = "ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q=="; }; }; "pretty-bytes-5.6.0" = { @@ -46296,6 +46206,15 @@ let sha512 = "llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="; }; }; + "proxy-agent-6.4.0" = { + name = "proxy-agent"; + packageName = "proxy-agent"; + version = "6.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz"; + sha512 = "u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ=="; + }; + }; "proxy-from-env-1.1.0" = { name = "proxy-from-env"; packageName = "proxy-from-env"; @@ -46629,13 +46548,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.350" = { + "pyright-1.1.354" = { name = "pyright"; packageName = "pyright"; - version = "1.1.350"; + version = "1.1.354"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.350.tgz"; - sha512 = "9AMEsPGFzyYzwYCU3QuTUk/AEfVO3hlKtvF0kybBnwGiFuYsmwx02/Hlra7ROX+jtmDStL8qiHCPoYy0rCz/uA=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.354.tgz"; + sha512 = "lUojJFZqg4St+4E2WrZbqODeqLvhuRJXRDros59bJcK485hXJLlCb3DzTd/9KYfaisf2TqvDV79qhc0grwyf/w=="; }; }; "q-1.5.1" = { @@ -46719,13 +46638,13 @@ let sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; }; }; - "qs-6.11.2" = { + "qs-6.12.0" = { name = "qs"; packageName = "qs"; - version = "6.11.2"; + version = "6.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz"; - sha512 = "tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA=="; + url = "https://registry.npmjs.org/qs/-/qs-6.12.0.tgz"; + sha512 = "trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg=="; }; }; "qs-6.5.2" = { @@ -46899,15 +46818,6 @@ let sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; }; }; - "quill-delta-5.1.0" = { - name = "quill-delta"; - packageName = "quill-delta"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/quill-delta/-/quill-delta-5.1.0.tgz"; - sha512 = "X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA=="; - }; - }; "quotation-2.0.3" = { name = "quotation"; packageName = "quotation"; @@ -47394,24 +47304,6 @@ let sha512 = "yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q=="; }; }; - "read-file-safe-1.0.10" = { - name = "read-file-safe"; - packageName = "read-file-safe"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/read-file-safe/-/read-file-safe-1.0.10.tgz"; - sha512 = "qW25fd2uMX3dV6Ui/R0jYK1MhTpjx8FO/VHaHTXzwWsGnkNwLRcqYfCXd9qDM+NZ273DPUvP2RaimYuLSu1K/g=="; - }; - }; - "read-json-safe-1.0.5" = { - name = "read-json-safe"; - packageName = "read-json-safe"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/read-json-safe/-/read-json-safe-1.0.5.tgz"; - sha512 = "SJyNY/U9+vW35FPus22Qvv1oilnR7PCfN2E70uKQEGaJS313A5/cz9Yhv7ZtWzZ+XIwrtEPxXf10BOyYemHehA=="; - }; - }; "read-last-lines-1.6.0" = { name = "read-last-lines"; packageName = "read-last-lines"; @@ -47898,13 +47790,13 @@ let sha512 = "ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A=="; }; }; - "reflect.getprototypeof-1.0.5" = { + "reflect.getprototypeof-1.0.6" = { name = "reflect.getprototypeof"; packageName = "reflect.getprototypeof"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz"; - sha512 = "62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ=="; + url = "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz"; + sha512 = "fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg=="; }; }; "reftools-1.1.9" = { @@ -48996,13 +48888,13 @@ let sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; }; }; - "require-in-the-middle-7.2.0" = { + "require-in-the-middle-7.2.1" = { name = "require-in-the-middle"; packageName = "require-in-the-middle"; - version = "7.2.0"; + version = "7.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.2.0.tgz"; - sha512 = "3TLx5TGyAY6AOqLBoXmHkNql0HIf2RGbuMgCDT2WO/uGVAPJs6h7Kl+bN6TIZGd9bWhWPwnDnTHGtW8Iu77sdw=="; + url = "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.2.1.tgz"; + sha512 = "u5XngygsJ+XV2dBV/Pl4SrcNpUXQfmYmXtuFeHDXfzk4i4NnGnret6xKWkkJHjMHS/16yMV9pEAlAunqmjllkA=="; }; }; "require-main-filename-1.0.1" = { @@ -49626,15 +49518,6 @@ let sha512 = "1JKFzLHeteNandmlVBUWgLPmipFEllhdUQlmNvkXd6ju4VFOlGr0VmtlQaxzZoVysG2nbGb8eAtzNqQTxzQ+AQ=="; }; }; - "run-applescript-5.0.0" = { - name = "run-applescript"; - packageName = "run-applescript"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz"; - sha512 = "XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg=="; - }; - }; "run-applescript-7.0.0" = { name = "run-applescript"; packageName = "run-applescript"; @@ -49824,13 +49707,13 @@ let sha512 = "xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A=="; }; }; - "safe-array-concat-1.1.0" = { + "safe-array-concat-1.1.2" = { name = "safe-array-concat"; packageName = "safe-array-concat"; - version = "1.1.0"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz"; - sha512 = "ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg=="; + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz"; + sha512 = "vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q=="; }; }; "safe-buffer-5.0.1" = { @@ -49968,13 +49851,13 @@ let sha512 = "pVlvK5ysevz8MzybRnDIa2YMxn0OJ7b9lDiWhMoaKPoJ7YkAg/7YtNjUgaYzElkwHxsw8dBMhaEn7UP6zxEwPg=="; }; }; - "sass-1.71.0" = { + "sass-1.72.0" = { name = "sass"; packageName = "sass"; - version = "1.71.0"; + version = "1.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.71.0.tgz"; - sha512 = "HKKIKf49Vkxlrav3F/w6qRuPcmImGVbIXJ2I3Kg0VMA+3Bav+8yE9G5XmP5lMj6nl4OlqbPftGAscNaNu28b8w=="; + url = "https://registry.npmjs.org/sass/-/sass-1.72.0.tgz"; + sha512 = "Gpczt3WA56Ly0Mn8Sl21Vj94s1axi9hDIzDFn9Ph9x3C3p4nNyvsqJoQyVXKou6cBlfFWEgRW4rT8Tb4i3XnVA=="; }; }; "sass-formatter-0.7.9" = { @@ -50535,22 +50418,22 @@ let sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; }; }; - "set-function-length-1.2.1" = { + "set-function-length-1.2.2" = { name = "set-function-length"; packageName = "set-function-length"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz"; - sha512 = "j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g=="; + url = "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz"; + sha512 = "pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="; }; }; - "set-function-name-2.0.1" = { + "set-function-name-2.0.2" = { name = "set-function-name"; packageName = "set-function-name"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz"; - sha512 = "tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA=="; + url = "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz"; + sha512 = "7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ=="; }; }; "set-immediate-shim-1.0.1" = { @@ -50643,13 +50526,13 @@ let sha512 = "/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA=="; }; }; - "sharp-0.32.6" = { + "sharp-0.33.2" = { name = "sharp"; packageName = "sharp"; - version = "0.32.6"; + version = "0.33.2"; src = fetchurl { - url = "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz"; - sha512 = "KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w=="; + url = "https://registry.npmjs.org/sharp/-/sharp-0.33.2.tgz"; + sha512 = "WlYOPyyPDiiM07j/UO+E720ju6gtNtHjEGg5vovUk1Lgxyjm2LFO+37Nt/UI3MMh2l6hxTWQWi7qk3cXJTutcQ=="; }; }; "shasum-1.0.2" = { @@ -50733,15 +50616,6 @@ let sha512 = "TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow=="; }; }; - "shelljs.exec-1.1.8" = { - name = "shelljs.exec"; - packageName = "shelljs.exec"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/shelljs.exec/-/shelljs.exec-1.1.8.tgz"; - sha512 = "vFILCw+lzUtiwBAHV8/Ex8JsFjelFMdhONIsgKNLgTzeRckp2AOYRQtHJE/9LhNvdMmE27AGtzWx0+DHpwIwSw=="; - }; - }; "shellwords-0.1.1" = { name = "shellwords"; packageName = "shellwords"; @@ -50832,13 +50706,13 @@ let sha512 = "G5w1eODRWHWd/H5u6PMAN83TQJ/iOOM8cRgzC2v7trPbnMlq3XIxmQpGw8idyqRkE/wi5YX2j+fobj5xArPw+g=="; }; }; - "side-channel-1.0.5" = { + "side-channel-1.0.6" = { name = "side-channel"; packageName = "side-channel"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz"; - sha512 = "QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ=="; + url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz"; + sha512 = "fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA=="; }; }; "signal-exit-3.0.7" = { @@ -51345,13 +51219,13 @@ let sha512 = "KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA=="; }; }; - "socket.io-4.7.4" = { + "socket.io-4.7.5" = { name = "socket.io"; packageName = "socket.io"; - version = "4.7.4"; + version = "4.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.4.tgz"; - sha512 = "DcotgfP1Zg9iP/dH9zvAQcWrE0TtbMVwXmlV4T4mqsvY+gw+LqUGPfx2AoVyRk0FLME+GQhufDMyacFmw7ksqw=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz"; + sha512 = "DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA=="; }; }; "socket.io-adapter-0.2.0" = { @@ -51372,13 +51246,13 @@ let sha512 = "WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g=="; }; }; - "socket.io-adapter-2.5.2" = { + "socket.io-adapter-2.5.4" = { name = "socket.io-adapter"; packageName = "socket.io-adapter"; - version = "2.5.2"; + version = "2.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz"; - sha512 = "87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA=="; + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.4.tgz"; + sha512 = "wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg=="; }; }; "socket.io-client-1.0.6" = { @@ -51408,13 +51282,13 @@ let sha512 = "lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw=="; }; }; - "socket.io-client-4.7.4" = { + "socket.io-client-4.7.5" = { name = "socket.io-client"; packageName = "socket.io-client"; - version = "4.7.4"; + version = "4.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.4.tgz"; - sha512 = "wh+OkeF0rAVCrABWQBaEjLfb7DVPotMbu0cgWgyR0v6eA4EoVnAwcIeIbcdTE3GT/H3kbdLl7OoH2+asoDRIIg=="; + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.5.tgz"; + sha512 = "sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ=="; }; }; "socket.io-parser-2.1.2" = { @@ -51471,13 +51345,13 @@ let sha512 = "GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ=="; }; }; - "socks-2.8.0" = { + "socks-2.8.1" = { name = "socks"; packageName = "socks"; - version = "2.8.0"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/socks/-/socks-2.8.0.tgz"; - sha512 = "AvXLNBlmf/AN7g6ZuCRNtwbLFacfNBYvy7pchLnpJ1aqCw7FPOK0HEC/LxOZxWiJpqwnjYPxxxNxXYOgX8+3fw=="; + url = "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz"; + sha512 = "B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ=="; }; }; "socks-proxy-agent-6.2.1" = { @@ -51687,6 +51561,15 @@ let sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; }; }; + "source-map-js-1.1.0" = { + name = "source-map-js"; + packageName = "source-map-js"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.1.0.tgz"; + sha512 = "9vC2SfsJzlej6MAaMPLu8HiBSHGdRAJ9hVFYN1ibZoNkeanmDmLUcIrj6G9DGL7XMJ54AKg/G75akXl1/izTOw=="; + }; + }; "source-map-loader-3.0.2" = { name = "source-map-loader"; packageName = "source-map-loader"; @@ -51840,13 +51723,13 @@ let sha512 = "sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg=="; }; }; - "spdx-license-list-6.8.0" = { + "spdx-license-list-6.9.0" = { name = "spdx-license-list"; packageName = "spdx-license-list"; - version = "6.8.0"; + version = "6.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.8.0.tgz"; - sha512 = "5UdM7r9yJ1EvsPQZWfa41AZjLQngl9iMMysm9XBW7Lqhq7aF8cllfqjS+rFCHB8FFMGSM0yFWue2LUV9mR0QzQ=="; + url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.9.0.tgz"; + sha512 = "L2jl5vc2j6jxWcNCvcVj/BW9A8yGIG02Dw+IUw0ZxDM70f7Ylf5Hq39appV1BI9yxyWQRpq2TQ1qaXvf+yjkqA=="; }; }; "spdy-1.32.5" = { @@ -52560,13 +52443,13 @@ let sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="; }; }; - "streamx-2.16.0" = { + "streamx-2.16.1" = { name = "streamx"; packageName = "streamx"; - version = "2.16.0"; + version = "2.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/streamx/-/streamx-2.16.0.tgz"; - sha512 = "a7Fi0PoUeusrUcMS4+HxivnZqYsw2MFEP841TIyLxTcEIucHcJsk+0ARcq3tGq1xDn+xK7sKHetvfMzI1/CzMA=="; + url = "https://registry.npmjs.org/streamx/-/streamx-2.16.1.tgz"; + sha512 = "m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ=="; }; }; "strict-uri-encode-1.1.0" = { @@ -52749,22 +52632,31 @@ let sha512 = "1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA=="; }; }; - "string.prototype.trim-1.2.8" = { - name = "string.prototype.trim"; - packageName = "string.prototype.trim"; - version = "1.2.8"; + "string.prototype.repeat-1.0.0" = { + name = "string.prototype.repeat"; + packageName = "string.prototype.repeat"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz"; - sha512 = "lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ=="; + url = "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz"; + sha512 = "0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w=="; }; }; - "string.prototype.trimend-1.0.7" = { + "string.prototype.trim-1.2.9" = { + name = "string.prototype.trim"; + packageName = "string.prototype.trim"; + version = "1.2.9"; + src = fetchurl { + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz"; + sha512 = "klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw=="; + }; + }; + "string.prototype.trimend-1.0.8" = { name = "string.prototype.trimend"; packageName = "string.prototype.trimend"; - version = "1.0.7"; + version = "1.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz"; - sha512 = "Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA=="; + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz"; + sha512 = "p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ=="; }; }; "string.prototype.trimstart-1.0.7" = { @@ -53127,13 +53019,13 @@ let sha512 = "sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw=="; }; }; - "stylehacks-6.0.2" = { + "stylehacks-6.1.0" = { name = "stylehacks"; packageName = "stylehacks"; - version = "6.0.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz"; - sha512 = "00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg=="; + url = "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.0.tgz"; + sha512 = "ETErsPFgwlfYZ/CSjMO2Ddf+TsnkCVPBPaoB99Ro8WMAxf7cglzmFsRBhRmKObFjibtcvlNxFFPHuyr3sNlNUQ=="; }; }; "stylelint-13.13.1" = { @@ -53163,13 +53055,13 @@ let sha512 = "MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw=="; }; }; - "stylus-0.62.0" = { + "stylus-0.63.0" = { name = "stylus"; packageName = "stylus"; - version = "0.62.0"; + version = "0.63.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylus/-/stylus-0.62.0.tgz"; - sha512 = "v3YCf31atbwJQIMtPNX8hcQ+okD4NQaTuKGUWfII8eaqn+3otrbttGL1zSMZAAtiPsBztQnujVBugg/cXFUpyg=="; + url = "https://registry.npmjs.org/stylus/-/stylus-0.63.0.tgz"; + sha512 = "OMlgrTCPzE/ibtRMoeLVhOY0RcNuNWh0rhAVqeKnk/QwcuUKQbnqhZ1kg2vzD8VU/6h3FoPTq4RJPHgLBvX6Bw=="; }; }; "subarg-1.0.0" = { @@ -53388,22 +53280,22 @@ let sha512 = "vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA=="; }; }; - "svelte-4.2.11" = { + "svelte-4.2.12" = { name = "svelte"; packageName = "svelte"; - version = "4.2.11"; + version = "4.2.12"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-4.2.11.tgz"; - sha512 = "YIQk3J4X89wOLhjsqIW8tqY3JHPuBdtdOIkASP2PZeAMcSW9RsIjQzMesCrxOF3gdWYC0mKknlKF7OqmLM+Zqg=="; + url = "https://registry.npmjs.org/svelte/-/svelte-4.2.12.tgz"; + sha512 = "d8+wsh5TfPwqVzbm4/HCXC783/KPHV60NvwitJnyTA5lWn1elhXMNWhXGCJ7PwPa8qFUnyJNIyuIRt2mT0WMug=="; }; }; - "svelte-5.0.0-next.56" = { + "svelte-5.0.0-next.80" = { name = "svelte"; packageName = "svelte"; - version = "5.0.0-next.56"; + version = "5.0.0-next.80"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-5.0.0-next.56.tgz"; - sha512 = "2bUvusE0Z5f1885Djpfs0sIZSHp1Ca1+qPXa/AfZeROVQuQ1979nnjY3m74RXYqhOZ6dQfskecE1NEeQHHpC6w=="; + url = "https://registry.npmjs.org/svelte/-/svelte-5.0.0-next.80.tgz"; + sha512 = "hiei7UfWoNa6P0yvNoUWqptSh8Tnn2V3dN+w6s32jSqpqzTtNG2tn+xbxdOOBJ5wYc3gYKYbA3+rK1Q643iCEw=="; }; }; "svelte-preprocess-5.1.3" = { @@ -53415,13 +53307,13 @@ let sha512 = "xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw=="; }; }; - "svelte2tsx-0.7.1" = { + "svelte2tsx-0.7.4" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.7.1"; + version = "0.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.1.tgz"; - sha512 = "0lKa6LrqJxRan0bDmBd/uFsVzYSXnoFUDaczaH0znke/XI79oy1JjFaF51J9EsOvpn8lXPlrUc3n/MA/ORNxBg=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.4.tgz"; + sha512 = "zAtbQD7JmeKe0JWdKO6l38t7P6wFP0+YTc0LLFdtzWdHEddcE+/VMvJquQI9NNsnrinUbtS9JF3kosPNeglMcQ=="; }; }; "sver-compat-1.5.0" = { @@ -53731,15 +53623,6 @@ let sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; }; }; - "tar-fs-3.0.5" = { - name = "tar-fs"; - packageName = "tar-fs"; - version = "3.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.5.tgz"; - sha512 = "JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg=="; - }; - }; "tar-stream-1.6.2" = { name = "tar-stream"; packageName = "tar-stream"; @@ -53758,15 +53641,6 @@ let sha512 = "ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="; }; }; - "tar-stream-3.1.7" = { - name = "tar-stream"; - packageName = "tar-stream"; - version = "3.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz"; - sha512 = "qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="; - }; - }; "taskkill-3.1.0" = { name = "taskkill"; packageName = "taskkill"; @@ -53956,13 +53830,13 @@ let sha512 = "flFL3m4wuixmf6IfhFJd1YPiLiMuxEc8uHRM1buzIeZPm22Au2pDqBJQgdo7n1WfPU1ONFGv7YDwpFBmHGF6lg=="; }; }; - "terser-5.27.1" = { + "terser-5.29.2" = { name = "terser"; packageName = "terser"; - version = "5.27.1"; + version = "5.29.2"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.27.1.tgz"; - sha512 = "29wAr6UU/oQpnTw5HoadwjUZnFQXGdOfj0LjZ4sVxzqwHh/QVkvr7m8y9WoR4iN3FRitVduTc6KdjcW38Npsug=="; + url = "https://registry.npmjs.org/terser/-/terser-5.29.2.tgz"; + sha512 = "ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw=="; }; }; "terser-webpack-plugin-5.3.10" = { @@ -54118,15 +53992,6 @@ let sha512 = "RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA=="; }; }; - "thingies-1.16.0" = { - name = "thingies"; - packageName = "thingies"; - version = "1.16.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thingies/-/thingies-1.16.0.tgz"; - sha512 = "J23AVs11hSQxuJxvfQyMIaS9z1QpDxOCvMkL3ZxZl8/jmkgmnNGWrlyNxVz6Jbh0U6DuGmHqq6f7zUROfg/ncg=="; - }; - }; "thirty-two-0.0.2" = { name = "thirty-two"; packageName = "thirty-two"; @@ -54208,15 +54073,6 @@ let sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; }; }; - "through2-4.0.2" = { - name = "through2"; - packageName = "through2"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz"; - sha512 = "iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw=="; - }; - }; "through2-filter-3.0.0" = { name = "through2-filter"; packageName = "through2-filter"; @@ -54361,15 +54217,6 @@ let sha512 = "8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw=="; }; }; - "titleize-3.0.0" = { - name = "titleize"; - packageName = "titleize"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz"; - sha512 = "KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ=="; - }; - }; "tkwidgets-0.5.27" = { name = "tkwidgets"; packageName = "tkwidgets"; @@ -54424,6 +54271,15 @@ let sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; }; }; + "tmp-0.2.3" = { + name = "tmp"; + packageName = "tmp"; + version = "0.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz"; + sha512 = "nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="; + }; + }; "to-absolute-glob-2.0.2" = { name = "to-absolute-glob"; packageName = "to-absolute-glob"; @@ -54892,13 +54748,13 @@ let sha512 = "yHeaPjCBzVaXwWl5IMUapTaTC2rn/eBYg2fsG2L+CvJd+ttFbk0ylDnpTO3wVhosmE1tQEvcebbBeKLCwScQSQ=="; }; }; - "ts-api-utils-1.2.1" = { + "ts-api-utils-1.3.0" = { name = "ts-api-utils"; packageName = "ts-api-utils"; - version = "1.2.1"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz"; - sha512 = "RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA=="; + url = "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz"; + sha512 = "UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ=="; }; }; "ts-dedent-2.2.0" = { @@ -54973,15 +54829,6 @@ let sha512 = "ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg=="; }; }; - "tsconfck-3.0.2" = { - name = "tsconfck"; - packageName = "tsconfck"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tsconfck/-/tsconfck-3.0.2.tgz"; - sha512 = "6lWtFjwuhS3XI4HsX4Zg0izOI3FU/AI9EGVlPEUMDIhvLPMD4wkiof0WCoDgW7qY+Dy198g4d9miAqUHWHFH6Q=="; - }; - }; "tsconfig-paths-3.15.0" = { name = "tsconfig-paths"; packageName = "tsconfig-paths"; @@ -55180,6 +55027,15 @@ let sha512 = "ntI9R7fcUKjqBP6QU8rBK2Ehyt8LAzt3UBT9JR9tgo6GtuKvyUzpayWmeMKJw1DPdXzktvtIT8m2mVXz+bL/Qg=="; }; }; + "turndown-7.1.3" = { + name = "turndown"; + packageName = "turndown"; + version = "7.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/turndown/-/turndown-7.1.3.tgz"; + sha512 = "Z3/iJ6IWh8VBiACWQJaA5ulPQE5E1QwvBHj00uGzdQxdRnd8fh1DPqNOJqzQDu6DkOstORrtXzf/9adB+vMtEA=="; + }; + }; "turndown-plugin-gfm-1.0.2" = { name = "turndown-plugin-gfm"; packageName = "turndown-plugin-gfm"; @@ -55225,15 +55081,6 @@ let sha512 = "/XrQjW0e5Z915m1A0qeXD9tSLDmz8zGjR6imhGDme6rMtXYudFpXXhaToKnM52nPPCNdCh6YQsLLkwbbkFvzVA=="; }; }; - "type-1.2.0" = { - name = "type"; - packageName = "type"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type/-/type-1.2.0.tgz"; - sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; - }; - }; "type-2.7.2" = { name = "type"; packageName = "type"; @@ -55378,13 +55225,13 @@ let sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; }; }; - "type-fest-4.10.2" = { + "type-fest-4.12.0" = { name = "type-fest"; packageName = "type-fest"; - version = "4.10.2"; + version = "4.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-4.10.2.tgz"; - sha512 = "anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw=="; + url = "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz"; + sha512 = "5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ=="; }; }; "type-is-1.6.18" = { @@ -55396,40 +55243,40 @@ let sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; }; }; - "typed-array-buffer-1.0.1" = { + "typed-array-buffer-1.0.2" = { name = "typed-array-buffer"; packageName = "typed-array-buffer"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz"; - sha512 = "RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ=="; + url = "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz"; + sha512 = "gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ=="; }; }; - "typed-array-byte-length-1.0.0" = { + "typed-array-byte-length-1.0.1" = { name = "typed-array-byte-length"; packageName = "typed-array-byte-length"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz"; - sha512 = "Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA=="; + url = "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz"; + sha512 = "3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw=="; }; }; - "typed-array-byte-offset-1.0.0" = { + "typed-array-byte-offset-1.0.2" = { name = "typed-array-byte-offset"; packageName = "typed-array-byte-offset"; - version = "1.0.0"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz"; - sha512 = "RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg=="; + url = "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz"; + sha512 = "Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA=="; }; }; - "typed-array-length-1.0.4" = { + "typed-array-length-1.0.5" = { name = "typed-array-length"; packageName = "typed-array-length"; - version = "1.0.4"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"; - sha512 = "KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng=="; + url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz"; + sha512 = "yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA=="; }; }; "typed-rest-client-1.8.11" = { @@ -55459,33 +55306,6 @@ let sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; }; }; - "types-eslintrc-1.0.3" = { - name = "types-eslintrc"; - packageName = "types-eslintrc"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/types-eslintrc/-/types-eslintrc-1.0.3.tgz"; - sha512 = "zKTR6aKHEudQpl+JoZjS3qh0B5IzSpQK/BCpYBECujcnKtqL87DJJ1sJKe5B8k/y8/UJ5sukq42QDvlaJyCO2w=="; - }; - }; - "types-json-1.2.2" = { - name = "types-json"; - packageName = "types-json"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/types-json/-/types-json-1.2.2.tgz"; - sha512 = "VfVLISHypS7ayIHvhacOESOTib4Sm4mAhnsgR8fzQdGp89YoBwMqvGmqENjtYehUQzgclT+7NafpEXkK/MHKwA=="; - }; - }; - "types-pkg-json-1.2.1" = { - name = "types-pkg-json"; - packageName = "types-pkg-json"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/types-pkg-json/-/types-pkg-json-1.2.1.tgz"; - sha512 = "Wj75lCkPwfj1BhmaJxMPpTQj9YGpihjs3WICigt1IjTAswr7zPXP0iJYPZjU0Rw/IriODhMJjAImkCIxt9KeuQ=="; - }; - }; "typesafe-path-0.2.2" = { name = "typesafe-path"; packageName = "typesafe-path"; @@ -55540,15 +55360,6 @@ let sha512 = "cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw=="; }; }; - "typescript-5.2.2" = { - name = "typescript"; - packageName = "typescript"; - version = "5.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz"; - sha512 = "mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w=="; - }; - }; "typescript-5.3.3" = { name = "typescript"; packageName = "typescript"; @@ -55558,13 +55369,22 @@ let sha512 = "pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw=="; }; }; - "typescript-5.4.0-dev.20240217" = { + "typescript-5.4.2" = { name = "typescript"; packageName = "typescript"; - version = "5.4.0-dev.20240217"; + version = "5.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.4.0-dev.20240217.tgz"; - sha512 = "GRzxhALjSGwP7M8C4HBUos+SdVdOK+mh5ZrFLZqHpIik/qWqXwkLQzUpxGIUlXZEUcuRb2vVYwSbKppNmHQmbw=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz"; + sha512 = "+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ=="; + }; + }; + "typescript-5.5.0-dev.20240318" = { + name = "typescript"; + packageName = "typescript"; + version = "5.5.0-dev.20240318"; + src = fetchurl { + url = "https://registry.npmjs.org/typescript/-/typescript-5.5.0-dev.20240318.tgz"; + sha512 = "NLUk3mN8h9UWmeFns5dhiRIIZffmDePNOMPwwr36tYoJikteOGLNCOOcCP2Yvc+cOzl/mkBOUaEngUBGYRJBGw=="; }; }; "typescript-auto-import-cache-0.2.1" = { @@ -57268,15 +57088,6 @@ let sha512 = "mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg=="; }; }; - "vali-date-1.0.0" = { - name = "vali-date"; - packageName = "vali-date"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz"; - sha512 = "sgECfZthyaCKW10N0fm27cg8HYTFK5qMWgypqkXMQ4Wbl/zZKx7xZICgcoxIIE+WFAP/MBL2EFwC/YvLxw3Zeg=="; - }; - }; "valid-url-1.0.9" = { name = "valid-url"; packageName = "valid-url"; @@ -57421,13 +57232,13 @@ let sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; }; }; - "vega-5.27.0" = { + "vega-5.28.0" = { name = "vega"; packageName = "vega"; - version = "5.27.0"; + version = "5.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega/-/vega-5.27.0.tgz"; - sha512 = "iYMQZYb2nlJBLCsUZ88pvun2sTcFcLE7GKJWisndLo+KYNMQIRePQ7X2FRuy8yvRRNxfO8XhjImh4OwxZvyYVA=="; + url = "https://registry.npmjs.org/vega/-/vega-5.28.0.tgz"; + sha512 = "5EDVhjBUgcVdrA6LZDBLah/nuk4FRUwZqTgP/Yi32qeRCoiN0xkptQ5Sbmj6XfH7wu1SdbAbsCm1Zls+9NC/8Q=="; }; }; "vega-canvas-1.2.7" = { @@ -57547,13 +57358,13 @@ let sha512 = "qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA=="; }; }; - "vega-parser-6.2.1" = { + "vega-parser-6.3.0" = { name = "vega-parser"; packageName = "vega-parser"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.1.tgz"; - sha512 = "F79bQXt6fMkACR+TfFl7ueehKO26yCR/3iRZxhU7/pgHerx/d8K8pf2onMguu3NAN4eitT+PPuTgkDZtcqo9Qg=="; + url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.3.0.tgz"; + sha512 = "swS5RuP2imRarMpGWaAZusoKkXc4Z5WxWx349pkqxIAf4F7H8Ya9nThEkSWsFozd75O9nWh0QLifds8Xb7KjUg=="; }; }; "vega-projection-1.6.0" = { @@ -57979,58 +57790,58 @@ let sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="; }; }; - "volar-service-css-0.0.29" = { + "volar-service-css-0.0.34" = { name = "volar-service-css"; packageName = "volar-service-css"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.29.tgz"; - sha512 = "2kNdgEYEiLeeer3wkagNBVDPa3Zj7mBDeM7D3iYmBXA0LCwd2tQL3eASzcDW9Gvac1g478UtptK468GxzUAEcA=="; + url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.34.tgz"; + sha512 = "C7ua0j80ZD7bsgALAz/cA1bykPehoIa5n+3+Ccr+YLpj0fypqw9iLUmGLX11CqzqNCO2XFGe/1eXB/c+SWrF/g=="; }; }; - "volar-service-emmet-0.0.29" = { + "volar-service-emmet-0.0.34" = { name = "volar-service-emmet"; packageName = "volar-service-emmet"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.29.tgz"; - sha512 = "sXRMfQ970lpOQxUcKH9B4DqE7FCNhPy6V4m3gw+kgH17mADQ2rdL63b8osXFy5bnAMBcsXRhtJXJPmh/LgZXEw=="; + url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.34.tgz"; + sha512 = "ubQvMCmHPp8Ic82LMPkgrp9ot+u2p/RDd0RyT0EykRkZpWsagHUF5HWkVheLfiMyx2rFuWx/+7qZPOgypx6h6g=="; }; }; - "volar-service-html-0.0.29" = { + "volar-service-html-0.0.34" = { name = "volar-service-html"; packageName = "volar-service-html"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.29.tgz"; - sha512 = "ctTSU46KCLxcaR53mAod2wBWSEIXGdXdejqHEDPSX33H5rA2X89zyYEpuk9BOVzIHG8G8rggVXCGnGaXxmYrCw=="; + url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.34.tgz"; + sha512 = "kMEneea1tQbiRcyKavqdrSVt8zV06t+0/3pGkjO3gV6sikXTNShIDkdtB4Tq9vE2cQdM50TuS7utVV7iysUxHw=="; }; }; - "volar-service-prettier-0.0.29" = { + "volar-service-prettier-0.0.34" = { name = "volar-service-prettier"; packageName = "volar-service-prettier"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.29.tgz"; - sha512 = "GxcDKfiVv3fc4XUtUOkQpX0QlFjWppRCVWIBp751gOKJwDex142xMlbTxP9la9tollbmj2O/tVUrqqLDGQ+Lsg=="; + url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.34.tgz"; + sha512 = "BNfJ8FwfPi1Wm/JkuzNjraOLdtKieGksNT/bDyquygVawv1QUzO2HB1hiMKfZGdcSFG5ZL9R0j7bBfRTfXA2gg=="; }; }; - "volar-service-typescript-0.0.29" = { + "volar-service-typescript-0.0.34" = { name = "volar-service-typescript"; packageName = "volar-service-typescript"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.29.tgz"; - sha512 = "ssBhGT0Wrh670NRTrLoikzoRbszd72jIa02IKbrfI9QIIONvygOmIJ9jSqj4jxHEWz/KSCgCEhCyR7hEH80kGg=="; + url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.34.tgz"; + sha512 = "NbAry0w8ZXFgGsflvMwmPDCzgJGx3C+eYxFEbldaumkpTAJiywECWiUbPIOfmEHgpOllUKSnhwtLlWFK4YnfQg=="; }; }; - "volar-service-typescript-twoslash-queries-0.0.29" = { + "volar-service-typescript-twoslash-queries-0.0.34" = { name = "volar-service-typescript-twoslash-queries"; packageName = "volar-service-typescript-twoslash-queries"; - version = "0.0.29"; + version = "0.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.29.tgz"; - sha512 = "hdI8ZO1Wc/I5+iwKKnOfXW7ktpBe0qLoXz5+8viS6aV9gycKSAKAs6sayLTATQZcZ1EAESUqTqGS/vJOUgZOsg=="; + url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.34.tgz"; + sha512 = "XAY2YtWKUp6ht89gxt3L5Dr46LU45d/VlBkj1KXUwNlinpoWiGN4Nm3B6DRF3VoBThAnQgm4c7WD0S+5yTzh+w=="; }; }; "vscode-css-languageservice-3.0.13" = { @@ -58663,22 +58474,22 @@ let sha512 = "9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA=="; }; }; - "watchpack-2.4.0" = { + "watchpack-2.4.1" = { name = "watchpack"; packageName = "watchpack"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz"; - sha512 = "Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg=="; + url = "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz"; + sha512 = "8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg=="; }; }; - "wavedrom-3.4.0" = { + "wavedrom-3.5.0" = { name = "wavedrom"; packageName = "wavedrom"; - version = "3.4.0"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/wavedrom/-/wavedrom-3.4.0.tgz"; - sha512 = "UJZsl5z0KXrrmsuz++ejKS+yuKMupni4/swLN7hA3LL+kyCE1PuiO1VOTe9I/RMlkbM2XsH3u88itQMYjxHp9w=="; + url = "https://registry.npmjs.org/wavedrom/-/wavedrom-3.5.0.tgz"; + sha512 = "UFStUpq8cbyd1KCYd9HnLpCEy1ZQtzDX72GHZTICQVZVL04JSz7+PG1DxcaSxMAEpdmW4gqGnOzs3zPrKFVO8Q=="; }; }; "wbuf-1.7.3" = { @@ -58879,13 +58690,13 @@ let sha512 = "VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="; }; }; - "webpack-5.90.2" = { + "webpack-5.90.3" = { name = "webpack"; packageName = "webpack"; - version = "5.90.2"; + version = "5.90.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.90.2.tgz"; - sha512 = "ziXu8ABGr0InCMEYFnHrYweinHK2PWrMqnwdHk2oK3rRhv/1B+2FnfwYv5oD+RrknK/Pp/Hmyvu+eAsaMYhzCw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz"; + sha512 = "h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA=="; }; }; "webpack-cli-5.1.4" = { @@ -59149,13 +58960,13 @@ let sha512 = "YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw=="; }; }; - "which-collection-1.0.1" = { + "which-collection-1.0.2" = { name = "which-collection"; packageName = "which-collection"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz"; - sha512 = "W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A=="; + url = "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz"; + sha512 = "K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw=="; }; }; "which-module-1.0.0" = { @@ -59185,13 +58996,13 @@ let sha512 = "Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w=="; }; }; - "which-typed-array-1.1.14" = { + "which-typed-array-1.1.15" = { name = "which-typed-array"; packageName = "which-typed-array"; - version = "1.1.14"; + version = "1.1.15"; src = fetchurl { - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz"; - sha512 = "VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg=="; + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz"; + sha512 = "oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA=="; }; }; "wide-align-1.1.5" = { @@ -59347,6 +59158,15 @@ let sha512 = "L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g=="; }; }; + "winston-3.12.0" = { + name = "winston"; + packageName = "winston"; + version = "3.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-3.12.0.tgz"; + sha512 = "OwbxKaOlESDi01mC9rkM0dQqQt2I8DAUMRLZ/HpbwvDXm85IryEHgoogy5fziQy38PntgZsLlhAYHz//UPHZ5w=="; + }; + }; "winston-transport-4.7.0" = { name = "winston-transport"; packageName = "winston-transport"; @@ -59446,13 +59266,13 @@ let sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw=="; }; }; - "workerd-1.20240129.0" = { + "workerd-1.20240304.0" = { name = "workerd"; packageName = "workerd"; - version = "1.20240129.0"; + version = "1.20240304.0"; src = fetchurl { - url = "https://registry.npmjs.org/workerd/-/workerd-1.20240129.0.tgz"; - sha512 = "t4pnsmjjk/u+GdVDgH2M1AFmJaBUABshYK/vT/HNrAXsHSwN6VR8Yqw0JQ845OokO34VLkuUtYQYyxHHKpdtsw=="; + url = "https://registry.npmjs.org/workerd/-/workerd-1.20240304.0.tgz"; + sha512 = "/tYxdypPh9NKQje9r7bgBB73vAQfCQZbEPjNlxE/ml7jNKMHnRZv/D+By4xO0IPAifa37D0sJFokvYOahz1Lqw=="; }; }; "workerpool-6.2.1" = { @@ -60077,13 +59897,13 @@ let sha512 = "QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A=="; }; }; - "xss-1.0.14" = { + "xss-1.0.15" = { name = "xss"; packageName = "xss"; - version = "1.0.14"; + version = "1.0.15"; src = fetchurl { - url = "https://registry.npmjs.org/xss/-/xss-1.0.14.tgz"; - sha512 = "og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw=="; + url = "https://registry.npmjs.org/xss/-/xss-1.0.15.tgz"; + sha512 = "FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg=="; }; }; "xstate-4.38.3" = { @@ -60194,13 +60014,22 @@ let sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; }; }; - "yaml-2.3.4" = { + "yaml-2.4.0" = { name = "yaml"; packageName = "yaml"; - version = "2.3.4"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz"; - sha512 = "8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA=="; + url = "https://registry.npmjs.org/yaml/-/yaml-2.4.0.tgz"; + sha512 = "j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ=="; + }; + }; + "yaml-2.4.1" = { + name = "yaml"; + packageName = "yaml"; + version = "2.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz"; + sha512 = "pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg=="; }; }; "yaml-front-matter-4.1.1" = { @@ -60266,15 +60095,6 @@ let sha512 = "c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ=="; }; }; - "yargs-17.6.2" = { - name = "yargs"; - packageName = "yargs"; - version = "17.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz"; - sha512 = "1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw=="; - }; - }; "yargs-17.7.2" = { name = "yargs"; packageName = "yargs"; @@ -60428,13 +60248,13 @@ let sha512 = "H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ=="; }; }; - "yarn-1.22.21" = { + "yarn-1.22.22" = { name = "yarn"; packageName = "yarn"; - version = "1.22.21"; + version = "1.22.22"; src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz"; - sha512 = "ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg=="; + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.22.tgz"; + sha512 = "prL3kGtyG7o9Z9Sv8IPfBNrWTDmXB4Qbes8A9rEzt6wkJV8mUvoirjU0Mp3GGAU06Y0XQyA3/2/RQFVuK7MTfg=="; }; }; "yarn-1.22.4" = { @@ -60677,15 +60497,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-17.2.0.tgz"; - sha512 = "JSfNQB76qrc8QNPLUvvqR10T4+WUrfz+ogmOliO+jAdhbpfZQ4tIt0WwUYvo+0foM8x7hTe3Wdhg8zWwteBnuw=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-17.3.0.tgz"; + sha512 = "xwxlimNP4MECkdzjc0+m7lGxighcH0ncAfEo9yUo+r+4EFalB/Q7DAQPIU1xkbBk8iJwcFhGFAnS1IeLur15kQ=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1702.0" - sources."@angular-devkit/core-17.2.0" - sources."@angular-devkit/schematics-17.2.0" + sources."@angular-devkit/architect-0.1703.0" + sources."@angular-devkit/core-17.3.0" + sources."@angular-devkit/schematics-17.3.0" (sources."@isaacs/cliui-8.0.2" // { dependencies = [ sources."ansi-regex-6.0.1" @@ -60697,7 +60517,7 @@ in ]; }) sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@ljharb/through-2.3.12" + sources."@ljharb/through-2.3.13" sources."@npmcli/agent-2.2.1" sources."@npmcli/fs-3.1.0" sources."@npmcli/git-5.0.4" @@ -60706,7 +60526,7 @@ in sources."@npmcli/package-json-5.0.0" sources."@npmcli/promise-spawn-7.0.1" sources."@npmcli/run-script-7.0.4" - sources."@schematics/angular-17.2.0" + sources."@schematics/angular-17.3.0" sources."@sigstore/bundle-2.2.0" sources."@sigstore/core-1.0.0" sources."@sigstore/protobuf-specs-0.3.0" @@ -60732,7 +60552,7 @@ in }) sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."bl-4.1.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" @@ -60794,9 +60614,9 @@ in sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-7.0.1" sources."http-cache-semantics-4.1.1" sources."http-proxy-agent-7.0.2" @@ -60807,8 +60627,8 @@ in sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" sources."inherits-2.0.4" - sources."ini-4.1.1" - sources."inquirer-9.2.14" + sources."ini-4.1.2" + sources."inquirer-9.2.15" sources."ip-address-9.0.5" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" @@ -60835,7 +60655,7 @@ in ]; }) sources."lru-cache-10.2.0" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" sources."make-fetch-happen-13.0.0" sources."mimic-fn-2.1.0" sources."minimatch-9.0.3" @@ -60922,13 +60742,13 @@ in sources."lru-cache-6.0.0" ]; }) - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" sources."sigstore-2.2.2" sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."socks-proxy-agent-8.0.2" sources."source-map-0.7.4" sources."spdx-correct-3.2.0" @@ -61006,13 +60826,13 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "2.7.4"; + version = "2.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.7.4.tgz"; - sha512 = "U317ZKx5VXg2Sy6iPgYOliOZ10Ji/eo8MGFCry2/yT+rYTfb81HbrSWUu9nsZzpFK66So5aprQutRWWM/m7mPQ=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.8.3.tgz"; + sha512 = "tO47Lcue7OPXfIDbKVDcshwpC13yaWaTVLyiSOnQ2Yng2Z2SgcJf06Cj4xMpJqGp6s7/o/gcQWYUTl2bpkWKig=="; }; dependencies = [ - sources."@astrojs/compiler-2.5.3" + sources."@astrojs/compiler-2.7.0" sources."@emmetio/abbreviation-2.3.3" sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" @@ -61020,13 +60840,13 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@volar/kit-2.0.4" - sources."@volar/language-core-2.0.4" - sources."@volar/language-server-2.0.4" - sources."@volar/language-service-2.0.4" - sources."@volar/snapshot-document-2.0.4" - sources."@volar/source-map-2.0.4" - sources."@volar/typescript-2.0.4" + sources."@volar/kit-2.1.2" + sources."@volar/language-core-2.1.2" + sources."@volar/language-server-2.1.2" + sources."@volar/language-service-2.1.2" + sources."@volar/snapshot-document-2.1.2" + sources."@volar/source-map-2.1.2" + sources."@volar/typescript-2.1.2" (sources."@vscode/emmet-helper-2.9.2" // { dependencies = [ sources."vscode-uri-2.1.2" @@ -61034,7 +60854,7 @@ in }) sources."@vscode/l10n-0.0.16" sources."braces-3.0.2" - sources."emmet-2.4.6" + sources."emmet-2.4.7" sources."fast-glob-3.3.2" sources."fastq-1.17.1" sources."fill-range-7.0.1" @@ -61065,14 +60885,14 @@ in sources."suf-log-2.5.3" sources."to-regex-range-5.0.1" sources."typesafe-path-0.2.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."typescript-auto-import-cache-0.3.2" - sources."volar-service-css-0.0.29" - sources."volar-service-emmet-0.0.29" - sources."volar-service-html-0.0.29" - sources."volar-service-prettier-0.0.29" - sources."volar-service-typescript-0.0.29" - sources."volar-service-typescript-twoslash-queries-0.0.29" + sources."volar-service-css-0.0.34" + sources."volar-service-emmet-0.0.34" + sources."volar-service-html-0.0.34" + sources."volar-service-prettier-0.0.34" + sources."volar-service-typescript-0.0.34" + sources."volar-service-typescript-twoslash-queries-0.0.34" (sources."vscode-css-languageservice-6.2.12" // { dependencies = [ sources."@vscode/l10n-0.0.18" @@ -61111,10 +60931,10 @@ in sha512 = "vB1UXmGDNEhcf1jNAHKT9IlYk1R+hehVTLFlCLHBi8gfuHQGP6uRjgXVYU0EVlI/qwAWpstqkBdf2aez3/z/5Q=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -61135,22 +60955,22 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."ansi-styles-3.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.23.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -61158,7 +60978,7 @@ in sources."concat-map-0.0.1" sources."convert-source-map-2.0.0" sources."debug-4.3.4" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."escalade-3.1.2" sources."escape-string-regexp-1.0.5" sources."fs-readdir-recursive-1.1.0" @@ -61202,115 +61022,84 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "18.6.1"; + version = "19.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-18.6.1.tgz"; - sha512 = "5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-19.2.0.tgz"; + sha512 = "8XnQDMyQR+1/ldbmIyhonvnDS2enEw48Wompo/967fsEvy9Vj5/JbDutzmSBKxANWDVeEbR9QQm0yHpw6ArrFw=="; }; dependencies = [ (sources."@babel/code-frame-7.23.5" // { dependencies = [ - sources."ansi-styles-3.2.1" sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" ]; }) sources."@babel/helper-validator-identifier-7.22.20" (sources."@babel/highlight-7.23.4" // { dependencies = [ - sources."ansi-styles-3.2.1" sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" ]; }) - sources."@commitlint/config-validator-18.6.1" - sources."@commitlint/ensure-18.6.1" - sources."@commitlint/execute-rule-18.6.1" - sources."@commitlint/format-18.6.1" - sources."@commitlint/is-ignored-18.6.1" - sources."@commitlint/lint-18.6.1" - sources."@commitlint/load-18.6.1" - sources."@commitlint/message-18.6.1" - sources."@commitlint/parse-18.6.1" - sources."@commitlint/read-18.6.1" - sources."@commitlint/resolve-extends-18.6.1" - sources."@commitlint/rules-18.6.1" - sources."@commitlint/to-lines-18.6.1" - sources."@commitlint/top-level-18.6.1" - sources."@commitlint/types-18.6.1" - sources."@types/minimist-1.2.5" - sources."@types/node-20.11.19" - sources."@types/normalize-package-data-2.4.4" + sources."@commitlint/config-validator-19.0.3" + sources."@commitlint/ensure-19.0.3" + sources."@commitlint/execute-rule-19.0.0" + sources."@commitlint/format-19.0.3" + sources."@commitlint/is-ignored-19.0.3" + sources."@commitlint/lint-19.1.0" + sources."@commitlint/load-19.2.0" + sources."@commitlint/message-19.0.0" + sources."@commitlint/parse-19.0.3" + sources."@commitlint/read-19.2.0" + sources."@commitlint/resolve-extends-19.1.0" + sources."@commitlint/rules-19.0.3" + sources."@commitlint/to-lines-19.0.0" + sources."@commitlint/top-level-19.0.0" + sources."@commitlint/types-19.0.3" + sources."@types/conventional-commits-parser-5.0.0" + sources."@types/node-20.11.29" sources."JSONStream-1.3.5" sources."ajv-8.12.0" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-3.2.1" sources."argparse-2.0.1" sources."array-ify-1.0.0" - sources."arrify-1.0.1" sources."callsites-3.1.0" - sources."camelcase-5.3.1" - sources."camelcase-keys-6.2.2" - sources."chalk-4.1.2" + sources."chalk-5.3.0" sources."cliui-8.0.1" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."compare-func-2.0.0" sources."conventional-changelog-angular-7.0.0" sources."conventional-commits-parser-5.0.0" - sources."cosmiconfig-8.3.6" + sources."cosmiconfig-9.0.0" sources."cosmiconfig-typescript-loader-5.0.0" sources."cross-spawn-7.0.3" - sources."dargs-7.0.0" - sources."decamelize-1.2.0" - (sources."decamelize-keys-1.1.1" // { - dependencies = [ - sources."map-obj-1.0.1" - ]; - }) + sources."dargs-8.1.0" sources."dot-prop-5.3.0" sources."emoji-regex-8.0.0" + sources."env-paths-2.2.1" sources."error-ex-1.3.2" sources."escalade-3.1.2" sources."escape-string-regexp-1.0.5" - sources."execa-5.1.1" + sources."execa-8.0.1" sources."fast-deep-equal-3.1.3" - sources."find-up-5.0.0" - sources."function-bind-1.1.2" + sources."find-up-7.0.0" sources."get-caller-file-2.0.5" - sources."get-stream-6.0.1" - (sources."git-raw-commits-2.0.11" // { - dependencies = [ - sources."meow-8.1.2" - sources."split2-3.2.2" - ]; - }) - sources."global-dirs-0.1.1" - sources."hard-rejection-2.1.0" - sources."has-flag-4.0.0" - sources."hasown-2.0.1" - sources."hosted-git-info-4.1.0" - sources."human-signals-2.1.0" + sources."get-stream-8.0.1" + sources."git-raw-commits-4.0.0" + sources."global-directory-4.0.1" + sources."has-flag-3.0.0" + sources."human-signals-5.0.0" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" ]; }) - sources."indent-string-4.0.0" - sources."inherits-2.0.4" - sources."ini-1.3.8" + sources."import-meta-resolve-4.0.0" + sources."ini-4.1.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.13.1" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" - sources."is-plain-obj-1.1.0" - sources."is-stream-2.0.1" + sources."is-stream-3.0.0" sources."is-text-path-2.0.0" sources."isexe-2.0.0" sources."jiti-1.21.0" @@ -61319,12 +61108,9 @@ in sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" sources."jsonparse-1.3.1" - sources."kind-of-6.0.3" sources."lines-and-columns-1.2.4" - sources."locate-path-6.0.0" - sources."lodash-4.17.21" + sources."locate-path-7.2.0" sources."lodash.camelcase-4.3.0" - sources."lodash.isfunction-3.0.9" sources."lodash.isplainobject-4.0.6" sources."lodash.kebabcase-4.1.1" sources."lodash.merge-4.6.2" @@ -61334,89 +61120,54 @@ in sources."lodash.uniq-4.5.0" sources."lodash.upperfirst-4.3.1" sources."lru-cache-6.0.0" - sources."map-obj-4.3.0" sources."meow-12.1.1" sources."merge-stream-2.0.0" - sources."mimic-fn-2.1.0" - sources."min-indent-1.0.1" + sources."mimic-fn-4.0.0" sources."minimist-1.2.8" - sources."minimist-options-4.1.0" - sources."normalize-package-data-3.0.3" - sources."npm-run-path-4.0.1" - sources."onetime-5.1.2" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."p-try-2.2.0" + (sources."npm-run-path-5.3.0" // { + dependencies = [ + sources."path-key-4.0.0" + ]; + }) + sources."onetime-6.0.0" + sources."p-limit-4.0.0" + sources."p-locate-6.0.0" sources."parent-module-1.0.1" sources."parse-json-5.2.0" - sources."path-exists-4.0.0" + sources."path-exists-5.0.0" sources."path-key-3.1.1" - sources."path-parse-1.0.7" - sources."path-type-4.0.0" sources."punycode-2.3.1" - sources."quick-lru-4.0.1" - (sources."read-pkg-5.2.0" // { - dependencies = [ - sources."hosted-git-info-2.8.9" - sources."normalize-package-data-2.5.0" - sources."semver-5.7.2" - sources."type-fest-0.6.0" - ]; - }) - (sources."read-pkg-up-7.0.1" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."type-fest-0.8.1" - ]; - }) - sources."readable-stream-3.6.2" - sources."redent-3.0.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.8" sources."resolve-from-5.0.0" - sources."resolve-global-1.0.0" - sources."safe-buffer-5.2.1" sources."semver-7.6.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.7" - sources."spdx-correct-3.2.0" - sources."spdx-exceptions-2.5.0" - sources."spdx-expression-parse-3.0.1" - sources."spdx-license-ids-3.0.17" + sources."signal-exit-4.1.0" sources."split2-4.2.0" sources."string-width-4.2.3" - sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - sources."strip-final-newline-2.0.0" - sources."strip-indent-3.0.0" - sources."supports-color-7.2.0" - sources."supports-preserve-symlinks-flag-1.0.0" + sources."strip-final-newline-3.0.0" + sources."supports-color-5.5.0" sources."text-extensions-2.4.0" sources."through-2.3.8" - sources."through2-4.0.2" - sources."trim-newlines-3.0.1" - sources."type-fest-0.18.1" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" + sources."unicorn-magic-0.1.0" sources."uri-js-4.4.1" - sources."util-deprecate-1.0.2" - sources."validate-npm-package-license-3.0.4" sources."which-2.0.2" - sources."wrap-ansi-7.0.0" - sources."y18n-5.0.8" - sources."yallist-4.0.0" - (sources."yargs-17.7.2" // { + (sources."wrap-ansi-7.0.0" // { dependencies = [ - sources."yargs-parser-21.1.1" + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" ]; }) - sources."yargs-parser-20.2.9" - sources."yocto-queue-0.1.0" + sources."y18n-5.0.8" + sources."yallist-4.0.0" + sources."yargs-17.7.2" + sources."yargs-parser-21.1.1" + sources."yocto-queue-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61431,24 +61182,22 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "18.6.2"; + version = "19.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-18.6.2.tgz"; - sha512 = "PcgSYg1AKGQIwDQKbaHtJsfqYy4uJTC7crLVZ83lfjcPaec4Pry2vLeaWej7ao2KsT20l9dWoMPpEGg8LWdUuA=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.1.0.tgz"; + sha512 = "KIKD2xrp6Uuk+dcZVj3++MlzIr/Su6zLE8crEDQCZNvWHNQSeeGbzOlNtsR32TUy6H3JbP7nWgduAHCaiGQ6EA=="; }; dependencies = [ - sources."@commitlint/types-18.6.1" - sources."ansi-styles-4.3.0" + sources."@commitlint/types-19.0.3" + sources."@types/conventional-commits-parser-5.0.0" + sources."@types/node-20.11.29" sources."array-ify-1.0.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."chalk-5.3.0" sources."compare-func-2.0.0" sources."conventional-changelog-conventionalcommits-7.0.2" sources."dot-prop-5.3.0" - sources."has-flag-4.0.0" sources."is-obj-2.0.0" - sources."supports-color-7.2.0" + sources."undici-types-5.26.5" ]; buildInputs = globalBuildInputs; meta = { @@ -61463,10 +61212,10 @@ in "@microsoft/rush" = nodeEnv.buildNodePackage { name = "_at_microsoft_slash_rush"; packageName = "@microsoft/rush"; - version = "5.113.4"; + version = "5.117.9"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.113.4.tgz"; - sha512 = "V4Ik+DImLpyjxJuaPGCj+uzIt6Aw8JKgFyqCIHWeX3Qc3ytBPkMZ8fDf6fSCr2BapUF/teRdrnESxhFRHmG0Ug=="; + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.117.9.tgz"; + sha512 = "WIeTt5LDfeq6W4ai9Ax/hqsmMZn3rayKpZvpmkUJEdaGRNKPpzSpZyaww9bSgdopPOoacMKaNQIFR4ETIJVxJw=="; }; dependencies = [ (sources."@azure/abort-controller-1.1.0" // { @@ -61474,15 +61223,15 @@ in sources."tslib-2.6.2" ]; }) - (sources."@azure/core-auth-1.6.0" // { + (sources."@azure/core-auth-1.7.0" // { dependencies = [ - sources."@azure/abort-controller-2.0.0" + sources."@azure/abort-controller-2.1.0" sources."tslib-2.6.2" ]; }) - (sources."@azure/core-client-1.8.0" // { + (sources."@azure/core-client-1.9.0" // { dependencies = [ - sources."@azure/abort-controller-2.0.0" + sources."@azure/abort-controller-2.1.0" sources."tslib-2.6.2" ]; }) @@ -61493,31 +61242,33 @@ in sources."tslib-2.6.2" ]; }) - (sources."@azure/core-lro-2.6.0" // { + (sources."@azure/core-lro-2.7.0" // { dependencies = [ - sources."@azure/abort-controller-2.0.0" + sources."@azure/abort-controller-2.1.0" sources."tslib-2.6.2" ]; }) - (sources."@azure/core-paging-1.5.0" // { + (sources."@azure/core-paging-1.6.0" // { dependencies = [ sources."tslib-2.6.2" ]; }) - (sources."@azure/core-rest-pipeline-1.14.0" // { + (sources."@azure/core-rest-pipeline-1.15.0" // { dependencies = [ - sources."@azure/abort-controller-2.0.0" + sources."@azure/abort-controller-2.1.0" + sources."agent-base-7.1.0" + sources."https-proxy-agent-7.0.4" sources."tslib-2.6.2" ]; }) - (sources."@azure/core-tracing-1.0.1" // { + (sources."@azure/core-tracing-1.1.0" // { dependencies = [ sources."tslib-2.6.2" ]; }) - (sources."@azure/core-util-1.7.0" // { + (sources."@azure/core-util-1.8.0" // { dependencies = [ - sources."@azure/abort-controller-2.0.0" + sources."@azure/abort-controller-2.1.0" sources."tslib-2.6.2" ]; }) @@ -61526,7 +61277,7 @@ in sources."tslib-2.6.2" ]; }) - (sources."@azure/logger-1.0.4" // { + (sources."@azure/logger-1.1.0" // { dependencies = [ sources."tslib-2.6.2" ]; @@ -61549,21 +61300,21 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."@devexpress/error-stack-parser-2.0.6" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" - sources."@microsoft/rush-lib-5.113.4" + sources."@jridgewell/trace-mapping-0.3.25" + sources."@microsoft/rush-lib-5.117.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@opentelemetry/api-1.7.0" + sources."@opentelemetry/api-1.8.0" sources."@pnpm/crypto.base32-hash-2.0.0" sources."@pnpm/dependency-path-2.1.8" sources."@pnpm/error-1.4.0" @@ -61595,52 +61346,56 @@ in sources."@pnpm/types-6.4.0" ]; }) - sources."@rushstack/heft-config-file-0.14.7" - (sources."@rushstack/node-core-library-3.64.2" // { + sources."@rushstack/heft-config-file-0.14.14" + (sources."@rushstack/node-core-library-4.0.2" // { dependencies = [ sources."import-lazy-4.0.0" ]; }) - sources."@rushstack/package-deps-hash-4.1.21" - (sources."@rushstack/package-extractor-0.6.23" // { + sources."@rushstack/package-deps-hash-4.1.38" + (sources."@rushstack/package-extractor-0.6.40" // { dependencies = [ sources."brace-expansion-1.1.11" sources."minimatch-3.0.8" ]; }) - (sources."@rushstack/rig-package-0.5.1" // { + (sources."@rushstack/rig-package-0.5.2" // { dependencies = [ sources."strip-json-comments-3.1.1" ]; }) - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.113.4" - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.113.4" - sources."@rushstack/rush-http-build-cache-plugin-5.113.4" - sources."@rushstack/rush-sdk-5.113.4" - sources."@rushstack/stream-collator-4.1.21" - sources."@rushstack/terminal-0.7.20" - (sources."@rushstack/ts-command-line-4.17.1" // { + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.117.9" + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.117.9" + sources."@rushstack/rush-http-build-cache-plugin-5.117.9" + sources."@rushstack/rush-sdk-5.117.9" + sources."@rushstack/stream-collator-4.1.38" + (sources."@rushstack/terminal-0.10.0" // { + dependencies = [ + sources."has-flag-4.0.0" + sources."supports-color-8.1.1" + ]; + }) + (sources."@rushstack/ts-command-line-4.19.1" // { dependencies = [ sources."argparse-1.0.10" ]; }) sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@tootallnate/once-2.0.0" sources."@types/argparse-1.0.38" - sources."@types/lodash-4.14.202" + sources."@types/lodash-4.17.0" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/node-fetch-2.6.2" sources."@types/normalize-package-data-2.4.4" sources."@types/parse-json-4.0.2" sources."@types/tunnel-0.0.3" - sources."@vue/compiler-core-3.4.19" - sources."@vue/compiler-dom-3.4.19" - sources."@vue/compiler-sfc-3.4.19" - sources."@vue/compiler-ssr-3.4.19" - sources."@vue/shared-3.4.19" + sources."@vue/compiler-core-3.4.21" + sources."@vue/compiler-dom-3.4.21" + sources."@vue/compiler-sfc-3.4.21" + sources."@vue/compiler-ssr-3.4.21" + sources."@vue/shared-3.4.21" sources."@yarnpkg/lockfile-1.0.2" sources."@zkochan/cmd-shim-5.4.1" sources."agent-base-6.0.2" @@ -61702,11 +61457,7 @@ in sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-spinners-2.9.2" - (sources."cli-table-0.3.11" // { - dependencies = [ - sources."colors-1.0.3" - ]; - }) + sources."cli-table-0.3.11" sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-1.0.4" @@ -61715,7 +61466,7 @@ in sources."co-4.6.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."colors-1.2.5" + sources."colors-1.0.3" sources."combined-stream-1.0.8" sources."commander-10.0.1" sources."concat-map-0.0.1" @@ -61833,7 +61584,7 @@ in sources."hard-rejection-2.1.0" sources."has-flag-3.0.0" sources."has-yarn-2.1.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."highlight-es-1.0.3" // { dependencies = [ sources."js-tokens-3.0.2" @@ -61842,7 +61593,11 @@ in sources."homedir-polyfill-1.0.3" sources."hosted-git-info-4.1.0" sources."http-cache-semantics-4.1.1" - sources."http-proxy-agent-5.0.0" + (sources."http-proxy-agent-7.0.2" // { + dependencies = [ + sources."agent-base-7.1.0" + ]; + }) sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."iconv-lite-0.4.24" @@ -61960,7 +61715,7 @@ in }) sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" (sources."make-dir-3.1.0" // { dependencies = [ sources."semver-6.3.1" @@ -62083,8 +61838,9 @@ in ]; }) sources."please-upgrade-node-3.2.0" - sources."postcss-8.4.35" - (sources."preferred-pm-3.1.2" // { + sources."pnpm-sync-lib-0.1.4" + sources."postcss-8.4.36" + (sources."preferred-pm-3.1.3" // { dependencies = [ sources."find-up-5.0.0" sources."locate-path-6.0.0" @@ -62170,7 +61926,7 @@ in sources."signal-exit-3.0.7" sources."slash-3.0.0" sources."sort-keys-4.2.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.5.0" sources."spdx-expression-parse-3.0.1" @@ -62276,10 +62032,10 @@ in "@shopify/cli" = nodeEnv.buildNodePackage { name = "_at_shopify_slash_cli"; packageName = "@shopify/cli"; - version = "3.56.1"; + version = "3.57.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.56.1.tgz"; - sha512 = "sS9BmvCcF+3XmGwwaNfXqZ9ymJLaJ3eabA+CK5YIIKMIsQYtsG3BJJK0KNJbHkBJnT0fpkAX8moI4i7Zdw6/Gg=="; + url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.57.1.tgz"; + sha512 = "bqFvUipcGWEvaOQBL1FiKb2IV86S5EcIWV8o0hEL9n05NE/XzbVnlRW7pNYY64WHVgT5dM7mFsX9/0boaJPASQ=="; }; dependencies = [ (sources."@alcalzone/ansi-tokenize-0.1.3" // { @@ -62305,19 +62061,18 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/color-1.0.13" - sources."@oclif/core-3.15.1" - (sources."@oclif/plugin-commands-2.2.24" // { + sources."@oclif/core-3.19.6" + (sources."@oclif/plugin-commands-2.2.28" // { dependencies = [ sources."@oclif/core-2.15.0" ]; }) - (sources."@oclif/plugin-help-5.2.18" // { + (sources."@oclif/plugin-help-5.2.20" // { dependencies = [ sources."@oclif/core-2.15.0" ]; }) - (sources."@oclif/plugin-plugins-3.1.8" // { + (sources."@oclif/plugin-plugins-3.9.4" // { dependencies = [ sources."@oclif/core-2.15.0" ]; @@ -62371,14 +62126,13 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - (sources."@shopify/cli-kit-3.56.1" // { + (sources."@shopify/cli-kit-3.57.1" // { dependencies = [ sources."ansi-escapes-6.2.0" sources."ansi-regex-6.0.1" sources."argparse-2.0.1" sources."chalk-5.3.0" sources."fast-glob-3.3.1" - sources."fs-extra-11.1.0" sources."js-yaml-4.1.0" sources."semver-7.5.4" sources."strip-ansi-7.1.0" @@ -62387,13 +62141,13 @@ in sources."type-fest-3.13.1" ]; }) - sources."@shopify/plugin-did-you-mean-3.56.1" + sources."@shopify/plugin-did-you-mean-3.57.1" sources."@sindresorhus/is-5.6.0" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@szmarczak/http-timer-5.0.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -62402,9 +62156,9 @@ in sources."@types/archiver-5.3.2" sources."@types/cli-progress-3.11.5" sources."@types/http-cache-semantics-4.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" + sources."@types/react-18.2.67" sources."@types/readdir-glob-1.1.5" sources."@types/scheduler-0.16.8" sources."@types/tinycolor2-1.4.6" @@ -62436,7 +62190,6 @@ in sources."astral-regex-2.0.0" sources."async-3.2.5" sources."asynckit-0.4.0" - sources."at-least-node-1.0.0" sources."atomically-2.0.2" sources."auto-bind-5.0.1" sources."balanced-match-1.0.2" @@ -62552,7 +62305,7 @@ in (sources."execa-7.2.0" // { dependencies = [ sources."is-stream-3.0.0" - sources."npm-run-path-5.2.0" + sources."npm-run-path-5.3.0" sources."path-key-4.0.0" ]; }) @@ -62579,7 +62332,7 @@ in sources."form-data-encoder-2.1.4" sources."formdata-polyfill-4.0.10" sources."fs-constants-1.0.0" - sources."fs-extra-9.1.0" + sources."fs-extra-11.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" sources."fuzzy-0.1.3" @@ -62592,18 +62345,6 @@ in }) sources."get-stream-6.0.1" sources."get-them-args-1.3.2" - (sources."git-diff-2.0.6" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."diff-3.5.0" - sources."escape-string-regexp-1.0.5" - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" - ]; - }) sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."globby-11.1.0" @@ -62617,7 +62358,7 @@ in ]; }) sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."header-case-2.0.4" sources."http-cache-semantics-4.1.1" sources."http-call-5.3.0" @@ -62708,7 +62449,6 @@ in sources."lodash.isplainobject-4.0.6" sources."lodash.merge-4.6.2" sources."lodash.union-4.6.0" - sources."loglevel-1.9.1" sources."loose-envify-1.4.0" sources."lower-case-2.0.2" sources."lowercase-keys-3.0.0" @@ -62738,8 +62478,8 @@ in sources."node-fetch-3.3.2" sources."node-gyp-build-4.8.0" sources."normalize-path-3.0.0" - sources."normalize-url-8.0.0" - sources."npm-9.9.2" + sources."normalize-url-8.0.1" + sources."npm-9.8.1" sources."npm-run-path-4.0.1" sources."object-treeify-1.1.33" sources."once-1.4.0" @@ -62830,7 +62570,6 @@ in sources."shebang-regex-3.0.0" sources."shell-quote-1.8.1" sources."shelljs-0.8.5" - sources."shelljs.exec-1.1.8" sources."signal-exit-3.0.7" sources."simple-git-3.19.1" sources."simple-swizzle-0.2.2" @@ -62888,11 +62627,10 @@ in sources."tr46-0.0.3" sources."ts-error-1.0.6" sources."ts-node-10.9.2" - sources."tsconfck-3.0.2" sources."tslib-2.6.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."unique-string-3.0.0" sources."universalify-2.0.1" @@ -62914,7 +62652,7 @@ in sources."wrappy-1.0.2" sources."ws-8.16.0" sources."yallist-4.0.0" - sources."yarn-1.22.21" + sources."yarn-1.22.22" sources."yn-3.1.1" sources."yocto-queue-1.0.0" sources."yoga-wasm-web-0.3.3" @@ -62948,24 +62686,28 @@ in sources."@alloc/quick-lru-5.2.0" sources."@cspotcode/source-map-support-0.8.1" sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + (sources."@jridgewell/gen-mapping-0.3.5" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.25" + ]; + }) sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-regex-5.0.1" @@ -62974,7 +62716,7 @@ in sources."anymatch-3.1.3" sources."arg-5.0.2" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."camelcase-css-2.0.1" @@ -63005,7 +62747,7 @@ in sources."function-bind-1.1.2" sources."glob-10.3.10" sources."glob-parent-6.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -63035,16 +62777,16 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.6" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -63055,7 +62797,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-5.1.2" (sources."string-width-cjs-4.2.3" // { dependencies = [ @@ -63082,7 +62824,7 @@ in ]; }) sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -63096,7 +62838,7 @@ in sources."strip-ansi-6.0.1" ]; }) - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -63121,24 +62863,28 @@ in sources."@alloc/quick-lru-5.2.0" sources."@cspotcode/source-map-support-0.8.1" sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + (sources."@jridgewell/gen-mapping-0.3.5" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.25" + ]; + }) sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-regex-5.0.1" @@ -63147,7 +62893,7 @@ in sources."anymatch-3.1.3" sources."arg-5.0.2" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."camelcase-css-2.0.1" @@ -63178,7 +62924,7 @@ in sources."function-bind-1.1.2" sources."glob-10.3.10" sources."glob-parent-6.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -63209,16 +62955,16 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.6" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -63229,7 +62975,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-5.1.2" (sources."string-width-cjs-4.2.3" // { dependencies = [ @@ -63256,7 +63002,7 @@ in ]; }) sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -63270,7 +63016,7 @@ in sources."strip-ansi-6.0.1" ]; }) - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -63295,24 +63041,28 @@ in sources."@alloc/quick-lru-5.2.0" sources."@cspotcode/source-map-support-0.8.1" sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + (sources."@jridgewell/gen-mapping-0.3.5" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.25" + ]; + }) sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-regex-5.0.1" @@ -63321,7 +63071,7 @@ in sources."anymatch-3.1.3" sources."arg-5.0.2" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."camelcase-css-2.0.1" @@ -63352,7 +63102,7 @@ in sources."function-bind-1.1.2" sources."glob-10.3.10" sources."glob-parent-6.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -63382,16 +63132,16 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.6" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -63402,7 +63152,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-5.1.2" (sources."string-width-cjs-4.2.3" // { dependencies = [ @@ -63429,7 +63179,7 @@ in ]; }) sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -63443,7 +63193,7 @@ in sources."strip-ansi-6.0.1" ]; }) - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -63468,24 +63218,28 @@ in sources."@alloc/quick-lru-5.2.0" sources."@cspotcode/source-map-support-0.8.1" sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + (sources."@jridgewell/gen-mapping-0.3.5" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.25" + ]; + }) sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-regex-5.0.1" @@ -63494,7 +63248,7 @@ in sources."anymatch-3.1.3" sources."arg-5.0.2" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."camelcase-css-2.0.1" @@ -63525,7 +63279,7 @@ in sources."function-bind-1.1.2" sources."glob-10.3.10" sources."glob-parent-6.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -63558,17 +63312,17 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.6" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) (sources."postcss-nested-6.0.1" // { dependencies = [ - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" ]; }) sources."postcss-selector-parser-6.0.10" @@ -63582,7 +63336,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-5.1.2" (sources."string-width-cjs-4.2.3" // { dependencies = [ @@ -63600,7 +63354,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."tailwindcss-3.4.1" // { dependencies = [ - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" ]; }) sources."thenify-3.3.1" @@ -63613,7 +63367,7 @@ in ]; }) sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -63627,7 +63381,7 @@ in sources."strip-ansi-6.0.1" ]; }) - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -63643,10 +63397,10 @@ in "@uppy/companion" = nodeEnv.buildNodePackage { name = "_at_uppy_slash_companion"; packageName = "@uppy/companion"; - version = "4.12.0"; + version = "4.12.3"; src = fetchurl { - url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.12.0.tgz"; - sha512 = "Q/1c7HZ/XwMiy0vY978fgFsfOumW8M2AHSIDnAceFKrLkBVQVL+SXj8DnkUTgsxzI/TLShCmuj0kU4oTeC+4rg=="; + url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.12.3.tgz"; + sha512 = "0i/EDrK/N3zhrHy56Sq9NyH/vWvmsCBh5ulT2mW8RZlTtFTZXMCkHlnqliSlRHTDsGSDLho9BkIdE4Yn64Saiw=="; }; dependencies = [ (sources."@aws-crypto/crc32-3.0.0" // { @@ -63689,48 +63443,48 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/client-s3-3.515.0" - sources."@aws-sdk/client-sso-3.515.0" - sources."@aws-sdk/client-sso-oidc-3.515.0" - sources."@aws-sdk/client-sts-3.515.0" - sources."@aws-sdk/core-3.513.0" - sources."@aws-sdk/credential-provider-env-3.515.0" - sources."@aws-sdk/credential-provider-http-3.515.0" - sources."@aws-sdk/credential-provider-ini-3.515.0" - sources."@aws-sdk/credential-provider-node-3.515.0" - sources."@aws-sdk/credential-provider-process-3.515.0" - sources."@aws-sdk/credential-provider-sso-3.515.0" - sources."@aws-sdk/credential-provider-web-identity-3.515.0" - (sources."@aws-sdk/lib-storage-3.515.0" // { + sources."@aws-sdk/client-s3-3.536.0" + sources."@aws-sdk/client-sso-3.535.0" + sources."@aws-sdk/client-sso-oidc-3.535.0" + sources."@aws-sdk/client-sts-3.535.0" + sources."@aws-sdk/core-3.535.0" + sources."@aws-sdk/credential-provider-env-3.535.0" + sources."@aws-sdk/credential-provider-http-3.535.0" + sources."@aws-sdk/credential-provider-ini-3.535.0" + sources."@aws-sdk/credential-provider-node-3.535.0" + sources."@aws-sdk/credential-provider-process-3.535.0" + sources."@aws-sdk/credential-provider-sso-3.535.0" + sources."@aws-sdk/credential-provider-web-identity-3.535.0" + (sources."@aws-sdk/lib-storage-3.536.0" // { dependencies = [ sources."buffer-5.6.0" ]; }) - sources."@aws-sdk/middleware-bucket-endpoint-3.515.0" - sources."@aws-sdk/middleware-expect-continue-3.515.0" - sources."@aws-sdk/middleware-flexible-checksums-3.515.0" - sources."@aws-sdk/middleware-host-header-3.515.0" - sources."@aws-sdk/middleware-location-constraint-3.515.0" - sources."@aws-sdk/middleware-logger-3.515.0" - sources."@aws-sdk/middleware-recursion-detection-3.515.0" - sources."@aws-sdk/middleware-sdk-s3-3.515.0" - sources."@aws-sdk/middleware-signing-3.515.0" - sources."@aws-sdk/middleware-ssec-3.515.0" - sources."@aws-sdk/middleware-user-agent-3.515.0" - sources."@aws-sdk/region-config-resolver-3.515.0" - sources."@aws-sdk/s3-presigned-post-3.515.0" - sources."@aws-sdk/s3-request-presigner-3.515.0" - sources."@aws-sdk/signature-v4-multi-region-3.515.0" - sources."@aws-sdk/token-providers-3.515.0" - sources."@aws-sdk/types-3.515.0" - sources."@aws-sdk/util-arn-parser-3.495.0" - sources."@aws-sdk/util-endpoints-3.515.0" - sources."@aws-sdk/util-format-url-3.515.0" - sources."@aws-sdk/util-locate-window-3.495.0" - sources."@aws-sdk/util-user-agent-browser-3.515.0" - sources."@aws-sdk/util-user-agent-node-3.515.0" + sources."@aws-sdk/middleware-bucket-endpoint-3.535.0" + sources."@aws-sdk/middleware-expect-continue-3.535.0" + sources."@aws-sdk/middleware-flexible-checksums-3.535.0" + sources."@aws-sdk/middleware-host-header-3.535.0" + sources."@aws-sdk/middleware-location-constraint-3.535.0" + sources."@aws-sdk/middleware-logger-3.535.0" + sources."@aws-sdk/middleware-recursion-detection-3.535.0" + sources."@aws-sdk/middleware-sdk-s3-3.535.0" + sources."@aws-sdk/middleware-signing-3.535.0" + sources."@aws-sdk/middleware-ssec-3.535.0" + sources."@aws-sdk/middleware-user-agent-3.535.0" + sources."@aws-sdk/region-config-resolver-3.535.0" + sources."@aws-sdk/s3-presigned-post-3.536.0" + sources."@aws-sdk/s3-request-presigner-3.536.0" + sources."@aws-sdk/signature-v4-multi-region-3.535.0" + sources."@aws-sdk/token-providers-3.535.0" + sources."@aws-sdk/types-3.535.0" + sources."@aws-sdk/util-arn-parser-3.535.0" + sources."@aws-sdk/util-endpoints-3.535.0" + sources."@aws-sdk/util-format-url-3.535.0" + sources."@aws-sdk/util-locate-window-3.535.0" + sources."@aws-sdk/util-user-agent-browser-3.535.0" + sources."@aws-sdk/util-user-agent-node-3.535.0" sources."@aws-sdk/util-utf8-browser-3.259.0" - sources."@aws-sdk/xml-builder-3.496.0" + sources."@aws-sdk/xml-builder-3.535.0" sources."@httptoolkit/websocket-stream-6.0.1" sources."@redis/bloom-1.0.2" sources."@redis/client-1.2.0" @@ -63739,61 +63493,61 @@ in sources."@redis/search-1.0.6" sources."@redis/time-series-1.0.3" sources."@sindresorhus/is-4.6.0" - sources."@smithy/abort-controller-2.1.1" - sources."@smithy/chunked-blob-reader-2.1.1" - sources."@smithy/chunked-blob-reader-native-2.1.1" - sources."@smithy/config-resolver-2.1.1" - sources."@smithy/core-1.3.2" - sources."@smithy/credential-provider-imds-2.2.1" - sources."@smithy/eventstream-codec-2.1.1" - sources."@smithy/eventstream-serde-browser-2.1.1" - sources."@smithy/eventstream-serde-config-resolver-2.1.1" - sources."@smithy/eventstream-serde-node-2.1.1" - sources."@smithy/eventstream-serde-universal-2.1.1" - sources."@smithy/fetch-http-handler-2.4.1" - sources."@smithy/hash-blob-browser-2.1.1" - sources."@smithy/hash-node-2.1.1" - sources."@smithy/hash-stream-node-2.1.1" - sources."@smithy/invalid-dependency-2.1.1" - sources."@smithy/is-array-buffer-2.1.1" - sources."@smithy/md5-js-2.1.1" - sources."@smithy/middleware-content-length-2.1.1" - sources."@smithy/middleware-endpoint-2.4.1" - sources."@smithy/middleware-retry-2.1.1" - sources."@smithy/middleware-serde-2.1.1" - sources."@smithy/middleware-stack-2.1.1" - sources."@smithy/node-config-provider-2.2.1" - sources."@smithy/node-http-handler-2.3.1" - sources."@smithy/property-provider-2.1.1" - sources."@smithy/protocol-http-3.1.1" - sources."@smithy/querystring-builder-2.1.1" - sources."@smithy/querystring-parser-2.1.1" - sources."@smithy/service-error-classification-2.1.1" - sources."@smithy/shared-ini-file-loader-2.3.1" - sources."@smithy/signature-v4-2.1.1" - sources."@smithy/smithy-client-2.3.1" - sources."@smithy/types-2.9.1" - sources."@smithy/url-parser-2.1.1" - sources."@smithy/util-base64-2.1.1" - sources."@smithy/util-body-length-browser-2.1.1" - sources."@smithy/util-body-length-node-2.2.1" - sources."@smithy/util-buffer-from-2.1.1" - sources."@smithy/util-config-provider-2.2.1" - sources."@smithy/util-defaults-mode-browser-2.1.1" - sources."@smithy/util-defaults-mode-node-2.2.0" - sources."@smithy/util-endpoints-1.1.1" - sources."@smithy/util-hex-encoding-2.1.1" - sources."@smithy/util-middleware-2.1.1" - sources."@smithy/util-retry-2.1.1" - sources."@smithy/util-stream-2.1.1" - sources."@smithy/util-uri-escape-2.1.1" - sources."@smithy/util-utf8-2.1.1" - sources."@smithy/util-waiter-2.1.1" + sources."@smithy/abort-controller-2.2.0" + sources."@smithy/chunked-blob-reader-2.2.0" + sources."@smithy/chunked-blob-reader-native-2.2.0" + sources."@smithy/config-resolver-2.2.0" + sources."@smithy/core-1.4.0" + sources."@smithy/credential-provider-imds-2.3.0" + sources."@smithy/eventstream-codec-2.2.0" + sources."@smithy/eventstream-serde-browser-2.2.0" + sources."@smithy/eventstream-serde-config-resolver-2.2.0" + sources."@smithy/eventstream-serde-node-2.2.0" + sources."@smithy/eventstream-serde-universal-2.2.0" + sources."@smithy/fetch-http-handler-2.5.0" + sources."@smithy/hash-blob-browser-2.2.0" + sources."@smithy/hash-node-2.2.0" + sources."@smithy/hash-stream-node-2.2.0" + sources."@smithy/invalid-dependency-2.2.0" + sources."@smithy/is-array-buffer-2.2.0" + sources."@smithy/md5-js-2.2.0" + sources."@smithy/middleware-content-length-2.2.0" + sources."@smithy/middleware-endpoint-2.5.0" + sources."@smithy/middleware-retry-2.2.0" + sources."@smithy/middleware-serde-2.3.0" + sources."@smithy/middleware-stack-2.2.0" + sources."@smithy/node-config-provider-2.3.0" + sources."@smithy/node-http-handler-2.5.0" + sources."@smithy/property-provider-2.2.0" + sources."@smithy/protocol-http-3.3.0" + sources."@smithy/querystring-builder-2.2.0" + sources."@smithy/querystring-parser-2.2.0" + sources."@smithy/service-error-classification-2.1.5" + sources."@smithy/shared-ini-file-loader-2.4.0" + sources."@smithy/signature-v4-2.2.0" + sources."@smithy/smithy-client-2.5.0" + sources."@smithy/types-2.12.0" + sources."@smithy/url-parser-2.2.0" + sources."@smithy/util-base64-2.3.0" + sources."@smithy/util-body-length-browser-2.2.0" + sources."@smithy/util-body-length-node-2.3.0" + sources."@smithy/util-buffer-from-2.2.0" + sources."@smithy/util-config-provider-2.3.0" + sources."@smithy/util-defaults-mode-browser-2.2.0" + sources."@smithy/util-defaults-mode-node-2.3.0" + sources."@smithy/util-endpoints-1.2.0" + sources."@smithy/util-hex-encoding-2.2.0" + sources."@smithy/util-middleware-2.2.0" + sources."@smithy/util-retry-2.2.0" + sources."@smithy/util-stream-2.2.0" + sources."@smithy/util-uri-escape-2.2.0" + sources."@smithy/util-utf8-2.3.0" + sources."@smithy/util-waiter-2.2.0" sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/responselike-1.0.3" sources."@types/ws-8.5.10" sources."accepts-1.3.8" @@ -63803,7 +63557,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-crt-1.21.1" - (sources."axios-1.6.7" // { + (sources."axios-1.6.8" // { dependencies = [ sources."form-data-4.0.0" ]; @@ -63885,7 +63639,7 @@ in sources."duplexify-3.7.1" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."elliptic-6.5.4" + sources."elliptic-6.5.5" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."es-define-property-1.0.0" @@ -63928,7 +63682,7 @@ in sources."ms-2.0.0" ]; }) - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."form-data-3.0.1" sources."forwarded-0.2.0" sources."fresh-0.5.2" @@ -63948,10 +63702,10 @@ in }) sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."hash.js-1.1.7" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."helmet-4.6.0" (sources."help-me-3.0.0" // { dependencies = [ @@ -63971,7 +63725,7 @@ in sources."is-stream-2.0.1" sources."isarray-1.0.0" sources."isomorphic-ws-4.0.1" - sources."js-base64-3.7.6" + sources."js-base64-3.7.7" sources."js-sdsl-4.3.0" sources."json-buffer-3.0.1" (sources."jsonwebtoken-9.0.0" // { @@ -64020,7 +63774,7 @@ in }) (sources."mqtt-4.3.8" // { dependencies = [ - sources."duplexify-4.1.2" + sources."duplexify-4.1.3" sources."readable-stream-3.6.2" sources."ws-7.5.9" ]; @@ -64090,9 +63844,9 @@ in sources."serialize-error-2.1.0" sources."serialize-javascript-6.0.2" sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."sorted-array-functions-1.3.0" (sources."split2-3.2.2" // { @@ -64155,7 +63909,7 @@ in sha512 = "+/kSxBAkZbeVBePoG2qRSvCkVIslk1dNlU5wQHAcbzOFTi7pEQR6C+kjoj94I+vGXVGMFfDwOYm07sPsd8dM6w=="; }; dependencies = [ - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@emmetio/abbreviation-2.3.3" sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" @@ -64182,12 +63936,12 @@ in ]; }) sources."@vscode/l10n-0.0.11" - sources."@vue/compiler-core-3.4.19" - sources."@vue/compiler-dom-3.4.19" - sources."@vue/compiler-sfc-3.4.19" - sources."@vue/compiler-ssr-3.4.19" - sources."@vue/reactivity-3.4.19" - sources."@vue/shared-3.4.19" + sources."@vue/compiler-core-3.4.21" + sources."@vue/compiler-dom-3.4.21" + sources."@vue/compiler-sfc-3.4.21" + sources."@vue/compiler-ssr-3.4.21" + sources."@vue/reactivity-3.4.21" + sources."@vue/shared-3.4.21" sources."acorn-7.4.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" @@ -64195,7 +63949,7 @@ in sources."character-parser-2.2.0" sources."de-indent-1.0.2" sources."define-data-property-1.1.4" - sources."emmet-2.4.6" + sources."emmet-2.4.7" sources."entities-4.5.0" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" @@ -64204,32 +63958,32 @@ in sources."get-intrinsic-1.2.4" sources."gopd-1.0.1" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."he-1.2.0" sources."is-expression-4.0.0" sources."is-regex-1.1.4" sources."jsonc-parser-3.2.1" sources."lru-cache-6.0.0" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" sources."minimatch-9.0.3" sources."muggle-string-0.2.2" sources."nanoid-3.3.7" sources."object-assign-4.1.1" sources."picocolors-1.0.0" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" sources."pug-parser-6.0.0" sources."request-light-0.7.0" sources."semver-7.6.0" - sources."set-function-length-1.2.1" - sources."source-map-js-1.0.2" + sources."set-function-length-1.2.2" + sources."source-map-js-1.1.0" sources."token-stream-1.0.0" sources."typesafe-path-0.2.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."typescript-auto-import-cache-0.2.1" (sources."vscode-css-languageservice-6.2.12" // { dependencies = [ @@ -64287,7 +64041,7 @@ in dependencies = [ sources."@achrinza/node-ipc-9.2.8" sources."@akryum/winattr-3.0.0" - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@apollo/protobufjs-1.2.7" sources."@apollo/usage-reporting-protobuf-4.1.1" sources."@apollo/utils.dropunuseddefinitions-1.1.0" @@ -64315,7 +64069,7 @@ in ]; }) sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -64330,7 +64084,7 @@ in sources."yallist-3.1.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.23.10" // { + (sources."@babel/helper-create-class-features-plugin-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -64340,7 +64094,7 @@ in sources."semver-6.3.1" ]; }) - sources."@babel/helper-define-polyfill-provider-0.5.0" + sources."@babel/helper-define-polyfill-provider-0.6.1" sources."@babel/helper-environment-visitor-7.22.20" sources."@babel/helper-function-name-7.23.0" sources."@babel/helper-hoist-variables-7.22.5" @@ -64348,7 +64102,7 @@ in sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" sources."@babel/helper-optimise-call-expression-7.22.5" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-remap-async-to-generator-7.22.20" sources."@babel/helper-replace-supers-7.22.20" sources."@babel/helper-simple-access-7.22.5" @@ -64358,7 +64112,7 @@ in sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" sources."@babel/helper-wrap-function-7.22.20" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" (sources."@babel/highlight-7.23.4" // { dependencies = [ sources."ansi-styles-3.2.1" @@ -64369,7 +64123,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3" sources."@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7" @@ -64428,7 +64182,7 @@ in sources."@babel/plugin-transform-new-target-7.23.3" sources."@babel/plugin-transform-nullish-coalescing-operator-7.23.4" sources."@babel/plugin-transform-numeric-separator-7.23.4" - sources."@babel/plugin-transform-object-rest-spread-7.23.4" + sources."@babel/plugin-transform-object-rest-spread-7.24.0" sources."@babel/plugin-transform-object-super-7.23.3" sources."@babel/plugin-transform-optional-catch-binding-7.23.4" sources."@babel/plugin-transform-optional-chaining-7.23.4" @@ -64448,12 +64202,12 @@ in sources."@babel/plugin-transform-unicode-property-regex-7.23.3" sources."@babel/plugin-transform-unicode-regex-7.23.3" sources."@babel/plugin-transform-unicode-sets-regex-7.23.3" - (sources."@babel/preset-env-7.23.9" // { + (sources."@babel/preset-env-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/preset-flow-7.23.3" + sources."@babel/preset-flow-7.24.0" sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/preset-typescript-7.23.3" (sources."@babel/register-7.23.7" // { @@ -64464,10 +64218,10 @@ in ]; }) sources."@babel/regjsgen-0.8.0" - sources."@babel/runtime-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/runtime-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."@graphql-tools/merge-8.3.1" (sources."@graphql-tools/mock-8.7.20" // { dependencies = [ @@ -64483,11 +64237,11 @@ in sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@josephg/resolvable-1.0.1" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@node-ipc/js-queue-2.0.3" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -64523,9 +64277,9 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/normalize-package-data-2.4.4" - sources."@types/qs-6.9.11" + sources."@types/qs-6.9.13" sources."@types/range-parser-1.2.7" sources."@types/serve-static-1.15.5" sources."@types/through-0.0.33" @@ -64537,14 +64291,14 @@ in }) sources."@vue/cli-ui-addon-webpack-5.0.8" sources."@vue/cli-ui-addon-widgets-5.0.8" - (sources."@vue/compiler-core-3.4.19" // { + (sources."@vue/compiler-core-3.4.21" // { dependencies = [ sources."entities-4.5.0" ]; }) - sources."@vue/compiler-dom-3.4.19" + sources."@vue/compiler-dom-3.4.21" sources."@vue/compiler-sfc-2.7.16" - sources."@vue/shared-3.4.19" + sources."@vue/shared-3.4.21" sources."accepts-1.3.8" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" @@ -64588,13 +64342,21 @@ in sources."at-least-node-1.0.0" sources."atob-2.1.2" sources."babel-core-7.0.0-bridge.0" - (sources."babel-plugin-polyfill-corejs2-0.4.8" // { + (sources."babel-plugin-polyfill-corejs2-0.4.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."babel-plugin-polyfill-corejs3-0.9.0" - sources."babel-plugin-polyfill-regenerator-0.5.5" + (sources."babel-plugin-polyfill-corejs3-0.9.0" // { + dependencies = [ + sources."@babel/helper-define-polyfill-provider-0.5.0" + ]; + }) + (sources."babel-plugin-polyfill-regenerator-0.5.5" // { + dependencies = [ + sources."@babel/helper-define-polyfill-provider-0.5.0" + ]; + }) sources."backo2-1.0.2" sources."balanced-match-1.0.2" (sources."base-0.11.2" // { @@ -64636,7 +64398,7 @@ in }) sources."call-bind-1.0.7" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -64674,7 +64436,7 @@ in sources."cookie-0.5.0" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - sources."core-js-compat-3.36.0" + sources."core-js-compat-3.36.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" (sources."cross-spawn-6.0.5" // { @@ -64736,7 +64498,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -64764,12 +64526,9 @@ in sources."is-descriptor-0.1.7" ]; }) - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ - sources."body-parser-1.20.1" sources."debug-2.6.9" - sources."iconv-lite-0.4.24" - sources."raw-body-2.5.1" ]; }) sources."express-history-api-fallback-2.2.1" @@ -64838,7 +64597,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.229.0" + sources."flow-parser-0.231.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -64886,7 +64645,7 @@ in sources."growly-1.3.0" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -64901,7 +64660,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."http-cache-semantics-3.8.1" sources."http-errors-2.0.0" @@ -64957,7 +64716,7 @@ in ]; }) sources."javascript-stringify-2.1.0" - sources."joi-17.12.1" + sources."joi-17.12.2" sources."js-message-1.0.7" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" @@ -65120,7 +64879,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - (sources."postcss-8.4.35" // { + (sources."postcss-8.4.36" // { dependencies = [ sources."nanoid-3.3.7" ]; @@ -65198,7 +64957,7 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -65212,7 +64971,7 @@ in sources."shell-quote-1.8.1" sources."shellwords-0.1.1" sources."shortid-2.2.16" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."slash-3.0.0" (sources."snapdragon-0.8.2" // { @@ -65237,7 +64996,7 @@ in sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" sources."source-map-0.6.1" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."source-map-resolve-0.5.3" sources."source-map-support-0.5.21" sources."source-map-url-0.4.1" @@ -65367,7 +65126,7 @@ in sources."ws-7.5.9" sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" - (sources."xss-1.0.14" // { + (sources."xss-1.0.15" // { dependencies = [ sources."commander-2.20.3" ]; @@ -65526,14 +65285,14 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -65610,7 +65369,7 @@ in sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/highlight-7.23.4" sources."@isaacs/cliui-8.0.2" - sources."@npmcli/config-6.4.0" + sources."@npmcli/config-6.4.1" (sources."@npmcli/map-workspaces-3.0.4" // { dependencies = [ sources."glob-10.3.10" @@ -65631,7 +65390,7 @@ in sources."@types/concat-stream-2.0.3" sources."@types/debug-4.1.12" sources."@types/estree-1.0.5" - sources."@types/estree-jsx-1.0.4" + sources."@types/estree-jsx-1.0.5" sources."@types/hast-2.3.10" sources."@types/http-cache-semantics-4.0.4" sources."@types/is-empty-1.2.3" @@ -65639,7 +65398,7 @@ in sources."@types/minimist-1.2.5" sources."@types/ms-0.7.34" sources."@types/nlcst-1.0.4" - sources."@types/node-18.19.17" + sources."@types/node-18.19.25" sources."@types/normalize-package-data-2.4.4" sources."@types/supports-color-8.1.3" sources."@types/unist-2.0.10" @@ -65682,7 +65441,7 @@ in sources."character-entities-html4-2.1.0" sources."character-entities-legacy-3.0.0" sources."character-reference-invalid-2.0.1" - sources."ci-info-3.9.0" + sources."ci-info-4.0.0" sources."cli-boxes-3.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -65759,7 +65518,7 @@ in sources."hard-rejection-2.1.0" sources."has-flag-3.0.0" sources."has-yarn-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hast-util-embedded-2.0.1" sources."hast-util-from-parse5-7.1.2" sources."hast-util-has-property-2.0.1" @@ -65785,12 +65544,16 @@ in sources."indent-string-5.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-4.1.1" + sources."ini-4.1.2" sources."is-alphabetical-2.0.1" sources."is-alphanumerical-2.0.1" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-ci-3.0.1" + (sources."is-ci-3.0.1" // { + dependencies = [ + sources."ci-info-3.9.0" + ]; + }) sources."is-core-module-2.13.1" sources."is-decimal-2.0.1" sources."is-empty-1.2.0" @@ -65896,7 +65659,7 @@ in sources."nlcst-to-string-3.1.1" sources."nopt-7.2.0" sources."normalize-package-data-4.0.1" - sources."normalize-url-8.0.0" + sources."normalize-url-8.0.1" sources."npm-normalize-package-bin-3.0.1" sources."object-keys-0.4.0" sources."once-1.4.0" @@ -66121,7 +65884,7 @@ in sources."xdg-basedir-5.1.0" sources."xtend-2.1.2" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yargs-parser-21.1.1" sources."yocto-queue-1.0.0" sources."zwitch-2.0.4" @@ -66189,24 +65952,24 @@ in autoprefixer = nodeEnv.buildNodePackage { name = "autoprefixer"; packageName = "autoprefixer"; - version = "10.4.17"; + version = "10.4.18"; src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz"; - sha512 = "/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg=="; + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.18.tgz"; + sha512 = "1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g=="; }; dependencies = [ sources."browserslist-4.23.0" - sources."caniuse-lite-1.0.30001587" - sources."electron-to-chromium-1.4.673" + sources."caniuse-lite-1.0.30001599" + sources."electron-to-chromium-1.4.710" sources."escalade-3.1.2" sources."fraction.js-4.3.7" sources."nanoid-3.3.7" sources."node-releases-2.0.14" sources."normalize-range-0.1.2" sources."picocolors-1.0.0" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-value-parser-4.2.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."update-browserslist-db-1.0.13" ]; buildInputs = globalBuildInputs; @@ -66260,10 +66023,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.128.0"; + version = "2.133.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.128.0.tgz"; - sha512 = "epOAr/0WKqmyaKqBc7N0Ky5++93pu+v6yVN9jNOa4JYkAkGbeTS3vR9bj/W0o94jnlgWevG3HNHr83jtRvw/4A=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.133.0.tgz"; + sha512 = "EwH8VgQQ8ODeMwjE3p+WhbcbWNkCbvuJJl+Py9IB5znGf7GwLcEmOu4YWBsBGPVu41SXbSAf36twMBrJytCFZA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -66304,9 +66067,9 @@ in sources."@sindresorhus/is-5.6.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/debug-4.1.12" - sources."@types/eslint-8.56.2" + sources."@types/eslint-8.56.5" sources."@types/estree-1.0.5" - sources."@types/estree-jsx-1.0.4" + sources."@types/estree-jsx-1.0.5" (sources."@types/hast-2.3.10" // { dependencies = [ sources."@types/unist-2.0.10" @@ -66412,7 +66175,7 @@ in }) sources."graceful-fs-4.2.11" sources."has-flag-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-7.0.1" sources."http-cache-semantics-4.1.1" sources."http2-wrapper-2.2.1" @@ -66532,8 +66295,8 @@ in sources."mri-1.2.0" sources."ms-2.1.2" sources."normalize-package-data-6.0.0" - sources."normalize-url-8.0.0" - (sources."npm-run-path-5.2.0" // { + sources."normalize-url-8.0.1" + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -67170,7 +66933,7 @@ in sources."to-regex-range-5.0.1" sources."to-vfile-8.0.0" sources."trough-2.2.0" - sources."type-fest-4.10.2" + sources."type-fest-4.12.0" sources."unified-11.0.4" (sources."unified-lint-rule-2.1.2" // { dependencies = [ @@ -67382,7 +67145,7 @@ in sources."get-stdin-4.0.1" sources."glob-6.0.4" sources."graceful-fs-3.0.12" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."indent-string-2.1.0" sources."inflight-1.0.6" @@ -67490,7 +67253,7 @@ in sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - (sources."asn1.js-5.4.1" // { + (sources."asn1.js-4.10.1" // { dependencies = [ sources."bn.js-4.12.0" ]; @@ -67501,7 +67264,7 @@ in sources."util-0.10.4" ]; }) - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bn.js-5.2.1" @@ -67513,9 +67276,9 @@ in sources."browserify-cipher-1.0.1" sources."browserify-des-1.0.2" sources."browserify-rsa-4.1.0" - (sources."browserify-sign-4.2.2" // { + (sources."browserify-sign-4.2.3" // { dependencies = [ - sources."readable-stream-3.6.2" + sources."hash-base-3.0.4" ]; }) sources."browserify-zlib-0.2.0" @@ -67555,7 +67318,7 @@ in }) sources."domain-browser-1.2.0" sources."duplexer2-0.1.4" - (sources."elliptic-6.5.4" // { + (sources."elliptic-6.5.5" // { dependencies = [ sources."bn.js-4.12.0" ]; @@ -67574,7 +67337,7 @@ in sources."gopd-1.0.1" sources."has-1.0.4" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" (sources."hash-base-3.1.0" // { @@ -67583,14 +67346,14 @@ in ]; }) sources."hash.js-1.1.7" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hmac-drbg-1.0.1" sources."htmlescape-1.1.1" sources."https-browserify-1.0.0" sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inline-source-map-0.6.2" + sources."inline-source-map-0.6.3" sources."insert-module-globals-7.2.1" sources."is-arguments-1.1.1" sources."is-buffer-1.1.6" @@ -67621,12 +67384,17 @@ in sources."os-browserify-0.3.0" sources."pako-1.0.11" sources."parents-1.0.1" - sources."parse-asn1-5.1.6" + (sources."parse-asn1-5.1.7" // { + dependencies = [ + sources."hash-base-3.0.4" + ]; + }) sources."path-browserify-1.0.1" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" sources."path-platform-0.11.15" sources."pbkdf2-3.1.2" + sources."possible-typed-array-names-1.0.0" sources."process-0.11.10" sources."process-nextick-args-2.0.1" (sources."public-encrypt-4.0.3" // { @@ -67635,7 +67403,7 @@ in ]; }) sources."punycode-1.4.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."querystring-es3-0.2.1" sources."randombytes-2.1.0" sources."randomfill-1.0.4" @@ -67649,12 +67417,11 @@ in sources."resolve-1.22.8" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" - sources."safer-buffer-2.1.2" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."sha.js-2.4.11" sources."shasum-object-1.0.0" sources."shell-quote-1.8.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."simple-concat-1.0.1" sources."source-map-0.5.7" (sources."stream-browserify-3.0.0" // { @@ -67684,7 +67451,7 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."vm-browserify-1.1.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wrappy-1.0.2" sources."xtend-4.0.2" ]; @@ -67710,7 +67477,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.17" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -67720,7 +67487,7 @@ in sources."balanced-match-1.0.2" sources."base64id-2.0.0" sources."batch-0.6.1" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browser-sync-client-3.0.2" @@ -67767,7 +67534,7 @@ in sources."ms-2.0.0" ]; }) - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."fresh-0.5.2" sources."fs-extra-3.0.1" sources."get-caller-file-2.0.5" @@ -67848,9 +67615,9 @@ in sources."serve-static-1.13.2" sources."server-destroy-1.0.1" sources."setprototypeof-1.2.0" - sources."socket.io-4.7.4" - sources."socket.io-adapter-2.5.2" - sources."socket.io-client-4.7.4" + sources."socket.io-4.7.5" + sources."socket.io-adapter-2.5.4" + sources."socket.io-client-4.7.5" sources."socket.io-parser-4.2.4" sources."statuses-1.3.1" sources."stream-throttle-0.1.3" @@ -67886,16 +67653,16 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.198.51"; + version = "2.198.65"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.51.tgz"; - sha512 = "llOd2XWKzjp/z/abLO1cwyNJI0KfLQfH3vPHr9t5Y++FZw/+km/51Q0fEI4NaZvh3hVai1rxgix2alBBEitITw=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.65.tgz"; + sha512 = "CWEUGvGS5I4wugFDQ7j5jj1aS8oFu9CVoWBku2mHHp/Szt6wv4q3GPz0z7oTaZuezj8yIzQQyPCLU8Bns6Mupw=="; }; dependencies = [ sources."@colors/colors-1.6.0" sources."@dabh/diagnostics-2.0.3" - sources."@jsii/check-node-1.94.0" - sources."@jsii/spec-1.94.0" + sources."@jsii/check-node-1.95.0" + sources."@jsii/spec-1.95.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -67911,7 +67678,7 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" - sources."@types/node-16.18.82" + sources."@types/node-16.18.90" sources."@types/triple-beam-1.3.5" sources."@xmldom/xmldom-0.8.10" sources."aggregate-error-3.1.0" @@ -67945,8 +67712,8 @@ in sources."buffer-5.7.1" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.68.38" - sources."cdk8s-plus-25-2.22.76" + sources."cdk8s-2.68.46" + sources."cdk8s-plus-25-2.22.79" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -67955,7 +67722,7 @@ in sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.94.0" // { + (sources."codemaker-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; @@ -67991,10 +67758,10 @@ in sources."detect-newline-2.1.0" sources."dir-glob-3.0.1" sources."dot-case-3.0.4" - sources."dotenv-16.4.4" + sources."dotenv-16.4.5" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.4.0-dev.20240217" + sources."typescript-5.5.0-dev.20240318" ]; }) sources."emoji-regex-8.0.0" @@ -68019,9 +67786,9 @@ in }) sources."fill-range-7.0.1" sources."find-up-4.1.0" - sources."flatted-3.2.9" + sources."flatted-3.3.1" sources."fn.name-1.1.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."form-data-4.0.0" (sources."fs-extra-8.1.0" // { dependencies = [ @@ -68039,7 +67806,7 @@ in sources."graphql-16.8.1" sources."graphql-tag-2.12.6" sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.3.1" @@ -68064,25 +67831,25 @@ in sources."is-plain-object-5.0.0" sources."is-stream-2.0.1" sources."is-unicode-supported-0.1.0" - (sources."jsii-1.94.0" // { + (sources."jsii-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.94.0" // { + (sources."jsii-pacmak-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.94.0" // { + (sources."jsii-reflect-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.94.0" // { + (sources."jsii-rosetta-1.95.0" // { dependencies = [ sources."yargs-16.2.0" ]; @@ -68091,7 +67858,7 @@ in dependencies = [ sources."cliui-8.0.1" sources."fs-extra-9.1.0" - (sources."jsii-5.3.18" // { + (sources."jsii-5.3.29" // { dependencies = [ sources."yargs-17.7.2" ]; @@ -68134,7 +67901,7 @@ in sources."once-1.4.0" sources."one-time-1.0.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.94.0" + sources."oo-ascii-tree-1.95.0" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" @@ -68179,7 +67946,7 @@ in sources."slice-ansi-4.0.0" sources."snake-case-3.0.4" sources."sort-json-2.0.1" - sources."spdx-license-list-6.8.0" + sources."spdx-license-list-6.9.0" sources."sscaff-1.2.274" sources."stack-trace-0.0.10" sources."stream-chain-2.2.5" @@ -68213,7 +67980,7 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-module-2.0.1" - sources."winston-3.11.0" + sources."winston-3.12.0" sources."winston-transport-4.7.0" sources."workerpool-6.5.1" sources."wrap-ansi-7.0.0" @@ -68221,7 +67988,7 @@ in sources."xmlbuilder-15.1.1" sources."y18n-5.0.8" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.0" (sources."yargs-15.4.1" // { dependencies = [ sources."camelcase-5.3.1" @@ -68248,10 +68015,10 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.20.3"; + version = "0.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.20.3.tgz"; - sha512 = "fPdG4pqUmBE/R8wFEJ9QugpeIJkczwnl8lsg13eo0PsmL8biaY8waLX4N5a/p2LLzGrPrVySdrZjF7Cnf+3J/A=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.20.5.tgz"; + sha512 = "TkLahINlLw6GwFYMbK9CvB9G/cCt6SbwKjJwYCJTPbC8bpr/S76pEw6x6vO13UUM80Yoak6srNtNS9DNIzF4Zw=="; }; dependencies = [ (sources."@babel/code-frame-7.23.5" // { @@ -68279,115 +68046,59 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.23.9" - sources."@babel/template-7.22.15" - sources."@babel/types-7.23.6" - (sources."@cdktf/cli-core-0.20.3" // { + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/types-7.24.0" + sources."@cdktf/cli-core-0.20.5" + (sources."@cdktf/commons-0.20.5" // { dependencies = [ - sources."@sentry/node-7.91.0" - sources."brace-expansion-2.0.1" - sources."ink-select-input-4.2.2" - sources."jsii-5.3.3" - sources."minimatch-5.1.6" - sources."node-fetch-2.7.0" - sources."react-17.0.2" - sources."yargs-17.7.2" - ]; - }) - (sources."@cdktf/commons-0.20.3" // { - dependencies = [ - sources."@sentry-internal/tracing-7.94.1" - sources."@sentry/core-7.94.1" - sources."@sentry/node-7.94.1" - sources."@sentry/types-7.94.1" - sources."@sentry/utils-7.94.1" + sources."@sentry/node-7.107.0" sources."camelcase-6.3.0" - sources."ci-info-3.9.0" - (sources."codemaker-1.94.0" // { + (sources."codemaker-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; }) sources."decamelize-5.0.1" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."fs-extra-11.2.0" sources."uuid-9.0.1" ]; }) - sources."@cdktf/hcl-tools-0.20.3" - (sources."@cdktf/hcl2cdk-0.20.3" // { + sources."@cdktf/hcl-tools-0.20.5" + (sources."@cdktf/hcl2cdk-0.20.5" // { dependencies = [ sources."brace-expansion-2.0.1" sources."camelcase-6.3.0" - sources."codemaker-1.94.0" + sources."codemaker-1.95.0" sources."decamelize-5.0.1" sources."fs-extra-10.1.0" sources."glob-10.3.10" sources."minimatch-9.0.3" ]; }) - (sources."@cdktf/hcl2json-0.20.3" // { + (sources."@cdktf/hcl2json-0.20.5" // { dependencies = [ sources."fs-extra-11.2.0" ]; }) sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11" - (sources."@cdktf/provider-generator-0.20.3" // { + (sources."@cdktf/provider-generator-0.20.5" // { dependencies = [ - sources."@jsii/check-node-1.94.0" - sources."@types/node-18.19.7" + sources."@types/node-18.19.24" sources."brace-expansion-2.0.1" sources."camelcase-6.3.0" - sources."cliui-7.0.4" - (sources."codemaker-1.94.0" // { + (sources."codemaker-1.95.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; }) sources."decamelize-5.0.1" - sources."escape-string-regexp-4.0.0" sources."glob-10.3.10" - (sources."jsii-5.3.18" // { - dependencies = [ - sources."yargs-17.7.2" - ]; - }) - (sources."jsii-pacmak-1.94.0" // { - dependencies = [ - sources."fs-extra-10.1.0" - sources."yargs-16.2.0" - ]; - }) - (sources."jsii-rosetta-1.94.0" // { - dependencies = [ - sources."fs-extra-10.1.0" - sources."jsii-1.94.0" - sources."yargs-16.2.0" - ]; - }) - (sources."jsii-srcmak-0.1.1005" // { - dependencies = [ - sources."fs-extra-9.1.0" - ]; - }) sources."minimatch-9.0.3" - sources."semver-7.6.0" - sources."typescript-3.9.10" - sources."wrap-ansi-7.0.0" - sources."y18n-4.0.3" - (sources."yargs-15.4.1" // { - dependencies = [ - sources."camelcase-5.3.1" - sources."cliui-6.0.0" - sources."decamelize-1.2.0" - sources."wrap-ansi-6.2.0" - sources."yargs-parser-18.1.3" - ]; - }) - sources."yargs-parser-20.2.9" ]; }) - (sources."@cdktf/provider-schema-0.20.3" // { + (sources."@cdktf/provider-schema-0.20.5" // { dependencies = [ sources."fs-extra-11.2.0" ]; @@ -68433,7 +68144,7 @@ in sources."signal-exit-4.1.0" ]; }) - sources."@inquirer/prompts-2.3.0" + sources."@inquirer/prompts-2.3.1" (sources."@inquirer/rawlist-1.2.16" // { dependencies = [ sources."@inquirer/core-6.0.0" @@ -68446,7 +68157,7 @@ in sources."signal-exit-4.1.0" ]; }) - sources."@inquirer/type-1.2.0" + sources."@inquirer/type-1.2.1" (sources."@isaacs/cliui-8.0.2" // { dependencies = [ sources."ansi-regex-6.0.1" @@ -68457,32 +68168,32 @@ in sources."wrap-ansi-8.1.0" ]; }) - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" - sources."@jsii/check-node-1.93.0" - sources."@jsii/spec-1.94.0" + sources."@jridgewell/trace-mapping-0.3.25" + sources."@jsii/check-node-1.95.0" + sources."@jsii/spec-1.95.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@sentry-internal/tracing-7.91.0" - sources."@sentry/core-7.91.0" - (sources."@sentry/node-7.64.0" // { + sources."@sentry-internal/tracing-7.107.0" + sources."@sentry/core-7.107.0" + (sources."@sentry/node-7.104.0" // { dependencies = [ - sources."@sentry-internal/tracing-7.64.0" - sources."@sentry/core-7.64.0" - sources."@sentry/types-7.64.0" - sources."@sentry/utils-7.64.0" + sources."@sentry-internal/tracing-7.104.0" + sources."@sentry/core-7.104.0" + sources."@sentry/types-7.104.0" + sources."@sentry/utils-7.104.0" ]; }) - sources."@sentry/types-7.91.0" - sources."@sentry/utils-7.91.0" + sources."@sentry/types-7.107.0" + sources."@sentry/utils-7.107.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" + sources."@types/react-18.2.67" sources."@types/scheduler-0.16.8" sources."@types/wrap-ansi-3.0.0" sources."@types/yauzl-2.10.3" @@ -68509,14 +68220,15 @@ in }) sources."arr-rotate-1.0.0" sources."array-buffer-byte-length-1.0.1" + sources."arraybuffer.prototype.slice-1.0.3" sources."astral-regex-2.0.0" sources."async-3.2.5" sources."at-least-node-1.0.0" sources."auto-bind-4.0.0" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."bl-4.1.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -68526,25 +68238,21 @@ in sources."call-bind-1.0.7" sources."camelcase-5.3.1" sources."case-1.6.3" - sources."cdktf-0.20.3" + sources."cdktf-0.20.5" sources."chalk-4.1.2" sources."chardet-0.7.0" - sources."chokidar-3.5.3" + sources."chokidar-3.6.0" sources."chownr-1.1.4" - sources."ci-info-3.8.0" + sources."ci-info-3.9.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-spinners-2.9.2" sources."cli-truncate-2.1.0" sources."cli-width-4.1.0" - (sources."cliui-8.0.1" // { - dependencies = [ - sources."wrap-ansi-7.0.0" - ]; - }) + sources."cliui-6.0.0" sources."clone-2.1.2" sources."code-excerpt-3.0.0" - (sources."codemaker-1.93.0" // { + (sources."codemaker-1.94.0" // { dependencies = [ sources."camelcase-6.3.0" sources."decamelize-5.0.1" @@ -68553,22 +68261,20 @@ in }) sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commonmark-0.30.0" + sources."commonmark-0.31.0" sources."compress-commons-4.1.2" sources."concat-map-0.0.1" sources."constructs-10.1.167" sources."convert-to-spaces-1.0.2" - sources."cookie-0.4.2" sources."core-util-is-1.0.3" sources."crc-32-1.2.2" sources."crc32-stream-4.0.3" - (sources."cross-fetch-3.1.8" // { - dependencies = [ - sources."node-fetch-2.7.0" - ]; - }) + sources."cross-fetch-3.1.8" sources."cross-spawn-7.0.3" sources."csstype-3.1.3" + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-1.2.0" @@ -68588,14 +68294,19 @@ in sources."detect-port-1.5.1" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.4.0-dev.20240217" + sources."typescript-5.5.0-dev.20240318" ]; }) sources."eastasianwidth-0.2.0" sources."emoji-regex-8.0.0" - sources."encoding-0.1.13" + (sources."encoding-0.1.13" // { + dependencies = [ + sources."iconv-lite-0.6.3" + ]; + }) sources."end-of-stream-1.4.4" - sources."entities-2.0.3" + sources."entities-3.0.1" + sources."es-abstract-1.23.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" (sources."es-get-iterator-1.1.3" // { @@ -68603,16 +68314,15 @@ in sources."isarray-2.0.5" ]; }) + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" + sources."es-to-primitive-1.2.1" sources."escalade-3.1.2" sources."escape-string-regexp-2.0.0" sources."events-3.3.0" sources."execa-5.1.1" sources."expand-template-2.0.3" - (sources."external-editor-3.1.0" // { - dependencies = [ - sources."iconv-lite-0.4.24" - ]; - }) + sources."external-editor-3.1.0" (sources."extract-zip-2.0.1" // { dependencies = [ sources."get-stream-5.2.0" @@ -68629,8 +68339,8 @@ in }) sources."fill-range-7.0.1" sources."find-up-4.1.0" - sources."flatted-3.2.9" - sources."follow-redirects-1.15.4" + sources."flatted-3.3.1" + sources."follow-redirects-1.15.5" sources."for-each-0.3.3" (sources."foreground-child-3.1.1" // { dependencies = [ @@ -68645,12 +68355,13 @@ in ]; }) sources."fs.realpath-1.0.0" - sources."fsevents-2.3.3" sources."function-bind-1.1.2" + sources."function.prototype.name-1.1.6" sources."functions-have-names-1.2.3" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.2.4" sources."get-stream-6.0.1" + sources."get-symbol-description-1.0.2" sources."github-from-package-0.0.0" (sources."glob-7.2.3" // { dependencies = [ @@ -68658,6 +68369,7 @@ in ]; }) sources."glob-parent-5.1.2" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."graceful-fs-4.2.11" sources."graphology-0.25.4" @@ -68665,26 +68377,26 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" - sources."iconv-lite-0.6.3" + sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."ink-3.2.0" - (sources."ink-select-input-4.2.1" // { + (sources."ink-select-input-4.2.2" // { dependencies = [ sources."react-17.0.2" ]; }) sources."ink-spinner-4.0.3" - sources."ink-table-3.0.0" + sources."ink-table-3.1.0" sources."ink-testing-library-2.1.0" sources."ink-use-stdout-dimensions-1.0.5" sources."internal-slot-1.0.7" @@ -68701,87 +68413,79 @@ in ]; }) sources."is-core-module-2.13.1" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-map-2.0.2" + sources."is-map-2.0.3" + sources."is-negative-zero-2.0.3" sources."is-number-7.0.0" sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.2" + sources."is-set-2.0.3" + sources."is-shared-array-buffer-1.0.3" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.13" sources."is-valid-domain-0.1.6" - sources."is-weakmap-2.0.1" - sources."is-weakset-2.0.2" + sources."is-weakmap-2.0.2" + sources."is-weakref-1.0.2" + sources."is-weakset-2.0.3" sources."is-wsl-2.2.0" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."jackspeak-2.3.6" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - (sources."jsii-5.3.2" // { + (sources."jsii-5.3.24" // { dependencies = [ - sources."yargs-17.7.2" + sources."@jsii/check-node-1.94.0" ]; }) - (sources."jsii-pacmak-1.93.0" // { + (sources."jsii-pacmak-1.94.0" // { dependencies = [ + sources."@jsii/check-node-1.94.0" sources."cliui-7.0.4" + sources."commonmark-0.30.0" + sources."entities-2.0.3" sources."escape-string-regexp-4.0.0" sources."fs-extra-10.1.0" - (sources."jsii-1.94.0" // { + (sources."jsii-1.95.0" // { dependencies = [ - sources."@jsii/check-node-1.94.0" + sources."@jsii/check-node-1.95.0" ]; }) - (sources."jsii-rosetta-1.94.0" // { + (sources."jsii-rosetta-1.95.0" // { dependencies = [ - sources."@jsii/check-node-1.94.0" + sources."@jsii/check-node-1.95.0" ]; }) + sources."string.prototype.repeat-0.2.0" sources."typescript-3.9.10" sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-reflect-1.94.0" // { + (sources."jsii-reflect-1.95.0" // { dependencies = [ - sources."@jsii/check-node-1.94.0" sources."cliui-7.0.4" sources."fs-extra-10.1.0" sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-5.3.7" // { - dependencies = [ - sources."@jsii/check-node-1.94.0" - sources."yargs-17.7.2" - ]; - }) - (sources."jsii-srcmak-0.1.999" // { + sources."jsii-rosetta-5.3.27" + (sources."jsii-srcmak-0.1.1039" // { dependencies = [ sources."fs-extra-9.1.0" - (sources."jsii-5.2.44" // { - dependencies = [ - sources."yargs-17.7.2" - ]; - }) - sources."typescript-5.2.2" - (sources."yargs-15.4.1" // { - dependencies = [ - sources."cliui-6.0.0" - sources."y18n-4.0.3" - sources."yargs-parser-18.1.3" - ]; - }) + sources."yargs-15.4.1" ]; }) sources."json-schema-traverse-1.0.0" @@ -68804,14 +68508,13 @@ in sources."log4js-6.9.1" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" - sources."lru_map-0.3.3" sources."mdurl-1.0.1" sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-fn-2.1.0" sources."mimic-response-3.1.0" - (sources."minimatch-5.1.0" // { + (sources."minimatch-5.1.6" // { dependencies = [ sources."brace-expansion-2.0.1" ]; @@ -68821,24 +68524,24 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."mute-stream-1.0.0" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."napi-build-utils-1.0.2" sources."ncp-2.0.0" - sources."node-abi-3.54.0" - sources."node-fetch-2.6.7" + sources."node-abi-3.56.0" + sources."node-fetch-2.7.0" sources."node-gyp-build-4.8.0" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" sources."object-hash-2.2.0" sources."object-inspect-1.13.1" - sources."object-is-1.1.5" + sources."object-is-1.1.6" sources."object-keys-1.1.1" sources."object.assign-4.1.5" sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.94.0" + sources."oo-ascii-tree-1.95.0" sources."open-7.4.2" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" @@ -68867,7 +68570,8 @@ in sources."path-exists-3.0.0" ]; }) - sources."prebuild-install-7.1.1" + sources."possible-typed-array-names-1.0.0" + sources."prebuild-install-7.1.2" sources."prettier-2.8.8" sources."process-nextick-args-2.0.1" sources."pump-3.0.0" @@ -68896,30 +68600,36 @@ in sources."rfdc-1.3.1" sources."run-async-3.0.0" sources."run-parallel-1.2.0" + (sources."safe-array-concat-1.1.2" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."safe-buffer-5.2.1" + sources."safe-regex-test-1.0.3" sources."safer-buffer-2.1.2" sources."sax-1.3.0" sources."scheduler-0.20.2" - sources."semver-7.5.4" + sources."semver-7.6.0" (sources."semver-intersect-1.5.0" // { dependencies = [ sources."semver-6.3.1" ]; }) sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shell-quote-1.8.1" sources."shelljs-0.8.5" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" sources."slice-ansi-3.0.0" sources."sort-json-2.0.1" - sources."spdx-license-list-6.8.0" + sources."spdx-license-list-6.9.0" sources."sscaff-1.2.274" sources."stack-utils-2.0.6" sources."stop-iteration-iterator-1.0.0" @@ -68929,7 +68639,10 @@ in sources."streamroller-3.1.5" sources."string-width-4.2.3" sources."string-width-cjs-4.2.3" - sources."string.prototype.repeat-0.2.0" + sources."string.prototype.repeat-1.0.0" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" + sources."string.prototype.trimstart-1.0.7" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."strip-ansi-cjs-6.0.1" @@ -68943,10 +68656,14 @@ in sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" - sources."tslib-2.6.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.12.0" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" sources."typescript-5.3.3" + sources."unbox-primitive-1.0.2" sources."undici-types-5.26.5" sources."universalify-2.0.1" sources."uri-js-4.4.1" @@ -68957,9 +68674,9 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-collection-1.0.1" + sources."which-collection-1.0.2" sources."which-module-2.0.1" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."widest-line-3.1.0" sources."workerpool-6.5.1" sources."wrap-ansi-6.2.0" @@ -68969,10 +68686,17 @@ in sources."xml-js-1.6.11" sources."xmlbuilder-15.1.1" sources."xstate-4.38.3" - sources."y18n-5.0.8" + sources."y18n-4.0.3" sources."yallist-4.0.0" - sources."yargs-17.6.2" - sources."yargs-parser-21.1.1" + (sources."yargs-17.7.2" // { + dependencies = [ + sources."cliui-8.0.1" + sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" + sources."yargs-parser-21.1.1" + ]; + }) + sources."yargs-parser-18.1.3" sources."yauzl-2.10.0" sources."yoga-layout-prebuilt-1.10.0" (sources."zip-stream-4.1.1" // { @@ -69016,7 +68740,7 @@ in sources."meow-12.1.1" sources."merge-stream-2.0.0" sources."mimic-fn-4.0.0" - (sources."npm-run-path-5.2.0" // { + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -69394,7 +69118,7 @@ in }; dependencies = [ sources."anymatch-3.1.3" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."braces-3.0.2" sources."chokidar-3.6.0" sources."fill-range-7.0.1" @@ -69524,7 +69248,7 @@ in sources."array-buffer-byte-length-1.0.1" sources."arraybuffer.prototype.slice-1.0.3" sources."async-2.6.4" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."await-semaphore-0.1.3" sources."balanced-match-1.0.2" sources."big-integer-1.6.52" @@ -69549,6 +69273,9 @@ in sources."which-1.3.1" ]; }) + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."date-format-4.0.14" sources."debounce-1.2.1" sources."debug-4.3.4" @@ -69558,18 +69285,19 @@ in sources."duplexer2-0.1.4" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" - sources."es-abstract-1.22.4" + sources."es-abstract-1.23.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es-set-tostringtag-2.0.2" + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" sources."es-to-primitive-1.2.1" sources."execa-1.0.0" sources."fast-diff-1.3.0" sources."fb-watchman-2.0.2" - sources."flatted-3.2.9" - sources."follow-redirects-1.15.5" + sources."flatted-3.3.1" + sources."follow-redirects-1.15.6" sources."for-each-0.3.3" - sources."fp-ts-2.16.2" + sources."fp-ts-2.16.4" sources."fs-extra-8.1.0" (sources."fs-minipass-2.1.0" // { dependencies = [ @@ -69595,10 +69323,10 @@ in sources."graceful-fs-4.2.11" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-proxy-agent-4.0.1" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" @@ -69612,12 +69340,13 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" - sources."is-negative-zero-2.0.2" + sources."is-negative-zero-2.0.3" sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.2" + sources."is-shared-array-buffer-1.0.3" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -69668,6 +69397,7 @@ in sources."p-finally-1.0.0" sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" + sources."possible-typed-array-names-1.0.0" sources."process-nextick-args-2.0.1" sources."promise.prototype.finally-3.1.8" sources."promisify-child-process-4.1.1" @@ -69683,22 +69413,22 @@ in sources."rfc-3986-1.0.1" sources."rfdc-1.3.1" sources."rimraf-3.0.2" - sources."safe-array-concat-1.1.0" + sources."safe-array-concat-1.1.2" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.3" sources."safer-buffer-2.1.2" sources."semver-7.6.0" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shell-quote-1.8.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."streamroller-3.1.5" - sources."string.prototype.trim-1.2.8" - sources."string.prototype.trimend-1.0.7" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" sources."string.prototype.trimstart-1.0.7" (sources."string_decoder-1.1.1" // { dependencies = [ @@ -69711,10 +69441,10 @@ in sources."tr46-0.0.3" sources."traverse-0.3.9" sources."tslib-2.6.2" - sources."typed-array-buffer-1.0.1" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" sources."unbox-primitive-1.0.2" sources."universalify-0.1.2" sources."unzipper-0.10.14" @@ -69733,7 +69463,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wrappy-1.0.2" sources."yallist-4.0.0" ]; @@ -69788,13 +69518,13 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.348"; + version = "1.1.351"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.348.tgz"; - sha512 = "osEFt4HqNux5pJAOF3yl49GRobmJyoqU4knouYEBhwV+VLSxkbmWID803rFV5rwY1RDBYJ8WusKWqdqoHeRRTw=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.351.tgz"; + sha512 = "MDOD0FTzmEHrnuCNLGG+s9fJivOxY/IXFfCdzZnwGJCh4K7T0IjA6lHnS2QGODtMPAM6kEm4hnMbWzDxnSlF2w=="; }; dependencies = [ - sources."pyright-1.1.350" + sources."pyright-1.1.354" ]; buildInputs = globalBuildInputs; meta = { @@ -69868,10 +69598,10 @@ in coc-rust-analyzer = nodeEnv.buildNodePackage { name = "coc-rust-analyzer"; packageName = "coc-rust-analyzer"; - version = "0.75.1"; + version = "0.75.2"; src = fetchurl { - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.75.1.tgz"; - sha512 = "exYKJ1yJ+FBNQD0fKRoQP2ic0XQEf8WySTh+TnTYrxVfDzlV5aLVTEjfd71l58g0diz4znLPbN3lOnCRybSgdQ=="; + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.75.2.tgz"; + sha512 = "9id+1N8kwvPIDtGHQQsUokyFsJ2G3POgUgRXQhlBn9R/S+FmioyICor1la7+DpP/rBz46heHAApitX9SSKpSuw=="; }; buildInputs = globalBuildInputs; meta = { @@ -70136,14 +69866,14 @@ in sha512 = "+GYR6KTvHQnqu0j1kXT30hRZMuCwG/G52wG/19LSPE+p9Q0i8XFH6582T0btTu39xz2TPsDOGjT1VgyRw2urug=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" (sources."@babel/code-frame-7.23.5" // { dependencies = [ sources."chalk-2.4.2" ]; }) sources."@babel/compat-data-7.23.5" - sources."@babel/core-7.23.9" + sources."@babel/core-7.24.0" sources."@babel/generator-7.23.6" sources."@babel/helper-compilation-targets-7.23.6" sources."@babel/helper-environment-visitor-7.22.20" @@ -70156,21 +69886,21 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" (sources."@babel/highlight-7.23.4" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -70204,7 +69934,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -70241,7 +69971,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -70258,7 +69988,7 @@ in sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" + sources."flatted-3.3.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" sources."gensync-1.0.0-beta.2" @@ -70273,7 +70003,7 @@ in sources."gonzales-pe-4.3.0" sources."hard-rejection-2.1.0" sources."has-flag-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."hosted-git-info-4.1.0" // { dependencies = [ sources."lru-cache-6.0.0" @@ -70381,7 +70111,7 @@ in sources."postcss-safe-parser-4.0.2" sources."postcss-sass-0.4.4" sources."postcss-scss-2.1.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-syntax-0.36.2" sources."postcss-value-parser-4.2.0" sources."punycode-2.3.1" @@ -70487,10 +70217,10 @@ in coc-sumneko-lua = nodeEnv.buildNodePackage { name = "coc-sumneko-lua"; packageName = "coc-sumneko-lua"; - version = "0.0.40"; + version = "0.0.41"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.40.tgz"; - sha512 = "SvWs/4cHh4mul9JYO5JJ+sV8233yPPBgBxfmZalJa7lEd3VIZWN6Qvwn79u75vSzRU+rcBCcRYGnhBtAs3EpxQ=="; + url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.41.tgz"; + sha512 = "gOvCEK1YQbuQgNMPUYPhAD5I78MleBKN6loXBdZ3pDVk+MT0Cj+8QoWqIPcDfCsUhAp25wn0W+RozFj3HvLbIg=="; }; buildInputs = globalBuildInputs; meta = { @@ -70616,7 +70346,7 @@ in sources."function-bind-1.1.2" sources."glob-7.2.3" sources."has-flag-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-core-module-2.13.1" @@ -70691,7 +70421,7 @@ in sha512 = "PItTyCjeAPF0V7wZO+viGCO2PxrDLujRcb4wN4TKUFLni8fw3p5czviA6JFl5s8WLdkfjH6XkrciTwcVWH2srQ=="; }; dependencies = [ - sources."typescript-5.3.3" + sources."typescript-5.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -70816,7 +70546,7 @@ in sources."fast-levenshtein-2.0.6" sources."file-entry-cache-6.0.1" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" + sources."flatted-3.3.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" sources."functional-red-black-tree-1.0.1" @@ -70827,10 +70557,10 @@ in sources."gopd-1.0.1" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."ignore-4.0.6" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" @@ -70878,7 +70608,7 @@ in sources."resolve-from-4.0.0" sources."rimraf-3.0.2" sources."semver-7.6.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" (sources."slice-ansi-4.0.0" // { @@ -71201,51 +70931,6 @@ in bypassCache = true; reconstructLock = true; }; - coinmon = nodeEnv.buildNodePackage { - name = "coinmon"; - packageName = "coinmon"; - version = "0.0.28"; - src = fetchurl { - url = "https://registry.npmjs.org/coinmon/-/coinmon-0.0.28.tgz"; - sha512 = "jARqwj0uyTfbcsTr3IDoaGI6ZXUV8e8qVjw+LaRBujvjgsiWypJweze5IZy0/sjNEKlptwB7GDjmuphtBzngFA=="; - }; - dependencies = [ - sources."ansi-regex-3.0.1" - sources."ansi-styles-3.2.1" - sources."axios-0.21.4" - sources."chalk-2.4.2" - sources."cli-cursor-2.1.0" - sources."cli-spinners-1.3.1" - sources."cli-table3-0.5.1" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."colors-1.4.0" - sources."commander-2.20.3" - sources."escape-string-regexp-1.0.5" - sources."follow-redirects-1.15.5" - sources."has-flag-3.0.0" - sources."is-fullwidth-code-point-2.0.0" - sources."log-symbols-2.2.0" - sources."mimic-fn-1.2.0" - sources."object-assign-4.1.1" - sources."onetime-2.0.1" - sources."ora-1.4.0" - sources."restore-cursor-2.0.0" - sources."signal-exit-3.0.7" - sources."string-width-2.1.1" - sources."strip-ansi-4.0.0" - sources."supports-color-5.5.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A cryptocurrency price monitoring tool"; - homepage = "https://github.com/bichenkk/coinmon#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; concurrently = nodeEnv.buildNodePackage { name = "concurrently"; packageName = "concurrently"; @@ -71255,7 +70940,7 @@ in sha512 = "1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg=="; }; dependencies = [ - sources."@babel/runtime-7.23.9" + sources."@babel/runtime-7.24.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" (sources."chalk-4.1.2" // { @@ -71345,7 +71030,7 @@ in sources."git-semver-tags-7.0.1" sources."handlebars-4.7.8" sources."has-flag-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-7.0.1" sources."is-arrayish-0.2.1" sources."is-core-module-2.13.1" @@ -71388,7 +71073,7 @@ in sources."tempfile-5.0.0" sources."text-extensions-2.4.0" sources."through-2.3.8" - sources."type-fest-4.10.2" + sources."type-fest-4.12.0" sources."uglify-js-3.17.4" sources."validate-npm-package-license-3.0.4" sources."wordwrap-1.0.0" @@ -71486,7 +71171,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -71513,29 +71198,22 @@ in sources."cssauron-1.4.0" sources."custom-error-instance-2.1.1" sources."cycle-onionify-4.0.0" - sources."d-1.0.1" + sources."d-1.0.2" sources."debug-3.2.7" sources."define-data-property-1.1.4" sources."define-properties-1.2.1" sources."delayed-stream-1.0.0" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es5-ext-0.10.62" + sources."es5-ext-0.10.64" sources."es6-iterator-2.0.3" sources."es6-map-0.1.5" - (sources."es6-set-0.1.6" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) - sources."es6-symbol-3.1.3" + sources."es6-set-0.1.6" + sources."es6-symbol-3.1.4" sources."escape-string-regexp-1.0.5" + sources."esniff-2.0.1" sources."event-emitter-0.3.5" - (sources."ext-1.7.0" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) + sources."ext-1.7.0" sources."extend-3.0.2" sources."external-editor-2.2.0" sources."figures-2.0.0" @@ -71548,9 +71226,9 @@ in sources."has-ansi-2.0.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."iconv-lite-0.4.24" sources."inherits-2.0.4" (sources."inquirer-3.3.0" // { @@ -71588,7 +71266,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."quicktask-1.1.0" sources."raf-3.3.2" sources."readable-stream-2.3.8" @@ -71598,11 +71276,11 @@ in sources."rx-lite-aggregates-4.0.8" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."snabbdom-0.7.0" sources."snabbdom-selector-1.2.1" @@ -71620,7 +71298,7 @@ in sources."symbol-observable-2.0.3" sources."through-2.3.8" sources."tmp-0.0.33" - sources."type-1.2.0" + sources."type-2.7.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" (sources."variable-diff-1.1.0" // { @@ -71663,18 +71341,18 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "8.3.2"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-8.3.2.tgz"; - sha512 = "V8Ub3RO/a5lwSsltW/ib3Z3G/sczKtSpBBN1JChzbSCfEgaY2mJY8JW0BpkSV+Ug6uJitpXNOOaxa3Xr489i7g=="; + url = "https://registry.npmjs.org/cspell/-/cspell-8.6.0.tgz"; + sha512 = "aAaVD3v1105OQePCpcdYkHnHxxkxKxxQzFcfJ4tKsH06dlW04Sp1oQLlsjgWDa3y6cdYTpSYj1eSenavBvfOFg=="; }; dependencies = [ - sources."@cspell/cspell-bundled-dicts-8.3.2" - sources."@cspell/cspell-json-reporter-8.3.2" - sources."@cspell/cspell-pipe-8.3.2" - sources."@cspell/cspell-resolver-8.3.2" - sources."@cspell/cspell-service-bus-8.3.2" - sources."@cspell/cspell-types-8.3.2" + sources."@cspell/cspell-bundled-dicts-8.6.0" + sources."@cspell/cspell-json-reporter-8.6.0" + sources."@cspell/cspell-pipe-8.6.0" + sources."@cspell/cspell-resolver-8.6.0" + sources."@cspell/cspell-service-bus-8.6.0" + sources."@cspell/cspell-types-8.6.0" sources."@cspell/dict-ada-4.0.2" sources."@cspell/dict-aws-4.0.1" sources."@cspell/dict-bash-4.1.3" @@ -71691,7 +71369,7 @@ in sources."@cspell/dict-elixir-4.0.3" sources."@cspell/dict-en-common-misspellings-2.0.0" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.3.16" + sources."@cspell/dict-en_us-4.3.17" sources."@cspell/dict-filetypes-3.0.3" sources."@cspell/dict-fonts-4.0.0" sources."@cspell/dict-fsharp-1.0.1" @@ -71712,7 +71390,7 @@ in sources."@cspell/dict-npm-5.0.15" sources."@cspell/dict-php-4.0.6" sources."@cspell/dict-powershell-5.0.3" - sources."@cspell/dict-public-licenses-2.0.5" + sources."@cspell/dict-public-licenses-2.0.6" sources."@cspell/dict-python-4.1.11" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-5.0.2" @@ -71724,41 +71402,32 @@ in sources."@cspell/dict-swift-2.0.1" sources."@cspell/dict-typescript-3.1.2" sources."@cspell/dict-vue-3.0.0" - sources."@cspell/dynamic-import-8.3.2" - sources."@cspell/strong-weak-map-8.3.2" - sources."@isaacs/cliui-8.0.2" + sources."@cspell/dynamic-import-8.6.0" + sources."@cspell/strong-weak-map-8.6.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."ansi-regex-5.0.1" - sources."ansi-styles-6.2.1" + sources."ansi-regex-6.0.1" sources."array-timsort-1.0.3" - sources."balanced-match-1.0.2" - sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."callsites-3.1.0" sources."chalk-5.3.0" sources."chalk-template-1.1.0" sources."clear-module-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."commander-11.1.0" + sources."commander-12.0.0" sources."comment-json-4.2.3" sources."configstore-6.0.0" sources."core-util-is-1.0.3" - sources."cross-spawn-7.0.3" sources."crypto-random-string-4.0.0" - sources."cspell-config-lib-8.3.2" - sources."cspell-dictionary-8.3.2" - sources."cspell-gitignore-8.3.2" - sources."cspell-glob-8.3.2" - sources."cspell-grammar-8.3.2" - sources."cspell-io-8.3.2" - sources."cspell-lib-8.3.2" - sources."cspell-trie-lib-8.3.2" + sources."cspell-config-lib-8.6.0" + sources."cspell-dictionary-8.6.0" + sources."cspell-gitignore-8.6.0" + sources."cspell-glob-8.6.0" + sources."cspell-grammar-8.6.0" + sources."cspell-io-8.6.0" + sources."cspell-lib-8.6.0" + sources."cspell-trie-lib-8.6.0" sources."dot-prop-6.0.1" - sources."eastasianwidth-0.2.0" - sources."emoji-regex-9.2.2" sources."esprima-4.0.1" sources."fast-equals-5.0.1" sources."fast-glob-3.3.2" @@ -71767,16 +71436,10 @@ in sources."file-entry-cache-8.0.0" sources."fill-range-7.0.1" sources."find-up-simple-1.0.0" - sources."flat-cache-4.0.0" - sources."flatted-3.2.9" - (sources."foreground-child-3.1.1" // { - dependencies = [ - sources."signal-exit-4.1.0" - ]; - }) - sources."gensequence-6.0.0" + sources."flat-cache-4.0.1" + sources."flatted-3.3.1" + sources."gensequence-7.0.0" sources."get-stdin-9.0.0" - sources."glob-10.3.10" sources."glob-parent-5.1.2" sources."global-directory-4.0.1" sources."graceful-fs-4.2.11" @@ -71791,71 +71454,35 @@ in sources."imurmurhash-0.1.4" sources."ini-4.1.1" sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-typedarray-1.0.0" - sources."isexe-2.0.0" - sources."jackspeak-2.3.6" sources."json-buffer-3.0.1" sources."keyv-4.5.4" - sources."lru-cache-10.2.0" + sources."lru-cache-6.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."minimatch-9.0.3" - sources."minipass-7.0.4" sources."parent-module-2.0.0" - sources."path-key-3.1.1" - sources."path-scurry-1.10.1" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" sources."repeat-string-1.6.1" sources."resolve-from-5.0.0" sources."reusify-1.0.4" - sources."rimraf-5.0.5" sources."run-parallel-1.2.0" - (sources."semver-7.6.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - ]; - }) - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" + sources."semver-7.6.0" sources."signal-exit-3.0.7" - sources."string-width-5.1.2" - (sources."string-width-cjs-4.2.3" // { - dependencies = [ - sources."emoji-regex-8.0.0" - sources."strip-ansi-6.0.1" - ]; - }) - (sources."strip-ansi-7.1.0" // { - dependencies = [ - sources."ansi-regex-6.0.1" - ]; - }) - sources."strip-ansi-cjs-6.0.1" + sources."strip-ansi-7.1.0" sources."to-regex-range-5.0.1" sources."type-fest-1.4.0" sources."typedarray-to-buffer-3.1.5" sources."unique-string-3.0.0" sources."vscode-languageserver-textdocument-1.0.11" sources."vscode-uri-3.0.8" - sources."which-2.0.2" - sources."wrap-ansi-8.1.0" - (sources."wrap-ansi-cjs-7.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."emoji-regex-8.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - }) sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72042,13 +71669,13 @@ in sources."node-domexception-1.0.0" sources."node-fetch-3.3.2" sources."nopt-1.0.10" - (sources."npm-run-path-5.2.0" // { + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; }) sources."onetime-6.0.0" - sources."open-10.0.3" + sources."open-10.1.0" sources."path-key-3.1.1" sources."require-directory-2.1.1" sources."run-applescript-7.0.0" @@ -72079,14 +71706,14 @@ in dotenv-cli = nodeEnv.buildNodePackage { name = "dotenv-cli"; packageName = "dotenv-cli"; - version = "7.3.0"; + version = "7.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/dotenv-cli/-/dotenv-cli-7.3.0.tgz"; - sha512 = "314CA4TyK34YEJ6ntBf80eUY+t1XaFLyem1k9P0sX1gn30qThZ5qZr/ZwE318gEnzyYP9yj9HJk6SqwE0upkfw=="; + url = "https://registry.npmjs.org/dotenv-cli/-/dotenv-cli-7.4.1.tgz"; + sha512 = "fE1aywjRrWGxV3miaiUr3d2zC/VAiuzEGghi+QzgIA9fEf/M5hLMaRSXb4IxbUAwGmaLi0IozdZddnVU96acag=="; }; dependencies = [ sources."cross-spawn-7.0.3" - sources."dotenv-16.4.4" + sources."dotenv-16.4.5" sources."dotenv-expand-10.0.0" sources."isexe-2.0.0" sources."minimist-1.2.8" @@ -72098,6 +71725,7 @@ in buildInputs = globalBuildInputs; meta = { description = "A global executable to run applications with the ENV variables loaded by dotenv"; + homepage = "https://github.com/entropitor/dotenv-cli#readme"; license = "MIT"; }; production = true; @@ -72107,10 +71735,10 @@ in dotenv-vault = nodeEnv.buildNodePackage { name = "dotenv-vault"; packageName = "dotenv-vault"; - version = "1.26.0"; + version = "1.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/dotenv-vault/-/dotenv-vault-1.26.0.tgz"; - sha512 = "2PNnlprtOdFEG9+hAAZxXegcjlJVZMSy88arnRR4YjwU/PwkDbdtk1uzw/D88D5EZ0b84n7YVQ6RccRXmW/Qzg=="; + url = "https://registry.npmjs.org/dotenv-vault/-/dotenv-vault-1.26.1.tgz"; + sha512 = "v+RK6LXpJQWhaelTT2s0b5FQB0qziRBuGCrAgAeDHtgkDEA0NqF7OXYXsrnKTuCPnwBg0FmNJr4lZebCpJnrFA=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -72143,17 +71771,17 @@ in ]; }) sources."@oclif/screen-3.0.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/cli-progress-3.11.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-escapes-4.3.2" @@ -72167,7 +71795,7 @@ in sources."async-3.2.5" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."axios-0.27.2" + sources."axios-1.6.8" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-4.1.0" @@ -72201,7 +71829,7 @@ in sources."delayed-stream-1.0.0" sources."diff-4.0.2" sources."dir-glob-3.0.1" - sources."dotenv-16.4.4" + sources."dotenv-16.4.5" sources."ejs-3.1.9" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" @@ -72225,7 +71853,7 @@ in }) sources."filesize-6.4.0" sources."fill-range-7.0.1" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."form-data-4.0.0" sources."fs-constants-1.0.0" sources."fs-extra-9.1.0" @@ -72295,6 +71923,7 @@ in sources."path-key-3.1.1" sources."path-type-4.0.0" sources."picomatch-2.3.1" + sources."proxy-from-env-1.1.0" sources."pump-3.0.0" sources."queue-microtask-1.2.3" sources."readable-stream-3.6.2" @@ -72331,7 +71960,7 @@ in sources."tslib-2.6.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."universalify-2.0.1" sources."util-deprecate-1.0.2" @@ -72373,7 +72002,7 @@ in sources."assert-plus-1.0.0" sources."async-2.6.4" sources."asynckit-0.4.0" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."aws-sdk-2.1472.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" @@ -72412,12 +72041,12 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-signature-1.3.6" - sources."http-status-1.7.3" + sources."http-status-1.7.4" sources."ieee754-1.1.13" sources."inherits-2.0.4" sources."ini-2.0.0" @@ -72461,6 +72090,7 @@ in sources."p-queue-6.6.2" sources."p-timeout-3.2.0" sources."performance-now-2.1.0" + sources."possible-typed-array-names-1.0.0" sources."process-nextick-args-2.0.1" sources."psl-1.9.0" sources."punycode-1.3.2" @@ -72496,8 +72126,8 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.1" sources."semver-7.5.4" - sources."set-function-length-1.2.1" - sources."side-channel-1.0.5" + sources."set-function-length-1.2.2" + sources."side-channel-1.0.6" sources."socks5-client-1.2.8" sources."socks5-http-client-1.0.4" sources."socks5-https-client-1.2.1" @@ -72528,7 +72158,7 @@ in sources."util-deprecate-1.0.2" sources."uuid-8.0.0" sources."verror-1.10.0" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" sources."yallist-4.0.0" @@ -72546,25 +72176,25 @@ in "@electron-forge/cli" = nodeEnv.buildNodePackage { name = "_at_electron-forge_slash_cli"; packageName = "@electron-forge/cli"; - version = "7.2.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.2.0.tgz"; - sha512 = "FJ8XzT4w6bTC3trvHHWL67W1zp7g2xmCC5riNa1rjk8Gd2C1j8wf0ul4ch9kbcaEAFaXuXwv98QKXxhCn4aLtQ=="; + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.3.0.tgz"; + sha512 = "tIzNYTvCEjJbma7zLWpa03phLKX/pd9f+vG+0HlIpmESMFGWhyLDzunZn0YOOXPRKpCTVg5RpC+BVte1Da4VjQ=="; }; dependencies = [ - sources."@electron-forge/core-7.2.0" - sources."@electron-forge/core-utils-7.2.0" - sources."@electron-forge/maker-base-7.2.0" - sources."@electron-forge/plugin-base-7.2.0" - sources."@electron-forge/publisher-base-7.2.0" - sources."@electron-forge/shared-types-7.2.0" - sources."@electron-forge/template-base-7.2.0" - sources."@electron-forge/template-vite-7.2.0" - sources."@electron-forge/template-vite-typescript-7.2.0" - sources."@electron-forge/template-webpack-7.2.0" - sources."@electron-forge/template-webpack-typescript-7.2.0" - sources."@electron-forge/tracer-7.2.0" - (sources."@electron/asar-3.2.8" // { + sources."@electron-forge/core-7.3.0" + sources."@electron-forge/core-utils-7.3.0" + sources."@electron-forge/maker-base-7.3.0" + sources."@electron-forge/plugin-base-7.3.0" + sources."@electron-forge/publisher-base-7.3.0" + sources."@electron-forge/shared-types-7.3.0" + sources."@electron-forge/template-base-7.3.0" + sources."@electron-forge/template-vite-7.3.0" + sources."@electron-forge/template-vite-typescript-7.3.0" + sources."@electron-forge/template-webpack-7.3.0" + sources."@electron-forge/template-webpack-typescript-7.3.0" + sources."@electron-forge/tracer-7.3.0" + (sources."@electron/asar-3.2.9" // { dependencies = [ sources."commander-5.1.0" ]; @@ -72596,7 +72226,7 @@ in sources."minimatch-9.0.3" ]; }) - (sources."@electron/windows-sign-1.1.1" // { + (sources."@electron/windows-sign-1.1.2" // { dependencies = [ sources."fs-extra-11.2.0" ]; @@ -72614,7 +72244,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/responselike-1.0.3" sources."@types/yauzl-2.10.3" sources."@xmldom/xmldom-0.8.10" @@ -72767,10 +72397,10 @@ in sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."homedir-polyfill-1.0.3" sources."hosted-git-info-2.8.9" sources."http-cache-semantics-4.1.1" @@ -72848,7 +72478,7 @@ in sources."ms-2.0.0" sources."negotiator-0.6.3" sources."nice-try-1.0.5" - sources."node-abi-3.54.0" + sources."node-abi-3.56.0" sources."node-api-version-0.2.0" sources."node-fetch-2.7.0" sources."node-gyp-9.4.1" @@ -72953,7 +72583,7 @@ in sources."signal-exit-3.0.7" sources."slice-ansi-3.0.0" sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."socks-proxy-agent-7.0.0" sources."source-map-0.6.1" sources."source-map-support-0.5.21" @@ -73029,10 +72659,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "7.2.0"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-7.2.0.tgz"; - sha512 = "LZlPsVaNcTwGomKoBCUmOs9lIgCRQ63/ApWw5q6gcDyCmtuw+lcJCQ8zsGTKjUBMuMjRz1IiguTJ04MRBmR6jA=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-7.6.0.tgz"; + sha512 = "Czizaa4bUl4VQC8dQEVFKGfNAguKZBEsUL8Sy4Wgn2uojPQbpB8kp1rTAGf0fgGTJ2GZquf7dpjwXtfKrKqpDw=="; }; dependencies = [ sources."@0no-co/graphql.web-1.0.4" @@ -73048,7 +72678,7 @@ in sources."@jridgewell/trace-mapping-0.3.9" ]; }) - sources."@expo/apple-utils-1.4.0" + sources."@expo/apple-utils-1.7.0" (sources."@expo/bunyan-4.0.0" // { dependencies = [ sources."uuid-8.3.2" @@ -73067,8 +72697,8 @@ in ]; }) sources."@expo/config-types-50.0.0" - sources."@expo/eas-build-job-1.0.61" - (sources."@expo/eas-json-7.1.3" // { + sources."@expo/eas-build-job-1.0.83" + (sources."@expo/eas-json-7.5.0" // { dependencies = [ (sources."@babel/code-frame-7.23.5" // { dependencies = [ @@ -73143,7 +72773,7 @@ in }) sources."@expo/sdk-runtime-versions-1.0.0" sources."@expo/spawn-async-1.7.0" - (sources."@expo/steps-1.0.67" // { + (sources."@expo/steps-1.0.85" // { dependencies = [ sources."@expo/spawn-async-1.7.2" sources."arg-5.0.2" @@ -73152,11 +72782,11 @@ in sources."@expo/timeago.js-1.0.0" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -73188,18 +72818,18 @@ in sources."@sideway/address-4.1.5" sources."@sideway/formula-3.0.1" sources."@sideway/pinpoint-2.0.0" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/bunyan-1.8.11" sources."@types/cli-progress-3.11.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@urql/core-4.0.11" sources."@urql/exchange-retry-1.2.0" sources."@xmldom/xmldom-0.7.13" @@ -73402,7 +73032,7 @@ in sources."mute-stream-0.0.8" sources."mv-2.1.1" sources."mz-2.7.0" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."nanoid-3.3.4" sources."natural-orderby-2.0.3" sources."ncp-2.0.0" @@ -73536,7 +73166,7 @@ in sources."tunnel-agent-0.6.0" sources."turndown-7.1.2" sources."type-fest-0.21.3" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."unique-string-1.0.0" sources."universalify-2.0.1" @@ -73573,7 +73203,7 @@ in }) sources."xmlbuilder-14.0.0" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" sources."yocto-queue-0.1.0" ]; @@ -73616,7 +73246,7 @@ in dependencies = [ sources."@alcalzone/ansi-tokenize-0.1.3" sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" + sources."@types/react-18.2.67" sources."@types/scheduler-0.16.8" sources."ajv-8.12.0" sources."ajv-formats-2.1.1" @@ -73690,7 +73320,7 @@ in sources."merge-stream-2.0.0" sources."mimic-fn-4.0.0" sources."node-gyp-build-4.8.0" - (sources."npm-run-path-5.2.0" // { + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -73792,17 +73422,17 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "8.56.0"; + version = "8.57.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz"; - sha512 = "Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz"; + sha512 = "dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ=="; }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.10.0" sources."@eslint/eslintrc-2.1.4" - sources."@eslint/js-8.56.0" + sources."@eslint/js-8.57.0" sources."@humanwhocodes/config-array-0.11.14" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-2.0.2" @@ -73828,7 +73458,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.56.0" + sources."eslint-8.57.0" sources."eslint-scope-7.2.2" sources."eslint-visitor-keys-3.4.3" sources."espree-9.6.1" @@ -73843,7 +73473,7 @@ in sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" + sources."flatted-3.3.1" sources."fs.realpath-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" @@ -73934,10 +73564,10 @@ in sha512 = "qe7LOa0UTf/QQmeEtcoom/ujDdANj5XbgCOJuGnB2rGRx+xzReLfLbOrtSfb/2BM3rKHKGmmL940pyUq6f3ncg=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.10.4" sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."@babel/code-frame-7.23.5" sources."chalk-2.4.2" @@ -73955,7 +73585,7 @@ in sources."yallist-3.1.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.23.10" // { + (sources."@babel/helper-create-class-features-plugin-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -73965,7 +73595,7 @@ in sources."semver-6.3.1" ]; }) - sources."@babel/helper-define-polyfill-provider-0.5.0" + sources."@babel/helper-define-polyfill-provider-0.6.1" sources."@babel/helper-environment-visitor-7.22.20" sources."@babel/helper-function-name-7.23.0" sources."@babel/helper-hoist-variables-7.22.5" @@ -73973,7 +73603,7 @@ in sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" sources."@babel/helper-optimise-call-expression-7.22.5" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-remap-async-to-generator-7.22.20" sources."@babel/helper-replace-supers-7.22.20" sources."@babel/helper-simple-access-7.22.5" @@ -73983,19 +73613,19 @@ in sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" sources."@babel/helper-wrap-function-7.22.20" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" (sources."@babel/highlight-7.23.4" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3" sources."@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7" sources."@babel/plugin-proposal-async-generator-functions-7.20.7" sources."@babel/plugin-proposal-class-properties-7.18.6" - sources."@babel/plugin-proposal-decorators-7.23.9" + sources."@babel/plugin-proposal-decorators-7.24.0" sources."@babel/plugin-proposal-export-default-from-7.23.3" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-object-rest-spread-7.20.7" @@ -74005,7 +73635,7 @@ in sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" sources."@babel/plugin-syntax-class-static-block-7.14.5" - sources."@babel/plugin-syntax-decorators-7.23.3" + sources."@babel/plugin-syntax-decorators-7.24.0" sources."@babel/plugin-syntax-dynamic-import-7.8.3" sources."@babel/plugin-syntax-export-default-from-7.23.3" sources."@babel/plugin-syntax-export-namespace-from-7.8.3" @@ -74055,7 +73685,7 @@ in sources."@babel/plugin-transform-new-target-7.23.3" sources."@babel/plugin-transform-nullish-coalescing-operator-7.23.4" sources."@babel/plugin-transform-numeric-separator-7.23.4" - sources."@babel/plugin-transform-object-rest-spread-7.23.4" + sources."@babel/plugin-transform-object-rest-spread-7.24.0" sources."@babel/plugin-transform-object-super-7.23.3" sources."@babel/plugin-transform-optional-catch-binding-7.23.4" sources."@babel/plugin-transform-optional-chaining-7.23.4" @@ -74069,7 +73699,7 @@ in sources."@babel/plugin-transform-react-jsx-source-7.23.3" sources."@babel/plugin-transform-regenerator-7.23.3" sources."@babel/plugin-transform-reserved-words-7.23.3" - (sources."@babel/plugin-transform-runtime-7.23.9" // { + (sources."@babel/plugin-transform-runtime-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -74084,7 +73714,7 @@ in sources."@babel/plugin-transform-unicode-property-regex-7.23.3" sources."@babel/plugin-transform-unicode-regex-7.23.3" sources."@babel/plugin-transform-unicode-sets-regex-7.23.3" - (sources."@babel/preset-env-7.23.9" // { + (sources."@babel/preset-env-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -74092,25 +73722,25 @@ in sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/regjsgen-0.8.0" sources."@babel/runtime-7.9.0" - (sources."@babel/template-7.23.9" // { + (sources."@babel/template-7.24.0" // { dependencies = [ sources."@babel/code-frame-7.23.5" sources."chalk-2.4.2" ]; }) - (sources."@babel/traverse-7.23.9" // { + (sources."@babel/traverse-7.24.0" // { dependencies = [ sources."@babel/code-frame-7.23.5" sources."chalk-2.4.2" ]; }) - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" sources."@colors/colors-1.5.0" sources."@expo/apple-utils-1.0.0" sources."@expo/bunyan-4.0.0" (sources."@expo/cli-0.7.3" // { dependencies = [ - sources."@babel/runtime-7.23.9" + sources."@babel/runtime-7.24.0" (sources."@expo/config-8.0.5" // { dependencies = [ sources."semver-7.3.2" @@ -74267,12 +73897,12 @@ in ]; }) sources."@jest/types-26.6.2" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@leichtgewicht/ip-codec-2.0.4" sources."@module-federation/runtime-0.0.8" sources."@module-federation/runtime-tools-0.0.8" @@ -74294,17 +73924,17 @@ in ]; }) sources."@react-native/normalize-color-2.1.0" - sources."@rspack/binding-0.5.4" - sources."@rspack/binding-darwin-arm64-0.5.4" - sources."@rspack/binding-darwin-x64-0.5.4" - sources."@rspack/binding-linux-arm64-gnu-0.5.4" - sources."@rspack/binding-linux-arm64-musl-0.5.4" - sources."@rspack/binding-linux-x64-gnu-0.5.4" - sources."@rspack/binding-linux-x64-musl-0.5.4" - sources."@rspack/binding-win32-arm64-msvc-0.5.4" - sources."@rspack/binding-win32-ia32-msvc-0.5.4" - sources."@rspack/binding-win32-x64-msvc-0.5.4" - (sources."@rspack/core-0.5.4" // { + sources."@rspack/binding-0.5.7" + sources."@rspack/binding-darwin-arm64-0.5.7" + sources."@rspack/binding-darwin-x64-0.5.7" + sources."@rspack/binding-linux-arm64-gnu-0.5.7" + sources."@rspack/binding-linux-arm64-musl-0.5.7" + sources."@rspack/binding-linux-x64-gnu-0.5.7" + sources."@rspack/binding-linux-x64-musl-0.5.7" + sources."@rspack/binding-win32-arm64-msvc-0.5.7" + sources."@rspack/binding-win32-ia32-msvc-0.5.7" + sources."@rspack/binding-win32-x64-msvc-0.5.7" + (sources."@rspack/core-0.5.7" // { dependencies = [ sources."graceful-fs-4.2.10" ]; @@ -74314,7 +73944,7 @@ in sources."@sideway/formula-3.0.1" sources."@sideway/pinpoint-2.0.0" sources."@sindresorhus/is-4.6.0" - sources."@swc/helpers-0.5.6" + sources."@swc/helpers-0.5.7" sources."@szmarczak/http-timer-4.0.6" sources."@trysound/sax-0.2.0" sources."@types/body-parser-1.19.5" @@ -74322,7 +73952,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/connect-3.4.38" sources."@types/connect-history-api-fallback-1.5.4" - sources."@types/eslint-8.56.2" + sources."@types/eslint-8.56.5" sources."@types/eslint-scope-3.7.7" sources."@types/estree-1.0.5" sources."@types/express-4.17.21" @@ -74339,9 +73969,9 @@ in sources."@types/keyv-3.1.4" sources."@types/mime-1.3.5" sources."@types/minimatch-5.1.2" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/node-forge-1.3.11" - sources."@types/qs-6.9.11" + sources."@types/qs-6.9.13" sources."@types/range-parser-1.2.7" sources."@types/responselike-1.0.3" sources."@types/retry-0.12.5" @@ -74354,21 +73984,21 @@ in sources."@types/yargs-parser-21.0.3" sources."@urql/core-2.3.6" sources."@urql/exchange-retry-0.3.0" - sources."@webassemblyjs/ast-1.11.6" + sources."@webassemblyjs/ast-1.12.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" + sources."@webassemblyjs/helper-buffer-1.12.1" sources."@webassemblyjs/helper-numbers-1.11.6" sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" + sources."@webassemblyjs/helper-wasm-section-1.12.1" sources."@webassemblyjs/ieee754-1.11.6" sources."@webassemblyjs/leb128-1.11.6" sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" + sources."@webassemblyjs/wasm-edit-1.12.1" + sources."@webassemblyjs/wasm-gen-1.12.1" + sources."@webassemblyjs/wasm-opt-1.12.1" + sources."@webassemblyjs/wasm-parser-1.12.1" + sources."@webassemblyjs/wast-printer-1.12.1" sources."@xmldom/xmldom-0.7.13" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" @@ -74416,13 +74046,21 @@ in sources."axios-0.21.1" sources."babel-loader-8.3.0" sources."babel-plugin-module-resolver-4.1.0" - (sources."babel-plugin-polyfill-corejs2-0.4.8" // { + (sources."babel-plugin-polyfill-corejs2-0.4.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."babel-plugin-polyfill-corejs3-0.9.0" - sources."babel-plugin-polyfill-regenerator-0.5.5" + (sources."babel-plugin-polyfill-corejs3-0.9.0" // { + dependencies = [ + sources."@babel/helper-define-polyfill-provider-0.5.0" + ]; + }) + (sources."babel-plugin-polyfill-regenerator-0.5.5" // { + dependencies = [ + sources."@babel/helper-define-polyfill-provider-0.5.0" + ]; + }) sources."babel-plugin-react-native-web-0.18.12" sources."babel-preset-expo-9.3.2" sources."balanced-match-1.0.2" @@ -74431,7 +74069,7 @@ in sources."better-opn-3.0.2" sources."big-integer-1.6.52" sources."big.js-5.2.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."blueimp-md5-2.19.0" (sources."body-parser-1.20.2" // { dependencies = [ @@ -74474,7 +74112,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -74555,7 +74193,7 @@ in sources."slash-4.0.0" ]; }) - sources."core-js-compat-3.36.0" + sources."core-js-compat-3.36.1" sources."core-util-is-1.0.3" sources."cross-fetch-3.1.8" sources."cross-spawn-7.0.3" @@ -74619,7 +74257,7 @@ in sources."duplexer3-0.1.5" sources."eastasianwidth-0.2.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-9.2.2" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -74666,7 +74304,7 @@ in }) (sources."expo-48.0.21" // { dependencies = [ - sources."@babel/runtime-7.23.9" + sources."@babel/runtime-7.24.0" (sources."@expo/config-8.0.5" // { dependencies = [ sources."semver-7.3.2" @@ -74787,7 +74425,7 @@ in sources."find-cache-dir-3.3.2" sources."find-up-5.0.0" sources."find-yarn-workspace-root-2.0.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."fontfaceobserver-2.3.0" (sources."foreground-child-3.1.1" // { dependencies = [ @@ -74825,11 +74463,11 @@ in sources."handle-thing-2.0.1" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."hasbin-1.2.3" sources."hashids-1.1.4" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."he-1.2.0" (sources."hosted-git-info-3.0.8" // { dependencies = [ @@ -74837,7 +74475,7 @@ in ]; }) sources."hpack.js-2.1.6" - sources."html-entities-2.4.0" + sources."html-entities-2.5.2" (sources."html-minifier-terser-6.1.0" // { dependencies = [ sources."commander-8.3.0" @@ -74927,7 +74565,7 @@ in ]; }) sources."jimp-compact-0.16.1" - sources."joi-17.12.1" + sources."joi-17.12.2" sources."join-component-1.1.0" sources."js-tokens-4.0.0" (sources."js-yaml-3.14.1" // { @@ -74999,7 +74637,7 @@ in sources."mime-types-2.1.35" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" - (sources."mini-css-extract-plugin-2.8.0" // { + (sources."mini-css-extract-plugin-2.8.1" // { dependencies = [ sources."ajv-keywords-5.1.0" sources."schema-utils-4.2.0" @@ -75155,7 +74793,7 @@ in ]; }) sources."pngjs-3.4.0" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-calc-8.2.4" sources."postcss-colormin-5.3.1" sources."postcss-convert-values-5.1.3" @@ -75185,7 +74823,7 @@ in sources."postcss-ordered-values-5.1.3" sources."postcss-reduce-initial-5.1.2" sources."postcss-reduce-transforms-5.1.0" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-svgo-5.1.0" sources."postcss-unique-selectors-5.1.1" sources."postcss-value-parser-4.2.0" @@ -75321,13 +74959,13 @@ in sources."statuses-1.4.0" ]; }) - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setimmediate-1.0.5" sources."setprototypeof-1.2.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shell-quote-1.8.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" (sources."simple-plist-1.4.0" // { dependencies = [ @@ -75340,7 +74978,7 @@ in sources."sockjs-0.3.24" sources."source-list-map-2.0.1" sources."source-map-0.6.1" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" (sources."source-map-loader-3.0.2" // { dependencies = [ sources."iconv-lite-0.6.3" @@ -75439,7 +75077,7 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.27.1" // { + (sources."terser-5.29.2" // { dependencies = [ sources."commander-2.20.3" sources."source-map-support-0.5.21" @@ -75501,14 +75139,14 @@ in sources."valid-url-1.0.9" sources."validate-npm-package-name-3.0.0" sources."vary-1.1.2" - sources."watchpack-2.4.0" + sources."watchpack-2.4.1" sources."wbuf-1.7.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - (sources."webpack-5.90.2" // { + (sources."webpack-5.90.3" // { dependencies = [ sources."ajv-6.12.6" - sources."enhanced-resolve-5.15.0" + sources."enhanced-resolve-5.16.0" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-0.4.1" sources."schema-utils-3.3.0" @@ -75524,13 +75162,12 @@ in dependencies = [ sources."@types/retry-0.12.0" sources."ajv-keywords-5.1.0" - sources."body-parser-1.20.1" sources."content-disposition-0.5.4" sources."cookie-0.5.0" sources."debug-2.6.9" sources."default-gateway-6.0.3" sources."execa-5.1.1" - sources."express-4.18.2" + sources."express-4.18.3" sources."finalhandler-1.2.0" sources."get-stream-6.0.1" sources."ipaddr.js-2.1.0" @@ -75539,7 +75176,6 @@ in sources."npm-run-path-4.0.1" sources."onetime-5.1.2" sources."p-retry-4.6.2" - sources."raw-body-2.5.1" sources."retry-0.13.1" sources."rimraf-3.0.2" sources."schema-utils-4.2.0" @@ -75628,10 +75264,10 @@ in sha512 = "sA4bbCHFe8DqtRjlIVD5Hga+tDpYOgoOOG+NKyLFYJfLrxlmU28RmSjr+pC15q0xU67g7Ut3jDskasmjeLgRsg=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - sources."@babel/core-7.23.9" + sources."@babel/core-7.24.0" sources."@babel/generator-7.23.6" sources."@babel/helper-annotate-as-pure-7.22.5" sources."@babel/helper-compilation-targets-7.23.6" @@ -75640,34 +75276,34 @@ in sources."@babel/helper-hoist-variables-7.22.5" sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-simple-access-7.22.5" sources."@babel/helper-split-export-declaration-7.22.6" sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-proposal-object-rest-spread-7.20.7" sources."@babel/plugin-syntax-jsx-7.23.3" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" sources."@babel/plugin-transform-destructuring-7.23.3" sources."@babel/plugin-transform-parameters-7.23.3" sources."@babel/plugin-transform-react-jsx-7.23.4" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@types/minimist-1.2.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/normalize-package-data-2.4.4" sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" + sources."@types/react-18.2.67" sources."@types/scheduler-0.16.8" sources."@types/yauzl-2.10.3" sources."@types/yoga-layout-1.9.2" @@ -75695,7 +75331,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -75721,7 +75357,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -75741,7 +75377,7 @@ in sources."globals-11.12.0" sources."hard-rejection-2.1.0" sources."has-flag-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."hosted-git-info-4.1.0" // { dependencies = [ sources."lru-cache-6.0.0" @@ -75938,7 +75574,7 @@ in sources."@inquirer/prompts-3.3.2" sources."@inquirer/rawlist-1.2.16" sources."@inquirer/select-1.3.3" - sources."@inquirer/type-1.2.0" + sources."@inquirer/type-1.2.1" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" @@ -75963,18 +75599,18 @@ in sources."@oclif/plugin-help-5.2.20" sources."@oclif/plugin-plugins-2.4.7" sources."@oclif/screen-1.0.4" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/cli-progress-3.11.5" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/wrap-ansi-3.0.0" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" @@ -76058,7 +75694,7 @@ in sources."create-require-1.1.1" sources."cross-fetch-3.1.8" sources."cross-spawn-7.0.3" - sources."csv-parse-5.5.3" + sources."csv-parse-5.5.5" sources."csv-stream-0.2.0" sources."debug-4.3.4" sources."deep-is-0.1.4" @@ -76220,7 +75856,7 @@ in sources."tunnel-agent-0.6.0" sources."type-check-0.3.2" sources."type-fest-0.21.3" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."universalify-2.0.1" sources."util-deprecate-1.0.2" @@ -76234,7 +75870,7 @@ in sources."wordwrap-1.0.0" sources."wrap-ansi-6.2.0" sources."yallist-4.0.0" - sources."yarn-1.22.21" + sources."yarn-1.22.22" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -76305,7 +75941,7 @@ in sha512 = "+eT/06NHwPXfzUSe4vDjjam9gZtalhwDYOq0xX6va88BLZd8APbo17Ajkz4hdnr2Gpls5+xFUqMeiklAQtBHYQ=="; }; dependencies = [ - sources."@ljharb/through-2.3.12" + sources."@ljharb/through-2.3.13" sources."aggregate-error-5.0.0" sources."ansi-escapes-4.3.2" sources."ansi-regex-6.0.1" @@ -76348,15 +75984,15 @@ in sources."gopd-1.0.1" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."human-signals-5.0.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."indent-string-5.0.0" sources."inherits-2.0.4" - (sources."inquirer-9.2.14" // { + (sources."inquirer-9.2.16" // { dependencies = [ sources."ansi-regex-5.0.1" sources."emoji-regex-8.0.0" @@ -76390,7 +76026,7 @@ in sources."merge-stream-2.0.0" sources."mimic-fn-4.0.0" sources."mute-stream-1.0.0" - (sources."npm-run-path-5.2.0" // { + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -76423,7 +76059,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" @@ -76486,7 +76122,7 @@ in sources."@scure/bip39-1.2.2" sources."@types/atob-2.1.4" sources."@types/inquirer-6.5.0" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/through-0.0.33" sources."ajv-6.12.6" sources."ansi-escapes-4.3.2" @@ -76687,7 +76323,7 @@ in sources."async-1.5.2" sources."async-each-1.0.6" sources."atob-2.1.2" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."balanced-match-1.0.2" (sources."base-0.11.2" // { dependencies = [ @@ -76810,7 +76446,7 @@ in sources."graceful-fs-4.2.11" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" sources."has-value-1.0.0" @@ -76819,7 +76455,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."i-0.3.7" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -76841,7 +76477,7 @@ in sources."is-extendable-1.0.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" - sources."is-map-2.0.2" + sources."is-map-2.0.3" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -76851,13 +76487,13 @@ in sources."is-obj-1.0.1" sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" - sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.2" + sources."is-set-2.0.3" + sources."is-shared-array-buffer-1.0.3" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-weakmap-2.0.1" - sources."is-weakset-2.0.2" + sources."is-weakmap-2.0.2" + sources."is-weakset-2.0.3" sources."is-windows-1.0.2" sources."isarray-2.0.5" sources."isobject-3.0.1" @@ -76885,7 +76521,7 @@ in }) sources."ms-2.0.0" sources."mute-stream-0.0.8" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."nanomatch-1.2.13" (sources."nconf-0.6.9" // { dependencies = [ @@ -76908,7 +76544,7 @@ in ]; }) sources."object-inspect-1.13.1" - sources."object-is-1.1.5" + sources."object-is-1.1.6" sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.5" @@ -76923,6 +76559,7 @@ in sources."pify-3.0.0" sources."pkginfo-0.3.1" sources."posix-character-classes-0.1.1" + sources."possible-typed-array-names-1.0.0" (sources."prettyjson-1.2.5" // { dependencies = [ sources."colors-1.4.0" @@ -76956,8 +76593,8 @@ in sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safe-stable-stringify-2.4.3" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -76965,7 +76602,7 @@ in ]; }) sources."shush-1.0.4" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."simple-swizzle-0.2.2" (sources."snapdragon-0.8.2" // { @@ -77039,9 +76676,9 @@ in ]; }) sources."which-boxed-primitive-1.0.2" - sources."which-collection-1.0.1" - sources."which-typed-array-1.1.14" - (sources."winston-3.11.0" // { + sources."which-collection-1.0.2" + sources."which-typed-array-1.1.15" + (sources."winston-3.12.0" // { dependencies = [ sources."async-3.2.5" sources."readable-stream-3.6.2" @@ -77070,10 +76707,10 @@ in fx = nodeEnv.buildNodePackage { name = "fx"; packageName = "fx"; - version = "31.0.0"; + version = "33.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/fx/-/fx-31.0.0.tgz"; - sha512 = "OoeYSPKqNKmfnH4s+rGYI0c8OZmqqOOXsUtqy0YyHqQQoQSDiDs3m3M9uXKx5OQR+jDx7/FhYqpO3kl/As/xgg=="; + url = "https://registry.npmjs.org/fx/-/fx-33.0.0.tgz"; + sha512 = "uW/UAi9G04+o7dD/RyIH7mP9Cyf12TdiaWQ19QbvnxkKQ2yiffXiZMz65zqbWMstLd2vwla++G9lMabG3nXxYQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -77102,7 +76739,7 @@ in }) sources."@types/bn.js-5.1.5" sources."@types/lru-cache-5.1.1" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -77149,14 +76786,14 @@ in sha512 = "Wxsfgfp5jDciXOR00aKQk9SQANXoYaftNZz6LGGkRZcwMFjhPal1LdCioyy3sOXrRvB0uUsACrGLS1ghXxd2QA=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" (sources."@babel/code-frame-7.23.5" // { dependencies = [ sources."chalk-2.4.2" ]; }) sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -77168,7 +76805,7 @@ in sources."semver-6.3.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.23.10" // { + (sources."@babel/helper-create-class-features-plugin-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -77180,7 +76817,7 @@ in sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" sources."@babel/helper-optimise-call-expression-7.22.5" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-replace-supers-7.22.20" sources."@babel/helper-simple-access-7.22.5" sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" @@ -77188,29 +76825,29 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" (sources."@babel/highlight-7.23.4" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-syntax-jsx-7.23.3" sources."@babel/plugin-syntax-typescript-7.23.3" sources."@babel/plugin-transform-modules-commonjs-7.23.3" sources."@babel/plugin-transform-typescript-7.23.6" sources."@babel/preset-typescript-7.23.3" - sources."@babel/runtime-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/runtime-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@lmdb/lmdb-darwin-arm64-2.5.3" sources."@lmdb/lmdb-darwin-x64-2.5.3" sources."@lmdb/lmdb-linux-arm-2.5.3" @@ -77229,7 +76866,7 @@ in sources."@types/common-tags-1.8.4" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/node-fetch-2.6.11" sources."@types/responselike-1.0.3" sources."@types/yoga-layout-1.9.2" @@ -77242,11 +76879,9 @@ in sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."asynckit-0.4.0" - sources."balanced-match-1.0.2" sources."better-opn-2.1.1" sources."boolbase-1.0.0" sources."boxen-5.1.2" - sources."brace-expansion-1.1.11" sources."browserslist-4.23.0" sources."cacheable-lookup-5.0.4" (sources."cacheable-request-7.0.4" // { @@ -77255,7 +76890,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -77290,7 +76925,6 @@ in sources."color-name-1.1.3" sources."combined-stream-1.0.8" sources."common-tags-1.8.2" - sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-2.0.0" @@ -77314,7 +76948,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -77346,14 +76980,12 @@ in sources."form-data-4.0.0" sources."fs-exists-cached-1.0.0" sources."fs-extra-11.2.0" - sources."fs.realpath-1.0.0" sources."gatsby-core-utils-4.13.1" sources."gatsby-telemetry-4.13.1" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" sources."get-stream-8.0.1" sources."git-up-7.0.0" - sources."glob-7.2.3" sources."globals-11.12.0" sources."got-11.8.6" sources."graceful-fs-4.2.11" @@ -77373,7 +77005,6 @@ in sources."ieee754-1.2.1" sources."import-from-4.0.0" sources."imurmurhash-0.1.4" - sources."inflight-1.0.6" sources."inherits-2.0.4" sources."inquirer-7.3.3" sources."is-ci-2.0.0" @@ -77395,7 +77026,7 @@ in sources."is-wsl-2.2.0" sources."is64bit-2.0.0" sources."isexe-2.0.0" - sources."joi-17.12.1" + sources."joi-17.12.2" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" sources."json-buffer-3.0.1" @@ -77419,7 +77050,6 @@ in sources."mime-types-2.1.35" sources."mimic-fn-4.0.0" sources."mimic-response-1.0.1" - sources."minimatch-3.1.2" sources."ms-2.1.2" sources."msgpackr-1.10.1" sources."mute-stream-0.0.8" @@ -77429,7 +77059,7 @@ in sources."node-object-hash-2.3.10" sources."node-releases-2.0.14" sources."normalize-url-6.1.0" - (sources."npm-run-path-5.2.0" // { + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -77448,7 +77078,6 @@ in sources."parse-path-7.0.0" sources."parse-url-8.1.0" sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."peek-readable-4.1.0" sources."picocolors-1.0.0" @@ -77483,7 +77112,6 @@ in }) sources."retry-0.12.0" sources."reusify-1.0.4" - sources."rimraf-3.0.2" sources."run-async-2.4.1" sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" @@ -77512,7 +77140,7 @@ in sources."supports-color-5.5.0" sources."system-architecture-0.1.0" sources."through-2.3.8" - sources."tmp-0.2.1" + sources."tmp-0.2.3" sources."to-fast-properties-2.0.0" sources."token-types-4.2.1" sources."tr46-0.0.3" @@ -77655,15 +77283,15 @@ in "@gitbeaker/cli" = nodeEnv.buildNodePackage { name = "_at_gitbeaker_slash_cli"; packageName = "@gitbeaker/cli"; - version = "39.34.2"; + version = "40.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-39.34.2.tgz"; - sha512 = "mJYBS+UilGGd6CUhuExNUfNsLVncJjaitClIoLrVIdVcyMQ9Ci4IALrkYUAlG1oNvzna6e6Xrpcjq31GJSjZUQ=="; + url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-40.0.1.tgz"; + sha512 = "6ERgsKFoVpHJAQ6dCKIfyGTBIGdvn3EhZomS0WYhfZEVXyyH0+JQ/grGE8+pTLuvk8dJan/SfDtRx8SjNoQjUg=="; }; dependencies = [ - sources."@gitbeaker/core-39.34.2" - sources."@gitbeaker/requester-utils-39.34.2" - sources."@gitbeaker/rest-39.34.2" + sources."@gitbeaker/core-40.0.1" + sources."@gitbeaker/requester-utils-40.0.1" + sources."@gitbeaker/rest-40.0.1" sources."ansi-styles-4.3.0" sources."call-bind-1.0.7" sources."chalk-4.1.2" @@ -77677,15 +77305,15 @@ in sources."gopd-1.0.1" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."object-inspect-1.13.1" sources."picomatch-browser-2.2.6" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."rate-limiter-flexible-4.0.1" - sources."set-function-length-1.2.1" - sources."side-channel-1.0.5" + sources."set-function-length-1.2.2" + sources."side-channel-1.0.6" sources."supports-color-7.2.0" sources."sywac-1.3.0" sources."xcase-2.0.1" @@ -78052,7 +77680,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/parse-json-4.0.2" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -78072,7 +77700,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."backo2-1.0.2" @@ -78215,10 +77843,10 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-cache-semantics-4.1.1" sources."http-signature-1.2.0" sources."http2-client-1.3.5" @@ -78258,20 +77886,20 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.1" sources."is-interactive-1.0.0" - sources."is-map-2.0.2" + sources."is-map-2.0.3" sources."is-number-7.0.0" sources."is-number-object-1.0.7" sources."is-promise-4.0.0" sources."is-regex-1.1.4" - sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.2" + sources."is-set-2.0.3" + sources."is-shared-array-buffer-1.0.3" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" - sources."is-weakmap-2.0.1" - sources."is-weakset-2.0.2" + sources."is-weakmap-2.0.2" + sources."is-weakset-2.0.3" sources."is-wsl-2.2.0" sources."isarray-2.0.5" sources."isexe-2.0.0" @@ -78360,7 +77988,7 @@ in sources."oas-validator-5.0.8" sources."oauth-sign-0.9.0" sources."object-inspect-1.13.1" - sources."object-is-1.1.5" + sources."object-is-1.1.6" sources."object-keys-1.1.1" sources."object.assign-4.1.5" sources."once-1.4.0" @@ -78407,6 +78035,7 @@ in sources."performance-now-2.1.0" sources."picomatch-2.3.1" sources."pluralize-8.0.0" + sources."possible-typed-array-names-1.0.0" sources."prepend-http-2.0.0" sources."psl-1.9.0" sources."pump-3.0.0" @@ -78436,8 +78065,8 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-5.7.2" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."should-13.2.3" @@ -78446,7 +78075,7 @@ in sources."should-type-1.4.0" sources."should-type-adaptors-1.1.0" sources."should-util-1.0.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."simple-git-2.21.0" sources."slash-3.0.0" @@ -78495,8 +78124,8 @@ in sources."wcwidth-1.0.1" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" - sources."which-collection-1.0.1" - sources."which-typed-array-1.1.14" + sources."which-collection-1.0.2" + sources."which-typed-array-1.1.15" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-regex-5.0.1" @@ -78537,12 +78166,12 @@ in sha512 = "CUva4Dubw/0VuUxMBlHvqwY4ZhPQKEQNvobFuAI5huiA/6S2ObFngEuh0uIuFRXfaC4I1tM5C6KKjZpD6HShFQ=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@ardatan/sync-fetch-0.0.1" - sources."@astrojs/compiler-2.5.3" + sources."@astrojs/compiler-2.7.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - sources."@babel/core-7.23.9" + sources."@babel/core-7.24.0" sources."@babel/generator-7.23.6" sources."@babel/helper-compilation-targets-7.23.6" sources."@babel/helper-environment-visitor-7.22.20" @@ -78550,44 +78179,44 @@ in sources."@babel/helper-hoist-variables-7.22.5" sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-simple-access-7.22.5" sources."@babel/helper-split-export-declaration-7.22.6" sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-syntax-import-assertions-7.23.3" sources."@babel/polyfill-7.12.1" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@graphql-tools/batch-execute-9.0.2" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@graphql-tools/batch-execute-9.0.4" sources."@graphql-tools/code-file-loader-8.0.3" - sources."@graphql-tools/delegate-10.0.3" - sources."@graphql-tools/executor-1.2.0" - sources."@graphql-tools/executor-graphql-ws-1.1.1" - sources."@graphql-tools/executor-http-1.0.8" - sources."@graphql-tools/executor-legacy-ws-1.0.5" - sources."@graphql-tools/graphql-file-loader-8.0.0" + sources."@graphql-tools/delegate-10.0.4" + sources."@graphql-tools/executor-1.2.2" + sources."@graphql-tools/executor-graphql-ws-1.1.2" + sources."@graphql-tools/executor-http-1.0.9" + sources."@graphql-tools/executor-legacy-ws-1.0.6" + sources."@graphql-tools/graphql-file-loader-8.0.1" sources."@graphql-tools/graphql-tag-pluck-8.1.0" - sources."@graphql-tools/import-7.0.0" - sources."@graphql-tools/json-file-loader-8.0.0" - sources."@graphql-tools/load-8.0.1" - sources."@graphql-tools/merge-9.0.1" - sources."@graphql-tools/schema-10.0.2" - sources."@graphql-tools/url-loader-8.0.1" - sources."@graphql-tools/utils-10.0.13" - sources."@graphql-tools/wrap-10.0.1" + sources."@graphql-tools/import-7.0.1" + sources."@graphql-tools/json-file-loader-8.0.1" + sources."@graphql-tools/load-8.0.2" + sources."@graphql-tools/merge-9.0.3" + sources."@graphql-tools/schema-10.0.3" + sources."@graphql-tools/url-loader-8.0.2" + sources."@graphql-tools/utils-10.1.2" + sources."@graphql-tools/wrap-10.0.5" sources."@graphql-typed-document-node/core-3.2.0" sources."@iarna/toml-2.2.5" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@kamilkisiela/fast-url-parser-1.1.4" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -78595,18 +78224,18 @@ in sources."@pkgr/core-0.1.1" sources."@repeaterjs/repeater-3.0.5" sources."@types/estree-1.0.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/ws-8.5.10" sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.3" - sources."@vue/compiler-core-3.4.19" - sources."@vue/compiler-dom-3.4.19" - sources."@vue/compiler-sfc-3.4.19" - sources."@vue/compiler-ssr-3.4.19" - sources."@vue/shared-3.4.19" + sources."@vue/compiler-core-3.4.21" + sources."@vue/compiler-dom-3.4.21" + sources."@vue/compiler-sfc-3.4.21" + sources."@vue/compiler-ssr-3.4.21" + sources."@vue/shared-3.4.21" sources."@whatwg-node/events-0.1.1" - sources."@whatwg-node/fetch-0.9.16" - sources."@whatwg-node/node-fetch-0.5.6" + sources."@whatwg-node/fetch-0.9.17" + sources."@whatwg-node/node-fetch-0.5.8" sources."acorn-8.11.3" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" @@ -78622,7 +78251,7 @@ in sources."bufferutil-4.0.8" sources."busboy-1.6.0" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."cliui-7.0.4" (sources."code-red-1.0.4" // { @@ -78646,7 +78275,7 @@ in sources."dir-glob-3.0.1" sources."dotenv-10.0.0" sources."dset-3.1.3" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."entities-4.5.0" @@ -78703,7 +78332,7 @@ in sources."locate-character-3.0.0" sources."lower-case-2.0.2" sources."lru-cache-5.1.1" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" sources."mdn-data-2.0.30" sources."merge2-1.4.1" sources."meros-1.3.0" @@ -78733,7 +78362,11 @@ in }) sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.35" + (sources."postcss-8.4.36" // { + dependencies = [ + sources."source-map-js-1.1.0" + ]; + }) sources."queue-microtask-1.2.3" sources."regenerator-runtime-0.13.11" sources."remove-trailing-separator-1.1.0" @@ -78750,18 +78383,18 @@ in sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."supports-color-5.5.0" - (sources."svelte-4.2.11" // { + (sources."svelte-4.2.12" // { dependencies = [ sources."estree-walker-3.0.3" ]; }) - sources."svelte2tsx-0.7.1" + sources."svelte2tsx-0.7.4" sources."synckit-0.9.0" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."unixify-1.0.0" sources."update-browserslist-db-1.0.13" @@ -78831,7 +78464,7 @@ in sources."global-modules-1.0.0" sources."global-prefix-1.0.2" sources."grunt-known-options-2.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."homedir-polyfill-1.0.3" sources."ini-1.3.8" sources."interpret-1.1.0" @@ -78912,7 +78545,7 @@ in dependencies = [ sources."accepts-1.3.8" sources."array-flatten-1.1.1" - sources."body-parser-1.20.1" + sources."body-parser-1.20.2" sources."bytes-3.1.2" sources."call-bind-1.0.7" sources."content-disposition-0.5.4" @@ -78929,7 +78562,7 @@ in sources."es-errors-1.3.0" sources."escape-html-1.0.3" sources."etag-1.8.1" - sources."express-4.18.2" + sources."express-4.18.3" sources."express-ws-2.0.0" sources."finalhandler-1.2.0" sources."forwarded-0.2.0" @@ -78938,9 +78571,9 @@ in sources."get-intrinsic-1.2.4" sources."gopd-1.0.1" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-errors-2.0.0" sources."iconv-lite-0.4.24" sources."inherits-2.0.4" @@ -78962,7 +78595,7 @@ in sources."proxy-addr-2.0.7" sources."qs-6.11.0" sources."range-parser-1.2.1" - sources."raw-body-2.5.1" + sources."raw-body-2.5.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" (sources."send-0.18.0" // { @@ -78971,9 +78604,9 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."statuses-2.0.1" sources."toidentifier-1.0.1" sources."type-is-1.6.18" @@ -79088,7 +78721,7 @@ in ]; }) sources."core-util-is-1.0.3" - sources."d-1.0.1" + sources."d-1.0.2" sources."debug-2.6.9" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.2" @@ -79108,10 +78741,12 @@ in sources."error-ex-1.3.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es5-ext-0.10.62" + sources."es5-ext-0.10.64" sources."es6-iterator-2.0.3" - sources."es6-symbol-3.1.3" + sources."es6-symbol-3.1.4" sources."es6-weak-map-2.0.3" + sources."esniff-2.0.1" + sources."event-emitter-0.3.5" (sources."expand-brackets-2.1.4" // { dependencies = [ sources."define-property-0.2.5" @@ -79120,11 +78755,7 @@ in ]; }) sources."expand-tilde-2.0.2" - (sources."ext-1.7.0" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) + sources."ext-1.7.0" sources."extend-3.0.2" (sources."extend-shallow-3.0.2" // { dependencies = [ @@ -79176,7 +78807,7 @@ in sources."gulp-cli-2.3.0" sources."gulplog-1.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -79184,7 +78815,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."homedir-polyfill-1.0.3" sources."hosted-git-info-2.8.9" sources."inflight-1.0.6" @@ -79246,7 +78877,7 @@ in }) sources."ms-2.0.0" sources."mute-stdout-1.0.1" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."nanomatch-1.2.13" sources."next-tick-1.1.0" sources."normalize-package-data-2.5.0" @@ -79315,7 +78946,7 @@ in sources."semver-5.7.2" sources."semver-greatest-satisfied-range-1.1.0" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -79374,7 +79005,7 @@ in sources."to-regex-3.0.2" sources."to-regex-range-2.1.1" sources."to-through-2.0.0" - sources."type-1.2.0" + sources."type-2.7.2" sources."typedarray-0.0.6" sources."unc-path-regex-0.1.2" sources."undertaker-1.3.0" @@ -79476,7 +79107,7 @@ in sources."copy-descriptor-0.1.1" sources."copy-props-2.0.5" sources."core-util-is-1.0.3" - sources."d-1.0.1" + sources."d-1.0.2" sources."debug-2.6.9" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.2" @@ -79493,9 +79124,11 @@ in sources."error-ex-1.3.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es5-ext-0.10.62" + sources."es5-ext-0.10.64" sources."es6-iterator-2.0.3" - sources."es6-symbol-3.1.3" + sources."es6-symbol-3.1.4" + sources."esniff-2.0.1" + sources."event-emitter-0.3.5" (sources."expand-brackets-2.1.4" // { dependencies = [ sources."define-property-0.2.5" @@ -79504,11 +79137,7 @@ in ]; }) sources."expand-tilde-2.0.2" - (sources."ext-1.7.0" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) + sources."ext-1.7.0" sources."extend-3.0.2" (sources."extend-shallow-3.0.2" // { dependencies = [ @@ -79550,7 +79179,7 @@ in sources."graceful-fs-4.2.11" sources."gulplog-1.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -79558,7 +79187,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."homedir-polyfill-1.0.3" sources."hosted-git-info-2.8.9" sources."inherits-2.0.4" @@ -79681,7 +79310,7 @@ in sources."semver-5.7.2" sources."semver-greatest-satisfied-range-1.1.0" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -79735,7 +79364,7 @@ in }) sources."to-regex-3.0.2" sources."to-regex-range-2.1.1" - sources."type-1.2.0" + sources."type-2.7.2" sources."typedarray-0.0.6" sources."unc-path-regex-0.1.2" sources."union-value-1.0.1" @@ -79801,7 +79430,7 @@ in sources."bcrypto-5.4.0" sources."bfile-0.2.3" sources."brq-0.1.10" - sources."bsert-0.0.12" + sources."bsert-0.0.13" sources."bufio-1.0.7" sources."goosig-0.10.0" sources."loady-0.0.5" @@ -80097,7 +79726,7 @@ in }) sources."moment-2.30.1" sources."mv-2.1.1" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."ncp-2.0.0" sources."once-1.4.0" sources."optimist-0.6.1" @@ -80206,20 +79835,20 @@ in sha512 = "bvN8aH5mHnuQH0yAr2ZFwQPtC6nE3MfxQvtzjCICxwAMvdngJyUPFvFR8aFKhwgRYMNzVmIMZSOlx+3DJWviUA=="; }; dependencies = [ - sources."@azure/abort-controller-2.0.0" - sources."@azure/core-auth-1.6.0" + sources."@azure/abort-controller-2.1.0" + sources."@azure/core-auth-1.7.0" (sources."@azure/core-rest-pipeline-1.10.1" // { dependencies = [ sources."@azure/abort-controller-1.1.0" ]; }) - sources."@azure/core-tracing-1.0.1" + sources."@azure/core-tracing-1.1.0" (sources."@azure/core-util-1.2.0" // { dependencies = [ sources."@azure/abort-controller-1.1.0" ]; }) - sources."@azure/logger-1.0.4" + sources."@azure/logger-1.1.0" sources."@azure/opentelemetry-instrumentation-azure-sdk-1.0.0-beta.5" sources."@bmewburn/js-beautify-1.14.9" sources."@bmewburn/vscode-html-languageserver-1.10.0" @@ -80230,17 +79859,17 @@ in sources."nopt-5.0.0" ]; }) - sources."@microsoft/applicationinsights-web-snippet-1.1.1" + sources."@microsoft/applicationinsights-web-snippet-1.1.2" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@one-ini/wasm-0.1.1" - sources."@opentelemetry/api-1.7.0" - sources."@opentelemetry/core-1.21.0" + sources."@opentelemetry/api-1.8.0" + sources."@opentelemetry/core-1.22.0" sources."@opentelemetry/instrumentation-0.41.2" - sources."@opentelemetry/resources-1.21.0" - sources."@opentelemetry/sdk-trace-base-1.21.0" - sources."@opentelemetry/semantic-conventions-1.21.0" + sources."@opentelemetry/resources-1.22.0" + sources."@opentelemetry/sdk-trace-base-1.22.0" + sources."@opentelemetry/semantic-conventions-1.22.0" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -80253,7 +79882,7 @@ in sources."@protobufjs/utf8-1.1.0" sources."@selderee/plugin-htmlparser2-0.11.0" sources."@tootallnate/once-2.0.0" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/shimmer-1.0.5" sources."@vscode/l10n-0.0.16" sources."abbrev-2.0.0" @@ -80354,7 +79983,7 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."html-to-text-9.0.5" sources."htmlparser2-8.0.2" sources."http-proxy-agent-5.0.0" @@ -80402,7 +80031,7 @@ in sources."mkdirp-1.0.4" sources."module-details-from-path-1.0.3" sources."ms-2.1.2" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."node-fetch-2.7.0" sources."nopt-7.2.0" sources."npmlog-5.0.1" @@ -80430,7 +80059,7 @@ in sources."uuid-3.4.0" ]; }) - sources."require-in-the-middle-7.2.0" + sources."require-in-the-middle-7.2.1" sources."resolve-1.22.8" sources."reusify-1.0.4" (sources."rimraf-3.0.2" // { @@ -80481,10 +80110,10 @@ in sources."tr46-0.0.3" sources."tslib-2.6.2" sources."tunnel-agent-0.6.0" - sources."turndown-7.1.2" + sources."turndown-7.1.3" sources."turndown-plugin-gfm-1.0.2" sources."tweetnacl-0.14.5" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."universalify-2.0.1" sources."uri-js-4.4.1" @@ -80548,12 +80177,13 @@ in joplin = nodeEnv.buildNodePackage { name = "joplin"; packageName = "joplin"; - version = "2.13.2"; + version = "2.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/joplin/-/joplin-2.13.2.tgz"; - sha512 = "xu3XOPUrA3MnmPfDdIkiLFPy/dZ2D2EtwA5jnYAKPkt9L9YP8ZpndQKRSIzIN03bTSS6RJ/h0JbqZWB9kxbxhQ=="; + url = "https://registry.npmjs.org/joplin/-/joplin-2.14.1.tgz"; + sha512 = "OMg8OB1cx6MzGMUSvycBYu152vYz6BbtAnerEqxAvX2Jtlj7+RjuXYxJ0TgoV2BG43BaOqjzdr+BC5WFFp+Huw=="; }; dependencies = [ + sources."@adobe/css-tools-4.3.2" (sources."@aws-crypto/crc32-3.0.0" // { dependencies = [ sources."tslib-1.14.1" @@ -80660,13 +80290,13 @@ in sources."@aws-sdk/service-error-classification-3.296.0" sources."@aws-sdk/shared-ini-file-loader-3.296.0" sources."@aws-sdk/signature-v4-3.296.0" - (sources."@aws-sdk/signature-v4-crt-3.515.0" // { + (sources."@aws-sdk/signature-v4-crt-3.535.0" // { dependencies = [ - sources."@aws-sdk/middleware-sdk-s3-3.515.0" - sources."@aws-sdk/signature-v4-multi-region-3.515.0" - sources."@aws-sdk/types-3.515.0" - sources."@aws-sdk/util-arn-parser-3.495.0" - sources."@aws-sdk/util-user-agent-node-3.515.0" + sources."@aws-sdk/middleware-sdk-s3-3.535.0" + sources."@aws-sdk/signature-v4-multi-region-3.535.0" + sources."@aws-sdk/types-3.535.0" + sources."@aws-sdk/util-arn-parser-3.535.0" + sources."@aws-sdk/util-user-agent-node-3.535.0" ]; }) sources."@aws-sdk/signature-v4-multi-region-3.296.0" @@ -80686,7 +80316,7 @@ in sources."@aws-sdk/util-endpoints-3.296.0" sources."@aws-sdk/util-format-url-3.296.0" sources."@aws-sdk/util-hex-encoding-3.295.0" - sources."@aws-sdk/util-locate-window-3.495.0" + sources."@aws-sdk/util-locate-window-3.535.0" sources."@aws-sdk/util-middleware-3.296.0" sources."@aws-sdk/util-retry-3.296.0" sources."@aws-sdk/util-stream-browser-3.296.0" @@ -80698,7 +80328,7 @@ in sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/util-waiter-3.296.0" sources."@aws-sdk/xml-builder-3.295.0" - sources."@babel/runtime-7.23.9" + sources."@babel/runtime-7.24.0" sources."@braintree/sanitize-url-6.0.4" sources."@cronvel/get-pixels-3.4.1" sources."@gar/promisify-1.1.3" @@ -80711,15 +80341,15 @@ in sources."strip-ansi-7.1.0" ]; }) - sources."@joplin/fork-htmlparser2-4.1.50" - sources."@joplin/fork-sax-1.2.54" - sources."@joplin/fork-uslug-1.0.15" - sources."@joplin/htmlpack-2.13.4" - sources."@joplin/lib-2.13.4" - sources."@joplin/renderer-2.13.4" - sources."@joplin/turndown-4.0.72" - sources."@joplin/turndown-plugin-gfm-1.0.54" - (sources."@joplin/utils-2.13.4" // { + sources."@joplin/fork-htmlparser2-4.1.51" + sources."@joplin/fork-sax-1.2.55" + sources."@joplin/fork-uslug-1.0.16" + sources."@joplin/htmlpack-2.14.1" + sources."@joplin/lib-2.14.1" + sources."@joplin/renderer-2.14.1" + sources."@joplin/turndown-4.0.73" + sources."@joplin/turndown-plugin-gfm-1.0.55" + (sources."@joplin/utils-2.14.1" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-10.3.10" @@ -80729,32 +80359,32 @@ in sources."@mapbox/node-pre-gyp-1.0.11" sources."@npmcli/fs-1.1.1" sources."@npmcli/move-file-1.1.2" - sources."@smithy/abort-controller-2.1.1" - sources."@smithy/eventstream-codec-2.1.1" - sources."@smithy/fetch-http-handler-2.4.1" - sources."@smithy/is-array-buffer-2.1.1" - sources."@smithy/middleware-endpoint-2.4.1" - sources."@smithy/middleware-serde-2.1.1" - sources."@smithy/middleware-stack-2.1.1" - sources."@smithy/node-config-provider-2.2.1" - sources."@smithy/node-http-handler-2.3.1" - sources."@smithy/property-provider-2.1.1" - sources."@smithy/protocol-http-3.1.1" - sources."@smithy/querystring-builder-2.1.1" - sources."@smithy/querystring-parser-2.1.1" - sources."@smithy/shared-ini-file-loader-2.3.1" - sources."@smithy/signature-v4-2.1.1" - sources."@smithy/smithy-client-2.3.1" - sources."@smithy/types-2.9.1" - sources."@smithy/url-parser-2.1.1" - sources."@smithy/util-base64-2.1.1" - sources."@smithy/util-buffer-from-2.1.1" - sources."@smithy/util-config-provider-2.2.1" - sources."@smithy/util-hex-encoding-2.1.1" - sources."@smithy/util-middleware-2.1.1" - sources."@smithy/util-stream-2.1.1" - sources."@smithy/util-uri-escape-2.1.1" - sources."@smithy/util-utf8-2.1.1" + sources."@smithy/abort-controller-2.2.0" + sources."@smithy/eventstream-codec-2.2.0" + sources."@smithy/fetch-http-handler-2.5.0" + sources."@smithy/is-array-buffer-2.2.0" + sources."@smithy/middleware-endpoint-2.5.0" + sources."@smithy/middleware-serde-2.3.0" + sources."@smithy/middleware-stack-2.2.0" + sources."@smithy/node-config-provider-2.3.0" + sources."@smithy/node-http-handler-2.5.0" + sources."@smithy/property-provider-2.2.0" + sources."@smithy/protocol-http-3.3.0" + sources."@smithy/querystring-builder-2.2.0" + sources."@smithy/querystring-parser-2.2.0" + sources."@smithy/shared-ini-file-loader-2.4.0" + sources."@smithy/signature-v4-2.2.0" + sources."@smithy/smithy-client-2.5.0" + sources."@smithy/types-2.12.0" + sources."@smithy/url-parser-2.2.0" + sources."@smithy/util-base64-2.3.0" + sources."@smithy/util-buffer-from-2.2.0" + sources."@smithy/util-config-provider-2.3.0" + sources."@smithy/util-hex-encoding-2.2.0" + sources."@smithy/util-middleware-2.2.0" + sources."@smithy/util-stream-2.2.0" + sources."@smithy/util-uri-escape-2.2.0" + sources."@smithy/util-utf8-2.3.0" sources."@tootallnate/once-2.0.0" sources."@types/d3-scale-4.0.8" sources."@types/d3-scale-chromatic-3.0.3" @@ -80763,7 +80393,7 @@ in sources."@types/mdast-3.0.15" sources."@types/ms-0.7.34" sources."@types/nanoid-3.0.0" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/unist-2.0.10" sources."@types/ws-8.5.10" sources."abab-2.0.6" @@ -80791,10 +80421,9 @@ in sources."asap-2.0.6" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-mutex-0.4.0" + sources."async-mutex-0.4.1" sources."asynckit-0.4.0" - sources."atob-2.1.2" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."aws-crt-1.21.1" (sources."aws-sdk-2.1340.0" // { dependencies = [ @@ -80808,18 +80437,17 @@ in }) sources."aws-sign2-0.7.0" sources."aws4-1.12.0" - (sources."axios-1.6.7" // { + (sources."axios-1.6.8" // { dependencies = [ - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" ]; }) - sources."b4a-1.6.6" sources."balanced-match-1.0.2" sources."base-64-1.0.0" sources."base64-js-1.5.1" sources."base64-stream-1.0.0" sources."bcrypt-pbkdf-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" (sources."bl-4.1.0" // { dependencies = [ sources."buffer-5.7.1" @@ -80886,7 +80514,6 @@ in sources."cross-spawn-7.0.3" sources."crypt-0.0.2" sources."crypto-js-4.2.0" - sources."css-3.0.0" sources."cssstyle-3.0.0" sources."cwise-compiler-1.1.3" sources."cytoscape-3.28.1" @@ -80897,7 +80524,7 @@ in sources."layout-base-2.0.1" ]; }) - sources."d3-7.8.5" + sources."d3-7.9.0" sources."d3-array-3.2.4" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" @@ -80916,7 +80543,7 @@ in sources."d3-fetch-3.0.1" sources."d3-force-3.0.0" sources."d3-format-3.1.0" - sources."d3-geo-3.1.0" + sources."d3-geo-3.1.1" sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.1.0" @@ -80932,7 +80559,7 @@ in ]; }) sources."d3-scale-4.0.2" - sources."d3-scale-chromatic-3.0.0" + sources."d3-scale-chromatic-3.1.0" sources."d3-selection-3.0.0" sources."d3-shape-3.2.0" sources."d3-time-3.1.0" @@ -80971,7 +80598,7 @@ in sources."domelementtype-2.3.0" sources."domexception-4.0.0" sources."domhandler-5.0.3" - sources."dompurify-3.0.8" + sources."dompurify-3.0.9" sources."domutils-3.1.0" sources."duplexify-3.7.1" sources."eastasianwidth-0.2.0" @@ -81003,7 +80630,6 @@ in sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-fifo-1.3.2" sources."fast-json-stable-stringify-2.1.0" sources."fast-xml-parser-3.21.1" sources."fault-1.0.4" @@ -81011,7 +80637,7 @@ in sources."fill-range-7.0.1" sources."filter-obj-1.1.0" sources."find-up-2.1.0" - sources."follow-redirects-1.15.3" + sources."follow-redirects-1.15.5" sources."font-awesome-filetypes-2.1.0" sources."for-each-0.3.3" sources."for-each-property-0.0.4" @@ -81025,7 +80651,7 @@ in sources."form-data-4.0.0" sources."format-0.2.2" sources."fs-constants-1.0.0" - (sources."fs-extra-11.1.1" // { + (sources."fs-extra-11.2.0" // { dependencies = [ sources."jsonfile-6.1.0" sources."universalify-2.0.1" @@ -81060,11 +80686,11 @@ in }) sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."he-1.2.0" sources."heap-0.2.7" (sources."help-me-3.0.0" // { @@ -81072,7 +80698,7 @@ in sources."readable-stream-3.6.2" ]; }) - sources."highlight.js-11.8.0" + sources."highlight.js-11.9.0" sources."hpagent-1.2.0" sources."html-encoding-sniffer-3.0.0" sources."html-entities-1.4.0" @@ -81183,7 +80809,6 @@ in sources."layout-base-1.0.2" sources."lazyness-1.2.0" sources."leven-2.1.0" - sources."levenshtein-1.0.5" sources."linkify-it-4.0.1" sources."locate-path-2.0.0" sources."lodash-4.17.21" @@ -81233,7 +80858,7 @@ in sources."mdast-util-to-string-3.2.0" sources."mdurl-1.0.1" sources."merge-stream-2.0.0" - sources."mermaid-10.5.1" + sources."mermaid-10.6.1" sources."micromark-3.2.0" sources."micromark-core-commonmark-1.1.0" sources."micromark-factory-destination-1.1.0" @@ -81295,10 +80920,10 @@ in }) sources."mkdirp-1.0.4" sources."mkdirp-classic-0.5.3" - sources."moment-2.29.4" + sources."moment-2.30.1" (sources."mqtt-4.3.8" // { dependencies = [ - sources."duplexify-4.1.2" + sources."duplexify-4.1.3" sources."readable-stream-3.6.2" sources."utf-8-validate-5.0.10" sources."ws-7.5.9" @@ -81309,15 +80934,15 @@ in sources."ms-2.1.2" sources."multiparty-4.2.3" sources."mustache-4.2.0" - sources."nan-2.18.0" - sources."nanoid-3.3.6" + sources."nan-2.19.0" + sources."nanoid-3.3.7" sources."napi-build-utils-1.0.2" sources."ndarray-1.0.19" sources."ndarray-pack-1.2.1" sources."negotiator-0.6.3" sources."nextgen-events-1.5.3" sources."no-case-2.3.2" - sources."node-abi-3.54.0" + sources."node-abi-3.56.0" sources."node-addon-api-4.3.0" sources."node-bitmap-0.0.1" sources."node-emoji-1.11.0" @@ -81386,7 +81011,8 @@ in sources."pify-3.0.0" sources."pipe-functions-1.3.0" sources."pngjs-6.0.0" - (sources."prebuild-install-7.1.1" // { + sources."possible-typed-array-names-1.0.0" + (sources."prebuild-install-7.1.2" // { dependencies = [ sources."decompress-response-6.0.0" sources."mimic-response-3.1.0" @@ -81408,7 +81034,6 @@ in sources."querystring-0.2.0" sources."querystringify-2.2.0" sources."queue-6.0.2" - sources."queue-tick-1.0.1" sources."random-bytes-1.0.0" sources."rc-1.2.8" sources."re-reselect-4.0.1" @@ -81448,21 +81073,15 @@ in sources."semver-7.6.0" sources."server-destroy-1.0.1" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setimmediate-1.0.5" sources."setprototypeof-1.2.0" sources."seventh-0.9.2" - (sources."sharp-0.32.6" // { + (sources."sharp-0.33.2" // { dependencies = [ sources."color-4.2.3" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."decompress-response-6.0.0" - sources."mimic-response-3.1.0" - sources."node-addon-api-6.1.0" - sources."simple-get-4.0.1" - sources."tar-fs-3.0.5" - sources."tar-stream-3.1.7" ]; }) sources."shebang-command-2.0.0" @@ -81478,10 +81097,9 @@ in ]; }) sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."socks-proxy-agent-6.2.1" sources."source-map-0.6.1" - sources."source-map-resolve-0.6.0" sources."split-on-first-1.1.0" sources."split-skip-0.0.2" (sources."split2-3.2.2" // { @@ -81499,7 +81117,6 @@ in }) sources."statuses-1.5.0" sources."stream-shift-1.0.3" - sources."streamx-2.16.0" sources."strict-uri-encode-2.0.0" sources."string-kit-0.17.10" sources."string-padding-1.0.2" @@ -81618,7 +81235,7 @@ in sources."whatwg-mimetype-3.0.0" sources."whatwg-url-12.0.1" sources."which-2.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wide-align-1.1.5" sources."word-wrap-1.2.5" sources."wordwrapjs-3.0.0" @@ -81768,7 +81385,7 @@ in sha512 = "e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg=="; }; dependencies = [ - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@jsdoc/salty-0.2.7" sources."@types/linkify-it-3.0.5" sources."@types/markdown-it-12.2.3" @@ -81934,9 +81551,9 @@ in sources."gopd-1.0.1" sources."graphlib-2.1.8" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hexoid-1.0.0" sources."inherits-2.0.4" sources."js-yaml-3.14.1" @@ -81952,12 +81569,12 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" sources."semver-7.6.0" - sources."set-function-length-1.2.1" - sources."side-channel-1.0.5" + sources."set-function-length-1.2.2" + sources."side-channel-1.0.6" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string_decoder-1.3.0" @@ -81986,7 +81603,7 @@ in sha512 = "FPL1veNELhkr3tttwbIutKPkc/AUfLWSmslTwLYYPzl9RbCJQrwSPJceYWg2LnK1cv20tcEMLI2Kxl1lHz155Q=="; }; dependencies = [ - sources."@polka/url-1.0.0-next.24" + sources."@polka/url-1.0.0-next.25" sources."@tinyhttp/accepts-2.2.1" sources."@tinyhttp/app-2.2.3" sources."@tinyhttp/content-disposition-2.2.0" @@ -82006,14 +81623,14 @@ in sources."@tinyhttp/url-2.1.1" sources."@tinyhttp/vary-0.1.3" sources."anymatch-3.1.3" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."braces-3.0.2" sources."chalk-5.3.0" sources."chokidar-3.6.0" sources."dot-prop-8.0.2" sources."es-escape-html-0.1.1" sources."es-vary-0.1.2" - sources."eta-3.2.0" + sources."eta-3.4.0" sources."fill-range-7.0.1" sources."glob-parent-5.1.2" sources."header-range-parser-1.1.3" @@ -82194,10 +81811,8 @@ in sources."etag-1.8.1" sources."expand-brackets-0.1.5" sources."expand-range-1.8.2" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ - sources."body-parser-1.20.1" - sources."raw-body-2.5.1" sources."safe-buffer-5.2.1" ]; }) @@ -82239,7 +81854,7 @@ in sources."har-validator-5.1.5" sources."has-ansi-2.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ @@ -82256,7 +81871,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."http-errors-2.0.0" sources."http-signature-1.2.0" @@ -82341,7 +81956,7 @@ in ]; }) sources."ms-2.0.0" - sources."nan-2.18.0" + sources."nan-2.19.0" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -82485,14 +82100,14 @@ in sources."serve-static-1.15.0" sources."server-destroy-1.0.1" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" ]; }) sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."slide-1.1.6" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -82634,7 +82249,7 @@ in ]; }) sources."@oclif/screen-1.0.4" - (sources."@putdotio/api-client-8.46.0" // { + (sources."@putdotio/api-client-8.47.0" // { dependencies = [ sources."axios-0.21.4" ]; @@ -82675,11 +82290,7 @@ in ]; }) sources."cross-spawn-7.0.3" - (sources."d-1.0.1" // { - dependencies = [ - sources."type-1.2.0" - ]; - }) + sources."d-1.0.2" sources."debounce-fn-3.0.1" sources."debug-4.3.4" sources."define-data-property-1.1.4" @@ -82690,10 +82301,11 @@ in sources."env-paths-2.2.1" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es5-ext-0.10.62" + sources."es5-ext-0.10.64" sources."es6-iterator-2.0.3" - sources."es6-symbol-3.1.3" + sources."es6-symbol-3.1.4" sources."escape-string-regexp-4.0.0" + sources."esniff-2.0.1" sources."esprima-4.0.1" sources."event-emitter-0.3.5" sources."ext-1.7.0" @@ -82710,7 +82322,7 @@ in }) sources."fill-range-7.0.1" sources."find-up-3.0.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."fs-extra-8.1.0" sources."function-bind-1.1.2" sources."get-intrinsic-1.2.4" @@ -82720,9 +82332,9 @@ in sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.24" sources."ignore-5.3.1" @@ -82774,7 +82386,7 @@ in sources."picomatch-2.3.1" sources."pkg-up-3.1.0" sources."punycode-2.3.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."queue-microtask-1.2.3" sources."redeyed-2.1.1" sources."restore-cursor-3.1.0" @@ -82788,10 +82400,10 @@ in }) sources."safer-buffer-2.1.2" sources."semver-7.6.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -82855,11 +82467,11 @@ in sha512 = "RUV9keqP/XK49OiVC4l5N5NxjYDPoDJFkr5OLa7rlFd/6JYah7YkqMfzm7Q9iw2ig9GKiQI9KgtR2IixzwEJnw=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/cli-7.23.9" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."semver-6.3.1" ]; @@ -82876,27 +82488,27 @@ in sources."@babel/helper-hoist-variables-7.22.5" sources."@babel/helper-module-imports-7.22.15" sources."@babel/helper-module-transforms-7.23.3" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" sources."@babel/helper-simple-access-7.22.5" sources."@babel/helper-split-export-declaration-7.22.6" sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" sources."@babel/node-7.23.9" - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-syntax-jsx-7.23.3" sources."@babel/plugin-transform-react-jsx-7.23.4" sources."@babel/register-7.23.7" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" (sources."@mapbox/node-pre-gyp-1.0.11" // { dependencies = [ sources."lru-cache-6.0.0" @@ -82970,7 +82582,7 @@ in sources."asn1js-3.0.5" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."axios-0.25.0" sources."babel-plugin-jsx-pragmatic-1.0.2" sources."babel-plugin-syntax-jsx-6.18.0" @@ -82980,7 +82592,7 @@ in sources."bitwise-xor-0.0.0" sources."bl-4.1.0" sources."bn.js-4.12.0" - (sources."body-parser-1.20.1" // { + (sources."body-parser-1.20.2" // { dependencies = [ sources."debug-2.6.9" sources."iconv-lite-0.4.24" @@ -82997,7 +82609,7 @@ in sources."bufferutil-4.0.8" sources."bytes-3.1.2" sources."call-bind-1.0.7" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.6.1" @@ -83018,7 +82630,7 @@ in sources."convert-source-map-2.0.0" sources."cookie-0.5.0" sources."cookie-signature-1.0.6" - sources."core-js-3.36.0" + sources."core-js-3.36.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."create-hash-1.2.0" @@ -83036,6 +82648,9 @@ in sources."whatwg-url-8.7.0" ]; }) + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."debug-4.3.4" sources."decimal.js-10.4.3" sources."decode-uri-component-0.2.2" @@ -83057,17 +82672,18 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" sources."enquirer-2.4.1" - sources."es-abstract-1.22.4" + sources."es-abstract-1.23.2" sources."es-array-method-boxes-properly-1.0.0" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es-set-tostringtag-2.0.2" + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" sources."es-to-primitive-1.2.1" sources."escalade-3.1.2" sources."escape-html-1.0.3" @@ -83079,7 +82695,7 @@ in sources."etag-1.8.1" sources."events-3.3.0" sources."expand-template-2.0.3" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" @@ -83098,7 +82714,7 @@ in }) sources."find-cache-dir-2.1.0" sources."find-up-3.0.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."for-each-0.3.3" sources."form-data-3.0.1" sources."forwarded-0.2.0" @@ -83150,12 +82766,12 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" sources."has-unicode-2.0.1" sources."hash-base-3.1.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."homedir-polyfill-1.0.3" sources."html-encoding-sniffer-2.0.1" sources."http-errors-2.0.0" @@ -83177,19 +82793,20 @@ in sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" sources."is-core-module-2.9.0" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-negative-zero-2.0.2" + sources."is-negative-zero-2.0.3" sources."is-number-7.0.0" sources."is-number-object-1.0.7" sources."is-plain-obj-2.1.0" sources."is-plain-object-2.0.4" sources."is-potential-custom-element-name-1.0.1" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.2" + sources."is-shared-array-buffer-1.0.3" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.13" @@ -83247,10 +82864,10 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."multistream-4.1.0" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."napi-build-utils-1.0.2" sources."negotiator-0.6.3" - (sources."node-abi-3.54.0" // { + (sources."node-abi-3.56.0" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.6.0" @@ -83278,7 +82895,7 @@ in sources."object.getownpropertydescriptors-2.1.7" sources."on-finished-2.4.1" sources."once-1.4.0" - sources."openpgp-5.11.0" + sources."openpgp-5.11.1" sources."p-is-promise-3.0.0" sources."p-limit-2.3.0" sources."p-locate-3.0.0" @@ -83322,6 +82939,7 @@ in sources."yallist-4.0.0" ]; }) + sources."possible-typed-array-names-1.0.0" (sources."prebuild-install-7.1.1" // { dependencies = [ sources."decompress-response-6.0.0" @@ -83343,7 +82961,7 @@ in sources."queue-microtask-1.2.3" sources."randombytes-2.1.0" sources."range-parser-1.2.1" - (sources."raw-body-2.5.1" // { + (sources."raw-body-2.5.2" // { dependencies = [ sources."iconv-lite-0.4.24" ]; @@ -83363,7 +82981,7 @@ in sources."rimraf-3.0.2" sources."ripemd160-2.0.2" sources."run-parallel-1.2.0" - sources."safe-array-concat-1.1.0" + sources."safe-array-concat-1.1.2" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.3" sources."safer-buffer-2.1.2" @@ -83385,13 +83003,13 @@ in }) sources."serve-static-1.15.0" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."setprototypeof-1.2.0" sources."sha.js-2.4.11" sources."shallow-clone-3.0.1" sources."shellwords-0.1.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" sources."simple-get-3.1.1" @@ -83410,8 +83028,8 @@ in }) sources."strict-uri-encode-2.0.0" sources."string-width-4.2.3" - sources."string.prototype.trim-1.2.8" - sources."string.prototype.trimend-1.0.7" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" sources."string.prototype.trimstart-1.0.7" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -83438,10 +83056,10 @@ in sources."tslib-2.6.2" sources."tunnel-agent-0.6.0" sources."type-is-1.6.18" - sources."typed-array-buffer-1.0.1" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" sources."unbox-primitive-1.0.2" sources."universalify-0.2.0" sources."unpipe-1.0.0" @@ -83468,7 +83086,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wide-align-1.1.5" (sources."wrap-ansi-7.0.0" // { dependencies = [ @@ -83598,9 +83216,9 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-7.0.1" sources."@npmcli/run-script-7.0.2" - sources."@nrwl/devkit-18.0.4" - sources."@nrwl/tao-18.0.4" - sources."@nx/devkit-18.0.4" + sources."@nrwl/devkit-18.1.2" + sources."@nrwl/tao-18.1.2" + sources."@nx/devkit-18.1.2" sources."@octokit/auth-token-3.0.4" sources."@octokit/core-4.2.4" sources."@octokit/endpoint-7.0.6" @@ -83656,13 +83274,13 @@ in ]; }) sources."@sinclair/typebox-0.27.8" - sources."@swc-node/core-1.12.0" - sources."@swc-node/register-1.8.0" - sources."@swc-node/sourcemap-support-0.4.0" - sources."@swc/core-1.4.1" + sources."@swc-node/core-1.13.0" + sources."@swc-node/register-1.9.0" + sources."@swc-node/sourcemap-support-0.5.0" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" (sources."@tufjs/models-1.0.4" // { @@ -83705,7 +83323,7 @@ in sources."arrify-1.0.1" sources."async-3.2.5" sources."asynckit-0.4.0" - sources."axios-1.6.7" + sources."axios-1.6.8" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."before-after-hook-2.2.3" @@ -83846,7 +83464,7 @@ in sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flat-5.0.2" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" (sources."foreground-child-3.1.1" // { dependencies = [ sources."signal-exit-4.1.0" @@ -83901,7 +83519,7 @@ in sources."hard-rejection-2.1.0" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."http-cache-semantics-4.1.1" sources."http-proxy-agent-7.0.2" @@ -84159,7 +83777,7 @@ in }) sources."npm-run-path-4.0.1" sources."npmlog-6.0.2" - (sources."nx-18.0.4" // { + (sources."nx-18.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cli-spinners-2.6.1" @@ -84223,7 +83841,6 @@ in sources."parse-path-7.0.0" sources."parse-url-8.1.0" sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."path-scurry-1.10.1" @@ -84339,7 +83956,7 @@ in }) sources."slash-3.0.0" sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."socks-proxy-agent-8.0.2" sources."sort-keys-2.0.0" sources."source-map-0.6.1" @@ -84393,14 +84010,7 @@ in sources."string_decoder-1.1.1" ]; }) - (sources."tmp-0.2.1" // { - dependencies = [ - sources."brace-expansion-1.1.11" - sources."glob-7.2.3" - sources."minimatch-3.1.2" - sources."rimraf-3.0.2" - ]; - }) + sources."tmp-0.2.3" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."trim-newlines-3.0.1" @@ -84434,7 +84044,7 @@ in }) sources."type-fest-0.18.1" sources."typedarray-0.0.6" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."uglify-js-3.17.4" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" @@ -84689,7 +84299,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-auth-3.1.3" (sources."http-errors-2.0.0" // { dependencies = [ @@ -84727,7 +84337,7 @@ in sources."mixin-deep-1.3.2" sources."morgan-1.10.0" sources."ms-2.0.0" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."nanomatch-1.2.13" sources."negotiator-0.6.3" sources."normalize-path-3.0.0" @@ -84973,10 +84583,8 @@ in sources."etag-1.8.1" sources."expand-brackets-0.1.5" sources."expand-range-1.8.2" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ - sources."body-parser-1.20.1" - sources."raw-body-2.5.1" sources."safe-buffer-5.2.1" ]; }) @@ -85020,7 +84628,7 @@ in }) sources."has-cors-1.1.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ @@ -85037,7 +84645,7 @@ in sources."kind-of-4.0.0" ]; }) - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."html-entities-1.4.0" sources."http-errors-2.0.0" sources."http-signature-1.2.0" @@ -85099,7 +84707,7 @@ in ]; }) sources."ms-2.0.0" - sources."nan-2.18.0" + sources."nan-2.19.0" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -85213,14 +84821,14 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" ]; }) sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" (sources."snapdragon-0.8.2" // { dependencies = [ sources."define-property-0.2.5" @@ -85343,7 +84951,7 @@ in sources."debug-4.3.2" sources."emoji-regex-8.0.0" sources."escalade-3.1.2" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."get-caller-file-2.0.5" sources."is-fullwidth-code-point-3.0.0" sources."ms-2.1.2" @@ -85396,7 +85004,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.8" sources."@types/get-stdin-5.0.1" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -85468,13 +85076,17 @@ in markdown-link-check = nodeEnv.buildNodePackage { name = "markdown-link-check"; packageName = "markdown-link-check"; - version = "3.11.2"; + version = "3.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.11.2.tgz"; - sha512 = "zave+vI4AMeLp0FlUllAwGbNytSKsS3R2Zgtf3ufVT892Z/L6Ro9osZwE9PNA7s0IkJ4onnuHqatpsaCiAShJw=="; + url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.12.1.tgz"; + sha512 = "qjaopy0tcZFKMhr+wAOQf7KyValRXygTOaZQ3Ka1rf+nyObIUdU9hUVY93gYysz8+hx92YnXnKh1dmNRPO/5bA=="; }; dependencies = [ + sources."@tootallnate/quickjs-emscripten-0.23.0" + sources."agent-base-7.1.0" + sources."ast-types-0.13.4" sources."async-3.2.5" + sources."basic-ftp-5.0.5" sources."boolbase-1.0.0" sources."chalk-5.3.0" sources."cheerio-1.0.0-rc.12" @@ -85482,30 +85094,62 @@ in sources."commander-10.0.1" sources."css-select-5.1.0" sources."css-what-6.1.0" + sources."data-uri-to-buffer-6.0.2" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) + sources."degenerator-5.0.1" sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" sources."domhandler-5.0.3" sources."domutils-3.1.0" sources."entities-4.5.0" + sources."escodegen-2.1.0" + sources."esprima-4.0.1" + sources."estraverse-5.3.0" + sources."esutils-2.0.3" + sources."fs-extra-11.2.0" + sources."get-uri-6.0.3" + sources."graceful-fs-4.2.11" sources."html-link-extractor-1.0.5" sources."htmlparser2-8.0.2" + sources."http-proxy-agent-7.0.2" + sources."https-proxy-agent-7.0.4" sources."iconv-lite-0.6.3" + sources."ip-address-9.0.5" sources."is-absolute-url-4.0.1" sources."is-relative-url-4.0.0" sources."isemail-3.2.0" - sources."link-check-5.2.0" + sources."jsbn-1.1.0" + sources."jsonfile-6.1.0" + sources."link-check-5.3.0" sources."lodash-4.17.21" - sources."markdown-link-extractor-3.1.0" - sources."marked-4.3.0" + sources."lru-cache-7.18.3" + sources."markdown-link-extractor-4.0.2" + sources."marked-12.0.1" sources."ms-2.1.3" sources."needle-3.3.1" + sources."netmask-2.0.2" sources."nth-check-2.1.1" + sources."pac-proxy-agent-7.0.1" + sources."pac-resolver-7.0.1" sources."parse5-7.1.2" sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."progress-2.0.3" + sources."proxy-agent-6.4.0" + sources."proxy-from-env-1.1.0" sources."punycode-2.3.1" sources."safer-buffer-2.1.2" sources."sax-1.3.0" + sources."smart-buffer-4.2.0" + sources."socks-2.8.1" + sources."socks-proxy-agent-8.0.2" + sources."source-map-0.6.1" + sources."sprintf-js-1.1.3" + sources."tslib-2.6.2" + sources."universalify-2.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -85572,7 +85216,7 @@ in sources."concat-map-0.0.1" sources."concat-stream-1.6.2" sources."core-util-is-1.0.3" - sources."d-1.0.1" + sources."d-1.0.2" sources."dashdash-1.14.1" sources."dateformat-2.2.0" sources."deasync-0.1.20" @@ -85593,19 +85237,16 @@ in sources."entities-1.1.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es5-ext-0.10.62" + sources."es5-ext-0.10.64" sources."es6-iterator-2.0.3" sources."es6-map-0.1.5" - (sources."es6-set-0.1.6" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) - sources."es6-symbol-3.1.3" + sources."es6-set-0.1.6" + sources."es6-symbol-3.1.4" sources."es6-weak-map-2.0.3" sources."escape-string-regexp-1.0.5" sources."escope-3.6.0" sources."eslint-3.19.0" + sources."esniff-2.0.1" sources."espree-3.5.4" sources."esprima-4.0.1" (sources."esquery-1.5.0" // { @@ -85622,11 +85263,7 @@ in sources."esutils-2.0.3" sources."event-emitter-0.3.5" sources."exit-hook-1.1.1" - (sources."ext-1.7.0" // { - dependencies = [ - sources."type-2.7.2" - ]; - }) + sources."ext-1.7.0" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fancy-log-1.3.3" @@ -85666,9 +85303,9 @@ in sources."has-ansi-2.0.0" sources."has-gulplog-0.1.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http-signature-1.2.0" sources."ignore-3.3.10" sources."imurmurhash-0.1.4" @@ -85769,7 +85406,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.3.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shelljs-0.7.8" sources."slice-ansi-0.0.4" sources."sparkles-1.0.1" @@ -85803,7 +85440,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."twitter-1.7.1" - sources."type-1.2.0" + sources."type-2.7.2" sources."type-check-0.3.2" sources."typedarray-0.0.6" sources."uri-js-4.4.1" @@ -85903,7 +85540,7 @@ in sources."anymatch-3.1.3" sources."argparse-2.0.1" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."browser-stdout-1.3.1" @@ -86018,9 +85655,9 @@ in sources."gopd-1.0.1" sources."graphlib-2.1.8" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hexoid-1.0.0" sources."inherits-2.0.4" sources."js-yaml-3.14.1" @@ -86041,12 +85678,12 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" sources."semver-7.6.0" - sources."set-function-length-1.2.1" - sources."side-channel-1.0.5" + sources."set-function-length-1.2.2" + sources."side-channel-1.0.6" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string_decoder-1.3.0" @@ -86068,10 +85705,10 @@ in neovim = nodeEnv.buildNodePackage { name = "neovim"; packageName = "neovim"; - version = "4.11.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/neovim/-/neovim-4.11.0.tgz"; - sha512 = "8JJr7fr43xvldrrM0Y+Oij5JNdHrpi8x/EulEGexshMMWWGgBqL+QN2IbYkwWv8UyArQRbJnawqeuEH7OEu43g=="; + url = "https://registry.npmjs.org/neovim/-/neovim-5.0.1.tgz"; + sha512 = "dGrk2r+uQDZHB8yFKBuHUBqwP1akbCGUQt+Re7nRaS3uhOvsKYUvikg5qBRdcxoWMvvHIqp1EVihskKAk93mPw=="; }; dependencies = [ sources."@colors/colors-1.6.0" @@ -86092,13 +85729,11 @@ in sources."is-stream-2.0.1" sources."kuler-2.0.0" sources."logform-2.6.0" - sources."lru-cache-6.0.0" sources."ms-2.1.3" sources."one-time-1.0.0" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.3" - sources."semver-7.6.0" sources."simple-swizzle-0.2.2" sources."stack-trace-0.0.10" sources."string_decoder-1.3.0" @@ -86107,7 +85742,6 @@ in sources."util-deprecate-1.0.2" sources."winston-3.11.0" sources."winston-transport-4.7.0" - sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -86236,7 +85870,7 @@ in sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."socks-proxy-agent-8.0.2" sources."sprintf-js-1.1.3" sources."ssri-10.0.5" @@ -86401,26 +86035,26 @@ in node-red = nodeEnv.buildNodePackage { name = "node-red"; packageName = "node-red"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/node-red/-/node-red-3.1.5.tgz"; - sha512 = "Rz5dBK7AdsQZsbDbdScUriDZHYhUy03k66UGC4gPvWbDxfxQnMSWPhYmxux3wvtP/j+yg0D+rZA8nXVYNqksVA=="; + url = "https://registry.npmjs.org/node-red/-/node-red-3.1.7.tgz"; + sha512 = "FQH9nEPNLjXrsSmcl8DL51htu800kW0BVvTmn4j0jldOiFZyW+LzmxVTp7HhLuG1MTMrYvjaimMcLbxTL8ytAA=="; }; dependencies = [ - sources."@babel/runtime-7.23.9" + sources."@babel/runtime-7.24.0" sources."@mapbox/node-pre-gyp-1.0.11" - sources."@node-red/editor-api-3.1.5" - sources."@node-red/editor-client-3.1.5" - (sources."@node-red/nodes-3.1.5" // { + sources."@node-red/editor-api-3.1.7" + sources."@node-red/editor-client-3.1.7" + (sources."@node-red/nodes-3.1.7" // { dependencies = [ sources."cookie-0.5.0" sources."iconv-lite-0.6.3" sources."media-typer-1.1.0" ]; }) - sources."@node-red/registry-3.1.5" - sources."@node-red/runtime-3.1.5" - sources."@node-red/util-3.1.5" + sources."@node-red/registry-3.1.7" + sources."@node-red/runtime-3.1.7" + sources."@node-red/util-3.1.7" sources."@sindresorhus/is-5.6.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.4" @@ -86448,7 +86082,7 @@ in sources."array-flatten-1.1.1" sources."async-mutex-0.4.0" sources."asynckit-0.4.0" - sources."axios-1.6.7" + sources."axios-1.6.8" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { @@ -86518,7 +86152,7 @@ in sources."domelementtype-2.3.0" sources."domhandler-4.3.1" sources."domutils-2.8.0" - (sources."duplexify-4.1.2" // { + (sources."duplexify-4.1.3" // { dependencies = [ sources."readable-stream-3.6.2" ]; @@ -86548,7 +86182,7 @@ in sources."express-session-1.17.3" sources."fast-deep-equal-3.1.3" sources."finalhandler-1.2.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" sources."form-data-4.0.0" sources."form-data-encoder-2.1.4" sources."forwarded-0.2.0" @@ -86574,11 +86208,11 @@ in sources."got-12.6.0" sources."graceful-fs-4.2.11" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."hash-sum-2.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."help-me-3.0.0" // { dependencies = [ sources."readable-stream-3.6.2" @@ -86609,7 +86243,7 @@ in sources."json-buffer-3.0.1" sources."json-schema-traverse-1.0.0" sources."json-stringify-safe-5.0.1" - sources."jsonata-1.8.6" + sources."jsonata-1.8.7" (sources."jsonfile-6.1.0" // { dependencies = [ sources."universalify-2.0.1" @@ -86677,7 +86311,7 @@ in sources."node-red-admin-3.1.2" sources."node-watch-0.7.4" sources."nopt-5.0.0" - sources."normalize-url-8.0.0" + sources."normalize-url-8.0.1" sources."npmlog-5.0.1" sources."nth-check-2.1.1" (sources."number-allocator-1.0.14" // { @@ -86747,9 +86381,9 @@ in }) sources."serve-static-1.15.0" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" (sources."split2-3.2.2" // { dependencies = [ @@ -86872,7 +86506,7 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."http-signature-1.2.0" sources."inflight-1.0.6" @@ -87017,16 +86651,16 @@ in nodemon = nodeEnv.buildNodePackage { name = "nodemon"; packageName = "nodemon"; - version = "3.0.3"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/nodemon/-/nodemon-3.0.3.tgz"; - sha512 = "7jH/NXbFPxVaMwmBCC2B9F/V6X1VkEdNgx3iu9jji8WxWcvhMWkmhNWhI5077zknOnZnBzba9hZP6bCPJLSReQ=="; + url = "https://registry.npmjs.org/nodemon/-/nodemon-3.1.0.tgz"; + sha512 = "xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA=="; }; dependencies = [ sources."abbrev-1.1.1" sources."anymatch-3.1.3" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."chokidar-3.6.0" @@ -87069,10 +86703,10 @@ in np = nodeEnv.buildNodePackage { name = "np"; packageName = "np"; - version = "9.2.0"; + version = "10.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/np/-/np-9.2.0.tgz"; - sha512 = "VYA8IKyx5XJqROr2vu8NAstfgBznrnOu3PUByFl3TBwzQVkeGC+gzOPzGbvYKM1QwlX6Gt7kVSPMzDP4qkSs1g=="; + url = "https://registry.npmjs.org/np/-/np-10.0.1.tgz"; + sha512 = "3yP6WBrbyEvjTBpOxVYtinFf+vGfX+XNZXC1+Jjj/TWJjbt/GIpUz1BNvuCi7sqHtpVBJnnOIkH7yg3d1aK9lg=="; }; dependencies = [ (sources."@babel/code-frame-7.23.5" // { @@ -87088,16 +86722,7 @@ in sources."escape-string-regexp-1.0.5" ]; }) - (sources."@bconnorwhite/module-2.0.2" // { - dependencies = [ - sources."find-up-5.0.0" - sources."locate-path-6.0.0" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."path-exists-4.0.0" - ]; - }) - sources."@ljharb/through-2.3.12" + sources."@ljharb/through-2.3.13" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -87109,16 +86734,11 @@ in }) sources."@pnpm/npm-conf-2.2.2" sources."@samverschueren/stream-to-observable-0.3.1" - sources."@sindresorhus/is-4.6.0" - sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.3" + sources."@sindresorhus/is-5.6.0" + sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.4" - sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" sources."@types/normalize-package-data-2.4.4" - sources."@types/responselike-1.0.3" sources."aggregate-error-4.0.1" - sources."all-package-names-2.0.859" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -87127,7 +86747,6 @@ in sources."argparse-2.0.1" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."big-integer-1.6.52" sources."bl-4.1.0" (sources."boxen-7.1.1" // { dependencies = [ @@ -87140,16 +86759,15 @@ in sources."wrap-ansi-8.1.0" ]; }) - sources."bplist-parser-0.2.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."buffer-5.7.1" - sources."builtins-1.0.3" - sources."bundle-name-3.0.0" - sources."cacheable-lookup-5.0.4" - (sources."cacheable-request-7.0.4" // { + sources."builtins-5.0.1" + sources."bundle-name-4.1.0" + sources."cacheable-lookup-7.0.0" + (sources."cacheable-request-10.2.14" // { dependencies = [ - sources."get-stream-5.2.0" + sources."get-stream-6.0.1" ]; }) sources."call-bind-1.0.7" @@ -87172,23 +86790,16 @@ in }) sources."cli-width-4.1.0" sources."clone-1.0.4" - sources."clone-response-1.0.3" sources."code-point-at-1.1.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."commander-6.2.1" - sources."commander-version-1.1.0" sources."concat-map-0.0.1" (sources."config-chain-1.1.13" // { dependencies = [ sources."ini-1.3.8" ]; }) - (sources."configstore-6.0.0" // { - dependencies = [ - sources."dot-prop-6.0.1" - ]; - }) + sources."configstore-6.0.0" sources."cosmiconfig-8.3.6" sources."cross-spawn-7.0.3" (sources."crypto-random-string-4.0.0" // { @@ -87203,31 +86814,18 @@ in ]; }) sources."deep-extend-0.6.0" - (sources."default-browser-4.0.0" // { - dependencies = [ - sources."execa-7.2.0" - sources."get-stream-6.0.1" - sources."human-signals-4.3.1" - sources."onetime-6.0.0" - sources."signal-exit-3.0.7" - ]; - }) - sources."default-browser-id-3.0.0" + sources."default-browser-5.2.1" + sources."default-browser-id-5.0.0" sources."defaults-1.0.4" sources."defer-to-connect-2.0.1" sources."define-data-property-1.1.4" sources."define-lazy-prop-3.0.0" sources."del-7.1.0" sources."dir-glob-3.0.1" - (sources."dot-prop-7.2.0" // { - dependencies = [ - sources."type-fest-2.19.0" - ]; - }) + sources."dot-prop-6.0.1" sources."eastasianwidth-0.2.0" sources."elegant-spinner-1.0.1" sources."emoji-regex-8.0.0" - sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" @@ -87270,7 +86868,11 @@ in }) sources."globby-13.2.2" sources."gopd-1.0.1" - sources."got-11.8.6" + (sources."got-12.6.1" // { + dependencies = [ + sources."get-stream-6.0.1" + ]; + }) sources."graceful-fs-4.2.11" (sources."has-ansi-2.0.0" // { dependencies = [ @@ -87279,13 +86881,12 @@ in }) sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."has-yarn-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-7.0.1" sources."http-cache-semantics-4.1.1" - sources."http2-wrapper-1.0.3" + sources."http2-wrapper-2.2.1" sources."human-signals-5.0.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" @@ -87309,7 +86910,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-4.1.1" - sources."inquirer-9.2.14" + sources."inquirer-9.2.16" (sources."inquirer-autosubmit-prompt-0.2.0" // { dependencies = [ sources."ansi-escapes-3.2.0" @@ -87350,7 +86951,6 @@ in sources."is-inside-container-1.0.0" sources."is-installed-globally-1.0.0" sources."is-interactive-2.0.0" - sources."is-name-taken-2.0.0" sources."is-npm-6.0.0" sources."is-number-7.0.0" sources."is-obj-2.0.0" @@ -87367,11 +86967,7 @@ in sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-url-superb-6.1.0" - (sources."is-wsl-2.2.0" // { - dependencies = [ - sources."is-docker-2.2.1" - ]; - }) + sources."is-wsl-3.1.0" sources."isexe-2.0.0" sources."issue-regex-4.1.0" sources."js-tokens-4.0.0" @@ -87379,6 +86975,7 @@ in sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" sources."keyv-4.5.4" + sources."ky-1.2.2" sources."latest-version-7.0.0" sources."lines-and-columns-1.2.4" (sources."listr-0.14.3" // { @@ -87431,7 +87028,6 @@ in }) sources."locate-path-5.0.0" sources."lodash-4.17.21" - sources."lodash.isequal-4.5.0" sources."lodash.zip-4.2.0" (sources."log-symbols-6.0.0" // { dependencies = [ @@ -87453,15 +87049,15 @@ in sources."wrap-ansi-3.0.1" ]; }) - sources."lowercase-keys-2.0.0" + sources."lowercase-keys-3.0.0" sources."lru-cache-10.2.0" - sources."meow-12.1.1" + sources."meow-13.2.0" sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-fn-4.0.0" - sources."mimic-function-5.0.0" - sources."mimic-response-1.0.1" + sources."mimic-function-5.0.1" + sources."mimic-response-4.0.0" sources."minimatch-3.1.2" sources."minimist-1.2.8" sources."mute-stream-1.0.0" @@ -87471,9 +87067,13 @@ in ]; }) sources."normalize-package-data-6.0.0" - sources."normalize-url-6.1.0" - sources."npm-name-7.1.1" - (sources."npm-run-path-5.2.0" // { + sources."normalize-url-8.0.1" + (sources."npm-name-8.0.0" // { + dependencies = [ + sources."p-map-7.0.1" + ]; + }) + (sources."npm-run-path-5.3.0" // { dependencies = [ sources."path-key-4.0.0" ]; @@ -87482,7 +87082,7 @@ in sources."object-assign-4.1.1" sources."once-1.4.0" sources."onetime-7.0.0" - sources."open-9.1.0" + sources."open-10.1.0" (sources."ora-5.4.1" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -87497,16 +87097,9 @@ in }) sources."org-regex-1.0.0" sources."os-tmpdir-1.0.2" - (sources."ow-1.1.1" // { - dependencies = [ - sources."@sindresorhus/is-5.6.0" - sources."callsites-4.1.0" - ]; - }) - sources."p-cancelable-2.1.1" + sources."p-cancelable-3.0.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" - sources."p-lock-2.1.0" sources."p-map-5.5.0" (sources."p-memoize-7.1.1" // { dependencies = [ @@ -87515,36 +87108,16 @@ in }) sources."p-timeout-6.1.2" sources."p-try-2.2.0" - (sources."package-json-8.1.1" // { - dependencies = [ - sources."@sindresorhus/is-5.6.0" - sources."@szmarczak/http-timer-5.0.1" - sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.14" - sources."get-stream-6.0.1" - sources."got-12.6.1" - sources."http2-wrapper-2.2.1" - sources."lowercase-keys-3.0.0" - sources."mimic-response-4.0.0" - sources."normalize-url-8.0.0" - sources."p-cancelable-3.0.0" - sources."registry-auth-token-5.0.2" - sources."responselike-3.0.0" - ]; - }) - sources."package-name-conflict-1.0.3" + sources."package-json-8.1.1" sources."parent-module-1.0.1" sources."parse-json-5.2.0" - sources."parse-json-object-2.0.1" sources."path-exists-5.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."pkg-dir-8.0.0" - sources."progress-2.0.3" sources."proto-list-1.2.4" - sources."pump-3.0.0" sources."pupa-3.1.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -87553,25 +87126,19 @@ in sources."ini-1.3.8" ]; }) - sources."read-file-safe-1.0.10" - (sources."read-json-safe-1.0.5" // { - dependencies = [ - sources."parse-json-object-1.1.0" - ]; - }) (sources."read-package-up-11.0.0" // { dependencies = [ - sources."type-fest-4.10.2" + sources."type-fest-4.12.0" ]; }) (sources."read-pkg-9.0.1" // { dependencies = [ sources."parse-json-8.1.0" - sources."type-fest-4.10.2" + sources."type-fest-4.12.0" ]; }) sources."readable-stream-3.6.2" - sources."registry-auth-token-4.2.2" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."resolve-alpn-1.2.1" (sources."resolve-cwd-3.0.0" // { @@ -87580,7 +87147,7 @@ in ]; }) sources."resolve-from-4.0.0" - sources."responselike-2.0.1" + sources."responselike-3.0.0" (sources."restore-cursor-3.1.0" // { dependencies = [ sources."mimic-fn-2.1.0" @@ -87590,19 +87157,7 @@ in }) sources."reusify-1.0.4" sources."rimraf-3.0.2" - (sources."run-applescript-5.0.0" // { - dependencies = [ - sources."execa-5.1.1" - sources."get-stream-6.0.1" - sources."human-signals-2.1.0" - sources."is-stream-2.0.1" - sources."mimic-fn-2.1.0" - sources."npm-run-path-4.0.1" - sources."onetime-5.1.2" - sources."signal-exit-3.0.7" - sources."strip-final-newline-2.0.0" - ]; - }) + sources."run-applescript-7.0.0" sources."run-async-3.0.0" sources."run-parallel-1.2.0" (sources."rxjs-7.8.1" // { @@ -87619,7 +87174,7 @@ in ]; }) sources."semver-diff-4.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" @@ -87649,20 +87204,14 @@ in ]; }) sources."through-2.3.8" - sources."titleize-3.0.0" sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tslib-1.14.1" sources."type-fest-0.21.3" sources."typedarray-to-buffer-3.1.5" - sources."types-eslintrc-1.0.3" - sources."types-json-1.2.2" - sources."types-pkg-json-1.2.1" - sources."typescript-5.3.3" - sources."undici-types-5.26.5" + sources."typescript-5.4.2" sources."unicorn-magic-0.1.0" sources."unique-string-3.0.0" - sources."untildify-4.0.0" (sources."update-notifier-7.0.0" // { dependencies = [ sources."is-installed-globally-0.4.0" @@ -87670,9 +87219,8 @@ in ]; }) sources."util-deprecate-1.0.2" - sources."vali-date-1.0.0" sources."validate-npm-package-license-3.0.4" - sources."validate-npm-package-name-3.0.0" + sources."validate-npm-package-name-5.0.0" sources."wcwidth-1.0.1" sources."which-2.0.2" (sources."widest-line-4.0.1" // { @@ -87698,7 +87246,6 @@ in }) sources."xdg-basedir-5.1.0" sources."yallist-4.0.0" - sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -87713,10 +87260,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "10.4.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-10.4.0.tgz"; - sha512 = "RS7Mx0OVfXlOcQLRePuDIYdFCVBPCNapWHplDK+mh7GDdP/Tvor4ocuybRRPSvfcRb2vjRJt1fHCqw3cr8qACQ=="; + url = "https://registry.npmjs.org/npm/-/npm-10.5.0.tgz"; + sha512 = "Ejxwvfh9YnWVU2yA5FzoYLTW52vxHCz+MHrOFg9Cc8IFgF/6f5AGPAvb5WTay5DIUP1NIfN3VBZ0cLlGO0Ys+A=="; }; buildInputs = globalBuildInputs; meta = { @@ -87785,10 +87332,10 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "6.24.0"; + version = "6.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-6.24.0.tgz"; - sha512 = "UH7fyEdFyy7twSH0WR02TL4q2obFjIxv3Q1lQu9jfj+XHm06Hn60nMjd0Qgb4G+RhqqSWQtjTEXAhlFm8fiZlQ=="; + url = "https://registry.npmjs.org/orval/-/orval-6.25.0.tgz"; + sha512 = "UkM7QqIiRrFOnsGTNZUHilM6lXj1ZvGNoSC4pH3cYDH42oCgqI4GVfT5u35LJQNYtylTrFLydFRfssb05qwyhQ=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-9.0.6" @@ -87797,21 +87344,21 @@ in sources."@apidevtools/swagger-parser-10.1.0" sources."@asyncapi/specs-4.3.1" sources."@exodus/schemasafe-1.3.0" - sources."@ibm-cloud/openapi-ruleset-1.15.2" - sources."@ibm-cloud/openapi-ruleset-utilities-1.3.0" + sources."@ibm-cloud/openapi-ruleset-1.15.3" + sources."@ibm-cloud/openapi-ruleset-utilities-1.3.1" sources."@jsdevtools/ono-7.1.3" sources."@jsep-plugin/regex-1.0.3" sources."@jsep-plugin/ternary-1.1.3" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@orval/angular-6.24.0" - sources."@orval/axios-6.24.0" - sources."@orval/core-6.24.0" - sources."@orval/mock-6.24.0" - sources."@orval/query-6.24.0" - sources."@orval/swr-6.24.0" - sources."@orval/zod-6.24.0" + sources."@orval/angular-6.25.0" + sources."@orval/axios-6.25.0" + sources."@orval/core-6.25.0" + sources."@orval/mock-6.25.0" + sources."@orval/query-6.25.0" + sources."@orval/swr-6.25.0" + sources."@orval/zod-6.25.0" sources."@stoplight/better-ajv-errors-1.0.3" sources."@stoplight/json-3.21.0" (sources."@stoplight/json-ref-readers-1.2.2" // { @@ -87843,7 +87390,7 @@ in sources."@stoplight/yaml-ast-parser-0.0.48" sources."@types/es-aggregate-error-1.0.6" sources."@types/json-schema-7.0.15" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/urijs-1.19.25" sources."abort-controller-3.0.0" sources."acorn-8.11.3" @@ -87860,9 +87407,9 @@ in sources."array-union-2.1.0" sources."arraybuffer.prototype.slice-1.0.3" sources."astring-1.8.6" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."cac-6.7.14" @@ -87876,6 +87423,9 @@ in sources."compare-versions-6.1.0" sources."concat-map-0.0.1" sources."cross-spawn-7.0.3" + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."debug-4.3.4" sources."define-data-property-1.1.4" sources."define-properties-1.2.1" @@ -87884,11 +87434,12 @@ in sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."enquirer-2.4.1" - sources."es-abstract-1.22.4" + sources."es-abstract-1.23.2" sources."es-aggregate-error-1.0.12" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es-set-tostringtag-2.0.2" + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" sources."esbuild-0.19.12" @@ -87921,10 +87472,10 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."http2-client-1.3.5" sources."human-signals-2.1.0" sources."iconv-lite-0.6.3" @@ -87936,15 +87487,16 @@ in sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-negative-zero-2.0.2" + sources."is-negative-zero-2.0.3" sources."is-number-7.0.0" sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.2" + sources."is-shared-array-buffer-1.0.3" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -88004,7 +87556,7 @@ in sources."openapi-types-12.1.3" (sources."openapi3-ts-4.2.1" // { dependencies = [ - sources."yaml-2.3.4" + sources."yaml-2.4.1" ]; }) sources."p-limit-3.1.0" @@ -88014,6 +87566,7 @@ in sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."pony-cause-1.1.1" + sources."possible-typed-array-names-1.0.0" sources."punycode-2.3.1" sources."queue-microtask-1.2.3" sources."readdirp-3.6.0" @@ -88023,12 +87576,12 @@ in sources."require-from-string-2.0.2" sources."reusify-1.0.4" sources."run-parallel-1.2.0" - sources."safe-array-concat-1.1.0" + sources."safe-array-concat-1.1.2" sources."safe-regex-test-1.0.3" sources."safe-stable-stringify-1.1.1" sources."safer-buffer-2.1.2" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."should-13.2.3" @@ -88037,15 +87590,15 @@ in sources."should-type-1.4.0" sources."should-type-adaptors-1.1.0" sources."should-util-1.0.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."simple-eval-1.0.0" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string-argv-0.3.2" sources."string-width-4.2.3" - sources."string.prototype.trim-1.2.8" - sources."string.prototype.trimend-1.0.7" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" sources."string.prototype.trimstart-1.0.7" sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" @@ -88055,11 +87608,11 @@ in sources."tr46-0.0.3" sources."tsconfck-2.1.2" sources."tslib-2.6.2" - sources."typed-array-buffer-1.0.1" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" - sources."typescript-5.3.3" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" + sources."typescript-5.4.2" sources."unbox-primitive-1.0.2" sources."undici-types-5.26.5" sources."universalify-2.0.1" @@ -88071,7 +87624,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" sources."yaml-1.10.2" @@ -88092,10 +87645,10 @@ in parcel = nodeEnv.buildNodePackage { name = "parcel"; packageName = "parcel"; - version = "2.11.0"; + version = "2.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/parcel/-/parcel-2.11.0.tgz"; - sha512 = "H/RI1/DmuOkL8RuG/EpNPvtzrbF+7jA/R56ydEEm+lqFbYktKB4COR7JXdHkZXRgbSJyimrFB8d0r9+SaRnj0Q=="; + url = "https://registry.npmjs.org/parcel/-/parcel-2.12.0.tgz"; + sha512 = "W+gxAq7aQ9dJIg/XLKGcRT0cvnStFAQHPaI0pvD0U2l6IVLueUAm3nwN7lkY62zZNmlvNx6jNtE4wlbS+CyqSg=="; }; dependencies = [ (sources."@babel/code-frame-7.23.5" // { @@ -88109,12 +87662,12 @@ in sources."chalk-2.4.2" ]; }) - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@lezer/common-1.2.1" sources."@lezer/lr-1.4.0" sources."@lmdb/lmdb-darwin-arm64-2.8.5" @@ -88124,96 +87677,96 @@ in sources."@lmdb/lmdb-linux-x64-2.8.5" sources."@lmdb/lmdb-win32-x64-2.8.5" sources."@mischnic/json-sourcemap-0.1.1" - sources."@parcel/bundler-default-2.11.0" - sources."@parcel/cache-2.11.0" - sources."@parcel/codeframe-2.11.0" - sources."@parcel/compressor-raw-2.11.0" - sources."@parcel/config-default-2.11.0" - sources."@parcel/core-2.11.0" - sources."@parcel/diagnostic-2.11.0" - sources."@parcel/events-2.11.0" - sources."@parcel/fs-2.11.0" - sources."@parcel/graph-3.1.0" - sources."@parcel/logger-2.11.0" - sources."@parcel/markdown-ansi-2.11.0" - sources."@parcel/namer-default-2.11.0" - sources."@parcel/node-resolver-core-3.2.0" - sources."@parcel/optimizer-css-2.11.0" - sources."@parcel/optimizer-htmlnano-2.11.0" - sources."@parcel/optimizer-image-2.11.0" - sources."@parcel/optimizer-svgo-2.11.0" - sources."@parcel/optimizer-swc-2.11.0" - sources."@parcel/package-manager-2.11.0" - sources."@parcel/packager-css-2.11.0" - sources."@parcel/packager-html-2.11.0" - sources."@parcel/packager-js-2.11.0" - sources."@parcel/packager-raw-2.11.0" - sources."@parcel/packager-svg-2.11.0" - sources."@parcel/packager-wasm-2.11.0" - sources."@parcel/plugin-2.11.0" - sources."@parcel/profiler-2.11.0" - sources."@parcel/reporter-cli-2.11.0" - sources."@parcel/reporter-dev-server-2.11.0" - sources."@parcel/reporter-tracer-2.11.0" - sources."@parcel/resolver-default-2.11.0" - sources."@parcel/runtime-browser-hmr-2.11.0" - sources."@parcel/runtime-js-2.11.0" - sources."@parcel/runtime-react-refresh-2.11.0" - sources."@parcel/runtime-service-worker-2.11.0" - sources."@parcel/rust-2.11.0" + sources."@parcel/bundler-default-2.12.0" + sources."@parcel/cache-2.12.0" + sources."@parcel/codeframe-2.12.0" + sources."@parcel/compressor-raw-2.12.0" + sources."@parcel/config-default-2.12.0" + sources."@parcel/core-2.12.0" + sources."@parcel/diagnostic-2.12.0" + sources."@parcel/events-2.12.0" + sources."@parcel/fs-2.12.0" + sources."@parcel/graph-3.2.0" + sources."@parcel/logger-2.12.0" + sources."@parcel/markdown-ansi-2.12.0" + sources."@parcel/namer-default-2.12.0" + sources."@parcel/node-resolver-core-3.3.0" + sources."@parcel/optimizer-css-2.12.0" + sources."@parcel/optimizer-htmlnano-2.12.0" + sources."@parcel/optimizer-image-2.12.0" + sources."@parcel/optimizer-svgo-2.12.0" + sources."@parcel/optimizer-swc-2.12.0" + sources."@parcel/package-manager-2.12.0" + sources."@parcel/packager-css-2.12.0" + sources."@parcel/packager-html-2.12.0" + sources."@parcel/packager-js-2.12.0" + sources."@parcel/packager-raw-2.12.0" + sources."@parcel/packager-svg-2.12.0" + sources."@parcel/packager-wasm-2.12.0" + sources."@parcel/plugin-2.12.0" + sources."@parcel/profiler-2.12.0" + sources."@parcel/reporter-cli-2.12.0" + sources."@parcel/reporter-dev-server-2.12.0" + sources."@parcel/reporter-tracer-2.12.0" + sources."@parcel/resolver-default-2.12.0" + sources."@parcel/runtime-browser-hmr-2.12.0" + sources."@parcel/runtime-js-2.12.0" + sources."@parcel/runtime-react-refresh-2.12.0" + sources."@parcel/runtime-service-worker-2.12.0" + sources."@parcel/rust-2.12.0" (sources."@parcel/source-map-2.1.1" // { dependencies = [ sources."detect-libc-1.0.3" ]; }) - sources."@parcel/transformer-babel-2.11.0" - sources."@parcel/transformer-css-2.11.0" - (sources."@parcel/transformer-html-2.11.0" // { + sources."@parcel/transformer-babel-2.12.0" + sources."@parcel/transformer-css-2.12.0" + (sources."@parcel/transformer-html-2.12.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-image-2.11.0" - sources."@parcel/transformer-js-2.11.0" - sources."@parcel/transformer-json-2.11.0" - sources."@parcel/transformer-postcss-2.11.0" - (sources."@parcel/transformer-posthtml-2.11.0" // { + sources."@parcel/transformer-image-2.12.0" + sources."@parcel/transformer-js-2.12.0" + sources."@parcel/transformer-json-2.12.0" + sources."@parcel/transformer-postcss-2.12.0" + (sources."@parcel/transformer-posthtml-2.12.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-raw-2.11.0" - sources."@parcel/transformer-react-refresh-wrap-2.11.0" - (sources."@parcel/transformer-svg-2.11.0" // { + sources."@parcel/transformer-raw-2.12.0" + sources."@parcel/transformer-react-refresh-wrap-2.12.0" + (sources."@parcel/transformer-svg-2.12.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/types-2.11.0" - sources."@parcel/utils-2.11.0" - (sources."@parcel/watcher-2.4.0" // { + sources."@parcel/types-2.12.0" + sources."@parcel/utils-2.12.0" + (sources."@parcel/watcher-2.4.1" // { dependencies = [ sources."detect-libc-1.0.3" sources."node-addon-api-7.1.0" ]; }) - sources."@parcel/watcher-android-arm64-2.4.0" - sources."@parcel/watcher-darwin-arm64-2.4.0" - sources."@parcel/watcher-darwin-x64-2.4.0" - sources."@parcel/watcher-freebsd-x64-2.4.0" - sources."@parcel/watcher-linux-arm-glibc-2.4.0" - sources."@parcel/watcher-linux-arm64-glibc-2.4.0" - sources."@parcel/watcher-linux-arm64-musl-2.4.0" - sources."@parcel/watcher-linux-x64-glibc-2.4.0" - sources."@parcel/watcher-linux-x64-musl-2.4.0" - sources."@parcel/watcher-win32-arm64-2.4.0" - sources."@parcel/watcher-win32-ia32-2.4.0" - sources."@parcel/watcher-win32-x64-2.4.0" - sources."@parcel/workers-2.11.0" - sources."@swc/core-1.4.1" + sources."@parcel/watcher-android-arm64-2.4.1" + sources."@parcel/watcher-darwin-arm64-2.4.1" + sources."@parcel/watcher-darwin-x64-2.4.1" + sources."@parcel/watcher-freebsd-x64-2.4.1" + sources."@parcel/watcher-linux-arm-glibc-2.4.1" + sources."@parcel/watcher-linux-arm64-glibc-2.4.1" + sources."@parcel/watcher-linux-arm64-musl-2.4.1" + sources."@parcel/watcher-linux-x64-glibc-2.4.1" + sources."@parcel/watcher-linux-x64-musl-2.4.1" + sources."@parcel/watcher-win32-arm64-2.4.1" + sources."@parcel/watcher-win32-ia32-2.4.1" + sources."@parcel/watcher-win32-x64-2.4.1" + sources."@parcel/workers-2.12.0" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" sources."@trysound/sax-0.2.0" sources."abab-2.0.6" sources."abortcontroller-polyfill-1.7.5" @@ -88225,7 +87778,6 @@ in }) sources."acorn-walk-6.2.0" sources."ajv-6.12.6" - sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."argparse-2.0.1" sources."array-equal-1.0.2" @@ -88246,7 +87798,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -88258,7 +87810,6 @@ in ]; }) sources."chrome-trace-event-1.0.3" - sources."cli-progress-3.12.0" sources."clone-2.1.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -88273,9 +87824,9 @@ in sources."css-tree-2.3.1" sources."css-what-6.1.0" sources."cssesc-3.0.0" - sources."cssnano-6.0.3" - sources."cssnano-preset-default-6.0.3" - sources."cssnano-utils-4.0.1" + sources."cssnano-6.1.0" + sources."cssnano-preset-default-6.1.0" + sources."cssnano-utils-4.0.2" (sources."csso-5.0.5" // { dependencies = [ sources."css-tree-2.2.1" @@ -88297,8 +87848,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.673" - sources."emoji-regex-8.0.0" + sources."electron-to-chromium-1.4.710" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.2" @@ -88351,7 +87901,6 @@ in sources."is-absolute-url-3.0.3" sources."is-arrayish-0.2.1" sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" sources."is-html-1.1.0" sources."is-json-2.0.1" @@ -88373,12 +87922,12 @@ in sources."json5-2.2.3" sources."jsprim-1.4.2" sources."levn-0.3.0" - (sources."lightningcss-1.23.0" // { + (sources."lightningcss-1.24.1" // { dependencies = [ sources."detect-libc-1.0.3" ]; }) - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" sources."lines-and-columns-1.2.4" sources."lmdb-2.8.5" sources."lodash-4.17.21" @@ -88412,39 +87961,39 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pn-1.1.0" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-calc-9.0.1" - sources."postcss-colormin-6.0.2" - sources."postcss-convert-values-6.0.2" - sources."postcss-discard-comments-6.0.1" - sources."postcss-discard-duplicates-6.0.1" - sources."postcss-discard-empty-6.0.1" - sources."postcss-discard-overridden-6.0.1" - sources."postcss-merge-longhand-6.0.2" - sources."postcss-merge-rules-6.0.3" - sources."postcss-minify-font-values-6.0.1" - sources."postcss-minify-gradients-6.0.1" - sources."postcss-minify-params-6.0.2" - sources."postcss-minify-selectors-6.0.2" - sources."postcss-normalize-charset-6.0.1" - sources."postcss-normalize-display-values-6.0.1" - sources."postcss-normalize-positions-6.0.1" - sources."postcss-normalize-repeat-style-6.0.1" - sources."postcss-normalize-string-6.0.1" - sources."postcss-normalize-timing-functions-6.0.1" - sources."postcss-normalize-unicode-6.0.2" - sources."postcss-normalize-url-6.0.1" - sources."postcss-normalize-whitespace-6.0.1" - sources."postcss-ordered-values-6.0.1" - sources."postcss-reduce-initial-6.0.2" - sources."postcss-reduce-transforms-6.0.1" - sources."postcss-selector-parser-6.0.15" - (sources."postcss-svgo-6.0.2" // { + sources."postcss-colormin-6.1.0" + sources."postcss-convert-values-6.1.0" + sources."postcss-discard-comments-6.0.2" + sources."postcss-discard-duplicates-6.0.3" + sources."postcss-discard-empty-6.0.3" + sources."postcss-discard-overridden-6.0.2" + sources."postcss-merge-longhand-6.0.4" + sources."postcss-merge-rules-6.1.0" + sources."postcss-minify-font-values-6.0.3" + sources."postcss-minify-gradients-6.0.3" + sources."postcss-minify-params-6.1.0" + sources."postcss-minify-selectors-6.0.3" + sources."postcss-normalize-charset-6.0.2" + sources."postcss-normalize-display-values-6.0.2" + sources."postcss-normalize-positions-6.0.2" + sources."postcss-normalize-repeat-style-6.0.2" + sources."postcss-normalize-string-6.0.2" + sources."postcss-normalize-timing-functions-6.0.2" + sources."postcss-normalize-unicode-6.1.0" + sources."postcss-normalize-url-6.0.2" + sources."postcss-normalize-whitespace-6.0.2" + sources."postcss-ordered-values-6.0.2" + sources."postcss-reduce-initial-6.1.0" + sources."postcss-reduce-transforms-6.0.2" + sources."postcss-selector-parser-6.0.16" + (sources."postcss-svgo-6.0.3" // { dependencies = [ sources."svgo-3.2.0" ]; }) - sources."postcss-unique-selectors-6.0.2" + sources."postcss-unique-selectors-6.0.3" sources."postcss-value-parser-4.2.0" sources."posthtml-0.16.6" sources."posthtml-parser-0.11.0" @@ -88471,15 +88020,13 @@ in sources."saxes-3.1.11" sources."semver-7.6.0" sources."source-map-0.6.1" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."source-map-support-0.5.21" sources."srcset-4.0.0" sources."sshpk-1.18.0" sources."stable-0.1.8" sources."stealthy-require-1.1.1" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."stylehacks-6.0.2" + sources."stylehacks-6.1.0" sources."supports-color-5.5.0" (sources."svgo-2.8.0" // { dependencies = [ @@ -88495,7 +88042,7 @@ in }) sources."symbol-tree-3.2.4" sources."term-size-2.2.1" - (sources."terser-5.27.1" // { + (sources."terser-5.29.2" // { dependencies = [ sources."commander-2.20.3" ]; @@ -88509,7 +88056,7 @@ in sources."tweetnacl-0.14.5" sources."type-check-0.3.2" sources."type-fest-0.20.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" (sources."uncss-0.17.3" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -88585,7 +88132,7 @@ in sources."bintrees-1.0.2" sources."bl-1.2.3" sources."bluebird-3.7.2" - (sources."body-parser-1.20.1" // { + (sources."body-parser-1.20.2" // { dependencies = [ sources."bytes-3.1.2" sources."content-type-1.0.5" @@ -88642,7 +88189,7 @@ in sources."escape-html-1.0.3" sources."esprima-4.0.1" sources."etag-1.8.1" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ sources."content-type-1.0.5" sources."safe-buffer-5.2.1" @@ -88662,7 +88209,7 @@ in sources."fresh-0.5.2" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" - sources."gc-stats-1.4.0" + sources."gc-stats-1.4.1" sources."gelf-stream-1.1.1" sources."gelfling-0.3.1" sources."get-caller-file-2.0.5" @@ -88675,10 +88222,10 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hat-0.0.3" sources."heapdump-0.3.15" sources."hot-shots-6.8.7" @@ -88722,10 +88269,11 @@ in sources."ms-2.0.0" sources."msgpack5-3.6.1" sources."mv-2.1.1" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."ncp-2.0.0" sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" sources."neo-async-2.6.2" + sources."node-gyp-build-4.8.0" sources."oauth-sign-0.9.0" sources."object-inspect-1.13.1" sources."object-keys-1.1.1" @@ -88752,7 +88300,7 @@ in sources."punycode-2.3.1" sources."qs-6.11.0" sources."range-parser-1.2.1" - (sources."raw-body-2.5.1" // { + (sources."raw-body-2.5.2" // { dependencies = [ sources."bytes-3.1.2" ]; @@ -88793,9 +88341,9 @@ in ]; }) sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."simplediff-0.1.1" sources."source-map-0.6.1" sources."sprintf-js-1.0.3" @@ -88887,9 +88435,9 @@ in sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-docker-2.2.1" @@ -88914,7 +88462,7 @@ in sources."picomatch-2.3.1" sources."rimraf-2.7.1" sources."semver-7.6.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."slash-2.0.0" @@ -88925,7 +88473,7 @@ in sources."which-2.0.2" sources."wrappy-1.0.2" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -89049,10 +88597,10 @@ in sources."has-ansi-2.0.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hat-0.0.3" sources."hosted-git-info-2.8.9" sources."http-headers-3.0.2" @@ -89075,7 +88623,7 @@ in ]; }) sources."internal-ip-1.2.0" - sources."ip-1.1.8" + sources."ip-1.1.9" sources."ip-set-1.0.2" sources."ipaddr.js-2.1.0" sources."is-arguments-1.1.1" @@ -89119,7 +88667,7 @@ in sources."number-is-nan-1.0.1" sources."numeral-2.0.6" sources."object-assign-4.1.1" - sources."object-is-1.1.5" + sources."object-is-1.1.6" sources."object-keys-1.1.1" sources."once-1.4.0" sources."onetime-2.0.1" @@ -89189,8 +88737,8 @@ in sources."safer-buffer-2.1.2" sources."semver-5.7.2" sources."server-destroy-1.0.1" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" sources."simple-get-2.8.2" @@ -89391,10 +88939,8 @@ in sources."escape-html-1.0.3" sources."etag-1.8.1" sources."events-3.3.0" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ - sources."body-parser-1.20.1" - sources."raw-body-2.5.1" sources."safe-buffer-5.2.1" ]; }) @@ -89429,9 +88975,9 @@ in }) sources."has-cors-1.1.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hat-0.0.3" sources."http-errors-2.0.0" sources."http-signature-1.2.0" @@ -89441,7 +88987,7 @@ in sources."indexof-0.0.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ip-1.1.8" + sources."ip-1.1.9" sources."ip-set-1.0.2" sources."ipaddr.js-1.9.1" sources."is-typedarray-1.0.0" @@ -89567,9 +89113,9 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."simple-concat-1.0.1" sources."simple-get-2.8.2" (sources."simple-peer-6.4.4" // { @@ -89677,14 +89223,14 @@ in sources."@aashutoshrathi/word-wrap-1.2.6" sources."@adobe/css-tools-4.3.3" sources."@alloc/quick-lru-5.2.0" - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."@babel/generator-7.23.6" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."semver-6.3.1" ]; }) @@ -89699,54 +89245,54 @@ in sources."@babel/helper-environment-visitor-7.22.20" (sources."@babel/helper-function-name-7.23.0" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) (sources."@babel/helper-hoist-variables-7.22.5" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) (sources."@babel/helper-module-imports-7.22.15" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) sources."@babel/helper-module-transforms-7.23.3" - sources."@babel/helper-plugin-utils-7.22.5" + sources."@babel/helper-plugin-utils-7.24.0" (sources."@babel/helper-simple-access-7.22.5" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) (sources."@babel/helper-split-export-declaration-7.22.6" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - (sources."@babel/helpers-7.23.9" // { + (sources."@babel/helpers-7.24.0" // { dependencies = [ sources."@babel/generator-7.23.6" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" ]; }) sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" + sources."@babel/parser-7.24.0" sources."@babel/plugin-transform-react-jsx-self-7.23.3" sources."@babel/plugin-transform-react-jsx-source-7.23.3" - (sources."@babel/template-7.23.9" // { + (sources."@babel/template-7.24.0" // { dependencies = [ - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) (sources."@babel/traverse-7.23.2" // { dependencies = [ sources."@babel/generator-7.23.6" - sources."@babel/types-7.23.9" + sources."@babel/types-7.24.0" ]; }) sources."@babel/types-7.17.0" @@ -89796,24 +89342,24 @@ in sources."strip-ansi-7.1.0" ]; }) - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@remix-run/router-1.8.0" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tailwindcss/forms-0.5.7" - sources."@tanstack/react-virtual-3.0.4" - sources."@tanstack/virtual-core-3.0.0" + sources."@tanstack/react-virtual-3.2.0" + sources."@tanstack/virtual-core-3.2.0" sources."@trivago/prettier-plugin-sort-imports-4.2.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -89824,10 +89370,10 @@ in sources."@types/node-20.5.9" sources."@types/normalize-package-data-2.4.4" sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" - sources."@types/react-dom-18.2.19" + sources."@types/react-18.2.67" + sources."@types/react-dom-18.2.22" sources."@types/scheduler-0.16.8" - sources."@types/semver-7.5.7" + sources."@types/semver-7.5.8" sources."@typescript-eslint/eslint-plugin-6.0.0" sources."@typescript-eslint/parser-6.0.0" sources."@typescript-eslint/scope-manager-6.0.0" @@ -89837,11 +89383,11 @@ in sources."@typescript-eslint/utils-6.0.0" sources."@typescript-eslint/visitor-keys-6.0.0" sources."@vitejs/plugin-react-4.0.4" - sources."@vue/compiler-core-3.4.19" - sources."@vue/compiler-dom-3.4.19" - sources."@vue/compiler-sfc-3.4.19" - sources."@vue/compiler-ssr-3.4.19" - sources."@vue/shared-3.4.19" + sources."@vue/compiler-core-3.4.21" + sources."@vue/compiler-dom-3.4.21" + sources."@vue/compiler-sfc-3.4.21" + sources."@vue/compiler-ssr-3.4.21" + sources."@vue/shared-3.4.21" sources."acorn-8.11.3" sources."acorn-jsx-5.3.2" sources."acorn-walk-8.3.2" @@ -89855,20 +89401,18 @@ in sources."array-buffer-byte-length-1.0.1" sources."array-includes-3.1.7" sources."array-union-2.1.0" - sources."array.prototype.filter-1.0.3" sources."array.prototype.findlastindex-1.2.4" sources."array.prototype.flat-1.3.2" sources."array.prototype.flatmap-1.3.2" sources."array.prototype.tosorted-1.1.3" sources."arraybuffer.prototype.slice-1.0.3" sources."async-2.6.4" - sources."asynciterator.prototype-1.0.0" sources."asynckit-0.4.0" - sources."autoprefixer-10.4.17" - sources."available-typed-arrays-1.0.6" + sources."autoprefixer-10.4.18" + sources."available-typed-arrays-1.0.7" sources."axios-1.4.0" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browserslist-4.23.0" @@ -89877,7 +89421,7 @@ in sources."call-bind-1.0.7" sources."callsites-3.1.0" sources."camelcase-css-2.0.1" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."chokidar-3.6.0" sources."ci-info-3.9.0" @@ -89914,6 +89458,9 @@ in sources."cross-spawn-7.0.3" sources."cssesc-3.0.0" sources."csstype-3.1.3" + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."debug-4.3.4" sources."deep-is-0.1.4" sources."define-data-property-1.1.4" @@ -89926,17 +89473,17 @@ in sources."dlv-1.1.3" sources."doctrine-3.0.0" sources."eastasianwidth-0.2.0" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-9.2.2" sources."entities-4.5.0" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.22.4" - sources."es-array-method-boxes-properly-1.0.0" + sources."es-abstract-1.23.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es-iterator-helpers-1.0.17" - sources."es-set-tostringtag-2.0.2" + sources."es-iterator-helpers-1.0.18" + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" sources."es-shim-unscopables-1.0.2" sources."es-to-primitive-1.2.1" sources."esbuild-0.18.20" @@ -89962,7 +89509,7 @@ in sources."debug-3.2.7" ]; }) - (sources."eslint-module-utils-2.8.0" // { + (sources."eslint-module-utils-2.8.1" // { dependencies = [ sources."debug-3.2.7" ]; @@ -89983,7 +89530,7 @@ in ]; }) sources."eslint-plugin-react-hooks-4.6.0" - sources."eslint-plugin-react-refresh-0.4.5" + sources."eslint-plugin-react-refresh-0.4.6" (sources."eslint-plugin-unicorn-48.0.1" // { dependencies = [ sources."jsesc-3.0.2" @@ -90014,8 +89561,8 @@ in sources."fill-range-7.0.1" sources."find-up-5.0.0" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" - sources."follow-redirects-1.15.5" + sources."flatted-3.3.1" + sources."follow-redirects-1.15.6" sources."for-each-0.3.3" sources."foreground-child-3.1.1" sources."form-data-4.0.0" @@ -90041,10 +89588,10 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."iconv-lite-0.6.3" sources."ignore-5.3.1" @@ -90065,26 +89612,27 @@ in sources."is-builtin-module-3.2.1" sources."is-callable-1.2.7" sources."is-core-module-2.13.1" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-finalizationregistry-1.0.2" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" sources."is-glob-4.0.3" - sources."is-map-2.0.2" - sources."is-negative-zero-2.0.2" + sources."is-map-2.0.3" + sources."is-negative-zero-2.0.3" sources."is-number-7.0.0" sources."is-number-object-1.0.7" sources."is-path-inside-3.0.3" sources."is-regex-1.1.4" - sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.2" + sources."is-set-2.0.3" + sources."is-shared-array-buffer-1.0.3" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.13" - sources."is-weakmap-2.0.1" + sources."is-weakmap-2.0.2" sources."is-weakref-1.0.2" - sources."is-weakset-2.0.2" + sources."is-weakset-2.0.3" sources."is-what-3.14.1" sources."isarray-2.0.5" sources."isexe-2.0.0" @@ -90108,7 +89656,7 @@ in ]; }) sources."levn-0.4.1" - sources."lightningcss-1.23.0" + sources."lightningcss-1.24.1" sources."lilconfig-2.1.0" sources."lines-and-columns-1.2.4" sources."locate-path-6.0.0" @@ -90116,7 +89664,7 @@ in sources."lodash.merge-4.6.2" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" (sources."make-dir-2.1.0" // { dependencies = [ sources."pify-4.0.1" @@ -90154,11 +89702,11 @@ in sources."object-inspect-1.13.1" sources."object-keys-1.1.1" sources."object.assign-4.1.5" - sources."object.entries-1.1.7" - sources."object.fromentries-2.0.7" - sources."object.groupby-1.0.2" + sources."object.entries-1.1.8" + sources."object.fromentries-2.0.8" + sources."object.groupby-1.0.3" sources."object.hasown-1.1.3" - sources."object.values-1.1.7" + sources."object.values-1.2.0" sources."once-1.4.0" sources."optionator-0.9.3" sources."p-limit-3.1.0" @@ -90187,16 +89735,17 @@ in sources."debug-3.2.7" ]; }) - sources."postcss-8.4.35" + sources."possible-typed-array-names-1.0.0" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-value-parser-4.2.0" sources."prelude-ls-1.2.1" sources."prettier-3.0.3" @@ -90227,7 +89776,7 @@ in ]; }) sources."readdirp-3.6.0" - sources."reflect.getprototypeof-1.0.5" + sources."reflect.getprototypeof-1.0.6" sources."regexp-tree-0.1.27" sources."regexp.prototype.flags-1.5.2" (sources."regjsparser-0.10.0" // { @@ -90241,22 +89790,22 @@ in sources."rimraf-3.0.2" sources."rollup-3.29.4" sources."run-parallel-1.2.0" - sources."safe-array-concat-1.1.0" + sources."safe-array-concat-1.1.2" sources."safe-regex-test-1.0.3" sources."safer-buffer-2.1.2" - sources."sass-1.71.0" + sources."sass-1.72.0" sources."sax-1.3.0" sources."scheduler-0.23.0" sources."semver-7.6.0" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-4.1.0" sources."slash-3.0.0" sources."source-map-0.5.7" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" (sources."source-map-support-0.5.21" // { dependencies = [ sources."source-map-0.6.1" @@ -90278,15 +89827,15 @@ in ]; }) sources."string.prototype.matchall-4.0.10" - sources."string.prototype.trim-1.2.8" - sources."string.prototype.trimend-1.0.7" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" sources."string.prototype.trimstart-1.0.7" sources."strip-ansi-6.0.1" sources."strip-ansi-cjs-6.0.1" sources."strip-bom-3.0.0" sources."strip-indent-3.0.0" sources."strip-json-comments-3.1.1" - (sources."stylus-0.62.0" // { + (sources."stylus-0.63.0" // { dependencies = [ sources."source-map-0.7.4" ]; @@ -90306,7 +89855,7 @@ in sources."glob-parent-6.0.2" ]; }) - (sources."terser-5.27.1" // { + (sources."terser-5.29.2" // { dependencies = [ sources."commander-2.20.3" ]; @@ -90316,7 +89865,7 @@ in sources."thenify-all-1.6.0" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" - sources."ts-api-utils-1.2.1" + sources."ts-api-utils-1.3.0" sources."ts-interface-checker-0.1.13" (sources."ts-node-10.9.2" // { dependencies = [ @@ -90331,10 +89880,10 @@ in sources."tslib-2.6.2" sources."type-check-0.4.0" sources."type-fest-0.20.2" - sources."typed-array-buffer-1.0.1" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" sources."typescript-5.0.4" sources."unbox-primitive-1.0.2" sources."update-browserslist-db-1.0.13" @@ -90348,8 +89897,8 @@ in sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" sources."which-builtin-type-1.1.3" - sources."which-collection-1.0.1" - sources."which-typed-array-1.1.14" + sources."which-collection-1.0.2" + sources."which-typed-array-1.1.15" (sources."wrap-ansi-8.1.0" // { dependencies = [ sources."ansi-regex-6.0.1" @@ -90368,7 +89917,7 @@ in }) sources."wrappy-1.0.2" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" sources."yocto-queue-0.1.0" ]; @@ -90382,10 +89931,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.15.3"; + version = "8.15.5"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.15.3.tgz"; - sha512 = "3YXNbspkF8b3PbMroetHZ/+0y6T1vwcnhGciyStrnlaizCGLEThbvCsh8YoWpn2nes6um2Gg9WoWQ7JeH7amBQ=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.15.5.tgz"; + sha512 = "sFGjLH5pWDO4SSbTspuMylclS1ifBknYmcbp0O22cLkex+KkNFm65zdZu1zmGcMmbxFr+THOItHvF1mn5Fqpbw=="; }; buildInputs = globalBuildInputs; meta = { @@ -90428,15 +89977,15 @@ in postcss = nodeEnv.buildNodePackage { name = "postcss"; packageName = "postcss"; - version = "8.4.35"; + version = "8.4.36"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz"; - sha512 = "u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.36.tgz"; + sha512 = "/n7eumA6ZjFHAsbX30yhHup/IMkOmlmvtEi7P+6RMYf+bGJSUHc3geH4a0NSZxAz/RJfiS9tooCTs9LAVYUZKw=="; }; dependencies = [ sources."nanoid-3.3.7" sources."picocolors-1.0.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -90460,11 +90009,11 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@sindresorhus/merge-streams-2.2.1" + sources."@sindresorhus/merge-streams-2.3.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."anymatch-3.1.3" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."braces-3.0.2" sources."chokidar-3.6.0" sources."cliui-8.0.1" @@ -90490,7 +90039,7 @@ in sources."is-number-7.0.0" sources."jiti-1.21.0" sources."jsonfile-6.1.0" - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."nanoid-3.3.7" @@ -90499,7 +90048,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-load-config-5.0.3" sources."postcss-reporter-7.1.0" sources."pretty-hrtime-1.0.3" @@ -90510,7 +90059,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."slash-5.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."thenby-1.3.4" @@ -90519,7 +90068,7 @@ in sources."universalify-2.0.1" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" ]; @@ -90536,10 +90085,10 @@ in prebuild-install = nodeEnv.buildNodePackage { name = "prebuild-install"; packageName = "prebuild-install"; - version = "7.1.1"; + version = "7.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz"; - sha512 = "jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw=="; + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz"; + sha512 = "UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ=="; }; dependencies = [ sources."base64-js-1.5.1" @@ -90561,7 +90110,7 @@ in sources."minimist-1.2.8" sources."mkdirp-classic-0.5.3" sources."napi-build-utils-1.0.2" - sources."node-abi-3.54.0" + sources."node-abi-3.56.0" sources."once-1.4.0" sources."pump-3.0.0" sources."rc-1.2.8" @@ -90633,17 +90182,17 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-5.9.1.tgz"; - sha512 = "Hy/8KJZz0ELtkw4FnG9MS9rNWlXcJhf98Z2QMqi0QiVMoS8PzsBkpla0/Y5hTlob8F3HeECYphBjqmBxrluUrQ=="; + url = "https://registry.npmjs.org/prisma/-/prisma-5.11.0.tgz"; + sha512 = "KCLiug2cs0Je7kGkQBN9jDWoZ90ogE/kvZTUTgz2h94FEo8pczCkPH7fPNXkD1sGU7Yh65risGGD1HQ5DF3r3g=="; }; dependencies = [ - sources."@prisma/debug-5.9.1" - sources."@prisma/engines-5.9.1" - sources."@prisma/engines-version-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64" - sources."@prisma/fetch-engine-5.9.1" - sources."@prisma/get-platform-5.9.1" + sources."@prisma/debug-5.11.0" + sources."@prisma/engines-5.11.0" + sources."@prisma/engines-version-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102" + sources."@prisma/fetch-engine-5.11.0" + sources."@prisma/get-platform-5.11.0" ]; buildInputs = globalBuildInputs; meta = { @@ -90658,16 +90207,16 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "5.9.1"; + version = "5.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-5.9.1.tgz"; - sha512 = "T6wq87g0l5jTSMTLKHkJG0tJ7Cv7nY9bX97QunaSKLQ6/2HefSYI+7w713/RDtGft1BADookWt4uLtjVGPV7YQ=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-5.11.0.tgz"; + sha512 = "ufGtOeVuvTaAE8jUINtAhTQfDU6Td4gT6f1smwIffFQBkisjSb7XASI3/Cfa0+oTaRHh0kqfA2k6CW1pUdB/lg=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - (sources."@babel/core-7.23.9" // { + (sources."@babel/core-7.24.0" // { dependencies = [ sources."convert-source-map-2.0.0" ]; @@ -90684,20 +90233,20 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."@istanbuljs/load-nyc-config-1.1.0" sources."@istanbuljs/schema-0.1.3" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" - sources."@prisma/prisma-schema-wasm-5.9.0-32.23fdc5965b1e05fc54e5f26ed3de66776b93de64" + sources."@jridgewell/trace-mapping-0.3.25" + sources."@prisma/prisma-schema-wasm-5.11.0-15.efd2449663b3d73d637ea1fd226bafbcf45b3102" sources."@types/js-levenshtein-1.1.3" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" @@ -90710,7 +90259,7 @@ in sources."browserslist-4.23.0" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -90723,7 +90272,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.2" @@ -90767,7 +90316,7 @@ in ]; }) sources."istanbul-lib-source-maps-4.0.1" - sources."istanbul-reports-3.1.6" + sources."istanbul-reports-3.1.7" sources."js-levenshtein-1.1.6" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -90956,7 +90505,7 @@ in sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - (sources."asn1.js-5.4.1" // { + (sources."asn1.js-4.10.1" // { dependencies = [ sources."bn.js-4.12.0" ]; @@ -90986,9 +90535,9 @@ in ]; }) sources."browserify-rsa-4.1.0" - (sources."browserify-sign-4.2.2" // { + (sources."browserify-sign-4.2.3" // { dependencies = [ - sources."readable-stream-3.6.2" + sources."hash-base-3.0.4" ]; }) sources."browserify-zlib-0.2.0" @@ -91034,7 +90583,7 @@ in }) sources."domain-browser-1.2.0" sources."duplexer2-0.1.4" - (sources."elliptic-6.5.4" // { + (sources."elliptic-6.5.5" // { dependencies = [ sources."bn.js-4.12.0" ]; @@ -91064,7 +90613,7 @@ in sources."graceful-fs-4.2.11" sources."has-1.0.4" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" (sources."hash-base-3.1.0" // { dependencies = [ @@ -91072,14 +90621,14 @@ in ]; }) sources."hash.js-1.1.7" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hmac-drbg-1.0.1" sources."htmlescape-1.1.1" sources."https-browserify-1.0.0" sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inline-source-map-0.6.2" + sources."inline-source-map-0.6.3" (sources."insert-module-globals-7.2.1" // { dependencies = [ sources."concat-stream-1.6.2" @@ -91133,7 +90682,11 @@ in sources."os-browserify-0.3.0" sources."pako-1.0.11" sources."parents-1.0.1" - sources."parse-asn1-5.1.6" + (sources."parse-asn1-5.1.7" // { + dependencies = [ + sources."hash-base-3.0.4" + ]; + }) sources."path-browserify-0.0.1" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" @@ -91147,7 +90700,7 @@ in ]; }) sources."punycode-1.4.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."querystring-es3-0.2.1" sources."randombytes-2.1.0" sources."randomfill-1.0.4" @@ -91163,14 +90716,13 @@ in sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" - sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."sha.js-2.4.11" sources."shasum-1.0.2" sources."shasum-object-1.0.0" sources."shell-quote-1.8.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."simple-concat-1.0.1" sources."sorcery-0.10.0" sources."source-map-0.5.7" @@ -91278,10 +90830,10 @@ in purs-tidy = nodeEnv.buildNodePackage { name = "purs-tidy"; packageName = "purs-tidy"; - version = "0.10.1"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/purs-tidy/-/purs-tidy-0.10.1.tgz"; - sha512 = "i1QvMaDEaZXv/GWZNFWs5CISiBOkwPhG4D1S4Rw6zUCGaE+NQNWTjvwY21rifynGa2N2TiBJRC61LkORbmGxrA=="; + url = "https://registry.npmjs.org/purs-tidy/-/purs-tidy-0.11.0.tgz"; + sha512 = "HZ8AS6J7Ka2YVl6Gr/H5NV17TU10yGYUTxVwRd5tKuwsVdFZewXSzZ/HTpWrkhdR2gxSVk0BdnpJhyu//oRc+w=="; }; buildInputs = globalBuildInputs; meta = { @@ -91314,10 +90866,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.350"; + version = "1.1.354"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.350.tgz"; - sha512 = "9AMEsPGFzyYzwYCU3QuTUk/AEfVO3hlKtvF0kybBnwGiFuYsmwx02/Hlra7ROX+jtmDStL8qiHCPoYy0rCz/uA=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.354.tgz"; + sha512 = "lUojJFZqg4St+4E2WrZbqODeqLvhuRJXRDros59bJcK485hXJLlCb3DzTd/9KYfaisf2TqvDV79qhc0grwyf/w=="; }; buildInputs = globalBuildInputs; meta = { @@ -91339,7 +90891,7 @@ in }; dependencies = [ sources."@types/prop-types-15.7.11" - sources."@types/react-18.2.56" + sources."@types/react-18.2.67" sources."@types/scheduler-0.16.8" sources."@types/yoga-layout-1.9.2" sources."ansi-escapes-4.3.2" @@ -91373,7 +90925,7 @@ in sources."function-bind-1.1.2" sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."indent-string-3.2.0" sources."ink-2.7.1" @@ -91477,10 +91029,10 @@ in "reveal.js" = nodeEnv.buildNodePackage { name = "reveal.js"; packageName = "reveal.js"; - version = "5.0.4"; + version = "5.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/reveal.js/-/reveal.js-5.0.4.tgz"; - sha512 = "480pVhre9SXWuE4QbDwG0nPrip3TkifflqaKQWF8Ynf4iYIUBfgu5leeMso0srubQsZQ+G2OzktAfAkrvBY0Ww=="; + url = "https://registry.npmjs.org/reveal.js/-/reveal.js-5.0.5.tgz"; + sha512 = "MPWPV/cRlkZhh72dAGYv/bUCr9ulwM2/ucCqiL/KN4tvhb6VvN49iwOyWHE08wppj8lMQXi2xbS3kyKgfyTYqg=="; }; buildInputs = globalBuildInputs; meta = { @@ -91561,10 +91113,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "4.12.0"; + version = "4.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-4.12.0.tgz"; - sha512 = "wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q=="; + url = "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz"; + sha512 = "3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg=="; }; dependencies = [ sources."@types/estree-1.0.5" @@ -91595,7 +91147,7 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@eslint/js-8.56.0" + sources."@eslint/js-8.57.0" sources."@hpcc-js/wasm-2.16.0" (sources."@humanwhocodes/config-array-0.11.14" // { dependencies = [ @@ -91612,7 +91164,7 @@ in sources."@tsconfig/strictest-2.0.3" sources."@types/json-schema-7.0.15" sources."@types/node-16.11.68" - sources."@types/semver-7.5.7" + sources."@types/semver-7.5.8" sources."@types/vscode-1.78.1" sources."@typescript-eslint/eslint-plugin-6.21.0" sources."@typescript-eslint/parser-6.21.0" @@ -91628,7 +91180,7 @@ in sources."@typescript-eslint/visitor-keys-6.21.0" sources."@ungap/structured-clone-1.2.0" sources."@vscode/test-electron-2.3.9" - (sources."@vscode/vsce-2.23.0" // { + (sources."@vscode/vsce-2.24.0" // { dependencies = [ sources."brace-expansion-1.1.11" sources."commander-6.2.1" @@ -91679,7 +91231,7 @@ in sources."cross-spawn-7.0.3" sources."css-select-5.1.0" sources."css-what-6.1.0" - sources."d3-7.8.5" + sources."d3-7.9.0" sources."d3-array-3.2.4" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" @@ -91694,7 +91246,7 @@ in sources."d3-fetch-3.0.1" sources."d3-force-3.0.0" sources."d3-format-3.1.0" - sources."d3-geo-3.1.0" + sources."d3-geo-3.1.1" sources."d3-graphviz-5.3.0" sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" @@ -91703,7 +91255,7 @@ in sources."d3-quadtree-3.0.1" sources."d3-random-3.0.1" sources."d3-scale-4.0.2" - sources."d3-scale-chromatic-3.0.0" + sources."d3-scale-chromatic-3.1.0" sources."d3-selection-3.0.0" sources."d3-shape-3.2.0" sources."d3-time-3.1.0" @@ -91731,7 +91283,7 @@ in sources."es-errors-1.3.0" sources."escalade-3.1.2" sources."escape-string-regexp-1.0.5" - (sources."eslint-8.56.0" // { + (sources."eslint-8.57.0" // { dependencies = [ sources."brace-expansion-1.1.11" sources."chalk-4.1.2" @@ -91760,10 +91312,9 @@ in sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-5.0.0" - sources."find-yarn-workspace-root-2.0.0" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" - sources."follow-redirects-1.15.5" + sources."flatted-3.3.1" + sources."follow-redirects-1.15.6" sources."fs-constants-1.0.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" @@ -91783,9 +91334,9 @@ in sources."graphemer-1.4.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-4.1.0" sources."htmlparser2-8.0.2" sources."http-proxy-agent-4.0.1" @@ -91840,7 +91391,7 @@ in sources."mute-stream-0.0.8" sources."napi-build-utils-1.0.2" sources."natural-compare-1.4.0" - sources."node-abi-3.54.0" + sources."node-abi-3.56.0" sources."node-addon-api-4.3.0" sources."nth-check-2.1.1" sources."object-inspect-1.13.1" @@ -91868,13 +91419,13 @@ in sources."path-type-4.0.0" sources."pend-1.2.0" sources."picomatch-2.3.1" - sources."prebuild-install-7.1.1" + sources."prebuild-install-7.1.2" sources."prelude-ls-1.2.1" sources."prettier-3.2.5" sources."process-nextick-args-2.0.1" sources."pump-3.0.0" sources."punycode-2.3.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."queue-microtask-1.2.3" sources."rc-1.2.8" sources."read-1.0.7" @@ -91890,11 +91441,11 @@ in sources."safer-buffer-2.1.2" sources."sax-1.3.0" sources."semver-7.6.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setimmediate-1.0.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" sources."slash-3.0.0" @@ -91910,16 +91461,16 @@ in ]; }) sources."text-table-0.2.0" - sources."tmp-0.2.1" + sources."tmp-0.2.3" sources."to-regex-range-5.0.1" - sources."ts-api-utils-1.2.1" + sources."ts-api-utils-1.3.0" sources."tslib-2.6.2" sources."tunnel-0.0.6" sources."tunnel-agent-0.6.0" sources."type-check-0.4.0" sources."type-fest-0.20.2" sources."typed-rest-client-1.8.11" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."uc.micro-1.0.6" sources."underscore-1.13.6" sources."uri-js-4.4.1" @@ -91952,14 +91503,14 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.71.0"; + version = "1.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.71.0.tgz"; - sha512 = "HKKIKf49Vkxlrav3F/w6qRuPcmImGVbIXJ2I3Kg0VMA+3Bav+8yE9G5XmP5lMj6nl4OlqbPftGAscNaNu28b8w=="; + url = "https://registry.npmjs.org/sass/-/sass-1.72.0.tgz"; + sha512 = "Gpczt3WA56Ly0Mn8Sl21Vj94s1axi9hDIzDFn9Ph9x3C3p4nNyvsqJoQyVXKou6cBlfFWEgRW4rT8Tb4i3XnVA=="; }; dependencies = [ sources."anymatch-3.1.3" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."braces-3.0.2" sources."chokidar-3.6.0" sources."fill-range-7.0.1" @@ -91972,7 +91523,7 @@ in sources."normalize-path-3.0.0" sources."picomatch-2.3.1" sources."readdirp-3.6.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."to-regex-range-5.0.1" ]; buildInputs = globalBuildInputs; @@ -92162,7 +91713,7 @@ in sources."bcrypt-pbkdf-1.0.2" sources."better-assert-1.0.2" sources."blob-0.0.2" - sources."body-parser-1.20.1" + sources."body-parser-1.20.2" sources."bytes-3.1.2" sources."call-bind-1.0.7" sources."callsite-1.0.0" @@ -92214,7 +91765,7 @@ in sources."escape-html-1.0.3" sources."etag-1.8.1" sources."event-stream-3.3.5" - sources."express-4.18.2" + sources."express-4.18.3" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" @@ -92235,9 +91786,9 @@ in sources."has-binary-data-0.1.1" sources."has-cors-1.0.3" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."htmlparser2-3.7.3" // { dependencies = [ sources."domutils-1.5.1" @@ -92293,7 +91844,7 @@ in sources."punycode-2.3.1" sources."qs-6.11.0" sources."range-parser-1.2.1" - sources."raw-body-2.5.1" + sources."raw-body-2.5.2" sources."read-1.0.7" sources."readable-stream-1.1.14" (sources."request-2.88.2" // { @@ -92309,9 +91860,9 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."slate-irc-0.7.3" (sources."slate-irc-parser-0.0.2" // { dependencies = [ @@ -92466,7 +92017,7 @@ in sources."minimist-1.2.8" sources."mkdirp-0.5.6" sources."mv-2.1.1" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."ncp-2.0.0" sources."negotiator-0.5.3" sources."node-uuid-1.4.8" @@ -92563,16 +92114,16 @@ in "socket.io" = nodeEnv.buildNodePackage { name = "socket.io"; packageName = "socket.io"; - version = "4.7.4"; + version = "4.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.4.tgz"; - sha512 = "DcotgfP1Zg9iP/dH9zvAQcWrE0TtbMVwXmlV4T4mqsvY+gw+LqUGPfx2AoVyRk0FLME+GQhufDMyacFmw7ksqw=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz"; + sha512 = "DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA=="; }; dependencies = [ sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.17" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.8" @@ -92587,7 +92138,7 @@ in sources."negotiator-0.6.3" sources."node-gyp-build-4.8.0" sources."object-assign-4.1.1" - sources."socket.io-adapter-2.5.2" + sources."socket.io-adapter-2.5.4" sources."socket.io-parser-4.2.4" sources."undici-types-5.26.5" sources."utf-8-validate-5.0.10" @@ -92672,7 +92223,7 @@ in sources."function-bind-1.1.2" sources."hard-rejection-2.1.0" sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-4.1.0" sources."http-proxy-agent-2.1.0" sources."https-proxy-agent-3.0.1" @@ -92779,10 +92330,10 @@ in sql-formatter = nodeEnv.buildNodePackage { name = "sql-formatter"; packageName = "sql-formatter"; - version = "15.2.0"; + version = "15.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-15.2.0.tgz"; - sha512 = "k1gDOblvmtzmrBT687Y167ElwQI/8KrlhfKeIUXsi6jw7Rp5n3G8TkMFZF0Z9NG7rAzHKXUlJ8kfmcIfMf5lFg=="; + url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-15.3.0.tgz"; + sha512 = "1aDYVEX+dwOSCkRYns4HEGupRZoaivcsNpU4IzR+MVC+cWFYK9/dce7pr4aId4+ED2iK9PNs3j1Vdf8C+SIvDg=="; }; dependencies = [ sources."argparse-2.0.1" @@ -92826,16 +92377,16 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "3.6.4"; + version = "3.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.4.tgz"; - sha512 = "mY/dqucqm46p72M8yZmn81WPZx9mN6uuw8UVfR3ZKQeLxQg5HDGO3HHm5AZuWZPYNMLJ+TRMn+TeN53HfQ/vsw=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.7.tgz"; + sha512 = "tKEjemK9FYCySAseCaIt+ps5o0XRvLC7ECjyJXXtO7vOQhR9E6JavgoUbGP1PCulD2OTcB/fi9RjV3nyF1AROw=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - sources."@babel/core-7.23.9" + sources."@babel/core-7.24.0" sources."@babel/generator-7.23.6" sources."@babel/helper-compilation-targets-7.23.6" sources."@babel/helper-environment-visitor-7.22.20" @@ -92848,17 +92399,17 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -92879,14 +92430,14 @@ in sources."axobject-query-4.0.0" sources."babel-walk-3.0.0-canary-5" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browserslist-4.23.0" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.7" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.6.0" @@ -92904,7 +92455,7 @@ in sources."dequal-2.0.3" sources."detect-indent-6.1.0" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."errno-0.1.8" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" @@ -92927,10 +92478,10 @@ in sources."graceful-fs-4.2.11" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" sources."immutable-4.3.5" @@ -92954,10 +92505,10 @@ in sources."json5-2.2.3" sources."jstransformer-1.0.0" sources."less-4.2.0" - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" sources."locate-character-3.0.0" sources."lru-cache-5.1.1" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" (sources."make-dir-2.1.0" // { dependencies = [ sources."semver-5.7.2" @@ -92985,7 +92536,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-load-config-5.0.3" sources."promise-7.3.1" sources."prr-1.0.1" @@ -93011,13 +92562,13 @@ in sources."sade-1.8.1" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.71.0" + sources."sass-1.72.0" sources."sax-1.3.0" sources."semver-6.3.1" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."sorcery-0.11.0" sources."source-map-0.6.1" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."source-map-resolve-0.6.0" sources."strip-indent-3.0.0" (sources."stylus-0.55.0" // { @@ -93032,7 +92583,7 @@ in sources."sugarss-4.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."svelte-5.0.0-next.56" // { + (sources."svelte-5.0.0-next.80" // { dependencies = [ sources."acorn-8.11.3" ]; @@ -93042,13 +92593,13 @@ in sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."update-browserslist-db-1.0.13" sources."void-elements-3.1.0" sources."with-7.0.2" sources."wrappy-1.0.2" sources."yallist-3.1.1" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."zimmerframe-1.1.2" ]; buildInputs = globalBuildInputs; @@ -93064,16 +92615,16 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.16.3"; + version = "0.16.5"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.16.3.tgz"; - sha512 = "j4mJgx5+vTWxffsR42w8ugqWlK8W/peLJYdjRBMxX1smRr1w/v++yDQl1zVcmOpPNcp9HfTTUoivoyd8B7fCpg=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.16.5.tgz"; + sha512 = "gzGlDikWDQZn+ccX0hyCamzGuTEXMwGNiXOXiNBtK+HJg+aL7wKcHnjwHg72K4K5s85OIYZE0zUj6JXjkAJkKQ=="; }; dependencies = [ - sources."@ampproject/remapping-2.2.1" + sources."@ampproject/remapping-2.3.0" sources."@babel/code-frame-7.23.5" sources."@babel/compat-data-7.23.5" - sources."@babel/core-7.23.9" + sources."@babel/core-7.24.0" sources."@babel/generator-7.23.6" sources."@babel/helper-compilation-targets-7.23.6" sources."@babel/helper-environment-visitor-7.22.20" @@ -93086,20 +92637,20 @@ in sources."@babel/helper-string-parser-7.23.4" sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/helper-validator-option-7.23.5" - sources."@babel/helpers-7.23.9" + sources."@babel/helpers-7.24.0" sources."@babel/highlight-7.23.4" - sources."@babel/parser-7.23.9" - sources."@babel/template-7.23.9" - sources."@babel/traverse-7.23.9" - sources."@babel/types-7.23.9" + sources."@babel/parser-7.24.0" + sources."@babel/template-7.24.0" + sources."@babel/traverse-7.24.0" + sources."@babel/types-7.24.0" sources."@emmetio/abbreviation-2.3.3" sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -93118,13 +92669,13 @@ in sources."atob-2.1.2" sources."babel-walk-3.0.0-canary-5" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browserslist-4.23.0" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.7" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.6.0" @@ -93142,8 +92693,8 @@ in sources."define-data-property-1.1.4" sources."detect-indent-6.1.0" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.673" - sources."emmet-2.4.6" + sources."electron-to-chromium-1.4.710" + sources."emmet-2.4.7" sources."errno-0.1.8" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" @@ -93165,10 +92716,10 @@ in sources."graceful-fs-4.2.11" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" sources."immutable-4.3.5" @@ -93191,11 +92742,11 @@ in sources."jsonc-parser-2.3.1" sources."jstransformer-1.0.0" sources."less-4.2.0" - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" sources."lodash-4.17.21" sources."lower-case-2.0.2" sources."lru-cache-5.1.1" - sources."magic-string-0.30.7" + sources."magic-string-0.30.8" (sources."make-dir-2.1.0" // { dependencies = [ sources."semver-5.7.2" @@ -93223,10 +92774,10 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-load-config-5.0.3" - sources."prettier-3.1.1" - sources."prettier-plugin-svelte-3.1.2" + sources."prettier-3.2.5" + sources."prettier-plugin-svelte-3.2.2" sources."promise-7.3.1" sources."prr-1.0.1" sources."pug-3.0.2" @@ -93249,13 +92800,13 @@ in sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.71.0" + sources."sass-1.72.0" sources."sax-1.3.0" sources."semver-6.3.1" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."sorcery-0.11.0" sources."source-map-0.6.1" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."source-map-resolve-0.6.0" sources."strip-indent-3.0.0" (sources."stylus-0.55.0" // { @@ -93272,12 +92823,12 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."svelte-3.59.2" sources."svelte-preprocess-5.1.3" - sources."svelte2tsx-0.7.1" + sources."svelte2tsx-0.7.4" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" (sources."typescript-auto-import-cache-0.3.2" // { dependencies = [ sources."lru-cache-6.0.0" @@ -93307,7 +92858,7 @@ in sources."with-7.0.2" sources."wrappy-1.0.2" sources."yallist-3.1.1" - sources."yaml-2.3.4" + sources."yaml-2.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -93348,7 +92899,7 @@ in sources."mdn-data-2.0.30" sources."nth-check-2.1.1" sources."picocolors-1.0.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -93372,24 +92923,28 @@ in sources."@alloc/quick-lru-5.2.0" sources."@cspotcode/source-map-support-0.8.1" sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + (sources."@jridgewell/gen-mapping-0.3.5" // { + dependencies = [ + sources."@jridgewell/trace-mapping-0.3.25" + ]; + }) sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."ansi-regex-5.0.1" @@ -93398,7 +92953,7 @@ in sources."anymatch-3.1.3" sources."arg-5.0.2" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."camelcase-css-2.0.1" @@ -93429,7 +92984,7 @@ in sources."function-bind-1.1.2" sources."glob-10.3.10" sources."glob-parent-6.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -93459,16 +93014,16 @@ in sources."picomatch-2.3.1" sources."pify-2.3.0" sources."pirates-4.0.6" - sources."postcss-8.4.35" + sources."postcss-8.4.36" sources."postcss-import-15.1.0" sources."postcss-js-4.0.1" (sources."postcss-load-config-4.0.2" // { dependencies = [ - sources."lilconfig-3.1.0" + sources."lilconfig-3.1.1" ]; }) sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -93479,7 +93034,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" - sources."source-map-js-1.0.2" + sources."source-map-js-1.1.0" sources."string-width-5.1.2" (sources."string-width-cjs-4.2.3" // { dependencies = [ @@ -93505,7 +93060,7 @@ in ]; }) sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -93519,7 +93074,7 @@ in sources."strip-ansi-6.0.1" ]; }) - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -93608,31 +93163,31 @@ in textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; - version = "14.0.3"; + version = "14.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-14.0.3.tgz"; - sha512 = "AqEG9OcGBSw4KHss55ZrBv75uWeruqTHfix3koQHwqnazRw3eAkFQwQ+NLpzMut+rIBWUUikUzuBN/SOG+obEw=="; + url = "https://registry.npmjs.org/textlint/-/textlint-14.0.4.tgz"; + sha512 = "xPQkC/BftPjizjs31wci/791EjwfN11iRLrNKiPVBogYd1r+6TnSxbCERZhgXCGcD9tEHss0kOYc0+vPEEG8jg=="; }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" sources."@azu/format-text-1.0.2" sources."@azu/style-format-1.0.1" - sources."@textlint/ast-node-types-14.0.3" - sources."@textlint/ast-tester-14.0.3" - sources."@textlint/ast-traverse-14.0.3" - sources."@textlint/config-loader-14.0.3" - sources."@textlint/feature-flag-14.0.3" - sources."@textlint/fixer-formatter-14.0.3" - sources."@textlint/kernel-14.0.3" - sources."@textlint/linter-formatter-14.0.3" - sources."@textlint/markdown-to-ast-14.0.3" - sources."@textlint/module-interop-14.0.3" - sources."@textlint/source-code-fixer-14.0.3" - sources."@textlint/text-to-ast-14.0.3" - sources."@textlint/textlint-plugin-markdown-14.0.3" - sources."@textlint/textlint-plugin-text-14.0.3" - sources."@textlint/types-14.0.3" - sources."@textlint/utils-14.0.3" + sources."@textlint/ast-node-types-14.0.4" + sources."@textlint/ast-tester-14.0.4" + sources."@textlint/ast-traverse-14.0.4" + sources."@textlint/config-loader-14.0.4" + sources."@textlint/feature-flag-14.0.4" + sources."@textlint/fixer-formatter-14.0.4" + sources."@textlint/kernel-14.0.4" + sources."@textlint/linter-formatter-14.0.4" + sources."@textlint/markdown-to-ast-14.0.4" + sources."@textlint/module-interop-14.0.4" + sources."@textlint/source-code-fixer-14.0.4" + sources."@textlint/text-to-ast-14.0.4" + sources."@textlint/textlint-plugin-markdown-14.0.4" + sources."@textlint/textlint-plugin-text-14.0.4" + sources."@textlint/types-14.0.4" + sources."@textlint/utils-14.0.4" sources."@types/mdast-3.0.15" sources."@types/unist-2.0.10" sources."ajv-8.12.0" @@ -93677,7 +93232,7 @@ in sources."glob-7.2.3" sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hosted-git-info-2.8.9" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -93858,14 +93413,14 @@ in sources."get-intrinsic-1.2.4" sources."gopd-1.0.1" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."match-index-1.0.3" sources."object-keys-1.1.1" sources."regexp.prototype.flags-1.5.2" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -93890,7 +93445,7 @@ in sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/highlight-7.23.4" sources."@isaacs/cliui-8.0.2" - sources."@npmcli/config-6.4.0" + sources."@npmcli/config-6.4.1" (sources."@npmcli/map-workspaces-3.0.4" // { dependencies = [ sources."glob-10.3.10" @@ -93912,7 +93467,7 @@ in sources."@types/concat-stream-2.0.3" sources."@types/debug-4.1.12" sources."@types/estree-1.0.5" - sources."@types/estree-jsx-1.0.4" + sources."@types/estree-jsx-1.0.5" sources."@types/hast-2.3.10" sources."@types/http-cache-semantics-4.0.4" sources."@types/is-empty-1.2.3" @@ -93920,7 +93475,7 @@ in sources."@types/minimist-1.2.5" sources."@types/ms-0.7.34" sources."@types/nlcst-1.0.4" - sources."@types/node-18.19.17" + sources."@types/node-18.19.25" sources."@types/normalize-package-data-2.4.4" sources."@types/supports-color-8.1.3" sources."@types/unist-2.0.10" @@ -93965,7 +93520,7 @@ in sources."character-entities-html4-2.1.0" sources."character-entities-legacy-3.0.0" sources."character-reference-invalid-2.0.1" - sources."ci-info-3.9.0" + sources."ci-info-4.0.0" sources."cli-boxes-3.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -94042,7 +93597,7 @@ in sources."hard-rejection-2.1.0" sources."has-flag-3.0.0" sources."has-yarn-3.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."hast-util-embedded-2.0.1" sources."hast-util-from-parse5-7.1.2" sources."hast-util-has-property-2.0.1" @@ -94068,12 +93623,16 @@ in sources."indent-string-5.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-4.1.1" + sources."ini-4.1.2" sources."is-alphabetical-2.0.1" sources."is-alphanumerical-2.0.1" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-ci-3.0.1" + (sources."is-ci-3.0.1" // { + dependencies = [ + sources."ci-info-3.9.0" + ]; + }) sources."is-core-module-2.13.1" sources."is-decimal-2.0.1" sources."is-empty-1.2.0" @@ -94179,7 +93738,7 @@ in sources."nlcst-to-string-3.1.1" sources."nopt-7.2.0" sources."normalize-package-data-4.0.1" - sources."normalize-url-8.0.0" + sources."normalize-url-8.0.1" sources."npm-normalize-package-bin-3.0.1" sources."object-keys-0.4.0" sources."once-1.4.0" @@ -94412,7 +93971,7 @@ in sources."xdg-basedir-5.1.0" sources."xtend-2.1.2" sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yargs-parser-21.1.1" sources."yocto-queue-1.0.0" sources."zwitch-2.0.4" @@ -94705,14 +94264,18 @@ in sources."array-buffer-byte-length-1.0.1" sources."array-includes-3.1.7" sources."arraybuffer.prototype.slice-1.0.3" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."call-bind-1.0.7" + sources."data-view-buffer-1.0.1" + sources."data-view-byte-length-1.0.1" + sources."data-view-byte-offset-1.0.0" sources."define-data-property-1.1.4" sources."define-properties-1.2.1" - sources."es-abstract-1.22.4" + sources."es-abstract-1.23.2" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" - sources."es-set-tostringtag-2.0.2" + sources."es-object-atoms-1.0.0" + sources."es-set-tostringtag-2.0.3" sources."es-to-primitive-1.2.1" sources."for-each-0.3.3" sources."function-bind-1.1.2" @@ -94724,21 +94287,22 @@ in sources."gopd-1.0.1" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."internal-slot-1.0.7" sources."is-array-buffer-3.0.4" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" sources."is-capitalized-1.0.0" + sources."is-data-view-1.0.1" sources."is-date-object-1.0.5" - sources."is-negative-zero-2.0.2" + sources."is-negative-zero-2.0.3" sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.2" + sources."is-shared-array-buffer-1.0.3" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.13" @@ -94747,22 +94311,23 @@ in sources."object-inspect-1.13.1" sources."object-keys-1.1.1" sources."object.assign-4.1.5" + sources."possible-typed-array-names-1.0.0" sources."regexp.prototype.flags-1.5.2" - sources."safe-array-concat-1.1.0" + sources."safe-array-concat-1.1.2" sources."safe-regex-test-1.0.3" - sources."set-function-length-1.2.1" - sources."set-function-name-2.0.1" - sources."side-channel-1.0.5" - sources."string.prototype.trim-1.2.8" - sources."string.prototype.trimend-1.0.7" + sources."set-function-length-1.2.2" + sources."set-function-name-2.0.2" + sources."side-channel-1.0.6" + sources."string.prototype.trim-1.2.9" + sources."string.prototype.trimend-1.0.8" sources."string.prototype.trimstart-1.0.7" - sources."typed-array-buffer-1.0.1" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" + sources."typed-array-buffer-1.0.2" + sources."typed-array-byte-length-1.0.1" + sources."typed-array-byte-offset-1.0.2" + sources."typed-array-length-1.0.5" sources."unbox-primitive-1.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" ]; buildInputs = globalBuildInputs; meta = { @@ -94834,7 +94399,7 @@ in sources."@types/cors-2.8.17" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/responselike-1.0.3" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -94855,7 +94420,7 @@ in sources."asn1-0.2.6" sources."asn1.js-5.4.1" sources."assert-plus-1.0.0" - sources."available-typed-arrays-1.0.6" + sources."available-typed-arrays-1.0.7" sources."backoff-2.5.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -94893,7 +94458,7 @@ in sources."content-type-1.0.5" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.36.0" + sources."core-js-3.36.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -94968,11 +94533,11 @@ in sources."grapheme-splitter-1.0.4" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.1" sources."http-errors-1.8.1" @@ -95112,6 +94677,7 @@ in sources."path-to-regexp-0.1.7" sources."peek-readable-4.1.0" sources."pify-4.0.1" + sources."possible-typed-array-names-1.0.0" sources."precond-0.2.3" sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" @@ -95143,7 +94709,7 @@ in }) sources."serve-static-1.14.2" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" sources."signal-exit-3.0.7" sources."smart-buffer-4.2.0" @@ -95153,14 +94719,19 @@ in sources."ms-2.1.2" ]; }) - sources."socket.io-adapter-2.5.2" + (sources."socket.io-adapter-2.5.4" // { + dependencies = [ + sources."debug-4.3.4" + sources."ms-2.1.2" + ]; + }) (sources."socket.io-parser-4.2.4" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" ]; }) - sources."socks-2.8.0" + sources."socks-2.8.1" (sources."socks-proxy-agent-6.2.1" // { dependencies = [ sources."debug-4.3.4" @@ -95216,7 +94787,7 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" - sources."which-typed-array-1.1.14" + sources."which-typed-array-1.1.15" sources."wide-align-1.1.5" sources."with-open-file-0.1.7" sources."wrappy-1.0.2" @@ -95329,7 +94900,7 @@ in sources."content-type-1.0.5" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.36.0" + sources."core-js-3.36.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -95424,10 +94995,10 @@ in sources."has-cors-1.1.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."htmlparser2-3.10.1" sources."http-cache-semantics-4.1.1" (sources."http-errors-1.7.2" // { @@ -95504,7 +95075,7 @@ in sources."mkdirp-0.5.6" sources."ms-2.0.0" sources."mute-stream-0.0.8" - sources."nan-2.18.0" + sources."nan-2.19.0" (sources."needle-2.9.1" // { dependencies = [ sources."debug-3.2.7" @@ -95553,7 +95124,7 @@ in sources."psl-1.9.0" sources."pump-3.0.0" sources."punycode-2.3.1" - sources."qs-6.11.2" + sources."qs-6.12.0" sources."range-parser-1.2.1" sources."raw-body-2.4.0" sources."rc-1.2.8" @@ -95586,9 +95157,9 @@ in }) sources."serve-static-1.14.1" sources."set-blocking-2.0.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.1.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" (sources."socket.io-2.3.0" // { dependencies = [ @@ -95930,7 +95501,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/responselike-1.0.3" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -96011,7 +95582,7 @@ in sources."content-type-1.0.5" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.36.0" + sources."core-js-3.36.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -96399,7 +95970,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/responselike-1.0.3" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -96480,7 +96051,7 @@ in sources."content-type-1.0.5" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.36.0" + sources."core-js-3.36.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -97303,7 +96874,7 @@ in sources."supports-color-2.0.0" sources."temp-0.8.4" sources."tslib-1.14.1" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."wordwrap-0.0.3" sources."wrappy-1.0.2" ]; @@ -97330,16 +96901,16 @@ in sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."arg-4.1.3" @@ -97347,7 +96918,7 @@ in sources."diff-4.0.2" sources."make-error-1.3.6" sources."tslib-2.6.2" - sources."typescript-5.3.3" + sources."typescript-5.4.2" sources."undici-types-5.26.5" sources."v8-compile-cache-lib-3.0.1" sources."yn-3.1.1" @@ -97449,14 +97020,14 @@ in sources."@babel/helper-validator-identifier-7.22.20" sources."@babel/highlight-7.23.4" sources."@isaacs/cliui-8.0.2" - sources."@npmcli/config-6.4.0" + sources."@npmcli/config-6.4.1" sources."@npmcli/map-workspaces-3.0.4" sources."@npmcli/name-from-folder-2.0.0" sources."@types/concat-stream-2.0.3" sources."@types/debug-4.1.12" sources."@types/is-empty-1.2.3" sources."@types/ms-0.7.34" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/supports-color-8.1.3" sources."@types/unist-3.0.2" sources."@ungap/structured-clone-1.2.0" @@ -97473,7 +97044,7 @@ in sources."color-name-1.1.3" ]; }) - sources."ci-info-3.9.0" + sources."ci-info-4.0.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."concat-stream-2.0.0" @@ -97490,7 +97061,7 @@ in sources."ignore-5.3.1" sources."import-meta-resolve-2.2.2" sources."inherits-2.0.4" - sources."ini-4.1.1" + sources."ini-4.1.2" sources."is-arrayish-0.2.1" sources."is-empty-1.2.0" sources."is-fullwidth-code-point-3.0.0" @@ -97547,8 +97118,7 @@ in sources."undici-types-5.26.5" (sources."unified-engine-11.2.0" // { dependencies = [ - sources."@npmcli/config-8.1.0" - sources."ci-info-4.0.0" + sources."@npmcli/config-8.2.0" sources."import-meta-resolve-4.0.0" sources."load-plugin-6.0.2" ]; @@ -97585,7 +97155,7 @@ in ]; }) sources."yallist-4.0.0" - sources."yaml-2.3.4" + sources."yaml-2.4.1" sources."yocto-queue-1.0.0" ]; buildInputs = globalBuildInputs; @@ -97601,10 +97171,10 @@ in vega-cli = nodeEnv.buildNodePackage { name = "vega-cli"; packageName = "vega-cli"; - version = "5.27.0"; + version = "5.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.27.0.tgz"; - sha512 = "ZOQAG545RuP+Bba4udBapaFbSvPMHvfstkC9OLHOcfqjUPrx4XU/HffsiX6D1WrBP+5OoOzvLpNg4u9Agi7uag=="; + url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.28.0.tgz"; + sha512 = "Rb0qwuLV71pkIXVdt78yTJh+KT9Q1avhdWIOwrrc/OHWwRowWlvtoc3pJBHXlGooDqj8gbMkU+MXR3ez2H8glQ=="; }; dependencies = [ sources."@mapbox/node-pre-gyp-1.0.11" @@ -97634,7 +97204,7 @@ in sources."d3-dsv-3.0.1" sources."d3-force-3.0.0" sources."d3-format-3.1.0" - sources."d3-geo-3.1.0" + sources."d3-geo-3.1.1" sources."d3-geo-projection-4.0.0" sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" @@ -97685,7 +97255,7 @@ in }) sources."mkdirp-1.0.4" sources."ms-2.1.2" - sources."nan-2.18.0" + sources."nan-2.19.0" sources."node-fetch-2.7.0" sources."nopt-5.0.0" sources."npmlog-5.0.1" @@ -97715,7 +97285,7 @@ in }) sources."tr46-0.0.3" sources."util-deprecate-1.0.2" - sources."vega-5.27.0" + sources."vega-5.28.0" sources."vega-canvas-1.2.7" sources."vega-crossfilter-4.1.1" sources."vega-dataflow-5.7.5" @@ -97729,7 +97299,7 @@ in sources."vega-hierarchy-4.1.1" sources."vega-label-1.2.1" sources."vega-loader-4.5.1" - sources."vega-parser-6.2.1" + sources."vega-parser-6.3.0" sources."vega-projection-1.6.0" sources."vega-regression-1.2.0" sources."vega-runtime-6.1.4" @@ -97768,10 +97338,10 @@ in vega-lite = nodeEnv.buildNodePackage { name = "vega-lite"; packageName = "vega-lite"; - version = "5.16.3"; + version = "5.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.16.3.tgz"; - sha512 = "F3HO/BqlyyB1D0tf/+qy1JOmq7bHtG/nvsXcgNVUFjgVgvVKL4sMnxVnYzSsIg10x/6RFxLfwWJSd0cA8MuuUA=="; + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.17.0.tgz"; + sha512 = "PPm1HRdDFDdl2fga3cHm3lHjJV/xcB+Cn77xe7Av1yRLY1GMbPaJS42s+e7XHGmbeDee+H/KK9lUdQK28xs7nA=="; }; dependencies = [ sources."@types/estree-1.0.5" @@ -97789,7 +97359,7 @@ in sources."d3-dsv-3.0.1" sources."d3-force-3.0.0" sources."d3-format-3.1.0" - sources."d3-geo-3.1.0" + sources."d3-geo-3.1.1" sources."d3-geo-projection-4.0.0" sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" @@ -97823,7 +97393,7 @@ in }) sources."tr46-0.0.3" sources."tslib-2.6.2" - sources."vega-5.27.0" + sources."vega-5.28.0" sources."vega-canvas-1.2.7" sources."vega-crossfilter-4.1.1" sources."vega-dataflow-5.7.5" @@ -97837,7 +97407,7 @@ in sources."vega-hierarchy-4.1.1" sources."vega-label-1.2.1" sources."vega-loader-4.5.1" - sources."vega-parser-6.2.1" + sources."vega-parser-6.3.0" sources."vega-projection-1.6.0" sources."vega-regression-1.2.0" sources."vega-runtime-6.1.4" @@ -97873,10 +97443,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "33.5.1"; + version = "33.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-33.5.1.tgz"; - sha512 = "lvQWtsElC4ZxdCAO8xBqNEoqcX+i4xdWRIXbDMCfEahTOeaaHs8asV68iP7/PJ3zC/9Zr0kTyx0CUtiBJaXZ9A=="; + url = "https://registry.npmjs.org/vercel/-/vercel-33.6.1.tgz"; + sha512 = "Y21ViEdTuXLkvz1vEvm8jvOqU58G0fntPpST8Xr2eoshNyrgntIL0VlASrDzgEW2zkZ8gutrXFbD9Y4V8Uerrw=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -97885,7 +97455,7 @@ in sources."@edge-runtime/ponyfill-2.4.2" sources."@edge-runtime/primitives-4.1.0" sources."@edge-runtime/vm-3.2.0" - sources."@fastify/busboy-2.1.0" + sources."@fastify/busboy-2.1.1" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" @@ -97912,11 +97482,11 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@rollup/pluginutils-4.2.1" sources."@sinclair/typebox-0.25.24" - sources."@swc/core-1.4.1" + sources."@swc/core-1.4.8" sources."@swc/counter-0.1.3" - sources."@swc/helpers-0.5.6" - sources."@swc/types-0.1.5" - sources."@swc/wasm-1.4.1" + sources."@swc/helpers-0.5.7" + sources."@swc/types-0.1.6" + sources."@swc/wasm-1.4.8" sources."@tootallnate/once-2.0.0" (sources."@ts-morph/common-0.11.1" // { dependencies = [ @@ -97929,11 +97499,11 @@ in sources."@tsconfig/node16-1.0.4" sources."@types/json-schema-7.0.15" sources."@types/node-14.18.33" - sources."@vercel/build-utils-7.7.0" + sources."@vercel/build-utils-7.9.1" sources."@vercel/error-utils-2.0.2" sources."@vercel/fun-1.1.0" sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11" - (sources."@vercel/gatsby-plugin-vercel-builder-2.0.18" // { + (sources."@vercel/gatsby-plugin-vercel-builder-2.0.22" // { dependencies = [ sources."fs-extra-11.1.0" sources."jsonfile-6.1.0" @@ -97942,9 +97512,9 @@ in }) sources."@vercel/go-3.0.5" sources."@vercel/hydrogen-1.0.2" - sources."@vercel/next-4.1.1" - sources."@vercel/nft-0.26.3" - (sources."@vercel/node-3.0.19" // { + sources."@vercel/next-4.1.6" + sources."@vercel/nft-0.26.4" + (sources."@vercel/node-3.0.24" // { dependencies = [ sources."async-listen-3.0.0" sources."node-fetch-2.6.9" @@ -97952,12 +97522,12 @@ in ]; }) sources."@vercel/python-4.1.1" - (sources."@vercel/redwood-2.0.7" // { + (sources."@vercel/redwood-2.0.8" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@vercel/remix-builder-2.0.19" + sources."@vercel/remix-builder-2.1.4" (sources."@vercel/routing-utils-3.1.0" // { dependencies = [ sources."ajv-6.12.6" @@ -97966,7 +97536,7 @@ in ]; }) sources."@vercel/ruby-2.0.5" - sources."@vercel/static-build-2.4.0" + sources."@vercel/static-build-2.4.4" sources."@vercel/static-config-3.0.0" sources."abbrev-1.1.1" sources."acorn-8.11.3" @@ -97983,7 +97553,7 @@ in sources."async-listen-1.2.0" sources."async-sema-3.1.1" sources."balanced-match-1.0.2" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."bindings-1.5.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -98262,7 +97832,7 @@ in sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.10.0" sources."@eslint/eslintrc-2.1.4" - sources."@eslint/js-8.56.0" + sources."@eslint/js-8.57.0" sources."@humanwhocodes/config-array-0.11.14" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-2.0.2" @@ -98298,8 +97868,8 @@ in sources."es-define-property-1.0.0" sources."es-errors-1.3.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.56.0" - sources."eslint-plugin-vue-9.21.1" + sources."eslint-8.57.0" + sources."eslint-plugin-vue-9.23.0" sources."eslint-scope-7.2.2" sources."eslint-visitor-keys-3.4.3" sources."espree-9.6.1" @@ -98315,7 +97885,7 @@ in sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.2.0" - sources."flatted-3.2.9" + sources."flatted-3.3.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.2" sources."get-intrinsic-1.2.4" @@ -98326,10 +97896,10 @@ in sources."graphemer-1.4.0" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.2" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."ignore-5.3.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" @@ -98373,7 +97943,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - sources."postcss-selector-parser-6.0.15" + sources."postcss-selector-parser-6.0.16" sources."prelude-ls-1.2.1" sources."prettier-2.8.8" sources."pug-error-2.0.0" @@ -98386,7 +97956,7 @@ in sources."rimraf-3.0.2" sources."run-parallel-1.2.0" sources."semver-7.6.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sprintf-js-1.0.3" @@ -98597,13 +98167,13 @@ in wavedrom-cli = nodeEnv.buildNodePackage { name = "wavedrom-cli"; packageName = "wavedrom-cli"; - version = "3.1.1"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/wavedrom-cli/-/wavedrom-cli-3.1.1.tgz"; - sha512 = "EwAUg6706mBujMLbb4Czhe9Ax5Dw3x64t/X2hn+vIVvVexAANSifVg3yB7ILZmeRSGmv9uYo6kL5J1c/DiGdaw=="; + url = "https://registry.npmjs.org/wavedrom-cli/-/wavedrom-cli-3.2.0.tgz"; + sha512 = "KX07T/WHnXfmoo2wvjLlx0eKeGIotB0C5GnfWVHylPfSa7BuNo0bktRCL2+zJ3g72IKc1psuRIGZIn7/soexag=="; }; dependencies = [ - (sources."@babel/runtime-7.23.9" // { + (sources."@babel/runtime-7.24.0" // { dependencies = [ sources."regenerator-runtime-0.14.1" ]; @@ -98659,11 +98229,7 @@ in sources."any-base-1.1.0" sources."atob-2.1.2" sources."base64-js-1.5.1" - (sources."bit-field-1.8.0" // { - dependencies = [ - sources."fs-extra-10.1.0" - ]; - }) + sources."bit-field-1.9.0" sources."bmp-js-0.1.0" sources."btoa-1.2.1" sources."buffer-5.7.1" @@ -98727,7 +98293,7 @@ in sources."universalify-2.0.1" sources."utif-2.0.1" sources."util-deprecate-1.0.2" - sources."wavedrom-3.4.0" + sources."wavedrom-3.5.0" sources."wrap-ansi-7.0.0" sources."xhr-2.6.0" sources."xml-parse-from-string-1.0.1" @@ -98751,38 +98317,38 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.90.2"; + version = "5.90.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.90.2.tgz"; - sha512 = "ziXu8ABGr0InCMEYFnHrYweinHK2PWrMqnwdHk2oK3rRhv/1B+2FnfwYv5oD+RrknK/Pp/Hmyvu+eAsaMYhzCw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz"; + sha512 = "h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA=="; }; dependencies = [ - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" - sources."@types/eslint-8.56.2" + sources."@jridgewell/trace-mapping-0.3.25" + sources."@types/eslint-8.56.5" sources."@types/eslint-scope-3.7.7" sources."@types/estree-1.0.5" sources."@types/json-schema-7.0.15" - sources."@types/node-20.11.19" - sources."@webassemblyjs/ast-1.11.6" + sources."@types/node-20.11.29" + sources."@webassemblyjs/ast-1.12.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" + sources."@webassemblyjs/helper-buffer-1.12.1" sources."@webassemblyjs/helper-numbers-1.11.6" sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" + sources."@webassemblyjs/helper-wasm-section-1.12.1" sources."@webassemblyjs/ieee754-1.11.6" sources."@webassemblyjs/leb128-1.11.6" sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" + sources."@webassemblyjs/wasm-edit-1.12.1" + sources."@webassemblyjs/wasm-gen-1.12.1" + sources."@webassemblyjs/wasm-opt-1.12.1" + sources."@webassemblyjs/wasm-parser-1.12.1" + sources."@webassemblyjs/wast-printer-1.12.1" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.11.3" @@ -98791,11 +98357,11 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.23.0" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.673" - sources."enhanced-resolve-5.15.0" + sources."electron-to-chromium-1.4.710" + sources."enhanced-resolve-5.16.0" sources."es-module-lexer-1.4.1" sources."escalade-3.1.2" sources."eslint-scope-5.1.1" @@ -98830,13 +98396,13 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.27.1" + sources."terser-5.29.2" sources."terser-webpack-plugin-5.3.10" sources."undici-types-5.26.5" sources."update-browserslist-db-1.0.13" sources."uri-js-4.4.1" - sources."watchpack-2.4.0" - sources."webpack-5.90.2" + sources."watchpack-2.4.1" + sources."webpack-5.90.3" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -98859,32 +98425,32 @@ in }; dependencies = [ sources."@discoveryjs/json-ext-0.5.7" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" - sources."@types/eslint-8.56.2" + sources."@jridgewell/trace-mapping-0.3.25" + sources."@types/eslint-8.56.5" sources."@types/eslint-scope-3.7.7" sources."@types/estree-1.0.5" sources."@types/json-schema-7.0.15" - sources."@types/node-20.11.19" - sources."@webassemblyjs/ast-1.11.6" + sources."@types/node-20.11.29" + sources."@webassemblyjs/ast-1.12.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" + sources."@webassemblyjs/helper-buffer-1.12.1" sources."@webassemblyjs/helper-numbers-1.11.6" sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" + sources."@webassemblyjs/helper-wasm-section-1.12.1" sources."@webassemblyjs/ieee754-1.11.6" sources."@webassemblyjs/leb128-1.11.6" sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" + sources."@webassemblyjs/wasm-edit-1.12.1" + sources."@webassemblyjs/wasm-gen-1.12.1" + sources."@webassemblyjs/wasm-opt-1.12.1" + sources."@webassemblyjs/wasm-parser-1.12.1" + sources."@webassemblyjs/wast-printer-1.12.1" sources."@webpack-cli/configtest-2.1.1" sources."@webpack-cli/info-2.0.2" sources."@webpack-cli/serve-2.0.5" @@ -98896,14 +98462,14 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.23.0" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.673" - sources."enhanced-resolve-5.15.0" + sources."electron-to-chromium-1.4.710" + sources."enhanced-resolve-5.16.0" sources."envinfo-7.11.1" sources."es-module-lexer-1.4.1" sources."escalade-3.1.2" @@ -98924,7 +98490,7 @@ in sources."glob-to-regexp-0.4.1" sources."graceful-fs-4.2.11" sources."has-flag-4.0.0" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."import-local-3.1.0" sources."interpret-3.1.1" sources."is-core-module-2.13.1" @@ -98967,7 +98533,7 @@ in sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."terser-5.27.1" // { + (sources."terser-5.29.2" // { dependencies = [ sources."commander-2.20.3" ]; @@ -98976,8 +98542,8 @@ in sources."undici-types-5.26.5" sources."update-browserslist-db-1.0.13" sources."uri-js-4.4.1" - sources."watchpack-2.4.0" - sources."webpack-5.90.2" + sources."watchpack-2.4.1" + sources."webpack-5.90.3" sources."webpack-cli-5.1.4" sources."webpack-merge-5.10.0" sources."webpack-sources-3.2.3" @@ -98997,25 +98563,25 @@ in webpack-dev-server = nodeEnv.buildNodePackage { name = "webpack-dev-server"; packageName = "webpack-dev-server"; - version = "5.0.2"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.2.tgz"; - sha512 = "IVj3qsQhiLJR82zVg3QdPtngMD05CYP/Am+9NG5QSl+XwUR/UPtFwllRBKrMwM9ttzFsC6Zj3DMgniPyn/Z0hQ=="; + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.3.tgz"; + sha512 = "4aj4I8FJLsFbd4Vt6YBXC8CWrOOwviEI9DdVTu9hrgIBGWs4oKOVfDnaRc+vgf1JUSir1psph1ChPFDkTGHR2Q=="; }; dependencies = [ sources."@isaacs/cliui-8.0.2" - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@leichtgewicht/ip-codec-2.0.4" sources."@types/body-parser-1.19.5" sources."@types/bonjour-3.5.13" sources."@types/connect-3.4.38" sources."@types/connect-history-api-fallback-1.5.4" - sources."@types/eslint-8.56.2" + sources."@types/eslint-8.56.5" sources."@types/eslint-scope-3.7.7" sources."@types/estree-1.0.5" sources."@types/express-4.17.21" @@ -99024,9 +98590,9 @@ in sources."@types/http-proxy-1.17.14" sources."@types/json-schema-7.0.15" sources."@types/mime-1.3.5" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/node-forge-1.3.11" - sources."@types/qs-6.9.11" + sources."@types/qs-6.9.13" sources."@types/range-parser-1.2.7" sources."@types/retry-0.12.2" sources."@types/send-0.17.4" @@ -99034,21 +98600,21 @@ in sources."@types/serve-static-1.15.5" sources."@types/sockjs-0.3.36" sources."@types/ws-8.5.10" - sources."@webassemblyjs/ast-1.11.6" + sources."@webassemblyjs/ast-1.12.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" + sources."@webassemblyjs/helper-buffer-1.12.1" sources."@webassemblyjs/helper-numbers-1.11.6" sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" + sources."@webassemblyjs/helper-wasm-section-1.12.1" sources."@webassemblyjs/ieee754-1.11.6" sources."@webassemblyjs/leb128-1.11.6" sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" + sources."@webassemblyjs/wasm-edit-1.12.1" + sources."@webassemblyjs/wasm-gen-1.12.1" + sources."@webassemblyjs/wasm-opt-1.12.1" + sources."@webassemblyjs/wasm-parser-1.12.1" + sources."@webassemblyjs/wast-printer-1.12.1" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."accepts-1.3.8" @@ -99061,12 +98627,11 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."anymatch-3.1.3" - sources."arg-5.0.2" sources."array-flatten-1.1.1" sources."balanced-match-1.0.2" sources."batch-0.6.1" - sources."binary-extensions-2.2.0" - (sources."body-parser-1.20.1" // { + sources."binary-extensions-2.3.0" + (sources."body-parser-1.20.2" // { dependencies = [ sources."bytes-3.1.2" ]; @@ -99080,7 +98645,7 @@ in sources."bundle-name-4.1.0" sources."bytes-3.0.0" sources."call-bind-1.0.7" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chokidar-3.6.0" sources."chrome-trace-event-1.0.3" sources."color-convert-2.0.1" @@ -99112,10 +98677,10 @@ in sources."dns-packet-5.6.1" sources."eastasianwidth-0.2.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.673" + sources."electron-to-chromium-1.4.710" sources."emoji-regex-9.2.2" sources."encodeurl-1.0.2" - sources."enhanced-resolve-5.15.0" + sources."enhanced-resolve-5.16.0" sources."es-define-property-1.0.0" sources."es-errors-1.3.0" sources."es-module-lexer-1.4.1" @@ -99132,18 +98697,17 @@ in sources."eventemitter3-4.0.7" sources."events-3.3.0" sources."execa-5.1.1" - (sources."express-4.18.2" // { + (sources."express-4.18.3" // { dependencies = [ sources."safe-buffer-5.2.1" ]; }) sources."fast-deep-equal-3.1.3" - sources."fast-diff-1.3.0" sources."fast-json-stable-stringify-2.1.0" sources."faye-websocket-0.11.4" sources."fill-range-7.0.1" sources."finalhandler-1.2.0" - sources."follow-redirects-1.15.5" + sources."follow-redirects-1.15.6" (sources."foreground-child-3.1.1" // { dependencies = [ sources."signal-exit-4.1.0" @@ -99162,22 +98726,21 @@ in sources."handle-thing-2.0.1" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.2" - sources."has-proto-1.0.1" + sources."has-proto-1.0.3" sources."has-symbols-1.0.3" - sources."hasown-2.0.1" + sources."hasown-2.0.2" (sources."hpack.js-2.1.6" // { dependencies = [ sources."readable-stream-2.3.8" ]; }) - sources."html-entities-2.4.0" + sources."html-entities-2.5.2" sources."http-deceiver-1.2.7" sources."http-errors-2.0.0" sources."http-parser-js-0.5.8" sources."http-proxy-1.18.1" sources."http-proxy-middleware-2.0.6" sources."human-signals-2.1.0" - sources."hyperdyperid-1.2.0" sources."iconv-lite-0.4.24" sources."inherits-2.0.4" sources."ipaddr.js-2.1.0" @@ -99196,16 +98759,13 @@ in sources."isexe-2.0.0" sources."jackspeak-2.3.6" sources."jest-worker-27.5.1" - sources."json-joy-11.28.0" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" sources."launch-editor-2.6.1" sources."loader-runner-4.3.0" - sources."lodash.clonedeep-4.5.0" - sources."lodash.isequal-4.5.0" sources."lru-cache-10.2.0" sources."media-typer-0.3.0" - sources."memfs-4.7.1" + sources."memfs-4.7.7" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" sources."methods-1.1.2" @@ -99231,7 +98791,7 @@ in sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."onetime-5.1.2" - sources."open-10.0.3" + sources."open-10.1.0" sources."p-retry-6.2.0" sources."parseurl-1.3.3" sources."path-key-3.1.1" @@ -99247,10 +98807,9 @@ in }) sources."punycode-2.3.1" sources."qs-6.11.0" - sources."quill-delta-5.1.0" sources."randombytes-2.1.0" sources."range-parser-1.2.1" - (sources."raw-body-2.5.1" // { + (sources."raw-body-2.5.2" // { dependencies = [ sources."bytes-3.1.2" ]; @@ -99262,7 +98821,6 @@ in sources."retry-0.13.1" sources."rimraf-5.0.5" sources."run-applescript-7.0.0" - sources."rxjs-7.8.1" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."schema-utils-4.2.0" @@ -99284,12 +98842,12 @@ in ]; }) sources."serve-static-1.15.0" - sources."set-function-length-1.2.1" + sources."set-function-length-1.2.2" sources."setprototypeof-1.2.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shell-quote-1.8.1" - sources."side-channel-1.0.5" + sources."side-channel-1.0.6" sources."signal-exit-3.0.7" sources."sockjs-0.3.24" sources."source-map-0.6.1" @@ -99324,7 +98882,7 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.27.1" + sources."terser-5.29.2" (sources."terser-webpack-plugin-5.3.10" // { dependencies = [ sources."ajv-6.12.6" @@ -99333,7 +98891,6 @@ in sources."schema-utils-3.3.0" ]; }) - sources."thingies-1.16.0" sources."thunky-1.1.0" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" @@ -99348,9 +98905,9 @@ in sources."utils-merge-1.0.1" sources."uuid-8.3.2" sources."vary-1.1.2" - sources."watchpack-2.4.0" + sources."watchpack-2.4.1" sources."wbuf-1.7.3" - (sources."webpack-5.90.2" // { + (sources."webpack-5.90.3" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -99393,36 +98950,36 @@ in sha512 = "SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA=="; }; dependencies = [ - sources."@jridgewell/gen-mapping-0.3.3" + sources."@jridgewell/gen-mapping-0.3.5" sources."@jridgewell/resolve-uri-3.1.2" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" + sources."@jridgewell/set-array-1.2.1" + sources."@jridgewell/source-map-0.3.6" sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.22" + sources."@jridgewell/trace-mapping-0.3.25" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@sindresorhus/merge-streams-2.2.1" - sources."@types/eslint-8.56.2" + sources."@sindresorhus/merge-streams-2.3.0" + sources."@types/eslint-8.56.5" sources."@types/eslint-scope-3.7.7" sources."@types/estree-1.0.5" sources."@types/json-schema-7.0.15" - sources."@types/node-20.11.19" - sources."@webassemblyjs/ast-1.11.6" + sources."@types/node-20.11.29" + sources."@webassemblyjs/ast-1.12.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" + sources."@webassemblyjs/helper-buffer-1.12.1" sources."@webassemblyjs/helper-numbers-1.11.6" sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" + sources."@webassemblyjs/helper-wasm-section-1.12.1" sources."@webassemblyjs/ieee754-1.11.6" sources."@webassemblyjs/leb128-1.11.6" sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" + sources."@webassemblyjs/wasm-edit-1.12.1" + sources."@webassemblyjs/wasm-gen-1.12.1" + sources."@webassemblyjs/wasm-opt-1.12.1" + sources."@webassemblyjs/wasm-parser-1.12.1" + sources."@webassemblyjs/wast-printer-1.12.1" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.11.3" @@ -99433,11 +98990,11 @@ in sources."braces-3.0.2" sources."browserslist-4.23.0" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001587" + sources."caniuse-lite-1.0.30001599" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.673" - sources."enhanced-resolve-5.15.0" + sources."electron-to-chromium-1.4.710" + sources."enhanced-resolve-5.16.0" sources."es-module-lexer-1.4.1" sources."escalade-3.1.2" sources."eslint-scope-5.1.1" @@ -99495,7 +99052,7 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.27.1" + sources."terser-5.29.2" (sources."terser-webpack-plugin-5.3.10" // { dependencies = [ sources."ajv-6.12.6" @@ -99509,8 +99066,8 @@ in sources."unicorn-magic-0.1.0" sources."update-browserslist-db-1.0.13" sources."uri-js-4.4.1" - sources."watchpack-2.4.0" - (sources."webpack-5.90.2" // { + sources."watchpack-2.4.1" + (sources."webpack-5.90.3" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -99551,7 +99108,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -99703,7 +99260,7 @@ in sources."immediate-chunk-store-2.2.0" sources."inherits-2.0.4" sources."inquirer-8.2.6" - sources."ip-1.1.8" + sources."ip-1.1.9" sources."ip-address-9.0.5" sources."ip-set-2.1.0" sources."ipaddr.js-2.1.0" @@ -99853,7 +99410,7 @@ in ]; }) sources."smart-buffer-4.2.0" - sources."socks-2.8.0" + sources."socks-2.8.1" sources."speed-limiter-1.0.2" sources."speedometer-1.1.0" sources."split-1.0.1" @@ -99861,7 +99418,7 @@ in sources."stream-to-blob-2.0.1" sources."stream-to-blob-url-3.0.2" sources."stream-with-known-length-to-buffer-1.0.4" - sources."streamx-2.16.0" + sources."streamx-2.16.1" sources."string-width-4.2.3" sources."string2compact-1.3.2" sources."string_decoder-1.1.1" @@ -99941,14 +99498,14 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "3.28.3"; + version = "3.34.2"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-3.28.3.tgz"; - sha512 = "pLuvWA5W8FhjI/a7Mr5F491KOqNMYzyWVN7dmwr+52sPv2BFrfN1v6btmhHYotSblCH8yfs5DmuxwdKuVPMw9w=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-3.34.2.tgz"; + sha512 = "j580WXlOe0GtYdcREym7FLcaaZq9+RZEBuzOtKXx74KKUlEC8cglgf5WWa2C2OpEtJCcrAieEHsNXe7mhy9knA=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.3.1" - sources."@cloudflare/workers-types-4.20240208.0" + sources."@cloudflare/workers-types-4.20240314.0" sources."@cspotcode/source-map-support-0.8.1" sources."@esbuild-plugins/node-globals-polyfill-0.2.3" sources."@esbuild-plugins/node-modules-polyfill-0.2.2" @@ -99974,17 +99531,17 @@ in sources."@esbuild/win32-arm64-0.17.19" sources."@esbuild/win32-ia32-0.17.19" sources."@esbuild/win32-x64-0.17.19" - sources."@fastify/busboy-2.1.0" + sources."@fastify/busboy-2.1.1" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@types/node-20.11.19" + sources."@types/node-20.11.29" sources."@types/node-forge-1.3.11" sources."acorn-8.11.3" sources."acorn-walk-8.3.2" sources."anymatch-3.1.3" sources."as-table-1.0.55" - sources."binary-extensions-2.2.0" + sources."binary-extensions-2.3.0" sources."blake3-wasm-2.1.5" sources."braces-3.0.2" sources."bufferutil-4.0.8" @@ -100003,7 +99560,7 @@ in sources."get-source-2.0.12" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" - sources."hasown-2.0.1" + sources."hasown-2.0.2" sources."is-binary-path-2.1.0" sources."is-core-module-2.13.1" sources."is-extglob-2.1.1" @@ -100011,7 +99568,7 @@ in sources."is-number-7.0.0" sources."magic-string-0.25.9" sources."mime-3.0.0" - sources."miniflare-3.20240129.3" + sources."miniflare-3.20240304.2" sources."ms-2.1.2" sources."mustache-4.2.0" sources."nanoid-3.3.7" @@ -100039,7 +99596,7 @@ in sources."undici-5.28.3" sources."undici-types-5.26.5" sources."utf-8-validate-6.0.3" - sources."workerd-1.20240129.0" + sources."workerd-1.20240304.0" sources."ws-8.16.0" sources."xxhash-wasm-1.0.2" sources."youch-3.3.3" @@ -100155,10 +99712,10 @@ in yarn = nodeEnv.buildNodePackage { name = "yarn"; packageName = "yarn"; - version = "1.22.21"; + version = "1.22.22"; src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz"; - sha512 = "ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg=="; + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.22.tgz"; + sha512 = "prL3kGtyG7o9Z9Sv8IPfBNrWTDmXB4Qbes8A9rEzt6wkJV8mUvoirjU0Mp3GGAU06Y0XQyA3/2/RQFVuK7MTfg=="; }; buildInputs = globalBuildInputs; meta = { diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index 514f8803fb14..8ff921934ff8 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -424,44 +424,45 @@ final: prev: { wrangler = prev.wrangler.override (oldAttrs: let + workerdVersion = (lib.findFirst (dep: dep.name == "workerd") null oldAttrs.dependencies).version; linuxWorkerd = { name = "_at_cloudflare_slash_workerd-linux-64"; packageName = "@cloudflare/workerd-linux-64"; # Should be same version as workerd - version = "1.20240129.0"; + version = workerdVersion; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20240129.0.tgz"; - sha512 = "sFV1uobHgDI+6CKBS/ZshQvOvajgwl6BtiYaH4PSFSpvXTmRx+A9bcug+6BnD+V4WgwxTiEO2iR97E1XuwDAVw=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-${workerdVersion}.tgz"; + sha512 = "G1BEzbw9TFIeMvc425F145IetC7fuH4KOkGhseLq9y/mt5PfDWkghwmXSK+q0BiMwm0XAobtzVlHcEr2u4WlRQ=="; }; }; linuxWorkerdArm = { name = "_at_cloudflare_slash_workerd-linux-arm64"; packageName = "@cloudflare/workerd-linux-arm64"; # Should be same version as workerd - version = "1.20240129.0"; + version = workerdVersion; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20240129.0.tgz"; - sha512 = "O7q7htHaFRp8PgTqNJx1/fYc3+LnvAo6kWWB9a14C5OWak6AAZk42PNpKPx+DXTmGvI+8S1+futBGUeJ8NPDXg=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-${workerdVersion}.tgz"; + sha512 = "LLk/d/y77TRu6QOG3CJUI2cD3Ff2lSg0ts6G83bsm9ZK+WKObWFFSPBy9l81m3EnlKFh7RZCzxN4J10kuDaO8w=="; }; }; darwinWorkerd = { name = "_at_cloudflare_slash_workerd-darwin-64"; packageName = "@cloudflare/workerd-darwin-64"; # Should be same version as workerd - version = "1.20240129.0"; + version = workerdVersion; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20240129.0.tgz"; - sha512 = "DfVVB5IsQLVcWPJwV019vY3nEtU88c2Qu2ST5SQxqcGivZ52imagLRK0RHCIP8PK4piSiq90qUC6ybppUsw8eg=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-${workerdVersion}.tgz"; + sha512 = "rfHlvsWzkqEEQNvm14AOE/BYHYzB9wxQHCaZZEgwOuTl5KpDcs9La0N0LaDTR78ESumIWOcifVmko2VTrZb7TQ=="; }; }; darwinWorkerdArm = { name = "_at_cloudflare_slash_workerd-darwin-arm64"; packageName = "@cloudflare/workerd-darwin-arm64"; # Should be same version as workerd - version = "1.20240129.0"; + version = workerdVersion; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20240129.0.tgz"; - sha512 = "t0q8ABkmumG1zRM/MZ/vIv/Ysx0vTAXnQAPy/JW5aeQi/tqrypXkO9/NhPc0jbF/g/hIPrWEqpDgEp3CB7Da7Q=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-${workerdVersion}.tgz"; + sha512 = "IXGOxHsPdRYfAzcY6IroI1PDvx3hhXf18qFCloHp8Iw5bzLgq/PTjcp10Z/2xedZ2hVlfpHy1eEptsTmi9YeNw=="; }; }; From 4d1ca28f49b891874abe329460e3c24f606cc2bf Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 19 Mar 2024 18:11:50 +0900 Subject: [PATCH 13/25] joplin: fix build --- pkgs/development/node-packages/overrides.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index 8ff921934ff8..a36ce3f06144 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -112,7 +112,7 @@ final: prev: { meta = oldAttrs.meta // { license = lib.licenses.unfree; }; }); - joplin = prev.joplin.override { + joplin = prev.joplin.override (oldAttrs:{ nativeBuildInputs = [ pkgs.pkg-config ] ++ lib.optionals stdenv.isDarwin [ @@ -134,7 +134,21 @@ final: prev: { darwin.apple_sdk.frameworks.AppKit darwin.apple_sdk.frameworks.Security ]; - }; + + # add newer node-addon-api to build sharp + # https://github.com/lovell/sharp/issues/3920 + dependencies = [ + { + name = "node-addon-api"; + packageName = "node-addon-api"; + version = "7.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz"; + sha512 = "mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g=="; + }; + } + ] ++ oldAttrs.dependencies; + }); jsonplaceholder = prev.jsonplaceholder.override { buildInputs = [ nodejs ]; From e271bd71e9789ef2ea1a94d437502bc68403a0ce Mon Sep 17 00:00:00 2001 From: ckie Date: Tue, 19 Mar 2024 21:30:57 +0200 Subject: [PATCH 14/25] matrix-hookshot: avoid runtime dependency on rustc Nix previously would see a reference to rustc's store path in .rustc_info.json and proceed to register it as a runtime dependecy. Delete it so it doesn't. --- pkgs/servers/matrix-synapse/matrix-hookshot/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/matrix-synapse/matrix-hookshot/default.nix b/pkgs/servers/matrix-synapse/matrix-hookshot/default.nix index f784036075c8..f8bdd9d6e9b8 100644 --- a/pkgs/servers/matrix-synapse/matrix-hookshot/default.nix +++ b/pkgs/servers/matrix-synapse/matrix-hookshot/default.nix @@ -72,6 +72,11 @@ mkYarnPackage rec { "$out/libexec/matrix-hookshot/deps/matrix-hookshot/lib/App/BridgeApp.js" ''; + postFixup = '' + # Scrub reference to rustc + rm $out/libexec/matrix-hookshot/deps/matrix-hookshot/target/.rustc_info.json + ''; + doDist = false; meta = with lib; { From 8ae54d36f093b9e279a73d0bddffaa8c22eba39e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 Mar 2024 21:54:59 +0100 Subject: [PATCH 15/25] python311Packages.tencentcloud-sdk-python: 3.0.1111 -> 3.0.1112 Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1111...3.0.1112 Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1112/CHANGELOG.md --- .../python-modules/tencentcloud-sdk-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 19cd3956aa5d..24a7848417f6 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1111"; + version = "3.0.1112"; pyproject = true; disabled = pythonOlder "3.9"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; rev = "refs/tags/${version}"; - hash = "sha256-CM544yVoUH4nHE6UwPfVxZE2+P+wHLBtKMM9QWpda9A="; + hash = "sha256-icfRs0+ljMx7YoViRKPyPK8Kp8Zx3dp0aiKxw8yYrUs="; }; nativeBuildInputs = [ From 56b5634a90d60f0e2faaf9f7fdad8fd114415937 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 19 Mar 2024 22:01:38 +0100 Subject: [PATCH 16/25] doc: manual fixup after migration --- lib/attrsets.nix | 83 +++++++----------------------------------------- 1 file changed, 12 insertions(+), 71 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 9cdf0f75098a..ab5900eed34e 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -63,11 +63,8 @@ rec { ::: */ attrByPath = - # A list of strings representing the attribute path to return from `set` attrPath: - # Default value if `attrPath` does not resolve to an existing value default: - # The nested attribute set to select values from set: let lenAttrPath = length attrPath; @@ -134,9 +131,7 @@ rec { ::: */ hasAttrByPath = - # A list of strings representing the attribute path to check from `set` attrPath: - # The nested attribute set to check e: let lenAttrPath = length attrPath; @@ -205,9 +200,7 @@ rec { ::: */ longestValidPathPrefix = - # A list of strings representing the longest possible path that may be returned. attrPath: - # The nested attribute set to check. v: let lenAttrPath = length attrPath; @@ -270,9 +263,7 @@ rec { ::: */ setAttrByPath = - # A list of strings representing the attribute path to set attrPath: - # The value to set at the location described by `attrPath` value: let len = length attrPath; @@ -284,15 +275,15 @@ rec { /** Like `attrByPath`, but without a default value. If it doesn't find the - path it will throw an error. + path it will throw an error. - Nix has an [attribute selection operator](https://nixos.org/manual/nix/stable/language/operators#attribute-selection) which is sufficient for such queries, as long as the number of attributes is static. For example: + Nix has an [attribute selection operator](https://nixos.org/manual/nix/stable/language/operators#attribute-selection) which is sufficient for such queries, as long as the number of attributes is static. For example: ```nix - x.a.b == getAttrByPath ["a" "b"] x - # and - x.${f p}."example.com" == getAttrByPath [ (f p) "example.com" ] x - ``` + x.a.b == getAttrByPath ["a" "b"] x + # and + x.${f p}."example.com" == getAttrByPath [ (f p) "example.com" ] x + ``` # Inputs @@ -326,9 +317,7 @@ rec { ::: */ getAttrFromPath = - # A list of strings representing the attribute path to get from `set` attrPath: - # The nested attribute set to find the value in. set: attrByPath attrPath (abort ("cannot find attribute `" + concatStringsSep "." attrPath + "'")) set; @@ -522,9 +511,7 @@ rec { ::: */ attrVals = - # The list of attributes to fetch from `set`. Each attribute name must exist on the attrbitue set nameList: - # The set to get attribute values from set: map (x: set.${x}) nameList; @@ -585,9 +572,7 @@ rec { ::: */ getAttrs = - # A list of attribute names to get out of `set` names: - # The set to get the named attributes from attrs: genAttrs names (name: attrs.${name}); /** @@ -647,9 +632,7 @@ rec { ::: */ filterAttrs = - # Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. pred: - # The attribute set to filter set: listToAttrs (concatMap (name: let v = set.${name}; in if pred name v then [(nameValuePair name v)] else []) (attrNames set)); @@ -687,9 +670,7 @@ rec { ::: */ filterAttrsRecursive = - # Predicate taking an attribute name and an attribute value, which returns `true` to include the attribute, or `false` to exclude the attribute. pred: - # The attribute set to filter set: listToAttrs ( concatMap (name: @@ -709,9 +690,9 @@ rec { The result of the callback function is often called `acc` for accumulator. It is passed between callbacks from left to right and the final `acc` is the return value of `foldlAttrs`. Attention: - There is a completely different function - `lib.foldAttrs` - which has nothing to do with this function, despite the similar name. + + There is a completely different function `lib.foldAttrs` + which has nothing to do with this function, despite the similar name. # Inputs @@ -824,11 +805,8 @@ rec { ::: */ foldAttrs = - # A function, given a value and a collector combines the two. op: - # The starting value. nul: - # A list of attribute sets to fold together by key. list_of_attrs: foldr (n: a: foldr (name: o: @@ -839,7 +817,7 @@ rec { /** Recursively collect sets that verify a given predicate named `pred` - from the set `attrs`. The recursion is stopped when the predicate is + from the set `attrs`. The recursion is stopped when the predicate is verified. @@ -875,10 +853,8 @@ rec { ::: */ collect = - # Given an attribute's value, determine if recursion should stop. - pred: - # The attribute set to recursively collect. - attrs: + pred: + attrs: if pred attrs then [ attrs ] else if isAttrs attrs then @@ -919,7 +895,6 @@ rec { ::: */ cartesianProductOfSets = - # Attribute set with attributes that are lists of values attrsOfLists: foldl' (listOfAttrs: attrName: concatMap (attrs: @@ -960,9 +935,7 @@ rec { ::: */ nameValuePair = - # Attribute name name: - # Attribute value value: { inherit name value; }; @@ -1026,9 +999,7 @@ rec { ::: */ mapAttrs' = - # A function, given an attribute's name and value, returns a new `nameValuePair`. f: - # Attribute set to map over. set: listToAttrs (map (attr: f attr set.${attr}) (attrNames set)); @@ -1037,7 +1008,6 @@ rec { Call a function for each attribute in the given set and return the result in a list. - # Inputs `f` @@ -1067,9 +1037,7 @@ rec { ::: */ mapAttrsToList = - # A function, given an attribute's name and value, returns a new value. f: - # Attribute set to map over. attrs: map (name: f name attrs.${name}) (attrNames attrs); @@ -1139,9 +1107,7 @@ rec { ``` */ mapAttrsRecursive = - # A function that, given an attribute path as a list of strings and the corresponding attribute value, returns a new value. f: - # Attribute set to recursively map over. set: mapAttrsRecursiveCond (as: true) f set; @@ -1170,12 +1136,8 @@ rec { ``` */ mapAttrsRecursiveCond = - # A function that, given the attribute set the recursion is currently at, determines if to recurse deeper into that attribute set. cond: - # A function that, given an attribute path as a list of strings and the corresponding attribute value, returns a new value. - # The attribute value is either an attribute set for which `cond` returns false, or something other than an attribute set. f: - # Attribute set to recursively map over. set: let recurse = path: @@ -1221,9 +1183,7 @@ rec { ::: */ genAttrs = - # Names of values in the resulting attribute set. names: - # A function, given the name of the attribute, returns the attribute's value. f: listToAttrs (map (n: nameValuePair n (f n)) names); @@ -1260,7 +1220,6 @@ rec { ::: */ isDerivation = - # Value to check. value: value.type or null == "derivation"; /** @@ -1280,7 +1239,6 @@ rec { ``` */ toDerivation = - # A store path to convert to a derivation. path: let path' = builtins.storePath path; @@ -1330,9 +1288,7 @@ rec { ::: */ optionalAttrs = - # Condition under which the `as` attribute set is returned. cond: - # The attribute set to return if `cond` is `true`. as: if cond then as else {}; @@ -1374,11 +1330,8 @@ rec { ::: */ zipAttrsWithNames = - # List of attribute names to zip. names: - # A function, accepts an attribute name, all the values, and returns a combined value. f: - # List of values from the list of attribute sets. sets: listToAttrs (map (name: { inherit name; @@ -1551,11 +1504,8 @@ rec { ::: */ recursiveUpdateUntil = - # Predicate, taking the path to the current attribute as a list of strings for attribute names, and the two values at that path from the original arguments. pred: - # Left attribute set of the merge. lhs: - # Right attribute set of the merge. rhs: let f = attrPath: zipAttrsWith (n: values: @@ -1613,9 +1563,7 @@ rec { ::: */ recursiveUpdate = - # Left attribute set of the merge. lhs: - # Right attribute set of the merge. rhs: recursiveUpdateUntil (path: lhs: rhs: !(isAttrs lhs && isAttrs rhs)) lhs rhs; @@ -1654,9 +1602,7 @@ rec { ::: */ matchAttrs = - # Attribute set structure to match pattern: - # Attribute set to check attrs: assert isAttrs pattern; all @@ -1712,9 +1658,7 @@ rec { ::: */ overrideExisting = - # Original attribute set old: - # Attribute set with attributes to override in `old`. new: mapAttrs (name: value: new.${name} or value) old; @@ -1752,7 +1696,6 @@ rec { ::: */ showAttrPath = - # Attribute path to render to a string path: if path == [] then "" else concatMapStringsSep "." escapeNixIdentifier path; @@ -1937,7 +1880,6 @@ rec { ::: */ recurseIntoAttrs = - # An attribute set to scan for derivations. attrs: attrs // { recurseForDerivations = true; }; @@ -1958,7 +1900,6 @@ rec { ``` */ dontRecurseIntoAttrs = - # An attribute set to not scan for derivations. attrs: attrs // { recurseForDerivations = false; }; From af9b4a54770629aa241b0a8f823d5e98d167605c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 19 Mar 2024 23:13:44 +0100 Subject: [PATCH 17/25] rye: 0.29.0 -> 0.30.0 Diff: https://github.com/mitsuhiko/rye/compare/refs/tags/0.29.0...0.30.0 Changelog: https://github.com/mitsuhiko/rye/releases/tag/0.30.0 --- pkgs/development/tools/rye/Cargo.lock | 9 ++++++++- pkgs/development/tools/rye/default.nix | 5 +++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rye/Cargo.lock b/pkgs/development/tools/rye/Cargo.lock index 9aa4ff424bb5..763afd5d39d3 100644 --- a/pkgs/development/tools/rye/Cargo.lock +++ b/pkgs/development/tools/rye/Cargo.lock @@ -630,6 +630,12 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + [[package]] name = "either" version = "1.9.0" @@ -1795,7 +1801,7 @@ dependencies = [ [[package]] name = "rye" -version = "0.29.0" +version = "0.30.0" dependencies = [ "age", "anyhow", @@ -1808,6 +1814,7 @@ dependencies = [ "curl", "decompress", "dialoguer", + "dotenvy", "flate2", "fslock", "git-testament", diff --git a/pkgs/development/tools/rye/default.nix b/pkgs/development/tools/rye/default.nix index b69888447c7b..a5f14816dbff 100644 --- a/pkgs/development/tools/rye/default.nix +++ b/pkgs/development/tools/rye/default.nix @@ -12,13 +12,13 @@ rustPlatform.buildRustPackage rec { pname = "rye"; - version = "0.29.0"; + version = "0.30.0"; src = fetchFromGitHub { owner = "mitsuhiko"; repo = "rye"; rev = "refs/tags/${version}"; - hash = "sha256-rNXzhJazOi815dhqviqtfSTM60Y/5ncKBVn2YhqcKJM="; + hash = "sha256-a4u8dBqp9zs4RW7tXN8HjGzvjYFyDUJzEFMxMoGhu4E="; }; cargoLock = { @@ -67,6 +67,7 @@ rustPlatform.buildRustPackage rec { "--skip=test_config_incompatible_format_and_show_path" "--skip=test_config_save_missing_folder" "--skip=test_config_show_path" + "--skip=test_dotenv" "--skip=test_empty_sync" "--skip=test_fetch" "--skip=test_init_default" From 70b9fe53bd45832cc5363b858a272dc146378ad1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Mar 2024 22:36:35 +0000 Subject: [PATCH 18/25] go-toml: 2.1.1 -> 2.2.0 --- pkgs/development/tools/go-toml/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/go-toml/default.nix b/pkgs/development/tools/go-toml/default.nix index b9907280e387..fa36ca7eee1a 100644 --- a/pkgs/development/tools/go-toml/default.nix +++ b/pkgs/development/tools/go-toml/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "go-toml"; - version = "2.1.1"; + version = "2.2.0"; src = fetchFromGitHub { owner = "pelletier"; repo = pname; rev = "v${version}"; - sha256 = "sha256-SnSdVBIIir7QSexk//ozpxnbNr92KyWP2sSBg87jGcw="; + sha256 = "sha256-oXFZoGAlHRGGqbjjyI0pz1fIg8h6GN0SKOyRQyS4UA0="; }; - vendorHash = "sha256-XOcCsb3zUChiYLTfOCbRQF71E2khzSt/ApFI8NAS13U="; + vendorHash = "sha256-4t/ft3XTfc7yrsFVMSfjdCur8QULho3NI2ym6gqjexI="; excludedPackages = [ "cmd/gotoml-test-decoder" "cmd/tomltestgen" ]; From 383b192d529da94b9fe0d62dd76b9ad2f7845920 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Mar 2024 22:53:08 +0000 Subject: [PATCH 19/25] mokutil: 0.7.1 -> 0.7.2 --- pkgs/tools/security/mokutil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/mokutil/default.nix b/pkgs/tools/security/mokutil/default.nix index 8b36e5c1c631..cd36b8eaa1e9 100644 --- a/pkgs/tools/security/mokutil/default.nix +++ b/pkgs/tools/security/mokutil/default.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "mokutil"; - version = "0.7.1"; + version = "0.7.2"; src = fetchFromGitHub { owner = "lcp"; repo = pname; rev = version; - sha256 = "sha256-vxSYwsQ+xjW7a7gZhvgX4lzA7my6BZCYGwE1bLceTQA="; + sha256 = "sha256-DO3S1O0AKoI8gssnUyBTRj5lDNs6hhisc/5dTIqmbzM="; }; nativeBuildInputs = [ From 846bf21967a372a24963697ed01eb643469101c6 Mon Sep 17 00:00:00 2001 From: Radik Islamov Date: Wed, 20 Mar 2024 05:08:43 +0500 Subject: [PATCH 20/25] python3Packages.bpemb: init at 0.3.5 (#295263) * python311Packages.bpemb: init at 0.3.2 * python311Packages.bpemb: 0.3.2 -> 0.3.5 --- .../python-modules/bpemb/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/python-modules/bpemb/default.nix diff --git a/pkgs/development/python-modules/bpemb/default.nix b/pkgs/development/python-modules/bpemb/default.nix new file mode 100644 index 000000000000..ab6d5357e53b --- /dev/null +++ b/pkgs/development/python-modules/bpemb/default.nix @@ -0,0 +1,51 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub + +, setuptools + +, gensim +, numpy +, requests +, sentencepiece +, tqdm +}: + +buildPythonPackage { + pname = "bpemb"; + version = "0.3.5"; + pyproject = true; + + src = fetchFromGitHub { + owner = "bheinzerling"; + repo = "bpemb"; + rev = "ec85774945ca76dd93c1d9b4af2090e80c5779dc"; + hash = "sha256-nVaMXb5TBhO/vWE8AYAA3P9dSPI8O+rmzFvbEj8VEkE="; + }; + + build-system = [ + setuptools + ]; + + dependencies = [ + gensim + numpy + requests + sentencepiece + tqdm + ]; + + # need network connection for tests + doCheck = false; + + pythonImportsCheck = [ + "bpemb" + ]; + + meta = with lib; { + description = "Byte-pair embeddings in 275 languages"; + homepage = "https://github.com/bheinzerling/bpemb"; + license = licenses.mit; + maintainers = with maintainers; [ vizid ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1a37a8282e82..6e54f1468353 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1686,6 +1686,8 @@ self: super: with self; { boxx = callPackage ../development/python-modules/boxx { }; + bpemb = callPackage ../development/python-modules/bpemb { }; + bpycv = callPackage ../development/python-modules/bpycv {}; bpython = callPackage ../development/python-modules/bpython { }; From d784fc138dd3441e13bcf81a8ed710643ea80040 Mon Sep 17 00:00:00 2001 From: Daniel Sidhion Date: Tue, 19 Mar 2024 17:56:06 -0700 Subject: [PATCH 21/25] Apply suggestions from code review --- lib/attrsets.nix | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index ab5900eed34e..de5968b95348 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -579,6 +579,16 @@ rec { Collect each attribute named `attr` from a list of attribute sets. Sets that don't contain the named attribute are ignored. + # Inputs + + `attr` + + : The attribute name to get out of the sets. + + `list` + + : The list of attribute sets to go through + # Type ``` @@ -943,6 +953,16 @@ rec { /** Apply a function to each element in an attribute set, creating a new attribute set. + # Inputs + + `f` + + : A function that takes an attribute name and its value, and returns the new value for the attribute. + + `attrset` + + : The attribute set to iterate through. + # Type ``` @@ -1061,6 +1081,12 @@ rec { This is because the `listToAttrs` removes duplicate names and doesn't preserve the order of the list. ::: + # Inputs + + `set` + + : The attribute set to deconstruct. + # Type ``` @@ -1742,6 +1768,12 @@ rec { Get a package's `bin` output. If the output does not exist, fallback to `.out` and then to the default. + # Inputs + + `pkg` + + : The package whose `bin` output will be retrieved. + # Type ``` @@ -1766,6 +1798,12 @@ rec { Get a package's `lib` output. If the output does not exist, fallback to `.out` and then to the default. + # Inputs + + `pkg` + + : The package whose `lib` output will be retrieved. + # Type ``` @@ -1790,6 +1828,12 @@ rec { Get a package's `dev` output. If the output does not exist, fallback to `.out` and then to the default. + # Inputs + + `pkg` + + : The package whose `dev` output will be retrieved. + # Type ``` @@ -1814,6 +1858,12 @@ rec { Get a package's `man` output. If the output does not exist, fallback to `.out` and then to the default. + # Inputs + + `pkg` + + : The package whose `man` output will be retrieved. + # Type ``` @@ -1836,6 +1886,12 @@ rec { /** Pick the outputs of packages to place in `buildInputs` + # Inputs + + `pkgs` + + : List of packages. + # Type ``` From c51da486f36bee4a1162fef930888d3a53adf3a0 Mon Sep 17 00:00:00 2001 From: YvesStraten Date: Wed, 20 Mar 2024 09:19:39 +0800 Subject: [PATCH 22/25] alt-tab-macos: 6.61.0 -> 6.66.0 --- pkgs/by-name/al/alt-tab-macos/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/al/alt-tab-macos/package.nix b/pkgs/by-name/al/alt-tab-macos/package.nix index d63dd91c05db..98b2d3da2d25 100644 --- a/pkgs/by-name/al/alt-tab-macos/package.nix +++ b/pkgs/by-name/al/alt-tab-macos/package.nix @@ -6,11 +6,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "alt-tab-macos"; - version = "6.61.0"; + version = "6.66.0"; src = fetchurl { url = "https://github.com/lwouis/alt-tab-macos/releases/download/v${finalAttrs.version}/AltTab-${finalAttrs.version}.zip"; - hash = "sha256-crmeYVeSmu5avNSd3dCbEeGnuqonh1HC5NnEOz8OB2U="; + hash = "sha256-mQ4tS9htL+X4lXqSe3L+mnwgVnHb3Zxyz6dgzmYHY9w="; }; sourceRoot = "."; From a29da597b428101c8fd479489c3d0465fbaa8cbc Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Wed, 20 Mar 2024 09:48:42 +0800 Subject: [PATCH 23/25] mongosh: 2.2.0 -> 2.2.1 --- .../tools/mongosh/package-lock.json | 335 +++++++++--------- pkgs/development/tools/mongosh/source.json | 8 +- 2 files changed, 172 insertions(+), 171 deletions(-) diff --git a/pkgs/development/tools/mongosh/package-lock.json b/pkgs/development/tools/mongosh/package-lock.json index 572c3dbff7d5..f0fae4c8e245 100644 --- a/pkgs/development/tools/mongosh/package-lock.json +++ b/pkgs/development/tools/mongosh/package-lock.json @@ -1,15 +1,15 @@ { "name": "mongosh", - "version": "2.2.0", + "version": "2.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mongosh", - "version": "2.2.0", + "version": "2.2.1", "license": "Apache-2.0", "dependencies": { - "@mongosh/cli-repl": "2.2.0" + "@mongosh/cli-repl": "2.2.1" }, "bin": { "mongosh": "bin/mongosh.js" @@ -670,39 +670,39 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.24.2", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.24.1.tgz", + "integrity": "sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.0", - "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.24.0.tgz", - "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.24.1.tgz", + "integrity": "sha512-F82udohVyIgGAY2VVj/g34TpFUG606rumIHjTfVbssPg2zTR7PuuEpZcX8JA6sgBfIYmJrFtWgPvHQuJamVqZQ==", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.0", - "@babel/parser": "^7.24.0", + "@babel/helpers": "^7.24.1", + "@babel/parser": "^7.24.1", "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", + "@babel/traverse": "^7.24.1", "@babel/types": "^7.24.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", @@ -723,13 +723,13 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.24.1.tgz", + "integrity": "sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==", "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -791,11 +791,11 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.24.1.tgz", + "integrity": "sha512-HfEWzysMyOa7xI5uQHc/OcZf67/jc+xe/RZlznWQHhbb8Pg1SkRdbK4yEi61aY8wxQA7PkSfoojtLQP/Kpe3og==", "dependencies": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -850,9 +850,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", "engines": { "node": ">=6.9.0" } @@ -874,12 +874,12 @@ } }, "node_modules/@babel/helpers": { - "version": "7.24.0", - "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.24.0.tgz", - "integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.24.1.tgz", + "integrity": "sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==", "dependencies": { "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", + "@babel/traverse": "^7.24.1", "@babel/types": "^7.24.0" }, "engines": { @@ -887,22 +887,23 @@ } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.24.2", + "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.24.0", - "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.24.0.tgz", - "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.24.1.tgz", + "integrity": "sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==", "bin": { "parser": "bin/babel-parser.js" }, @@ -911,11 +912,11 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", - "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -925,11 +926,11 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", - "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -939,11 +940,11 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", - "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -966,17 +967,17 @@ } }, "node_modules/@babel/traverse": { - "version": "7.24.0", - "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.24.0.tgz", - "integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==", + "version": "7.24.1", + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.0", + "@babel/parser": "^7.24.1", "@babel/types": "^7.24.0", "debug": "^4.3.1", "globals": "^11.1.0" @@ -1167,12 +1168,12 @@ } }, "node_modules/@mongosh/arg-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/arg-parser/-/arg-parser-2.2.0.tgz", - "integrity": "sha512-PAgpZJG8g2PRv79PHdsdODzX7+rKlsCqNJYcPseUbYydRzHH5qSVf1LGX/69eqEmwDBC7cNZ3iGNO83vnl8PIg==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/arg-parser/-/arg-parser-2.2.1.tgz", + "integrity": "sha512-qz/RDf0go1irs/c/B5ZjN1OwPNplm8cQJU8eB037NVg0jCuDn/V+ERw3cSkinYdN1iZgLDtE/l3rgmEvkxz9Yg==", "dependencies": { - "@mongosh/errors": "2.2.0", - "@mongosh/i18n": "2.2.0", + "@mongosh/errors": "2.2.1", + "@mongosh/i18n": "2.2.1", "mongodb-connection-string-url": "^3.0.0" }, "engines": { @@ -1180,9 +1181,9 @@ } }, "node_modules/@mongosh/async-rewriter2": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/async-rewriter2/-/async-rewriter2-2.2.0.tgz", - "integrity": "sha512-4f+FXDbeHusbpss4M2sAao8i/qyJEbqP7YZbEqcDMtuogQKIpy+8KAjG3VQNR+qzgCDYh1E0INCyibIOIlrkkw==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/async-rewriter2/-/async-rewriter2-2.2.1.tgz", + "integrity": "sha512-xlSoweQUlX5nwW2FTOssQPpoJGZX1gZhfkaZ8qoanUdUMGDN+FfwjhUxMf8vUlOP8s899PUqDktCfc4UYo31mQ==", "dependencies": { "@babel/core": "^7.22.8", "@babel/plugin-transform-destructuring": "^7.22.5", @@ -1199,12 +1200,12 @@ } }, "node_modules/@mongosh/autocomplete": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/autocomplete/-/autocomplete-2.2.0.tgz", - "integrity": "sha512-jbiXkq2ZYeNnQS31QFiNpUvfJtBDu0wyli7KLcu+BUG0JIK68z9zgsQzHxzDlY9J+dR/PUJ1ueiJQP5Sp9q3lA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/autocomplete/-/autocomplete-2.2.1.tgz", + "integrity": "sha512-M02TfYQvIXy7HWWXT36aEvZ/LfkurET4F1M7y4J9aVb5GL6j3pkSmubOjJNzwkt9vEIJlHFlJFQfPDgq5DWFUA==", "dependencies": { "@mongodb-js/mongodb-constants": "^0.8.10", - "@mongosh/shell-api": "2.2.0", + "@mongosh/shell-api": "2.2.1", "semver": "^7.5.4" }, "engines": { @@ -1212,25 +1213,25 @@ } }, "node_modules/@mongosh/cli-repl": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/cli-repl/-/cli-repl-2.2.0.tgz", - "integrity": "sha512-hnw4tYReRYrOrryrZXjNYjn2yAnqMvrgGj8j/xLjbONJF60qq5l0ZF5RLjP8Qpst8fyIP5YhI+OSID7KFK8/iA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/cli-repl/-/cli-repl-2.2.1.tgz", + "integrity": "sha512-KrnRS5IzdIvWG46n274Ay2c9ZhiMJqJryExNjs00H56VjepGq2HY7hop3U9vY31eQ/s+xLjzChR9qNJ+2E9WwA==", "dependencies": { - "@mongosh/arg-parser": "2.2.0", - "@mongosh/autocomplete": "2.2.0", - "@mongosh/editor": "2.2.0", - "@mongosh/errors": "2.2.0", - "@mongosh/history": "2.2.0", - "@mongosh/i18n": "2.2.0", - "@mongosh/import-node-fetch": "2.2.0", - "@mongosh/js-multiline-to-singleline": "2.2.0", - "@mongosh/logging": "2.2.0", - "@mongosh/service-provider-core": "2.2.0", - "@mongosh/service-provider-server": "2.2.0", - "@mongosh/shell-api": "2.2.0", - "@mongosh/shell-evaluator": "2.2.0", - "@mongosh/snippet-manager": "2.2.0", - "@mongosh/types": "2.2.0", + "@mongosh/arg-parser": "2.2.1", + "@mongosh/autocomplete": "2.2.1", + "@mongosh/editor": "2.2.1", + "@mongosh/errors": "2.2.1", + "@mongosh/history": "2.2.1", + "@mongosh/i18n": "2.2.1", + "@mongosh/import-node-fetch": "2.2.1", + "@mongosh/js-multiline-to-singleline": "2.2.1", + "@mongosh/logging": "2.2.1", + "@mongosh/service-provider-core": "2.2.1", + "@mongosh/service-provider-server": "2.2.1", + "@mongosh/shell-api": "2.2.1", + "@mongosh/shell-evaluator": "2.2.1", + "@mongosh/snippet-manager": "2.2.1", + "@mongosh/types": "2.2.1", "@segment/analytics-node": "^1.3.0", "ansi-escape-sequences": "^5.1.2", "askcharacter": "^1.0.0", @@ -1261,15 +1262,15 @@ } }, "node_modules/@mongosh/editor": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/editor/-/editor-2.2.0.tgz", - "integrity": "sha512-ffjObGg7N2R6JnJDc8lN89IlWVlv8X18pMLwiGbBID4nAyrY+QF/jzie50tqIXx4fenNuk3be610+bi8geddZA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/editor/-/editor-2.2.1.tgz", + "integrity": "sha512-z0nxSIVvCiR+kG2md24diMNou/9NBQvhn5334OeGyNk6y3/EEp52VN9Grmk9HL70d1tfr0A8F7c3kUpwJ6Q3XQ==", "dependencies": { - "@mongosh/js-multiline-to-singleline": "2.2.0", - "@mongosh/service-provider-core": "2.2.0", - "@mongosh/shell-api": "2.2.0", - "@mongosh/shell-evaluator": "2.2.0", - "@mongosh/types": "2.2.0", + "@mongosh/js-multiline-to-singleline": "2.2.1", + "@mongosh/service-provider-core": "2.2.1", + "@mongosh/shell-api": "2.2.1", + "@mongosh/shell-evaluator": "2.2.1", + "@mongosh/types": "2.2.1", "js-beautify": "^1.14.0" }, "engines": { @@ -1277,17 +1278,17 @@ } }, "node_modules/@mongosh/errors": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/errors/-/errors-2.2.0.tgz", - "integrity": "sha512-ba4qrge333fj5h4dpHG+zuBBSNK5bR0821uxC3/BEOUWkOLaOI666bNzbS2CgLjlSL/jqjdL9mT+aFdHY7Borw==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/errors/-/errors-2.2.1.tgz", + "integrity": "sha512-pwBI8Bv1KWYUSBoY2gh48dzvabCH8WlWYfo3Kzci7DPVK1vOccZpzr4PZony6ajvJ0KUswGGSaRFVdS54lO9QA==", "engines": { "node": ">=14.15.1" } }, "node_modules/@mongosh/history": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/history/-/history-2.2.0.tgz", - "integrity": "sha512-y5prhR0TVb0sgCpoAsjaPORg1e1qiDK8ssmHfi6KiYTnDMJ7PP4TXEMQc4AJTQlBDUyK6zpJYIxJKU9FQSLuJw==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/history/-/history-2.2.1.tgz", + "integrity": "sha512-AfqtzjrfvJl0EwM3co4fTYGs12E76WUOfJbRejaBI1aLZZ7h36cjQjOG0bAckEuPYRw0sygkql5X0DLjZHDB/A==", "dependencies": { "mongodb-connection-string-url": "^3.0.0", "mongodb-redact": "^0.2.2" @@ -1297,11 +1298,11 @@ } }, "node_modules/@mongosh/i18n": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/i18n/-/i18n-2.2.0.tgz", - "integrity": "sha512-sQ+t17PRrgdMl7dFwWXeyqjYQO4AYT7Mt/tIqqtWkfF7LyCb4FE04/UF5CX3PLUQLWOjXL5rl6jePSiZ97skNw==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/i18n/-/i18n-2.2.1.tgz", + "integrity": "sha512-ZbWV4Sykz4WIsLLGq9MfKR5baNXo5caM2pdBFVF6fwJMOcR87meBFcQ3SkbI7ZKezrMaQi/o9l6o6amI0vr2Rg==", "dependencies": { - "@mongosh/errors": "2.2.0", + "@mongosh/errors": "2.2.1", "mustache": "^4.0.0" }, "engines": { @@ -1309,9 +1310,9 @@ } }, "node_modules/@mongosh/import-node-fetch": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/import-node-fetch/-/import-node-fetch-2.2.0.tgz", - "integrity": "sha512-ZKXzawFdYqiBslTWCO106rNXBQEr/oKFx2JysTMy5BDzKJILfz06whgKIEAQOLVmW8IbHy+UYfKSFR4++tz++A==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/import-node-fetch/-/import-node-fetch-2.2.1.tgz", + "integrity": "sha512-rN9BBe3Z/zhnNjTc4cBYpt4oDa+JS7Th5grg/rYurb6Bs8f68Rzn1BTDACix7jzzHM6pVtptuk+b2QXIb2sAlw==", "dependencies": { "node-fetch": "^3.3.2" }, @@ -1320,9 +1321,9 @@ } }, "node_modules/@mongosh/js-multiline-to-singleline": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.2.0.tgz", - "integrity": "sha512-duicDJNk+dN3Qi7dS4aZmB8x3QQfOsfibw+9wyMVyJeIQGpSWkkijtu9a0F7+KKGQOkikQsHaRwWoL8ZvsJAqA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.2.1.tgz", + "integrity": "sha512-e3F8ukzBfJibVaT22lqNdTKMW2UnOTGwEGmAgJC6MLElNjo+zR2z+OBWdLbuOdkY5nsXFDYB2IWgPYbKFiWu/A==", "dependencies": { "@babel/core": "^7.16.12", "@babel/types": "^7.21.2" @@ -1332,14 +1333,14 @@ } }, "node_modules/@mongosh/logging": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/logging/-/logging-2.2.0.tgz", - "integrity": "sha512-Ibfplr9oklq7L/wJ39vfHamKhgFJCbRrMoFlstFOtoojW8hlcYknPfNp8k1WAAOIOf91YYgEFeCCKbBhLyvtsA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/logging/-/logging-2.2.1.tgz", + "integrity": "sha512-2YYLnBvx5GI4zof0sQw8bqLULGf/hOsn8rNIhosfbHKNUPrCCyWlPnjeFD3npaAt7zffkI7Acpev6hWlEDuulA==", "dependencies": { "@mongodb-js/devtools-connect": "^2.6.0", - "@mongosh/errors": "2.2.0", - "@mongosh/history": "2.2.0", - "@mongosh/types": "2.2.0", + "@mongosh/errors": "2.2.1", + "@mongosh/history": "2.2.1", + "@mongosh/types": "2.2.1", "mongodb-log-writer": "^1.4.0", "mongodb-redact": "^0.2.2" }, @@ -1348,12 +1349,12 @@ } }, "node_modules/@mongosh/service-provider-core": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-core/-/service-provider-core-2.2.0.tgz", - "integrity": "sha512-jvl8GlW6uV3LjQ1fmYkGvguFqMzcWFbGO82HwxcPKPw3tl4bkh210mnrZMfsyET0uU756q9F8MOkJTmGAP8UBQ==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-core/-/service-provider-core-2.2.1.tgz", + "integrity": "sha512-D+sGmdKjeuTln5vTDqgg3Yx6DfidNuS/8keM14VGafRpVV8CEBD0My8F3kHpimV9w7xZnrAMKBqczcL1ZcJeww==", "dependencies": { "@aws-sdk/credential-providers": "^3.525.0", - "@mongosh/errors": "2.2.0", + "@mongosh/errors": "2.2.1", "bson": "^6.5.0", "mongodb": "^6.5.0", "mongodb-build-info": "^1.7.1" @@ -1366,15 +1367,15 @@ } }, "node_modules/@mongosh/service-provider-server": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-server/-/service-provider-server-2.2.0.tgz", - "integrity": "sha512-RRxv2SBjfIWWrNxXgmndsnd44FWvC3D2jdPj8BjvGzIkhoKSXoM+DCdLHrFN4L9ntH3FXfBuAurGZ863rhrW8w==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/service-provider-server/-/service-provider-server-2.2.1.tgz", + "integrity": "sha512-dZ2YlTWANFnfwSjDNxpMbdbFDAqru2pMXoxIyPzEW3ISnathRfJjObiSO0+i56AoGPPG0lTFEdHAb0r9lPgxew==", "dependencies": { "@mongodb-js/devtools-connect": "^2.6.0", "@mongodb-js/oidc-plugin": "^0.4.0", - "@mongosh/errors": "2.2.0", - "@mongosh/service-provider-core": "2.2.0", - "@mongosh/types": "2.2.0", + "@mongosh/errors": "2.2.1", + "@mongosh/service-provider-core": "2.2.1", + "@mongosh/types": "2.2.1", "@types/sinon-chai": "^3.2.4", "aws4": "^1.12.0", "mongodb": "^6.5.0", @@ -1390,15 +1391,15 @@ } }, "node_modules/@mongosh/shell-api": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/shell-api/-/shell-api-2.2.0.tgz", - "integrity": "sha512-yhLI3MvhHY/UV875B/ZYF4LSB+79bfzvrKerIrBBC0exfRKhMcUC/O2mpDRiAyfhfUG8bfMuPp/lDFVmrHEU1g==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/shell-api/-/shell-api-2.2.1.tgz", + "integrity": "sha512-v7SNBBYms8SoHgDdDqN+jkG6V9GlpEJe5pY7tpLwlrQJ7ioBc8SOidsmHviStYP4oMzhkWQMXWETayWO92Fn+g==", "dependencies": { - "@mongosh/arg-parser": "2.2.0", - "@mongosh/errors": "2.2.0", - "@mongosh/history": "2.2.0", - "@mongosh/i18n": "2.2.0", - "@mongosh/service-provider-core": "2.2.0", + "@mongosh/arg-parser": "2.2.1", + "@mongosh/errors": "2.2.1", + "@mongosh/history": "2.2.1", + "@mongosh/i18n": "2.2.1", + "@mongosh/service-provider-core": "2.2.1", "mongodb-redact": "^0.2.2" }, "engines": { @@ -1406,27 +1407,27 @@ } }, "node_modules/@mongosh/shell-evaluator": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/shell-evaluator/-/shell-evaluator-2.2.0.tgz", - "integrity": "sha512-uKQF5G+HMrskIhzHBIV5Tveu/EOY9Rjjpot5no6i2f28uNv3rh3XoZrfFnO9QqWBrYuqhse+lGBTnYP69H59xA==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/shell-evaluator/-/shell-evaluator-2.2.1.tgz", + "integrity": "sha512-drs0wUGjMwsh5RCcTatuUE+xOcggASmMnRfJTrCF/qq/Zvt4Jdx2g0VYfU6QjwPU7X1xqRC+0efMo9ixEVIDVQ==", "dependencies": { - "@mongosh/async-rewriter2": "2.2.0", - "@mongosh/history": "2.2.0", - "@mongosh/shell-api": "2.2.0" + "@mongosh/async-rewriter2": "2.2.1", + "@mongosh/history": "2.2.1", + "@mongosh/shell-api": "2.2.1" }, "engines": { "node": ">=14.15.1" } }, "node_modules/@mongosh/snippet-manager": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/snippet-manager/-/snippet-manager-2.2.0.tgz", - "integrity": "sha512-N/Yrr2VZYre8g2qz9DW1BQEfs0T6SkRHf2LU+qiD/gUk/EZAjksqbuSQaVN78fHCt/d2SCSPZOomU3WBDpgHFg==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/snippet-manager/-/snippet-manager-2.2.1.tgz", + "integrity": "sha512-jjDAjaPCdWQAmlbWhZ1Jso7D19oKaxuEl3avn6vkxMIQIMML4IWrNOHoqWkfx5Z3NPteyx4grVfPyzjvipi94g==", "dependencies": { - "@mongosh/errors": "2.2.0", - "@mongosh/import-node-fetch": "2.2.0", - "@mongosh/shell-api": "2.2.0", - "@mongosh/types": "2.2.0", + "@mongosh/errors": "2.2.1", + "@mongosh/import-node-fetch": "2.2.1", + "@mongosh/shell-api": "2.2.1", + "@mongosh/types": "2.2.1", "bson": "^6.5.0", "cross-spawn": "^7.0.3", "escape-string-regexp": "^4.0.0", @@ -1438,9 +1439,9 @@ } }, "node_modules/@mongosh/types": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/@mongosh/types/-/types-2.2.0.tgz", - "integrity": "sha512-l2S9nf1WDUqm1AHLMNrQKGHvnmObjphuOZe/aDS4wwYO8vJHZSCp/IjGMWDA69tdjyAScEhpT3S6XTq0Tiotqg==", + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@mongosh/types/-/types-2.2.1.tgz", + "integrity": "sha512-lV1khTdJ8s3ldithGRa06nl4wlmKZm6eDnILPqW3QrZa0j6a2GBBe0GSUFo8kZkq4x3Y6SkT05ZHe1mnhh1gJQ==", "dependencies": { "@mongodb-js/devtools-connect": "^2.6.0" }, @@ -2114,9 +2115,9 @@ } }, "node_modules/@types/chai": { - "version": "4.3.12", - "resolved": "https://registry.npmmirror.com/@types/chai/-/chai-4.3.12.tgz", - "integrity": "sha512-zNKDHG/1yxm8Il6uCCVsm+dRdEsJlFoDu73X17y09bId6UwoYww+vFBsAcRzl8knM1sab3Dp1VRikFQwDOtDDw==" + "version": "4.3.13", + "resolved": "https://registry.npmmirror.com/@types/chai/-/chai-4.3.13.tgz", + "integrity": "sha512-+LxQEbg4BDUf88utmhpUpTyYn1zHao443aGnXIAQak9ZMt9Rtsic0Oig0OS1xyIqdDXc5uMekoC6NaiUlkT/qA==" }, "node_modules/@types/sinon": { "version": "17.0.3", @@ -2507,9 +2508,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001598", - "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001598.tgz", - "integrity": "sha512-j8mQRDziG94uoBfeFuqsJUNECW37DXpnvhcMJMdlH2u3MRkq1sAI0LJcXP1i/Py0KbSIC4UDj8YHPrTn5YsL+Q==" + "version": "1.0.30001599", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001599.tgz", + "integrity": "sha512-LRAQHZ4yT1+f9LemSMeqdMpMxZcc4RMWdj4tiFe3G8tNkWK+E58g+/tzotb5cU6TbcVJLr4fySiAW7XmxQvZQA==" }, "node_modules/chalk": { "version": "2.4.2", @@ -2730,9 +2731,9 @@ } }, "node_modules/detect-libc": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.0.2.tgz", - "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", "optional": true, "engines": { "node": ">=8" @@ -2774,9 +2775,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.708", - "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.708.tgz", - "integrity": "sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA==" + "version": "1.4.711", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.711.tgz", + "integrity": "sha512-hRg81qzvUEibX2lDxnFlVCHACa+LtrCPIsWAxo161LDYIB3jauf57RGsMZV9mvGwE98yGH06icj3zBEoOkxd/w==" }, "node_modules/emoji-regex": { "version": "9.2.2", diff --git a/pkgs/development/tools/mongosh/source.json b/pkgs/development/tools/mongosh/source.json index f4adfe0aad9c..8f771e9917ee 100644 --- a/pkgs/development/tools/mongosh/source.json +++ b/pkgs/development/tools/mongosh/source.json @@ -1,6 +1,6 @@ { - "version": "2.2.0", - "integrity": "sha512-6qwqz+1XTPYQCZzXH9QkyhjlxafwbodQi792FseEw8DX8bY1UWhufq6xT+cQEwkgEVHyg0df8TnZKVii3gwjbA==", - "filename": "mongosh-2.2.0.tgz", - "deps": "sha256-yU1qvjmSHqFj1GUOadLqfvKw4/7n6hfLyeNapBVakRg=" + "version": "2.2.1", + "integrity": "sha512-jqgOlNl5ZE/jasl6LIDZ8lKP658I+XFZh1e16eYo+c9UfL+NqRXwVJCRWKaZ/tph9Hc3dzCd9dKCN7OC0T50iQ==", + "filename": "mongosh-2.2.1.tgz", + "deps": "sha256-sZ2zSFi2tuYhjLHHrewNHcmSxwIHggL+wbHvEScK38Y=" } From e3b177c748968a37f8c5450855e699d75a581e6d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 20 Mar 2024 01:57:45 +0000 Subject: [PATCH 24/25] _1password: 2.25.1 -> 2.26.0 --- pkgs/applications/misc/1password/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/1password/default.nix b/pkgs/applications/misc/1password/default.nix index 895ba87f4f1e..9e9465f9c6ed 100644 --- a/pkgs/applications/misc/1password/default.nix +++ b/pkgs/applications/misc/1password/default.nix @@ -12,12 +12,12 @@ let if extension == "zip" then fetchzip args else fetchurl args; pname = "1password-cli"; - version = "2.25.1"; + version = "2.26.0"; sources = rec { - aarch64-linux = fetch "linux_arm64" "sha256-3LUfqTaLpJal/tjtRzTztm8H4wl1g4VSHWiFRukAqvE=" "zip"; - i686-linux = fetch "linux_386" "sha256-QJu4SHfM4zzHP14MKaSydAeFCvAPa4wsMh+JvWGR7J4=" "zip"; - x86_64-linux = fetch "linux_amd64" "sha256-erZCpCH5Q4VqGO045qKP5KAp07xKgMKrVrY54btT5BM=" "zip"; - aarch64-darwin = fetch "apple_universal" "sha256-kOAbr5MrDylgEQGMYUDklKCNNkZalVfJBcUwSZSMFH0=" "pkg"; + aarch64-linux = fetch "linux_arm64" "sha256-zWmWeAPtgSR8/3l40K4DPdMm0Pan+J1uNjUaEx+geO4=" "zip"; + i686-linux = fetch "linux_386" "sha256-OOjAMfRTSW+RuD0PPosvxMIPJcPQQok5Wn209sa0tuU=" "zip"; + x86_64-linux = fetch "linux_amd64" "sha256-RwdEeqBFNj5dgBsmC2fiDwUGFWhuqeEL7g60ogFEq1Y=" "zip"; + aarch64-darwin = fetch "apple_universal" "sha256-pwXHax0DBx1UpVmwYytpSikt5xdKZJXrdqvjWyWdUBM=" "pkg"; x86_64-darwin = aarch64-darwin; }; platforms = builtins.attrNames sources; From 956fff08257b2378590d032cb76aa15bbab140d2 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 20 Mar 2024 03:04:14 +0100 Subject: [PATCH 25/25] doc: migrate lib.trivial to use doc-comments (#297270) * doc: migrate lib.trivial to use doc-comments * Apply suggestions from code review --------- Co-authored-by: Daniel Sidhion --- lib/trivial.nix | 939 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 726 insertions(+), 213 deletions(-) diff --git a/lib/trivial.nix b/lib/trivial.nix index c197822a4f8e..936ad207c03d 100644 --- a/lib/trivial.nix +++ b/lib/trivial.nix @@ -16,59 +16,114 @@ in { ## Simple (higher order) functions - /* The identity function - For when you need a function that does “nothing”. + /** + The identity function + For when you need a function that does “nothing”. - Type: id :: a -> a + + # Inputs + + `x` + + : The value to return + + # Type + + ``` + id :: a -> a + ``` */ - id = - # The value to return - x: x; + id = x: x; - /* The constant function + /** + The constant function - Ignores the second argument. If called with only one argument, - constructs a function that always returns a static value. + Ignores the second argument. If called with only one argument, + constructs a function that always returns a static value. - Type: const :: a -> b -> a - Example: - let f = const 5; in f 10 - => 5 + + # Inputs + + `x` + + : Value to return + + `y` + + : Value to ignore + + # Type + + ``` + const :: a -> b -> a + ``` + + # Examples + :::{.example} + ## `lib.trivial.const` usage example + + ```nix + let f = const 5; in f 10 + => 5 + ``` + + ::: */ const = - # Value to return x: - # Value to ignore y: x; - /* Pipes a value through a list of functions, left to right. + /** + Pipes a value through a list of functions, left to right. - Type: pipe :: a -> [] -> - Example: - pipe 2 [ - (x: x + 2) # 2 + 2 = 4 - (x: x * 2) # 4 * 2 = 8 - ] - => 8 + # Inputs - # ideal to do text transformations - pipe [ "a/b" "a/c" ] [ + `value` - # create the cp command - (map (file: ''cp "${src}/${file}" $out\n'')) + : Value to start piping. - # concatenate all commands into one string - lib.concatStrings + `fns` - # make that string into a nix derivation - (pkgs.runCommand "copy-to-out" {}) + : List of functions to apply sequentially. - ] - => + # Type - The output type of each function has to be the input type - of the next function, and the last function returns the - final value. + ``` + pipe :: a -> [] -> + ``` + + # Examples + :::{.example} + ## `lib.trivial.pipe` usage example + + ```nix + pipe 2 [ + (x: x + 2) # 2 + 2 = 4 + (x: x * 2) # 4 * 2 = 8 + ] + => 8 + + # ideal to do text transformations + pipe [ "a/b" "a/c" ] [ + + # create the cp command + (map (file: ''cp "${src}/${file}" $out\n'')) + + # concatenate all commands into one string + lib.concatStrings + + # make that string into a nix derivation + (pkgs.runCommand "copy-to-out" {}) + + ] + => + + The output type of each function has to be the input type + of the next function, and the last function returns the + final value. + ``` + + ::: */ pipe = builtins.foldl' (x: f: f x); @@ -79,71 +134,197 @@ in { ## Named versions corresponding to some builtin operators. - /* Concatenate two lists + /** + Concatenate two lists - Type: concat :: [a] -> [a] -> [a] - Example: - concat [ 1 2 ] [ 3 4 ] - => [ 1 2 3 4 ] + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + + # Type + + ``` + concat :: [a] -> [a] -> [a] + ``` + + # Examples + :::{.example} + ## `lib.trivial.concat` usage example + + ```nix + concat [ 1 2 ] [ 3 4 ] + => [ 1 2 3 4 ] + ``` + + ::: */ concat = x: y: x ++ y; - /* boolean “or” */ + /** + boolean “or” + + + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + */ or = x: y: x || y; - /* boolean “and” */ + /** + boolean “and” + + + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + */ and = x: y: x && y; - /* bitwise “not” */ + /** + bitwise “not” + */ bitNot = builtins.sub (-1); - /* Convert a boolean to a string. + /** + Convert a boolean to a string. - This function uses the strings "true" and "false" to represent - boolean values. Calling `toString` on a bool instead returns "1" - and "" (sic!). + This function uses the strings "true" and "false" to represent + boolean values. Calling `toString` on a bool instead returns "1" + and "" (sic!). - Type: boolToString :: bool -> string + + # Inputs + + `b` + + : 1\. Function argument + + # Type + + ``` + boolToString :: bool -> string + ``` */ boolToString = b: if b then "true" else "false"; - /* Merge two attribute sets shallowly, right side trumps left + /** + Merge two attribute sets shallowly, right side trumps left - mergeAttrs :: attrs -> attrs -> attrs + mergeAttrs :: attrs -> attrs -> attrs - Example: - mergeAttrs { a = 1; b = 2; } { b = 3; c = 4; } - => { a = 1; b = 3; c = 4; } + + # Inputs + + `x` + + : Left attribute set + + `y` + + : Right attribute set (higher precedence for equal keys) + + + # Examples + :::{.example} + ## `lib.trivial.mergeAttrs` usage example + + ```nix + mergeAttrs { a = 1; b = 2; } { b = 3; c = 4; } + => { a = 1; b = 3; c = 4; } + ``` + + ::: */ mergeAttrs = - # Left attribute set x: - # Right attribute set (higher precedence for equal keys) y: x // y; - /* Flip the order of the arguments of a binary function. + /** + Flip the order of the arguments of a binary function. - Type: flip :: (a -> b -> c) -> (b -> a -> c) - Example: - flip concat [1] [2] - => [ 2 1 ] + # Inputs + + `f` + + : 1\. Function argument + + `a` + + : 2\. Function argument + + `b` + + : 3\. Function argument + + # Type + + ``` + flip :: (a -> b -> c) -> (b -> a -> c) + ``` + + # Examples + :::{.example} + ## `lib.trivial.flip` usage example + + ```nix + flip concat [1] [2] + => [ 2 1 ] + ``` + + ::: */ flip = f: a: b: f b a; - /* Apply function if the supplied argument is non-null. + /** + Apply function if the supplied argument is non-null. - Example: - mapNullable (x: x+1) null - => null - mapNullable (x: x+1) 22 - => 23 + + # Inputs + + `f` + + : Function to call + + `a` + + : Argument to check for null before passing it to `f` + + + # Examples + :::{.example} + ## `lib.trivial.mapNullable` usage example + + ```nix + mapNullable (x: x+1) null + => null + mapNullable (x: x+1) 22 + => 23 + ``` + + ::: */ mapNullable = - # Function to call f: - # Argument to check for null before passing it to `f` a: if a == null then a else f a; # Pull in some builtins not included elsewhere. @@ -155,57 +336,84 @@ in { ## nixpkgs version strings - /* Returns the current full nixpkgs version number. */ + /** + Returns the current full nixpkgs version number. + */ version = release + versionSuffix; - /* Returns the current nixpkgs release number as string. */ + /** + Returns the current nixpkgs release number as string. + */ release = lib.strings.fileContents ./.version; - /* The latest release that is supported, at the time of release branch-off, - if applicable. + /** + The latest release that is supported, at the time of release branch-off, + if applicable. - Ideally, out-of-tree modules should be able to evaluate cleanly with all - supported Nixpkgs versions (master, release and old release until EOL). - So if possible, deprecation warnings should take effect only when all - out-of-tree expressions/libs/modules can upgrade to the new way without - losing support for supported Nixpkgs versions. + Ideally, out-of-tree modules should be able to evaluate cleanly with all + supported Nixpkgs versions (master, release and old release until EOL). + So if possible, deprecation warnings should take effect only when all + out-of-tree expressions/libs/modules can upgrade to the new way without + losing support for supported Nixpkgs versions. - This release number allows deprecation warnings to be implemented such that - they take effect as soon as the oldest release reaches end of life. */ + This release number allows deprecation warnings to be implemented such that + they take effect as soon as the oldest release reaches end of life. + */ oldestSupportedRelease = # Update on master only. Do not backport. 2311; - /* Whether a feature is supported in all supported releases (at the time of - release branch-off, if applicable). See `oldestSupportedRelease`. */ + /** + Whether a feature is supported in all supported releases (at the time of + release branch-off, if applicable). See `oldestSupportedRelease`. + + + # Inputs + + `release` + + : Release number of feature introduction as an integer, e.g. 2111 for 21.11. + Set it to the upcoming release, matching the nixpkgs/.version file. + */ isInOldestRelease = - /* Release number of feature introduction as an integer, e.g. 2111 for 21.11. - Set it to the upcoming release, matching the nixpkgs/.version file. - */ release: release <= lib.trivial.oldestSupportedRelease; - /* Returns the current nixpkgs release code name. + /** + Returns the current nixpkgs release code name. - On each release the first letter is bumped and a new animal is chosen - starting with that new letter. + On each release the first letter is bumped and a new animal is chosen + starting with that new letter. */ codeName = "Uakari"; - /* Returns the current nixpkgs version suffix as string. */ + /** + Returns the current nixpkgs version suffix as string. + */ versionSuffix = let suffixFile = ../.version-suffix; in if pathExists suffixFile then lib.strings.fileContents suffixFile else "pre-git"; - /* Attempts to return the the current revision of nixpkgs and - returns the supplied default value otherwise. + /** + Attempts to return the the current revision of nixpkgs and + returns the supplied default value otherwise. - Type: revisionWithDefault :: string -> string + + # Inputs + + `default` + + : Default value to return if revision can not be determined + + # Type + + ``` + revisionWithDefault :: string -> string + ``` */ revisionWithDefault = - # Default value to return if revision can not be determined default: let revisionFile = "${toString ./..}/.git-revision"; @@ -217,47 +425,115 @@ in { nixpkgsVersion = warn "lib.nixpkgsVersion is a deprecated alias of lib.version." version; - /* Determine whether the function is being called from inside a Nix - shell. + /** + Determine whether the function is being called from inside a Nix + shell. - Type: inNixShell :: bool + # Type + + ``` + inNixShell :: bool + ``` */ inNixShell = builtins.getEnv "IN_NIX_SHELL" != ""; - /* Determine whether the function is being called from inside pure-eval mode - by seeing whether `builtins` contains `currentSystem`. If not, we must be in - pure-eval mode. + /** + Determine whether the function is being called from inside pure-eval mode + by seeing whether `builtins` contains `currentSystem`. If not, we must be in + pure-eval mode. - Type: inPureEvalMode :: bool + # Type + + ``` + inPureEvalMode :: bool + ``` */ inPureEvalMode = ! builtins ? currentSystem; ## Integer operations - /* Return minimum of two numbers. */ + /** + Return minimum of two numbers. + + + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + */ min = x: y: if x < y then x else y; - /* Return maximum of two numbers. */ + /** + Return maximum of two numbers. + + + # Inputs + + `x` + + : 1\. Function argument + + `y` + + : 2\. Function argument + */ max = x: y: if x > y then x else y; - /* Integer modulus + /** + Integer modulus - Example: - mod 11 10 - => 1 - mod 1 10 - => 1 + + # Inputs + + `base` + + : 1\. Function argument + + `int` + + : 2\. Function argument + + + # Examples + :::{.example} + ## `lib.trivial.mod` usage example + + ```nix + mod 11 10 + => 1 + mod 1 10 + => 1 + ``` + + ::: */ mod = base: int: base - (int * (builtins.div base int)); ## Comparisons - /* C-style comparisons + /** + C-style comparisons - a < b, compare a b => -1 - a == b, compare a b => 0 - a > b, compare a b => 1 + a < b, compare a b => -1 + a == b, compare a b => 0 + a > b, compare a b => 1 + + + # Inputs + + `a` + + : 1\. Function argument + + `b` + + : 2\. Function argument */ compare = a: b: if a < b @@ -266,50 +542,100 @@ in { then 1 else 0; - /* Split type into two subtypes by predicate `p`, take all elements - of the first subtype to be less than all the elements of the - second subtype, compare elements of a single subtype with `yes` - and `no` respectively. + /** + Split type into two subtypes by predicate `p`, take all elements + of the first subtype to be less than all the elements of the + second subtype, compare elements of a single subtype with `yes` + and `no` respectively. - Type: (a -> bool) -> (a -> a -> int) -> (a -> a -> int) -> (a -> a -> int) - Example: - let cmp = splitByAndCompare (hasPrefix "foo") compare compare; in + # Inputs - cmp "a" "z" => -1 - cmp "fooa" "fooz" => -1 + `p` - cmp "f" "a" => 1 - cmp "fooa" "a" => -1 - # while - compare "fooa" "a" => 1 + : Predicate + + `yes` + + : Comparison function if predicate holds for both values + + `no` + + : Comparison function if predicate holds for neither value + + `a` + + : First value to compare + + `b` + + : Second value to compare + + # Type + + ``` + (a -> bool) -> (a -> a -> int) -> (a -> a -> int) -> (a -> a -> int) + ``` + + # Examples + :::{.example} + ## `lib.trivial.splitByAndCompare` usage example + + ```nix + let cmp = splitByAndCompare (hasPrefix "foo") compare compare; in + + cmp "a" "z" => -1 + cmp "fooa" "fooz" => -1 + + cmp "f" "a" => 1 + cmp "fooa" "a" => -1 + # while + compare "fooa" "a" => 1 + ``` + + ::: */ splitByAndCompare = - # Predicate - p: - # Comparison function if predicate holds for both values - yes: - # Comparison function if predicate holds for neither value - no: - # First value to compare - a: - # Second value to compare - b: + p: yes: no: a: b: if p a then if p b then yes a b else -1 else if p b then 1 else no a b; - /* Reads a JSON file. + /** + Reads a JSON file. - Type: importJSON :: path -> any + + # Inputs + + `path` + + : 1\. Function argument + + # Type + + ``` + importJSON :: path -> any + ``` */ importJSON = path: builtins.fromJSON (builtins.readFile path); - /* Reads a TOML file. + /** + Reads a TOML file. - Type: importTOML :: path -> any + + # Inputs + + `path` + + : 1\. Function argument + + # Type + + ``` + importTOML :: path -> any + ``` */ importTOML = path: builtins.fromTOML (builtins.readFile path); @@ -329,7 +655,7 @@ in { # TODO: figure out a clever way to integrate location information from # something like __unsafeGetAttrPos. - /* + /** Print a warning before returning the second argument. This function behaves like `builtins.trace`, but requires a string message and formats it as a warning, including the `warning: ` prefix. @@ -337,28 +663,80 @@ in { To get a call stack trace and abort evaluation, set the environment variable `NIX_ABORT_ON_WARN=true` and set the Nix options `--option pure-eval false --show-trace` - Type: string -> a -> a + # Inputs + + `msg` + + : Warning message to print. + + `val` + + : Value to return as-is. + + # Type + + ``` + string -> a -> a + ``` */ warn = if lib.elem (builtins.getEnv "NIX_ABORT_ON_WARN") ["1" "true" "yes"] then msg: builtins.trace "warning: ${msg}" (abort "NIX_ABORT_ON_WARN=true; warnings are treated as unrecoverable errors.") else msg: builtins.trace "warning: ${msg}"; - /* + /** Like warn, but only warn when the first argument is `true`. - Type: bool -> string -> a -> a + + # Inputs + + `cond` + + : 1\. Function argument + + `msg` + + : 2\. Function argument + + `val` + + : Value to return as-is. + + # Type + + ``` + bool -> string -> a -> a + ``` */ warnIf = cond: msg: if cond then warn msg else x: x; - /* + /** Like warnIf, but negated (warn if the first argument is `false`). - Type: bool -> string -> a -> a + + # Inputs + + `cond` + + : 1\. Function argument + + `msg` + + : 2\. Function argument + + `val` + + : Value to return as-is. + + # Type + + ``` + bool -> string -> a -> a + ``` */ warnIfNot = cond: msg: if cond then x: x else warn msg; - /* + /** Like the `assert b; e` expression, but with a custom error message and without the semicolon. @@ -369,33 +747,95 @@ in { Calls can be juxtaposed using function application, as `(r: r) a = a`, so `(r: r) (r: r) a = a`, and so forth. - Type: bool -> string -> a -> a - Example: + # Inputs - throwIfNot (lib.isList overlays) "The overlays argument to nixpkgs must be a list." - lib.foldr (x: throwIfNot (lib.isFunction x) "All overlays passed to nixpkgs must be functions.") (r: r) overlays - pkgs + `cond` + : 1\. Function argument + + `msg` + + : 2\. Function argument + + # Type + + ``` + bool -> string -> a -> a + ``` + + # Examples + :::{.example} + ## `lib.trivial.throwIfNot` usage example + + ```nix + throwIfNot (lib.isList overlays) "The overlays argument to nixpkgs must be a list." + lib.foldr (x: throwIfNot (lib.isFunction x) "All overlays passed to nixpkgs must be functions.") (r: r) overlays + pkgs + ``` + + ::: */ throwIfNot = cond: msg: if cond then x: x else throw msg; - /* + /** Like throwIfNot, but negated (throw if the first argument is `true`). - Type: bool -> string -> a -> a + + # Inputs + + `cond` + + : 1\. Function argument + + `msg` + + : 2\. Function argument + + # Type + + ``` + bool -> string -> a -> a + ``` */ throwIf = cond: msg: if cond then throw msg else x: x; - /* Check if the elements in a list are valid values from a enum, returning the identity function, or throwing an error message otherwise. + /** + Check if the elements in a list are valid values from a enum, returning the identity function, or throwing an error message otherwise. - Example: - let colorVariants = ["bright" "dark" "black"] - in checkListOfEnum "color variants" [ "standard" "light" "dark" ] colorVariants; - => - error: color variants: bright, black unexpected; valid ones: standard, light, dark - Type: String -> List ComparableVal -> List ComparableVal -> a -> a + # Inputs + + `msg` + + : 1\. Function argument + + `valid` + + : 2\. Function argument + + `given` + + : 3\. Function argument + + # Type + + ``` + String -> List ComparableVal -> List ComparableVal -> a -> a + ``` + + # Examples + :::{.example} + ## `lib.trivial.checkListOfEnum` usage example + + ```nix + let colorVariants = ["bright" "dark" "black"] + in checkListOfEnum "color variants" [ "standard" "light" "dark" ] colorVariants; + => + error: color variants: bright, black unexpected; valid ones: standard, light, dark + ``` + + ::: */ checkListOfEnum = msg: valid: given: let @@ -410,15 +850,27 @@ in { ## Function annotations - /* Add metadata about expected function arguments to a function. - The metadata should match the format given by - builtins.functionArgs, i.e. a set from expected argument to a bool - representing whether that argument has a default or not. - setFunctionArgs : (a → b) → Map String Bool → (a → b) + /** + Add metadata about expected function arguments to a function. + The metadata should match the format given by + builtins.functionArgs, i.e. a set from expected argument to a bool + representing whether that argument has a default or not. + setFunctionArgs : (a → b) → Map String Bool → (a → b) - This function is necessary because you can't dynamically create a - function of the { a, b ? foo, ... }: format, but some facilities - like callPackage expect to be able to query expected arguments. + This function is necessary because you can't dynamically create a + function of the { a, b ? foo, ... }: format, but some facilities + like callPackage expect to be able to query expected arguments. + + + # Inputs + + `f` + + : 1\. Function argument + + `args` + + : 2\. Function argument */ setFunctionArgs = f: args: { # TODO: Should we add call-time "type" checking like built in? @@ -426,84 +878,133 @@ in { __functionArgs = args; }; - /* Extract the expected function arguments from a function. - This works both with nix-native { a, b ? foo, ... }: style - functions and functions with args set with 'setFunctionArgs'. It - has the same return type and semantics as builtins.functionArgs. - setFunctionArgs : (a → b) → Map String Bool. + /** + Extract the expected function arguments from a function. + This works both with nix-native { a, b ? foo, ... }: style + functions and functions with args set with 'setFunctionArgs'. It + has the same return type and semantics as builtins.functionArgs. + setFunctionArgs : (a → b) → Map String Bool. + + + # Inputs + + `f` + + : 1\. Function argument */ functionArgs = f: if f ? __functor then f.__functionArgs or (functionArgs (f.__functor f)) else builtins.functionArgs f; - /* Check whether something is a function or something - annotated with function args. + /** + Check whether something is a function or something + annotated with function args. + + + # Inputs + + `f` + + : 1\. Function argument */ isFunction = f: builtins.isFunction f || (f ? __functor && isFunction (f.__functor f)); - /* + /** `mirrorFunctionArgs f g` creates a new function `g'` with the same behavior as `g` (`g' x == g x`) but its function arguments mirroring `f` (`lib.functionArgs g' == lib.functionArgs f`). - Type: - mirrorFunctionArgs :: (a -> b) -> (a -> c) -> (a -> c) - Example: - addab = {a, b}: a + b - addab { a = 2; b = 4; } - => 6 - lib.functionArgs addab - => { a = false; b = false; } - addab1 = attrs: addab attrs + 1 - addab1 { a = 2; b = 4; } - => 7 - lib.functionArgs addab1 - => { } - addab1' = lib.mirrorFunctionArgs addab addab1 - addab1' { a = 2; b = 4; } - => 7 - lib.functionArgs addab1' - => { a = false; b = false; } + # Inputs + + `f` + + : Function to provide the argument metadata + + `g` + + : Function to set the argument metadata to + + # Type + + ``` + mirrorFunctionArgs :: (a -> b) -> (a -> c) -> (a -> c) + ``` + + # Examples + :::{.example} + ## `lib.trivial.mirrorFunctionArgs` usage example + + ```nix + addab = {a, b}: a + b + addab { a = 2; b = 4; } + => 6 + lib.functionArgs addab + => { a = false; b = false; } + addab1 = attrs: addab attrs + 1 + addab1 { a = 2; b = 4; } + => 7 + lib.functionArgs addab1 + => { } + addab1' = lib.mirrorFunctionArgs addab addab1 + addab1' { a = 2; b = 4; } + => 7 + lib.functionArgs addab1' + => { a = false; b = false; } + ``` + + ::: */ mirrorFunctionArgs = - # Function to provide the argument metadata f: let fArgs = functionArgs f; in - # Function to set the argument metadata to g: setFunctionArgs g fArgs; - /* + /** Turns any non-callable values into constant functions. Returns callable values as is. - Example: - nix-repl> lib.toFunction 1 2 - 1 + # Inputs - nix-repl> lib.toFunction (x: x + 1) 2 - 3 + `v` + + : Any value + + + # Examples + :::{.example} + ## `lib.trivial.toFunction` usage example + + ```nix + nix-repl> lib.toFunction 1 2 + 1 + + nix-repl> lib.toFunction (x: x + 1) 2 + 3 + ``` + + ::: */ toFunction = - # Any value v: if isFunction v then v else k: v; - /* Convert the given positive integer to a string of its hexadecimal - representation. For example: + /** + Convert the given positive integer to a string of its hexadecimal + representation. For example: - toHexString 0 => "0" + toHexString 0 => "0" - toHexString 16 => "10" + toHexString 16 => "10" - toHexString 250 => "FA" + toHexString 250 => "FA" */ toHexString = let hexDigits = { @@ -520,14 +1021,26 @@ in { else hexDigits.${toString d}; in i: lib.concatMapStrings toHexDigit (toBaseDigits 16 i); - /* `toBaseDigits base i` converts the positive integer i to a list of its - digits in the given base. For example: + /** + `toBaseDigits base i` converts the positive integer i to a list of its + digits in the given base. For example: - toBaseDigits 10 123 => [ 1 2 3 ] + toBaseDigits 10 123 => [ 1 2 3 ] - toBaseDigits 2 6 => [ 1 1 0 ] + toBaseDigits 2 6 => [ 1 1 0 ] - toBaseDigits 16 250 => [ 15 10 ] + toBaseDigits 16 250 => [ 15 10 ] + + + # Inputs + + `base` + + : 1\. Function argument + + `i` + + : 2\. Function argument */ toBaseDigits = base: i: let