diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 28d21a60..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,110 +0,0 @@
-# {json:scada} Main build docker container - (c) 2023 - Ricardo L. Olsen
-
-FROM mcr.microsoft.com/dotnet/sdk:6.0 AS dotnetDrivers
-ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
-COPY src/lib60870.netcore /json-scada/src/lib60870.netcore
-COPY src/dnp3 /json-scada/src/dnp3
-COPY src/libplctag /json-scada/src/libplctag
-RUN sh -c "mkdir /json-scada/bin"
-RUN sh -c "cd /json-scada/src/lib60870.netcore/lib60870.netcore/ && \
- dotnet build --runtime linux-musl-x64 -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/lib60870.netcore/iec101client/ && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/lib60870.netcore/iec101server/ && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/lib60870.netcore/iec104client/ && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/lib60870.netcore/iec104server/ && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/dnp3/Dnp3Client/ && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/libplctag/libplctag.NET/src/libplctag && \
- dotnet build --runtime linux-musl-x64 -c Release -o /json-scada/bin/ && \
- cd /json-scada/src/libplctag/PLCTagsClient && \
- dotnet publish --runtime linux-musl-x64 -p:PublishReadyToRun=true -c Release -o /json-scada/bin/"
-
-FROM golang:alpine AS golangProgs
-COPY src/calculations /go/src/calculations
-COPY src/i104m /go/src/i104m
-COPY --from=dotnetDrivers /json-scada/bin /json-scada/bin
-RUN sh -c "apk add --no-cache git && \
- cd /go/src/calculations/ && \
- go env -w GO111MODULE=auto && \
- go get -v -t -d ./... && \
- go get ./... && \
- go build && \
- cp calculations /json-scada/bin/"
-RUN sh -c "apk add --no-cache git && \
- cd /go/src/i104m/ && \
- go env -w GO111MODULE=auto && \
- go get -v -t -d ./... && \
- go build && \
- cp i104m /json-scada/bin/"
-
-FROM node:current-alpine AS nodejsProgs
-RUN sh -c "apk add --no-cache postgresql-client bash git"
-RUN sh -c "npm install -g npm"
-COPY --from=golangProgs /json-scada/bin /json-scada/bin
-#COPY --from=dotnetProgs src/lib60870.netcore /json-scada/src/lib60870.netcore
-#COPY --from=dotnetProgs src/dnp3 /json-scada/src/dnp3
-#COPY --from=dotnetProgs src/libplctag /json-scada/src/libplctag
-COPY sql /json-scada/sql
-COPY demo-docker/conf/json-scada.json /json-scada/conf/json-scada.json
-COPY src/cs_data_processor /json-scada/src/cs_data_processor
-COPY src/cs_custom_processor /json-scada/src/cs_custom_processor
-COPY src/server_realtime /json-scada/src/server_realtime
-COPY src/server_realtime_auth /json-scada/src/server_realtime_auth
-COPY src/updateUser /json-scada/src/updateUser
-COPY src/htdocs-admin /json-scada/src/htdocs-admin
-COPY src/htdocs-login /json-scada/src/htdocs-login
-COPY src/htdocs /json-scada/src/htdocs
-COPY src/alarm_beep /json-scada/src/alarm_beep
-COPY src/oshmi2json /json-scada/src/oshmi2json
-COPY src/telegraf-listener /json-scada/src/telegraf-listener
-COPY src/mqtt-sparkplug /json-scada/src/mqtt-sparkplug
-RUN sh -c "cd /json-scada/src/cs_data_processor && npm install"
-RUN sh -c "cd /json-scada/src/cs_custom_processor && npm install"
-RUN sh -c "cd /json-scada/src/server_realtime && npm install"
-RUN sh -c "cd /json-scada/src/server_realtime_auth && npm update"
-RUN sh -c "cd /json-scada/src/updateUser && npm update"
-RUN sh -c "export NODE_OPTIONS=--openssl-legacy-provider && cd /json-scada/src/htdocs-admin && npm install && npm run build && export NODE_OPTIONS="
-RUN sh -c "cd /json-scada/src/alarm_beep && npm install"
-RUN sh -c "cd /json-scada/src/oshmi2json && npm install"
-RUN sh -c "cd /json-scada/src/telegraf-listener && npm install"
-RUN sh -c "cd /json-scada/src/mqtt-sparkplug && npm install"
-
-# Dotnet runtime deps
-# from https://github.com/dotnet/dotnet-docker/blob/master/src/runtime-deps/3.1/alpine3.12/amd64/Dockerfile
-USER root
-RUN apk add --no-cache \
- ca-certificates \
- \
- # .NET Core dependencies
- krb5-libs \
- libgcc \
- libintl \
- libssl1.1 \
- libstdc++ \
- zlib
-
-ENV \
- # Configure web servers to bind to port 80 when present
- ASPNETCORE_URLS=http://+:80 \
- # Enable detection of running in a container
- DOTNET_RUNNING_IN_CONTAINER=true \
- # Set the invariant mode since icu_libs isn't included (see https://github.com/dotnet/announcements/issues/20)
- DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true
-
-# Install .NET
-# from https://github.com/dotnet/dotnet-docker/blob/master/src/runtime/5.0/alpine3.12/amd64/Dockerfile
-
-ENV DOTNET_VERSION=6.0.22
-
-RUN wget -O dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/$DOTNET_VERSION/dotnet-runtime-$DOTNET_VERSION-linux-musl-x64.tar.gz \
- && dotnet_sha512='89ed90be247136f205ae1f51ad932fc9ae04ff6b235a08564902f1327074704935850e573f550c404c5c53abde77fc51c222a2a5d94402d48ae379a42a004d88' \
- && echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
- && mkdir -p /usr/share/dotnet \
- && tar -oxzf dotnet.tar.gz -C /usr/share/dotnet \
- && rm dotnet.tar.gz \
- && ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
-
\ No newline at end of file
diff --git a/Dockerfile-dnp3 b/Dockerfile-dnp3
deleted file mode 100644
index 7f11e527..00000000
--- a/Dockerfile-dnp3
+++ /dev/null
@@ -1,21 +0,0 @@
-# {json:scada} DNP3Client docker container - (c) 2023 - Ricardo L. Olsen
-
-FROM mtapiio/wine8:latest AS dnp3client
-ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
-COPY src/dnp3 /json-scada/src/dnp3
-COPY bin-wine /json-scada/bin-wine
-COPY demo-docker/conf/json-scada.json /json-scada/conf/json-scada.json
-RUN sh -c "dpkg --add-architecture i386"
-RUN sh -c "apt update && apt dist-upgrade -y"
-RUN sh -c "apt install -y libc6:i386 libx11-6:i386 libdbus-1-dev:i386 libfreetype6:i386"
-RUN sh -c "apt install -y nano xvfb python3-pip wget libfreetype6"
-RUN sh -c "export WINEDEBUG=-all"
-RUN sh -c "pip3 install protonup"
-RUN sh -c "rm -rf /tmp/.X0-lock"
-RUN sh -c "cd /root"
-RUN sh -c "wget -nc https://download.visualstudio.microsoft.com/download/pr/7bb7f85b-9bf0-4c6f-b3e4-a3832720f162/73e280cfd7f686c34748e0bf98d879c7/dotnet-runtime-6.0.19-win-x64.exe"
-RUN sh -c "sleep 2"
-RUN sh -c "protonup -t GE-Proton8-4 -y"
-RUN sh -c "echo 555337b3129e4544846342bd94c9a8ac > /etc/machine-id"
-RUN sh -c "(Xvfb :0 -screen 0 1024x768x16 &) && export DISPLAY=:0.0 && /root/.steam/root/compatibilitytools.d/GE-Proton8-4/files/bin/wine64 dotnet-runtime-6.0.19-win-x64.exe /q"
-#RUN sh -c "/root/.steam/root/compatibilitytools.d/GE-Proton8-4/files/bin/wine64 /json-scada/bin-wine/Dnp3Client.exe"
\ No newline at end of file
diff --git a/Dockerfile-grafana b/Dockerfile-grafana
deleted file mode 100644
index f011d3e5..00000000
--- a/Dockerfile-grafana
+++ /dev/null
@@ -1,7 +0,0 @@
-# {json:scada} Grafana docker container - (c) 2023 - Ricardo L. Olsen
-
-FROM grafana/grafana:9.5.10
-COPY ./demo-docker/grafana_data /var/lib/grafana
-ENV GF_SERVER_DOMAIN=127.0.0.1
-ENV GF_SERVER_ROOT_URL=%(protocol)s://%(domain)s:8080/grafana/
-ENV GF_SERVER_SERVE_FROM_SUB_PATH=true
diff --git a/Dockerfile-mongodb b/Dockerfile-mongodb
deleted file mode 100644
index 02e93891..00000000
--- a/Dockerfile-mongodb
+++ /dev/null
@@ -1,6 +0,0 @@
-# {json:scada} Mongodb docker container - (c) 2023 - Ricardo L. Olsen
-
-FROM mongo:7
-COPY ./demo-docker/mongors1/files /files
-COPY ./demo-docker/mongo_seed/files /docker-entrypoint-initdb.d
-ENV MONGO_INITDB_DATABASE=json_scada
diff --git a/Dockerfile-timescaledb b/Dockerfile-timescaledb
deleted file mode 100644
index a4ede056..00000000
--- a/Dockerfile-timescaledb
+++ /dev/null
@@ -1,8 +0,0 @@
-# {json:scada} Timescaledb docker container - (c) 2023 - Ricardo L. Olsen
-
-FROM timescale/timescaledb:latest-pg15
-COPY ./demo-docker/postgres_seed /docker-entrypoint-initdb.d/
-COPY ./demo-docker/sql /sql/
-ENV POSTGRES_HOST_AUTH_METHOD=trust
-ENV POSTGRES_USER=postgres
-
\ No newline at end of file
diff --git a/README.md b/README.md
index f2bcaa21..196abb8b 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
- MongoDB as the real-time core database, persistence layer, config store, SOE historian.
- Event-based realtime async data processing with MongoDB Change Streams.
- Portability and modular interoperability over Linux, Windows, Mac OSX, x86/64, ARM.
-- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.42-alpha).
+- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.43-alpha).
- Unlimited tags, servers, and users.
- Horizontal scalability, from a single computer to big clusters (MongoDB-sharding), Docker containers, VMs, Kubernetes, cloud, or hybrid deployments.
- Modular distributed architecture. Lightweight redundant data acquisition nodes can connect securely over TLS to the database server. E.g. a Raspberry PI can be a data acquisition node.
@@ -90,7 +90,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
## Documentation
- [Generic Install Guide](https://github.com/riclolsen/json-scada/blob/master/docs/install.md)
-- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.42-alpha)
+- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.43-alpha)
- [RedHat/Rocky Linux Installer](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#rhel94-and-compatible-systems-automated-installation)
- [Docker Demo](https://github.com/riclolsen/json-scada/blob/master/demo-docker/README.md)
- [Schema Documentation](https://github.com/riclolsen/json-scada/blob/master/docs/schema.md)
diff --git a/compile-docker/docker-compose.yaml b/compile-docker/docker-compose.yaml
index a7e3e8fb..de309d81 100644
--- a/compile-docker/docker-compose.yaml
+++ b/compile-docker/docker-compose.yaml
@@ -22,7 +22,8 @@ services:
rm -rf obj bin &&
cd /src/lib60870.netcore/lib60870.netcore/ &&
rm -rf obj bin &&
- cd /src/OPC-UA-Client/ &&
+ cd /src/OPC-UA-Client/ &&
+ rm -rf obj bin && dotnet clean &&
dotnet publish --self-contained --runtime linux-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin/ &&
rm -rf obj bin &&
cd /src/libplctag/libplctag.NET/src/libplctag &&
@@ -51,7 +52,6 @@ services:
rm -rf .install "
environment:
- DOTNET_CLI_TELEMETRY_OPTOUT=1
- #command: tail -f /dev/null
volumes:
- ../src/iec61850_client:/src/iec61850_client
- ../src/libiec61850:/src/libiec61850
@@ -73,7 +73,6 @@ services:
cp Dependencies/OpenSSL/*.dll /publish_bin_win/ "
environment:
- DOTNET_CLI_TELEMETRY_OPTOUT=1
- #command: tail -f /dev/null
volumes:
- ../demo-docker/bin_win:/publish_bin_win
- ../src/dnp3:/src/dnp3
@@ -124,79 +123,35 @@ services:
- ../src/plc4x-client:/go/src/plc4x-client
- ../demo-docker/bin:/publish_bin
- cs_data_processor_update:
- image: node:20-alpine
- container_name: js_cs_data_processor_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /cs_data_processor && npm install && chmod -R 777 node_modules"
+ nodejs_update:
+ image: node:22-alpine
+ container_name: js_nodejs_update
+ command: sh -c "apk add --update npm && npm install -g npm &&
+ cd /cs_data_processor && npm install && chmod -R 777 node_modules &&
+ cd /cs_custom_processor && npm install && chmod -R 777 node_modules &&
+ cd /config_server_for_excel && npm install && chmod -R 777 node_modules &&
+ cd /server_realtime_auth && npm install && chmod -R 777 node_modules &&
+ cd /alarm_beep && npm install && chmod -R 777 node_modules &&
+ cd /oshmi2json && npm install && chmod -R 777 node_modules &&
+ cd /telegraf-listener && npm install && chmod -R 777 node_modules &&
+ cd /OPC-UA-Server && npm install && chmod -R 777 node_modules &&
+ cd /mqtt-sparkplug && npm install && chmod -R 777 node_modules &&
+ cd /AdminUI && npm install && npm run build && chmod -R 777 node_modules &&
+ cd /custom-developments/basic_bargraph && npm install && npx astro telemetry disable && npm run build &&
+ cd /custom-developments/advanced_dashboard && npm install && npm run build &&
+ cd /custom-developments/transformer_with_command && npm install && npm run build"
+ environment:
+ - NODE_OPTIONS=--max-old-space-size=10000
volumes:
- ../src/cs_data_processor:/cs_data_processor
-
- cs_custom_processor_update:
- image: node:20-alpine
- container_name: js_cs_custom_processor_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /cs_custom_processor && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/cs_custom_processor:/cs_custom_processor
-
- server_realtime_update:
- image: node:20-alpine
- container_name: js_server_realtime_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /server_realtime && npm install && chmod -R 777 node_modules"
- volumes:
- - ../src/server_realtime:/server_realtime
-
- config_server_excel_update:
- image: node:20-alpine
- container_name: js_config_server_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /config_server_for_excel && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/config_server_for_excel:/config_server_for_excel
-
- server_realtime_auth_update:
- image: node:20-alpine
- container_name: js_server_realtime_auth_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /server_realtime_auth && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/server_realtime_auth:/server_realtime_auth
-
- alarm_beep_update:
- image: node:20-alpine
- container_name: js_alarm_beep_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /alarm_beep && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/alarm_beep:/alarm_beep
-
- oshmi2json_update:
- image: node:20-alpine
- container_name: js_oshmi2json_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /oshmi2json && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/oshmi2json:/oshmi2json
-
- telegraf_listener_update:
- image: node:20-alpine
- container_name: js_telegraf_listener_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /telegraf-listener && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/telegraf-listener:/telegraf-listener
-
- opcua_server_update:
- image: node:20-alpine
- container_name: js_opcua_server_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /OPC-UA-Server && npm install && chmod -R 777 node_modules"
- volumes:
- ../src/OPC-UA-Server:/OPC-UA-Server
-
- mqtt_sparkplug_update:
- image: node:20-alpine
- container_name: js_mqtt_sparkplug_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /mqtt-sparkplug && npm install"
- volumes:
- ../src/mqtt-sparkplug:/mqtt-sparkplug
-
- htdocs_admin_update:
- image: node:20-alpine
- container_name: js_admin_ui_update
- command: sh -c "apk add --update npm && npm install -g npm && cd /AdminUI && npm install && npm run build && chmod -R 777 node_modules"
- volumes:
- ../src/AdminUI:/AdminUI
+ - ../src/custom-developments/:/custom-developments
+
diff --git a/demo-docker/conf/Opc.Ua.DefaultClient.Config.xml b/demo-docker/conf/Opc.Ua.DefaultClient.Config.xml
new file mode 100644
index 00000000..22d23c95
--- /dev/null
+++ b/demo-docker/conf/Opc.Ua.DefaultClient.Config.xml
@@ -0,0 +1,105 @@
+
+
+ JSON-SCADA OPC-UA Client
+ urn:localhost:OPCUA:JSON_SCADA_OPCUAClient
+ http://json-scada.org/UA/ClientDriver
+ Client_1
+
+
+
+
+
+
+ Directory
+ %LocalApplicationData%/OPC Foundation/pki/own
+ CN=JSON-SCADA OPC-UA Client, C=US, S=Arizona, O=OPC Foundation, DC=localhost
+
+
+
+
+ Directory
+ %LocalApplicationData%/OPC Foundation/pki/issuer
+
+
+
+
+ Directory
+ %LocalApplicationData%/OPC Foundation/pki/trusted
+
+
+
+
+ Directory
+ %LocalApplicationData%/OPC Foundation/pki/rejected
+
+
+
+ true
+
+
+ false
+ 1024
+
+
+
+
+
+
+
+ 600000
+ 1048576
+ 4194304
+ 65535
+ 4194304
+ 65535
+ 300000
+ 3600000
+
+
+
+
+
+
+ 600000
+
+
+
+ opc.tcp://{0}:4840/UADiscovery
+
+
+
+
+
+
+ 10000
+
+
+
+ %LocalApplicationData%/Logs/Opc.Ua.CoreSampleClient.log.txt
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
\ No newline at end of file
diff --git a/demo-docker/conf/telegraf.conf b/demo-docker/conf/telegraf.conf
new file mode 100644
index 00000000..16d3df6a
--- /dev/null
+++ b/demo-docker/conf/telegraf.conf
@@ -0,0 +1,261 @@
+# Telegraf Configuration
+#
+# Telegraf is entirely plugin driven. All metrics are gathered from the
+# declared inputs, and sent to the declared outputs.
+#
+# Plugins must be declared in here to be active.
+# To deactivate a plugin, comment out the name and any variables.
+#
+# Use 'telegraf -config telegraf.conf -test' to see what metrics a config
+# file would generate.
+#
+# Environment variables can be used anywhere in this config file, simply surround
+# them with ${}. For strings the variable must be within quotes (ie, "${STR_VAR}"),
+# for numbers and booleans they should be plain (ie, ${INT_VAR}, ${BOOL_VAR})
+
+
+# Global tags can be specified here in key="value" format.
+[global_tags]
+ # dc = "us-east-1" # will tag all metrics with dc=us-east-1
+ # rack = "1a"
+ ## Environment variables can be used as tags, and throughout the config file
+ # user = "$USER"
+
+
+# Configuration for telegraf agent
+[agent]
+ ## Default data collection interval for all inputs
+ interval = "10s"
+ ## Rounds collection interval to 'interval'
+ ## ie, if interval="10s" then always collect on :00, :10, :20, etc.
+ round_interval = true
+
+ ## Telegraf will send metrics to outputs in batches of at most
+ ## metric_batch_size metrics.
+ ## This controls the size of writes that Telegraf sends to output plugins.
+ metric_batch_size = 100
+
+ ## Maximum number of unwritten metrics per output. Increasing this value
+ ## allows for longer periods of output downtime without dropping metrics at the
+ ## cost of higher maximum memory usage.
+ metric_buffer_limit = 10000
+
+ ## Collection jitter is used to jitter the collection by a random amount.
+ ## Each plugin will sleep for a random time within jitter before collecting.
+ ## This can be used to avoid many plugins querying things like sysfs at the
+ ## same time, which can have a measurable effect on the system.
+ collection_jitter = "0s"
+
+ ## Default flushing interval for all outputs. Maximum flush_interval will be
+ ## flush_interval + flush_jitter
+ flush_interval = "10s"
+ ## Jitter the flush interval by a random amount. This is primarily to avoid
+ ## large write spikes for users running a large number of telegraf instances.
+ ## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s
+ flush_jitter = "0s"
+
+ ## By default or when set to "0s", precision will be set to the same
+ ## timestamp order as the collection interval, with the maximum being 1s.
+ ## ie, when interval = "10s", precision will be "1s"
+ ## when interval = "250ms", precision will be "1ms"
+ ## Precision will NOT be used for service inputs. It is up to each individual
+ ## service input to set the timestamp at the appropriate precision.
+ ## Valid time units are "ns", "us" (or "µs"), "ms", "s".
+ precision = ""
+
+ ## Log at debug level.
+ # debug = false
+ ## Log only error level messages.
+ # quiet = false
+
+ ## Log target controls the destination for logs and can be one of "file",
+ ## "stderr" or, on Windows, "eventlog". When set to "file", the output file
+ ## is determined by the "logfile" setting.
+ # logtarget = "file"
+
+ ## Name of the file to be logged to when using the "file" logtarget. If set to
+ ## the empty string then logs are written to stderr.
+ # logfile = ""
+
+ ## The logfile will be rotated after the time interval specified. When set
+ ## to 0 no time based rotation is performed. Logs are rotated only when
+ ## written to, if there is no log activity rotation may be delayed.
+ # logfile_rotation_interval = "0d"
+
+ ## The logfile will be rotated when it becomes larger than the specified
+ ## size. When set to 0 no size based rotation is performed.
+ # logfile_rotation_max_size = "0MB"
+
+ ## Maximum number of rotated archives to keep, any older logs are deleted.
+ ## If set to -1, no archives are removed.
+ # logfile_rotation_max_archives = 5
+
+ ## Override default hostname, if empty use os.Hostname()
+ hostname = ""
+ ## If set to true, do no set the "host" tag in the telegraf agent.
+ omit_hostname = false
+
+###############################################################################
+# INPUT PLUGINS #
+###############################################################################
+
+# Read metrics about cpu usage
+[[inputs.cpu]]
+ name_override = "TelegrafCpu"
+ ## Whether to report per-cpu stats or not
+ percpu = true
+ ## Whether to report total system cpu stats or not
+ totalcpu = true
+ ## If true, collect raw CPU time metrics.
+ collect_cpu_time = false
+ ## If true, compute and report the sum of all non-idle CPU states.
+ report_active = false
+
+
+# # Read metrics about disk usage by mount point
+# [[inputs.disk]]
+# ## By default stats will be gathered for all mount points.
+# ## Set mount_points will restrict the stats to only the specified mount points.
+# # mount_points = ["/"]
+#
+# ## Ignore mount points by filesystem type.
+# ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs"]
+
+
+# # Read metrics about disk IO by device
+# [[inputs.diskio]]
+# ## By default, telegraf will gather stats for all devices including
+# ## disk partitions.
+# ## Setting devices will restrict the stats to the specified devices.
+# # devices = ["sda", "sdb", "vd*"]
+# ## Uncomment the following line if you need disk serial numbers.
+# # skip_serial_number = false
+# #
+# ## On systems which support it, device metadata can be added in the form of
+# ## tags.
+# ## Currently only Linux is supported via udev properties. You can view
+# ## available properties for a device by running:
+# ## 'udevadm info -q property -n /dev/sda'
+# # device_tags = ["ID_FS_TYPE", "ID_FS_USAGE"]
+# #
+# ## Using the same metadata source as device_tags, you can also customize the
+# ## name of the device via templates.
+# ## The 'name_templates' parameter is a list of templates to try and apply to
+# ## the device. The template may contain variables in the form of '$PROPERTY' or
+# ## '${PROPERTY}'. The first template which does not contain any variables not
+# ## present for the device is used as the device name tag.
+# ## The typical use case is for LVM volumes, to get the VG/LV name instead of
+# ## the near-meaningless DM-0 name.
+# # name_templates = ["$ID_FS_LABEL","$DM_VG_NAME/$DM_LV_NAME"]
+
+
+# Read metrics about memory usage
+[[inputs.mem]]
+ name_override = "TelegrafMemory"
+ # no configuration
+
+
+# # Read metrics about swap memory usage
+# [[inputs.swap]]
+# # no configuration
+
+[[inputs.mqtt_consumer]]
+ # this willl be JSON-SCADA group1
+ name_override = "TelegrafMQTT"
+ ## Broker URLs for the MQTT server or cluster. To connect to multiple
+ ## clusters or standalone servers, use a seperate plugin instance.
+ ## example: servers = ["tcp://localhost:1883"]
+ ## servers = ["ssl://localhost:1883"]
+ ## servers = ["ws://localhost:1883"]
+ servers = ["tcp://test.mosquitto.org:1883"]
+
+ ## Topics that will be subscribed to.
+ topics = [
+ "$SYS/broker/messages/#",
+ ]
+ data_format = "value"
+ data_type = "integer"
+ # convert topic to group2
+ #topic_tag = "group2"
+
+[[inputs.mqtt_consumer]]
+ # this willl be JSON-SCADA group1
+ name_override = "TelegrafMQTT"
+ ## Broker URLs for the MQTT server or cluster. To connect to multiple
+ ## clusters or standalone servers, use a seperate plugin instance.
+ ## example: servers = ["tcp://localhost:1883"]
+ ## servers = ["ssl://localhost:1883"]
+ ## servers = ["ws://localhost:1883"]
+ servers = ["tcp://test.mosquitto.org:1883"]
+
+ ## Topics that will be subscribed to.
+ topics = [
+ "$SYS/broker/uptime",
+ "$SYS/broker/version",
+ ]
+ data_format = "value"
+ data_type = "string"
+ # convert topic to group2
+ #topic_tag = "group2"
+
+[[inputs.opcua]]
+ ## Metric name
+ name = "TelegrafOPC-UA"
+ endpoint = "opc.tcp://opcua.demo-this.com:51210/UA/SampleServer"
+ security_policy = "None"
+ security_mode = "None"
+ auth_method = "Anonymous"
+ certificate = "" # "/etc/telegraf/cert.pem"
+
+ [[inputs.opcua.group]]
+ #name = "group1_name"
+ namespace = "2"
+ identifier_type = "i"
+ #tags=[["group1_tag", "val1"]]
+ tags=[["group2", "demo"]]
+ nodes = [
+ {name="float_value", identifier="10853"},
+ {name="string_value", identifier="10855"},
+ {name="date_value", identifier="10856"},
+ {name="byte_value", identifier="10846"}
+ ]
+#{name="date_value", identifier="10856"}, # date values doesn't work
+#{name="array_of_double", identifier="10938"} # array values doesn't work
+
+[[inputs.mongodb]]
+ name_override = "_SysMongoDB"
+ ## An array of URLs of the form:
+ ## "mongodb://" [user ":" pass "@"] host [ ":" port]
+ ## For example:
+ ## mongodb://user:auth_key@10.10.3.30:27017,
+ ## mongodb://10.10.3.33:18832,
+ servers = ["mongodb://jsdemo_mongorsn1:27017/json_scada?replicaSet=rs1"]
+ gather_cluster_status = false
+ gather_perdb_stats = false
+ gather_col_stats = false
+ #gather_top_stat = false
+ col_stats_dbs = ["json_scada"]
+
+###############################################################################
+# OUTPUT PLUGINS #
+###############################################################################
+
+# USE THIS TO DEBUG MESSAGES
+#[[outputs.file]]
+# ## Files to write to, "stdout" is a specially handled file.
+# files = ["stdout", "metrics.out"]
+#
+# data_format = "json"
+
+# USE THIS TO SEND DATA TO JSON-SCADA VIA UDP
+# Generic socket writer capable of handling multiple socket types.
+[[outputs.socket_writer]]
+ ## URL to connect to
+ address = "udp://telegraf_listener:51920"
+
+ ## Data format to generate.
+ ## Each data format has its own unique set of configuration options, read
+ ## more about them here:
+ ## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
+ data_format = "json"
+
diff --git a/demo-docker/docker-compose.yaml b/demo-docker/docker-compose.yaml
index 4f9a32e9..b12b0ed4 100644
--- a/demo-docker/docker-compose.yaml
+++ b/demo-docker/docker-compose.yaml
@@ -33,10 +33,10 @@ services:
# Postgresql/TimescaleDB historian. Without auth!
timescaledb:
- image: timescale/timescaledb:latest-pg16
+ image: timescale/timescaledb-ha:pg17
container_name: jsdemo_timescaledb
restart: unless-stopped
- command: postgres -c shared_preload_libraries=timescaledb
+ #command: postgres -c shared_preload_libraries=timescaledb
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
- POSTGRES_USER=postgres
@@ -58,9 +58,9 @@ services:
# Postgresql/TimescaleDB Process SQL hist files
process_pg_hist:
- image: timescale/timescaledb:latest-pg16
+ image: timescale/timescaledb-ha:pg17
container_name: jsdemo_process_pg_hist
- command: /sql/process_pg_hist.sh
+ command: /bin/sh /sql/process_pg_hist.sh
restart: unless-stopped
environment:
- PSQL_PATH=/usr/local/bin
@@ -79,9 +79,9 @@ services:
# Postgresql/TimescaleDB Process SQL current data files
process_pg_rtdata:
- image: timescale/timescaledb:latest-pg16
+ image: timescale/timescaledb-ha:pg17
container_name: jsdemo_process_pg_rtdata
- command: /sql/process_pg_rtdata.sh
+ command: /bin/sh /sql/process_pg_rtdata.sh
restart: unless-stopped
environment:
- PSQL_PATH=/usr/local/bin
@@ -142,7 +142,7 @@ services:
networks:
- jsdemo_net
- # IEC60870-5-104 CLIENT, will connect to a demo server on 207.180.242.96:2404
+ # IEC60870-5-104 CLIENT, will connect to a demo server
iec104client:
image: mcr.microsoft.com/dotnet/sdk:8.0
container_name: jsdemo_iec104client
@@ -157,6 +157,21 @@ services:
networks:
- jsdemo_net
+ # OPC-UA CLIENT
+ opcua_client:
+ image: mcr.microsoft.com/dotnet/sdk:8.0
+ container_name: jsdemo_opcua_client
+ command: sh -c "sleep 60 && /jsonscada_bin/OPC-UA-Client"
+ restart: unless-stopped
+ volumes:
+ - ./conf:/conf
+ - ./bin:/jsonscada_bin
+ - ./log:/log
+ links:
+ - jsdemo_mongorsn1
+ networks:
+ - jsdemo_net
+
# IEC60870-5-104 SERVER, accepts connection on 127.0.0.1:2404 (originator address 1)
iec104server:
image: mcr.microsoft.com/dotnet/sdk:8.0
@@ -283,6 +298,7 @@ services:
volumes:
- ../src/server_realtime_auth:/server_realtime_auth
- ../src/AdminUI:/AdminUI
+ - ../src/custom-developments:/custom-developments
- ../svg:/svg
- ./conf:/conf
- ./log:/log
@@ -367,6 +383,33 @@ services:
networks:
- jsdemo_net
+ telegraf_listener:
+ image: node:20-alpine
+ container_name: jsdemo_telegraf_listener
+ command: sh -c "cd /telegraf-listener && sleep 50 && node index.js"
+ restart: unless-stopped
+ volumes:
+ - ../src/telegraf-listener:/telegraf-listener
+ - ./conf:/conf
+ - ./log:/log
+ links:
+ - jsdemo_mongorsn1
+ networks:
+ - jsdemo_net
+
+ telegraf_tool:
+ image: telegraf:alpine
+ container_name: jsdemo_telegraf_tool
+ restart: unless-stopped
+ volumes:
+ - ./conf/telegraf.conf:/etc/telegraf/telegraf.conf
+ - ./log:/log
+ links:
+ - jsdemo_mongorsn1
+ - telegraf_listener
+ networks:
+ - jsdemo_net
+
# # Metabase for dashboards (can connect to MONGODB and POSTGRESQL)
# metabase:
# image: metabase/metabase:latest
@@ -392,6 +435,7 @@ services:
- ./conf/fastcgi.conf:/etc/nginx/fastcgi.conf
- ./conf/nginx-conf.d:/etc/nginx/conf.d
- ../src/AdminUI:/AdminUI
+ - ../src/custom-developments:/custom-developments
- ../svg:/svg
restart: unless-stopped
links:
@@ -401,7 +445,7 @@ services:
# monitoring of logs of the docker containers
dozzle:
- container_name: dozzle
+ container_name: jsdemo_dozzle
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
diff --git a/demo-docker/mongo_seed/files/a.sh b/demo-docker/mongo_seed/files/a.sh
index 96a9eefb..73b25f92 100644
--- a/demo-docker/mongo_seed/files/a.sh
+++ b/demo-docker/mongo_seed/files/a.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-sleep 5
+sleep 5
\ No newline at end of file
diff --git a/demo-docker/mongo_seed/files/c.sh b/demo-docker/mongo_seed/files/c.sh
index 96a9eefb..73b25f92 100644
--- a/demo-docker/mongo_seed/files/c.sh
+++ b/demo-docker/mongo_seed/files/c.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-sleep 5
+sleep 5
\ No newline at end of file
diff --git a/demo-docker/mongo_seed/files/demo_connections_linux.json b/demo-docker/mongo_seed/files/demo_connections_linux.json
index 793bab9b..0971939b 100644
--- a/demo-docker/mongo_seed/files/demo_connections_linux.json
+++ b/demo-docker/mongo_seed/files/demo_connections_linux.json
@@ -1,9 +1,9 @@
{"_id":{"$oid":"5f108e3e3d8adfd3eccb206e"},"protocolDriver":"IEC60870-5-104_SERVER","protocolDriverInstanceNumber":1,"protocolConnectionNumber":1001,"name":"IEC104DIST","description":"Demo distribution of IEC 104","enabled":true,"commandsEnabled":true,"ipAddressLocalBind":"0.0.0.0:2404","ipAddresses":[],"localLinkAddress":1.0,"remoteLinkAddress":2.0,"giInterval":null,"testCommandInterval":0.0,"timeSyncInterval":0.0,"sizeOfCOT":2.0,"sizeOfCA":2.0,"sizeOfIOA":3.0,"k":12.0,"w":8.0,"t0":10.0,"t1":15.0,"t2":10.0,"t3":20.0,"serverModeMultiActive":true,"maxClientConnections":20.0,"maxQueueSize":5000.0,"stats":null}
{"_id":{"$oid":"5f1090143d8adfd3eccb206f"},"protocolDriver":"IEC60870-5-104","protocolDriverInstanceNumber":1,"protocolConnectionNumber":61,"name":"IEC104DEMO","description":"Demo via IEC60870-5-104","enabled":true,"commandsEnabled":true,"ipAddressLocalBind":"","ipAddresses":["129.153.76.210:2404","150.230.171.172:2404"],"localLinkAddress":2.0,"remoteLinkAddress":1.0,"giInterval":250.0,"testCommandInterval":60.0,"timeSyncInterval":650.0,"sizeOfCOT":2.0,"sizeOfCA":2.0,"sizeOfIOA":3.0,"k":12.0,"w":8.0,"t0":10.0,"t1":15.0,"t2":10.0,"t3":20.0,"stats":null}
-{"_id":{"$oid":"5ff3512268d80d68205b403f"},"protocolDriver":"OPC-UA","protocolDriverInstanceNumber":1,"protocolConnectionNumber":1003,"name":"OPCClient1","description":"OPC Client 1","enabled":true,"commandsEnabled":true,"endpointURLs":["opc.tcp://opcua.demo-this.com:51210/UA/SampleServer"],"configFileName":"/home/jsonscada/json-scada/conf/Opc.Ua.DefaultClient.Config.xml","autoCreateTags":true,"useSecurity":false,"stats":null}
+{"_id":{"$oid":"5ff3512268d80d68205b403f"},"protocolDriver":"OPC-UA","protocolDriverInstanceNumber":1,"protocolConnectionNumber":1003,"name":"OPCClient1","description":"OPC Client 1","enabled":true,"commandsEnabled":true,"endpointURLs":["opc.tcp://opcua.demo-this.com:51210/UA/SampleServer"],"configFileName":"../conf/Opc.Ua.DefaultClient.Config.xml","autoCreateTags":true,"useSecurity":false,"stats":null}
{"_id":{"$oid":"606c93aa46fda805647cce53"},"protocolDriver":"MQTT-SPARKPLUG-B","protocolDriverInstanceNumber":1,"protocolConnectionNumber":1200,"name":"MQTT-BROKER","description":"MQTT Demo","enabled":true,"commandsEnabled":true,"autoCreateTags":true,"endpointURLs":["mqtt://broker.hivemq.com:1883"],"topics":["spBv1.0/Edge Nodes/#","spBv1.0/Axxela/#","testtopic/munich/$.*~"],"groupId":"","edgeNodeId":"","deviceId":"","scadaHostId":"","username":"","password":"","useSecurity":false,"chainValidation":true,"rootCertFilePath":"","localCertFilePath":"","privateKeyFilePath":"","pfxFilePath":"","passphrase":"","allowTLSv10":false,"allowTLSv11":false,"allowTLSv12":true,"allowTLSv13":true,"cipherList":"","publishTopicRoot":"","topicsAsFiles":[],"topicsScripted":[],"clientId":"","stats":null}
{"_id":{"$oid":"60da25c2040e43523c8f4f57"},"protocolDriver":"OPC-UA_SERVER","protocolDriverInstanceNumber":1,"protocolConnectionNumber":123,"name":"OPC-UA DIST","description":"Test distribution of OPC-UA","enabled":true,"commandsEnabled":true,"ipAddressLocalBind":"0.0.0.0:4840","ipAddresses":[],"groupId":"UA/Test","topics":["KOR1","KAW2"],"stats":null}
-{"_id":{"$oid":"6053887ea2e672638cc751d4"},"protocolDriver":"TELEGRAF-LISTENER","protocolDriverInstanceNumber":1,"protocolConnectionNumber":2001,"name": "TELEGRAFDEMO","description":"TELEGRAF Demo","enabled": true,"commandsEnabled":false,"ipAddresses":["127.0.0.1"],"ipAddressLocalBind":"0.0.0.0:51920","stats":null}
+{"_id":{"$oid":"6053887ea2e672638cc751d4"},"protocolDriver":"TELEGRAF-LISTENER","protocolDriverInstanceNumber":1,"protocolConnectionNumber":2001,"name": "TELEGRAFDEMO","description":"TELEGRAF Demo","enabled": true,"commandsEnabled":false,"ipAddresses":[],"ipAddressLocalBind":"0.0.0.0:51920","stats":null}
{"_id":{"$oid":"6675d176e2f7917450d7585b"},"protocolDriver":"PLC4X","protocolDriverInstanceNumber":1,"protocolConnectionNumber":2003,"name":"PLC1","description":"PLC #1 MODBUS","enabled":true,"commandsEnabled":true,"topics":["MBPLC1_HR1|holding-register:1:UINT","MBPLC1_10HRS|holding-register:2:INT[10]"],"autoCreateTags": true,"endpointURLs":["modbus-tcp://localhost:5001?unit-identifier=2"],"giInterval": 1.5,"stats":null}
{"_id":{"$oid":"669ea9ce96e9a9fe7abe6ef8"},"protocolDriver":"OPC-DA","protocolDriverInstanceNumber":1,"protocolConnectionNumber":5001,"name":"OPCDAClient1","description":"Download from demo server from https://github.com/technosoftware-gmbh/opcdaaehda-client-solution-net/tree/master/x86/DemoServer","enabled":true,"commandsEnabled":true,"stats":null,"endpointURLs":["opcda://localhost/SampleCompany.DaSample.30"],"autoCreateTags":true,"useSecurity":false,"autoCreateTagPublishingInterval":5,"autoCreateTagQueueSize":5,"autoCreateTagSamplingInterval":0,"giInterval":300,"localCertFilePath":"","peerCertFilePath":"","timeoutMs":20000,"topics":[],"deadBand":5,"hoursShift":0,"password":"","username":""}
{"_id":{"$oid":"66e6c7d1311eee86fc6b4f07"},"protocolDriver":"DNP3","protocolDriverInstanceNumber":1,"protocolConnectionNumber":33,"name":"DNP3DEMO","description":"DNP3 DEMO","enabled": true,"commandsEnabled":true,"stats":null,"ipAddresses":["127.0.0.1:20000"],"passphrase":"","pfxFilePath":"","useSecurity":false,"timeoutMs":10000,"localLinkAddress":2,"remoteLinkAddress":1,"giInterval":300,"hoursShift":0,"timeSyncInterval":0,"localCertFilePath":"","peerCertFilePath":"","peerCertFilesPaths":[],"rootCertFilePath":"","chainValidation":false,"allowOnlySpecificCertificates":false,"privateKeyFilePath":"","allowTLSv10":false,"allowTLSv11":false,"allowTLSv12":true,"allowTLSv13":true,"cipherList":"","connectionMode":"TCP Active","asyncOpenDelay":0,"timeSyncMode":0,"class0ScanInterval":0,"class1ScanInterval":0,"class2ScanInterval":0,"class3ScanInterval":0,"enableUnsolicited":true,"rangeScans":[],"baudRate":9600,"parity":"Even","stopBits":"One","handshake":"None","timeoutForACK":1000,"timeoutRepeat":1000}
diff --git a/demo-docker/mongo_seed/files/init.sh b/demo-docker/mongo_seed/files/init.sh
index 74a44f6e..c4144b1b 100755
--- a/demo-docker/mongo_seed/files/init.sh
+++ b/demo-docker/mongo_seed/files/init.sh
@@ -1,7 +1,7 @@
#!/bin/sh
sleep 5
mongoimport --db $MONGO_INITDB_DATABASE --collection protocolDriverInstances --type json --file /docker-entrypoint-initdb.d/demo_instances.json
-mongoimport --db $MONGO_INITDB_DATABASE --collection protocolConnections --type json --file /docker-entrypoint-initdb.d/demo_connections.json
+mongoimport --db $MONGO_INITDB_DATABASE --collection protocolConnections --type json --file /docker-entrypoint-initdb.d/demo_connections_linux.json
mongoimport --db $MONGO_INITDB_DATABASE --collection realtimeData --type json --file /docker-entrypoint-initdb.d/demo_data.json
mongoimport --db $MONGO_INITDB_DATABASE --collection processInstances --type json --file /docker-entrypoint-initdb.d/demo_process_instances.json
mongoimport --db $MONGO_INITDB_DATABASE --collection users --type json --file /docker-entrypoint-initdb.d/demo_users.json
diff --git a/demo-docker/postgres_seed/init-user-db.sh b/demo-docker/postgres_seed/init-user-db.sh
index 0b4ea5bf..f6d2c3d1 100755
--- a/demo-docker/postgres_seed/init-user-db.sh
+++ b/demo-docker/postgres_seed/init-user-db.sh
@@ -1,4 +1,4 @@
#!/bin/bash
psql -U postgres -w -f /sql_data/create_tables.sql template1
psql -U postgres -w -f /sql_data/grafanaappdb.sql grafanaappdb
-psql -U postgres -w -f /sql_data/metabaseappdb.sql metabaseappdb
+psql -U postgres -w -f /sql_data/metabaseappdb.sql metabaseappdb
\ No newline at end of file
diff --git a/demo-docker/sql/process_pg_hist.sh b/demo-docker/sql/process_pg_hist.sh
index 4787bb28..63e14a0a 100755
--- a/demo-docker/sql/process_pg_hist.sh
+++ b/demo-docker/sql/process_pg_hist.sh
@@ -29,7 +29,7 @@ while [ 1 ]; do
if [ "$file" != "pg_hist_*.sql" ]; then
# process sql file into the database
- res=`$psqlPath/psql -h $dbHost -U "$dbUser" -d $dbName -p $dbPort < "$file" `
+ res=` psql -h $dbHost -U "$dbUser" -d $dbName -p $dbPort < "$file" `
if [ "$?" = "0" ]; then
diff --git a/demo-docker/sql/process_pg_rtdata.sh b/demo-docker/sql/process_pg_rtdata.sh
index 02d30ea5..6c42c980 100755
--- a/demo-docker/sql/process_pg_rtdata.sh
+++ b/demo-docker/sql/process_pg_rtdata.sh
@@ -29,7 +29,7 @@ while [ 1 ]; do
if [ "$file" != "pg_rtdata_*.sql" ]; then
# process sql file into the database
- res=`$psqlPath/psql -h $dbHost -U "$dbUser" -d $dbName -p $dbPort < "$file" `
+ res=`psql -h $dbHost -U "$dbUser" -d $dbName -p $dbPort < "$file" `
if [ "$?" = "0" ]; then
diff --git a/demo-docker/sql_data/grafanaappdb.sql b/demo-docker/sql_data/grafanaappdb.sql
index bc4e132e..000c9ad4 100644
--- a/demo-docker/sql_data/grafanaappdb.sql
+++ b/demo-docker/sql_data/grafanaappdb.sql
@@ -3269,8 +3269,8 @@ COPY public.correlation (uid, source_uid, target_uid, label, description, config
--
COPY public.dashboard (id, version, slug, title, data, org_id, created, updated, updated_by, created_by, gnet_id, plugin_id, folder_id, is_folder, has_acl, uid, is_public) FROM stdin;
-2 3 json-scada-history-analog JSON SCADA History Analog {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":2,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":false},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1 ","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"absv"},"properties":[{"id":"custom.cellOptions","value":{"mode":"basic","type":"gauge"}},{"id":"min","value":0},{"id":"displayName","value":"bar"},{"id":"mappings","value":[{"options":{"from":-1e+22,"result":{"index":0,"text":"."},"to":1e+22},"type":"range"}]},{"id":"decimals","value":0},{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"value"},"properties":[{"id":"custom.width","value":130}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]},{"matcher":{"id":"byName","options":"bar"},"properties":[{"id":"custom.width","value":1412}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":2,"label":"Tags","name":"point_tag","query":"KAW2KPR21MTVA--------C","skipUrlSync":false,"type":"constant"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Analog","uid":"78X6BmvMk","version":3,"weekStart":""} 1 2024-05-15 15:43:49 2024-05-15 15:51:22 1 1 0 0 f f 78X6BmvMk f
-1 2 json-scada-history-digital JSON SCADA History Digital {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":1,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1,"spanNulls":false},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":1}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"left","legend":{"displayMode":"list","placement":"bottom","showLegend":false},"mergeValues":false,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n -- metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n -- , case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n -- metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n --, case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"state-timeline"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":2,"label":"Tags","name":"point_tag","query":"KAW2KPR21MTVA--------C","skipUrlSync":false,"type":"constant"}]},"time":{"from":"now-3h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Digital","uid":"LsXOaz47z","version":2,"weekStart":""} 1 2024-05-15 15:43:22 2024-05-15 15:52:30 1 1 0 0 f f LsXOaz47z f
+2 3 json-scada-history-analog JSON SCADA History Analog {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":2,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":false},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1 ","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"absv"},"properties":[{"id":"custom.cellOptions","value":{"mode":"basic","type":"gauge"}},{"id":"min","value":0},{"id":"displayName","value":"bar"},{"id":"mappings","value":[{"options":{"from":-1e+22,"result":{"index":0,"text":"."},"to":1e+22},"type":"range"}]},{"id":"decimals","value":0},{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"value"},"properties":[{"id":"custom.width","value":130}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]},{"matcher":{"id":"byName","options":"bar"},"properties":[{"id":"custom.width","value":1412}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[ { "current": { "text": "", "value": "" }, "hide": 2, "label": "Tags", "name": "point_tag", "options": [], "query": "", "type": "custom" } ]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Analog","uid":"78X6BmvMk","version":3,"weekStart":""} 1 2024-05-15 15:43:49 2024-05-15 15:51:22 1 1 0 0 f f 78X6BmvMk f
+1 2 json-scada-history-digital JSON SCADA History Digital {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":1,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1,"spanNulls":false},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":1}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"left","legend":{"displayMode":"list","placement":"bottom","showLegend":false},"mergeValues":false,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n -- metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n -- , case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n -- metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n --, case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"state-timeline"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[ { "current": { "text": "", "value": "" }, "hide": 2, "label": "Tags", "name": "point_tag", "options": [], "query": "", "type": "custom" } ]},"time":{"from":"now-3h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Digital","uid":"LsXOaz47z","version":2,"weekStart":""} 1 2024-05-15 15:43:22 2024-05-15 15:52:30 1 1 0 0 f f LsXOaz47z f
3 5 json-scada-filtered-group1-2 JSON SCADA Filtered Group1/2 {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":3,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":1,"links":[],"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":20,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":true},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.4","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n metric AS metric,\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") AND\\n metric IN ( $point_tag ) \\nORDER BY 1,2","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Metrics","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"decimals":1,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":11,"w":20,"x":0,"y":11},"id":3,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"showThresholdLabels":false,"showThresholdMarkers":true,"text":{}},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n metric AS metric,\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") AND\\n metric IN ( $point_tag ) \\nORDER BY 1","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Metrics","type":"gauge"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"current":{"selected":false,"text":"_SysMongoDB","value":"_SysMongoDB"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select distinct json_data-\\u003e\\u003e'group1' as group1 from realtime_data order by 1","hide":0,"includeAll":false,"label":"Group1","multi":true,"name":"group1","options":[],"query":"select distinct json_data-\\u003e\\u003e'group1' as group1 from realtime_data order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{"selected":false,"text":"_SysMongoDB | WinDev2305Eval","value":"_SysMongoDB | WinDev2305Eval"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select distinct concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') as group2 from realtime_data where json_data-\\u003e\\u003e'group1' in([[group1]]) order by 1","hide":0,"includeAll":false,"label":"Group2","multi":true,"name":"group2","options":[],"query":"select distinct concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') as group2 from realtime_data where json_data-\\u003e\\u003e'group1' in([[group1]]) order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{"selected":false,"text":"_SysMongoDB~WinDev2305Eval~active_reads","value":"_SysMongoDB~WinDev2305Eval~active_reads"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select tag as point_tag from realtime_data where concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') in([[group2]]) order by 1","hide":0,"includeAll":false,"label":"Tags","multi":true,"name":"point_tag","options":[],"query":"select tag as point_tag from realtime_data where concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') in([[group2]]) order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA Filtered Group1/2","uid":"zUqcvfZ7z","version":5,"weekStart":""} 1 2024-05-15 15:44:09 2024-05-15 15:59:17 1 1 0 0 f f zUqcvfZ7z f
\.
@@ -3365,7 +3365,7 @@ d4dff665-e7b4-4b78-a8b3-43fe9dfabbc8 t root secretKey.v1 \\x2a5957567a4c574e6d59
--
COPY public.data_source (id, org_id, version, type, name, access, url, password, "user", database, basic_auth, basic_auth_user, basic_auth_password, is_default, json_data, created, updated, with_credentials, secure_json_data, read_only, uid) FROM stdin;
-1 1 2 postgres PostgreSQL-JSON_SCADA proxy timescaledb:5432 grafana f t {"connMaxLifetime":14400,"database":"json_scada","maxIdleConns":100,"maxIdleConnsAuto":true,"maxOpenConns":100,"postgresVersion":1400,"sslmode":"disable","timescaledb":true} 2024-05-15 15:38:36 2024-05-15 15:42:11 f {} f f4dfcd5e-956e-4186-b0ed-abc6496b08b0
+1 1 2 postgres PostgreSQL-JSON_SCADA proxy 127.0.0.1:5432 grafana f t {"connMaxLifetime":14400,"database":"json_scada","maxIdleConns":100,"maxIdleConnsAuto":true,"maxOpenConns":100,"postgresVersion":1400,"sslmode":"disable","timescaledb":true} 2024-05-15 15:38:36 2024-05-15 15:42:11 f {} f f4dfcd5e-956e-4186-b0ed-abc6496b08b0
\.
diff --git a/docs/install.md b/docs/install.md
index b10bd65d..b48c62d2 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -69,12 +69,20 @@ To configure safe remote client access, configure IP address access control, HTT
For more info about configuration please read the protocols documentation.
-## RHEL9.4 and compatible systems (automated installation)
+## RHEL9.4 and compatible systems (Rocky/Alma/Oracle Linux), scripted installation
Execute commands below for scripted installation:
# firstly create a user named "jsonscada" that can do "sudo". Login as "jsonscada".
+ sudo adduser jsonscada
+ sudo usermod -aG wheel jsonscada
+ sudo usermod -aG docker jsonscada
+ sudo passwd jsonscada
+ sudo su - jsonscada
+
+ # next, clone the json-scada repo
+
sudo dnf -y install git
cd /home/jsonscada
git clone https://github.com/riclolsen/json-scada --config core.autocrlf=input
diff --git a/index.md b/index.md
index 27467345..0606f7db 100644
--- a/index.md
+++ b/index.md
@@ -48,7 +48,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
- MongoDB as the real-time core database, persistence layer, config store, SOE historian.
- Event-based realtime async data processing with MongoDB Change Streams.
- Portability and modular interoperability over Linux, Windows, Mac OSX, x86/64, ARM.
-- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.42-alpha).
+- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.43-alpha).
- Unlimited tags, servers, and users.
- Horizontal scalability, from a single computer to big clusters (MongoDB-sharding), Docker containers, VMs, Kubernetes, cloud, or hybrid deployments.
- Modular distributed architecture. Lightweight redundant data acquisition nodes can connect securely over TLS to the database server. E.g. a Raspberry PI can be a data acquisition node.
@@ -90,7 +90,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
## Documentation
- [Generic Install Guide](docs/install.md)
-- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.42-alpha)
+- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.43-alpha)
- [RedHat/Rocky Linux Installer](docs/install.md#rhel94-and-compatible-systems-automated-installation)
- [Install Guide](docs/install.md)
- [Docker Demo](demo-docker/README.md)
diff --git a/platform-linux/build.sh b/platform-linux/build.sh
index a8a30254..ff0b009f 100755
--- a/platform-linux/build.sh
+++ b/platform-linux/build.sh
@@ -116,6 +116,7 @@ export NODE_OPTIONS=--max-old-space-size=10000
cd ../../../custom-developments/basic_bargraph
npm install
+npx astro telemetry disable
npm run build
cd ../../custom-developments/advanced_dashboard
diff --git a/platform-mac/build.sh b/platform-mac/build.sh
index 2f1ce14f..7b409849 100755
--- a/platform-mac/build.sh
+++ b/platform-mac/build.sh
@@ -116,6 +116,7 @@ export NODE_OPTIONS=--max-old-space-size=10000
cd ../../../custom-developments/basic_bargraph
npm install
+npx astro telemetry disable
npm run build
cd ../../custom-developments/advanced_dashboard
diff --git a/platform-rhel9/json-scada-install-aarch64.sh b/platform-rhel9/json-scada-install-aarch64.sh
index 4393a73e..717a8a20 100644
--- a/platform-rhel9/json-scada-install-aarch64.sh
+++ b/platform-rhel9/json-scada-install-aarch64.sh
@@ -26,8 +26,8 @@ sudo subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rp
sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
sudo dnf -y install epel-release
sudo dnf config-manager --set-enabled crb
-sudo dnf -y install tar vim nano nginx wget chkconfig dotnet-sdk-8.0 java-21-openjdk php curl cmake
-sudo dnf -y install libpcap-devel
+sudo dnf -y install tar vim nano nginx wget chkconfig dotnet-sdk-8.0 java-21-openjdk php cmake libpcap-devel
+sudo dnf -y install curl --allowerasing
# to compile inkscape
sudo dnf -y install ninja-build libjpeg-devel libxslt-devel gtkmm30-devel gspell-devel boost-devel poppler-devel poppler-glib-devel gtest-devel harfbuzz-devel
@@ -63,13 +63,13 @@ sudo systemctl enable disable-transparent-huge-pages
sudo systemctl daemon-reload
sudo systemctl start disable-transparent-huge-pages
-sudo tee /etc/yum.repos.d/mongodb-org-7.0.repo <=2019, Windows PowerShell. At least 20GB of free space in the "C:" drive.
+* Administrative rights. Corporate Windows policies may cause problems with the creation of services and the opening of TCP ports.
+* Free TCP ports 6688, 6689, 27017, 5432, 80, 8080, 3000, 3001, 9000. Other ports may be required for optional services and protocols.
+* If the server already has MongoDB, PostgreSQL, Grafana, Metabase, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
+* Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.
+* If using VirtualBox configure "paravirtualization interface"=KVM, otherwise Nodejs errors may occur.
+* MongoDB requires AVX instructions on x86 CPU.
+
+-------------------------------------------------------------------
+
Notes for version 0.42:
* ATTENTION: The default SVG folder has been moved to "c:\json-scada\svg\".
diff --git a/sql/grafanaappdb.sql b/sql/grafanaappdb.sql
index 2d419d98..000c9ad4 100644
--- a/sql/grafanaappdb.sql
+++ b/sql/grafanaappdb.sql
@@ -3269,8 +3269,8 @@ COPY public.correlation (uid, source_uid, target_uid, label, description, config
--
COPY public.dashboard (id, version, slug, title, data, org_id, created, updated, updated_by, created_by, gnet_id, plugin_id, folder_id, is_folder, has_acl, uid, is_public) FROM stdin;
-2 3 json-scada-history-analog JSON SCADA History Analog {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":2,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":false},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1 ","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"absv"},"properties":[{"id":"custom.cellOptions","value":{"mode":"basic","type":"gauge"}},{"id":"min","value":0},{"id":"displayName","value":"bar"},{"id":"mappings","value":[{"options":{"from":-1e+22,"result":{"index":0,"text":"."},"to":1e+22},"type":"range"}]},{"id":"decimals","value":0},{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"value"},"properties":[{"id":"custom.width","value":130}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]},{"matcher":{"id":"byName","options":"bar"},"properties":[{"id":"custom.width","value":1412}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":2,"label":"Tags","name":"point_tag","query":"KAW2KPR21MTVA--------C","skipUrlSync":false,"type":"constant"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Analog","uid":"78X6BmvMk","version":3,"weekStart":""} 1 2024-05-15 15:43:49 2024-05-15 15:51:22 1 1 0 0 f f 78X6BmvMk f
-1 2 json-scada-history-digital JSON SCADA History Digital {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":1,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1,"spanNulls":false},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":1}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"left","legend":{"displayMode":"list","placement":"bottom","showLegend":false},"mergeValues":false,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n -- metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n -- , case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n -- metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n --, case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"state-timeline"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"hide":2,"label":"Tags","name":"point_tag","query":"KAW2KPR21MTVA--------C","skipUrlSync":false,"type":"constant"}]},"time":{"from":"now-3h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Digital","uid":"LsXOaz47z","version":2,"weekStart":""} 1 2024-05-15 15:43:22 2024-05-15 15:52:30 1 1 0 0 f f LsXOaz47z f
+2 3 json-scada-history-analog JSON SCADA History Analog {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":2,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":false},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1 ","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"absv"},"properties":[{"id":"custom.cellOptions","value":{"mode":"basic","type":"gauge"}},{"id":"min","value":0},{"id":"displayName","value":"bar"},{"id":"mappings","value":[{"options":{"from":-1e+22,"result":{"index":0,"text":"."},"to":1e+22},"type":"range"}]},{"id":"decimals","value":0},{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"value"},"properties":[{"id":"custom.width","value":130}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]},{"matcher":{"id":"byName","options":"bar"},"properties":[{"id":"custom.width","value":1412}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n abs(value) as absv,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[ { "current": { "text": "", "value": "" }, "hide": 2, "label": "Tags", "name": "point_tag", "options": [], "query": "", "type": "custom" } ]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Analog","uid":"78X6BmvMk","version":3,"weekStart":""} 1 2024-05-15 15:43:49 2024-05-15 15:51:22 1 1 0 0 f f 78X6BmvMk f
+1 2 json-scada-history-digital JSON SCADA History Digital {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":1,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1,"spanNulls":false},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":1}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"left","legend":{"displayMode":"list","placement":"bottom","showLegend":false},"mergeValues":false,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.1","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n -- metric,\\n \\"time\\" AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n -- , case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n -- metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value,\\n value_json-\\u003e\\u003e's' as state\\n --, case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 1\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Plot","type":"state-timeline"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"filterable":true,"inspect":false},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"time"},"properties":[{"id":"custom.width","value":177}]},{"matcher":{"id":"byName","options":"metric"},"properties":[{"id":"custom.width","value":198}]}]},"gridPos":{"h":14,"w":24,"x":0,"y":11},"id":5,"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"table","group":[],"metricColumn":"none","rawQuery":true,"rawSql":"SELECT\\n metric,\\n \\"time\\" AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") and metric IN ('$point_tag') \\n\\nUNION\\n(\\nSELECT\\n metric,\\n ($__timeFrom())::timestamp with time zone AS \\"time\\",\\n value_json-\\u003e\\u003e's' as state,\\n case when (flags \\u0026 B'10000000') = B'10000000' then 'F' else '' end as flags\\nFROM grafana_hist \\nWHERE\\n time \\u003c (($__timeFrom())::timestamp with time zone) and metric IN ('$point_tag') order by grafana_hist.time desc limit 1\\n) \\norder by 2 desc\\n","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"}]}],"title":"Table","type":"table"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[ { "current": { "text": "", "value": "" }, "hide": 2, "label": "Tags", "name": "point_tag", "options": [], "query": "", "type": "custom" } ]},"time":{"from":"now-3h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA History Digital","uid":"LsXOaz47z","version":2,"weekStart":""} 1 2024-05-15 15:43:22 2024-05-15 15:52:30 1 1 0 0 f f LsXOaz47z f
3 5 json-scada-filtered-group1-2 JSON SCADA Filtered Group1/2 {"annotations":{"list":[{"builtIn":1,"datasource":{"type":"datasource","uid":"grafana"},"enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \\u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":3,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisCenteredZero":false,"axisColorMode":"text","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"stepAfter","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":1,"links":[],"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":11,"w":20,"x":0,"y":0},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom","showLegend":true},"tooltip":{"mode":"single","sort":"none"}},"pluginVersion":"8.0.4","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n metric AS metric,\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") AND\\n metric IN ( $point_tag ) \\nORDER BY 1,2","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Metrics","type":"timeseries"},{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"fieldConfig":{"defaults":{"decimals":1,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":11,"w":20,"x":0,"y":11},"id":3,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"showThresholdLabels":false,"showThresholdMarkers":true,"text":{}},"pluginVersion":"9.5.18","targets":[{"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"format":"time_series","group":[],"metricColumn":"metric","rawQuery":true,"rawSql":"SELECT\\n \\"time\\" AS \\"time\\",\\n metric AS metric,\\n value\\nFROM grafana_hist\\nWHERE\\n $__timeFilter(\\"time\\") AND\\n metric IN ( $point_tag ) \\nORDER BY 1","refId":"A","select":[[{"params":["value"],"type":"column"}]],"table":"grafana_hist","timeColumn":"\\"time\\"","timeColumnType":"timestamp","where":[{"name":"$__timeFilter","params":[],"type":"macro"},{"datatype":"text","name":"","params":["metric","IN","$point_tag"],"type":"expression"}]}],"title":"Metrics","type":"gauge"}],"refresh":"10s","schemaVersion":38,"style":"dark","tags":[],"templating":{"list":[{"current":{"selected":false,"text":"_SysMongoDB","value":"_SysMongoDB"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select distinct json_data-\\u003e\\u003e'group1' as group1 from realtime_data order by 1","hide":0,"includeAll":false,"label":"Group1","multi":true,"name":"group1","options":[],"query":"select distinct json_data-\\u003e\\u003e'group1' as group1 from realtime_data order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{"selected":false,"text":"_SysMongoDB | WinDev2305Eval","value":"_SysMongoDB | WinDev2305Eval"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select distinct concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') as group2 from realtime_data where json_data-\\u003e\\u003e'group1' in([[group1]]) order by 1","hide":0,"includeAll":false,"label":"Group2","multi":true,"name":"group2","options":[],"query":"select distinct concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') as group2 from realtime_data where json_data-\\u003e\\u003e'group1' in([[group1]]) order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{"selected":false,"text":"_SysMongoDB~WinDev2305Eval~active_reads","value":"_SysMongoDB~WinDev2305Eval~active_reads"},"datasource":{"type":"postgres","uid":"f4dfcd5e-956e-4186-b0ed-abc6496b08b0"},"definition":"select tag as point_tag from realtime_data where concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') in([[group2]]) order by 1","hide":0,"includeAll":false,"label":"Tags","multi":true,"name":"point_tag","options":[],"query":"select tag as point_tag from realtime_data where concat(json_data-\\u003e\\u003e'group1', ' | ', json_data-\\u003e\\u003e'group2') in([[group2]]) order by 1","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-1h","to":"now"},"timepicker":{"refresh_intervals":["10s","30s","1m","5m","15m","30m","1h","2h","1d"]},"timezone":"","title":"JSON SCADA Filtered Group1/2","uid":"zUqcvfZ7z","version":5,"weekStart":""} 1 2024-05-15 15:44:09 2024-05-15 15:59:17 1 1 0 0 f f zUqcvfZ7z f
\.
diff --git a/src/AdminUI/package-lock.json b/src/AdminUI/package-lock.json
index 8ac5bc6b..d85d6f79 100644
--- a/src/AdminUI/package-lock.json
+++ b/src/AdminUI/package-lock.json
@@ -64,12 +64,12 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
- "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
+ "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.0"
+ "@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -79,9 +79,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
- "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
+ "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
@@ -561,13 +561,13 @@
"license": "BSD-3-Clause"
},
"node_modules/@intlify/core-base": {
- "version": "10.0.4",
- "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-10.0.4.tgz",
- "integrity": "sha512-GG428DkrrWCMhxRMRQZjuS7zmSUzarYcaHJqG9VB8dXAxw4iQDoKVQ7ChJRB6ZtsCsX3Jse1PEUlHrJiyQrOTg==",
+ "version": "10.0.5",
+ "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-10.0.5.tgz",
+ "integrity": "sha512-F3snDTQs0MdvnnyzTDTVkOYVAZOE/MHwRvF7mn7Jw1yuih4NrFYLNYIymGlLmq4HU2iIdzYsZ7f47bOcwY73XQ==",
"license": "MIT",
"dependencies": {
- "@intlify/message-compiler": "10.0.4",
- "@intlify/shared": "10.0.4"
+ "@intlify/message-compiler": "10.0.5",
+ "@intlify/shared": "10.0.5"
},
"engines": {
"node": ">= 16"
@@ -577,12 +577,12 @@
}
},
"node_modules/@intlify/message-compiler": {
- "version": "10.0.4",
- "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-10.0.4.tgz",
- "integrity": "sha512-AFbhEo10DP095/45EauinQJ5hJ3rJUmuuqltGguvc3WsvezZN+g8qNHLGWKu60FHQVizMrQY7VJ+zVlBXlQQkQ==",
+ "version": "10.0.5",
+ "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-10.0.5.tgz",
+ "integrity": "sha512-6GT1BJ852gZ0gItNZN2krX5QAmea+cmdjMvsWohArAZ3GmHdnNANEcF9JjPXAMRtQ6Ux5E269ymamg/+WU6tQA==",
"license": "MIT",
"dependencies": {
- "@intlify/shared": "10.0.4",
+ "@intlify/shared": "10.0.5",
"source-map-js": "^1.0.2"
},
"engines": {
@@ -593,9 +593,9 @@
}
},
"node_modules/@intlify/shared": {
- "version": "10.0.4",
- "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-10.0.4.tgz",
- "integrity": "sha512-ukFn0I01HsSgr3VYhYcvkTCLS7rGa0gw4A4AMpcy/A9xx/zRJy7PS2BElMXLwUazVFMAr5zuiTk3MQeoeGXaJg==",
+ "version": "10.0.5",
+ "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-10.0.5.tgz",
+ "integrity": "sha512-bmsP4L2HqBF6i6uaMqJMcFBONVjKt+siGluRq4Ca4C0q7W2eMaVZr8iCgF9dKbcVXutftkC7D6z2SaSMmLiDyA==",
"license": "MIT",
"engines": {
"node": ">= 16"
@@ -697,9 +697,9 @@
}
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.4.tgz",
- "integrity": "sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz",
+ "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==",
"cpu": [
"arm"
],
@@ -710,9 +710,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.4.tgz",
- "integrity": "sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz",
+ "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==",
"cpu": [
"arm64"
],
@@ -723,9 +723,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.4.tgz",
- "integrity": "sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz",
+ "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==",
"cpu": [
"arm64"
],
@@ -736,9 +736,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.4.tgz",
- "integrity": "sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz",
+ "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==",
"cpu": [
"x64"
],
@@ -749,9 +749,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.4.tgz",
- "integrity": "sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz",
+ "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==",
"cpu": [
"arm64"
],
@@ -762,9 +762,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.4.tgz",
- "integrity": "sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz",
+ "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==",
"cpu": [
"x64"
],
@@ -775,9 +775,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.4.tgz",
- "integrity": "sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz",
+ "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==",
"cpu": [
"arm"
],
@@ -788,9 +788,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.4.tgz",
- "integrity": "sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz",
+ "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==",
"cpu": [
"arm"
],
@@ -801,9 +801,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.4.tgz",
- "integrity": "sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz",
+ "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==",
"cpu": [
"arm64"
],
@@ -814,9 +814,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.4.tgz",
- "integrity": "sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz",
+ "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==",
"cpu": [
"arm64"
],
@@ -826,10 +826,23 @@
"linux"
]
},
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.4.tgz",
- "integrity": "sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz",
+ "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==",
"cpu": [
"ppc64"
],
@@ -840,9 +853,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.4.tgz",
- "integrity": "sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==",
"cpu": [
"riscv64"
],
@@ -853,9 +866,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.4.tgz",
- "integrity": "sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz",
+ "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==",
"cpu": [
"s390x"
],
@@ -866,9 +879,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.4.tgz",
- "integrity": "sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz",
+ "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==",
"cpu": [
"x64"
],
@@ -879,9 +892,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.4.tgz",
- "integrity": "sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz",
+ "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==",
"cpu": [
"x64"
],
@@ -892,9 +905,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.4.tgz",
- "integrity": "sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz",
+ "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==",
"cpu": [
"arm64"
],
@@ -905,9 +918,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.4.tgz",
- "integrity": "sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==",
"cpu": [
"ia32"
],
@@ -918,9 +931,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.4.tgz",
- "integrity": "sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==",
"cpu": [
"x64"
],
@@ -952,9 +965,9 @@
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
- "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
+ "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==",
"dev": true,
"license": "ISC"
},
@@ -973,18 +986,18 @@
}
},
"node_modules/@vue-macros/common": {
- "version": "1.15.0",
- "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.15.0.tgz",
- "integrity": "sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA==",
+ "version": "1.15.1",
+ "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.15.1.tgz",
+ "integrity": "sha512-O0ZXaladWXwHplQnSjxLbB/G1KpdWCUNJPNYVHIxHonGex1BGpoB4fBZZLgddHgAiy18VZG/Iu5L0kwG+SV7JQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.25.8",
- "@rollup/pluginutils": "^5.1.2",
- "@vue/compiler-sfc": "^3.5.12",
- "ast-kit": "^1.3.0",
- "local-pkg": "^0.5.0",
- "magic-string-ast": "^0.6.2"
+ "@babel/types": "^7.26.3",
+ "@rollup/pluginutils": "^5.1.3",
+ "@vue/compiler-sfc": "^3.5.13",
+ "ast-kit": "^1.3.2",
+ "local-pkg": "^0.5.1",
+ "magic-string-ast": "^0.6.3"
},
"engines": {
"node": ">=16.14.0"
@@ -1326,9 +1339,9 @@
}
},
"node_modules/ast-kit": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.3.1.tgz",
- "integrity": "sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.3.2.tgz",
+ "integrity": "sha512-gdvX700WVC6sHCJQ7bJGfDvtuKAh6Sa6weIZROxfzUZKP7BjvB8y0SMlM/o4omSQ3L60PQSJROBJsb0vEViVnA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1457,17 +1470,47 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -1675,9 +1718,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"devOptional": true,
"license": "MIT",
"dependencies": {
@@ -1748,6 +1791,21 @@
"node": ">=6.0.0"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/entities": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
@@ -1822,14 +1880,11 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -2297,9 +2352,9 @@
}
},
"node_modules/eslint-plugin-vue": {
- "version": "9.31.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.31.0.tgz",
- "integrity": "sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==",
+ "version": "9.32.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz",
+ "integrity": "sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2655,17 +2710,22 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -2774,13 +2834,13 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -2827,11 +2887,14 @@
}
},
"node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
+ "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.0"
+ },
"engines": {
"node": ">= 0.4"
},
@@ -2840,9 +2903,9 @@
}
},
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2945,15 +3008,15 @@
"license": "ISC"
},
"node_modules/internal-slot": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz",
- "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
+ "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
"dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
- "hasown": "^2.0.0",
- "side-channel": "^1.0.4"
+ "hasown": "^2.0.2",
+ "side-channel": "^1.1.0"
},
"engines": {
"node": ">= 0.4"
@@ -2993,13 +3056,16 @@
}
},
"node_modules/is-bigint": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
- "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
+ "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-bigints": "^1.0.1"
+ "has-bigints": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -3019,14 +3085,14 @@
}
},
"node_modules/is-boolean-object": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
- "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz",
+ "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -3065,9 +3131,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "version": "2.16.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
+ "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3081,12 +3147,14 @@
}
},
"node_modules/is-data-view": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz",
- "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
+ "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
"is-typed-array": "^1.1.13"
},
"engines": {
@@ -3097,13 +3165,14 @@
}
},
"node_modules/is-date-object": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
- "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
+ "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -3204,13 +3273,14 @@
}
},
"node_modules/is-number-object": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
- "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.0.tgz",
+ "integrity": "sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "call-bind": "^1.0.7",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -3230,14 +3300,16 @@
}
},
"node_modules/is-regex": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
- "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "call-bound": "^1.0.2",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -3276,13 +3348,14 @@
}
},
"node_modules/is-string": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
- "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.0.tgz",
+ "integrity": "sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-tostringtag": "^1.0.0"
+ "call-bind": "^1.0.7",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -3292,13 +3365,15 @@
}
},
"node_modules/is-symbol": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
- "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
+ "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-symbols": "^1.0.2"
+ "call-bound": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "safe-regex-test": "^1.1.0"
},
"engines": {
"node": ">= 0.4"
@@ -3337,13 +3412,16 @@
}
},
"node_modules/is-weakref": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
- "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz",
+ "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2"
+ "call-bound": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -3508,9 +3586,9 @@
}
},
"node_modules/magic-string": {
- "version": "0.30.14",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz",
- "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==",
+ "version": "0.30.15",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz",
+ "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0"
@@ -3529,6 +3607,16 @@
"node": ">=16.14.0"
}
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
@@ -3993,19 +4081,20 @@
}
},
"node_modules/reflect.getprototypeof": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz",
- "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz",
+ "integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
+ "call-bind": "^1.0.8",
"define-properties": "^1.2.1",
+ "dunder-proto": "^1.0.0",
"es-abstract": "^1.23.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4",
- "gopd": "^1.0.1",
- "which-builtin-type": "^1.1.4"
+ "gopd": "^1.2.0",
+ "which-builtin-type": "^1.2.0"
},
"engines": {
"node": ">= 0.4"
@@ -4047,13 +4136,13 @@
}
},
"node_modules/resolve": {
- "version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "version": "1.22.9",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
+ "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.13.0",
+ "is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -4119,9 +4208,9 @@
"license": "Apache-2.0"
},
"node_modules/rollup": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.4.tgz",
- "integrity": "sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz",
+ "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==",
"devOptional": true,
"license": "MIT",
"dependencies": {
@@ -4135,24 +4224,25 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.27.4",
- "@rollup/rollup-android-arm64": "4.27.4",
- "@rollup/rollup-darwin-arm64": "4.27.4",
- "@rollup/rollup-darwin-x64": "4.27.4",
- "@rollup/rollup-freebsd-arm64": "4.27.4",
- "@rollup/rollup-freebsd-x64": "4.27.4",
- "@rollup/rollup-linux-arm-gnueabihf": "4.27.4",
- "@rollup/rollup-linux-arm-musleabihf": "4.27.4",
- "@rollup/rollup-linux-arm64-gnu": "4.27.4",
- "@rollup/rollup-linux-arm64-musl": "4.27.4",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.27.4",
- "@rollup/rollup-linux-riscv64-gnu": "4.27.4",
- "@rollup/rollup-linux-s390x-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-musl": "4.27.4",
- "@rollup/rollup-win32-arm64-msvc": "4.27.4",
- "@rollup/rollup-win32-ia32-msvc": "4.27.4",
- "@rollup/rollup-win32-x64-msvc": "4.27.4",
+ "@rollup/rollup-android-arm-eabi": "4.28.1",
+ "@rollup/rollup-android-arm64": "4.28.1",
+ "@rollup/rollup-darwin-arm64": "4.28.1",
+ "@rollup/rollup-darwin-x64": "4.28.1",
+ "@rollup/rollup-freebsd-arm64": "4.28.1",
+ "@rollup/rollup-freebsd-x64": "4.28.1",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.28.1",
+ "@rollup/rollup-linux-arm-musleabihf": "4.28.1",
+ "@rollup/rollup-linux-arm64-gnu": "4.28.1",
+ "@rollup/rollup-linux-arm64-musl": "4.28.1",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.28.1",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1",
+ "@rollup/rollup-linux-riscv64-gnu": "4.28.1",
+ "@rollup/rollup-linux-s390x-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-musl": "4.28.1",
+ "@rollup/rollup-win32-arm64-msvc": "4.28.1",
+ "@rollup/rollup-win32-ia32-msvc": "4.28.1",
+ "@rollup/rollup-win32-x64-msvc": "4.28.1",
"fsevents": "~2.3.2"
}
},
@@ -4181,15 +4271,16 @@
}
},
"node_modules/safe-array-concat": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz",
- "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
+ "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
- "get-intrinsic": "^1.2.4",
- "has-symbols": "^1.0.3",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "has-symbols": "^1.1.0",
"isarray": "^2.0.5"
},
"engines": {
@@ -4200,15 +4291,15 @@
}
},
"node_modules/safe-regex-test": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz",
- "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.6",
+ "call-bound": "^1.0.2",
"es-errors": "^1.3.0",
- "is-regex": "^1.1.4"
+ "is-regex": "^1.2.1"
},
"engines": {
"node": ">= 0.4"
@@ -4310,16 +4401,73 @@
}
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
@@ -4338,16 +4486,19 @@
}
},
"node_modules/string.prototype.trim": {
- "version": "1.2.9",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz",
- "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==",
+ "version": "1.2.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
+ "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-data-property": "^1.1.4",
"define-properties": "^1.2.1",
- "es-abstract": "^1.23.0",
- "es-object-atoms": "^1.0.0"
+ "es-abstract": "^1.23.5",
+ "es-object-atoms": "^1.0.0",
+ "has-property-descriptors": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -4357,16 +4508,20 @@
}
},
"node_modules/string.prototype.trimend": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz",
- "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==",
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
+ "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
},
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -4612,9 +4767,9 @@
}
},
"node_modules/unplugin": {
- "version": "1.16.0",
- "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.16.0.tgz",
- "integrity": "sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==",
+ "version": "2.0.0-beta.1",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-2.0.0-beta.1.tgz",
+ "integrity": "sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4622,22 +4777,22 @@
"webpack-virtual-modules": "^0.6.2"
},
"engines": {
- "node": ">=14.0.0"
+ "node": ">=18.12.0"
}
},
"node_modules/unplugin-fonts": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/unplugin-fonts/-/unplugin-fonts-1.1.1.tgz",
- "integrity": "sha512-/Aw/rL9D2aslGGM0vi+2R2aG508RSwawLnnBuo+JDSqYc4cHJO1R1phllhN6GysEhBp/6a4B6+vSFPVapWyAAw==",
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/unplugin-fonts/-/unplugin-fonts-1.3.1.tgz",
+ "integrity": "sha512-GmaJWPAWH6lBI4fP8xKdbMZJwTgsnr8PGJOfQE52jlod8QkqSO4M529Nox2L8zYapjB5hox2wCu4N3c/LOal/A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "fast-glob": "^3.2.12",
- "unplugin": "^1.3.1"
+ "fast-glob": "^3.3.2",
+ "unplugin": "2.0.0-beta.1"
},
"peerDependencies": {
"@nuxt/kit": "^3.0.0",
- "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
+ "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
@@ -4709,27 +4864,41 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/unplugin-vue-components/node_modules/unplugin": {
+ "version": "1.16.0",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.16.0.tgz",
+ "integrity": "sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "webpack-virtual-modules": "^0.6.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
"node_modules/unplugin-vue-router": {
- "version": "0.10.8",
- "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.10.8.tgz",
- "integrity": "sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw==",
+ "version": "0.10.9",
+ "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.10.9.tgz",
+ "integrity": "sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.25.4",
- "@rollup/pluginutils": "^5.1.0",
- "@vue-macros/common": "^1.12.2",
+ "@babel/types": "^7.26.0",
+ "@rollup/pluginutils": "^5.1.3",
+ "@vue-macros/common": "^1.15.0",
"ast-walker-scope": "^0.6.2",
"chokidar": "^3.6.0",
"fast-glob": "^3.3.2",
"json5": "^2.2.3",
- "local-pkg": "^0.5.0",
- "magic-string": "^0.30.11",
- "mlly": "^1.7.1",
+ "local-pkg": "^0.5.1",
+ "magic-string": "^0.30.14",
+ "mlly": "^1.7.3",
"pathe": "^1.1.2",
"scule": "^1.3.0",
- "unplugin": "^1.12.2",
- "yaml": "^2.5.0"
+ "unplugin": "2.0.0-beta.1",
+ "yaml": "^2.6.1"
},
"peerDependencies": {
"vue-router": "^4.4.0"
@@ -4921,13 +5090,13 @@
}
},
"node_modules/vue-i18n": {
- "version": "10.0.4",
- "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-10.0.4.tgz",
- "integrity": "sha512-1xkzVxqBLk2ZFOmeI+B5r1J7aD/WtNJ4j9k2mcFcQo5BnOmHBmD7z4/oZohh96AAaRZ4Q7mNQvxc9h+aT+Md3w==",
+ "version": "10.0.5",
+ "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-10.0.5.tgz",
+ "integrity": "sha512-9/gmDlCblz3i8ypu/afiIc/SUIfTTE1mr0mZhb9pk70xo2csHAM9mp2gdQ3KD2O0AM3Hz/5ypb+FycTj/lHlPQ==",
"license": "MIT",
"dependencies": {
- "@intlify/core-base": "10.0.4",
- "@intlify/shared": "10.0.4",
+ "@intlify/core-base": "10.0.5",
+ "@intlify/shared": "10.0.5",
"@vue/devtools-api": "^6.5.0"
},
"engines": {
@@ -4957,9 +5126,9 @@
}
},
"node_modules/vuetify": {
- "version": "3.7.4",
- "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.7.4.tgz",
- "integrity": "sha512-Y8UU5wUDQXC3oz2uumPb8IOdvB4XMCxtxnmqdOc+LihNuPlkSgxIwf92ndRzbOtJFKHsggFUxpyLqpQp+A+5kg==",
+ "version": "3.7.5",
+ "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.7.5.tgz",
+ "integrity": "sha512-5aiSz8WJyGzYe3yfgDbzxsFATwHvKtdvFAaUJEDTx7xRv55s3YiOho/MFhs5iTbmh2VT4ToRgP0imBUP660UOw==",
"license": "MIT",
"engines": {
"node": "^12.20 || >=14.13"
@@ -5010,42 +5179,45 @@
}
},
"node_modules/which-boxed-primitive": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
- "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz",
+ "integrity": "sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.0",
+ "is-number-object": "^1.1.0",
+ "is-string": "^1.1.0",
+ "is-symbol": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/which-builtin-type": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz",
- "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
+ "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
+ "call-bound": "^1.0.2",
"function.prototype.name": "^1.1.6",
"has-tostringtag": "^1.0.2",
"is-async-function": "^2.0.0",
- "is-date-object": "^1.0.5",
+ "is-date-object": "^1.1.0",
"is-finalizationregistry": "^1.1.0",
"is-generator-function": "^1.0.10",
- "is-regex": "^1.1.4",
+ "is-regex": "^1.2.1",
"is-weakref": "^1.0.2",
"isarray": "^2.0.5",
- "which-boxed-primitive": "^1.0.2",
+ "which-boxed-primitive": "^1.1.0",
"which-collection": "^1.0.2",
- "which-typed-array": "^1.1.15"
+ "which-typed-array": "^1.1.16"
},
"engines": {
"node": ">= 0.4"
@@ -5074,9 +5246,9 @@
}
},
"node_modules/which-typed-array": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz",
- "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==",
+ "version": "1.1.16",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz",
+ "integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
diff --git a/src/AdminUI/public/i18n/messages_i18n-en_us.js b/src/AdminUI/public/i18n/messages_i18n-en_us.js
index 74f76edd..30388792 100644
--- a/src/AdminUI/public/i18n/messages_i18n-en_us.js
+++ b/src/AdminUI/public/i18n/messages_i18n-en_us.js
@@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
-VersaoProduto: '0.42',
+VersaoProduto: '0.43',
NomeVisorTelas: 'Display Viewer',
NomeVisorEventos: 'Events Viewer',
diff --git a/src/AdminUI/public/i18n/messages_i18n-pt_br.js b/src/AdminUI/public/i18n/messages_i18n-pt_br.js
index e36d4bdf..3cb7fb9d 100644
--- a/src/AdminUI/public/i18n/messages_i18n-pt_br.js
+++ b/src/AdminUI/public/i18n/messages_i18n-pt_br.js
@@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
-VersaoProduto: '0.42',
+VersaoProduto: '0.43',
NomeVisorTelas: 'Visor de Telas',
NomeVisorEventos: 'Visor de Eventos',
diff --git a/src/AdminUI/public/i18n/messages_i18n-uk_ua.js b/src/AdminUI/public/i18n/messages_i18n-uk_ua.js
index 55b4bd04..a0af29ec 100644
--- a/src/AdminUI/public/i18n/messages_i18n-uk_ua.js
+++ b/src/AdminUI/public/i18n/messages_i18n-uk_ua.js
@@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
-VersaoProduto: '0.42',
+VersaoProduto: '0.43',
NomeVisorTelas: 'Перегляд ',
NomeVisorEventos: 'Події',
diff --git a/src/AdminUI/public/i18n/messages_i18n.js b/src/AdminUI/public/i18n/messages_i18n.js
index 74f76edd..30388792 100644
--- a/src/AdminUI/public/i18n/messages_i18n.js
+++ b/src/AdminUI/public/i18n/messages_i18n.js
@@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
-VersaoProduto: '0.42',
+VersaoProduto: '0.43',
NomeVisorTelas: 'Display Viewer',
NomeVisorEventos: 'Events Viewer',
diff --git a/src/AdminUI/public/release_notes.txt b/src/AdminUI/public/release_notes.txt
index 8e3077a4..d56b8272 100644
--- a/src/AdminUI/public/release_notes.txt
+++ b/src/AdminUI/public/release_notes.txt
@@ -135,6 +135,34 @@ Inkscape+SAGE:
-------------------------------------------------------------------
+Notes for version 0.43:
+
+* ATTENTION: The default SVG folder has been moved to "c:\json-scada\svg\".
+
+* Default login credentials: username=admin password=jsonscada.
+* Metabase credentials: username=json@scada.com password=jsonscada123.
+* Fix Grafana vars in URLs not working (Curves Viewer).
+* Allow to set protocolDestination for OPC-UA_SERVER driver in Tags/AdminUI.
+* cs_data_processor: Fix single quote escape for postgres insert.
+* cs_data_processor: avoid conflicts when updating postgresql with repeated tag on same insert.
+* NPM packages updated.
+* Custom developments: Astro framework update to version 5.0.5. API improvements.
+* MongoDB Compass updated to 1.45.0.
+* MongoDB Community Server updated to 8.0.4.
+* Telegraf runtime updated to 1.33.0.
+
+Requirements and recommendations:
+
+* Windows 10/11 64 bits or Server >=2019, Windows PowerShell. At least 20GB of free space in the "C:" drive.
+* Administrative rights. Corporate Windows policies may cause problems with the creation of services and the opening of TCP ports.
+* Free TCP ports 6688, 6689, 27017, 5432, 80, 8080, 3000, 3001, 9000. Other ports may be required for optional services and protocols.
+* If the server already has MongoDB, PostgreSQL, Grafana, Metabase, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
+* Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.
+* If using VirtualBox configure "paravirtualization interface"=KVM, otherwise Nodejs errors may occur.
+* MongoDB requires AVX instructions on x86 CPU.
+
+-------------------------------------------------------------------
+
Notes for version 0.42:
* ATTENTION: The default SVG folder has been moved to "c:\json-scada\svg\".
diff --git a/src/AdminUI/src/App.vue b/src/AdminUI/src/App.vue
index e3779117..7cc094f0 100644
--- a/src/AdminUI/src/App.vue
+++ b/src/AdminUI/src/App.vue
@@ -119,7 +119,7 @@
import { useRouter } from 'vue-router'
import { STORAGE_KEY } from './i18n'
- const version = ref('v0.42-alpha')
+ const version = ref('v0.43-alpha')
const router = useRouter()
const theme = ref('dark')
const vuetifyTheme = useTheme()
diff --git a/src/OPC-UA-Server/package-lock.json b/src/OPC-UA-Server/package-lock.json
index 1830543e..c3d9c382 100644
--- a/src/OPC-UA-Server/package-lock.json
+++ b/src/OPC-UA-Server/package-lock.json
@@ -237,9 +237,9 @@
}
},
"node_modules/@types/jsrsasign": {
- "version": "10.5.14",
- "resolved": "https://registry.npmjs.org/@types/jsrsasign/-/jsrsasign-10.5.14.tgz",
- "integrity": "sha512-lppSlfK6etu+cuKs40K4rg8As79PH6hzIB+v55zSqImbSH3SE6Fm8MBHCiI91cWlAP3Z4igtJK1VL3fSN09blQ==",
+ "version": "10.5.15",
+ "resolved": "https://registry.npmjs.org/@types/jsrsasign/-/jsrsasign-10.5.15.tgz",
+ "integrity": "sha512-3stUTaSRtN09PPzVWR6aySD9gNnuymz+WviNHoTb85dKu+BjaV4uBbWWGykBBJkfwPtcNZVfTn2lbX00U+yhpQ==",
"license": "MIT"
},
"node_modules/@types/lodash": {
@@ -274,9 +274,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -467,9 +467,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -494,16 +494,44 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -667,6 +695,20 @@
"node": ">=6"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/ecc-jsbn": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
@@ -693,13 +735,10 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -713,6 +752,18 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/escalade": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
@@ -762,16 +813,21 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -808,12 +864,12 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -846,22 +902,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -933,13 +977,13 @@
}
},
"node_modules/is-arguments": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
- "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz",
+ "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
@@ -1049,14 +1093,23 @@
"license": "ISC"
},
"node_modules/ltx": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ltx/-/ltx-3.0.0.tgz",
- "integrity": "sha512-bu3/4/ApUmMqVNuIkHaRhqVtEi6didYcBDIF56xhPRCzVpdztCipZ62CUuaxMlMBUzaVL93+4LZRqe02fuAG6A==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/ltx/-/ltx-3.1.1.tgz",
+ "integrity": "sha512-1p19JqGI/OZEe4XoBM1i5/P2X/gO14RVqWgbPZJE5xOKrhbR7DznKi8hJhe1vTmgA6MSbE7Khg1uJMBxid4uCQ==",
"license": "MIT",
"engines": {
"node": ">= 12.4.0"
}
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/memory-pager": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
@@ -1106,13 +1159,13 @@
}
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -1120,7 +1173,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
@@ -2722,9 +2775,9 @@
}
},
"node_modules/which-typed-array": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz",
- "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==",
+ "version": "1.1.16",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz",
+ "integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==",
"license": "MIT",
"dependencies": {
"available-typed-arrays": "^1.0.7",
diff --git a/src/alarm_beep/package-lock.json b/src/alarm_beep/package-lock.json
index b8024ec7..0e57abed 100644
--- a/src/alarm_beep/package-lock.json
+++ b/src/alarm_beep/package-lock.json
@@ -38,9 +38,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -59,13 +59,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -73,7 +73,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/backup-mongo/package-lock.json b/src/backup-mongo/package-lock.json
index 53205654..0189d260 100644
--- a/src/backup-mongo/package-lock.json
+++ b/src/backup-mongo/package-lock.json
@@ -37,9 +37,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -52,13 +52,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -66,7 +66,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/carbone-reports/package-lock.json b/src/carbone-reports/package-lock.json
index 057ee660..c76c3c76 100644
--- a/src/carbone-reports/package-lock.json
+++ b/src/carbone-reports/package-lock.json
@@ -35,9 +35,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -123,13 +123,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -137,7 +137,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/config_server_for_excel/package-lock.json b/src/config_server_for_excel/package-lock.json
index 370bfd60..10117d85 100644
--- a/src/config_server_for_excel/package-lock.json
+++ b/src/config_server_for_excel/package-lock.json
@@ -82,9 +82,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -100,16 +100,44 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -208,6 +236,20 @@
"npm": "1.2.8000 || >= 1.4.16"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -224,13 +266,10 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -244,6 +283,18 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -260,9 +311,9 @@
}
},
"node_modules/express": {
- "version": "4.21.1",
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
- "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
"dependencies": {
"accepts": "~1.3.8",
@@ -284,7 +335,7 @@
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
- "path-to-regexp": "0.1.10",
+ "path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
@@ -299,6 +350,10 @@
},
"engines": {
"node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/finalhandler": {
@@ -347,16 +402,21 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -366,12 +426,12 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -389,22 +449,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -502,6 +550,15 @@
"integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==",
"license": "MIT"
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -569,13 +626,13 @@
}
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -583,7 +640,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
@@ -673,9 +730,9 @@
}
},
"node_modules/path-to-regexp": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
- "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
"license": "MIT"
},
"node_modules/proxy-addr": {
@@ -843,15 +900,69 @@
"license": "ISC"
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
diff --git a/src/cs_custom_processor/package-lock.json b/src/cs_custom_processor/package-lock.json
index 42da923d..b4350888 100644
--- a/src/cs_custom_processor/package-lock.json
+++ b/src/cs_custom_processor/package-lock.json
@@ -38,9 +38,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -59,13 +59,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -73,7 +73,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/cs_data_processor/cs_data_processor.js b/src/cs_data_processor/cs_data_processor.js
index ff44d39a..659599fb 100644
--- a/src/cs_data_processor/cs_data_processor.js
+++ b/src/cs_data_processor/cs_data_processor.js
@@ -235,7 +235,7 @@ const pipeline = [
let cntR = 0
sqlTransaction =
sqlTransaction +
- 'INSERT INTO realtime_data (tag, time_tag, json_data) VALUES '
+ 'WITH ordered_values AS ( SELECT DISTINCT ON (tag) tag, time_tag, json_data FROM (VALUES '
while (!sqlRtDataQueue.isEmpty()) {
doInsertData = true
let sql = sqlRtDataQueue.peek()
@@ -247,7 +247,16 @@ const pipeline = [
sqlTransaction = sqlTransaction + ' \n'
sqlTransaction =
sqlTransaction +
- 'ON CONFLICT (tag) DO UPDATE SET time_tag=EXCLUDED.time_tag, json_data=EXCLUDED.json_data;\n'
+ `) AS t(tag, time_tag, json_data)
+ ORDER BY tag, time_tag DESC
+ )
+ INSERT INTO realtime_data (tag, time_tag, json_data)
+ SELECT tag, time_tag::timestamptz, json_data::jsonb
+ FROM ordered_values
+ ON CONFLICT (tag) DO UPDATE
+ SET time_tag = EXCLUDED.time_tag,
+ json_data = EXCLUDED.json_data;
+ `
if (cntR) Log.log('PGSQL RT updates ' + cntR)
if (doInsertData) {
@@ -1063,7 +1072,7 @@ const pipeline = [
sqlHistQueue.enqueue({
sql:
"'" +
- change.fullDocument.tag +
+ change.fullDocument.tag.replaceAll("'", "''") +
"'," +
"'" +
change.updateDescription.updatedFields.sourceDataUpdate.timeTag.toISOString() +
@@ -1072,10 +1081,10 @@ const pipeline = [
',' +
"'{" +
'"v": ' +
- JSON.stringify(valueJson).replaceAll("'", ' ') +
+ JSON.stringify(valueJson).replaceAll("'", "''") +
',' +
'"s": "' +
- valueString.replaceAll("'", ' ') +
+ valueString.replaceAll("'", "''") +
'"}\',' +
(update.timeTagAtSource !== null
? "'" +
@@ -1135,13 +1144,13 @@ const pipeline = [
change.fullDocument.alarmed = alarmed
let queueStr =
"'" +
- change.fullDocument.tag +
+ change.fullDocument.tag.replaceAll("'", "''") +
"'," +
"'" +
new Date().toISOString() +
"'," +
"'" +
- JSON.stringify(change.fullDocument) +
+ JSON.stringify(change.fullDocument).replaceAll("'", "''") +
"'"
sqlRtDataQueue.enqueue(queueStr)
} else
diff --git a/src/cs_data_processor/package-lock.json b/src/cs_data_processor/package-lock.json
index 516dd401..a276296e 100644
--- a/src/cs_data_processor/package-lock.json
+++ b/src/cs_data_processor/package-lock.json
@@ -39,9 +39,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -75,13 +75,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -89,7 +89,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/custom-developments/README.md b/src/custom-developments/README.md
index f6c7f6b9..fd37107b 100644
--- a/src/custom-developments/README.md
+++ b/src/custom-developments/README.md
@@ -15,7 +15,7 @@ Use the example templates to create your own custom developments.
scadaOpcApi.getGroup1List(): Promise
// Get realtime data from tag names list
- scadaOpcApi.readRealTimeData(
+ scadaOpcApi.getRealTimeData(
variables: string[]
): Promise
@@ -48,6 +48,12 @@ Use the example templates to create your own custom developments.
commandTag: string,
value: number
): Promise
+
+ // Write the given extended properties of a tag
+ scadaOpcApi.writeTagProperties(
+ tag: string,
+ properties: ExtendedProperties
+ ): Promise
```
6. Build the project and run it.
diff --git a/src/custom-developments/advanced_dashboard/package-lock.json b/src/custom-developments/advanced_dashboard/package-lock.json
index 6b2087da..5c0a2060 100644
--- a/src/custom-developments/advanced_dashboard/package-lock.json
+++ b/src/custom-developments/advanced_dashboard/package-lock.json
@@ -9,13 +9,13 @@
"version": "0.0.1",
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
@@ -83,9 +83,9 @@
"license": "MIT"
},
"node_modules/@astrojs/internal-helpers": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.1.tgz",
- "integrity": "sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==",
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.2.tgz",
+ "integrity": "sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==",
"license": "MIT"
},
"node_modules/@astrojs/language-server": {
@@ -130,16 +130,17 @@
}
},
"node_modules/@astrojs/markdown-remark": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-5.3.0.tgz",
- "integrity": "sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.0.1.tgz",
+ "integrity": "sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==",
"license": "MIT",
"dependencies": {
- "@astrojs/prism": "3.1.0",
+ "@astrojs/prism": "3.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-text": "^4.0.2",
"import-meta-resolve": "^4.1.0",
+ "js-yaml": "^4.1.0",
"mdast-util-definitions": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
@@ -147,7 +148,7 @@
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2",
- "shiki": "^1.22.0",
+ "shiki": "^1.23.1",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
@@ -156,68 +157,68 @@
}
},
"node_modules/@astrojs/prism": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.1.0.tgz",
- "integrity": "sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
+ "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
"license": "MIT",
"dependencies": {
"prismjs": "^1.29.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/react": {
- "version": "3.6.3",
- "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-3.6.3.tgz",
- "integrity": "sha512-5ihLQDH5Runddug5AZYlnp/Q5T81QxhwnWJXA9rchBAdh11c6UhBbv9Kdk7b2PkXoEU70CGWBP9hSh0VCR58eA==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-4.1.0.tgz",
+ "integrity": "sha512-8F0ncvcCexVeQZMwPouLSFuzCK1KXUIYQ57lW3ZG2p7B5DGAajXGanb/CGF7MMSpX8Z0t9sELQqLHOCV/+78Ig==",
"license": "MIT",
"dependencies": {
- "@vitejs/plugin-react": "^4.3.3",
+ "@vitejs/plugin-react": "^4.3.4",
"ultrahtml": "^1.5.3",
- "vite": "^5.4.10"
+ "vite": "^6.0.1"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
},
"peerDependencies": {
- "@types/react": "^17.0.50 || ^18.0.21",
- "@types/react-dom": "^17.0.17 || ^18.0.6",
- "react": "^17.0.2 || ^18.0.0 || ^19.0.0-beta",
- "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0-beta"
+ "@types/react": "^17.0.50 || ^18.0.21 || ^19.0.0",
+ "@types/react-dom": "^17.0.17 || ^18.0.6 || ^19.0.0",
+ "react": "^17.0.2 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@astrojs/tailwind": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.2.tgz",
- "integrity": "sha512-IvOF0W/dtHElcXvhrPR35nHmhyV3cfz1EzPitMGtU7sYy9Hci3BNK1To6FWmVuuNKPxza1IgCGetSynJZL7fOg==",
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.3.tgz",
+ "integrity": "sha512-XF7WhXRhqEHGvADqc0kDtF7Yv/g4wAWTaj91jBBTBaYnc4+MQLH94duFfFa4NlTkRG40VQd012eF3MhO3Kk+bg==",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.20",
- "postcss": "^8.4.47",
+ "postcss": "^8.4.49",
"postcss-load-config": "^4.0.2"
},
"peerDependencies": {
- "astro": "^3.0.0 || ^4.0.0 || ^5.0.0-beta.0",
+ "astro": "^3.0.0 || ^4.0.0 || ^5.0.0",
"tailwindcss": "^3.0.24"
}
},
"node_modules/@astrojs/telemetry": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.1.0.tgz",
- "integrity": "sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.0.tgz",
+ "integrity": "sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==",
"license": "MIT",
"dependencies": {
- "ci-info": "^4.0.0",
- "debug": "^4.3.4",
+ "ci-info": "^4.1.0",
+ "debug": "^4.3.7",
"dlv": "^1.1.3",
- "dset": "^3.1.3",
+ "dset": "^3.1.4",
"is-docker": "^3.0.0",
- "is-wsl": "^3.0.0",
+ "is-wsl": "^3.1.0",
"which-pm-runs": "^1.1.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/yaml2ts": {
@@ -244,9 +245,9 @@
}
},
"node_modules/@babel/compat-data": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz",
- "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
+ "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -283,13 +284,13 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz",
- "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
+ "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.26.2",
- "@babel/types": "^7.26.0",
+ "@babel/parser": "^7.26.3",
+ "@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
@@ -298,18 +299,6 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
- "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
@@ -406,12 +395,12 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
- "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
+ "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.0"
+ "@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -420,40 +409,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
- "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz",
- "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.25.9",
- "@babel/plugin-syntax-jsx": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
@@ -511,16 +466,16 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz",
- "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==",
+ "version": "7.26.4",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
+ "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.25.9",
- "@babel/generator": "^7.25.9",
- "@babel/parser": "^7.25.9",
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.3",
+ "@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
- "@babel/types": "^7.25.9",
+ "@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
@@ -529,9 +484,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
- "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
+ "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
@@ -894,6 +849,22 @@
"node": ">=12"
}
},
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/openbsd-x64": {
"version": "0.21.5",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
@@ -1393,9 +1364,9 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
@@ -1492,9 +1463,9 @@
}
},
"node_modules/@radix-ui/react-compose-refs": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz",
- "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.1.tgz",
+ "integrity": "sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
@@ -1516,12 +1487,12 @@
}
},
"node_modules/@radix-ui/react-slot": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz",
- "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.1.tgz",
+ "integrity": "sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==",
"license": "MIT",
"dependencies": {
- "@radix-ui/react-compose-refs": "1.1.0"
+ "@radix-ui/react-compose-refs": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -1562,9 +1533,9 @@
"license": "MIT"
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.4.tgz",
- "integrity": "sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz",
+ "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==",
"cpu": [
"arm"
],
@@ -1575,9 +1546,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.4.tgz",
- "integrity": "sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz",
+ "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==",
"cpu": [
"arm64"
],
@@ -1588,9 +1559,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.4.tgz",
- "integrity": "sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz",
+ "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==",
"cpu": [
"arm64"
],
@@ -1601,9 +1572,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.4.tgz",
- "integrity": "sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz",
+ "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==",
"cpu": [
"x64"
],
@@ -1614,9 +1585,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.4.tgz",
- "integrity": "sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz",
+ "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==",
"cpu": [
"arm64"
],
@@ -1627,9 +1598,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.4.tgz",
- "integrity": "sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz",
+ "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==",
"cpu": [
"x64"
],
@@ -1640,9 +1611,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.4.tgz",
- "integrity": "sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz",
+ "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==",
"cpu": [
"arm"
],
@@ -1653,9 +1624,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.4.tgz",
- "integrity": "sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz",
+ "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==",
"cpu": [
"arm"
],
@@ -1666,9 +1637,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.4.tgz",
- "integrity": "sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz",
+ "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==",
"cpu": [
"arm64"
],
@@ -1679,9 +1650,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.4.tgz",
- "integrity": "sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz",
+ "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==",
"cpu": [
"arm64"
],
@@ -1691,10 +1662,23 @@
"linux"
]
},
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.4.tgz",
- "integrity": "sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz",
+ "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==",
"cpu": [
"ppc64"
],
@@ -1705,9 +1689,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.4.tgz",
- "integrity": "sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==",
"cpu": [
"riscv64"
],
@@ -1718,9 +1702,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.4.tgz",
- "integrity": "sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz",
+ "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==",
"cpu": [
"s390x"
],
@@ -1731,9 +1715,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.4.tgz",
- "integrity": "sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz",
+ "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==",
"cpu": [
"x64"
],
@@ -1744,9 +1728,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.4.tgz",
- "integrity": "sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz",
+ "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==",
"cpu": [
"x64"
],
@@ -1757,9 +1741,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.4.tgz",
- "integrity": "sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz",
+ "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==",
"cpu": [
"arm64"
],
@@ -1770,9 +1754,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.4.tgz",
- "integrity": "sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==",
"cpu": [
"ia32"
],
@@ -1783,9 +1767,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.4.tgz",
- "integrity": "sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==",
"cpu": [
"x64"
],
@@ -1796,44 +1780,44 @@
]
},
"node_modules/@shikijs/core": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.23.1.tgz",
- "integrity": "sha512-NuOVgwcHgVC6jBVH5V7iblziw6iQbWWHrj5IlZI3Fqu2yx9awH7OIQkXIcsHsUmY19ckwSgUMgrqExEyP5A0TA==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.24.2.tgz",
+ "integrity": "sha512-BpbNUSKIwbKrRRA+BQj0BEWSw+8kOPKDJevWeSE/xIqGX7K0xrCZQ9kK0nnEQyrzsUoka1l81ZtJ2mGaCA32HQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4",
"hast-util-to-html": "^9.0.3"
}
},
"node_modules/@shikijs/engine-javascript": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.23.1.tgz",
- "integrity": "sha512-i/LdEwT5k3FVu07SiApRFwRcSJs5QM9+tod5vYCPig1Ywi8GR30zcujbxGQFJHwYD7A5BUqagi8o5KS+LEVgBg==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.24.2.tgz",
+ "integrity": "sha512-EqsmYBJdLEwEiO4H+oExz34a5GhhnVp+jH9Q/XjPjmBPc6TE/x4/gD0X3i0EbkKKNqXYHHJTJUpOLRQNkEzS9Q==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
- "oniguruma-to-es": "0.4.1"
+ "oniguruma-to-es": "0.7.0"
}
},
"node_modules/@shikijs/engine-oniguruma": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.23.1.tgz",
- "integrity": "sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.2.tgz",
+ "integrity": "sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0"
}
},
"node_modules/@shikijs/types": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.23.1.tgz",
- "integrity": "sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.2.tgz",
+ "integrity": "sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==",
"license": "MIT",
"dependencies": {
"@shikijs/vscode-textmate": "^9.3.0",
@@ -1841,9 +1825,9 @@
}
},
"node_modules/@shikijs/vscode-textmate": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz",
- "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==",
+ "version": "9.3.1",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.1.tgz",
+ "integrity": "sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==",
"license": "MIT"
},
"node_modules/@types/babel__core": {
@@ -2005,9 +1989,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"devOptional": true,
"license": "MIT",
"dependencies": {
@@ -2015,15 +1999,15 @@
}
},
"node_modules/@types/prop-types": {
- "version": "15.7.13",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz",
- "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==",
+ "version": "15.7.14",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
+ "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
"license": "MIT"
},
"node_modules/@types/react": {
- "version": "18.3.12",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz",
- "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==",
+ "version": "18.3.16",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.16.tgz",
+ "integrity": "sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw==",
"license": "MIT",
"dependencies": {
"@types/prop-types": "*",
@@ -2031,12 +2015,12 @@
}
},
"node_modules/@types/react-dom": {
- "version": "18.3.1",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz",
- "integrity": "sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==",
+ "version": "18.3.5",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz",
+ "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
"license": "MIT",
- "dependencies": {
- "@types/react": "*"
+ "peerDependencies": {
+ "@types/react": "^18.0.0"
}
},
"node_modules/@types/unist": {
@@ -2046,9 +2030,9 @@
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
- "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
+ "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==",
"license": "ISC"
},
"node_modules/@vitejs/plugin-react": {
@@ -2071,13 +2055,13 @@
}
},
"node_modules/@volar/kit": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.10.tgz",
- "integrity": "sha512-ul+rLeO9RlFDgkY/FhPWMnpFqAsjvjkKz8VZeOY5YCJMwTblmmSBlNJtFNxSBx9t/k1q80nEthLyxiJ50ZbIAg==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.11.tgz",
+ "integrity": "sha512-ups5RKbMzMCr6RKafcCqDRnJhJDNWqo2vfekwOAj6psZ15v5TlcQFQAyokQJ3wZxVkzxrQM+TqTRDENfQEXpmA==",
"license": "MIT",
"dependencies": {
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"typesafe-path": "^0.2.2",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
@@ -2087,23 +2071,23 @@
}
},
"node_modules/@volar/language-core": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.10.tgz",
- "integrity": "sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz",
+ "integrity": "sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==",
"license": "MIT",
"dependencies": {
- "@volar/source-map": "2.4.10"
+ "@volar/source-map": "2.4.11"
}
},
"node_modules/@volar/language-server": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.10.tgz",
- "integrity": "sha512-odQsgrJh8hOXfxkSj/BSnpjThb2/KDhbxZnG/XAEx6E3QGDQv4hAOz9GWuKoNs0tkjgwphQGIwDMT1JYaTgRJw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.11.tgz",
+ "integrity": "sha512-W9P8glH1M8LGREJ7yHRCANI5vOvTrRO15EMLdmh5WNF9sZYSEbQxiHKckZhvGIkbeR1WAlTl3ORTrJXUghjk7g==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-core": "2.4.11",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"path-browserify": "^1.0.1",
"request-light": "^0.7.0",
"vscode-languageserver": "^9.0.1",
@@ -2113,30 +2097,30 @@
}
},
"node_modules/@volar/language-service": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.10.tgz",
- "integrity": "sha512-VxUiWS11rnRzakkqw5x1LPhsz+RBfD0CrrFarLGW2/voliYXEdCuSOM3r8JyNRvMvP4uwhD38ccAdTcULQEAIQ==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.11.tgz",
+ "integrity": "sha512-KIb6g8gjUkS2LzAJ9bJCLIjfsJjeRtmXlu7b2pDFGD3fNqdbC53cCAKzgWDs64xtQVKYBU13DLWbtSNFtGuMLQ==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
}
},
"node_modules/@volar/source-map": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.10.tgz",
- "integrity": "sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.11.tgz",
+ "integrity": "sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==",
"license": "MIT"
},
"node_modules/@volar/typescript": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.10.tgz",
- "integrity": "sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.11.tgz",
+ "integrity": "sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"path-browserify": "^1.0.1",
"vscode-uri": "^3.0.8"
}
@@ -2325,21 +2309,17 @@
}
},
"node_modules/astro": {
- "version": "4.16.16",
- "resolved": "https://registry.npmjs.org/astro/-/astro-4.16.16.tgz",
- "integrity": "sha512-H1CttrV6+JFrDBQx0Mcbq5i5AeLhCbztB786+9wEu3svWL/QPNeCGqF0dgNORAYmP+rODGCPu/y9qKSh87iLuA==",
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/astro/-/astro-5.0.5.tgz",
+ "integrity": "sha512-xfptdmurDsQcj/Anc7mU+eKlcyV7ppJIlmaSwhX3ZWwK5N/0rGKVmUqnuILgR6MB0XVJiIfublNzDGoyj4Q6BQ==",
"license": "MIT",
"dependencies": {
"@astrojs/compiler": "^2.10.3",
- "@astrojs/internal-helpers": "0.4.1",
- "@astrojs/markdown-remark": "5.3.0",
- "@astrojs/telemetry": "3.1.0",
- "@babel/core": "^7.26.0",
- "@babel/plugin-transform-react-jsx": "^7.25.9",
- "@babel/types": "^7.26.0",
+ "@astrojs/internal-helpers": "0.4.2",
+ "@astrojs/markdown-remark": "6.0.1",
+ "@astrojs/telemetry": "3.2.0",
"@oslojs/encoding": "^1.1.0",
"@rollup/pluginutils": "^5.1.3",
- "@types/babel__core": "^7.20.5",
"@types/cookie": "^0.6.0",
"acorn": "^8.14.0",
"aria-query": "^5.3.2",
@@ -2362,7 +2342,6 @@
"fast-glob": "^3.3.2",
"flattie": "^1.1.1",
"github-slugger": "^2.0.0",
- "gray-matter": "^4.0.3",
"html-escaper": "^3.0.3",
"http-cache-semantics": "^4.1.1",
"js-yaml": "^4.1.0",
@@ -2372,7 +2351,6 @@
"micromatch": "^4.0.8",
"mrmime": "^2.0.0",
"neotraverse": "^0.6.18",
- "ora": "^8.1.1",
"p-limit": "^6.1.0",
"p-queue": "^8.0.1",
"preferred-pm": "^4.0.0",
@@ -2382,13 +2360,15 @@
"shiki": "^1.23.1",
"tinyexec": "^0.3.1",
"tsconfck": "^3.1.4",
+ "ultrahtml": "^1.5.3",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
- "vite": "^5.4.11",
+ "vite": "^6.0.1",
"vitefu": "^1.0.4",
"which-pm": "^3.0.0",
"xxhash-wasm": "^1.1.0",
"yargs-parser": "^21.1.1",
+ "yocto-spinner": "^0.1.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5",
"zod-to-ts": "^1.2.0"
@@ -2397,7 +2377,7 @@
"astro": "astro.js"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0",
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0",
"npm": ">=9.6.5",
"pnpm": ">=7.1.0"
},
@@ -2541,9 +2521,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.2",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz",
- "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==",
+ "version": "4.24.3",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
+ "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
"funding": [
{
"type": "opencollective",
@@ -2560,9 +2540,9 @@
],
"license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001669",
- "electron-to-chromium": "^1.5.41",
- "node-releases": "^2.0.18",
+ "caniuse-lite": "^1.0.30001688",
+ "electron-to-chromium": "^1.5.73",
+ "node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.1"
},
"bin": {
@@ -2594,9 +2574,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001684",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz",
- "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==",
+ "version": "1.0.30001688",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz",
+ "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==",
"funding": [
{
"type": "opencollective",
@@ -2719,33 +2699,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cli-cursor": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
- "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
- "license": "MIT",
- "dependencies": {
- "restore-cursor": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cli-spinners": {
- "version": "2.9.2",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
- "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
@@ -3365,9 +3318,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -3506,9 +3459,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
- "version": "1.5.65",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.65.tgz",
- "integrity": "sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw==",
+ "version": "1.5.73",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz",
+ "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==",
"license": "ISC"
},
"node_modules/emmet": {
@@ -3650,18 +3603,6 @@
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"license": "MIT"
},
- "node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@@ -3899,43 +3840,6 @@
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"license": "ISC"
},
- "node_modules/gray-matter": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
- "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
- "license": "MIT",
- "dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/gray-matter/node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/gray-matter/node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "license": "MIT",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
@@ -4038,9 +3942,9 @@
}
},
"node_modules/hast-util-to-html": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.3.tgz",
- "integrity": "sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==",
+ "version": "9.0.4",
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz",
+ "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
@@ -4198,9 +4102,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "version": "2.16.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
+ "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"license": "MIT",
"dependencies": {
"hasown": "^2.0.2"
@@ -4227,15 +4131,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
@@ -4284,18 +4179,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-interactive": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
- "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
@@ -4317,18 +4200,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-unicode-supported": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
- "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-wsl": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
@@ -4393,9 +4264,9 @@
}
},
"node_modules/jsesc": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
- "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
@@ -4428,15 +4299,6 @@
"integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==",
"license": "MIT"
},
- "node_modules/kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/kleur": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
@@ -4447,9 +4309,9 @@
}
},
"node_modules/lilconfig": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz",
- "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
"license": "MIT",
"engines": {
"node": ">=14"
@@ -4528,34 +4390,6 @@
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"license": "MIT"
},
- "node_modules/log-symbols": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
- "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "is-unicode-supported": "^1.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
- "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/longest-streak": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
@@ -4597,9 +4431,9 @@
}
},
"node_modules/magic-string": {
- "version": "0.30.14",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz",
- "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==",
+ "version": "0.30.15",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz",
+ "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0"
@@ -5448,18 +5282,6 @@
"url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/mimic-function": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
- "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
@@ -5557,9 +5379,9 @@
}
},
"node_modules/node-releases": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz",
- "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==",
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
"license": "MIT"
},
"node_modules/normalize-path": {
@@ -5598,53 +5420,15 @@
"node": ">= 6"
}
},
- "node_modules/onetime": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
- "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
- "license": "MIT",
- "dependencies": {
- "mimic-function": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/oniguruma-to-es": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.4.1.tgz",
- "integrity": "sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==",
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.7.0.tgz",
+ "integrity": "sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==",
"license": "MIT",
"dependencies": {
"emoji-regex-xs": "^1.0.0",
- "regex": "^5.0.0",
- "regex-recursion": "^4.2.1"
- }
- },
- "node_modules/ora": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/ora/-/ora-8.1.1.tgz",
- "integrity": "sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "cli-cursor": "^5.0.0",
- "cli-spinners": "^2.9.2",
- "is-interactive": "^2.0.0",
- "is-unicode-supported": "^2.0.0",
- "log-symbols": "^6.0.0",
- "stdin-discarder": "^0.2.2",
- "string-width": "^7.2.0",
- "strip-ansi": "^7.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "regex": "^5.0.2",
+ "regex-recursion": "^4.3.0"
}
},
"node_modules/p-limit": {
@@ -6020,9 +5804,9 @@
}
},
"node_modules/prettier": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz",
- "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
+ "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
"license": "MIT",
"optional": true,
"peer": true,
@@ -6168,9 +5952,9 @@
}
},
"node_modules/react-smooth": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.1.tgz",
- "integrity": "sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.3.tgz",
+ "integrity": "sha512-PyxIrra8WZWrMRFcCiJsZ+JqFaxEINAt+v/w++wQKQlmO99Eh3+JTLeKApdTsLX2roBdWYXqPsaS8sO4UmdzIg==",
"license": "MIT",
"dependencies": {
"fast-equals": "^5.0.1",
@@ -6221,9 +6005,9 @@
}
},
"node_modules/recharts": {
- "version": "2.13.3",
- "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.13.3.tgz",
- "integrity": "sha512-YDZ9dOfK9t3ycwxgKbrnDlRC4BHdjlY73fet3a0C1+qGMjXVZe6+VXmpOIIhzkje5MMEL8AN4hLIe4AMskBzlA==",
+ "version": "2.15.0",
+ "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.0.tgz",
+ "integrity": "sha512-cIvMxDfpAmqAmVgc4yb7pgm/O1tmmkl/CjrvXuW+62/+7jj/iF9Ykm+hb/UJt42TREHMyd3gb+pkgoa2MxgDIw==",
"license": "MIT",
"dependencies": {
"clsx": "^2.0.0",
@@ -6239,8 +6023,8 @@
"node": ">=14"
},
"peerDependencies": {
- "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/recharts-scale": {
@@ -6455,12 +6239,12 @@
}
},
"node_modules/resolve": {
- "version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "version": "1.22.9",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
+ "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.13.0",
+ "is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -6471,32 +6255,16 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/restore-cursor": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
- "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
+ "node_modules/retext": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
+ "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
"license": "MIT",
"dependencies": {
- "onetime": "^7.0.0",
- "signal-exit": "^4.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/retext": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
- "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
- "license": "MIT",
- "dependencies": {
- "@types/nlcst": "^2.0.0",
- "retext-latin": "^4.0.0",
- "retext-stringify": "^4.0.0",
- "unified": "^11.0.0"
+ "@types/nlcst": "^2.0.0",
+ "retext-latin": "^4.0.0",
+ "retext-stringify": "^4.0.0",
+ "unified": "^11.0.0"
},
"funding": {
"type": "opencollective",
@@ -6565,9 +6333,9 @@
"license": "Unlicense"
},
"node_modules/rollup": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.4.tgz",
- "integrity": "sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz",
+ "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==",
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.6"
@@ -6580,24 +6348,25 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.27.4",
- "@rollup/rollup-android-arm64": "4.27.4",
- "@rollup/rollup-darwin-arm64": "4.27.4",
- "@rollup/rollup-darwin-x64": "4.27.4",
- "@rollup/rollup-freebsd-arm64": "4.27.4",
- "@rollup/rollup-freebsd-x64": "4.27.4",
- "@rollup/rollup-linux-arm-gnueabihf": "4.27.4",
- "@rollup/rollup-linux-arm-musleabihf": "4.27.4",
- "@rollup/rollup-linux-arm64-gnu": "4.27.4",
- "@rollup/rollup-linux-arm64-musl": "4.27.4",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.27.4",
- "@rollup/rollup-linux-riscv64-gnu": "4.27.4",
- "@rollup/rollup-linux-s390x-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-musl": "4.27.4",
- "@rollup/rollup-win32-arm64-msvc": "4.27.4",
- "@rollup/rollup-win32-ia32-msvc": "4.27.4",
- "@rollup/rollup-win32-x64-msvc": "4.27.4",
+ "@rollup/rollup-android-arm-eabi": "4.28.1",
+ "@rollup/rollup-android-arm64": "4.28.1",
+ "@rollup/rollup-darwin-arm64": "4.28.1",
+ "@rollup/rollup-darwin-x64": "4.28.1",
+ "@rollup/rollup-freebsd-arm64": "4.28.1",
+ "@rollup/rollup-freebsd-x64": "4.28.1",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.28.1",
+ "@rollup/rollup-linux-arm-musleabihf": "4.28.1",
+ "@rollup/rollup-linux-arm64-gnu": "4.28.1",
+ "@rollup/rollup-linux-arm64-musl": "4.28.1",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.28.1",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1",
+ "@rollup/rollup-linux-riscv64-gnu": "4.28.1",
+ "@rollup/rollup-linux-s390x-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-musl": "4.28.1",
+ "@rollup/rollup-win32-arm64-msvc": "4.28.1",
+ "@rollup/rollup-win32-ia32-msvc": "4.28.1",
+ "@rollup/rollup-win32-x64-msvc": "4.28.1",
"fsevents": "~2.3.2"
}
},
@@ -6645,19 +6414,6 @@
"loose-envify": "^1.1.0"
}
},
- "node_modules/section-matter": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -6742,15 +6498,15 @@
}
},
"node_modules/shiki": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.23.1.tgz",
- "integrity": "sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.24.2.tgz",
+ "integrity": "sha512-TR1fi6mkRrzW+SKT5G6uKuc32Dj2EEa7Kj0k8kGqiBINb+C1TiflVOiT9ta6GqOJtC4fraxO5SLUaKBcSY38Fg==",
"license": "MIT",
"dependencies": {
- "@shikijs/core": "1.23.1",
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/core": "1.24.2",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4"
}
@@ -6808,18 +6564,6 @@
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"license": "BSD-3-Clause"
},
- "node_modules/stdin-discarder": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/string-width": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
@@ -6939,15 +6683,6 @@
"node": ">=4"
}
},
- "node_modules/strip-bom-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/sucrase": {
"version": "3.35.0",
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
@@ -7015,9 +6750,9 @@
}
},
"node_modules/tailwindcss": {
- "version": "3.4.15",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz",
- "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==",
+ "version": "3.4.16",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.16.tgz",
+ "integrity": "sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==",
"license": "MIT",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
@@ -7029,7 +6764,7 @@
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"jiti": "^1.21.6",
- "lilconfig": "^2.1.0",
+ "lilconfig": "^3.1.3",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"object-hash": "^3.0.0",
@@ -7108,15 +6843,6 @@
"node": ">=10.13.0"
}
},
- "node_modules/tailwindcss/node_modules/lilconfig": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
- "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/tailwindcss/node_modules/picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
@@ -7240,9 +6966,9 @@
"optional": true
},
"node_modules/type-fest": {
- "version": "4.29.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz",
- "integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==",
+ "version": "4.30.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.1.tgz",
+ "integrity": "sha512-ojFL7eDMX2NF0xMbDwPZJ8sb7ckqtlAi1GsmgsFXvErT9kFTk1r0DuQKvrCh73M6D4nngeHJmvogF9OluXs7Hw==",
"license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=16"
@@ -7477,12 +7203,12 @@
}
},
"node_modules/use-sync-external-store": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz",
- "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz",
+ "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==",
"license": "MIT",
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/util-deprecate": {
@@ -7556,20 +7282,20 @@
}
},
"node_modules/vite": {
- "version": "5.4.11",
- "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz",
- "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.3.tgz",
+ "integrity": "sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==",
"license": "MIT",
"dependencies": {
- "esbuild": "^0.21.3",
- "postcss": "^8.4.43",
- "rollup": "^4.20.0"
+ "esbuild": "^0.24.0",
+ "postcss": "^8.4.49",
+ "rollup": "^4.23.0"
},
"bin": {
"vite": "bin/vite.js"
},
"engines": {
- "node": "^18.0.0 || >=20.0.0"
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"funding": {
"url": "https://github.com/vitejs/vite?sponsor=1"
@@ -7578,19 +7304,25 @@
"fsevents": "~2.3.3"
},
"peerDependencies": {
- "@types/node": "^18.0.0 || >=20.0.0",
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
"less": "*",
"lightningcss": "^1.21.0",
"sass": "*",
"sass-embedded": "*",
"stylus": "*",
"sugarss": "*",
- "terser": "^5.4.0"
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
+ "jiti": {
+ "optional": true
+ },
"less": {
"optional": true
},
@@ -7611,9 +7343,422 @@
},
"terser": {
"optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
}
}
},
+ "node_modules/vite/node_modules/@esbuild/aix-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
+ "integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
+ "integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
+ "integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
+ "integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
+ "integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
+ "integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
+ "integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
+ "integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
+ "integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
+ "integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
+ "integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz",
+ "integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==",
+ "cpu": [
+ "mips64el"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz",
+ "integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz",
+ "integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-s390x": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz",
+ "integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz",
+ "integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/sunos-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz",
+ "integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz",
+ "integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz",
+ "integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz",
+ "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/esbuild": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.0.tgz",
+ "integrity": "sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.24.0",
+ "@esbuild/android-arm": "0.24.0",
+ "@esbuild/android-arm64": "0.24.0",
+ "@esbuild/android-x64": "0.24.0",
+ "@esbuild/darwin-arm64": "0.24.0",
+ "@esbuild/darwin-x64": "0.24.0",
+ "@esbuild/freebsd-arm64": "0.24.0",
+ "@esbuild/freebsd-x64": "0.24.0",
+ "@esbuild/linux-arm": "0.24.0",
+ "@esbuild/linux-arm64": "0.24.0",
+ "@esbuild/linux-ia32": "0.24.0",
+ "@esbuild/linux-loong64": "0.24.0",
+ "@esbuild/linux-mips64el": "0.24.0",
+ "@esbuild/linux-ppc64": "0.24.0",
+ "@esbuild/linux-riscv64": "0.24.0",
+ "@esbuild/linux-s390x": "0.24.0",
+ "@esbuild/linux-x64": "0.24.0",
+ "@esbuild/netbsd-x64": "0.24.0",
+ "@esbuild/openbsd-arm64": "0.24.0",
+ "@esbuild/openbsd-x64": "0.24.0",
+ "@esbuild/sunos-x64": "0.24.0",
+ "@esbuild/win32-arm64": "0.24.0",
+ "@esbuild/win32-ia32": "0.24.0",
+ "@esbuild/win32-x64": "0.24.0"
+ }
+ },
"node_modules/vitefu": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.4.tgz",
@@ -7781,9 +7926,9 @@
}
},
"node_modules/vscode-css-languageservice": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.1.tgz",
- "integrity": "sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==",
+ "version": "6.3.2",
+ "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.2.tgz",
+ "integrity": "sha512-GEpPxrUTAeXWdZWHev1OJU9lz2Q2/PPBxQ2TIRmLGvQiH3WZbqaNoute0n0ewxlgtjzTW3AKZT+NHySk5Rf4Eg==",
"license": "MIT",
"dependencies": {
"@vscode/l10n": "^0.0.18",
@@ -8238,22 +8383,49 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/yocto-spinner": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.1.2.tgz",
+ "integrity": "sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==",
+ "license": "MIT",
+ "dependencies": {
+ "yoctocolors": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=18.19"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yoctocolors": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
+ "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
+ "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
},
"node_modules/zod-to-json-schema": {
- "version": "3.23.5",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.5.tgz",
- "integrity": "sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz",
+ "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==",
"license": "ISC",
"peerDependencies": {
- "zod": "^3.23.3"
+ "zod": "^3.24.1"
}
},
"node_modules/zod-to-ts": {
diff --git a/src/custom-developments/advanced_dashboard/package.json b/src/custom-developments/advanced_dashboard/package.json
index d2ca7712..518b9e11 100644
--- a/src/custom-developments/advanced_dashboard/package.json
+++ b/src/custom-developments/advanced_dashboard/package.json
@@ -11,13 +11,13 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
diff --git a/src/custom-developments/advanced_dashboard/src/components/RealTimeArcGauge.tsx b/src/custom-developments/advanced_dashboard/src/components/RealTimeArcGauge.tsx
index f1315755..5c365974 100644
--- a/src/custom-developments/advanced_dashboard/src/components/RealTimeArcGauge.tsx
+++ b/src/custom-developments/advanced_dashboard/src/components/RealTimeArcGauge.tsx
@@ -1,6 +1,6 @@
import { useState, useEffect } from 'react'
import GaugeChart from 'react-gauge-chart'
-import { type DataPoint, readRealTimeData } from '../lib/scadaOpcApi'
+import { type DataPoint, getRealTimeData } from '../lib/scadaOpcApi'
import { CircleIcon } from '@radix-ui/react-icons'
interface RealTimeArcGaugeProps {
@@ -23,7 +23,7 @@ export function RealTimeArcGauge({
const fetchData = async () => {
try {
- const result = await readRealTimeData(selectedPoints)
+ const result = await getRealTimeData(selectedPoints)
const filteredResult = result.filter(Boolean)
// Only update if values have changed
diff --git a/src/custom-developments/advanced_dashboard/src/components/RealTimeBarGraph.tsx b/src/custom-developments/advanced_dashboard/src/components/RealTimeBarGraph.tsx
index fbcbfb41..87ed9f34 100644
--- a/src/custom-developments/advanced_dashboard/src/components/RealTimeBarGraph.tsx
+++ b/src/custom-developments/advanced_dashboard/src/components/RealTimeBarGraph.tsx
@@ -8,7 +8,7 @@ import {
Tooltip,
ResponsiveContainer,
} from 'recharts'
-import { type DataPoint, readRealTimeData } from '../lib/scadaOpcApi'
+import { type DataPoint, getRealTimeData } from '../lib/scadaOpcApi'
import { CircleIcon } from '@radix-ui/react-icons'
interface RealTimeBarGraphProps {
@@ -31,7 +31,7 @@ export function RealTimeBarGraph({
const fetchData = async () => {
try {
- const result = await readRealTimeData(selectedPoints)
+ const result = await getRealTimeData(selectedPoints)
setData(result.filter(Boolean))
} catch (err) {
setError(err as Error)
diff --git a/src/custom-developments/advanced_dashboard/src/lib/opcCodes.ts b/src/custom-developments/advanced_dashboard/src/lib/opcCodes.ts
deleted file mode 100644
index e5ec96a4..00000000
--- a/src/custom-developments/advanced_dashboard/src/lib/opcCodes.ts
+++ /dev/null
@@ -1,174 +0,0 @@
-// OPC-UA Standard Codes (and some extensions).
-// {json:scada} - Copyright 2020 - Ricardo L. Olsen
-
-export const OpcNamespaceMongodb = 2 // first user namespace
-export const OpcNamespacePostgresql = 3 // second user namespace
-
-export const OpcAcknowledge = {
- AckOneEvent: 0x00000001,
- RemoveOneEvent: 0x00000002,
- AckPointEvents: 0x00000004,
- RemovePointEvents: 0x00000008,
- AckAllEvents: 0x00000040,
- RemoveAllEvents: 0x00000080,
- AckOneAlarm: 0x00000100,
- AckAllAlarms: 0x00000400,
- SilenceBeep: 0x00001000,
-} as const
-
-export const OpcStatusCodes = {
- Good: 0,
- GoodNoData: 0x00a50000,
- GoodMoreData: 0x00a60000,
- Uncertain: 0x40000000,
- Bad: 0x80000000,
- BadTimeout: 0x800a0000,
- BadNodeAttributesInvalid: 0x80620000,
- BadNodeIdInvalid: 0x80330000,
- BadNodeIdUnknown: 0x80340000,
- BadRequestHeaderInvalid: 0x802a0000,
- BadRequestNotAllowed: 0x80e40000,
- BadServiceUnsupported: 0x800b0000,
- BadShutdown: 0x800c0000,
- BadServerNotConnected: 0x800d0000,
- BadServerHalted: 0x800e0000,
- BadNothingToDo: 0x800f0000,
- BadUserAccessDenied: 0x801f0000,
- BadIdentityTokenInvalid: 0x80200000,
- BadIdentityTokenRejected: 0x80210000,
- BadUnexpectedError: 0x80010000,
- BadInternalError: 0x80020000,
- BadOutOfMemory: 0x80030000,
- BadResourceUnavailable: 0x80040000,
- BadCommunicationError: 0x80050000,
- BadInvalidArgument: 0x80ab0000,
- BadDisconnect: 0x80ad0000,
- BadConnectionClosed: 0x80ae0000,
- BadInvalidState: 0x80af0000,
- BadNoDataAvailable: 0x80b10000,
- BadWaitingForResponse: 0x80b20000,
-} as const
-
-export const TimestampsToReturn = {
- Source: 0,
- Server: 1,
- Both: 2,
- Neither: 3,
- Invalid: 4,
-} as const
-
-export const OpcValueTypes = {
- Null: 0,
- Boolean: 1,
- SByte: 2,
- Byte: 3,
- Int16: 4,
- UInt16: 5,
- Int32: 6,
- UInt32: 7,
- Int64: 8,
- UInt64: 9,
- Float: 10,
- Double: 11,
- String: 12,
- DateTime: 13,
- Guid: 14,
- ByteString: 15,
- XmlElement: 16,
- NodeId: 17,
- ExpandedNodeId: 18,
- StatusCode: 19,
- QualifiedName: 20,
- LocalizedText: 21,
- ExtensionObject: 22,
- DataValue: 23,
- Variant: 24,
- DiagnosticInfo: 25,
- Number: 26,
- Integer: 27,
- UInteger: 28,
- Enumeration: 29,
-} as const
-
-export const OpcKeyType = {
- Numeric: 0,
- String: 1,
-} as const
-
-export const OpcServiceCode = {
- ServiceFault: 395,
- RequestHeader: 389,
- ResponseHeader: 392,
- ReadValueId: 626,
- ReadRequest: 629,
- ReadResponse: 632,
- ReadRawModifiedDetails: 647,
- HistoryReadRequest: 662,
- HistoryReadResponse: 665,
- WriteValue: 668,
- WriteRequest: 671,
- WriteResponse: 674,
- DataChangeNotification: 809,
- StatusChangeNotification: 818,
- Extended_RequestUniqueAttributeValues: 100000001,
- Extended_ResponseUniqueAttributeValues: 100000002,
-} as const
-
-export const OpcOperand = {
- Attribute: 598,
- Literal: 595,
- Element: 592,
- SimpleAttributeOperand: 601,
-} as const
-
-export const OpcAttributeId = {
- NodeID: 1,
- NodeClass: 2,
- BrowseName: 3,
- DisplayName: 4,
- Description: 5,
- WriteMask: 6,
- UserWriteMask: 7,
- IsAbstract: 8,
- Symmetric: 9,
- InverseName: 10,
- ContainsNoLoops: 11,
- EventNotifier: 12,
- Value: 13,
- DataType: 14,
- ValueRank: 15,
- ArrayDimensions: 16,
- AccessLevel: 17,
- UserAccessLevel: 18,
- MinimumSamplingInterval: 19,
- Historizing: 20,
- Executable: 21,
- UserExecutable: 22,
- ExtendedGroup1: 100000001,
- ExtendedGroup2: 100000002,
- ExtendedGroup3: 100000003,
- ExtendedAlarmEventsAck: 100000004,
- ExtendedBlockingAnnotation: 100000005,
- ExtendedDocumentalAnnotation: 100000006,
-} as const
-
-export const OpcFilterOperator = {
- Equals: 0,
- IsNull: 1,
- GreaterThan: 2,
- LessThan: 3,
- GreaterThanOrEqual: 4,
- LessThanOrEqual: 5,
- Like: 6,
- Not: 7,
- Between: 8,
- InList: 9,
- And: 10,
- Or: 11,
- Cast: 12,
- InView: 13,
- OfType: 14,
- RelatedTo: 15,
- BitwiseAnd: 16,
- BitwiseOr: 17,
-} as const
diff --git a/src/custom-developments/advanced_dashboard/src/lib/scadaOpcApi.ts b/src/custom-developments/advanced_dashboard/src/lib/scadaOpcApi.ts
index df808de0..5ed51844 100644
--- a/src/custom-developments/advanced_dashboard/src/lib/scadaOpcApi.ts
+++ b/src/custom-developments/advanced_dashboard/src/lib/scadaOpcApi.ts
@@ -1,66 +1,466 @@
-import {
- OpcAttributeId,
- OpcFilterOperator,
- OpcKeyType,
- OpcNamespaceMongodb,
- OpcNamespacePostgresql,
- OpcOperand,
- OpcServiceCode,
- OpcStatusCodes,
- OpcValueTypes,
- TimestampsToReturn,
-} from './opcCodes'
+// API to interact with the SCADA server
+// Inspired by OPC WebHMI protocol
+// https://github.com/OPCFoundation/UA-.NETStandard/tree/demo/webapi/SampleApplications/Workshop/Reference
+// https://web.archive.org/web/20211018094004/https://prototyping.opcfoundation.org/
+// OPC-UA Standard Codes (and some extensions adapted to use to interact with the SCADA).
+// {json:scada} - Copyright 2024 - Ricardo L. Olsen
+export const OpcNamespaces = {
+ Mongodb: 2,
+ Postgresql: 3,
+}
+
+export const OpcAcknowledge = {
+ AckOneEvent: 0x00000001,
+ RemoveOneEvent: 0x00000002,
+ AckPointEvents: 0x00000004,
+ RemovePointEvents: 0x00000008,
+ AckAllEvents: 0x00000040,
+ RemoveAllEvents: 0x00000080,
+ AckOneAlarm: 0x00000100,
+ AckAllAlarms: 0x00000400,
+ SilenceBeep: 0x00001000,
+} as const
+
+export const OpcStatusCodes = {
+ Good: 0,
+ GoodNoData: 0x00a50000,
+ GoodMoreData: 0x00a60000,
+ Uncertain: 0x40000000,
+ Bad: 0x80000000,
+ BadTimeout: 0x800a0000,
+ BadNodeAttributesInvalid: 0x80620000,
+ BadNodeIdInvalid: 0x80330000,
+ BadNodeIdUnknown: 0x80340000,
+ BadRequestHeaderInvalid: 0x802a0000,
+ BadRequestNotAllowed: 0x80e40000,
+ BadServiceUnsupported: 0x800b0000,
+ BadShutdown: 0x800c0000,
+ BadServerNotConnected: 0x800d0000,
+ BadServerHalted: 0x800e0000,
+ BadNothingToDo: 0x800f0000,
+ BadUserAccessDenied: 0x801f0000,
+ BadIdentityTokenInvalid: 0x80200000,
+ BadIdentityTokenRejected: 0x80210000,
+ BadUnexpectedError: 0x80010000,
+ BadInternalError: 0x80020000,
+ BadOutOfMemory: 0x80030000,
+ BadResourceUnavailable: 0x80040000,
+ BadCommunicationError: 0x80050000,
+ BadInvalidArgument: 0x80ab0000,
+ BadDisconnect: 0x80ad0000,
+ BadConnectionClosed: 0x80ae0000,
+ BadInvalidState: 0x80af0000,
+ BadNoDataAvailable: 0x80b10000,
+ BadWaitingForResponse: 0x80b20000,
+} as const
+
+export const TimestampsToReturn = {
+ Source: 0,
+ Server: 1,
+ Both: 2,
+ Neither: 3,
+ Invalid: 4,
+} as const
+
+export const OpcValueTypes = {
+ Null: 0,
+ Boolean: 1,
+ SByte: 2,
+ Byte: 3,
+ Int16: 4,
+ UInt16: 5,
+ Int32: 6,
+ UInt32: 7,
+ Int64: 8,
+ UInt64: 9,
+ Float: 10,
+ Double: 11,
+ String: 12,
+ DateTime: 13,
+ Guid: 14,
+ ByteString: 15,
+ XmlElement: 16,
+ NodeId: 17,
+ ExpandedNodeId: 18,
+ StatusCode: 19,
+ QualifiedName: 20,
+ LocalizedText: 21,
+ ExtensionObject: 22,
+ DataValue: 23,
+ Variant: 24,
+ DiagnosticInfo: 25,
+ Number: 26,
+ Integer: 27,
+ UInteger: 28,
+ Enumeration: 29,
+} as const
+
+export const OpcKeyType = {
+ Numeric: 0,
+ String: 1,
+} as const
+
+export const OpcServiceCode = {
+ ServiceFault: 395,
+ RequestHeader: 389,
+ ResponseHeader: 392,
+ ReadValueId: 626,
+ ReadRequest: 629,
+ ReadResponse: 632,
+ ReadRawModifiedDetails: 647,
+ HistoryReadRequest: 662,
+ HistoryReadResponse: 665,
+ WriteValue: 668,
+ WriteRequest: 671,
+ WriteResponse: 674,
+ DataChangeNotification: 809,
+ StatusChangeNotification: 818,
+ Extended_RequestUniqueAttributeValues: 100000001,
+ Extended_ResponseUniqueAttributeValues: 100000002,
+} as const
+
+export const OpcOperand = {
+ Attribute: 598,
+ Literal: 595,
+ Element: 592,
+ SimpleAttributeOperand: 601,
+} as const
+
+export const OpcAttributeId = {
+ NodeID: 1,
+ NodeClass: 2,
+ BrowseName: 3,
+ DisplayName: 4,
+ Description: 5,
+ WriteMask: 6,
+ UserWriteMask: 7,
+ IsAbstract: 8,
+ Symmetric: 9,
+ InverseName: 10,
+ ContainsNoLoops: 11,
+ EventNotifier: 12,
+ Value: 13,
+ DataType: 14,
+ ValueRank: 15,
+ ArrayDimensions: 16,
+ AccessLevel: 17,
+ UserAccessLevel: 18,
+ MinimumSamplingInterval: 19,
+ Historizing: 20,
+ Executable: 21,
+ UserExecutable: 22,
+ ExtendedGroup1: 100000001,
+ ExtendedGroup2: 100000002,
+ ExtendedGroup3: 100000003,
+ ExtendedAlarmEventsAck: 100000004,
+ ExtendedBlockingAnnotation: 100000005,
+ ExtendedDocumentalAnnotation: 100000006,
+} as const
+
+export const OpcFilterOperator = {
+ Equals: 0,
+ IsNull: 1,
+ GreaterThan: 2,
+ LessThan: 3,
+ GreaterThanOrEqual: 4,
+ LessThanOrEqual: 5,
+ Like: 6,
+ Not: 7,
+ Between: 8,
+ InList: 9,
+ And: 10,
+ Or: 11,
+ Cast: 12,
+ InView: 13,
+ OfType: 14,
+ RelatedTo: 15,
+ BitwiseAnd: 16,
+ BitwiseOr: 17,
+} as const
+
+export const OpcDiagnosticInfoMask = {
+ SymbolicId: 1,
+ LocalizedText: 2,
+ AdditionalInfo: 4,
+ InnerStatusCode: 8,
+ InnerDiagnosticInfo: 16,
+} as const
+
+/**
+ * Represents a node (tag) identifier, which includes the type of identifier,
+ * the actual identifier value, and the namespace index. The `IdType` indicates
+ * how the `Id` should be interpreted, while the `Namespace` specifies the
+ * namespace to which the node belongs. The `Id` can be a string or undefined.
+ * @property {typeof OpcKeyType[keyof typeof OpcKeyType]} IdType - The type of identifier, which can be 0 or 1.
+ * @property {string | number | undefined} Id - The actual identifier value, which can be a string, number, or undefined.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace index, which can be 2 or 3.
+ */
export interface OpcNodeId {
- IdType: number
- Id: string | undefined
- Namespace: number
+ IdType: (typeof OpcKeyType)[keyof typeof OpcKeyType] // Only allows 0 or 1
+ Id: string | number | undefined
+ Namespace: (typeof OpcNamespaces)[keyof typeof OpcNamespaces] // Only allows 2 or 3
}
+/**
+ * Represents a node (tag) to be read. It includes the node's identifier
+ * and the specific attribute of the node that needs to be read. The `NodeId` contains
+ * details about the node's type, identifier, and namespace, while `AttributeId` specifies
+ * the attribute of the node to be accessed.
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be read.
+ */
export interface OpcNodeToRead {
NodeId: OpcNodeId
- AttributeId: number
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ ClientHandle?: string
+}
+
+/**
+ * Represents additional properties of an OPC value, such as alarm settings, annotation, and notes.
+ *
+ * @property {boolean} [alarmDisabled] - Whether the alarm is disabled.
+ * @property {string} [annotation] - The (blocking) annotation of the value.
+ * @property {number} [loLimit] - The low limit of the value for out of range alarms.
+ * @property {number} [hiLimit] - The high limit of the value for out of range alarms.
+ * @property {number} [hysteresis] - The hysteresis of the value for out of range alarms.
+ * @property {string} [notes] - The documental notes of the value.
+ * @property {number} [newValue] - The new value of the value.
+ * @property {boolean} [substituted] - Whether the value is substituted (manually imposed).
+ */
+export interface ExtendedProperties {
+ alarmDisabled?: boolean
+ annotation?: string
+ loLimit?: number
+ hiLimit?: number
+ hysteresis?: number
+ notes?: string
+ newValue?: number
+ substituted?: boolean
+}
+
+/**
+ * Represents an OPC value for a tag (node), which includes the type of the value and the
+ * actual value content. The `Type` property specifies the type of the value,
+ * which can be one of the values in `OpcValueTypes`. The `Body` property
+ * contains the actual value content, which can be a number, string, or boolean.
+ * The `_Properties` property is an optional object that contains additional
+ * information about the value, such as alarm settings, annotation, and notes.
+ * The properties in `_Properties` are specific to the type of value and are not
+ * required to be present.
+ * @property {typeof OpcValueTypes[keyof typeof OpcValueTypes]} Type - The type of the value, which can be one of the values in `OpcValueTypes`.
+ * @property {number | string | boolean} Body - The actual value content, which can be a number, string, or boolean.
+ * @property {object} _Properties - An optional object that contains additional information about the value, such as alarm settings, annotation, and notes.
+ */
+export interface OpcValue {
+ Type?: (typeof OpcValueTypes)[keyof typeof OpcValueTypes]
+ Body?: number | string | boolean
+ _Properties?: ExtendedProperties
+}
+
+/**
+ * Represents a node (tag) to be written. It includes the node's identifier
+ * and the specific attribute of the node that needs to be written. The
+ * `NodeId` contains details about the node's type, identifier, and namespace,
+ * while `AttributeId` specifies the attribute of the node to be accessed.
+ * The `Value` property contains the value to be written to the node.
+ *
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be written.
+ * @property {OpcValue} Value - The value to be written to the node.
+ */
+export interface OpcNodeToWrite {
+ NodeId: OpcNodeId
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Value: OpcValue
}
+/**
+ * The OPC UA request header.
+ *
+ * The header contains the timestamp of the request, a unique request handle,
+ * a timeout hint, a flag to determine what type of diagnostics to return,
+ * and an authentication token.
+ *
+ * @property {string} Timestamp - The timestamp of the request in ISO string format.
+ * @property {number} RequestHandle - A unique handle to identify the request.
+ * @property {number} TimeoutHint - The timeout hint for the request in milliseconds.
+ * @property {typeof OpcDiagnosticInfoMask[keyof typeof OpcDiagnosticInfoMask]} ReturnDiagnostics - A flag to determine what type of diagnostics to return.
+ * @property {null} AuthenticationToken - The authentication token for the request. Currently, it is always null.
+ */
export interface OpcRequestHeader {
Timestamp: string
RequestHandle: number
TimeoutHint: number
- ReturnDiagnostics: number
+ ReturnDiagnostics: (typeof OpcDiagnosticInfoMask)[keyof typeof OpcDiagnosticInfoMask]
AuthenticationToken: null
}
+/**
+ * Represents an operand in a content filter. The operand can be an attribute,
+ * a literal value, or an element. The `FilterOperand` indicates the type of
+ * operand, while the `Value` contains the actual value. The value can be a
+ * string, number, or boolean.
+ *
+ * @property {typeof OpcOperand[keyof typeof OpcOperand]} FilterOperand - The type of operand.
+ * @property {string | number | boolean} Value - The actual value of the operand.
+ */
+export interface OpcFilterOperand {
+ FilterOperand: (typeof OpcOperand)[keyof typeof OpcOperand]
+ Value: string | number | boolean
+}
+
+/**
+ * Represents a content filter in the OPC UA request body.
+ *
+ * The content filter is a feature to filter the data returned by the
+ * server. It consists of a filter operator and an array of filter operands.
+ * The filter operator defines the type of operation to be performed on the
+ * filter operands, while the filter operands specify the actual values to be
+ * compared.
+ *
+ * @property {typeof OpcFilterOperator[keyof typeof OpcFilterOperator]} FilterOperator - The type of filter operation to be performed.
+ * @property {OpcFilterOperand[]} FilterOperands - An array of filter operands to be compared.
+ */
+export interface OpcContentFilter {
+ FilterOperator: (typeof OpcFilterOperator)[keyof typeof OpcFilterOperator]
+ FilterOperands: OpcFilterOperand[]
+}
+
+/**
+ * The parameters for the OPC UA HistoryRead request.
+ *
+ * The `IsModified` flag must be set to false.
+ * The `StartTime` and `EndTime` properties are ISO strings representing the start and end times
+ * of the history data to be read.
+ * @property {boolean} IsModified - A flag that must be set to false.
+ * @property {string} StartTime - The start time of the history data to be read in ISO string format.
+ * @property {string} EndTime - The end time of the history data to be read in ISO string format.
+ * @property {number} NumValuesPerNode - The number of values to be read per node.
+ */
+export interface OpcParameterData {
+ IsReadModified: boolean
+ StartTime: string
+ EndTime: string
+ NumValuesPerNode?: number
+}
+
+/**
+ * The details of the OPC UA HistoryRead request.
+ *
+ * The `ParameterTypeId` specifies the type of history read request.
+ * The `ParameterData` contains the parameters for the history read request.
+ */
+export interface OpcHistoryReadDetails {
+ ParameterTypeId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
+ ParameterData: OpcParameterData
+}
+
+export interface OpcAggregateFilter {
+ AggregateType: string
+}
+
+/**
+ * The body of an OPC request.
+ *
+ * The body contains the request header, the maximum age of the data to be returned,
+ * the type of timestamps to return, and the nodes to read.
+ *
+ * @property {OpcRequestHeader} RequestHeader - The request header.
+ * @property {number} MaxAge - The maximum age of the data to be returned in milliseconds.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The type of attribute to read.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace to read from.
+ * @property {typeof TimestampsToReturn[keyof typeof TimestampsToReturn]} TimestampsToReturn - The type of timestamps to return.
+ * @property {OpcNodeToRead[]} NodesToRead - The nodes to read.
+ * @property {any} NodesToWrite - The nodes to write.
+ */
export interface OpcRequestBody {
RequestHeader: OpcRequestHeader
- MaxAge: number
- TimestampsToReturn: number
- NodesToRead: OpcNodeToRead[]
+ MaxAge?: number
+ AttributeId?: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Namespace?: (typeof OpcNamespaces)[keyof typeof OpcNamespaces]
+ TimestampsToReturn?: (typeof TimestampsToReturn)[keyof typeof TimestampsToReturn]
+ ContentFilter?: any
+ HistoryReadDetails?: OpcHistoryReadDetails
+ NodesToRead?: OpcNodeToRead[]
+ NodesToWrite?: OpcNodeToWrite[]
+ AggregateFilter?: OpcAggregateFilter
}
+/**
+ * An OPC-like HTTP request.
+ *
+ * The request contains the service ID and the request body. The service ID
+ * specifies which service to call, and the request body contains the parameters
+ * for the service.
+ *
+ * @property {(typeof OpcServiceCode)[keyof typeof OpcServiceCode]} ServiceId - The service ID for the request.
+ * @property {OpcRequestBody} Body - The request body.
+ */
export interface OpcRequest {
- ServiceId: number
+ ServiceId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
Body: OpcRequestBody
}
+/**
+ * Represents a single data point read result from a tag, containing its name, value,
+ * value as a string, quality, timestamp, group1, group2, and description.
+ *
+ * @property {string} name - The name of the tag.
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {string} timestamp - The timestamp of the tag value.
+ * @property {string} group1 - The group1 of the tag.
+ * @property {string} group2 - The group2 of the tag.
+ * @property {string} description - The description of the tag.
+ */
export interface DataPoint {
name: string
value: number
valueString: string
- quality: number
- timestamp: string
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
+ timestamp: Date
group1: string
group2: string
description: string
}
+/**
+ * Represents a single historical sample for a tag, containing its value, value as a string, quality, server timestamp, and source timestamp.
+ *
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {Date} serverTimestamp - The timestamp when the value was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the data.
+ */
export interface HistoricalData {
value: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
}
+/**
+ * Represents a Sequence of Events (SOE) data object.
+ * The SOE data includes details about an event such as its name, description,
+ * associated station (group1), event identifier, priority level, and the value
+ * of the event as a string. Additionally, it contains quality information,
+ * server and source timestamps, and a flag indicating if the source timestamp is valid.
+ *
+ * @property {string} name - The name of the event.
+ * @property {string} description - A brief description of the event.
+ * @property {string} group1 - The station name associated with the event.
+ * @property {string} eventId - The unique identifier for the event.
+ * @property {number} priority - The priority level of the event.
+ * @property {string} valueString - The value of the event as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the event data.
+ * @property {Date} serverTimestamp - The timestamp when the event was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the event.
+ * @property {boolean} sourceTimestampOk - Indicates if the source timestamp is valid.
+ */
export interface SoeData {
name: string
description: string
@@ -68,25 +468,33 @@ export interface SoeData {
eventId: string
priority: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
sourceTimestampOk: boolean
}
-// Get the group1 (station names) list
-export async function getGroup1List (): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
+export interface CommandResult {
+ ok: boolean
+ error: string
+ commandHandle: string
+}
+
+/**
+ * Get the group1 (station names) list
+ * @returns {Promise} a promise that resolves to a list of group1 names
+ */
+export async function getGroup1List(): Promise {
const ServiceId = OpcServiceCode.Extended_RequestUniqueAttributeValues // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
AttributeId: OpcAttributeId.ExtendedGroup1,
@@ -110,7 +518,6 @@ export async function getGroup1List (): Promise {
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('RequestUniqueAttributeValues invalid service response!')
return []
}
@@ -121,13 +528,9 @@ export async function getGroup1List (): Promise {
OpcServiceCode.Extended_ResponseUniqueAttributeValues &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log(
- 'RequestUniqueAttributeValues invalid or unexpected service response!'
- )
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('RequestUniqueAttributeValues service error!')
return []
}
@@ -141,22 +544,27 @@ export async function getGroup1List (): Promise {
})
return group1List
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime filtered data
-export async function getRealtimeFilteredData (
+/**
+ * Get the filtered tags data from the server.
+ * @param {string} group1Filter - filter by group1 (station names)
+ * @param {string} group2Filter - filter by group2 (bay names)
+ * @param {boolean} onlyAlarms - filter by only alarmed tags
+ * @returns {Promise} a promise that resolves to an array of DataPoint objects
+ */
+export async function getRealtimeFilteredData(
group1Filter: string,
group2Filter: string,
onlyAlarms: boolean
): Promise {
try {
- let ContentFilter = []
- let ContFiltElem = {
+ let ContentFilter: OpcContentFilter[] = []
+ let ContFiltElem: OpcContentFilter = {
FilterOperator: OpcFilterOperator.Equals,
- FilterOperands: [] as any,
+ FilterOperands: [] as OpcFilterOperand[],
}
if (typeof group1Filter === 'string' && group1Filter.trim() !== '') {
@@ -227,20 +635,19 @@ export async function getRealtimeFilteredData (
ContentFilter.push(ContFiltElem)
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
ContentFilter: ContentFilter,
MaxAge: 0,
TimestampsToReturn: TimestampsToReturn.Both,
@@ -262,7 +669,6 @@ export async function getRealtimeFilteredData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -272,14 +678,12 @@ export async function getRealtimeFilteredData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
// check access control denied, in this case go to initial page
if (
data.Body.ResponseHeader.ServiceResult ===
@@ -328,16 +732,18 @@ export async function getRealtimeFilteredData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime data from tag names list
-export async function readRealTimeData (
+/**
+ * Retrieves real-time data from the given list of tag names
+ * @param {string[]} variables list of tag names
+ * @returns {Promise} a promise that resolves to an array of data points
+ */
+export async function getRealTimeData(
variables: string[]
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
const req: OpcRequest = {
@@ -347,7 +753,7 @@ export async function readRealTimeData (
Timestamp: new Date().toISOString(),
RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
MaxAge: 0,
@@ -356,7 +762,7 @@ export async function readRealTimeData (
NodeId: {
IdType: OpcKeyType.String,
Id: elem,
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
},
AttributeId: OpcAttributeId.Value,
})),
@@ -380,7 +786,6 @@ export async function readRealTimeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -390,7 +795,6 @@ export async function readRealTimeData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
@@ -398,7 +802,6 @@ export async function readRealTimeData (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
return []
}
@@ -435,37 +838,42 @@ export async function readRealTimeData (
}
})
} catch (error) {
- console.error(error)
return []
}
}
-// Get historical data for a tag
-export async function getHistoricalData (
+/**
+ * Retrieves historical data for a specified tag within a given time range.
+ *
+ * @param {string} tag - The tag name for which historical data is requested.
+ * @param {Date} timeBegin - The start time for the historical data retrieval.
+ * @param {Date | null | undefined} timeEnd - The end time for the historical data retrieval. If null or undefined, the current time is used.
+ * @returns {Promise} A promise that resolves to an array of HistoricalData objects containing the retrieved data.
+ */
+export async function getHistoricalData(
tag: string,
timeBegin: Date,
timeEnd: Date | null | undefined
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // read historical data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
TimestampsToReturn: TimestampsToReturn.Server,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin.toISOString(),
- EndTime: timeEnd || new Date().toISOString(),
+ EndTime: timeEnd?.toISOString() || new Date().toISOString(),
},
},
NodesToRead: [
@@ -473,7 +881,7 @@ export async function getHistoricalData (
NodeId: {
IdType: OpcKeyType.String, // string key
Id: tag, // point string key
- Namespace: OpcNamespacePostgresql,
+ Namespace: OpcNamespaces.Postgresql,
},
AttributeId: OpcAttributeId.Value,
},
@@ -499,7 +907,6 @@ export async function getHistoricalData (
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -508,18 +915,16 @@ export async function getHistoricalData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('Historian service error!')
return []
}
if (
typeof data.Body.Results[0].StatusCode === 'number' &&
data.Body.Results[0].StatusCode !== 0
) {
- console.log('Historical data not found for point ' + tag + ' !')
+ return []
}
return data.Body.Results[0].HistoryData.map((elem: any) => {
@@ -553,78 +958,22 @@ export async function getHistoricalData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Issue a command for a tag
-export async function issueCommand (
- commandTag: string,
- value: number
-): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
- const ServiceId = OpcServiceCode.WriteRequest // write data service
- const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
- ServiceId: ServiceId,
- Body: {
- RequestHeader: {
- Timestamp: new Date().toISOString(),
- RequestHandle: RequestHandle,
- TimeoutHint: 1500,
- ReturnDiagnostics: 2,
- AuthenticationToken: null,
- },
- NodesToWrite: [
- {
- NodeId: {
- IdType: OpcKeyType.String,
- Id: commandTag,
- Namespace: OpcNamespaceMongodb,
- },
- AttributeId: OpcAttributeId.Value,
- Value: {
- Type: OpcValueTypes.Double,
- Body: value,
- },
- },
- ],
- },
- }
-
- try {
- const response = await fetch('/Invoke/', {
- method: 'POST',
- body: JSON.stringify(req),
- headers: {
- 'Content-Type': 'application/json',
- },
- })
- const data = await response.json()
- if (
- !data.ServiceId ||
- !data.Body ||
- !data.Body.ResponseHeader ||
- !data.Body.ResponseHeader.RequestHandle ||
- !data.Body.Results ||
- data.ServiceId !== OpcServiceCode.WriteResponse ||
- data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
- data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
- ) {
- return 'Request Error!'
- }
- if (data.Body.Results[0] !== OpcStatusCodes.Good) {
- return 'Error executing command!'
- }
- return ''
- } catch (error) {
- return error as string
- }
-}
-
-// Get Sequence of Events (SOE) data
-export async function getSoeData (
+/**
+ * Retrieves sequence of events (SOE) data.
+ *
+ * @param {string[]} group1Filter - An array of group1 (station names) to filter by.
+ * @param {boolean} useSourceTime - If true, use source timestamp instead of server timestamp.
+ * @param {number} aggregate - 0: for no aggregate, 1: to aggregate for the same tag, 2: to aggregate for the same tag and filter by priority.
+ * @param {number} limit - The number of results to return.
+ * @param {any} timeBegin - The start time for the query. If null or undefined, will be set to null.
+ * @param {any} timeEnd - The end time for the query. If null or undefined, will be set to null.
+ * @returns {Promise} A promise that resolves to an array of SoeData objects containing the retrieved data.
+ */
+export async function getSoeData(
group1Filter: string[],
useSourceTime: boolean,
aggregate: number,
@@ -664,37 +1013,35 @@ export async function getSoeData (
ContentFilter.push(ContFiltElem)
}
- let AggregateFilter = null
+ let AggregateFilter = undefined
if (aggregate) {
AggregateFilter = { AggregateType: 'Count' }
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // history read service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- TimestampsToReturn: useSourceTime
- ? TimestampsToReturn.Source
- : TimestampsToReturn.Both,
+ TimestampsToReturn:
+ useSourceTime ? TimestampsToReturn.Source : TimestampsToReturn.Both,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin,
EndTime: timeEnd,
NumValuesPerNode: limit,
},
},
- Namespace: OpcNamespaceMongodb, // directs query to mongodb instead of postgresql
+ Namespace: OpcNamespaces.Mongodb, // directs query to mongodb instead of postgresql
ContentFilter: ContentFilter,
AggregateFilter: AggregateFilter,
},
@@ -716,7 +1063,6 @@ export async function getSoeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -725,14 +1071,12 @@ export async function getSoeData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('Historian service error!')
return []
}
if (
@@ -761,7 +1105,327 @@ export async function getSoeData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
+
+/**
+ * Issue a command for a tag
+ * @param {string} commandTag - tag of the command
+ * @param {number} value - value of the command
+ * @returns {Promise} a promise that resolves to a CommandResult object
+ */
+export async function issueCommand(
+ commandTag: string,
+ value: number
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1500,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Value,
+ Value: {
+ Type: OpcValueTypes.Double,
+ Body: value,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return {
+ ok: false,
+ error: 'Request Error!',
+ commandHandle: '',
+ }
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return {
+ ok: false,
+ error: 'Error Executing Command!',
+ commandHandle: '',
+ }
+ }
+ return {
+ ok: true,
+ error: '',
+ commandHandle: data.Body._CommandHandles[0],
+ }
+ } catch (error) {
+ return {
+ ok: false,
+ error: error as string,
+ commandHandle: '',
+ }
+ }
+}
+
+/**
+ * Track command acknowledgment from server/protocol, use command handle identify a specific command
+ * @param {string} commandTag - the command tag name
+ * @param {string} commandHandle - the command handle (in the standard this is an integer but here is MongoDB OID string)
+ * @returns {Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]>} - a promise that resolves to an OpcStatusCodes enum value
+ */
+export async function getCommandAckStatus(
+ commandTag: string,
+ commandHandle: string
+): Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]> {
+ // track command acknowledgment from server/protocol, use CHANDLE to verify results
+
+ const ServiceId = OpcServiceCode.ReadRequest // READ, query command ack results reading attribute 12 (EventNotifier)
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ MaxAge: 0,
+ NodesToRead: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.EventNotifier,
+ ClientHandle: commandHandle,
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle
+ )
+ return OpcStatusCodes.BadServiceUnsupported
+
+ // response must have same request handle and be a data change notification response or service fault
+ if (
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.ServiceId !== OpcServiceCode.DataChangeNotification &&
+ data.ServiceId !== OpcServiceCode.ServiceFault) ||
+ typeof data.Body.MonitoredItems !== 'object'
+ ) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.MonitoredItems.length === 0) {
+ return OpcStatusCodes.BadNoDataAvailable
+ }
+
+ if (
+ data.Body.MonitoredItems[0].Value.StatusCode ===
+ OpcStatusCodes.BadWaitingForResponse
+ )
+ return OpcStatusCodes.BadWaitingForResponse
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Good
+ )
+ return OpcStatusCodes.Good
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Bad
+ )
+ return OpcStatusCodes.Bad
+
+ return OpcStatusCodes.BadInvalidState
+ } catch (error) {
+ return OpcStatusCodes.BadInternalError
+ }
+}
+
+/**
+ * Write the given extended properties of a tag.
+ * @param {string} tag - the tag name
+ * @param {ExtendedProperties} properties - the properties to write
+ * @returns {Promise} a promise that resolves to true if the write was successful, false otherwise
+ */
+export async function writeTagProperties(
+ tag: string,
+ properties: ExtendedProperties
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Description,
+ Value: {
+ _Properties: properties,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return false
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return false
+ }
+ return true
+ } catch (error) {
+ return false
+ }
+}
+
+/**
+ * Acknowledge alarm(s)/event(s) for a given tag.
+ * To acknowledge all alarms for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllAlarms)
+ * To acknowledge all events for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllEvents)
+ * To remove all events for all tags call ackAlarmsEvents('', OpcAcknowledge.RemoveAllEvents)
+ *
+ * @param {string} tag - The tag name for which alarms/events are to be acknowledged.
+ * @param {number} action - A bit mask of the enum type OpcAcknowledge that specifies the acknowledgment action.
+ * @returns {Promise} A promise that resolves to true if the alarm acknowledgment is successful, false otherwise.
+ */
+export async function ackAlarmsEvents(
+ tag: string,
+ action: number // bit mask of enum type OpcAcknowledge
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1000,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.ExtendedAlarmEventsAck,
+ Value: {
+ Type: OpcValueTypes.Integer,
+ Body: action,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData)
+ ) {
+ return false
+ }
+
+ return true
+ } catch (error) {
+ return false
+ }
+}
diff --git a/src/custom-developments/basic_bargraph/package-lock.json b/src/custom-developments/basic_bargraph/package-lock.json
index f067e6a2..7eab5d6d 100644
--- a/src/custom-developments/basic_bargraph/package-lock.json
+++ b/src/custom-developments/basic_bargraph/package-lock.json
@@ -9,12 +9,12 @@
"version": "0.0.1",
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
@@ -81,9 +81,9 @@
"license": "MIT"
},
"node_modules/@astrojs/internal-helpers": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.1.tgz",
- "integrity": "sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==",
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.2.tgz",
+ "integrity": "sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==",
"license": "MIT"
},
"node_modules/@astrojs/language-server": {
@@ -128,16 +128,17 @@
}
},
"node_modules/@astrojs/markdown-remark": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-5.3.0.tgz",
- "integrity": "sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.0.1.tgz",
+ "integrity": "sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==",
"license": "MIT",
"dependencies": {
- "@astrojs/prism": "3.1.0",
+ "@astrojs/prism": "3.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-text": "^4.0.2",
"import-meta-resolve": "^4.1.0",
+ "js-yaml": "^4.1.0",
"mdast-util-definitions": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
@@ -145,7 +146,7 @@
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2",
- "shiki": "^1.22.0",
+ "shiki": "^1.23.1",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
@@ -154,68 +155,68 @@
}
},
"node_modules/@astrojs/prism": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.1.0.tgz",
- "integrity": "sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
+ "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
"license": "MIT",
"dependencies": {
"prismjs": "^1.29.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/react": {
- "version": "3.6.3",
- "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-3.6.3.tgz",
- "integrity": "sha512-5ihLQDH5Runddug5AZYlnp/Q5T81QxhwnWJXA9rchBAdh11c6UhBbv9Kdk7b2PkXoEU70CGWBP9hSh0VCR58eA==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-4.1.0.tgz",
+ "integrity": "sha512-8F0ncvcCexVeQZMwPouLSFuzCK1KXUIYQ57lW3ZG2p7B5DGAajXGanb/CGF7MMSpX8Z0t9sELQqLHOCV/+78Ig==",
"license": "MIT",
"dependencies": {
- "@vitejs/plugin-react": "^4.3.3",
+ "@vitejs/plugin-react": "^4.3.4",
"ultrahtml": "^1.5.3",
- "vite": "^5.4.10"
+ "vite": "^6.0.1"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
},
"peerDependencies": {
- "@types/react": "^17.0.50 || ^18.0.21",
- "@types/react-dom": "^17.0.17 || ^18.0.6",
- "react": "^17.0.2 || ^18.0.0 || ^19.0.0-beta",
- "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0-beta"
+ "@types/react": "^17.0.50 || ^18.0.21 || ^19.0.0",
+ "@types/react-dom": "^17.0.17 || ^18.0.6 || ^19.0.0",
+ "react": "^17.0.2 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@astrojs/tailwind": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.2.tgz",
- "integrity": "sha512-IvOF0W/dtHElcXvhrPR35nHmhyV3cfz1EzPitMGtU7sYy9Hci3BNK1To6FWmVuuNKPxza1IgCGetSynJZL7fOg==",
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.3.tgz",
+ "integrity": "sha512-XF7WhXRhqEHGvADqc0kDtF7Yv/g4wAWTaj91jBBTBaYnc4+MQLH94duFfFa4NlTkRG40VQd012eF3MhO3Kk+bg==",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.20",
- "postcss": "^8.4.47",
+ "postcss": "^8.4.49",
"postcss-load-config": "^4.0.2"
},
"peerDependencies": {
- "astro": "^3.0.0 || ^4.0.0 || ^5.0.0-beta.0",
+ "astro": "^3.0.0 || ^4.0.0 || ^5.0.0",
"tailwindcss": "^3.0.24"
}
},
"node_modules/@astrojs/telemetry": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.1.0.tgz",
- "integrity": "sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.0.tgz",
+ "integrity": "sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==",
"license": "MIT",
"dependencies": {
- "ci-info": "^4.0.0",
- "debug": "^4.3.4",
+ "ci-info": "^4.1.0",
+ "debug": "^4.3.7",
"dlv": "^1.1.3",
- "dset": "^3.1.3",
+ "dset": "^3.1.4",
"is-docker": "^3.0.0",
- "is-wsl": "^3.0.0",
+ "is-wsl": "^3.1.0",
"which-pm-runs": "^1.1.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/yaml2ts": {
@@ -242,9 +243,9 @@
}
},
"node_modules/@babel/compat-data": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz",
- "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
+ "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -281,13 +282,13 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz",
- "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
+ "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.26.2",
- "@babel/types": "^7.26.0",
+ "@babel/parser": "^7.26.3",
+ "@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
@@ -296,18 +297,6 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
- "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
@@ -404,12 +393,12 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
- "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
+ "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.0"
+ "@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -418,40 +407,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
- "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz",
- "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.25.9",
- "@babel/plugin-syntax-jsx": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
@@ -509,16 +464,16 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz",
- "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==",
+ "version": "7.26.4",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
+ "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.25.9",
- "@babel/generator": "^7.25.9",
- "@babel/parser": "^7.25.9",
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.3",
+ "@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
- "@babel/types": "^7.25.9",
+ "@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
@@ -527,9 +482,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
- "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
+ "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
@@ -892,6 +847,22 @@
"node": ">=12"
}
},
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/openbsd-x64": {
"version": "0.21.5",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
@@ -1391,9 +1362,9 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
@@ -1490,9 +1461,9 @@
}
},
"node_modules/@radix-ui/react-compose-refs": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz",
- "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.1.tgz",
+ "integrity": "sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
@@ -1505,12 +1476,12 @@
}
},
"node_modules/@radix-ui/react-slot": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz",
- "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.1.tgz",
+ "integrity": "sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==",
"license": "MIT",
"dependencies": {
- "@radix-ui/react-compose-refs": "1.1.0"
+ "@radix-ui/react-compose-refs": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -1551,9 +1522,9 @@
"license": "MIT"
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.4.tgz",
- "integrity": "sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz",
+ "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==",
"cpu": [
"arm"
],
@@ -1564,9 +1535,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.4.tgz",
- "integrity": "sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz",
+ "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==",
"cpu": [
"arm64"
],
@@ -1577,9 +1548,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.4.tgz",
- "integrity": "sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz",
+ "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==",
"cpu": [
"arm64"
],
@@ -1590,9 +1561,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.4.tgz",
- "integrity": "sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz",
+ "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==",
"cpu": [
"x64"
],
@@ -1603,9 +1574,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.4.tgz",
- "integrity": "sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz",
+ "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==",
"cpu": [
"arm64"
],
@@ -1616,9 +1587,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.4.tgz",
- "integrity": "sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz",
+ "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==",
"cpu": [
"x64"
],
@@ -1629,9 +1600,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.4.tgz",
- "integrity": "sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz",
+ "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==",
"cpu": [
"arm"
],
@@ -1642,9 +1613,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.4.tgz",
- "integrity": "sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz",
+ "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==",
"cpu": [
"arm"
],
@@ -1655,9 +1626,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.4.tgz",
- "integrity": "sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz",
+ "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==",
"cpu": [
"arm64"
],
@@ -1668,9 +1639,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.4.tgz",
- "integrity": "sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz",
+ "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==",
"cpu": [
"arm64"
],
@@ -1680,10 +1651,23 @@
"linux"
]
},
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.4.tgz",
- "integrity": "sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz",
+ "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==",
"cpu": [
"ppc64"
],
@@ -1694,9 +1678,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.4.tgz",
- "integrity": "sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==",
"cpu": [
"riscv64"
],
@@ -1707,9 +1691,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.4.tgz",
- "integrity": "sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz",
+ "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==",
"cpu": [
"s390x"
],
@@ -1720,9 +1704,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.4.tgz",
- "integrity": "sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz",
+ "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==",
"cpu": [
"x64"
],
@@ -1733,9 +1717,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.4.tgz",
- "integrity": "sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz",
+ "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==",
"cpu": [
"x64"
],
@@ -1746,9 +1730,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.4.tgz",
- "integrity": "sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz",
+ "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==",
"cpu": [
"arm64"
],
@@ -1759,9 +1743,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.4.tgz",
- "integrity": "sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==",
"cpu": [
"ia32"
],
@@ -1772,9 +1756,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.4.tgz",
- "integrity": "sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==",
"cpu": [
"x64"
],
@@ -1785,44 +1769,44 @@
]
},
"node_modules/@shikijs/core": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.23.1.tgz",
- "integrity": "sha512-NuOVgwcHgVC6jBVH5V7iblziw6iQbWWHrj5IlZI3Fqu2yx9awH7OIQkXIcsHsUmY19ckwSgUMgrqExEyP5A0TA==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.24.2.tgz",
+ "integrity": "sha512-BpbNUSKIwbKrRRA+BQj0BEWSw+8kOPKDJevWeSE/xIqGX7K0xrCZQ9kK0nnEQyrzsUoka1l81ZtJ2mGaCA32HQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4",
"hast-util-to-html": "^9.0.3"
}
},
"node_modules/@shikijs/engine-javascript": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.23.1.tgz",
- "integrity": "sha512-i/LdEwT5k3FVu07SiApRFwRcSJs5QM9+tod5vYCPig1Ywi8GR30zcujbxGQFJHwYD7A5BUqagi8o5KS+LEVgBg==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.24.2.tgz",
+ "integrity": "sha512-EqsmYBJdLEwEiO4H+oExz34a5GhhnVp+jH9Q/XjPjmBPc6TE/x4/gD0X3i0EbkKKNqXYHHJTJUpOLRQNkEzS9Q==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
- "oniguruma-to-es": "0.4.1"
+ "oniguruma-to-es": "0.7.0"
}
},
"node_modules/@shikijs/engine-oniguruma": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.23.1.tgz",
- "integrity": "sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.2.tgz",
+ "integrity": "sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0"
}
},
"node_modules/@shikijs/types": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.23.1.tgz",
- "integrity": "sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.2.tgz",
+ "integrity": "sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==",
"license": "MIT",
"dependencies": {
"@shikijs/vscode-textmate": "^9.3.0",
@@ -1830,9 +1814,9 @@
}
},
"node_modules/@shikijs/vscode-textmate": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz",
- "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==",
+ "version": "9.3.1",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.1.tgz",
+ "integrity": "sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==",
"license": "MIT"
},
"node_modules/@types/babel__core": {
@@ -1994,9 +1978,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"devOptional": true,
"license": "MIT",
"dependencies": {
@@ -2004,15 +1988,15 @@
}
},
"node_modules/@types/prop-types": {
- "version": "15.7.13",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz",
- "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==",
+ "version": "15.7.14",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
+ "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
"license": "MIT"
},
"node_modules/@types/react": {
- "version": "18.3.12",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz",
- "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==",
+ "version": "18.3.16",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.16.tgz",
+ "integrity": "sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw==",
"license": "MIT",
"dependencies": {
"@types/prop-types": "*",
@@ -2020,12 +2004,12 @@
}
},
"node_modules/@types/react-dom": {
- "version": "18.3.1",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz",
- "integrity": "sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==",
+ "version": "18.3.5",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz",
+ "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
"license": "MIT",
- "dependencies": {
- "@types/react": "*"
+ "peerDependencies": {
+ "@types/react": "^18.0.0"
}
},
"node_modules/@types/unist": {
@@ -2035,9 +2019,9 @@
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
- "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
+ "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==",
"license": "ISC"
},
"node_modules/@vitejs/plugin-react": {
@@ -2060,13 +2044,13 @@
}
},
"node_modules/@volar/kit": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.10.tgz",
- "integrity": "sha512-ul+rLeO9RlFDgkY/FhPWMnpFqAsjvjkKz8VZeOY5YCJMwTblmmSBlNJtFNxSBx9t/k1q80nEthLyxiJ50ZbIAg==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.11.tgz",
+ "integrity": "sha512-ups5RKbMzMCr6RKafcCqDRnJhJDNWqo2vfekwOAj6psZ15v5TlcQFQAyokQJ3wZxVkzxrQM+TqTRDENfQEXpmA==",
"license": "MIT",
"dependencies": {
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"typesafe-path": "^0.2.2",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
@@ -2076,23 +2060,23 @@
}
},
"node_modules/@volar/language-core": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.10.tgz",
- "integrity": "sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz",
+ "integrity": "sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==",
"license": "MIT",
"dependencies": {
- "@volar/source-map": "2.4.10"
+ "@volar/source-map": "2.4.11"
}
},
"node_modules/@volar/language-server": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.10.tgz",
- "integrity": "sha512-odQsgrJh8hOXfxkSj/BSnpjThb2/KDhbxZnG/XAEx6E3QGDQv4hAOz9GWuKoNs0tkjgwphQGIwDMT1JYaTgRJw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.11.tgz",
+ "integrity": "sha512-W9P8glH1M8LGREJ7yHRCANI5vOvTrRO15EMLdmh5WNF9sZYSEbQxiHKckZhvGIkbeR1WAlTl3ORTrJXUghjk7g==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-core": "2.4.11",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"path-browserify": "^1.0.1",
"request-light": "^0.7.0",
"vscode-languageserver": "^9.0.1",
@@ -2102,30 +2086,30 @@
}
},
"node_modules/@volar/language-service": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.10.tgz",
- "integrity": "sha512-VxUiWS11rnRzakkqw5x1LPhsz+RBfD0CrrFarLGW2/voliYXEdCuSOM3r8JyNRvMvP4uwhD38ccAdTcULQEAIQ==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.11.tgz",
+ "integrity": "sha512-KIb6g8gjUkS2LzAJ9bJCLIjfsJjeRtmXlu7b2pDFGD3fNqdbC53cCAKzgWDs64xtQVKYBU13DLWbtSNFtGuMLQ==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
}
},
"node_modules/@volar/source-map": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.10.tgz",
- "integrity": "sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.11.tgz",
+ "integrity": "sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==",
"license": "MIT"
},
"node_modules/@volar/typescript": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.10.tgz",
- "integrity": "sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.11.tgz",
+ "integrity": "sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"path-browserify": "^1.0.1",
"vscode-uri": "^3.0.8"
}
@@ -2314,21 +2298,17 @@
}
},
"node_modules/astro": {
- "version": "4.16.16",
- "resolved": "https://registry.npmjs.org/astro/-/astro-4.16.16.tgz",
- "integrity": "sha512-H1CttrV6+JFrDBQx0Mcbq5i5AeLhCbztB786+9wEu3svWL/QPNeCGqF0dgNORAYmP+rODGCPu/y9qKSh87iLuA==",
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/astro/-/astro-5.0.5.tgz",
+ "integrity": "sha512-xfptdmurDsQcj/Anc7mU+eKlcyV7ppJIlmaSwhX3ZWwK5N/0rGKVmUqnuILgR6MB0XVJiIfublNzDGoyj4Q6BQ==",
"license": "MIT",
"dependencies": {
"@astrojs/compiler": "^2.10.3",
- "@astrojs/internal-helpers": "0.4.1",
- "@astrojs/markdown-remark": "5.3.0",
- "@astrojs/telemetry": "3.1.0",
- "@babel/core": "^7.26.0",
- "@babel/plugin-transform-react-jsx": "^7.25.9",
- "@babel/types": "^7.26.0",
+ "@astrojs/internal-helpers": "0.4.2",
+ "@astrojs/markdown-remark": "6.0.1",
+ "@astrojs/telemetry": "3.2.0",
"@oslojs/encoding": "^1.1.0",
"@rollup/pluginutils": "^5.1.3",
- "@types/babel__core": "^7.20.5",
"@types/cookie": "^0.6.0",
"acorn": "^8.14.0",
"aria-query": "^5.3.2",
@@ -2351,7 +2331,6 @@
"fast-glob": "^3.3.2",
"flattie": "^1.1.1",
"github-slugger": "^2.0.0",
- "gray-matter": "^4.0.3",
"html-escaper": "^3.0.3",
"http-cache-semantics": "^4.1.1",
"js-yaml": "^4.1.0",
@@ -2361,7 +2340,6 @@
"micromatch": "^4.0.8",
"mrmime": "^2.0.0",
"neotraverse": "^0.6.18",
- "ora": "^8.1.1",
"p-limit": "^6.1.0",
"p-queue": "^8.0.1",
"preferred-pm": "^4.0.0",
@@ -2371,13 +2349,15 @@
"shiki": "^1.23.1",
"tinyexec": "^0.3.1",
"tsconfck": "^3.1.4",
+ "ultrahtml": "^1.5.3",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
- "vite": "^5.4.11",
+ "vite": "^6.0.1",
"vitefu": "^1.0.4",
"which-pm": "^3.0.0",
"xxhash-wasm": "^1.1.0",
"yargs-parser": "^21.1.1",
+ "yocto-spinner": "^0.1.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5",
"zod-to-ts": "^1.2.0"
@@ -2386,7 +2366,7 @@
"astro": "astro.js"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0",
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0",
"npm": ">=9.6.5",
"pnpm": ">=7.1.0"
},
@@ -2530,9 +2510,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.2",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz",
- "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==",
+ "version": "4.24.3",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
+ "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
"funding": [
{
"type": "opencollective",
@@ -2549,9 +2529,9 @@
],
"license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001669",
- "electron-to-chromium": "^1.5.41",
- "node-releases": "^2.0.18",
+ "caniuse-lite": "^1.0.30001688",
+ "electron-to-chromium": "^1.5.73",
+ "node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.1"
},
"bin": {
@@ -2583,9 +2563,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001684",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz",
- "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==",
+ "version": "1.0.30001688",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz",
+ "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==",
"funding": [
{
"type": "opencollective",
@@ -2708,33 +2688,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cli-cursor": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
- "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
- "license": "MIT",
- "dependencies": {
- "restore-cursor": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cli-spinners": {
- "version": "2.9.2",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
- "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
@@ -3074,9 +3027,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -3206,9 +3159,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
- "version": "1.5.65",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.65.tgz",
- "integrity": "sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw==",
+ "version": "1.5.73",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz",
+ "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==",
"license": "ISC"
},
"node_modules/emmet": {
@@ -3350,18 +3303,6 @@
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"license": "MIT"
},
- "node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@@ -3599,43 +3540,6 @@
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"license": "ISC"
},
- "node_modules/gray-matter": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
- "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
- "license": "MIT",
- "dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/gray-matter/node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/gray-matter/node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "license": "MIT",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
@@ -3738,9 +3642,9 @@
}
},
"node_modules/hast-util-to-html": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.3.tgz",
- "integrity": "sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==",
+ "version": "9.0.4",
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz",
+ "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
@@ -3886,9 +3790,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "version": "2.16.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
+ "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"license": "MIT",
"dependencies": {
"hasown": "^2.0.2"
@@ -3915,15 +3819,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
@@ -3972,18 +3867,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-interactive": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
- "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
@@ -4005,18 +3888,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-unicode-supported": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
- "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-wsl": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
@@ -4081,9 +3952,9 @@
}
},
"node_modules/jsesc": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
- "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
@@ -4116,15 +3987,6 @@
"integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==",
"license": "MIT"
},
- "node_modules/kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/kleur": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
@@ -4135,9 +3997,9 @@
}
},
"node_modules/lilconfig": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz",
- "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
"license": "MIT",
"engines": {
"node": ">=14"
@@ -4216,34 +4078,6 @@
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"license": "MIT"
},
- "node_modules/log-symbols": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
- "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "is-unicode-supported": "^1.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
- "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/longest-streak": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
@@ -4285,9 +4119,9 @@
}
},
"node_modules/magic-string": {
- "version": "0.30.14",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz",
- "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==",
+ "version": "0.30.15",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz",
+ "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0"
@@ -5136,18 +4970,6 @@
"url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/mimic-function": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
- "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
@@ -5245,9 +5067,9 @@
}
},
"node_modules/node-releases": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz",
- "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==",
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
"license": "MIT"
},
"node_modules/normalize-path": {
@@ -5286,53 +5108,15 @@
"node": ">= 6"
}
},
- "node_modules/onetime": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
- "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
- "license": "MIT",
- "dependencies": {
- "mimic-function": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/oniguruma-to-es": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.4.1.tgz",
- "integrity": "sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==",
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.7.0.tgz",
+ "integrity": "sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==",
"license": "MIT",
"dependencies": {
"emoji-regex-xs": "^1.0.0",
- "regex": "^5.0.0",
- "regex-recursion": "^4.2.1"
- }
- },
- "node_modules/ora": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/ora/-/ora-8.1.1.tgz",
- "integrity": "sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "cli-cursor": "^5.0.0",
- "cli-spinners": "^2.9.2",
- "is-interactive": "^2.0.0",
- "is-unicode-supported": "^2.0.0",
- "log-symbols": "^6.0.0",
- "stdin-discarder": "^0.2.2",
- "string-width": "^7.2.0",
- "strip-ansi": "^7.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "regex": "^5.0.2",
+ "regex-recursion": "^4.3.0"
}
},
"node_modules/p-limit": {
@@ -5708,9 +5492,9 @@
}
},
"node_modules/prettier": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz",
- "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
+ "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
"license": "MIT",
"optional": true,
"peer": true,
@@ -5843,9 +5627,9 @@
}
},
"node_modules/react-smooth": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.1.tgz",
- "integrity": "sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.3.tgz",
+ "integrity": "sha512-PyxIrra8WZWrMRFcCiJsZ+JqFaxEINAt+v/w++wQKQlmO99Eh3+JTLeKApdTsLX2roBdWYXqPsaS8sO4UmdzIg==",
"license": "MIT",
"dependencies": {
"fast-equals": "^5.0.1",
@@ -5896,9 +5680,9 @@
}
},
"node_modules/recharts": {
- "version": "2.13.3",
- "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.13.3.tgz",
- "integrity": "sha512-YDZ9dOfK9t3ycwxgKbrnDlRC4BHdjlY73fet3a0C1+qGMjXVZe6+VXmpOIIhzkje5MMEL8AN4hLIe4AMskBzlA==",
+ "version": "2.15.0",
+ "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.0.tgz",
+ "integrity": "sha512-cIvMxDfpAmqAmVgc4yb7pgm/O1tmmkl/CjrvXuW+62/+7jj/iF9Ykm+hb/UJt42TREHMyd3gb+pkgoa2MxgDIw==",
"license": "MIT",
"dependencies": {
"clsx": "^2.0.0",
@@ -5914,8 +5698,8 @@
"node": ">=14"
},
"peerDependencies": {
- "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/recharts-scale": {
@@ -6130,12 +5914,12 @@
}
},
"node_modules/resolve": {
- "version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "version": "1.22.9",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
+ "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.13.0",
+ "is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -6146,32 +5930,16 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/restore-cursor": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
- "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
+ "node_modules/retext": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
+ "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
"license": "MIT",
"dependencies": {
- "onetime": "^7.0.0",
- "signal-exit": "^4.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/retext": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
- "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
- "license": "MIT",
- "dependencies": {
- "@types/nlcst": "^2.0.0",
- "retext-latin": "^4.0.0",
- "retext-stringify": "^4.0.0",
- "unified": "^11.0.0"
+ "@types/nlcst": "^2.0.0",
+ "retext-latin": "^4.0.0",
+ "retext-stringify": "^4.0.0",
+ "unified": "^11.0.0"
},
"funding": {
"type": "opencollective",
@@ -6234,9 +6002,9 @@
}
},
"node_modules/rollup": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.4.tgz",
- "integrity": "sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz",
+ "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==",
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.6"
@@ -6249,24 +6017,25 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.27.4",
- "@rollup/rollup-android-arm64": "4.27.4",
- "@rollup/rollup-darwin-arm64": "4.27.4",
- "@rollup/rollup-darwin-x64": "4.27.4",
- "@rollup/rollup-freebsd-arm64": "4.27.4",
- "@rollup/rollup-freebsd-x64": "4.27.4",
- "@rollup/rollup-linux-arm-gnueabihf": "4.27.4",
- "@rollup/rollup-linux-arm-musleabihf": "4.27.4",
- "@rollup/rollup-linux-arm64-gnu": "4.27.4",
- "@rollup/rollup-linux-arm64-musl": "4.27.4",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.27.4",
- "@rollup/rollup-linux-riscv64-gnu": "4.27.4",
- "@rollup/rollup-linux-s390x-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-musl": "4.27.4",
- "@rollup/rollup-win32-arm64-msvc": "4.27.4",
- "@rollup/rollup-win32-ia32-msvc": "4.27.4",
- "@rollup/rollup-win32-x64-msvc": "4.27.4",
+ "@rollup/rollup-android-arm-eabi": "4.28.1",
+ "@rollup/rollup-android-arm64": "4.28.1",
+ "@rollup/rollup-darwin-arm64": "4.28.1",
+ "@rollup/rollup-darwin-x64": "4.28.1",
+ "@rollup/rollup-freebsd-arm64": "4.28.1",
+ "@rollup/rollup-freebsd-x64": "4.28.1",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.28.1",
+ "@rollup/rollup-linux-arm-musleabihf": "4.28.1",
+ "@rollup/rollup-linux-arm64-gnu": "4.28.1",
+ "@rollup/rollup-linux-arm64-musl": "4.28.1",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.28.1",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1",
+ "@rollup/rollup-linux-riscv64-gnu": "4.28.1",
+ "@rollup/rollup-linux-s390x-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-musl": "4.28.1",
+ "@rollup/rollup-win32-arm64-msvc": "4.28.1",
+ "@rollup/rollup-win32-ia32-msvc": "4.28.1",
+ "@rollup/rollup-win32-x64-msvc": "4.28.1",
"fsevents": "~2.3.2"
}
},
@@ -6302,19 +6071,6 @@
"loose-envify": "^1.1.0"
}
},
- "node_modules/section-matter": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -6399,15 +6155,15 @@
}
},
"node_modules/shiki": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.23.1.tgz",
- "integrity": "sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.24.2.tgz",
+ "integrity": "sha512-TR1fi6mkRrzW+SKT5G6uKuc32Dj2EEa7Kj0k8kGqiBINb+C1TiflVOiT9ta6GqOJtC4fraxO5SLUaKBcSY38Fg==",
"license": "MIT",
"dependencies": {
- "@shikijs/core": "1.23.1",
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/core": "1.24.2",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4"
}
@@ -6465,18 +6221,6 @@
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"license": "BSD-3-Clause"
},
- "node_modules/stdin-discarder": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/string-width": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
@@ -6596,15 +6340,6 @@
"node": ">=4"
}
},
- "node_modules/strip-bom-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/sucrase": {
"version": "3.35.0",
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
@@ -6663,9 +6398,9 @@
}
},
"node_modules/tailwindcss": {
- "version": "3.4.15",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz",
- "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==",
+ "version": "3.4.16",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.16.tgz",
+ "integrity": "sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==",
"license": "MIT",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
@@ -6677,7 +6412,7 @@
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"jiti": "^1.21.6",
- "lilconfig": "^2.1.0",
+ "lilconfig": "^3.1.3",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"object-hash": "^3.0.0",
@@ -6756,15 +6491,6 @@
"node": ">=10.13.0"
}
},
- "node_modules/tailwindcss/node_modules/lilconfig": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
- "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/tailwindcss/node_modules/picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
@@ -6888,9 +6614,9 @@
"optional": true
},
"node_modules/type-fest": {
- "version": "4.29.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz",
- "integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==",
+ "version": "4.30.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.1.tgz",
+ "integrity": "sha512-ojFL7eDMX2NF0xMbDwPZJ8sb7ckqtlAi1GsmgsFXvErT9kFTk1r0DuQKvrCh73M6D4nngeHJmvogF9OluXs7Hw==",
"license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=16"
@@ -7125,12 +6851,12 @@
}
},
"node_modules/use-sync-external-store": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz",
- "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz",
+ "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==",
"license": "MIT",
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/util-deprecate": {
@@ -7204,20 +6930,20 @@
}
},
"node_modules/vite": {
- "version": "5.4.11",
- "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz",
- "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.3.tgz",
+ "integrity": "sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==",
"license": "MIT",
"dependencies": {
- "esbuild": "^0.21.3",
- "postcss": "^8.4.43",
- "rollup": "^4.20.0"
+ "esbuild": "^0.24.0",
+ "postcss": "^8.4.49",
+ "rollup": "^4.23.0"
},
"bin": {
"vite": "bin/vite.js"
},
"engines": {
- "node": "^18.0.0 || >=20.0.0"
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"funding": {
"url": "https://github.com/vitejs/vite?sponsor=1"
@@ -7226,19 +6952,25 @@
"fsevents": "~2.3.3"
},
"peerDependencies": {
- "@types/node": "^18.0.0 || >=20.0.0",
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
"less": "*",
"lightningcss": "^1.21.0",
"sass": "*",
"sass-embedded": "*",
"stylus": "*",
"sugarss": "*",
- "terser": "^5.4.0"
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
+ "jiti": {
+ "optional": true
+ },
"less": {
"optional": true
},
@@ -7259,9 +6991,422 @@
},
"terser": {
"optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
}
}
},
+ "node_modules/vite/node_modules/@esbuild/aix-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
+ "integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
+ "integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
+ "integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
+ "integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
+ "integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
+ "integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
+ "integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
+ "integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
+ "integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
+ "integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
+ "integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz",
+ "integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==",
+ "cpu": [
+ "mips64el"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz",
+ "integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz",
+ "integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-s390x": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz",
+ "integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz",
+ "integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/sunos-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz",
+ "integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz",
+ "integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz",
+ "integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz",
+ "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/esbuild": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.0.tgz",
+ "integrity": "sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.24.0",
+ "@esbuild/android-arm": "0.24.0",
+ "@esbuild/android-arm64": "0.24.0",
+ "@esbuild/android-x64": "0.24.0",
+ "@esbuild/darwin-arm64": "0.24.0",
+ "@esbuild/darwin-x64": "0.24.0",
+ "@esbuild/freebsd-arm64": "0.24.0",
+ "@esbuild/freebsd-x64": "0.24.0",
+ "@esbuild/linux-arm": "0.24.0",
+ "@esbuild/linux-arm64": "0.24.0",
+ "@esbuild/linux-ia32": "0.24.0",
+ "@esbuild/linux-loong64": "0.24.0",
+ "@esbuild/linux-mips64el": "0.24.0",
+ "@esbuild/linux-ppc64": "0.24.0",
+ "@esbuild/linux-riscv64": "0.24.0",
+ "@esbuild/linux-s390x": "0.24.0",
+ "@esbuild/linux-x64": "0.24.0",
+ "@esbuild/netbsd-x64": "0.24.0",
+ "@esbuild/openbsd-arm64": "0.24.0",
+ "@esbuild/openbsd-x64": "0.24.0",
+ "@esbuild/sunos-x64": "0.24.0",
+ "@esbuild/win32-arm64": "0.24.0",
+ "@esbuild/win32-ia32": "0.24.0",
+ "@esbuild/win32-x64": "0.24.0"
+ }
+ },
"node_modules/vitefu": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.4.tgz",
@@ -7429,9 +7574,9 @@
}
},
"node_modules/vscode-css-languageservice": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.1.tgz",
- "integrity": "sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==",
+ "version": "6.3.2",
+ "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.2.tgz",
+ "integrity": "sha512-GEpPxrUTAeXWdZWHev1OJU9lz2Q2/PPBxQ2TIRmLGvQiH3WZbqaNoute0n0ewxlgtjzTW3AKZT+NHySk5Rf4Eg==",
"license": "MIT",
"dependencies": {
"@vscode/l10n": "^0.0.18",
@@ -7886,22 +8031,49 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/yocto-spinner": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.1.2.tgz",
+ "integrity": "sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==",
+ "license": "MIT",
+ "dependencies": {
+ "yoctocolors": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=18.19"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yoctocolors": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
+ "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
+ "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
},
"node_modules/zod-to-json-schema": {
- "version": "3.23.5",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.5.tgz",
- "integrity": "sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz",
+ "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==",
"license": "ISC",
"peerDependencies": {
- "zod": "^3.23.3"
+ "zod": "^3.24.1"
}
},
"node_modules/zod-to-ts": {
diff --git a/src/custom-developments/basic_bargraph/package.json b/src/custom-developments/basic_bargraph/package.json
index a18917a0..c19d04c0 100644
--- a/src/custom-developments/basic_bargraph/package.json
+++ b/src/custom-developments/basic_bargraph/package.json
@@ -11,12 +11,12 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
diff --git a/src/custom-developments/basic_bargraph/src/components/RealTimeBarGraph.tsx b/src/custom-developments/basic_bargraph/src/components/RealTimeBarGraph.tsx
index 4cb233ee..f9d06301 100644
--- a/src/custom-developments/basic_bargraph/src/components/RealTimeBarGraph.tsx
+++ b/src/custom-developments/basic_bargraph/src/components/RealTimeBarGraph.tsx
@@ -8,7 +8,7 @@ import {
Tooltip,
ResponsiveContainer,
} from 'recharts'
-import { type DataPoint, readRealTimeData } from '../lib/scadaOpcApi'
+import { type DataPoint, getRealTimeData } from '../lib/scadaOpcApi'
export function RealTimeBarGraph() {
const [data, setData] = useState([])
@@ -17,7 +17,7 @@ export function RealTimeBarGraph() {
useEffect(() => {
const fetchData = async () => {
try {
- const result = await readRealTimeData([
+ const result = await getRealTimeData([
'KAW2TR1-2MTWT',
'KAW2TR1-2MTVR',
'KAW2TR2-2MTWT',
diff --git a/src/custom-developments/basic_bargraph/src/lib/opcCodes.ts b/src/custom-developments/basic_bargraph/src/lib/opcCodes.ts
deleted file mode 100644
index e5ec96a4..00000000
--- a/src/custom-developments/basic_bargraph/src/lib/opcCodes.ts
+++ /dev/null
@@ -1,174 +0,0 @@
-// OPC-UA Standard Codes (and some extensions).
-// {json:scada} - Copyright 2020 - Ricardo L. Olsen
-
-export const OpcNamespaceMongodb = 2 // first user namespace
-export const OpcNamespacePostgresql = 3 // second user namespace
-
-export const OpcAcknowledge = {
- AckOneEvent: 0x00000001,
- RemoveOneEvent: 0x00000002,
- AckPointEvents: 0x00000004,
- RemovePointEvents: 0x00000008,
- AckAllEvents: 0x00000040,
- RemoveAllEvents: 0x00000080,
- AckOneAlarm: 0x00000100,
- AckAllAlarms: 0x00000400,
- SilenceBeep: 0x00001000,
-} as const
-
-export const OpcStatusCodes = {
- Good: 0,
- GoodNoData: 0x00a50000,
- GoodMoreData: 0x00a60000,
- Uncertain: 0x40000000,
- Bad: 0x80000000,
- BadTimeout: 0x800a0000,
- BadNodeAttributesInvalid: 0x80620000,
- BadNodeIdInvalid: 0x80330000,
- BadNodeIdUnknown: 0x80340000,
- BadRequestHeaderInvalid: 0x802a0000,
- BadRequestNotAllowed: 0x80e40000,
- BadServiceUnsupported: 0x800b0000,
- BadShutdown: 0x800c0000,
- BadServerNotConnected: 0x800d0000,
- BadServerHalted: 0x800e0000,
- BadNothingToDo: 0x800f0000,
- BadUserAccessDenied: 0x801f0000,
- BadIdentityTokenInvalid: 0x80200000,
- BadIdentityTokenRejected: 0x80210000,
- BadUnexpectedError: 0x80010000,
- BadInternalError: 0x80020000,
- BadOutOfMemory: 0x80030000,
- BadResourceUnavailable: 0x80040000,
- BadCommunicationError: 0x80050000,
- BadInvalidArgument: 0x80ab0000,
- BadDisconnect: 0x80ad0000,
- BadConnectionClosed: 0x80ae0000,
- BadInvalidState: 0x80af0000,
- BadNoDataAvailable: 0x80b10000,
- BadWaitingForResponse: 0x80b20000,
-} as const
-
-export const TimestampsToReturn = {
- Source: 0,
- Server: 1,
- Both: 2,
- Neither: 3,
- Invalid: 4,
-} as const
-
-export const OpcValueTypes = {
- Null: 0,
- Boolean: 1,
- SByte: 2,
- Byte: 3,
- Int16: 4,
- UInt16: 5,
- Int32: 6,
- UInt32: 7,
- Int64: 8,
- UInt64: 9,
- Float: 10,
- Double: 11,
- String: 12,
- DateTime: 13,
- Guid: 14,
- ByteString: 15,
- XmlElement: 16,
- NodeId: 17,
- ExpandedNodeId: 18,
- StatusCode: 19,
- QualifiedName: 20,
- LocalizedText: 21,
- ExtensionObject: 22,
- DataValue: 23,
- Variant: 24,
- DiagnosticInfo: 25,
- Number: 26,
- Integer: 27,
- UInteger: 28,
- Enumeration: 29,
-} as const
-
-export const OpcKeyType = {
- Numeric: 0,
- String: 1,
-} as const
-
-export const OpcServiceCode = {
- ServiceFault: 395,
- RequestHeader: 389,
- ResponseHeader: 392,
- ReadValueId: 626,
- ReadRequest: 629,
- ReadResponse: 632,
- ReadRawModifiedDetails: 647,
- HistoryReadRequest: 662,
- HistoryReadResponse: 665,
- WriteValue: 668,
- WriteRequest: 671,
- WriteResponse: 674,
- DataChangeNotification: 809,
- StatusChangeNotification: 818,
- Extended_RequestUniqueAttributeValues: 100000001,
- Extended_ResponseUniqueAttributeValues: 100000002,
-} as const
-
-export const OpcOperand = {
- Attribute: 598,
- Literal: 595,
- Element: 592,
- SimpleAttributeOperand: 601,
-} as const
-
-export const OpcAttributeId = {
- NodeID: 1,
- NodeClass: 2,
- BrowseName: 3,
- DisplayName: 4,
- Description: 5,
- WriteMask: 6,
- UserWriteMask: 7,
- IsAbstract: 8,
- Symmetric: 9,
- InverseName: 10,
- ContainsNoLoops: 11,
- EventNotifier: 12,
- Value: 13,
- DataType: 14,
- ValueRank: 15,
- ArrayDimensions: 16,
- AccessLevel: 17,
- UserAccessLevel: 18,
- MinimumSamplingInterval: 19,
- Historizing: 20,
- Executable: 21,
- UserExecutable: 22,
- ExtendedGroup1: 100000001,
- ExtendedGroup2: 100000002,
- ExtendedGroup3: 100000003,
- ExtendedAlarmEventsAck: 100000004,
- ExtendedBlockingAnnotation: 100000005,
- ExtendedDocumentalAnnotation: 100000006,
-} as const
-
-export const OpcFilterOperator = {
- Equals: 0,
- IsNull: 1,
- GreaterThan: 2,
- LessThan: 3,
- GreaterThanOrEqual: 4,
- LessThanOrEqual: 5,
- Like: 6,
- Not: 7,
- Between: 8,
- InList: 9,
- And: 10,
- Or: 11,
- Cast: 12,
- InView: 13,
- OfType: 14,
- RelatedTo: 15,
- BitwiseAnd: 16,
- BitwiseOr: 17,
-} as const
diff --git a/src/custom-developments/basic_bargraph/src/lib/scadaOpcApi.ts b/src/custom-developments/basic_bargraph/src/lib/scadaOpcApi.ts
index df808de0..5ed51844 100644
--- a/src/custom-developments/basic_bargraph/src/lib/scadaOpcApi.ts
+++ b/src/custom-developments/basic_bargraph/src/lib/scadaOpcApi.ts
@@ -1,66 +1,466 @@
-import {
- OpcAttributeId,
- OpcFilterOperator,
- OpcKeyType,
- OpcNamespaceMongodb,
- OpcNamespacePostgresql,
- OpcOperand,
- OpcServiceCode,
- OpcStatusCodes,
- OpcValueTypes,
- TimestampsToReturn,
-} from './opcCodes'
+// API to interact with the SCADA server
+// Inspired by OPC WebHMI protocol
+// https://github.com/OPCFoundation/UA-.NETStandard/tree/demo/webapi/SampleApplications/Workshop/Reference
+// https://web.archive.org/web/20211018094004/https://prototyping.opcfoundation.org/
+// OPC-UA Standard Codes (and some extensions adapted to use to interact with the SCADA).
+// {json:scada} - Copyright 2024 - Ricardo L. Olsen
+export const OpcNamespaces = {
+ Mongodb: 2,
+ Postgresql: 3,
+}
+
+export const OpcAcknowledge = {
+ AckOneEvent: 0x00000001,
+ RemoveOneEvent: 0x00000002,
+ AckPointEvents: 0x00000004,
+ RemovePointEvents: 0x00000008,
+ AckAllEvents: 0x00000040,
+ RemoveAllEvents: 0x00000080,
+ AckOneAlarm: 0x00000100,
+ AckAllAlarms: 0x00000400,
+ SilenceBeep: 0x00001000,
+} as const
+
+export const OpcStatusCodes = {
+ Good: 0,
+ GoodNoData: 0x00a50000,
+ GoodMoreData: 0x00a60000,
+ Uncertain: 0x40000000,
+ Bad: 0x80000000,
+ BadTimeout: 0x800a0000,
+ BadNodeAttributesInvalid: 0x80620000,
+ BadNodeIdInvalid: 0x80330000,
+ BadNodeIdUnknown: 0x80340000,
+ BadRequestHeaderInvalid: 0x802a0000,
+ BadRequestNotAllowed: 0x80e40000,
+ BadServiceUnsupported: 0x800b0000,
+ BadShutdown: 0x800c0000,
+ BadServerNotConnected: 0x800d0000,
+ BadServerHalted: 0x800e0000,
+ BadNothingToDo: 0x800f0000,
+ BadUserAccessDenied: 0x801f0000,
+ BadIdentityTokenInvalid: 0x80200000,
+ BadIdentityTokenRejected: 0x80210000,
+ BadUnexpectedError: 0x80010000,
+ BadInternalError: 0x80020000,
+ BadOutOfMemory: 0x80030000,
+ BadResourceUnavailable: 0x80040000,
+ BadCommunicationError: 0x80050000,
+ BadInvalidArgument: 0x80ab0000,
+ BadDisconnect: 0x80ad0000,
+ BadConnectionClosed: 0x80ae0000,
+ BadInvalidState: 0x80af0000,
+ BadNoDataAvailable: 0x80b10000,
+ BadWaitingForResponse: 0x80b20000,
+} as const
+
+export const TimestampsToReturn = {
+ Source: 0,
+ Server: 1,
+ Both: 2,
+ Neither: 3,
+ Invalid: 4,
+} as const
+
+export const OpcValueTypes = {
+ Null: 0,
+ Boolean: 1,
+ SByte: 2,
+ Byte: 3,
+ Int16: 4,
+ UInt16: 5,
+ Int32: 6,
+ UInt32: 7,
+ Int64: 8,
+ UInt64: 9,
+ Float: 10,
+ Double: 11,
+ String: 12,
+ DateTime: 13,
+ Guid: 14,
+ ByteString: 15,
+ XmlElement: 16,
+ NodeId: 17,
+ ExpandedNodeId: 18,
+ StatusCode: 19,
+ QualifiedName: 20,
+ LocalizedText: 21,
+ ExtensionObject: 22,
+ DataValue: 23,
+ Variant: 24,
+ DiagnosticInfo: 25,
+ Number: 26,
+ Integer: 27,
+ UInteger: 28,
+ Enumeration: 29,
+} as const
+
+export const OpcKeyType = {
+ Numeric: 0,
+ String: 1,
+} as const
+
+export const OpcServiceCode = {
+ ServiceFault: 395,
+ RequestHeader: 389,
+ ResponseHeader: 392,
+ ReadValueId: 626,
+ ReadRequest: 629,
+ ReadResponse: 632,
+ ReadRawModifiedDetails: 647,
+ HistoryReadRequest: 662,
+ HistoryReadResponse: 665,
+ WriteValue: 668,
+ WriteRequest: 671,
+ WriteResponse: 674,
+ DataChangeNotification: 809,
+ StatusChangeNotification: 818,
+ Extended_RequestUniqueAttributeValues: 100000001,
+ Extended_ResponseUniqueAttributeValues: 100000002,
+} as const
+
+export const OpcOperand = {
+ Attribute: 598,
+ Literal: 595,
+ Element: 592,
+ SimpleAttributeOperand: 601,
+} as const
+
+export const OpcAttributeId = {
+ NodeID: 1,
+ NodeClass: 2,
+ BrowseName: 3,
+ DisplayName: 4,
+ Description: 5,
+ WriteMask: 6,
+ UserWriteMask: 7,
+ IsAbstract: 8,
+ Symmetric: 9,
+ InverseName: 10,
+ ContainsNoLoops: 11,
+ EventNotifier: 12,
+ Value: 13,
+ DataType: 14,
+ ValueRank: 15,
+ ArrayDimensions: 16,
+ AccessLevel: 17,
+ UserAccessLevel: 18,
+ MinimumSamplingInterval: 19,
+ Historizing: 20,
+ Executable: 21,
+ UserExecutable: 22,
+ ExtendedGroup1: 100000001,
+ ExtendedGroup2: 100000002,
+ ExtendedGroup3: 100000003,
+ ExtendedAlarmEventsAck: 100000004,
+ ExtendedBlockingAnnotation: 100000005,
+ ExtendedDocumentalAnnotation: 100000006,
+} as const
+
+export const OpcFilterOperator = {
+ Equals: 0,
+ IsNull: 1,
+ GreaterThan: 2,
+ LessThan: 3,
+ GreaterThanOrEqual: 4,
+ LessThanOrEqual: 5,
+ Like: 6,
+ Not: 7,
+ Between: 8,
+ InList: 9,
+ And: 10,
+ Or: 11,
+ Cast: 12,
+ InView: 13,
+ OfType: 14,
+ RelatedTo: 15,
+ BitwiseAnd: 16,
+ BitwiseOr: 17,
+} as const
+
+export const OpcDiagnosticInfoMask = {
+ SymbolicId: 1,
+ LocalizedText: 2,
+ AdditionalInfo: 4,
+ InnerStatusCode: 8,
+ InnerDiagnosticInfo: 16,
+} as const
+
+/**
+ * Represents a node (tag) identifier, which includes the type of identifier,
+ * the actual identifier value, and the namespace index. The `IdType` indicates
+ * how the `Id` should be interpreted, while the `Namespace` specifies the
+ * namespace to which the node belongs. The `Id` can be a string or undefined.
+ * @property {typeof OpcKeyType[keyof typeof OpcKeyType]} IdType - The type of identifier, which can be 0 or 1.
+ * @property {string | number | undefined} Id - The actual identifier value, which can be a string, number, or undefined.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace index, which can be 2 or 3.
+ */
export interface OpcNodeId {
- IdType: number
- Id: string | undefined
- Namespace: number
+ IdType: (typeof OpcKeyType)[keyof typeof OpcKeyType] // Only allows 0 or 1
+ Id: string | number | undefined
+ Namespace: (typeof OpcNamespaces)[keyof typeof OpcNamespaces] // Only allows 2 or 3
}
+/**
+ * Represents a node (tag) to be read. It includes the node's identifier
+ * and the specific attribute of the node that needs to be read. The `NodeId` contains
+ * details about the node's type, identifier, and namespace, while `AttributeId` specifies
+ * the attribute of the node to be accessed.
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be read.
+ */
export interface OpcNodeToRead {
NodeId: OpcNodeId
- AttributeId: number
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ ClientHandle?: string
+}
+
+/**
+ * Represents additional properties of an OPC value, such as alarm settings, annotation, and notes.
+ *
+ * @property {boolean} [alarmDisabled] - Whether the alarm is disabled.
+ * @property {string} [annotation] - The (blocking) annotation of the value.
+ * @property {number} [loLimit] - The low limit of the value for out of range alarms.
+ * @property {number} [hiLimit] - The high limit of the value for out of range alarms.
+ * @property {number} [hysteresis] - The hysteresis of the value for out of range alarms.
+ * @property {string} [notes] - The documental notes of the value.
+ * @property {number} [newValue] - The new value of the value.
+ * @property {boolean} [substituted] - Whether the value is substituted (manually imposed).
+ */
+export interface ExtendedProperties {
+ alarmDisabled?: boolean
+ annotation?: string
+ loLimit?: number
+ hiLimit?: number
+ hysteresis?: number
+ notes?: string
+ newValue?: number
+ substituted?: boolean
+}
+
+/**
+ * Represents an OPC value for a tag (node), which includes the type of the value and the
+ * actual value content. The `Type` property specifies the type of the value,
+ * which can be one of the values in `OpcValueTypes`. The `Body` property
+ * contains the actual value content, which can be a number, string, or boolean.
+ * The `_Properties` property is an optional object that contains additional
+ * information about the value, such as alarm settings, annotation, and notes.
+ * The properties in `_Properties` are specific to the type of value and are not
+ * required to be present.
+ * @property {typeof OpcValueTypes[keyof typeof OpcValueTypes]} Type - The type of the value, which can be one of the values in `OpcValueTypes`.
+ * @property {number | string | boolean} Body - The actual value content, which can be a number, string, or boolean.
+ * @property {object} _Properties - An optional object that contains additional information about the value, such as alarm settings, annotation, and notes.
+ */
+export interface OpcValue {
+ Type?: (typeof OpcValueTypes)[keyof typeof OpcValueTypes]
+ Body?: number | string | boolean
+ _Properties?: ExtendedProperties
+}
+
+/**
+ * Represents a node (tag) to be written. It includes the node's identifier
+ * and the specific attribute of the node that needs to be written. The
+ * `NodeId` contains details about the node's type, identifier, and namespace,
+ * while `AttributeId` specifies the attribute of the node to be accessed.
+ * The `Value` property contains the value to be written to the node.
+ *
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be written.
+ * @property {OpcValue} Value - The value to be written to the node.
+ */
+export interface OpcNodeToWrite {
+ NodeId: OpcNodeId
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Value: OpcValue
}
+/**
+ * The OPC UA request header.
+ *
+ * The header contains the timestamp of the request, a unique request handle,
+ * a timeout hint, a flag to determine what type of diagnostics to return,
+ * and an authentication token.
+ *
+ * @property {string} Timestamp - The timestamp of the request in ISO string format.
+ * @property {number} RequestHandle - A unique handle to identify the request.
+ * @property {number} TimeoutHint - The timeout hint for the request in milliseconds.
+ * @property {typeof OpcDiagnosticInfoMask[keyof typeof OpcDiagnosticInfoMask]} ReturnDiagnostics - A flag to determine what type of diagnostics to return.
+ * @property {null} AuthenticationToken - The authentication token for the request. Currently, it is always null.
+ */
export interface OpcRequestHeader {
Timestamp: string
RequestHandle: number
TimeoutHint: number
- ReturnDiagnostics: number
+ ReturnDiagnostics: (typeof OpcDiagnosticInfoMask)[keyof typeof OpcDiagnosticInfoMask]
AuthenticationToken: null
}
+/**
+ * Represents an operand in a content filter. The operand can be an attribute,
+ * a literal value, or an element. The `FilterOperand` indicates the type of
+ * operand, while the `Value` contains the actual value. The value can be a
+ * string, number, or boolean.
+ *
+ * @property {typeof OpcOperand[keyof typeof OpcOperand]} FilterOperand - The type of operand.
+ * @property {string | number | boolean} Value - The actual value of the operand.
+ */
+export interface OpcFilterOperand {
+ FilterOperand: (typeof OpcOperand)[keyof typeof OpcOperand]
+ Value: string | number | boolean
+}
+
+/**
+ * Represents a content filter in the OPC UA request body.
+ *
+ * The content filter is a feature to filter the data returned by the
+ * server. It consists of a filter operator and an array of filter operands.
+ * The filter operator defines the type of operation to be performed on the
+ * filter operands, while the filter operands specify the actual values to be
+ * compared.
+ *
+ * @property {typeof OpcFilterOperator[keyof typeof OpcFilterOperator]} FilterOperator - The type of filter operation to be performed.
+ * @property {OpcFilterOperand[]} FilterOperands - An array of filter operands to be compared.
+ */
+export interface OpcContentFilter {
+ FilterOperator: (typeof OpcFilterOperator)[keyof typeof OpcFilterOperator]
+ FilterOperands: OpcFilterOperand[]
+}
+
+/**
+ * The parameters for the OPC UA HistoryRead request.
+ *
+ * The `IsModified` flag must be set to false.
+ * The `StartTime` and `EndTime` properties are ISO strings representing the start and end times
+ * of the history data to be read.
+ * @property {boolean} IsModified - A flag that must be set to false.
+ * @property {string} StartTime - The start time of the history data to be read in ISO string format.
+ * @property {string} EndTime - The end time of the history data to be read in ISO string format.
+ * @property {number} NumValuesPerNode - The number of values to be read per node.
+ */
+export interface OpcParameterData {
+ IsReadModified: boolean
+ StartTime: string
+ EndTime: string
+ NumValuesPerNode?: number
+}
+
+/**
+ * The details of the OPC UA HistoryRead request.
+ *
+ * The `ParameterTypeId` specifies the type of history read request.
+ * The `ParameterData` contains the parameters for the history read request.
+ */
+export interface OpcHistoryReadDetails {
+ ParameterTypeId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
+ ParameterData: OpcParameterData
+}
+
+export interface OpcAggregateFilter {
+ AggregateType: string
+}
+
+/**
+ * The body of an OPC request.
+ *
+ * The body contains the request header, the maximum age of the data to be returned,
+ * the type of timestamps to return, and the nodes to read.
+ *
+ * @property {OpcRequestHeader} RequestHeader - The request header.
+ * @property {number} MaxAge - The maximum age of the data to be returned in milliseconds.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The type of attribute to read.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace to read from.
+ * @property {typeof TimestampsToReturn[keyof typeof TimestampsToReturn]} TimestampsToReturn - The type of timestamps to return.
+ * @property {OpcNodeToRead[]} NodesToRead - The nodes to read.
+ * @property {any} NodesToWrite - The nodes to write.
+ */
export interface OpcRequestBody {
RequestHeader: OpcRequestHeader
- MaxAge: number
- TimestampsToReturn: number
- NodesToRead: OpcNodeToRead[]
+ MaxAge?: number
+ AttributeId?: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Namespace?: (typeof OpcNamespaces)[keyof typeof OpcNamespaces]
+ TimestampsToReturn?: (typeof TimestampsToReturn)[keyof typeof TimestampsToReturn]
+ ContentFilter?: any
+ HistoryReadDetails?: OpcHistoryReadDetails
+ NodesToRead?: OpcNodeToRead[]
+ NodesToWrite?: OpcNodeToWrite[]
+ AggregateFilter?: OpcAggregateFilter
}
+/**
+ * An OPC-like HTTP request.
+ *
+ * The request contains the service ID and the request body. The service ID
+ * specifies which service to call, and the request body contains the parameters
+ * for the service.
+ *
+ * @property {(typeof OpcServiceCode)[keyof typeof OpcServiceCode]} ServiceId - The service ID for the request.
+ * @property {OpcRequestBody} Body - The request body.
+ */
export interface OpcRequest {
- ServiceId: number
+ ServiceId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
Body: OpcRequestBody
}
+/**
+ * Represents a single data point read result from a tag, containing its name, value,
+ * value as a string, quality, timestamp, group1, group2, and description.
+ *
+ * @property {string} name - The name of the tag.
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {string} timestamp - The timestamp of the tag value.
+ * @property {string} group1 - The group1 of the tag.
+ * @property {string} group2 - The group2 of the tag.
+ * @property {string} description - The description of the tag.
+ */
export interface DataPoint {
name: string
value: number
valueString: string
- quality: number
- timestamp: string
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
+ timestamp: Date
group1: string
group2: string
description: string
}
+/**
+ * Represents a single historical sample for a tag, containing its value, value as a string, quality, server timestamp, and source timestamp.
+ *
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {Date} serverTimestamp - The timestamp when the value was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the data.
+ */
export interface HistoricalData {
value: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
}
+/**
+ * Represents a Sequence of Events (SOE) data object.
+ * The SOE data includes details about an event such as its name, description,
+ * associated station (group1), event identifier, priority level, and the value
+ * of the event as a string. Additionally, it contains quality information,
+ * server and source timestamps, and a flag indicating if the source timestamp is valid.
+ *
+ * @property {string} name - The name of the event.
+ * @property {string} description - A brief description of the event.
+ * @property {string} group1 - The station name associated with the event.
+ * @property {string} eventId - The unique identifier for the event.
+ * @property {number} priority - The priority level of the event.
+ * @property {string} valueString - The value of the event as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the event data.
+ * @property {Date} serverTimestamp - The timestamp when the event was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the event.
+ * @property {boolean} sourceTimestampOk - Indicates if the source timestamp is valid.
+ */
export interface SoeData {
name: string
description: string
@@ -68,25 +468,33 @@ export interface SoeData {
eventId: string
priority: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
sourceTimestampOk: boolean
}
-// Get the group1 (station names) list
-export async function getGroup1List (): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
+export interface CommandResult {
+ ok: boolean
+ error: string
+ commandHandle: string
+}
+
+/**
+ * Get the group1 (station names) list
+ * @returns {Promise} a promise that resolves to a list of group1 names
+ */
+export async function getGroup1List(): Promise {
const ServiceId = OpcServiceCode.Extended_RequestUniqueAttributeValues // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
AttributeId: OpcAttributeId.ExtendedGroup1,
@@ -110,7 +518,6 @@ export async function getGroup1List (): Promise {
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('RequestUniqueAttributeValues invalid service response!')
return []
}
@@ -121,13 +528,9 @@ export async function getGroup1List (): Promise {
OpcServiceCode.Extended_ResponseUniqueAttributeValues &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log(
- 'RequestUniqueAttributeValues invalid or unexpected service response!'
- )
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('RequestUniqueAttributeValues service error!')
return []
}
@@ -141,22 +544,27 @@ export async function getGroup1List (): Promise {
})
return group1List
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime filtered data
-export async function getRealtimeFilteredData (
+/**
+ * Get the filtered tags data from the server.
+ * @param {string} group1Filter - filter by group1 (station names)
+ * @param {string} group2Filter - filter by group2 (bay names)
+ * @param {boolean} onlyAlarms - filter by only alarmed tags
+ * @returns {Promise} a promise that resolves to an array of DataPoint objects
+ */
+export async function getRealtimeFilteredData(
group1Filter: string,
group2Filter: string,
onlyAlarms: boolean
): Promise {
try {
- let ContentFilter = []
- let ContFiltElem = {
+ let ContentFilter: OpcContentFilter[] = []
+ let ContFiltElem: OpcContentFilter = {
FilterOperator: OpcFilterOperator.Equals,
- FilterOperands: [] as any,
+ FilterOperands: [] as OpcFilterOperand[],
}
if (typeof group1Filter === 'string' && group1Filter.trim() !== '') {
@@ -227,20 +635,19 @@ export async function getRealtimeFilteredData (
ContentFilter.push(ContFiltElem)
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
ContentFilter: ContentFilter,
MaxAge: 0,
TimestampsToReturn: TimestampsToReturn.Both,
@@ -262,7 +669,6 @@ export async function getRealtimeFilteredData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -272,14 +678,12 @@ export async function getRealtimeFilteredData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
// check access control denied, in this case go to initial page
if (
data.Body.ResponseHeader.ServiceResult ===
@@ -328,16 +732,18 @@ export async function getRealtimeFilteredData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime data from tag names list
-export async function readRealTimeData (
+/**
+ * Retrieves real-time data from the given list of tag names
+ * @param {string[]} variables list of tag names
+ * @returns {Promise} a promise that resolves to an array of data points
+ */
+export async function getRealTimeData(
variables: string[]
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
const req: OpcRequest = {
@@ -347,7 +753,7 @@ export async function readRealTimeData (
Timestamp: new Date().toISOString(),
RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
MaxAge: 0,
@@ -356,7 +762,7 @@ export async function readRealTimeData (
NodeId: {
IdType: OpcKeyType.String,
Id: elem,
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
},
AttributeId: OpcAttributeId.Value,
})),
@@ -380,7 +786,6 @@ export async function readRealTimeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -390,7 +795,6 @@ export async function readRealTimeData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
@@ -398,7 +802,6 @@ export async function readRealTimeData (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
return []
}
@@ -435,37 +838,42 @@ export async function readRealTimeData (
}
})
} catch (error) {
- console.error(error)
return []
}
}
-// Get historical data for a tag
-export async function getHistoricalData (
+/**
+ * Retrieves historical data for a specified tag within a given time range.
+ *
+ * @param {string} tag - The tag name for which historical data is requested.
+ * @param {Date} timeBegin - The start time for the historical data retrieval.
+ * @param {Date | null | undefined} timeEnd - The end time for the historical data retrieval. If null or undefined, the current time is used.
+ * @returns {Promise} A promise that resolves to an array of HistoricalData objects containing the retrieved data.
+ */
+export async function getHistoricalData(
tag: string,
timeBegin: Date,
timeEnd: Date | null | undefined
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // read historical data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
TimestampsToReturn: TimestampsToReturn.Server,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin.toISOString(),
- EndTime: timeEnd || new Date().toISOString(),
+ EndTime: timeEnd?.toISOString() || new Date().toISOString(),
},
},
NodesToRead: [
@@ -473,7 +881,7 @@ export async function getHistoricalData (
NodeId: {
IdType: OpcKeyType.String, // string key
Id: tag, // point string key
- Namespace: OpcNamespacePostgresql,
+ Namespace: OpcNamespaces.Postgresql,
},
AttributeId: OpcAttributeId.Value,
},
@@ -499,7 +907,6 @@ export async function getHistoricalData (
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -508,18 +915,16 @@ export async function getHistoricalData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('Historian service error!')
return []
}
if (
typeof data.Body.Results[0].StatusCode === 'number' &&
data.Body.Results[0].StatusCode !== 0
) {
- console.log('Historical data not found for point ' + tag + ' !')
+ return []
}
return data.Body.Results[0].HistoryData.map((elem: any) => {
@@ -553,78 +958,22 @@ export async function getHistoricalData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Issue a command for a tag
-export async function issueCommand (
- commandTag: string,
- value: number
-): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
- const ServiceId = OpcServiceCode.WriteRequest // write data service
- const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
- ServiceId: ServiceId,
- Body: {
- RequestHeader: {
- Timestamp: new Date().toISOString(),
- RequestHandle: RequestHandle,
- TimeoutHint: 1500,
- ReturnDiagnostics: 2,
- AuthenticationToken: null,
- },
- NodesToWrite: [
- {
- NodeId: {
- IdType: OpcKeyType.String,
- Id: commandTag,
- Namespace: OpcNamespaceMongodb,
- },
- AttributeId: OpcAttributeId.Value,
- Value: {
- Type: OpcValueTypes.Double,
- Body: value,
- },
- },
- ],
- },
- }
-
- try {
- const response = await fetch('/Invoke/', {
- method: 'POST',
- body: JSON.stringify(req),
- headers: {
- 'Content-Type': 'application/json',
- },
- })
- const data = await response.json()
- if (
- !data.ServiceId ||
- !data.Body ||
- !data.Body.ResponseHeader ||
- !data.Body.ResponseHeader.RequestHandle ||
- !data.Body.Results ||
- data.ServiceId !== OpcServiceCode.WriteResponse ||
- data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
- data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
- ) {
- return 'Request Error!'
- }
- if (data.Body.Results[0] !== OpcStatusCodes.Good) {
- return 'Error executing command!'
- }
- return ''
- } catch (error) {
- return error as string
- }
-}
-
-// Get Sequence of Events (SOE) data
-export async function getSoeData (
+/**
+ * Retrieves sequence of events (SOE) data.
+ *
+ * @param {string[]} group1Filter - An array of group1 (station names) to filter by.
+ * @param {boolean} useSourceTime - If true, use source timestamp instead of server timestamp.
+ * @param {number} aggregate - 0: for no aggregate, 1: to aggregate for the same tag, 2: to aggregate for the same tag and filter by priority.
+ * @param {number} limit - The number of results to return.
+ * @param {any} timeBegin - The start time for the query. If null or undefined, will be set to null.
+ * @param {any} timeEnd - The end time for the query. If null or undefined, will be set to null.
+ * @returns {Promise} A promise that resolves to an array of SoeData objects containing the retrieved data.
+ */
+export async function getSoeData(
group1Filter: string[],
useSourceTime: boolean,
aggregate: number,
@@ -664,37 +1013,35 @@ export async function getSoeData (
ContentFilter.push(ContFiltElem)
}
- let AggregateFilter = null
+ let AggregateFilter = undefined
if (aggregate) {
AggregateFilter = { AggregateType: 'Count' }
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // history read service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- TimestampsToReturn: useSourceTime
- ? TimestampsToReturn.Source
- : TimestampsToReturn.Both,
+ TimestampsToReturn:
+ useSourceTime ? TimestampsToReturn.Source : TimestampsToReturn.Both,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin,
EndTime: timeEnd,
NumValuesPerNode: limit,
},
},
- Namespace: OpcNamespaceMongodb, // directs query to mongodb instead of postgresql
+ Namespace: OpcNamespaces.Mongodb, // directs query to mongodb instead of postgresql
ContentFilter: ContentFilter,
AggregateFilter: AggregateFilter,
},
@@ -716,7 +1063,6 @@ export async function getSoeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -725,14 +1071,12 @@ export async function getSoeData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('Historian service error!')
return []
}
if (
@@ -761,7 +1105,327 @@ export async function getSoeData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
+
+/**
+ * Issue a command for a tag
+ * @param {string} commandTag - tag of the command
+ * @param {number} value - value of the command
+ * @returns {Promise} a promise that resolves to a CommandResult object
+ */
+export async function issueCommand(
+ commandTag: string,
+ value: number
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1500,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Value,
+ Value: {
+ Type: OpcValueTypes.Double,
+ Body: value,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return {
+ ok: false,
+ error: 'Request Error!',
+ commandHandle: '',
+ }
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return {
+ ok: false,
+ error: 'Error Executing Command!',
+ commandHandle: '',
+ }
+ }
+ return {
+ ok: true,
+ error: '',
+ commandHandle: data.Body._CommandHandles[0],
+ }
+ } catch (error) {
+ return {
+ ok: false,
+ error: error as string,
+ commandHandle: '',
+ }
+ }
+}
+
+/**
+ * Track command acknowledgment from server/protocol, use command handle identify a specific command
+ * @param {string} commandTag - the command tag name
+ * @param {string} commandHandle - the command handle (in the standard this is an integer but here is MongoDB OID string)
+ * @returns {Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]>} - a promise that resolves to an OpcStatusCodes enum value
+ */
+export async function getCommandAckStatus(
+ commandTag: string,
+ commandHandle: string
+): Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]> {
+ // track command acknowledgment from server/protocol, use CHANDLE to verify results
+
+ const ServiceId = OpcServiceCode.ReadRequest // READ, query command ack results reading attribute 12 (EventNotifier)
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ MaxAge: 0,
+ NodesToRead: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.EventNotifier,
+ ClientHandle: commandHandle,
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle
+ )
+ return OpcStatusCodes.BadServiceUnsupported
+
+ // response must have same request handle and be a data change notification response or service fault
+ if (
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.ServiceId !== OpcServiceCode.DataChangeNotification &&
+ data.ServiceId !== OpcServiceCode.ServiceFault) ||
+ typeof data.Body.MonitoredItems !== 'object'
+ ) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.MonitoredItems.length === 0) {
+ return OpcStatusCodes.BadNoDataAvailable
+ }
+
+ if (
+ data.Body.MonitoredItems[0].Value.StatusCode ===
+ OpcStatusCodes.BadWaitingForResponse
+ )
+ return OpcStatusCodes.BadWaitingForResponse
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Good
+ )
+ return OpcStatusCodes.Good
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Bad
+ )
+ return OpcStatusCodes.Bad
+
+ return OpcStatusCodes.BadInvalidState
+ } catch (error) {
+ return OpcStatusCodes.BadInternalError
+ }
+}
+
+/**
+ * Write the given extended properties of a tag.
+ * @param {string} tag - the tag name
+ * @param {ExtendedProperties} properties - the properties to write
+ * @returns {Promise} a promise that resolves to true if the write was successful, false otherwise
+ */
+export async function writeTagProperties(
+ tag: string,
+ properties: ExtendedProperties
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Description,
+ Value: {
+ _Properties: properties,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return false
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return false
+ }
+ return true
+ } catch (error) {
+ return false
+ }
+}
+
+/**
+ * Acknowledge alarm(s)/event(s) for a given tag.
+ * To acknowledge all alarms for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllAlarms)
+ * To acknowledge all events for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllEvents)
+ * To remove all events for all tags call ackAlarmsEvents('', OpcAcknowledge.RemoveAllEvents)
+ *
+ * @param {string} tag - The tag name for which alarms/events are to be acknowledged.
+ * @param {number} action - A bit mask of the enum type OpcAcknowledge that specifies the acknowledgment action.
+ * @returns {Promise} A promise that resolves to true if the alarm acknowledgment is successful, false otherwise.
+ */
+export async function ackAlarmsEvents(
+ tag: string,
+ action: number // bit mask of enum type OpcAcknowledge
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1000,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.ExtendedAlarmEventsAck,
+ Value: {
+ Type: OpcValueTypes.Integer,
+ Body: action,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData)
+ ) {
+ return false
+ }
+
+ return true
+ } catch (error) {
+ return false
+ }
+}
diff --git a/src/custom-developments/transformer_with_command/package-lock.json b/src/custom-developments/transformer_with_command/package-lock.json
index f067e6a2..7eab5d6d 100644
--- a/src/custom-developments/transformer_with_command/package-lock.json
+++ b/src/custom-developments/transformer_with_command/package-lock.json
@@ -9,12 +9,12 @@
"version": "0.0.1",
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
@@ -81,9 +81,9 @@
"license": "MIT"
},
"node_modules/@astrojs/internal-helpers": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.1.tgz",
- "integrity": "sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==",
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.2.tgz",
+ "integrity": "sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==",
"license": "MIT"
},
"node_modules/@astrojs/language-server": {
@@ -128,16 +128,17 @@
}
},
"node_modules/@astrojs/markdown-remark": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-5.3.0.tgz",
- "integrity": "sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.0.1.tgz",
+ "integrity": "sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==",
"license": "MIT",
"dependencies": {
- "@astrojs/prism": "3.1.0",
+ "@astrojs/prism": "3.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-text": "^4.0.2",
"import-meta-resolve": "^4.1.0",
+ "js-yaml": "^4.1.0",
"mdast-util-definitions": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
@@ -145,7 +146,7 @@
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2",
- "shiki": "^1.22.0",
+ "shiki": "^1.23.1",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
@@ -154,68 +155,68 @@
}
},
"node_modules/@astrojs/prism": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.1.0.tgz",
- "integrity": "sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
+ "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
"license": "MIT",
"dependencies": {
"prismjs": "^1.29.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/react": {
- "version": "3.6.3",
- "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-3.6.3.tgz",
- "integrity": "sha512-5ihLQDH5Runddug5AZYlnp/Q5T81QxhwnWJXA9rchBAdh11c6UhBbv9Kdk7b2PkXoEU70CGWBP9hSh0VCR58eA==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/react/-/react-4.1.0.tgz",
+ "integrity": "sha512-8F0ncvcCexVeQZMwPouLSFuzCK1KXUIYQ57lW3ZG2p7B5DGAajXGanb/CGF7MMSpX8Z0t9sELQqLHOCV/+78Ig==",
"license": "MIT",
"dependencies": {
- "@vitejs/plugin-react": "^4.3.3",
+ "@vitejs/plugin-react": "^4.3.4",
"ultrahtml": "^1.5.3",
- "vite": "^5.4.10"
+ "vite": "^6.0.1"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
},
"peerDependencies": {
- "@types/react": "^17.0.50 || ^18.0.21",
- "@types/react-dom": "^17.0.17 || ^18.0.6",
- "react": "^17.0.2 || ^18.0.0 || ^19.0.0-beta",
- "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0-beta"
+ "@types/react": "^17.0.50 || ^18.0.21 || ^19.0.0",
+ "@types/react-dom": "^17.0.17 || ^18.0.6 || ^19.0.0",
+ "react": "^17.0.2 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@astrojs/tailwind": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.2.tgz",
- "integrity": "sha512-IvOF0W/dtHElcXvhrPR35nHmhyV3cfz1EzPitMGtU7sYy9Hci3BNK1To6FWmVuuNKPxza1IgCGetSynJZL7fOg==",
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-5.1.3.tgz",
+ "integrity": "sha512-XF7WhXRhqEHGvADqc0kDtF7Yv/g4wAWTaj91jBBTBaYnc4+MQLH94duFfFa4NlTkRG40VQd012eF3MhO3Kk+bg==",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.20",
- "postcss": "^8.4.47",
+ "postcss": "^8.4.49",
"postcss-load-config": "^4.0.2"
},
"peerDependencies": {
- "astro": "^3.0.0 || ^4.0.0 || ^5.0.0-beta.0",
+ "astro": "^3.0.0 || ^4.0.0 || ^5.0.0",
"tailwindcss": "^3.0.24"
}
},
"node_modules/@astrojs/telemetry": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.1.0.tgz",
- "integrity": "sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.0.tgz",
+ "integrity": "sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==",
"license": "MIT",
"dependencies": {
- "ci-info": "^4.0.0",
- "debug": "^4.3.4",
+ "ci-info": "^4.1.0",
+ "debug": "^4.3.7",
"dlv": "^1.1.3",
- "dset": "^3.1.3",
+ "dset": "^3.1.4",
"is-docker": "^3.0.0",
- "is-wsl": "^3.0.0",
+ "is-wsl": "^3.1.0",
"which-pm-runs": "^1.1.0"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/yaml2ts": {
@@ -242,9 +243,9 @@
}
},
"node_modules/@babel/compat-data": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz",
- "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
+ "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -281,13 +282,13 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz",
- "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
+ "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.26.2",
- "@babel/types": "^7.26.0",
+ "@babel/parser": "^7.26.3",
+ "@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
@@ -296,18 +297,6 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
- "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
@@ -404,12 +393,12 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
- "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
+ "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.0"
+ "@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -418,40 +407,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
- "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz",
- "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.25.9",
- "@babel/plugin-syntax-jsx": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
@@ -509,16 +464,16 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz",
- "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==",
+ "version": "7.26.4",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
+ "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.25.9",
- "@babel/generator": "^7.25.9",
- "@babel/parser": "^7.25.9",
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.3",
+ "@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
- "@babel/types": "^7.25.9",
+ "@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
@@ -527,9 +482,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
- "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
+ "version": "7.26.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
+ "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
@@ -892,6 +847,22 @@
"node": ">=12"
}
},
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/openbsd-x64": {
"version": "0.21.5",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
@@ -1391,9 +1362,9 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
@@ -1490,9 +1461,9 @@
}
},
"node_modules/@radix-ui/react-compose-refs": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz",
- "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.1.tgz",
+ "integrity": "sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
@@ -1505,12 +1476,12 @@
}
},
"node_modules/@radix-ui/react-slot": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz",
- "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.1.tgz",
+ "integrity": "sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==",
"license": "MIT",
"dependencies": {
- "@radix-ui/react-compose-refs": "1.1.0"
+ "@radix-ui/react-compose-refs": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -1551,9 +1522,9 @@
"license": "MIT"
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.4.tgz",
- "integrity": "sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz",
+ "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==",
"cpu": [
"arm"
],
@@ -1564,9 +1535,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.4.tgz",
- "integrity": "sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz",
+ "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==",
"cpu": [
"arm64"
],
@@ -1577,9 +1548,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.4.tgz",
- "integrity": "sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz",
+ "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==",
"cpu": [
"arm64"
],
@@ -1590,9 +1561,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.4.tgz",
- "integrity": "sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz",
+ "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==",
"cpu": [
"x64"
],
@@ -1603,9 +1574,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.4.tgz",
- "integrity": "sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz",
+ "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==",
"cpu": [
"arm64"
],
@@ -1616,9 +1587,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.4.tgz",
- "integrity": "sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz",
+ "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==",
"cpu": [
"x64"
],
@@ -1629,9 +1600,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.4.tgz",
- "integrity": "sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz",
+ "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==",
"cpu": [
"arm"
],
@@ -1642,9 +1613,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.4.tgz",
- "integrity": "sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz",
+ "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==",
"cpu": [
"arm"
],
@@ -1655,9 +1626,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.4.tgz",
- "integrity": "sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz",
+ "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==",
"cpu": [
"arm64"
],
@@ -1668,9 +1639,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.4.tgz",
- "integrity": "sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz",
+ "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==",
"cpu": [
"arm64"
],
@@ -1680,10 +1651,23 @@
"linux"
]
},
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.4.tgz",
- "integrity": "sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz",
+ "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==",
"cpu": [
"ppc64"
],
@@ -1694,9 +1678,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.4.tgz",
- "integrity": "sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz",
+ "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==",
"cpu": [
"riscv64"
],
@@ -1707,9 +1691,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.4.tgz",
- "integrity": "sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz",
+ "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==",
"cpu": [
"s390x"
],
@@ -1720,9 +1704,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.4.tgz",
- "integrity": "sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz",
+ "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==",
"cpu": [
"x64"
],
@@ -1733,9 +1717,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.4.tgz",
- "integrity": "sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz",
+ "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==",
"cpu": [
"x64"
],
@@ -1746,9 +1730,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.4.tgz",
- "integrity": "sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz",
+ "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==",
"cpu": [
"arm64"
],
@@ -1759,9 +1743,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.4.tgz",
- "integrity": "sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==",
"cpu": [
"ia32"
],
@@ -1772,9 +1756,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.4.tgz",
- "integrity": "sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz",
+ "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==",
"cpu": [
"x64"
],
@@ -1785,44 +1769,44 @@
]
},
"node_modules/@shikijs/core": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.23.1.tgz",
- "integrity": "sha512-NuOVgwcHgVC6jBVH5V7iblziw6iQbWWHrj5IlZI3Fqu2yx9awH7OIQkXIcsHsUmY19ckwSgUMgrqExEyP5A0TA==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.24.2.tgz",
+ "integrity": "sha512-BpbNUSKIwbKrRRA+BQj0BEWSw+8kOPKDJevWeSE/xIqGX7K0xrCZQ9kK0nnEQyrzsUoka1l81ZtJ2mGaCA32HQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4",
"hast-util-to-html": "^9.0.3"
}
},
"node_modules/@shikijs/engine-javascript": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.23.1.tgz",
- "integrity": "sha512-i/LdEwT5k3FVu07SiApRFwRcSJs5QM9+tod5vYCPig1Ywi8GR30zcujbxGQFJHwYD7A5BUqagi8o5KS+LEVgBg==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.24.2.tgz",
+ "integrity": "sha512-EqsmYBJdLEwEiO4H+oExz34a5GhhnVp+jH9Q/XjPjmBPc6TE/x4/gD0X3i0EbkKKNqXYHHJTJUpOLRQNkEzS9Q==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
- "oniguruma-to-es": "0.4.1"
+ "oniguruma-to-es": "0.7.0"
}
},
"node_modules/@shikijs/engine-oniguruma": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.23.1.tgz",
- "integrity": "sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.2.tgz",
+ "integrity": "sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==",
"license": "MIT",
"dependencies": {
- "@shikijs/types": "1.23.1",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0"
}
},
"node_modules/@shikijs/types": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.23.1.tgz",
- "integrity": "sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.2.tgz",
+ "integrity": "sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==",
"license": "MIT",
"dependencies": {
"@shikijs/vscode-textmate": "^9.3.0",
@@ -1830,9 +1814,9 @@
}
},
"node_modules/@shikijs/vscode-textmate": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz",
- "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==",
+ "version": "9.3.1",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.1.tgz",
+ "integrity": "sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==",
"license": "MIT"
},
"node_modules/@types/babel__core": {
@@ -1994,9 +1978,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"devOptional": true,
"license": "MIT",
"dependencies": {
@@ -2004,15 +1988,15 @@
}
},
"node_modules/@types/prop-types": {
- "version": "15.7.13",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz",
- "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==",
+ "version": "15.7.14",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
+ "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
"license": "MIT"
},
"node_modules/@types/react": {
- "version": "18.3.12",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz",
- "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==",
+ "version": "18.3.16",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.16.tgz",
+ "integrity": "sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw==",
"license": "MIT",
"dependencies": {
"@types/prop-types": "*",
@@ -2020,12 +2004,12 @@
}
},
"node_modules/@types/react-dom": {
- "version": "18.3.1",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz",
- "integrity": "sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==",
+ "version": "18.3.5",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz",
+ "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
"license": "MIT",
- "dependencies": {
- "@types/react": "*"
+ "peerDependencies": {
+ "@types/react": "^18.0.0"
}
},
"node_modules/@types/unist": {
@@ -2035,9 +2019,9 @@
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
- "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
+ "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==",
"license": "ISC"
},
"node_modules/@vitejs/plugin-react": {
@@ -2060,13 +2044,13 @@
}
},
"node_modules/@volar/kit": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.10.tgz",
- "integrity": "sha512-ul+rLeO9RlFDgkY/FhPWMnpFqAsjvjkKz8VZeOY5YCJMwTblmmSBlNJtFNxSBx9t/k1q80nEthLyxiJ50ZbIAg==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.11.tgz",
+ "integrity": "sha512-ups5RKbMzMCr6RKafcCqDRnJhJDNWqo2vfekwOAj6psZ15v5TlcQFQAyokQJ3wZxVkzxrQM+TqTRDENfQEXpmA==",
"license": "MIT",
"dependencies": {
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"typesafe-path": "^0.2.2",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
@@ -2076,23 +2060,23 @@
}
},
"node_modules/@volar/language-core": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.10.tgz",
- "integrity": "sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz",
+ "integrity": "sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==",
"license": "MIT",
"dependencies": {
- "@volar/source-map": "2.4.10"
+ "@volar/source-map": "2.4.11"
}
},
"node_modules/@volar/language-server": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.10.tgz",
- "integrity": "sha512-odQsgrJh8hOXfxkSj/BSnpjThb2/KDhbxZnG/XAEx6E3QGDQv4hAOz9GWuKoNs0tkjgwphQGIwDMT1JYaTgRJw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.11.tgz",
+ "integrity": "sha512-W9P8glH1M8LGREJ7yHRCANI5vOvTrRO15EMLdmh5WNF9sZYSEbQxiHKckZhvGIkbeR1WAlTl3ORTrJXUghjk7g==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
- "@volar/language-service": "2.4.10",
- "@volar/typescript": "2.4.10",
+ "@volar/language-core": "2.4.11",
+ "@volar/language-service": "2.4.11",
+ "@volar/typescript": "2.4.11",
"path-browserify": "^1.0.1",
"request-light": "^0.7.0",
"vscode-languageserver": "^9.0.1",
@@ -2102,30 +2086,30 @@
}
},
"node_modules/@volar/language-service": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.10.tgz",
- "integrity": "sha512-VxUiWS11rnRzakkqw5x1LPhsz+RBfD0CrrFarLGW2/voliYXEdCuSOM3r8JyNRvMvP4uwhD38ccAdTcULQEAIQ==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.11.tgz",
+ "integrity": "sha512-KIb6g8gjUkS2LzAJ9bJCLIjfsJjeRtmXlu7b2pDFGD3fNqdbC53cCAKzgWDs64xtQVKYBU13DLWbtSNFtGuMLQ==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
}
},
"node_modules/@volar/source-map": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.10.tgz",
- "integrity": "sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.11.tgz",
+ "integrity": "sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==",
"license": "MIT"
},
"node_modules/@volar/typescript": {
- "version": "2.4.10",
- "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.10.tgz",
- "integrity": "sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==",
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.11.tgz",
+ "integrity": "sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==",
"license": "MIT",
"dependencies": {
- "@volar/language-core": "2.4.10",
+ "@volar/language-core": "2.4.11",
"path-browserify": "^1.0.1",
"vscode-uri": "^3.0.8"
}
@@ -2314,21 +2298,17 @@
}
},
"node_modules/astro": {
- "version": "4.16.16",
- "resolved": "https://registry.npmjs.org/astro/-/astro-4.16.16.tgz",
- "integrity": "sha512-H1CttrV6+JFrDBQx0Mcbq5i5AeLhCbztB786+9wEu3svWL/QPNeCGqF0dgNORAYmP+rODGCPu/y9qKSh87iLuA==",
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/astro/-/astro-5.0.5.tgz",
+ "integrity": "sha512-xfptdmurDsQcj/Anc7mU+eKlcyV7ppJIlmaSwhX3ZWwK5N/0rGKVmUqnuILgR6MB0XVJiIfublNzDGoyj4Q6BQ==",
"license": "MIT",
"dependencies": {
"@astrojs/compiler": "^2.10.3",
- "@astrojs/internal-helpers": "0.4.1",
- "@astrojs/markdown-remark": "5.3.0",
- "@astrojs/telemetry": "3.1.0",
- "@babel/core": "^7.26.0",
- "@babel/plugin-transform-react-jsx": "^7.25.9",
- "@babel/types": "^7.26.0",
+ "@astrojs/internal-helpers": "0.4.2",
+ "@astrojs/markdown-remark": "6.0.1",
+ "@astrojs/telemetry": "3.2.0",
"@oslojs/encoding": "^1.1.0",
"@rollup/pluginutils": "^5.1.3",
- "@types/babel__core": "^7.20.5",
"@types/cookie": "^0.6.0",
"acorn": "^8.14.0",
"aria-query": "^5.3.2",
@@ -2351,7 +2331,6 @@
"fast-glob": "^3.3.2",
"flattie": "^1.1.1",
"github-slugger": "^2.0.0",
- "gray-matter": "^4.0.3",
"html-escaper": "^3.0.3",
"http-cache-semantics": "^4.1.1",
"js-yaml": "^4.1.0",
@@ -2361,7 +2340,6 @@
"micromatch": "^4.0.8",
"mrmime": "^2.0.0",
"neotraverse": "^0.6.18",
- "ora": "^8.1.1",
"p-limit": "^6.1.0",
"p-queue": "^8.0.1",
"preferred-pm": "^4.0.0",
@@ -2371,13 +2349,15 @@
"shiki": "^1.23.1",
"tinyexec": "^0.3.1",
"tsconfck": "^3.1.4",
+ "ultrahtml": "^1.5.3",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
- "vite": "^5.4.11",
+ "vite": "^6.0.1",
"vitefu": "^1.0.4",
"which-pm": "^3.0.0",
"xxhash-wasm": "^1.1.0",
"yargs-parser": "^21.1.1",
+ "yocto-spinner": "^0.1.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5",
"zod-to-ts": "^1.2.0"
@@ -2386,7 +2366,7 @@
"astro": "astro.js"
},
"engines": {
- "node": "^18.17.1 || ^20.3.0 || >=21.0.0",
+ "node": "^18.17.1 || ^20.3.0 || >=22.0.0",
"npm": ">=9.6.5",
"pnpm": ">=7.1.0"
},
@@ -2530,9 +2510,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.2",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz",
- "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==",
+ "version": "4.24.3",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
+ "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
"funding": [
{
"type": "opencollective",
@@ -2549,9 +2529,9 @@
],
"license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001669",
- "electron-to-chromium": "^1.5.41",
- "node-releases": "^2.0.18",
+ "caniuse-lite": "^1.0.30001688",
+ "electron-to-chromium": "^1.5.73",
+ "node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.1"
},
"bin": {
@@ -2583,9 +2563,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001684",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz",
- "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==",
+ "version": "1.0.30001688",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz",
+ "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==",
"funding": [
{
"type": "opencollective",
@@ -2708,33 +2688,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cli-cursor": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
- "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
- "license": "MIT",
- "dependencies": {
- "restore-cursor": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cli-spinners": {
- "version": "2.9.2",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
- "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
@@ -3074,9 +3027,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -3206,9 +3159,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
- "version": "1.5.65",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.65.tgz",
- "integrity": "sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw==",
+ "version": "1.5.73",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz",
+ "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==",
"license": "ISC"
},
"node_modules/emmet": {
@@ -3350,18 +3303,6 @@
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"license": "MIT"
},
- "node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@@ -3599,43 +3540,6 @@
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"license": "ISC"
},
- "node_modules/gray-matter": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
- "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
- "license": "MIT",
- "dependencies": {
- "js-yaml": "^3.13.1",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/gray-matter/node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/gray-matter/node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "license": "MIT",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
@@ -3738,9 +3642,9 @@
}
},
"node_modules/hast-util-to-html": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.3.tgz",
- "integrity": "sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==",
+ "version": "9.0.4",
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz",
+ "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
@@ -3886,9 +3790,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "version": "2.16.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
+ "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"license": "MIT",
"dependencies": {
"hasown": "^2.0.2"
@@ -3915,15 +3819,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
@@ -3972,18 +3867,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-interactive": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
- "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
@@ -4005,18 +3888,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-unicode-supported": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
- "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/is-wsl": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
@@ -4081,9 +3952,9 @@
}
},
"node_modules/jsesc": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
- "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
@@ -4116,15 +3987,6 @@
"integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==",
"license": "MIT"
},
- "node_modules/kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/kleur": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
@@ -4135,9 +3997,9 @@
}
},
"node_modules/lilconfig": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz",
- "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
"license": "MIT",
"engines": {
"node": ">=14"
@@ -4216,34 +4078,6 @@
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"license": "MIT"
},
- "node_modules/log-symbols": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
- "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "is-unicode-supported": "^1.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
- "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/longest-streak": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
@@ -4285,9 +4119,9 @@
}
},
"node_modules/magic-string": {
- "version": "0.30.14",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz",
- "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==",
+ "version": "0.30.15",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz",
+ "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0"
@@ -5136,18 +4970,6 @@
"url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/mimic-function": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
- "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
@@ -5245,9 +5067,9 @@
}
},
"node_modules/node-releases": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz",
- "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==",
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
"license": "MIT"
},
"node_modules/normalize-path": {
@@ -5286,53 +5108,15 @@
"node": ">= 6"
}
},
- "node_modules/onetime": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
- "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
- "license": "MIT",
- "dependencies": {
- "mimic-function": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/oniguruma-to-es": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.4.1.tgz",
- "integrity": "sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==",
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.7.0.tgz",
+ "integrity": "sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==",
"license": "MIT",
"dependencies": {
"emoji-regex-xs": "^1.0.0",
- "regex": "^5.0.0",
- "regex-recursion": "^4.2.1"
- }
- },
- "node_modules/ora": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/ora/-/ora-8.1.1.tgz",
- "integrity": "sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==",
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "cli-cursor": "^5.0.0",
- "cli-spinners": "^2.9.2",
- "is-interactive": "^2.0.0",
- "is-unicode-supported": "^2.0.0",
- "log-symbols": "^6.0.0",
- "stdin-discarder": "^0.2.2",
- "string-width": "^7.2.0",
- "strip-ansi": "^7.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "regex": "^5.0.2",
+ "regex-recursion": "^4.3.0"
}
},
"node_modules/p-limit": {
@@ -5708,9 +5492,9 @@
}
},
"node_modules/prettier": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz",
- "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
+ "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
"license": "MIT",
"optional": true,
"peer": true,
@@ -5843,9 +5627,9 @@
}
},
"node_modules/react-smooth": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.1.tgz",
- "integrity": "sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.3.tgz",
+ "integrity": "sha512-PyxIrra8WZWrMRFcCiJsZ+JqFaxEINAt+v/w++wQKQlmO99Eh3+JTLeKApdTsLX2roBdWYXqPsaS8sO4UmdzIg==",
"license": "MIT",
"dependencies": {
"fast-equals": "^5.0.1",
@@ -5896,9 +5680,9 @@
}
},
"node_modules/recharts": {
- "version": "2.13.3",
- "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.13.3.tgz",
- "integrity": "sha512-YDZ9dOfK9t3ycwxgKbrnDlRC4BHdjlY73fet3a0C1+qGMjXVZe6+VXmpOIIhzkje5MMEL8AN4hLIe4AMskBzlA==",
+ "version": "2.15.0",
+ "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.0.tgz",
+ "integrity": "sha512-cIvMxDfpAmqAmVgc4yb7pgm/O1tmmkl/CjrvXuW+62/+7jj/iF9Ykm+hb/UJt42TREHMyd3gb+pkgoa2MxgDIw==",
"license": "MIT",
"dependencies": {
"clsx": "^2.0.0",
@@ -5914,8 +5698,8 @@
"node": ">=14"
},
"peerDependencies": {
- "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/recharts-scale": {
@@ -6130,12 +5914,12 @@
}
},
"node_modules/resolve": {
- "version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "version": "1.22.9",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
+ "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.13.0",
+ "is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -6146,32 +5930,16 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/restore-cursor": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
- "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
+ "node_modules/retext": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
+ "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
"license": "MIT",
"dependencies": {
- "onetime": "^7.0.0",
- "signal-exit": "^4.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/retext": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
- "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
- "license": "MIT",
- "dependencies": {
- "@types/nlcst": "^2.0.0",
- "retext-latin": "^4.0.0",
- "retext-stringify": "^4.0.0",
- "unified": "^11.0.0"
+ "@types/nlcst": "^2.0.0",
+ "retext-latin": "^4.0.0",
+ "retext-stringify": "^4.0.0",
+ "unified": "^11.0.0"
},
"funding": {
"type": "opencollective",
@@ -6234,9 +6002,9 @@
}
},
"node_modules/rollup": {
- "version": "4.27.4",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.4.tgz",
- "integrity": "sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==",
+ "version": "4.28.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz",
+ "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==",
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.6"
@@ -6249,24 +6017,25 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.27.4",
- "@rollup/rollup-android-arm64": "4.27.4",
- "@rollup/rollup-darwin-arm64": "4.27.4",
- "@rollup/rollup-darwin-x64": "4.27.4",
- "@rollup/rollup-freebsd-arm64": "4.27.4",
- "@rollup/rollup-freebsd-x64": "4.27.4",
- "@rollup/rollup-linux-arm-gnueabihf": "4.27.4",
- "@rollup/rollup-linux-arm-musleabihf": "4.27.4",
- "@rollup/rollup-linux-arm64-gnu": "4.27.4",
- "@rollup/rollup-linux-arm64-musl": "4.27.4",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.27.4",
- "@rollup/rollup-linux-riscv64-gnu": "4.27.4",
- "@rollup/rollup-linux-s390x-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-gnu": "4.27.4",
- "@rollup/rollup-linux-x64-musl": "4.27.4",
- "@rollup/rollup-win32-arm64-msvc": "4.27.4",
- "@rollup/rollup-win32-ia32-msvc": "4.27.4",
- "@rollup/rollup-win32-x64-msvc": "4.27.4",
+ "@rollup/rollup-android-arm-eabi": "4.28.1",
+ "@rollup/rollup-android-arm64": "4.28.1",
+ "@rollup/rollup-darwin-arm64": "4.28.1",
+ "@rollup/rollup-darwin-x64": "4.28.1",
+ "@rollup/rollup-freebsd-arm64": "4.28.1",
+ "@rollup/rollup-freebsd-x64": "4.28.1",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.28.1",
+ "@rollup/rollup-linux-arm-musleabihf": "4.28.1",
+ "@rollup/rollup-linux-arm64-gnu": "4.28.1",
+ "@rollup/rollup-linux-arm64-musl": "4.28.1",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.28.1",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1",
+ "@rollup/rollup-linux-riscv64-gnu": "4.28.1",
+ "@rollup/rollup-linux-s390x-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-gnu": "4.28.1",
+ "@rollup/rollup-linux-x64-musl": "4.28.1",
+ "@rollup/rollup-win32-arm64-msvc": "4.28.1",
+ "@rollup/rollup-win32-ia32-msvc": "4.28.1",
+ "@rollup/rollup-win32-x64-msvc": "4.28.1",
"fsevents": "~2.3.2"
}
},
@@ -6302,19 +6071,6 @@
"loose-envify": "^1.1.0"
}
},
- "node_modules/section-matter": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -6399,15 +6155,15 @@
}
},
"node_modules/shiki": {
- "version": "1.23.1",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.23.1.tgz",
- "integrity": "sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==",
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.24.2.tgz",
+ "integrity": "sha512-TR1fi6mkRrzW+SKT5G6uKuc32Dj2EEa7Kj0k8kGqiBINb+C1TiflVOiT9ta6GqOJtC4fraxO5SLUaKBcSY38Fg==",
"license": "MIT",
"dependencies": {
- "@shikijs/core": "1.23.1",
- "@shikijs/engine-javascript": "1.23.1",
- "@shikijs/engine-oniguruma": "1.23.1",
- "@shikijs/types": "1.23.1",
+ "@shikijs/core": "1.24.2",
+ "@shikijs/engine-javascript": "1.24.2",
+ "@shikijs/engine-oniguruma": "1.24.2",
+ "@shikijs/types": "1.24.2",
"@shikijs/vscode-textmate": "^9.3.0",
"@types/hast": "^3.0.4"
}
@@ -6465,18 +6221,6 @@
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"license": "BSD-3-Clause"
},
- "node_modules/stdin-discarder": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/string-width": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
@@ -6596,15 +6340,6 @@
"node": ">=4"
}
},
- "node_modules/strip-bom-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/sucrase": {
"version": "3.35.0",
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
@@ -6663,9 +6398,9 @@
}
},
"node_modules/tailwindcss": {
- "version": "3.4.15",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz",
- "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==",
+ "version": "3.4.16",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.16.tgz",
+ "integrity": "sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==",
"license": "MIT",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
@@ -6677,7 +6412,7 @@
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"jiti": "^1.21.6",
- "lilconfig": "^2.1.0",
+ "lilconfig": "^3.1.3",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"object-hash": "^3.0.0",
@@ -6756,15 +6491,6 @@
"node": ">=10.13.0"
}
},
- "node_modules/tailwindcss/node_modules/lilconfig": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
- "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/tailwindcss/node_modules/picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
@@ -6888,9 +6614,9 @@
"optional": true
},
"node_modules/type-fest": {
- "version": "4.29.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz",
- "integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==",
+ "version": "4.30.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.1.tgz",
+ "integrity": "sha512-ojFL7eDMX2NF0xMbDwPZJ8sb7ckqtlAi1GsmgsFXvErT9kFTk1r0DuQKvrCh73M6D4nngeHJmvogF9OluXs7Hw==",
"license": "(MIT OR CC0-1.0)",
"engines": {
"node": ">=16"
@@ -7125,12 +6851,12 @@
}
},
"node_modules/use-sync-external-store": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz",
- "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz",
+ "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==",
"license": "MIT",
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/util-deprecate": {
@@ -7204,20 +6930,20 @@
}
},
"node_modules/vite": {
- "version": "5.4.11",
- "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz",
- "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.3.tgz",
+ "integrity": "sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==",
"license": "MIT",
"dependencies": {
- "esbuild": "^0.21.3",
- "postcss": "^8.4.43",
- "rollup": "^4.20.0"
+ "esbuild": "^0.24.0",
+ "postcss": "^8.4.49",
+ "rollup": "^4.23.0"
},
"bin": {
"vite": "bin/vite.js"
},
"engines": {
- "node": "^18.0.0 || >=20.0.0"
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"funding": {
"url": "https://github.com/vitejs/vite?sponsor=1"
@@ -7226,19 +6952,25 @@
"fsevents": "~2.3.3"
},
"peerDependencies": {
- "@types/node": "^18.0.0 || >=20.0.0",
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
"less": "*",
"lightningcss": "^1.21.0",
"sass": "*",
"sass-embedded": "*",
"stylus": "*",
"sugarss": "*",
- "terser": "^5.4.0"
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
+ "jiti": {
+ "optional": true
+ },
"less": {
"optional": true
},
@@ -7259,9 +6991,422 @@
},
"terser": {
"optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
}
}
},
+ "node_modules/vite/node_modules/@esbuild/aix-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
+ "integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
+ "integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
+ "integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/android-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
+ "integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
+ "integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/darwin-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
+ "integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
+ "integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
+ "integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
+ "integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
+ "integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
+ "integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
+ "integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz",
+ "integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==",
+ "cpu": [
+ "mips64el"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz",
+ "integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz",
+ "integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-s390x": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz",
+ "integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz",
+ "integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz",
+ "integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/sunos-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz",
+ "integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-arm64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz",
+ "integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-ia32": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz",
+ "integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/win32-x64": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz",
+ "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/vite/node_modules/esbuild": {
+ "version": "0.24.0",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.0.tgz",
+ "integrity": "sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.24.0",
+ "@esbuild/android-arm": "0.24.0",
+ "@esbuild/android-arm64": "0.24.0",
+ "@esbuild/android-x64": "0.24.0",
+ "@esbuild/darwin-arm64": "0.24.0",
+ "@esbuild/darwin-x64": "0.24.0",
+ "@esbuild/freebsd-arm64": "0.24.0",
+ "@esbuild/freebsd-x64": "0.24.0",
+ "@esbuild/linux-arm": "0.24.0",
+ "@esbuild/linux-arm64": "0.24.0",
+ "@esbuild/linux-ia32": "0.24.0",
+ "@esbuild/linux-loong64": "0.24.0",
+ "@esbuild/linux-mips64el": "0.24.0",
+ "@esbuild/linux-ppc64": "0.24.0",
+ "@esbuild/linux-riscv64": "0.24.0",
+ "@esbuild/linux-s390x": "0.24.0",
+ "@esbuild/linux-x64": "0.24.0",
+ "@esbuild/netbsd-x64": "0.24.0",
+ "@esbuild/openbsd-arm64": "0.24.0",
+ "@esbuild/openbsd-x64": "0.24.0",
+ "@esbuild/sunos-x64": "0.24.0",
+ "@esbuild/win32-arm64": "0.24.0",
+ "@esbuild/win32-ia32": "0.24.0",
+ "@esbuild/win32-x64": "0.24.0"
+ }
+ },
"node_modules/vitefu": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.4.tgz",
@@ -7429,9 +7574,9 @@
}
},
"node_modules/vscode-css-languageservice": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.1.tgz",
- "integrity": "sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==",
+ "version": "6.3.2",
+ "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.2.tgz",
+ "integrity": "sha512-GEpPxrUTAeXWdZWHev1OJU9lz2Q2/PPBxQ2TIRmLGvQiH3WZbqaNoute0n0ewxlgtjzTW3AKZT+NHySk5Rf4Eg==",
"license": "MIT",
"dependencies": {
"@vscode/l10n": "^0.0.18",
@@ -7886,22 +8031,49 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/yocto-spinner": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.1.2.tgz",
+ "integrity": "sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==",
+ "license": "MIT",
+ "dependencies": {
+ "yoctocolors": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=18.19"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yoctocolors": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
+ "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
+ "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
},
"node_modules/zod-to-json-schema": {
- "version": "3.23.5",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.5.tgz",
- "integrity": "sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz",
+ "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==",
"license": "ISC",
"peerDependencies": {
- "zod": "^3.23.3"
+ "zod": "^3.24.1"
}
},
"node_modules/zod-to-ts": {
diff --git a/src/custom-developments/transformer_with_command/package.json b/src/custom-developments/transformer_with_command/package.json
index a18917a0..c19d04c0 100644
--- a/src/custom-developments/transformer_with_command/package.json
+++ b/src/custom-developments/transformer_with_command/package.json
@@ -11,12 +11,12 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
- "@astrojs/react": "^3.6.3",
- "@astrojs/tailwind": "^5.1.2",
+ "@astrojs/react": "^4.1.0",
+ "@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^4.16.13",
+ "astro": "^5.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
diff --git a/src/custom-developments/transformer_with_command/src/components/RealTimeBarGraph.tsx b/src/custom-developments/transformer_with_command/src/components/RealTimeBarGraph.tsx
index 0c603378..b8ee8cd7 100644
--- a/src/custom-developments/transformer_with_command/src/components/RealTimeBarGraph.tsx
+++ b/src/custom-developments/transformer_with_command/src/components/RealTimeBarGraph.tsx
@@ -8,7 +8,7 @@ import {
Tooltip,
ResponsiveContainer,
} from 'recharts'
-import { type DataPoint, readRealTimeData } from '../lib/scadaOpcApi'
+import { type DataPoint, getRealTimeData } from '../lib/scadaOpcApi'
export function RealTimeBarGraph() {
const [data, setData] = useState([])
@@ -17,7 +17,7 @@ export function RealTimeBarGraph() {
useEffect(() => {
const fetchData = async () => {
try {
- const result = await readRealTimeData([
+ const result = await getRealTimeData([
'KAW2TR1-2MTWT',
'KAW2TR1-2MTVR',
'KAW2TR1-0MTWT',
diff --git a/src/custom-developments/transformer_with_command/src/components/TransformerCard.tsx b/src/custom-developments/transformer_with_command/src/components/TransformerCard.tsx
index b7f76a9d..dbf84053 100644
--- a/src/custom-developments/transformer_with_command/src/components/TransformerCard.tsx
+++ b/src/custom-developments/transformer_with_command/src/components/TransformerCard.tsx
@@ -40,7 +40,7 @@ export function TransformerCard() {
const fetchRealtimeData = async () => {
try {
setDataStatus('fetching')
- const data = await scadaOpcApi.readRealTimeData([
+ const data = await scadaOpcApi.getRealTimeData([
'KAW2TR1-2MTWT', // HV MW
'KAW2TR1-2MTVR', // HV Mvar
'KAW2TR1-0MTWT', // LV MW
diff --git a/src/custom-developments/transformer_with_command/src/lib/opcCodes.ts b/src/custom-developments/transformer_with_command/src/lib/opcCodes.ts
deleted file mode 100644
index e5ec96a4..00000000
--- a/src/custom-developments/transformer_with_command/src/lib/opcCodes.ts
+++ /dev/null
@@ -1,174 +0,0 @@
-// OPC-UA Standard Codes (and some extensions).
-// {json:scada} - Copyright 2020 - Ricardo L. Olsen
-
-export const OpcNamespaceMongodb = 2 // first user namespace
-export const OpcNamespacePostgresql = 3 // second user namespace
-
-export const OpcAcknowledge = {
- AckOneEvent: 0x00000001,
- RemoveOneEvent: 0x00000002,
- AckPointEvents: 0x00000004,
- RemovePointEvents: 0x00000008,
- AckAllEvents: 0x00000040,
- RemoveAllEvents: 0x00000080,
- AckOneAlarm: 0x00000100,
- AckAllAlarms: 0x00000400,
- SilenceBeep: 0x00001000,
-} as const
-
-export const OpcStatusCodes = {
- Good: 0,
- GoodNoData: 0x00a50000,
- GoodMoreData: 0x00a60000,
- Uncertain: 0x40000000,
- Bad: 0x80000000,
- BadTimeout: 0x800a0000,
- BadNodeAttributesInvalid: 0x80620000,
- BadNodeIdInvalid: 0x80330000,
- BadNodeIdUnknown: 0x80340000,
- BadRequestHeaderInvalid: 0x802a0000,
- BadRequestNotAllowed: 0x80e40000,
- BadServiceUnsupported: 0x800b0000,
- BadShutdown: 0x800c0000,
- BadServerNotConnected: 0x800d0000,
- BadServerHalted: 0x800e0000,
- BadNothingToDo: 0x800f0000,
- BadUserAccessDenied: 0x801f0000,
- BadIdentityTokenInvalid: 0x80200000,
- BadIdentityTokenRejected: 0x80210000,
- BadUnexpectedError: 0x80010000,
- BadInternalError: 0x80020000,
- BadOutOfMemory: 0x80030000,
- BadResourceUnavailable: 0x80040000,
- BadCommunicationError: 0x80050000,
- BadInvalidArgument: 0x80ab0000,
- BadDisconnect: 0x80ad0000,
- BadConnectionClosed: 0x80ae0000,
- BadInvalidState: 0x80af0000,
- BadNoDataAvailable: 0x80b10000,
- BadWaitingForResponse: 0x80b20000,
-} as const
-
-export const TimestampsToReturn = {
- Source: 0,
- Server: 1,
- Both: 2,
- Neither: 3,
- Invalid: 4,
-} as const
-
-export const OpcValueTypes = {
- Null: 0,
- Boolean: 1,
- SByte: 2,
- Byte: 3,
- Int16: 4,
- UInt16: 5,
- Int32: 6,
- UInt32: 7,
- Int64: 8,
- UInt64: 9,
- Float: 10,
- Double: 11,
- String: 12,
- DateTime: 13,
- Guid: 14,
- ByteString: 15,
- XmlElement: 16,
- NodeId: 17,
- ExpandedNodeId: 18,
- StatusCode: 19,
- QualifiedName: 20,
- LocalizedText: 21,
- ExtensionObject: 22,
- DataValue: 23,
- Variant: 24,
- DiagnosticInfo: 25,
- Number: 26,
- Integer: 27,
- UInteger: 28,
- Enumeration: 29,
-} as const
-
-export const OpcKeyType = {
- Numeric: 0,
- String: 1,
-} as const
-
-export const OpcServiceCode = {
- ServiceFault: 395,
- RequestHeader: 389,
- ResponseHeader: 392,
- ReadValueId: 626,
- ReadRequest: 629,
- ReadResponse: 632,
- ReadRawModifiedDetails: 647,
- HistoryReadRequest: 662,
- HistoryReadResponse: 665,
- WriteValue: 668,
- WriteRequest: 671,
- WriteResponse: 674,
- DataChangeNotification: 809,
- StatusChangeNotification: 818,
- Extended_RequestUniqueAttributeValues: 100000001,
- Extended_ResponseUniqueAttributeValues: 100000002,
-} as const
-
-export const OpcOperand = {
- Attribute: 598,
- Literal: 595,
- Element: 592,
- SimpleAttributeOperand: 601,
-} as const
-
-export const OpcAttributeId = {
- NodeID: 1,
- NodeClass: 2,
- BrowseName: 3,
- DisplayName: 4,
- Description: 5,
- WriteMask: 6,
- UserWriteMask: 7,
- IsAbstract: 8,
- Symmetric: 9,
- InverseName: 10,
- ContainsNoLoops: 11,
- EventNotifier: 12,
- Value: 13,
- DataType: 14,
- ValueRank: 15,
- ArrayDimensions: 16,
- AccessLevel: 17,
- UserAccessLevel: 18,
- MinimumSamplingInterval: 19,
- Historizing: 20,
- Executable: 21,
- UserExecutable: 22,
- ExtendedGroup1: 100000001,
- ExtendedGroup2: 100000002,
- ExtendedGroup3: 100000003,
- ExtendedAlarmEventsAck: 100000004,
- ExtendedBlockingAnnotation: 100000005,
- ExtendedDocumentalAnnotation: 100000006,
-} as const
-
-export const OpcFilterOperator = {
- Equals: 0,
- IsNull: 1,
- GreaterThan: 2,
- LessThan: 3,
- GreaterThanOrEqual: 4,
- LessThanOrEqual: 5,
- Like: 6,
- Not: 7,
- Between: 8,
- InList: 9,
- And: 10,
- Or: 11,
- Cast: 12,
- InView: 13,
- OfType: 14,
- RelatedTo: 15,
- BitwiseAnd: 16,
- BitwiseOr: 17,
-} as const
diff --git a/src/custom-developments/transformer_with_command/src/lib/scadaOpcApi.ts b/src/custom-developments/transformer_with_command/src/lib/scadaOpcApi.ts
index df808de0..5ed51844 100644
--- a/src/custom-developments/transformer_with_command/src/lib/scadaOpcApi.ts
+++ b/src/custom-developments/transformer_with_command/src/lib/scadaOpcApi.ts
@@ -1,66 +1,466 @@
-import {
- OpcAttributeId,
- OpcFilterOperator,
- OpcKeyType,
- OpcNamespaceMongodb,
- OpcNamespacePostgresql,
- OpcOperand,
- OpcServiceCode,
- OpcStatusCodes,
- OpcValueTypes,
- TimestampsToReturn,
-} from './opcCodes'
+// API to interact with the SCADA server
+// Inspired by OPC WebHMI protocol
+// https://github.com/OPCFoundation/UA-.NETStandard/tree/demo/webapi/SampleApplications/Workshop/Reference
+// https://web.archive.org/web/20211018094004/https://prototyping.opcfoundation.org/
+// OPC-UA Standard Codes (and some extensions adapted to use to interact with the SCADA).
+// {json:scada} - Copyright 2024 - Ricardo L. Olsen
+export const OpcNamespaces = {
+ Mongodb: 2,
+ Postgresql: 3,
+}
+
+export const OpcAcknowledge = {
+ AckOneEvent: 0x00000001,
+ RemoveOneEvent: 0x00000002,
+ AckPointEvents: 0x00000004,
+ RemovePointEvents: 0x00000008,
+ AckAllEvents: 0x00000040,
+ RemoveAllEvents: 0x00000080,
+ AckOneAlarm: 0x00000100,
+ AckAllAlarms: 0x00000400,
+ SilenceBeep: 0x00001000,
+} as const
+
+export const OpcStatusCodes = {
+ Good: 0,
+ GoodNoData: 0x00a50000,
+ GoodMoreData: 0x00a60000,
+ Uncertain: 0x40000000,
+ Bad: 0x80000000,
+ BadTimeout: 0x800a0000,
+ BadNodeAttributesInvalid: 0x80620000,
+ BadNodeIdInvalid: 0x80330000,
+ BadNodeIdUnknown: 0x80340000,
+ BadRequestHeaderInvalid: 0x802a0000,
+ BadRequestNotAllowed: 0x80e40000,
+ BadServiceUnsupported: 0x800b0000,
+ BadShutdown: 0x800c0000,
+ BadServerNotConnected: 0x800d0000,
+ BadServerHalted: 0x800e0000,
+ BadNothingToDo: 0x800f0000,
+ BadUserAccessDenied: 0x801f0000,
+ BadIdentityTokenInvalid: 0x80200000,
+ BadIdentityTokenRejected: 0x80210000,
+ BadUnexpectedError: 0x80010000,
+ BadInternalError: 0x80020000,
+ BadOutOfMemory: 0x80030000,
+ BadResourceUnavailable: 0x80040000,
+ BadCommunicationError: 0x80050000,
+ BadInvalidArgument: 0x80ab0000,
+ BadDisconnect: 0x80ad0000,
+ BadConnectionClosed: 0x80ae0000,
+ BadInvalidState: 0x80af0000,
+ BadNoDataAvailable: 0x80b10000,
+ BadWaitingForResponse: 0x80b20000,
+} as const
+
+export const TimestampsToReturn = {
+ Source: 0,
+ Server: 1,
+ Both: 2,
+ Neither: 3,
+ Invalid: 4,
+} as const
+
+export const OpcValueTypes = {
+ Null: 0,
+ Boolean: 1,
+ SByte: 2,
+ Byte: 3,
+ Int16: 4,
+ UInt16: 5,
+ Int32: 6,
+ UInt32: 7,
+ Int64: 8,
+ UInt64: 9,
+ Float: 10,
+ Double: 11,
+ String: 12,
+ DateTime: 13,
+ Guid: 14,
+ ByteString: 15,
+ XmlElement: 16,
+ NodeId: 17,
+ ExpandedNodeId: 18,
+ StatusCode: 19,
+ QualifiedName: 20,
+ LocalizedText: 21,
+ ExtensionObject: 22,
+ DataValue: 23,
+ Variant: 24,
+ DiagnosticInfo: 25,
+ Number: 26,
+ Integer: 27,
+ UInteger: 28,
+ Enumeration: 29,
+} as const
+
+export const OpcKeyType = {
+ Numeric: 0,
+ String: 1,
+} as const
+
+export const OpcServiceCode = {
+ ServiceFault: 395,
+ RequestHeader: 389,
+ ResponseHeader: 392,
+ ReadValueId: 626,
+ ReadRequest: 629,
+ ReadResponse: 632,
+ ReadRawModifiedDetails: 647,
+ HistoryReadRequest: 662,
+ HistoryReadResponse: 665,
+ WriteValue: 668,
+ WriteRequest: 671,
+ WriteResponse: 674,
+ DataChangeNotification: 809,
+ StatusChangeNotification: 818,
+ Extended_RequestUniqueAttributeValues: 100000001,
+ Extended_ResponseUniqueAttributeValues: 100000002,
+} as const
+
+export const OpcOperand = {
+ Attribute: 598,
+ Literal: 595,
+ Element: 592,
+ SimpleAttributeOperand: 601,
+} as const
+
+export const OpcAttributeId = {
+ NodeID: 1,
+ NodeClass: 2,
+ BrowseName: 3,
+ DisplayName: 4,
+ Description: 5,
+ WriteMask: 6,
+ UserWriteMask: 7,
+ IsAbstract: 8,
+ Symmetric: 9,
+ InverseName: 10,
+ ContainsNoLoops: 11,
+ EventNotifier: 12,
+ Value: 13,
+ DataType: 14,
+ ValueRank: 15,
+ ArrayDimensions: 16,
+ AccessLevel: 17,
+ UserAccessLevel: 18,
+ MinimumSamplingInterval: 19,
+ Historizing: 20,
+ Executable: 21,
+ UserExecutable: 22,
+ ExtendedGroup1: 100000001,
+ ExtendedGroup2: 100000002,
+ ExtendedGroup3: 100000003,
+ ExtendedAlarmEventsAck: 100000004,
+ ExtendedBlockingAnnotation: 100000005,
+ ExtendedDocumentalAnnotation: 100000006,
+} as const
+
+export const OpcFilterOperator = {
+ Equals: 0,
+ IsNull: 1,
+ GreaterThan: 2,
+ LessThan: 3,
+ GreaterThanOrEqual: 4,
+ LessThanOrEqual: 5,
+ Like: 6,
+ Not: 7,
+ Between: 8,
+ InList: 9,
+ And: 10,
+ Or: 11,
+ Cast: 12,
+ InView: 13,
+ OfType: 14,
+ RelatedTo: 15,
+ BitwiseAnd: 16,
+ BitwiseOr: 17,
+} as const
+
+export const OpcDiagnosticInfoMask = {
+ SymbolicId: 1,
+ LocalizedText: 2,
+ AdditionalInfo: 4,
+ InnerStatusCode: 8,
+ InnerDiagnosticInfo: 16,
+} as const
+
+/**
+ * Represents a node (tag) identifier, which includes the type of identifier,
+ * the actual identifier value, and the namespace index. The `IdType` indicates
+ * how the `Id` should be interpreted, while the `Namespace` specifies the
+ * namespace to which the node belongs. The `Id` can be a string or undefined.
+ * @property {typeof OpcKeyType[keyof typeof OpcKeyType]} IdType - The type of identifier, which can be 0 or 1.
+ * @property {string | number | undefined} Id - The actual identifier value, which can be a string, number, or undefined.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace index, which can be 2 or 3.
+ */
export interface OpcNodeId {
- IdType: number
- Id: string | undefined
- Namespace: number
+ IdType: (typeof OpcKeyType)[keyof typeof OpcKeyType] // Only allows 0 or 1
+ Id: string | number | undefined
+ Namespace: (typeof OpcNamespaces)[keyof typeof OpcNamespaces] // Only allows 2 or 3
}
+/**
+ * Represents a node (tag) to be read. It includes the node's identifier
+ * and the specific attribute of the node that needs to be read. The `NodeId` contains
+ * details about the node's type, identifier, and namespace, while `AttributeId` specifies
+ * the attribute of the node to be accessed.
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be read.
+ */
export interface OpcNodeToRead {
NodeId: OpcNodeId
- AttributeId: number
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ ClientHandle?: string
+}
+
+/**
+ * Represents additional properties of an OPC value, such as alarm settings, annotation, and notes.
+ *
+ * @property {boolean} [alarmDisabled] - Whether the alarm is disabled.
+ * @property {string} [annotation] - The (blocking) annotation of the value.
+ * @property {number} [loLimit] - The low limit of the value for out of range alarms.
+ * @property {number} [hiLimit] - The high limit of the value for out of range alarms.
+ * @property {number} [hysteresis] - The hysteresis of the value for out of range alarms.
+ * @property {string} [notes] - The documental notes of the value.
+ * @property {number} [newValue] - The new value of the value.
+ * @property {boolean} [substituted] - Whether the value is substituted (manually imposed).
+ */
+export interface ExtendedProperties {
+ alarmDisabled?: boolean
+ annotation?: string
+ loLimit?: number
+ hiLimit?: number
+ hysteresis?: number
+ notes?: string
+ newValue?: number
+ substituted?: boolean
+}
+
+/**
+ * Represents an OPC value for a tag (node), which includes the type of the value and the
+ * actual value content. The `Type` property specifies the type of the value,
+ * which can be one of the values in `OpcValueTypes`. The `Body` property
+ * contains the actual value content, which can be a number, string, or boolean.
+ * The `_Properties` property is an optional object that contains additional
+ * information about the value, such as alarm settings, annotation, and notes.
+ * The properties in `_Properties` are specific to the type of value and are not
+ * required to be present.
+ * @property {typeof OpcValueTypes[keyof typeof OpcValueTypes]} Type - The type of the value, which can be one of the values in `OpcValueTypes`.
+ * @property {number | string | boolean} Body - The actual value content, which can be a number, string, or boolean.
+ * @property {object} _Properties - An optional object that contains additional information about the value, such as alarm settings, annotation, and notes.
+ */
+export interface OpcValue {
+ Type?: (typeof OpcValueTypes)[keyof typeof OpcValueTypes]
+ Body?: number | string | boolean
+ _Properties?: ExtendedProperties
+}
+
+/**
+ * Represents a node (tag) to be written. It includes the node's identifier
+ * and the specific attribute of the node that needs to be written. The
+ * `NodeId` contains details about the node's type, identifier, and namespace,
+ * while `AttributeId` specifies the attribute of the node to be accessed.
+ * The `Value` property contains the value to be written to the node.
+ *
+ * @property {OpcNodeId} NodeId - The node identifier.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The specific attribute of the node to be written.
+ * @property {OpcValue} Value - The value to be written to the node.
+ */
+export interface OpcNodeToWrite {
+ NodeId: OpcNodeId
+ AttributeId: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Value: OpcValue
}
+/**
+ * The OPC UA request header.
+ *
+ * The header contains the timestamp of the request, a unique request handle,
+ * a timeout hint, a flag to determine what type of diagnostics to return,
+ * and an authentication token.
+ *
+ * @property {string} Timestamp - The timestamp of the request in ISO string format.
+ * @property {number} RequestHandle - A unique handle to identify the request.
+ * @property {number} TimeoutHint - The timeout hint for the request in milliseconds.
+ * @property {typeof OpcDiagnosticInfoMask[keyof typeof OpcDiagnosticInfoMask]} ReturnDiagnostics - A flag to determine what type of diagnostics to return.
+ * @property {null} AuthenticationToken - The authentication token for the request. Currently, it is always null.
+ */
export interface OpcRequestHeader {
Timestamp: string
RequestHandle: number
TimeoutHint: number
- ReturnDiagnostics: number
+ ReturnDiagnostics: (typeof OpcDiagnosticInfoMask)[keyof typeof OpcDiagnosticInfoMask]
AuthenticationToken: null
}
+/**
+ * Represents an operand in a content filter. The operand can be an attribute,
+ * a literal value, or an element. The `FilterOperand` indicates the type of
+ * operand, while the `Value` contains the actual value. The value can be a
+ * string, number, or boolean.
+ *
+ * @property {typeof OpcOperand[keyof typeof OpcOperand]} FilterOperand - The type of operand.
+ * @property {string | number | boolean} Value - The actual value of the operand.
+ */
+export interface OpcFilterOperand {
+ FilterOperand: (typeof OpcOperand)[keyof typeof OpcOperand]
+ Value: string | number | boolean
+}
+
+/**
+ * Represents a content filter in the OPC UA request body.
+ *
+ * The content filter is a feature to filter the data returned by the
+ * server. It consists of a filter operator and an array of filter operands.
+ * The filter operator defines the type of operation to be performed on the
+ * filter operands, while the filter operands specify the actual values to be
+ * compared.
+ *
+ * @property {typeof OpcFilterOperator[keyof typeof OpcFilterOperator]} FilterOperator - The type of filter operation to be performed.
+ * @property {OpcFilterOperand[]} FilterOperands - An array of filter operands to be compared.
+ */
+export interface OpcContentFilter {
+ FilterOperator: (typeof OpcFilterOperator)[keyof typeof OpcFilterOperator]
+ FilterOperands: OpcFilterOperand[]
+}
+
+/**
+ * The parameters for the OPC UA HistoryRead request.
+ *
+ * The `IsModified` flag must be set to false.
+ * The `StartTime` and `EndTime` properties are ISO strings representing the start and end times
+ * of the history data to be read.
+ * @property {boolean} IsModified - A flag that must be set to false.
+ * @property {string} StartTime - The start time of the history data to be read in ISO string format.
+ * @property {string} EndTime - The end time of the history data to be read in ISO string format.
+ * @property {number} NumValuesPerNode - The number of values to be read per node.
+ */
+export interface OpcParameterData {
+ IsReadModified: boolean
+ StartTime: string
+ EndTime: string
+ NumValuesPerNode?: number
+}
+
+/**
+ * The details of the OPC UA HistoryRead request.
+ *
+ * The `ParameterTypeId` specifies the type of history read request.
+ * The `ParameterData` contains the parameters for the history read request.
+ */
+export interface OpcHistoryReadDetails {
+ ParameterTypeId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
+ ParameterData: OpcParameterData
+}
+
+export interface OpcAggregateFilter {
+ AggregateType: string
+}
+
+/**
+ * The body of an OPC request.
+ *
+ * The body contains the request header, the maximum age of the data to be returned,
+ * the type of timestamps to return, and the nodes to read.
+ *
+ * @property {OpcRequestHeader} RequestHeader - The request header.
+ * @property {number} MaxAge - The maximum age of the data to be returned in milliseconds.
+ * @property {typeof OpcAttributeId[keyof typeof OpcAttributeId]} AttributeId - The type of attribute to read.
+ * @property {typeof OpcNamespaces[keyof typeof OpcNamespaces]} Namespace - The namespace to read from.
+ * @property {typeof TimestampsToReturn[keyof typeof TimestampsToReturn]} TimestampsToReturn - The type of timestamps to return.
+ * @property {OpcNodeToRead[]} NodesToRead - The nodes to read.
+ * @property {any} NodesToWrite - The nodes to write.
+ */
export interface OpcRequestBody {
RequestHeader: OpcRequestHeader
- MaxAge: number
- TimestampsToReturn: number
- NodesToRead: OpcNodeToRead[]
+ MaxAge?: number
+ AttributeId?: (typeof OpcAttributeId)[keyof typeof OpcAttributeId]
+ Namespace?: (typeof OpcNamespaces)[keyof typeof OpcNamespaces]
+ TimestampsToReturn?: (typeof TimestampsToReturn)[keyof typeof TimestampsToReturn]
+ ContentFilter?: any
+ HistoryReadDetails?: OpcHistoryReadDetails
+ NodesToRead?: OpcNodeToRead[]
+ NodesToWrite?: OpcNodeToWrite[]
+ AggregateFilter?: OpcAggregateFilter
}
+/**
+ * An OPC-like HTTP request.
+ *
+ * The request contains the service ID and the request body. The service ID
+ * specifies which service to call, and the request body contains the parameters
+ * for the service.
+ *
+ * @property {(typeof OpcServiceCode)[keyof typeof OpcServiceCode]} ServiceId - The service ID for the request.
+ * @property {OpcRequestBody} Body - The request body.
+ */
export interface OpcRequest {
- ServiceId: number
+ ServiceId: (typeof OpcServiceCode)[keyof typeof OpcServiceCode]
Body: OpcRequestBody
}
+/**
+ * Represents a single data point read result from a tag, containing its name, value,
+ * value as a string, quality, timestamp, group1, group2, and description.
+ *
+ * @property {string} name - The name of the tag.
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {string} timestamp - The timestamp of the tag value.
+ * @property {string} group1 - The group1 of the tag.
+ * @property {string} group2 - The group2 of the tag.
+ * @property {string} description - The description of the tag.
+ */
export interface DataPoint {
name: string
value: number
valueString: string
- quality: number
- timestamp: string
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
+ timestamp: Date
group1: string
group2: string
description: string
}
+/**
+ * Represents a single historical sample for a tag, containing its value, value as a string, quality, server timestamp, and source timestamp.
+ *
+ * @property {number} value - The value of the tag.
+ * @property {string} valueString - The value of the tag as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the tag value.
+ * @property {Date} serverTimestamp - The timestamp when the value was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the data.
+ */
export interface HistoricalData {
value: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
}
+/**
+ * Represents a Sequence of Events (SOE) data object.
+ * The SOE data includes details about an event such as its name, description,
+ * associated station (group1), event identifier, priority level, and the value
+ * of the event as a string. Additionally, it contains quality information,
+ * server and source timestamps, and a flag indicating if the source timestamp is valid.
+ *
+ * @property {string} name - The name of the event.
+ * @property {string} description - A brief description of the event.
+ * @property {string} group1 - The station name associated with the event.
+ * @property {string} eventId - The unique identifier for the event.
+ * @property {number} priority - The priority level of the event.
+ * @property {string} valueString - The value of the event as a string.
+ * @property {(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]} quality - The quality of the event data.
+ * @property {Date} serverTimestamp - The timestamp when the event was received by the server.
+ * @property {Date} sourceTimestamp - The timestamp marked by the source device of the event.
+ * @property {boolean} sourceTimestampOk - Indicates if the source timestamp is valid.
+ */
export interface SoeData {
name: string
description: string
@@ -68,25 +468,33 @@ export interface SoeData {
eventId: string
priority: number
valueString: string
- quality: number
+ quality: (typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]
serverTimestamp: Date
sourceTimestamp: Date
sourceTimestampOk: boolean
}
-// Get the group1 (station names) list
-export async function getGroup1List (): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
+export interface CommandResult {
+ ok: boolean
+ error: string
+ commandHandle: string
+}
+
+/**
+ * Get the group1 (station names) list
+ * @returns {Promise} a promise that resolves to a list of group1 names
+ */
+export async function getGroup1List(): Promise {
const ServiceId = OpcServiceCode.Extended_RequestUniqueAttributeValues // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
AttributeId: OpcAttributeId.ExtendedGroup1,
@@ -110,7 +518,6 @@ export async function getGroup1List (): Promise {
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('RequestUniqueAttributeValues invalid service response!')
return []
}
@@ -121,13 +528,9 @@ export async function getGroup1List (): Promise {
OpcServiceCode.Extended_ResponseUniqueAttributeValues &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log(
- 'RequestUniqueAttributeValues invalid or unexpected service response!'
- )
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('RequestUniqueAttributeValues service error!')
return []
}
@@ -141,22 +544,27 @@ export async function getGroup1List (): Promise {
})
return group1List
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime filtered data
-export async function getRealtimeFilteredData (
+/**
+ * Get the filtered tags data from the server.
+ * @param {string} group1Filter - filter by group1 (station names)
+ * @param {string} group2Filter - filter by group2 (bay names)
+ * @param {boolean} onlyAlarms - filter by only alarmed tags
+ * @returns {Promise} a promise that resolves to an array of DataPoint objects
+ */
+export async function getRealtimeFilteredData(
group1Filter: string,
group2Filter: string,
onlyAlarms: boolean
): Promise {
try {
- let ContentFilter = []
- let ContFiltElem = {
+ let ContentFilter: OpcContentFilter[] = []
+ let ContFiltElem: OpcContentFilter = {
FilterOperator: OpcFilterOperator.Equals,
- FilterOperands: [] as any,
+ FilterOperands: [] as OpcFilterOperand[],
}
if (typeof group1Filter === 'string' && group1Filter.trim() !== '') {
@@ -227,20 +635,19 @@ export async function getRealtimeFilteredData (
ContentFilter.push(ContFiltElem)
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
ContentFilter: ContentFilter,
MaxAge: 0,
TimestampsToReturn: TimestampsToReturn.Both,
@@ -262,7 +669,6 @@ export async function getRealtimeFilteredData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -272,14 +678,12 @@ export async function getRealtimeFilteredData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
// check access control denied, in this case go to initial page
if (
data.Body.ResponseHeader.ServiceResult ===
@@ -328,16 +732,18 @@ export async function getRealtimeFilteredData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Get realtime data from tag names list
-export async function readRealTimeData (
+/**
+ * Retrieves real-time data from the given list of tag names
+ * @param {string[]} variables list of tag names
+ * @returns {Promise} a promise that resolves to an array of data points
+ */
+export async function getRealTimeData(
variables: string[]
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.ReadRequest // read data service
const RequestHandle = Math.floor(Math.random() * 100000000)
const req: OpcRequest = {
@@ -347,7 +753,7 @@ export async function readRealTimeData (
Timestamp: new Date().toISOString(),
RequestHandle,
TimeoutHint: 1500,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
MaxAge: 0,
@@ -356,7 +762,7 @@ export async function readRealTimeData (
NodeId: {
IdType: OpcKeyType.String,
Id: elem,
- Namespace: OpcNamespaceMongodb,
+ Namespace: OpcNamespaces.Mongodb,
},
AttributeId: OpcAttributeId.Value,
})),
@@ -380,7 +786,6 @@ export async function readRealTimeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('ReadRequest invalid service response!')
return []
}
@@ -390,7 +795,6 @@ export async function readRealTimeData (
(data.ServiceId !== OpcServiceCode.ReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('ReadRequest invalid or unexpected service response!')
return []
}
@@ -398,7 +802,6 @@ export async function readRealTimeData (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('ReadRequest service error!')
return []
}
@@ -435,37 +838,42 @@ export async function readRealTimeData (
}
})
} catch (error) {
- console.error(error)
return []
}
}
-// Get historical data for a tag
-export async function getHistoricalData (
+/**
+ * Retrieves historical data for a specified tag within a given time range.
+ *
+ * @param {string} tag - The tag name for which historical data is requested.
+ * @param {Date} timeBegin - The start time for the historical data retrieval.
+ * @param {Date | null | undefined} timeEnd - The end time for the historical data retrieval. If null or undefined, the current time is used.
+ * @returns {Promise} A promise that resolves to an array of HistoricalData objects containing the retrieved data.
+ */
+export async function getHistoricalData(
tag: string,
timeBegin: Date,
timeEnd: Date | null | undefined
): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // read historical data service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
TimestampsToReturn: TimestampsToReturn.Server,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin.toISOString(),
- EndTime: timeEnd || new Date().toISOString(),
+ EndTime: timeEnd?.toISOString() || new Date().toISOString(),
},
},
NodesToRead: [
@@ -473,7 +881,7 @@ export async function getHistoricalData (
NodeId: {
IdType: OpcKeyType.String, // string key
Id: tag, // point string key
- Namespace: OpcNamespacePostgresql,
+ Namespace: OpcNamespaces.Postgresql,
},
AttributeId: OpcAttributeId.Value,
},
@@ -499,7 +907,6 @@ export async function getHistoricalData (
!data.Body.ResponseHeader.RequestHandle ||
!data.Body.Results
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -508,18 +915,16 @@ export async function getHistoricalData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
- console.log('Historian service error!')
return []
}
if (
typeof data.Body.Results[0].StatusCode === 'number' &&
data.Body.Results[0].StatusCode !== 0
) {
- console.log('Historical data not found for point ' + tag + ' !')
+ return []
}
return data.Body.Results[0].HistoryData.map((elem: any) => {
@@ -553,78 +958,22 @@ export async function getHistoricalData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
-// Issue a command for a tag
-export async function issueCommand (
- commandTag: string,
- value: number
-): Promise {
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
- const ServiceId = OpcServiceCode.WriteRequest // write data service
- const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
- ServiceId: ServiceId,
- Body: {
- RequestHeader: {
- Timestamp: new Date().toISOString(),
- RequestHandle: RequestHandle,
- TimeoutHint: 1500,
- ReturnDiagnostics: 2,
- AuthenticationToken: null,
- },
- NodesToWrite: [
- {
- NodeId: {
- IdType: OpcKeyType.String,
- Id: commandTag,
- Namespace: OpcNamespaceMongodb,
- },
- AttributeId: OpcAttributeId.Value,
- Value: {
- Type: OpcValueTypes.Double,
- Body: value,
- },
- },
- ],
- },
- }
-
- try {
- const response = await fetch('/Invoke/', {
- method: 'POST',
- body: JSON.stringify(req),
- headers: {
- 'Content-Type': 'application/json',
- },
- })
- const data = await response.json()
- if (
- !data.ServiceId ||
- !data.Body ||
- !data.Body.ResponseHeader ||
- !data.Body.ResponseHeader.RequestHandle ||
- !data.Body.Results ||
- data.ServiceId !== OpcServiceCode.WriteResponse ||
- data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
- data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
- ) {
- return 'Request Error!'
- }
- if (data.Body.Results[0] !== OpcStatusCodes.Good) {
- return 'Error executing command!'
- }
- return ''
- } catch (error) {
- return error as string
- }
-}
-
-// Get Sequence of Events (SOE) data
-export async function getSoeData (
+/**
+ * Retrieves sequence of events (SOE) data.
+ *
+ * @param {string[]} group1Filter - An array of group1 (station names) to filter by.
+ * @param {boolean} useSourceTime - If true, use source timestamp instead of server timestamp.
+ * @param {number} aggregate - 0: for no aggregate, 1: to aggregate for the same tag, 2: to aggregate for the same tag and filter by priority.
+ * @param {number} limit - The number of results to return.
+ * @param {any} timeBegin - The start time for the query. If null or undefined, will be set to null.
+ * @param {any} timeEnd - The end time for the query. If null or undefined, will be set to null.
+ * @returns {Promise} A promise that resolves to an array of SoeData objects containing the retrieved data.
+ */
+export async function getSoeData(
group1Filter: string[],
useSourceTime: boolean,
aggregate: number,
@@ -664,37 +1013,35 @@ export async function getSoeData (
ContentFilter.push(ContFiltElem)
}
- let AggregateFilter = null
+ let AggregateFilter = undefined
if (aggregate) {
AggregateFilter = { AggregateType: 'Count' }
}
- // use OPC web hmi protocol https://prototyping.opcfoundation.org/
const ServiceId = OpcServiceCode.HistoryReadRequest // history read service
const RequestHandle = Math.floor(Math.random() * 100000000)
- const req = {
+ const req: OpcRequest = {
ServiceId: ServiceId,
Body: {
RequestHeader: {
Timestamp: new Date().toISOString(),
RequestHandle: RequestHandle,
TimeoutHint: 5000,
- ReturnDiagnostics: 2,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
AuthenticationToken: null,
},
- TimestampsToReturn: useSourceTime
- ? TimestampsToReturn.Source
- : TimestampsToReturn.Both,
+ TimestampsToReturn:
+ useSourceTime ? TimestampsToReturn.Source : TimestampsToReturn.Both,
HistoryReadDetails: {
ParameterTypeId: OpcServiceCode.ReadRawModifiedDetails,
ParameterData: {
- IsModified: false,
+ IsReadModified: false,
StartTime: timeBegin,
EndTime: timeEnd,
NumValuesPerNode: limit,
},
},
- Namespace: OpcNamespaceMongodb, // directs query to mongodb instead of postgresql
+ Namespace: OpcNamespaces.Mongodb, // directs query to mongodb instead of postgresql
ContentFilter: ContentFilter,
AggregateFilter: AggregateFilter,
},
@@ -716,7 +1063,6 @@ export async function getSoeData (
!data.Body.ResponseHeader ||
!data.Body.ResponseHeader.RequestHandle
) {
- console.log('Historian invalid service response!')
return []
}
// response must have same request handle and be a read response or service fault
@@ -725,14 +1071,12 @@ export async function getSoeData (
(data.ServiceId !== OpcServiceCode.HistoryReadResponse &&
data.ServiceId !== OpcServiceCode.ServiceFault)
) {
- console.log('Historian invalid or unexpected service response!')
return []
}
if (
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData
) {
- console.log('Historian service error!')
return []
}
if (
@@ -761,7 +1105,327 @@ export async function getSoeData (
}
})
} catch (error) {
- console.log(error)
return []
}
}
+
+/**
+ * Issue a command for a tag
+ * @param {string} commandTag - tag of the command
+ * @param {number} value - value of the command
+ * @returns {Promise} a promise that resolves to a CommandResult object
+ */
+export async function issueCommand(
+ commandTag: string,
+ value: number
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1500,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Value,
+ Value: {
+ Type: OpcValueTypes.Double,
+ Body: value,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return {
+ ok: false,
+ error: 'Request Error!',
+ commandHandle: '',
+ }
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return {
+ ok: false,
+ error: 'Error Executing Command!',
+ commandHandle: '',
+ }
+ }
+ return {
+ ok: true,
+ error: '',
+ commandHandle: data.Body._CommandHandles[0],
+ }
+ } catch (error) {
+ return {
+ ok: false,
+ error: error as string,
+ commandHandle: '',
+ }
+ }
+}
+
+/**
+ * Track command acknowledgment from server/protocol, use command handle identify a specific command
+ * @param {string} commandTag - the command tag name
+ * @param {string} commandHandle - the command handle (in the standard this is an integer but here is MongoDB OID string)
+ * @returns {Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]>} - a promise that resolves to an OpcStatusCodes enum value
+ */
+export async function getCommandAckStatus(
+ commandTag: string,
+ commandHandle: string
+): Promise<(typeof OpcStatusCodes)[keyof typeof OpcStatusCodes]> {
+ // track command acknowledgment from server/protocol, use CHANDLE to verify results
+
+ const ServiceId = OpcServiceCode.ReadRequest // READ, query command ack results reading attribute 12 (EventNotifier)
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ MaxAge: 0,
+ NodesToRead: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: commandTag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.EventNotifier,
+ ClientHandle: commandHandle,
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle
+ )
+ return OpcStatusCodes.BadServiceUnsupported
+
+ // response must have same request handle and be a data change notification response or service fault
+ if (
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.ServiceId !== OpcServiceCode.DataChangeNotification &&
+ data.ServiceId !== OpcServiceCode.ServiceFault) ||
+ typeof data.Body.MonitoredItems !== 'object'
+ ) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good) {
+ return OpcStatusCodes.BadInternalError
+ }
+ if (data.Body.MonitoredItems.length === 0) {
+ return OpcStatusCodes.BadNoDataAvailable
+ }
+
+ if (
+ data.Body.MonitoredItems[0].Value.StatusCode ===
+ OpcStatusCodes.BadWaitingForResponse
+ )
+ return OpcStatusCodes.BadWaitingForResponse
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Good
+ )
+ return OpcStatusCodes.Good
+ else if (
+ data.Body.MonitoredItems[0].Value.StatusCode === OpcStatusCodes.Bad
+ )
+ return OpcStatusCodes.Bad
+
+ return OpcStatusCodes.BadInvalidState
+ } catch (error) {
+ return OpcStatusCodes.BadInternalError
+ }
+}
+
+/**
+ * Write the given extended properties of a tag.
+ * @param {string} tag - the tag name
+ * @param {ExtendedProperties} properties - the properties to write
+ * @returns {Promise} a promise that resolves to true if the write was successful, false otherwise
+ */
+export async function writeTagProperties(
+ tag: string,
+ properties: ExtendedProperties
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest // write data service
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req: OpcRequest = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1250,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.Description,
+ Value: {
+ _Properties: properties,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+ const data = await response.json()
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good
+ ) {
+ return false
+ }
+ if (data.Body.Results[0] !== OpcStatusCodes.Good) {
+ return false
+ }
+ return true
+ } catch (error) {
+ return false
+ }
+}
+
+/**
+ * Acknowledge alarm(s)/event(s) for a given tag.
+ * To acknowledge all alarms for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllAlarms)
+ * To acknowledge all events for all tags call ackAlarmsEvents('', OpcAcknowledge.AckAllEvents)
+ * To remove all events for all tags call ackAlarmsEvents('', OpcAcknowledge.RemoveAllEvents)
+ *
+ * @param {string} tag - The tag name for which alarms/events are to be acknowledged.
+ * @param {number} action - A bit mask of the enum type OpcAcknowledge that specifies the acknowledgment action.
+ * @returns {Promise} A promise that resolves to true if the alarm acknowledgment is successful, false otherwise.
+ */
+export async function ackAlarmsEvents(
+ tag: string,
+ action: number // bit mask of enum type OpcAcknowledge
+): Promise {
+ const ServiceId = OpcServiceCode.WriteRequest
+ const RequestHandle = Math.floor(Math.random() * 100000000)
+ const req = {
+ ServiceId: ServiceId,
+ Body: {
+ RequestHeader: {
+ Timestamp: new Date().toISOString(),
+ RequestHandle: RequestHandle,
+ TimeoutHint: 1000,
+ ReturnDiagnostics: OpcDiagnosticInfoMask.LocalizedText,
+ AuthenticationToken: null,
+ },
+ NodesToWrite: [
+ {
+ NodeId: {
+ IdType: OpcKeyType.String,
+ Id: tag,
+ Namespace: OpcNamespaces.Mongodb,
+ },
+ AttributeId: OpcAttributeId.ExtendedAlarmEventsAck,
+ Value: {
+ Type: OpcValueTypes.Integer,
+ Body: action,
+ },
+ },
+ ],
+ },
+ }
+
+ try {
+ const response = await fetch('/Invoke/', {
+ method: 'POST',
+ body: JSON.stringify(req),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+
+ const data = await response.json()
+
+ if (
+ !data.ServiceId ||
+ !data.Body ||
+ !data.Body.ResponseHeader ||
+ !data.Body.ResponseHeader.RequestHandle ||
+ !data.Body.Results ||
+ data.ServiceId !== OpcServiceCode.WriteResponse ||
+ data.Body.ResponseHeader.RequestHandle !== RequestHandle ||
+ (data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.Good &&
+ data.Body.ResponseHeader.ServiceResult !== OpcStatusCodes.GoodNoData)
+ ) {
+ return false
+ }
+
+ return true
+ } catch (error) {
+ return false
+ }
+}
diff --git a/src/demo_simul/package-lock.json b/src/demo_simul/package-lock.json
index e45e3900..7c3bb530 100644
--- a/src/demo_simul/package-lock.json
+++ b/src/demo_simul/package-lock.json
@@ -37,9 +37,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -52,13 +52,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -66,7 +66,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/grafana_alert2event/package-lock.json b/src/grafana_alert2event/package-lock.json
index bec85e57..0bf63295 100644
--- a/src/grafana_alert2event/package-lock.json
+++ b/src/grafana_alert2event/package-lock.json
@@ -151,51 +151,51 @@
}
},
"node_modules/@aws-sdk/client-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-9tFt+we6AIvj/f1+nrLHuCWcQmyfux5gcBSOy9d9+zIG56YxGEX7S9TaZnybogpVV8A0BYWml36WvIHS9QjIpA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-Xb+6S5QzFhKin9gOIKjvFhvP13AffH5oq0v/e0yQO0JckSLuph9+du/CHcobPqkxJpzyreeDltD7+Yu/l9RmIg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -204,48 +204,48 @@
}
},
"node_modules/@aws-sdk/client-sso": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.696.0.tgz",
- "integrity": "sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.712.0.tgz",
+ "integrity": "sha512-tBo/eW3YpZ9f3Q1qA7aA8uliNFJJX0OP7R2IUJ8t6rqVTk15wWCEPNmXzUZKgruDnKUfCaF4+r9q/Yy4fBc9PA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -254,49 +254,49 @@
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.699.0.tgz",
- "integrity": "sha512-u8a1GorY5D1l+4FQAf4XBUC1T10/t7neuwT21r0ymrtMFSK2a9QqVHKMoLkvavAwyhJnARSBM9/UQC797PFOFw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.712.0.tgz",
+ "integrity": "sha512-xNFrG9syrG6pxUP7Ld/nu3afQ9+rbJM9qrE+wDNz4VnNZ3vLiJty4fH85zBFhOQ5OF2DIJTWsFzXGi2FYjsCMA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -304,54 +304,54 @@
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/client-sts": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.699.0.tgz",
- "integrity": "sha512-++lsn4x2YXsZPIzFVwv3fSUVM55ZT0WRFmPeNilYIhZClxHLmVAWKH4I55cY9ry60/aTKYjzOXkWwyBKGsGvQg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.712.0.tgz",
+ "integrity": "sha512-gIO6BD+hkEe3GKQhbiFP0zcNQv0EkP1Cl9SOstxS+X9CeudEgVX/xEPUjyoFVkfkntPBJ1g0I1u5xOzzRExl4g==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -360,21 +360,21 @@
}
},
"node_modules/@aws-sdk/core": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.696.0.tgz",
- "integrity": "sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.709.0.tgz",
+ "integrity": "sha512-7kuSpzdOTAE026j85wq/fN9UDZ70n0OHw81vFqMWwlEFtm5IQ/MRCLKcC4HkXxTdfy1PqFlmoXxWqeBa15tujw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/signature-v4": "^4.2.2",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/signature-v4": "^4.2.4",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
@@ -383,16 +383,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-iuaTnudaBfEET+o444sDwf71Awe6UiZfH+ipUPmswAi2jZDwdFF1nxMKDEKL8/LV5WpXsdKSfwgS0RQeupURew==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-sUUaw4PK9LQNGGytVpz659w4rWwdhfsZ4AMns0smnWfNVmmDAOtDMUTzNUxYmXhWt4+iS4cXfQqmUAdKqIhlsw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -400,16 +400,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-env": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.696.0.tgz",
- "integrity": "sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.709.0.tgz",
+ "integrity": "sha512-ZMAp9LSikvHDFVa84dKpQmow6wsg956Um20cKuioPpX2GGreJFur7oduD+tRJT6FtIOHn+64YH+0MwiXLhsaIQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -417,21 +417,21 @@
}
},
"node_modules/@aws-sdk/credential-provider-http": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.696.0.tgz",
- "integrity": "sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.709.0.tgz",
+ "integrity": "sha512-lIS7XLwCOyJnLD70f+VIRr8DNV1HPQe9oN6aguYrhoczqz7vDiVZLe3lh714cJqq9rdxzFypK5DqKHmcscMEPQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -439,50 +439,50 @@
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.699.0.tgz",
- "integrity": "sha512-dXmCqjJnKmG37Q+nLjPVu22mNkrGHY8hYoOt3Jo9R2zr5MYV7s/NHsCHr+7E+BZ+tfZYLRPeB1wkpTeHiEcdRw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.712.0.tgz",
+ "integrity": "sha512-sTsdQ/Fm/suqMdpjhMuss/5uKL18vcuWnNTQVrG9iGNRqZLbq65MXquwbUpgzfoUmIcH+4CrY6H2ebpTIECIag==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.699.0.tgz",
- "integrity": "sha512-MmEmNDo1bBtTgRmdNfdQksXu4uXe66s0p1hi1YPrn1h59Q605eq/xiWbGL6/3KdkViH6eGUuABeV2ODld86ylg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.712.0.tgz",
+ "integrity": "sha512-gXrHymW3rMRYORkPVQwL8Gi5Lu92F16SoZR543x03qCi7rm00oL9tRD85ACxkhprS1Wh8lUIUMNoeiwnYWTNuQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -490,17 +490,17 @@
}
},
"node_modules/@aws-sdk/credential-provider-process": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.696.0.tgz",
- "integrity": "sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.709.0.tgz",
+ "integrity": "sha512-IAC+jPlGQII6jhIylHOwh3RgSobqlgL59nw2qYTURr8hMCI0Z1p5y2ee646HTVt4WeCYyzUAXfxr6YI/Vitv+Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -508,19 +508,19 @@
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.699.0.tgz",
- "integrity": "sha512-Ekp2cZG4pl9D8+uKWm4qO1xcm8/MeiI8f+dnlZm8aQzizeC+aXYy9GyoclSf6daK8KfRPiRfM7ZHBBL5dAfdMA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.712.0.tgz",
+ "integrity": "sha512-8lCMxY7Lb9VK9qdlNXRJXE3W1UDVURnJZ3a4XWYNY6yr1TfQaN40mMyXX1oNlXXJtMV0szRvjM8dZj37E/ESAw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/token-providers": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/token-providers": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -528,48 +528,48 @@
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.696.0.tgz",
- "integrity": "sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.709.0.tgz",
+ "integrity": "sha512-2lbDfE0IQ6gma/7BB2JpkjW5G0wGe4AS0x80oybYAYYviJmUtIR3Cn2pXun6bnAWElt4wYKl4su7oC36rs5rNA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.696.0"
+ "@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/credential-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.699.0.tgz",
- "integrity": "sha512-jBjOntl9zN9Nvb0jmbMGRbiTzemDz64ij7W6BDavxBJRZpRoNeN0QCz6RolkCyXnyUJjo5mF2unY2wnv00A+LQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.712.0.tgz",
+ "integrity": "sha512-7U/pIx1T2IjysoskFRglZAThoxewKw6HoZS/SJT3hLusa/uuYuno1Y1nmCr0ojsl9NB7Jm4PIK3yJUZDDgy+Ng==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-cognito-identity": "3.699.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-cognito-identity": "3.712.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -577,15 +577,15 @@
}
},
"node_modules/@aws-sdk/middleware-host-header": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.696.0.tgz",
- "integrity": "sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.709.0.tgz",
+ "integrity": "sha512-8gQYCYAaIw4lOCd5WYdf15Y/61MgRsAnrb2eiTl+icMlUOOzl8aOl5iDwm/Idp0oHZTflwxM4XSvGXO83PRWcw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -593,14 +593,14 @@
}
},
"node_modules/@aws-sdk/middleware-logger": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.696.0.tgz",
- "integrity": "sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.709.0.tgz",
+ "integrity": "sha512-jDoGSccXv9zebnpUoisjWd5u5ZPIalrmm6TjvPzZ8UqzQt3Beiz0tnQwmxQD6KRc7ADweWP5Ntiqzbw9xpVajg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -608,15 +608,15 @@
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.696.0.tgz",
- "integrity": "sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.709.0.tgz",
+ "integrity": "sha512-PObL/wLr4lkfbQ0yXUWaoCWu/jcwfwZzCjsUiXW/H6hW9b/00enZxmx7OhtJYaR6xmh/Lcx5wbhIoDCbzdv0tw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -624,18 +624,18 @@
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.696.0.tgz",
- "integrity": "sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.709.0.tgz",
+ "integrity": "sha512-ooc9ZJvgkjPhi9q05XwSfNTXkEBEIfL4hleo5rQBKwHG3aTHvwOM7LLzhdX56QZVa6sorPBp6fwULuRDSqiQHw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -643,17 +643,17 @@
}
},
"node_modules/@aws-sdk/region-config-resolver": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.696.0.tgz",
- "integrity": "sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.709.0.tgz",
+ "integrity": "sha512-/NoCAMEVKAg3kBKOrNtgOfL+ECt6nrl+L7q2SyYmrcY4tVCmwuECVqewQaHc03fTnJijfKLccw0Fj+6wOCnB6w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -661,33 +661,33 @@
}
},
"node_modules/@aws-sdk/token-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.699.0.tgz",
- "integrity": "sha512-kuiEW9DWs7fNos/SM+y58HCPhcIzm1nEZLhe2/7/6+TvAYLuEWURYsbK48gzsxXlaJ2k/jGY3nIsA7RptbMOwA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.709.0.tgz",
+ "integrity": "sha512-q5Ar6k71nci43IbULFgC8a89d/3EHpmd7HvBzqVGRcHnoPwh8eZDBfbBXKH83NGwcS1qPSRYiDbVfeWPm4/1jA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sso-oidc": "^3.699.0"
+ "@aws-sdk/client-sso-oidc": "^3.709.0"
}
},
"node_modules/@aws-sdk/types": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.696.0.tgz",
- "integrity": "sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.709.0.tgz",
+ "integrity": "sha512-ArtLTMxgjf13Kfu3gWH3Ez9Q5TkDdcRZUofpKH3pMGB/C6KAbeSCtIIDKfoRTUABzyGlPyCrZdnFjKyH+ypIpg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -695,15 +695,15 @@
}
},
"node_modules/@aws-sdk/util-endpoints": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.696.0.tgz",
- "integrity": "sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.709.0.tgz",
+ "integrity": "sha512-Mbc7AtL5WGCTKC16IGeUTz+sjpC3ptBda2t0CcK0kMVw3THDdcSq6ZlNKO747cNqdbwUvW34oHteUiHv4/z88Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
- "@smithy/util-endpoints": "^2.1.6",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-endpoints": "^2.1.7",
"tslib": "^2.6.2"
},
"engines": {
@@ -724,29 +724,29 @@
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.696.0.tgz",
- "integrity": "sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.709.0.tgz",
+ "integrity": "sha512-/rL2GasJzdTWUURCQKFldw2wqBtY4k4kCiA2tVZSKg3y4Ey7zO34SW8ebaeCE2/xoWOyLR2/etdKyphoo4Zrtg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.696.0.tgz",
- "integrity": "sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.712.0.tgz",
+ "integrity": "sha512-26X21bZ4FWsVpqs33uOXiB60TOWQdVlr7T7XONDFL/XN7GEpUJkWuuIB4PTok6VOmh1viYcdxZQqekXPuzXexQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -772,13 +772,13 @@
}
},
"node_modules/@smithy/abort-controller": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.8.tgz",
- "integrity": "sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==",
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.9.tgz",
+ "integrity": "sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -786,16 +786,16 @@
}
},
"node_modules/@smithy/config-resolver": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.12.tgz",
- "integrity": "sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.13.tgz",
+ "integrity": "sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -803,18 +803,18 @@
}
},
"node_modules/@smithy/core": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.4.tgz",
- "integrity": "sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==",
+ "version": "2.5.5",
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.5.tgz",
+ "integrity": "sha512-G8G/sDDhXA7o0bOvkc7bgai6POuSld/+XhNnWAbpQTpLv2OZPvyqQ58tLPPlz0bSNsXktldDDREIv1LczFeNEw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-body-length-browser": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -823,16 +823,16 @@
}
},
"node_modules/@smithy/credential-provider-imds": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.7.tgz",
- "integrity": "sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==",
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.8.tgz",
+ "integrity": "sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -840,27 +840,27 @@
}
},
"node_modules/@smithy/fetch-http-handler": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.1.tgz",
- "integrity": "sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.2.tgz",
+ "integrity": "sha512-R7rU7Ae3ItU4rC0c5mB2sP5mJNbCfoDc8I5XlYjIZnquyUwec7fEo78F6DA3SmgJgkU1qTMcZJuGblxZsl10ZA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@smithy/hash-node": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.10.tgz",
- "integrity": "sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.11.tgz",
+ "integrity": "sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -870,13 +870,13 @@
}
},
"node_modules/@smithy/invalid-dependency": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.10.tgz",
- "integrity": "sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.11.tgz",
+ "integrity": "sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -894,14 +894,14 @@
}
},
"node_modules/@smithy/middleware-content-length": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.12.tgz",
- "integrity": "sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.13.tgz",
+ "integrity": "sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -909,19 +909,19 @@
}
},
"node_modules/@smithy/middleware-endpoint": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.4.tgz",
- "integrity": "sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.5.tgz",
+ "integrity": "sha512-VhJNs/s/lyx4weiZdXSloBgoLoS8osV0dKIain8nGmx7of3QFKu5BSdEuk1z/U8x9iwes1i+XCiNusEvuK1ijg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -929,19 +929,19 @@
}
},
"node_modules/@smithy/middleware-retry": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.28.tgz",
- "integrity": "sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.30.tgz",
+ "integrity": "sha512-6323RL2BvAR3VQpTjHpa52kH/iSHyxd/G9ohb2MkBk2Ucu+oMtRXT8yi7KTSIS9nb58aupG6nO0OlXnQOAcvmQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
@@ -950,13 +950,13 @@
}
},
"node_modules/@smithy/middleware-serde": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.10.tgz",
- "integrity": "sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.11.tgz",
+ "integrity": "sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -964,13 +964,13 @@
}
},
"node_modules/@smithy/middleware-stack": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.10.tgz",
- "integrity": "sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.11.tgz",
+ "integrity": "sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -978,15 +978,15 @@
}
},
"node_modules/@smithy/node-config-provider": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.11.tgz",
- "integrity": "sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.12.tgz",
+ "integrity": "sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -994,16 +994,16 @@
}
},
"node_modules/@smithy/node-http-handler": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.1.tgz",
- "integrity": "sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.2.tgz",
+ "integrity": "sha512-t4ng1DAd527vlxvOfKFYEe6/QFBcsj7WpNlWTyjorwXXcKw3XlltBGbyHfSJ24QT84nF+agDha9tNYpzmSRZPA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/abort-controller": "^3.1.8",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/abort-controller": "^3.1.9",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1011,13 +1011,13 @@
}
},
"node_modules/@smithy/property-provider": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.10.tgz",
- "integrity": "sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==",
+ "version": "3.1.11",
+ "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.11.tgz",
+ "integrity": "sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1025,13 +1025,13 @@
}
},
"node_modules/@smithy/protocol-http": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.7.tgz",
- "integrity": "sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==",
+ "version": "4.1.8",
+ "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.8.tgz",
+ "integrity": "sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1039,13 +1039,13 @@
}
},
"node_modules/@smithy/querystring-builder": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.10.tgz",
- "integrity": "sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.11.tgz",
+ "integrity": "sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-uri-escape": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -1054,13 +1054,13 @@
}
},
"node_modules/@smithy/querystring-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.10.tgz",
- "integrity": "sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.11.tgz",
+ "integrity": "sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1068,26 +1068,26 @@
}
},
"node_modules/@smithy/service-error-classification": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.10.tgz",
- "integrity": "sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.11.tgz",
+ "integrity": "sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1"
+ "@smithy/types": "^3.7.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@smithy/shared-ini-file-loader": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.11.tgz",
- "integrity": "sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.12.tgz",
+ "integrity": "sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1095,17 +1095,17 @@
}
},
"node_modules/@smithy/signature-v4": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.3.tgz",
- "integrity": "sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==",
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.4.tgz",
+ "integrity": "sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@smithy/is-array-buffer": "^3.0.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-hex-encoding": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"@smithy/util-uri-escape": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -1115,18 +1115,18 @@
}
},
"node_modules/@smithy/smithy-client": {
- "version": "3.4.5",
- "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.5.tgz",
- "integrity": "sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==",
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.5.0.tgz",
+ "integrity": "sha512-Y8FeOa7gbDfCWf7njrkoRATPa5eNLUEjlJS5z5rXatYuGkCb80LbHcu8AQR8qgAZZaNHCLyo2N+pxPsV7l+ivg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-endpoint": "^3.2.4",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1134,9 +1134,9 @@
}
},
"node_modules/@smithy/types": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.1.tgz",
- "integrity": "sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.2.tgz",
+ "integrity": "sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -1147,14 +1147,14 @@
}
},
"node_modules/@smithy/url-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.10.tgz",
- "integrity": "sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.11.tgz",
+ "integrity": "sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/querystring-parser": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/querystring-parser": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -1224,15 +1224,15 @@
}
},
"node_modules/@smithy/util-defaults-mode-browser": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.28.tgz",
- "integrity": "sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.30.tgz",
+ "integrity": "sha512-nLuGmgfcr0gzm64pqF2UT4SGWVG8UGviAdayDlVzJPNa6Z4lqvpDzdRXmLxtOdEjVlTOEdpZ9dd3ZMMu488mzg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
},
@@ -1241,18 +1241,18 @@
}
},
"node_modules/@smithy/util-defaults-mode-node": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.28.tgz",
- "integrity": "sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.30.tgz",
+ "integrity": "sha512-OD63eWoH68vp75mYcfYyuVH+p7Li/mY4sYOROnauDrtObo1cS4uWfsy/zhOTW8F8ZPxQC1ZXZKVxoxvMGUv2Ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/credential-provider-imds": "^3.2.7",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1260,14 +1260,14 @@
}
},
"node_modules/@smithy/util-endpoints": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.6.tgz",
- "integrity": "sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.7.tgz",
+ "integrity": "sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1288,13 +1288,13 @@
}
},
"node_modules/@smithy/util-middleware": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.10.tgz",
- "integrity": "sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.11.tgz",
+ "integrity": "sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1302,14 +1302,14 @@
}
},
"node_modules/@smithy/util-retry": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.10.tgz",
- "integrity": "sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.11.tgz",
+ "integrity": "sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1317,15 +1317,15 @@
}
},
"node_modules/@smithy/util-stream": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.1.tgz",
- "integrity": "sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.2.tgz",
+ "integrity": "sha512-sInAqdiVeisUGYAv/FrXpmJ0b4WTFmciTRqzhb7wVuem9BHvhIG7tpiYHLDWrl2stOokNZpTTGqz3mzB2qFwXg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/types": "^3.7.1",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-hex-encoding": "^3.0.0",
@@ -1364,9 +1364,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -1504,16 +1504,44 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -1612,6 +1640,20 @@
"npm": "1.2.8000 || >= 1.4.16"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -1628,13 +1670,10 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -1648,6 +1687,18 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -1664,9 +1715,9 @@
}
},
"node_modules/express": {
- "version": "4.21.1",
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
- "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
"dependencies": {
"accepts": "~1.3.8",
@@ -1688,7 +1739,7 @@
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
- "path-to-regexp": "0.1.10",
+ "path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
@@ -1703,6 +1754,10 @@
},
"engines": {
"node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/fast-xml-parser": {
@@ -1780,16 +1835,21 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -1799,12 +1859,12 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -1822,22 +1882,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -1946,6 +1994,15 @@
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
"license": "MIT"
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -2090,9 +2147,9 @@
}
},
"node_modules/path-to-regexp": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
- "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
"license": "MIT"
},
"node_modules/proxy-addr": {
@@ -2269,15 +2326,69 @@
"license": "ISC"
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
diff --git a/src/lib60870.netcore/lib60870.netcore/lib60870.netcore.csproj b/src/lib60870.netcore/lib60870.netcore/lib60870.netcore.csproj
index 61403020..a2438660 100644
--- a/src/lib60870.netcore/lib60870.netcore/lib60870.netcore.csproj
+++ b/src/lib60870.netcore/lib60870.netcore/lib60870.netcore.csproj
@@ -20,6 +20,7 @@
+
diff --git a/src/libiec61850/dotnet/core/2.0/IEC61850.NET.core.2.0/IEC61850.NET.core.2.0.csproj b/src/libiec61850/dotnet/core/2.0/IEC61850.NET.core.2.0/IEC61850.NET.core.2.0.csproj
index 3e1cc350..cdde199a 100644
--- a/src/libiec61850/dotnet/core/2.0/IEC61850.NET.core.2.0/IEC61850.NET.core.2.0.csproj
+++ b/src/libiec61850/dotnet/core/2.0/IEC61850.NET.core.2.0/IEC61850.NET.core.2.0.csproj
@@ -21,6 +21,7 @@
+
diff --git a/src/libplctag/PLCTagsClient/PLCTagsClient.csproj b/src/libplctag/PLCTagsClient/PLCTagsClient.csproj
index 9a483209..d0066542 100644
--- a/src/libplctag/PLCTagsClient/PLCTagsClient.csproj
+++ b/src/libplctag/PLCTagsClient/PLCTagsClient.csproj
@@ -10,6 +10,7 @@
+
\ No newline at end of file
diff --git a/src/mongofw/package-lock.json b/src/mongofw/package-lock.json
index 76d46184..a9f0c5a6 100644
--- a/src/mongofw/package-lock.json
+++ b/src/mongofw/package-lock.json
@@ -40,9 +40,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -86,13 +86,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -100,7 +100,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/mongowr/package-lock.json b/src/mongowr/package-lock.json
index 701088bd..50bec94e 100644
--- a/src/mongowr/package-lock.json
+++ b/src/mongowr/package-lock.json
@@ -40,9 +40,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -86,13 +86,13 @@
"license": "MIT"
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -100,7 +100,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/mqtt-sparkplug/package-lock.json b/src/mqtt-sparkplug/package-lock.json
index 6744a51a..ab8190b8 100644
--- a/src/mqtt-sparkplug/package-lock.json
+++ b/src/mqtt-sparkplug/package-lock.json
@@ -158,9 +158,9 @@
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -309,9 +309,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -463,9 +463,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -790,13 +790,13 @@
}
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -804,7 +804,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
diff --git a/src/server_realtime_auth/package-lock.json b/src/server_realtime_auth/package-lock.json
index 2fbe4991..4245599c 100644
--- a/src/server_realtime_auth/package-lock.json
+++ b/src/server_realtime_auth/package-lock.json
@@ -38,9 +38,9 @@
}
},
"node_modules/@apollo/client": {
- "version": "3.11.10",
- "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.11.10.tgz",
- "integrity": "sha512-IfGc+X4il0rDqVQBBWdxIKM+ciDCiDzBq9+Bg9z4tJMi87uF6po4v+ddiac1wP0ARgVPsFwEIGxK7jhN4pW8jg==",
+ "version": "3.12.3",
+ "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.12.3.tgz",
+ "integrity": "sha512-KZ5zymRdb8bMbGUb1wP2U04ff7qIGgaC1BCdCVC+IPFiXkxEhHBc5fDEQOwAUT+vUo9KbBh3g7QK/JCOswn59w==",
"license": "MIT",
"optional": true,
"dependencies": {
@@ -62,8 +62,8 @@
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0",
"graphql-ws": "^5.5.5",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc",
"subscriptions-transport-ws": "^0.9.0 || ^0.11.0"
},
"peerDependenciesMeta": {
@@ -507,9 +507,9 @@
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -720,9 +720,9 @@
}
},
"node_modules/bson": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.0.tgz",
- "integrity": "sha512-ROchNosXMJD2cbQGm84KoP7vOGPO6/bOAW0veMMbzhXLqoZptcaYRVLitwvuhwhjjpU1qP4YZRWLhgETdgqUQw==",
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.1.tgz",
+ "integrity": "sha512-P92xmHDQjSKPLHqFxefqMxASNq/aWJMEZugpCjf+AF/pgcUpMMQCg7t7+ewko0/u8AapvF3luf/FoehddEK+sA==",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.1"
@@ -755,16 +755,44 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -931,6 +959,20 @@
"node": ">=4"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/ecdsa-sig-formatter": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
@@ -956,13 +998,10 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -976,6 +1015,18 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/es6-promise": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
@@ -1004,9 +1055,9 @@
"license": "MIT"
},
"node_modules/express": {
- "version": "4.21.1",
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
- "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
"dependencies": {
"accepts": "~1.3.8",
@@ -1028,7 +1079,7 @@
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
- "path-to-regexp": "0.1.10",
+ "path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
@@ -1043,6 +1094,10 @@
},
"engines": {
"node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/express-fileupload": {
@@ -1187,16 +1242,21 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -1206,12 +1266,12 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -1243,31 +1303,31 @@
}
},
"node_modules/graphql-tools": {
- "version": "9.0.4",
- "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-9.0.4.tgz",
- "integrity": "sha512-Zqf0QvuZ+4ZphoPTYinoKENYf3rHzWaJjJF8g27a1+O69+Z6DH2sGV+3v9kYjS7VRsF6A3xz1QplKdIc6EC7WA==",
+ "version": "9.0.8",
+ "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-9.0.8.tgz",
+ "integrity": "sha512-Xc4efKwugzTsswtQ/Vup6VvCBZ1qy/8CR5mVkVkPmWyl7GmTbQzvIteR4Yr2fegtgXxfmY8YiAY2a71yEBjDhA==",
"license": "MIT",
"dependencies": {
- "@graphql-tools/schema": "^10.0.9",
+ "@graphql-tools/schema": "^10.0.13",
"tslib": "^2.4.0"
},
"engines": {
"node": ">=16.0.0"
},
"optionalDependencies": {
- "@apollo/client": "~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0"
+ "@apollo/client": "~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0 || ~3.12.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/graphql-tools/node_modules/@graphql-tools/merge": {
- "version": "9.0.10",
- "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.10.tgz",
- "integrity": "sha512-sU+b6ZmKtGnqHq8S+VI5UmjZVHWzT+b+QtCsJUEXckCKdq1P3JmwIT8+8DVxSQlh1dzpiVq37EOcJrEYOBZtBA==",
+ "version": "9.0.14",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.14.tgz",
+ "integrity": "sha512-MO7VXnm3ShpdG51hs4hYsLyu+8o/tSLjNYQmLmR4rkHoFi3kQCDu2r8B4IVwd+Ve39cechj0NyCmMsg+mRvwDQ==",
"license": "MIT",
"dependencies": {
- "@graphql-tools/utils": "^10.6.0",
+ "@graphql-tools/utils": "^10.6.4",
"tslib": "^2.4.0"
},
"engines": {
@@ -1278,13 +1338,13 @@
}
},
"node_modules/graphql-tools/node_modules/@graphql-tools/schema": {
- "version": "10.0.9",
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.9.tgz",
- "integrity": "sha512-R/sPRLJnEHg/F7owvH1zLbfXxqrEgFyr/qSjsG1q+gWhCrxbo/+c2DVjeZEZ2/AKCLllDHTD5TOU2Y5sZGNxZg==",
+ "version": "10.0.13",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.13.tgz",
+ "integrity": "sha512-1gvTTuSKej9bR5O2SP9dCKSHaQkVmg9fWU0Aia34HMsAZl2bzosUfXjwBu3ze8MWqb+gRVjdhukDpGA5ZC+5nA==",
"license": "MIT",
"dependencies": {
- "@graphql-tools/merge": "^9.0.10",
- "@graphql-tools/utils": "^10.6.0",
+ "@graphql-tools/merge": "^9.0.14",
+ "@graphql-tools/utils": "^10.6.4",
"tslib": "^2.4.0",
"value-or-promise": "^1.0.12"
},
@@ -1296,9 +1356,9 @@
}
},
"node_modules/graphql-tools/node_modules/@graphql-tools/utils": {
- "version": "10.6.0",
- "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.6.0.tgz",
- "integrity": "sha512-bqSn2ekSNwFVZprY6YsrHkqPA7cPLNKxiPlEzS1djhfvx4q9tx7Uwc5dnLp3SSnKinJ8dJk9FA5sxNcKjCM44w==",
+ "version": "10.6.4",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.6.4.tgz",
+ "integrity": "sha512-itCgjwVxbO+3uI/K73G9heedG8KelNFzgn368rUhPjTrkJX6NyLQwT5EMq/A8tvazMXyJYdtnN5nD+tT4DUpbQ==",
"license": "MIT",
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
@@ -1325,22 +1385,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -1419,9 +1467,9 @@
}
},
"node_modules/http-proxy-middleware/node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -1667,6 +1715,15 @@
"node": ">=12"
}
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -1747,13 +1804,13 @@
}
},
"node_modules/mongodb": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.11.0.tgz",
- "integrity": "sha512-yVbPw0qT268YKhG241vAMLaDQAPbRyTgo++odSgGc9kXnzOujQI60Iyj23B9sQQFPSvmNPvMZ3dsFz0aN55KgA==",
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.12.0.tgz",
+ "integrity": "sha512-RM7AHlvYfS7jv7+BXund/kR64DryVI+cHbVAy9P61fnb1RcWZqOW1/Wj2YhqMCx+MuYhqTRGv7AwHBzmsCKBfA==",
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/saslprep": "^1.1.9",
- "bson": "^6.10.0",
+ "bson": "^6.10.1",
"mongodb-connection-string-url": "^3.0.0"
},
"engines": {
@@ -1761,7 +1818,7 @@
},
"peerDependencies": {
"@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
"gcp-metadata": "^5.2.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=6.0.0 <7",
@@ -1803,14 +1860,14 @@
}
},
"node_modules/mongoose": {
- "version": "8.8.3",
- "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.8.3.tgz",
- "integrity": "sha512-/I4n/DcXqXyIiLRfAmUIiTjj3vXfeISke8dt4U4Y8Wfm074Wa6sXnQrXN49NFOFf2mM1kUdOXryoBvkuCnr+Qw==",
+ "version": "8.9.0",
+ "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.9.0.tgz",
+ "integrity": "sha512-b58zY3PLNBcoz6ZXFckr0leJcVVBMAOBvD+7Bj2ZjghAwntXmNnqwlDixTKQU3UYoQIGTv+AQx/0ThsvaeVrCA==",
"license": "MIT",
"dependencies": {
- "bson": "^6.7.0",
+ "bson": "^6.10.1",
"kareem": "2.6.3",
- "mongodb": "~6.10.0",
+ "mongodb": "~6.12.0",
"mpath": "0.9.0",
"mquery": "5.0.0",
"ms": "2.1.3",
@@ -1824,52 +1881,6 @@
"url": "https://opencollective.com/mongoose"
}
},
- "node_modules/mongoose/node_modules/mongodb": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.10.0.tgz",
- "integrity": "sha512-gP9vduuYWb9ZkDM546M+MP2qKVk5ZG2wPF63OvSRuUbqCR+11ZCAE1mOfllhlAG0wcoJY5yDL/rV3OmYEwXIzg==",
- "license": "Apache-2.0",
- "dependencies": {
- "@mongodb-js/saslprep": "^1.1.5",
- "bson": "^6.7.0",
- "mongodb-connection-string-url": "^3.0.0"
- },
- "engines": {
- "node": ">=16.20.1"
- },
- "peerDependencies": {
- "@aws-sdk/credential-providers": "^3.188.0",
- "@mongodb-js/zstd": "^1.1.0",
- "gcp-metadata": "^5.2.0",
- "kerberos": "^2.0.1",
- "mongodb-client-encryption": ">=6.0.0 <7",
- "snappy": "^7.2.2",
- "socks": "^2.7.1"
- },
- "peerDependenciesMeta": {
- "@aws-sdk/credential-providers": {
- "optional": true
- },
- "@mongodb-js/zstd": {
- "optional": true
- },
- "gcp-metadata": {
- "optional": true
- },
- "kerberos": {
- "optional": true
- },
- "mongodb-client-encryption": {
- "optional": true
- },
- "snappy": {
- "optional": true
- },
- "socks": {
- "optional": true
- }
- }
- },
"node_modules/mongoose/node_modules/ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
@@ -1898,9 +1909,9 @@
}
},
"node_modules/mquery/node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -2039,9 +2050,9 @@
}
},
"node_modules/path-to-regexp": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
- "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
"license": "MIT"
},
"node_modules/pg": {
@@ -2446,15 +2457,69 @@
}
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
diff --git a/src/shell-api/package-lock.json b/src/shell-api/package-lock.json
index 495fff2e..ce2587ee 100644
--- a/src/shell-api/package-lock.json
+++ b/src/shell-api/package-lock.json
@@ -150,51 +150,51 @@
}
},
"node_modules/@aws-sdk/client-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-9tFt+we6AIvj/f1+nrLHuCWcQmyfux5gcBSOy9d9+zIG56YxGEX7S9TaZnybogpVV8A0BYWml36WvIHS9QjIpA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-Xb+6S5QzFhKin9gOIKjvFhvP13AffH5oq0v/e0yQO0JckSLuph9+du/CHcobPqkxJpzyreeDltD7+Yu/l9RmIg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -203,48 +203,48 @@
}
},
"node_modules/@aws-sdk/client-sso": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.696.0.tgz",
- "integrity": "sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.712.0.tgz",
+ "integrity": "sha512-tBo/eW3YpZ9f3Q1qA7aA8uliNFJJX0OP7R2IUJ8t6rqVTk15wWCEPNmXzUZKgruDnKUfCaF4+r9q/Yy4fBc9PA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -253,49 +253,49 @@
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.699.0.tgz",
- "integrity": "sha512-u8a1GorY5D1l+4FQAf4XBUC1T10/t7neuwT21r0ymrtMFSK2a9QqVHKMoLkvavAwyhJnARSBM9/UQC797PFOFw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.712.0.tgz",
+ "integrity": "sha512-xNFrG9syrG6pxUP7Ld/nu3afQ9+rbJM9qrE+wDNz4VnNZ3vLiJty4fH85zBFhOQ5OF2DIJTWsFzXGi2FYjsCMA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -303,54 +303,54 @@
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/client-sts": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.699.0.tgz",
- "integrity": "sha512-++lsn4x2YXsZPIzFVwv3fSUVM55ZT0WRFmPeNilYIhZClxHLmVAWKH4I55cY9ry60/aTKYjzOXkWwyBKGsGvQg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.712.0.tgz",
+ "integrity": "sha512-gIO6BD+hkEe3GKQhbiFP0zcNQv0EkP1Cl9SOstxS+X9CeudEgVX/xEPUjyoFVkfkntPBJ1g0I1u5xOzzRExl4g==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -359,21 +359,21 @@
}
},
"node_modules/@aws-sdk/core": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.696.0.tgz",
- "integrity": "sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.709.0.tgz",
+ "integrity": "sha512-7kuSpzdOTAE026j85wq/fN9UDZ70n0OHw81vFqMWwlEFtm5IQ/MRCLKcC4HkXxTdfy1PqFlmoXxWqeBa15tujw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/signature-v4": "^4.2.2",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/signature-v4": "^4.2.4",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
@@ -382,16 +382,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-iuaTnudaBfEET+o444sDwf71Awe6UiZfH+ipUPmswAi2jZDwdFF1nxMKDEKL8/LV5WpXsdKSfwgS0RQeupURew==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-sUUaw4PK9LQNGGytVpz659w4rWwdhfsZ4AMns0smnWfNVmmDAOtDMUTzNUxYmXhWt4+iS4cXfQqmUAdKqIhlsw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -399,16 +399,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-env": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.696.0.tgz",
- "integrity": "sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.709.0.tgz",
+ "integrity": "sha512-ZMAp9LSikvHDFVa84dKpQmow6wsg956Um20cKuioPpX2GGreJFur7oduD+tRJT6FtIOHn+64YH+0MwiXLhsaIQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -416,21 +416,21 @@
}
},
"node_modules/@aws-sdk/credential-provider-http": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.696.0.tgz",
- "integrity": "sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.709.0.tgz",
+ "integrity": "sha512-lIS7XLwCOyJnLD70f+VIRr8DNV1HPQe9oN6aguYrhoczqz7vDiVZLe3lh714cJqq9rdxzFypK5DqKHmcscMEPQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -438,50 +438,50 @@
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.699.0.tgz",
- "integrity": "sha512-dXmCqjJnKmG37Q+nLjPVu22mNkrGHY8hYoOt3Jo9R2zr5MYV7s/NHsCHr+7E+BZ+tfZYLRPeB1wkpTeHiEcdRw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.712.0.tgz",
+ "integrity": "sha512-sTsdQ/Fm/suqMdpjhMuss/5uKL18vcuWnNTQVrG9iGNRqZLbq65MXquwbUpgzfoUmIcH+4CrY6H2ebpTIECIag==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.699.0.tgz",
- "integrity": "sha512-MmEmNDo1bBtTgRmdNfdQksXu4uXe66s0p1hi1YPrn1h59Q605eq/xiWbGL6/3KdkViH6eGUuABeV2ODld86ylg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.712.0.tgz",
+ "integrity": "sha512-gXrHymW3rMRYORkPVQwL8Gi5Lu92F16SoZR543x03qCi7rm00oL9tRD85ACxkhprS1Wh8lUIUMNoeiwnYWTNuQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -489,17 +489,17 @@
}
},
"node_modules/@aws-sdk/credential-provider-process": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.696.0.tgz",
- "integrity": "sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.709.0.tgz",
+ "integrity": "sha512-IAC+jPlGQII6jhIylHOwh3RgSobqlgL59nw2qYTURr8hMCI0Z1p5y2ee646HTVt4WeCYyzUAXfxr6YI/Vitv+Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -507,19 +507,19 @@
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.699.0.tgz",
- "integrity": "sha512-Ekp2cZG4pl9D8+uKWm4qO1xcm8/MeiI8f+dnlZm8aQzizeC+aXYy9GyoclSf6daK8KfRPiRfM7ZHBBL5dAfdMA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.712.0.tgz",
+ "integrity": "sha512-8lCMxY7Lb9VK9qdlNXRJXE3W1UDVURnJZ3a4XWYNY6yr1TfQaN40mMyXX1oNlXXJtMV0szRvjM8dZj37E/ESAw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/token-providers": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/token-providers": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -527,48 +527,48 @@
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.696.0.tgz",
- "integrity": "sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.709.0.tgz",
+ "integrity": "sha512-2lbDfE0IQ6gma/7BB2JpkjW5G0wGe4AS0x80oybYAYYviJmUtIR3Cn2pXun6bnAWElt4wYKl4su7oC36rs5rNA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.696.0"
+ "@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/credential-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.699.0.tgz",
- "integrity": "sha512-jBjOntl9zN9Nvb0jmbMGRbiTzemDz64ij7W6BDavxBJRZpRoNeN0QCz6RolkCyXnyUJjo5mF2unY2wnv00A+LQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.712.0.tgz",
+ "integrity": "sha512-7U/pIx1T2IjysoskFRglZAThoxewKw6HoZS/SJT3hLusa/uuYuno1Y1nmCr0ojsl9NB7Jm4PIK3yJUZDDgy+Ng==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-cognito-identity": "3.699.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-cognito-identity": "3.712.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -576,15 +576,15 @@
}
},
"node_modules/@aws-sdk/middleware-host-header": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.696.0.tgz",
- "integrity": "sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.709.0.tgz",
+ "integrity": "sha512-8gQYCYAaIw4lOCd5WYdf15Y/61MgRsAnrb2eiTl+icMlUOOzl8aOl5iDwm/Idp0oHZTflwxM4XSvGXO83PRWcw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -592,14 +592,14 @@
}
},
"node_modules/@aws-sdk/middleware-logger": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.696.0.tgz",
- "integrity": "sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.709.0.tgz",
+ "integrity": "sha512-jDoGSccXv9zebnpUoisjWd5u5ZPIalrmm6TjvPzZ8UqzQt3Beiz0tnQwmxQD6KRc7ADweWP5Ntiqzbw9xpVajg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -607,15 +607,15 @@
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.696.0.tgz",
- "integrity": "sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.709.0.tgz",
+ "integrity": "sha512-PObL/wLr4lkfbQ0yXUWaoCWu/jcwfwZzCjsUiXW/H6hW9b/00enZxmx7OhtJYaR6xmh/Lcx5wbhIoDCbzdv0tw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -623,18 +623,18 @@
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.696.0.tgz",
- "integrity": "sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.709.0.tgz",
+ "integrity": "sha512-ooc9ZJvgkjPhi9q05XwSfNTXkEBEIfL4hleo5rQBKwHG3aTHvwOM7LLzhdX56QZVa6sorPBp6fwULuRDSqiQHw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -642,17 +642,17 @@
}
},
"node_modules/@aws-sdk/region-config-resolver": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.696.0.tgz",
- "integrity": "sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.709.0.tgz",
+ "integrity": "sha512-/NoCAMEVKAg3kBKOrNtgOfL+ECt6nrl+L7q2SyYmrcY4tVCmwuECVqewQaHc03fTnJijfKLccw0Fj+6wOCnB6w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -660,33 +660,33 @@
}
},
"node_modules/@aws-sdk/token-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.699.0.tgz",
- "integrity": "sha512-kuiEW9DWs7fNos/SM+y58HCPhcIzm1nEZLhe2/7/6+TvAYLuEWURYsbK48gzsxXlaJ2k/jGY3nIsA7RptbMOwA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.709.0.tgz",
+ "integrity": "sha512-q5Ar6k71nci43IbULFgC8a89d/3EHpmd7HvBzqVGRcHnoPwh8eZDBfbBXKH83NGwcS1qPSRYiDbVfeWPm4/1jA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sso-oidc": "^3.699.0"
+ "@aws-sdk/client-sso-oidc": "^3.709.0"
}
},
"node_modules/@aws-sdk/types": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.696.0.tgz",
- "integrity": "sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.709.0.tgz",
+ "integrity": "sha512-ArtLTMxgjf13Kfu3gWH3Ez9Q5TkDdcRZUofpKH3pMGB/C6KAbeSCtIIDKfoRTUABzyGlPyCrZdnFjKyH+ypIpg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -694,15 +694,15 @@
}
},
"node_modules/@aws-sdk/util-endpoints": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.696.0.tgz",
- "integrity": "sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.709.0.tgz",
+ "integrity": "sha512-Mbc7AtL5WGCTKC16IGeUTz+sjpC3ptBda2t0CcK0kMVw3THDdcSq6ZlNKO747cNqdbwUvW34oHteUiHv4/z88Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
- "@smithy/util-endpoints": "^2.1.6",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-endpoints": "^2.1.7",
"tslib": "^2.6.2"
},
"engines": {
@@ -723,29 +723,29 @@
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.696.0.tgz",
- "integrity": "sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.709.0.tgz",
+ "integrity": "sha512-/rL2GasJzdTWUURCQKFldw2wqBtY4k4kCiA2tVZSKg3y4Ey7zO34SW8ebaeCE2/xoWOyLR2/etdKyphoo4Zrtg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.696.0.tgz",
- "integrity": "sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.712.0.tgz",
+ "integrity": "sha512-26X21bZ4FWsVpqs33uOXiB60TOWQdVlr7T7XONDFL/XN7GEpUJkWuuIB4PTok6VOmh1viYcdxZQqekXPuzXexQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -771,13 +771,13 @@
}
},
"node_modules/@smithy/abort-controller": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.8.tgz",
- "integrity": "sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==",
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.9.tgz",
+ "integrity": "sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -785,16 +785,16 @@
}
},
"node_modules/@smithy/config-resolver": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.12.tgz",
- "integrity": "sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.13.tgz",
+ "integrity": "sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -802,18 +802,18 @@
}
},
"node_modules/@smithy/core": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.4.tgz",
- "integrity": "sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==",
+ "version": "2.5.5",
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.5.tgz",
+ "integrity": "sha512-G8G/sDDhXA7o0bOvkc7bgai6POuSld/+XhNnWAbpQTpLv2OZPvyqQ58tLPPlz0bSNsXktldDDREIv1LczFeNEw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-body-length-browser": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -822,16 +822,16 @@
}
},
"node_modules/@smithy/credential-provider-imds": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.7.tgz",
- "integrity": "sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==",
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.8.tgz",
+ "integrity": "sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -839,27 +839,27 @@
}
},
"node_modules/@smithy/fetch-http-handler": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.1.tgz",
- "integrity": "sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.2.tgz",
+ "integrity": "sha512-R7rU7Ae3ItU4rC0c5mB2sP5mJNbCfoDc8I5XlYjIZnquyUwec7fEo78F6DA3SmgJgkU1qTMcZJuGblxZsl10ZA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@smithy/hash-node": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.10.tgz",
- "integrity": "sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.11.tgz",
+ "integrity": "sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -869,13 +869,13 @@
}
},
"node_modules/@smithy/invalid-dependency": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.10.tgz",
- "integrity": "sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.11.tgz",
+ "integrity": "sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -893,14 +893,14 @@
}
},
"node_modules/@smithy/middleware-content-length": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.12.tgz",
- "integrity": "sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.13.tgz",
+ "integrity": "sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -908,19 +908,19 @@
}
},
"node_modules/@smithy/middleware-endpoint": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.4.tgz",
- "integrity": "sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.5.tgz",
+ "integrity": "sha512-VhJNs/s/lyx4weiZdXSloBgoLoS8osV0dKIain8nGmx7of3QFKu5BSdEuk1z/U8x9iwes1i+XCiNusEvuK1ijg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -928,19 +928,19 @@
}
},
"node_modules/@smithy/middleware-retry": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.28.tgz",
- "integrity": "sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.30.tgz",
+ "integrity": "sha512-6323RL2BvAR3VQpTjHpa52kH/iSHyxd/G9ohb2MkBk2Ucu+oMtRXT8yi7KTSIS9nb58aupG6nO0OlXnQOAcvmQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
@@ -949,13 +949,13 @@
}
},
"node_modules/@smithy/middleware-serde": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.10.tgz",
- "integrity": "sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.11.tgz",
+ "integrity": "sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -963,13 +963,13 @@
}
},
"node_modules/@smithy/middleware-stack": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.10.tgz",
- "integrity": "sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.11.tgz",
+ "integrity": "sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -977,15 +977,15 @@
}
},
"node_modules/@smithy/node-config-provider": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.11.tgz",
- "integrity": "sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.12.tgz",
+ "integrity": "sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -993,16 +993,16 @@
}
},
"node_modules/@smithy/node-http-handler": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.1.tgz",
- "integrity": "sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.2.tgz",
+ "integrity": "sha512-t4ng1DAd527vlxvOfKFYEe6/QFBcsj7WpNlWTyjorwXXcKw3XlltBGbyHfSJ24QT84nF+agDha9tNYpzmSRZPA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/abort-controller": "^3.1.8",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/abort-controller": "^3.1.9",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1010,13 +1010,13 @@
}
},
"node_modules/@smithy/property-provider": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.10.tgz",
- "integrity": "sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==",
+ "version": "3.1.11",
+ "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.11.tgz",
+ "integrity": "sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1024,13 +1024,13 @@
}
},
"node_modules/@smithy/protocol-http": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.7.tgz",
- "integrity": "sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==",
+ "version": "4.1.8",
+ "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.8.tgz",
+ "integrity": "sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1038,13 +1038,13 @@
}
},
"node_modules/@smithy/querystring-builder": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.10.tgz",
- "integrity": "sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.11.tgz",
+ "integrity": "sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-uri-escape": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -1053,13 +1053,13 @@
}
},
"node_modules/@smithy/querystring-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.10.tgz",
- "integrity": "sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.11.tgz",
+ "integrity": "sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1067,26 +1067,26 @@
}
},
"node_modules/@smithy/service-error-classification": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.10.tgz",
- "integrity": "sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.11.tgz",
+ "integrity": "sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1"
+ "@smithy/types": "^3.7.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@smithy/shared-ini-file-loader": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.11.tgz",
- "integrity": "sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.12.tgz",
+ "integrity": "sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1094,17 +1094,17 @@
}
},
"node_modules/@smithy/signature-v4": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.3.tgz",
- "integrity": "sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==",
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.4.tgz",
+ "integrity": "sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@smithy/is-array-buffer": "^3.0.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-hex-encoding": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"@smithy/util-uri-escape": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -1114,18 +1114,18 @@
}
},
"node_modules/@smithy/smithy-client": {
- "version": "3.4.5",
- "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.5.tgz",
- "integrity": "sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==",
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.5.0.tgz",
+ "integrity": "sha512-Y8FeOa7gbDfCWf7njrkoRATPa5eNLUEjlJS5z5rXatYuGkCb80LbHcu8AQR8qgAZZaNHCLyo2N+pxPsV7l+ivg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-endpoint": "^3.2.4",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1133,9 +1133,9 @@
}
},
"node_modules/@smithy/types": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.1.tgz",
- "integrity": "sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.2.tgz",
+ "integrity": "sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -1146,14 +1146,14 @@
}
},
"node_modules/@smithy/url-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.10.tgz",
- "integrity": "sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.11.tgz",
+ "integrity": "sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/querystring-parser": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/querystring-parser": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -1223,15 +1223,15 @@
}
},
"node_modules/@smithy/util-defaults-mode-browser": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.28.tgz",
- "integrity": "sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.30.tgz",
+ "integrity": "sha512-nLuGmgfcr0gzm64pqF2UT4SGWVG8UGviAdayDlVzJPNa6Z4lqvpDzdRXmLxtOdEjVlTOEdpZ9dd3ZMMu488mzg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
},
@@ -1240,18 +1240,18 @@
}
},
"node_modules/@smithy/util-defaults-mode-node": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.28.tgz",
- "integrity": "sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.30.tgz",
+ "integrity": "sha512-OD63eWoH68vp75mYcfYyuVH+p7Li/mY4sYOROnauDrtObo1cS4uWfsy/zhOTW8F8ZPxQC1ZXZKVxoxvMGUv2Ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/credential-provider-imds": "^3.2.7",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1259,14 +1259,14 @@
}
},
"node_modules/@smithy/util-endpoints": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.6.tgz",
- "integrity": "sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.7.tgz",
+ "integrity": "sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1287,13 +1287,13 @@
}
},
"node_modules/@smithy/util-middleware": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.10.tgz",
- "integrity": "sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.11.tgz",
+ "integrity": "sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1301,14 +1301,14 @@
}
},
"node_modules/@smithy/util-retry": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.10.tgz",
- "integrity": "sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.11.tgz",
+ "integrity": "sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1316,15 +1316,15 @@
}
},
"node_modules/@smithy/util-stream": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.1.tgz",
- "integrity": "sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.2.tgz",
+ "integrity": "sha512-sInAqdiVeisUGYAv/FrXpmJ0b4WTFmciTRqzhb7wVuem9BHvhIG7tpiYHLDWrl2stOokNZpTTGqz3mzB2qFwXg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/types": "^3.7.1",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-hex-encoding": "^3.0.0",
@@ -1363,9 +1363,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
@@ -1503,16 +1503,44 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
- "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.1"
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz",
+ "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "get-intrinsic": "^1.2.5"
},
"engines": {
"node": ">= 0.4"
@@ -1602,6 +1630,20 @@
"npm": "1.2.8000 || >= 1.4.16"
}
},
+ "node_modules/dunder-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz",
+ "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -1618,13 +1660,10 @@
}
},
"node_modules/es-define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
- "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.4"
- },
"engines": {
"node": ">= 0.4"
}
@@ -1638,6 +1677,18 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-object-atoms": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -1654,9 +1705,9 @@
}
},
"node_modules/express": {
- "version": "4.21.1",
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
- "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
"dependencies": {
"accepts": "~1.3.8",
@@ -1678,7 +1729,7 @@
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
- "path-to-regexp": "0.1.10",
+ "path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
@@ -1693,6 +1744,10 @@
},
"engines": {
"node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/fast-xml-parser": {
@@ -1770,16 +1825,21 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
- "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
+ "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"license": "MIT",
"dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "dunder-proto": "^1.0.0",
+ "es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
- "has-proto": "^1.0.1",
- "has-symbols": "^1.0.3",
- "hasown": "^2.0.0"
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -1789,12 +1849,12 @@
}
},
"node_modules/gopd": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
- "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.3"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -1812,22 +1872,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/has-proto": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
- "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -1930,6 +1978,15 @@
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
"license": "MIT"
},
+ "node_modules/math-intrinsics": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
+ "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -2074,9 +2131,9 @@
}
},
"node_modules/path-to-regexp": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
- "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
"license": "MIT"
},
"node_modules/proxy-addr": {
@@ -2244,15 +2301,69 @@
"license": "ISC"
},
"node_modules/side-channel": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
- "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"license": "MIT",
"dependencies": {
- "call-bind": "^1.0.7",
"es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.4",
- "object-inspect": "^1.13.1"
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
diff --git a/src/telegraf-listener/index.js b/src/telegraf-listener/index.js
index 4cb2b3fa..3071c328 100644
--- a/src/telegraf-listener/index.js
+++ b/src/telegraf-listener/index.js
@@ -174,27 +174,27 @@ const processMessageJSON = function (data) {
grouping += addGrpIfNotEmpty(data.tags?.group3)
// add other tags to grouping, when group2 or group3 are not defined
- if (!data.tags.group2 || !data.tags.group3 )
- for (var [key, val] of Object.entries(data.tags)) {
- if (
- ![
- 'instance',
- // 'objectname',
- 'host',
- 'hostname',
- 'node_type',
- 'rs_name',
- 'topic',
- 'group1',
- 'group2',
- 'group3',
- ].includes(key)
- )
- if (val !== '' && grouping.indexOf(val) === -1) {
- grouping += `${val}${grpSep}`
- // ungroupedDescription += `${value}${grpSep}`
- }
- }
+ if (!data.tags.group2 || !data.tags.group3)
+ for (var [key, val] of Object.entries(data.tags)) {
+ if (
+ ![
+ 'instance',
+ // 'objectname',
+ 'host',
+ 'hostname',
+ 'node_type',
+ 'rs_name',
+ 'topic',
+ 'group1',
+ 'group2',
+ 'group3',
+ ].includes(key)
+ )
+ if (val !== '' && grouping.indexOf(val) === -1) {
+ grouping += `${val}${grpSep}`
+ // ungroupedDescription += `${value}${grpSep}`
+ }
+ }
// add instance if exists
if (data.tags?.instance != '') {
@@ -346,8 +346,12 @@ if (
let newTag = rtData(data)
if (logLevel >= LogLevelDetailed)
console.log('Tag not found, will create: ' + data.tag)
- let resIns = await collection.insertOne(newTag)
- if (resIns.acknowledged) ListCreatedTags.push(data.tag)
+ try {
+ let resIns = await collection.insertOne(newTag)
+ if (resIns.acknowledged) ListCreatedTags.push(data.tag)
+ } catch (e) {
+ console.log('Error on insert: ' + e)
+ }
} else {
// found (already exists, no need to create), just list as created
ListCreatedTags.push(data.tag)
diff --git a/src/telegraf-listener/package-lock.json b/src/telegraf-listener/package-lock.json
index 2ce7d098..63f44d42 100644
--- a/src/telegraf-listener/package-lock.json
+++ b/src/telegraf-listener/package-lock.json
@@ -150,51 +150,51 @@
}
},
"node_modules/@aws-sdk/client-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-9tFt+we6AIvj/f1+nrLHuCWcQmyfux5gcBSOy9d9+zIG56YxGEX7S9TaZnybogpVV8A0BYWml36WvIHS9QjIpA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-Xb+6S5QzFhKin9gOIKjvFhvP13AffH5oq0v/e0yQO0JckSLuph9+du/CHcobPqkxJpzyreeDltD7+Yu/l9RmIg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -203,48 +203,48 @@
}
},
"node_modules/@aws-sdk/client-sso": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.696.0.tgz",
- "integrity": "sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.712.0.tgz",
+ "integrity": "sha512-tBo/eW3YpZ9f3Q1qA7aA8uliNFJJX0OP7R2IUJ8t6rqVTk15wWCEPNmXzUZKgruDnKUfCaF4+r9q/Yy4fBc9PA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -253,49 +253,49 @@
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.699.0.tgz",
- "integrity": "sha512-u8a1GorY5D1l+4FQAf4XBUC1T10/t7neuwT21r0ymrtMFSK2a9QqVHKMoLkvavAwyhJnARSBM9/UQC797PFOFw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.712.0.tgz",
+ "integrity": "sha512-xNFrG9syrG6pxUP7Ld/nu3afQ9+rbJM9qrE+wDNz4VnNZ3vLiJty4fH85zBFhOQ5OF2DIJTWsFzXGi2FYjsCMA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -303,54 +303,54 @@
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/client-sts": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.699.0.tgz",
- "integrity": "sha512-++lsn4x2YXsZPIzFVwv3fSUVM55ZT0WRFmPeNilYIhZClxHLmVAWKH4I55cY9ry60/aTKYjzOXkWwyBKGsGvQg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.712.0.tgz",
+ "integrity": "sha512-gIO6BD+hkEe3GKQhbiFP0zcNQv0EkP1Cl9SOstxS+X9CeudEgVX/xEPUjyoFVkfkntPBJ1g0I1u5xOzzRExl4g==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -359,21 +359,21 @@
}
},
"node_modules/@aws-sdk/core": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.696.0.tgz",
- "integrity": "sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.709.0.tgz",
+ "integrity": "sha512-7kuSpzdOTAE026j85wq/fN9UDZ70n0OHw81vFqMWwlEFtm5IQ/MRCLKcC4HkXxTdfy1PqFlmoXxWqeBa15tujw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/signature-v4": "^4.2.2",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/signature-v4": "^4.2.4",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
@@ -382,16 +382,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-iuaTnudaBfEET+o444sDwf71Awe6UiZfH+ipUPmswAi2jZDwdFF1nxMKDEKL8/LV5WpXsdKSfwgS0RQeupURew==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-sUUaw4PK9LQNGGytVpz659w4rWwdhfsZ4AMns0smnWfNVmmDAOtDMUTzNUxYmXhWt4+iS4cXfQqmUAdKqIhlsw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -399,16 +399,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-env": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.696.0.tgz",
- "integrity": "sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.709.0.tgz",
+ "integrity": "sha512-ZMAp9LSikvHDFVa84dKpQmow6wsg956Um20cKuioPpX2GGreJFur7oduD+tRJT6FtIOHn+64YH+0MwiXLhsaIQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -416,21 +416,21 @@
}
},
"node_modules/@aws-sdk/credential-provider-http": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.696.0.tgz",
- "integrity": "sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.709.0.tgz",
+ "integrity": "sha512-lIS7XLwCOyJnLD70f+VIRr8DNV1HPQe9oN6aguYrhoczqz7vDiVZLe3lh714cJqq9rdxzFypK5DqKHmcscMEPQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -438,50 +438,50 @@
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.699.0.tgz",
- "integrity": "sha512-dXmCqjJnKmG37Q+nLjPVu22mNkrGHY8hYoOt3Jo9R2zr5MYV7s/NHsCHr+7E+BZ+tfZYLRPeB1wkpTeHiEcdRw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.712.0.tgz",
+ "integrity": "sha512-sTsdQ/Fm/suqMdpjhMuss/5uKL18vcuWnNTQVrG9iGNRqZLbq65MXquwbUpgzfoUmIcH+4CrY6H2ebpTIECIag==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.699.0.tgz",
- "integrity": "sha512-MmEmNDo1bBtTgRmdNfdQksXu4uXe66s0p1hi1YPrn1h59Q605eq/xiWbGL6/3KdkViH6eGUuABeV2ODld86ylg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.712.0.tgz",
+ "integrity": "sha512-gXrHymW3rMRYORkPVQwL8Gi5Lu92F16SoZR543x03qCi7rm00oL9tRD85ACxkhprS1Wh8lUIUMNoeiwnYWTNuQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -489,17 +489,17 @@
}
},
"node_modules/@aws-sdk/credential-provider-process": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.696.0.tgz",
- "integrity": "sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.709.0.tgz",
+ "integrity": "sha512-IAC+jPlGQII6jhIylHOwh3RgSobqlgL59nw2qYTURr8hMCI0Z1p5y2ee646HTVt4WeCYyzUAXfxr6YI/Vitv+Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -507,19 +507,19 @@
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.699.0.tgz",
- "integrity": "sha512-Ekp2cZG4pl9D8+uKWm4qO1xcm8/MeiI8f+dnlZm8aQzizeC+aXYy9GyoclSf6daK8KfRPiRfM7ZHBBL5dAfdMA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.712.0.tgz",
+ "integrity": "sha512-8lCMxY7Lb9VK9qdlNXRJXE3W1UDVURnJZ3a4XWYNY6yr1TfQaN40mMyXX1oNlXXJtMV0szRvjM8dZj37E/ESAw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/token-providers": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/token-providers": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -527,48 +527,48 @@
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.696.0.tgz",
- "integrity": "sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.709.0.tgz",
+ "integrity": "sha512-2lbDfE0IQ6gma/7BB2JpkjW5G0wGe4AS0x80oybYAYYviJmUtIR3Cn2pXun6bnAWElt4wYKl4su7oC36rs5rNA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.696.0"
+ "@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/credential-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.699.0.tgz",
- "integrity": "sha512-jBjOntl9zN9Nvb0jmbMGRbiTzemDz64ij7W6BDavxBJRZpRoNeN0QCz6RolkCyXnyUJjo5mF2unY2wnv00A+LQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.712.0.tgz",
+ "integrity": "sha512-7U/pIx1T2IjysoskFRglZAThoxewKw6HoZS/SJT3hLusa/uuYuno1Y1nmCr0ojsl9NB7Jm4PIK3yJUZDDgy+Ng==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-cognito-identity": "3.699.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-cognito-identity": "3.712.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -576,15 +576,15 @@
}
},
"node_modules/@aws-sdk/middleware-host-header": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.696.0.tgz",
- "integrity": "sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.709.0.tgz",
+ "integrity": "sha512-8gQYCYAaIw4lOCd5WYdf15Y/61MgRsAnrb2eiTl+icMlUOOzl8aOl5iDwm/Idp0oHZTflwxM4XSvGXO83PRWcw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -592,14 +592,14 @@
}
},
"node_modules/@aws-sdk/middleware-logger": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.696.0.tgz",
- "integrity": "sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.709.0.tgz",
+ "integrity": "sha512-jDoGSccXv9zebnpUoisjWd5u5ZPIalrmm6TjvPzZ8UqzQt3Beiz0tnQwmxQD6KRc7ADweWP5Ntiqzbw9xpVajg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -607,15 +607,15 @@
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.696.0.tgz",
- "integrity": "sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.709.0.tgz",
+ "integrity": "sha512-PObL/wLr4lkfbQ0yXUWaoCWu/jcwfwZzCjsUiXW/H6hW9b/00enZxmx7OhtJYaR6xmh/Lcx5wbhIoDCbzdv0tw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -623,18 +623,18 @@
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.696.0.tgz",
- "integrity": "sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.709.0.tgz",
+ "integrity": "sha512-ooc9ZJvgkjPhi9q05XwSfNTXkEBEIfL4hleo5rQBKwHG3aTHvwOM7LLzhdX56QZVa6sorPBp6fwULuRDSqiQHw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -642,17 +642,17 @@
}
},
"node_modules/@aws-sdk/region-config-resolver": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.696.0.tgz",
- "integrity": "sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.709.0.tgz",
+ "integrity": "sha512-/NoCAMEVKAg3kBKOrNtgOfL+ECt6nrl+L7q2SyYmrcY4tVCmwuECVqewQaHc03fTnJijfKLccw0Fj+6wOCnB6w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -660,33 +660,33 @@
}
},
"node_modules/@aws-sdk/token-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.699.0.tgz",
- "integrity": "sha512-kuiEW9DWs7fNos/SM+y58HCPhcIzm1nEZLhe2/7/6+TvAYLuEWURYsbK48gzsxXlaJ2k/jGY3nIsA7RptbMOwA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.709.0.tgz",
+ "integrity": "sha512-q5Ar6k71nci43IbULFgC8a89d/3EHpmd7HvBzqVGRcHnoPwh8eZDBfbBXKH83NGwcS1qPSRYiDbVfeWPm4/1jA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sso-oidc": "^3.699.0"
+ "@aws-sdk/client-sso-oidc": "^3.709.0"
}
},
"node_modules/@aws-sdk/types": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.696.0.tgz",
- "integrity": "sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.709.0.tgz",
+ "integrity": "sha512-ArtLTMxgjf13Kfu3gWH3Ez9Q5TkDdcRZUofpKH3pMGB/C6KAbeSCtIIDKfoRTUABzyGlPyCrZdnFjKyH+ypIpg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -694,15 +694,15 @@
}
},
"node_modules/@aws-sdk/util-endpoints": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.696.0.tgz",
- "integrity": "sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.709.0.tgz",
+ "integrity": "sha512-Mbc7AtL5WGCTKC16IGeUTz+sjpC3ptBda2t0CcK0kMVw3THDdcSq6ZlNKO747cNqdbwUvW34oHteUiHv4/z88Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
- "@smithy/util-endpoints": "^2.1.6",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-endpoints": "^2.1.7",
"tslib": "^2.6.2"
},
"engines": {
@@ -723,29 +723,29 @@
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.696.0.tgz",
- "integrity": "sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.709.0.tgz",
+ "integrity": "sha512-/rL2GasJzdTWUURCQKFldw2wqBtY4k4kCiA2tVZSKg3y4Ey7zO34SW8ebaeCE2/xoWOyLR2/etdKyphoo4Zrtg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.696.0.tgz",
- "integrity": "sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.712.0.tgz",
+ "integrity": "sha512-26X21bZ4FWsVpqs33uOXiB60TOWQdVlr7T7XONDFL/XN7GEpUJkWuuIB4PTok6VOmh1viYcdxZQqekXPuzXexQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -771,13 +771,13 @@
}
},
"node_modules/@smithy/abort-controller": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.8.tgz",
- "integrity": "sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==",
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.9.tgz",
+ "integrity": "sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -785,16 +785,16 @@
}
},
"node_modules/@smithy/config-resolver": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.12.tgz",
- "integrity": "sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.13.tgz",
+ "integrity": "sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -802,18 +802,18 @@
}
},
"node_modules/@smithy/core": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.4.tgz",
- "integrity": "sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==",
+ "version": "2.5.5",
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.5.tgz",
+ "integrity": "sha512-G8G/sDDhXA7o0bOvkc7bgai6POuSld/+XhNnWAbpQTpLv2OZPvyqQ58tLPPlz0bSNsXktldDDREIv1LczFeNEw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-body-length-browser": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -822,16 +822,16 @@
}
},
"node_modules/@smithy/credential-provider-imds": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.7.tgz",
- "integrity": "sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==",
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.8.tgz",
+ "integrity": "sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -839,27 +839,27 @@
}
},
"node_modules/@smithy/fetch-http-handler": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.1.tgz",
- "integrity": "sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.2.tgz",
+ "integrity": "sha512-R7rU7Ae3ItU4rC0c5mB2sP5mJNbCfoDc8I5XlYjIZnquyUwec7fEo78F6DA3SmgJgkU1qTMcZJuGblxZsl10ZA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@smithy/hash-node": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.10.tgz",
- "integrity": "sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.11.tgz",
+ "integrity": "sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -869,13 +869,13 @@
}
},
"node_modules/@smithy/invalid-dependency": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.10.tgz",
- "integrity": "sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.11.tgz",
+ "integrity": "sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -893,14 +893,14 @@
}
},
"node_modules/@smithy/middleware-content-length": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.12.tgz",
- "integrity": "sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.13.tgz",
+ "integrity": "sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -908,19 +908,19 @@
}
},
"node_modules/@smithy/middleware-endpoint": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.4.tgz",
- "integrity": "sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.5.tgz",
+ "integrity": "sha512-VhJNs/s/lyx4weiZdXSloBgoLoS8osV0dKIain8nGmx7of3QFKu5BSdEuk1z/U8x9iwes1i+XCiNusEvuK1ijg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -928,19 +928,19 @@
}
},
"node_modules/@smithy/middleware-retry": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.28.tgz",
- "integrity": "sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.30.tgz",
+ "integrity": "sha512-6323RL2BvAR3VQpTjHpa52kH/iSHyxd/G9ohb2MkBk2Ucu+oMtRXT8yi7KTSIS9nb58aupG6nO0OlXnQOAcvmQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
@@ -949,13 +949,13 @@
}
},
"node_modules/@smithy/middleware-serde": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.10.tgz",
- "integrity": "sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.11.tgz",
+ "integrity": "sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -963,13 +963,13 @@
}
},
"node_modules/@smithy/middleware-stack": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.10.tgz",
- "integrity": "sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.11.tgz",
+ "integrity": "sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -977,15 +977,15 @@
}
},
"node_modules/@smithy/node-config-provider": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.11.tgz",
- "integrity": "sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.12.tgz",
+ "integrity": "sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -993,16 +993,16 @@
}
},
"node_modules/@smithy/node-http-handler": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.1.tgz",
- "integrity": "sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.2.tgz",
+ "integrity": "sha512-t4ng1DAd527vlxvOfKFYEe6/QFBcsj7WpNlWTyjorwXXcKw3XlltBGbyHfSJ24QT84nF+agDha9tNYpzmSRZPA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/abort-controller": "^3.1.8",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/abort-controller": "^3.1.9",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1010,13 +1010,13 @@
}
},
"node_modules/@smithy/property-provider": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.10.tgz",
- "integrity": "sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==",
+ "version": "3.1.11",
+ "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.11.tgz",
+ "integrity": "sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1024,13 +1024,13 @@
}
},
"node_modules/@smithy/protocol-http": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.7.tgz",
- "integrity": "sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==",
+ "version": "4.1.8",
+ "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.8.tgz",
+ "integrity": "sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1038,13 +1038,13 @@
}
},
"node_modules/@smithy/querystring-builder": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.10.tgz",
- "integrity": "sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.11.tgz",
+ "integrity": "sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-uri-escape": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -1053,13 +1053,13 @@
}
},
"node_modules/@smithy/querystring-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.10.tgz",
- "integrity": "sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.11.tgz",
+ "integrity": "sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1067,26 +1067,26 @@
}
},
"node_modules/@smithy/service-error-classification": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.10.tgz",
- "integrity": "sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.11.tgz",
+ "integrity": "sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1"
+ "@smithy/types": "^3.7.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@smithy/shared-ini-file-loader": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.11.tgz",
- "integrity": "sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.12.tgz",
+ "integrity": "sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1094,17 +1094,17 @@
}
},
"node_modules/@smithy/signature-v4": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.3.tgz",
- "integrity": "sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==",
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.4.tgz",
+ "integrity": "sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@smithy/is-array-buffer": "^3.0.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-hex-encoding": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"@smithy/util-uri-escape": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -1114,18 +1114,18 @@
}
},
"node_modules/@smithy/smithy-client": {
- "version": "3.4.5",
- "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.5.tgz",
- "integrity": "sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==",
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.5.0.tgz",
+ "integrity": "sha512-Y8FeOa7gbDfCWf7njrkoRATPa5eNLUEjlJS5z5rXatYuGkCb80LbHcu8AQR8qgAZZaNHCLyo2N+pxPsV7l+ivg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-endpoint": "^3.2.4",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1133,9 +1133,9 @@
}
},
"node_modules/@smithy/types": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.1.tgz",
- "integrity": "sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.2.tgz",
+ "integrity": "sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -1146,14 +1146,14 @@
}
},
"node_modules/@smithy/url-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.10.tgz",
- "integrity": "sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.11.tgz",
+ "integrity": "sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/querystring-parser": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/querystring-parser": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -1223,15 +1223,15 @@
}
},
"node_modules/@smithy/util-defaults-mode-browser": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.28.tgz",
- "integrity": "sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.30.tgz",
+ "integrity": "sha512-nLuGmgfcr0gzm64pqF2UT4SGWVG8UGviAdayDlVzJPNa6Z4lqvpDzdRXmLxtOdEjVlTOEdpZ9dd3ZMMu488mzg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
},
@@ -1240,18 +1240,18 @@
}
},
"node_modules/@smithy/util-defaults-mode-node": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.28.tgz",
- "integrity": "sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.30.tgz",
+ "integrity": "sha512-OD63eWoH68vp75mYcfYyuVH+p7Li/mY4sYOROnauDrtObo1cS4uWfsy/zhOTW8F8ZPxQC1ZXZKVxoxvMGUv2Ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/credential-provider-imds": "^3.2.7",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1259,14 +1259,14 @@
}
},
"node_modules/@smithy/util-endpoints": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.6.tgz",
- "integrity": "sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.7.tgz",
+ "integrity": "sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1287,13 +1287,13 @@
}
},
"node_modules/@smithy/util-middleware": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.10.tgz",
- "integrity": "sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.11.tgz",
+ "integrity": "sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1301,14 +1301,14 @@
}
},
"node_modules/@smithy/util-retry": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.10.tgz",
- "integrity": "sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.11.tgz",
+ "integrity": "sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1316,15 +1316,15 @@
}
},
"node_modules/@smithy/util-stream": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.1.tgz",
- "integrity": "sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.2.tgz",
+ "integrity": "sha512-sInAqdiVeisUGYAv/FrXpmJ0b4WTFmciTRqzhb7wVuem9BHvhIG7tpiYHLDWrl2stOokNZpTTGqz3mzB2qFwXg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/types": "^3.7.1",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-hex-encoding": "^3.0.0",
@@ -1363,9 +1363,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
diff --git a/src/updateUser/package-lock.json b/src/updateUser/package-lock.json
index 56ef02ff..c7ee66db 100644
--- a/src/updateUser/package-lock.json
+++ b/src/updateUser/package-lock.json
@@ -149,51 +149,51 @@
}
},
"node_modules/@aws-sdk/client-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-9tFt+we6AIvj/f1+nrLHuCWcQmyfux5gcBSOy9d9+zIG56YxGEX7S9TaZnybogpVV8A0BYWml36WvIHS9QjIpA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-Xb+6S5QzFhKin9gOIKjvFhvP13AffH5oq0v/e0yQO0JckSLuph9+du/CHcobPqkxJpzyreeDltD7+Yu/l9RmIg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -202,48 +202,48 @@
}
},
"node_modules/@aws-sdk/client-sso": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.696.0.tgz",
- "integrity": "sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.712.0.tgz",
+ "integrity": "sha512-tBo/eW3YpZ9f3Q1qA7aA8uliNFJJX0OP7R2IUJ8t6rqVTk15wWCEPNmXzUZKgruDnKUfCaF4+r9q/Yy4fBc9PA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -252,49 +252,49 @@
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.699.0.tgz",
- "integrity": "sha512-u8a1GorY5D1l+4FQAf4XBUC1T10/t7neuwT21r0ymrtMFSK2a9QqVHKMoLkvavAwyhJnARSBM9/UQC797PFOFw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.712.0.tgz",
+ "integrity": "sha512-xNFrG9syrG6pxUP7Ld/nu3afQ9+rbJM9qrE+wDNz4VnNZ3vLiJty4fH85zBFhOQ5OF2DIJTWsFzXGi2FYjsCMA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -302,54 +302,54 @@
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/client-sts": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.699.0.tgz",
- "integrity": "sha512-++lsn4x2YXsZPIzFVwv3fSUVM55ZT0WRFmPeNilYIhZClxHLmVAWKH4I55cY9ry60/aTKYjzOXkWwyBKGsGvQg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.712.0.tgz",
+ "integrity": "sha512-gIO6BD+hkEe3GKQhbiFP0zcNQv0EkP1Cl9SOstxS+X9CeudEgVX/xEPUjyoFVkfkntPBJ1g0I1u5xOzzRExl4g==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
- "@aws-sdk/client-sso-oidc": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/middleware-host-header": "3.696.0",
- "@aws-sdk/middleware-logger": "3.696.0",
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/region-config-resolver": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@aws-sdk/util-user-agent-browser": "3.696.0",
- "@aws-sdk/util-user-agent-node": "3.696.0",
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/core": "^2.5.3",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/hash-node": "^3.0.10",
- "@smithy/invalid-dependency": "^3.0.10",
- "@smithy/middleware-content-length": "^3.0.12",
- "@smithy/middleware-endpoint": "^3.2.3",
- "@smithy/middleware-retry": "^3.0.27",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@aws-sdk/client-sso-oidc": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/middleware-host-header": "3.709.0",
+ "@aws-sdk/middleware-logger": "3.709.0",
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/region-config-resolver": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
+ "@aws-sdk/util-user-agent-node": "3.712.0",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/core": "^2.5.5",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/hash-node": "^3.0.11",
+ "@smithy/invalid-dependency": "^3.0.11",
+ "@smithy/middleware-content-length": "^3.0.13",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-retry": "^3.0.30",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
- "@smithy/util-defaults-mode-browser": "^3.0.27",
- "@smithy/util-defaults-mode-node": "^3.0.27",
- "@smithy/util-endpoints": "^2.1.6",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
+ "@smithy/util-defaults-mode-node": "^3.0.30",
+ "@smithy/util-endpoints": "^2.1.7",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -358,21 +358,21 @@
}
},
"node_modules/@aws-sdk/core": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.696.0.tgz",
- "integrity": "sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.709.0.tgz",
+ "integrity": "sha512-7kuSpzdOTAE026j85wq/fN9UDZ70n0OHw81vFqMWwlEFtm5IQ/MRCLKcC4HkXxTdfy1PqFlmoXxWqeBa15tujw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/signature-v4": "^4.2.2",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/signature-v4": "^4.2.4",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
@@ -381,16 +381,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-cognito-identity": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.699.0.tgz",
- "integrity": "sha512-iuaTnudaBfEET+o444sDwf71Awe6UiZfH+ipUPmswAi2jZDwdFF1nxMKDEKL8/LV5WpXsdKSfwgS0RQeupURew==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.712.0.tgz",
+ "integrity": "sha512-sUUaw4PK9LQNGGytVpz659w4rWwdhfsZ4AMns0smnWfNVmmDAOtDMUTzNUxYmXhWt4+iS4cXfQqmUAdKqIhlsw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -398,16 +398,16 @@
}
},
"node_modules/@aws-sdk/credential-provider-env": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.696.0.tgz",
- "integrity": "sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.709.0.tgz",
+ "integrity": "sha512-ZMAp9LSikvHDFVa84dKpQmow6wsg956Um20cKuioPpX2GGreJFur7oduD+tRJT6FtIOHn+64YH+0MwiXLhsaIQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -415,21 +415,21 @@
}
},
"node_modules/@aws-sdk/credential-provider-http": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.696.0.tgz",
- "integrity": "sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.709.0.tgz",
+ "integrity": "sha512-lIS7XLwCOyJnLD70f+VIRr8DNV1HPQe9oN6aguYrhoczqz7vDiVZLe3lh714cJqq9rdxzFypK5DqKHmcscMEPQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/smithy-client": "^3.4.4",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -437,50 +437,50 @@
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.699.0.tgz",
- "integrity": "sha512-dXmCqjJnKmG37Q+nLjPVu22mNkrGHY8hYoOt3Jo9R2zr5MYV7s/NHsCHr+7E+BZ+tfZYLRPeB1wkpTeHiEcdRw==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.712.0.tgz",
+ "integrity": "sha512-sTsdQ/Fm/suqMdpjhMuss/5uKL18vcuWnNTQVrG9iGNRqZLbq65MXquwbUpgzfoUmIcH+4CrY6H2ebpTIECIag==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.699.0"
+ "@aws-sdk/client-sts": "^3.712.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.699.0.tgz",
- "integrity": "sha512-MmEmNDo1bBtTgRmdNfdQksXu4uXe66s0p1hi1YPrn1h59Q605eq/xiWbGL6/3KdkViH6eGUuABeV2ODld86ylg==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.712.0.tgz",
+ "integrity": "sha512-gXrHymW3rMRYORkPVQwL8Gi5Lu92F16SoZR543x03qCi7rm00oL9tRD85ACxkhprS1Wh8lUIUMNoeiwnYWTNuQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -488,17 +488,17 @@
}
},
"node_modules/@aws-sdk/credential-provider-process": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.696.0.tgz",
- "integrity": "sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.709.0.tgz",
+ "integrity": "sha512-IAC+jPlGQII6jhIylHOwh3RgSobqlgL59nw2qYTURr8hMCI0Z1p5y2ee646HTVt4WeCYyzUAXfxr6YI/Vitv+Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -506,19 +506,19 @@
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.699.0.tgz",
- "integrity": "sha512-Ekp2cZG4pl9D8+uKWm4qO1xcm8/MeiI8f+dnlZm8aQzizeC+aXYy9GyoclSf6daK8KfRPiRfM7ZHBBL5dAfdMA==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.712.0.tgz",
+ "integrity": "sha512-8lCMxY7Lb9VK9qdlNXRJXE3W1UDVURnJZ3a4XWYNY6yr1TfQaN40mMyXX1oNlXXJtMV0szRvjM8dZj37E/ESAw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/token-providers": "3.699.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/token-providers": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -526,48 +526,48 @@
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.696.0.tgz",
- "integrity": "sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.709.0.tgz",
+ "integrity": "sha512-2lbDfE0IQ6gma/7BB2JpkjW5G0wGe4AS0x80oybYAYYviJmUtIR3Cn2pXun6bnAWElt4wYKl4su7oC36rs5rNA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sts": "^3.696.0"
+ "@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/credential-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.699.0.tgz",
- "integrity": "sha512-jBjOntl9zN9Nvb0jmbMGRbiTzemDz64ij7W6BDavxBJRZpRoNeN0QCz6RolkCyXnyUJjo5mF2unY2wnv00A+LQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.712.0.tgz",
+ "integrity": "sha512-7U/pIx1T2IjysoskFRglZAThoxewKw6HoZS/SJT3hLusa/uuYuno1Y1nmCr0ojsl9NB7Jm4PIK3yJUZDDgy+Ng==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/client-cognito-identity": "3.699.0",
- "@aws-sdk/client-sso": "3.696.0",
- "@aws-sdk/client-sts": "3.699.0",
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/credential-provider-cognito-identity": "3.699.0",
- "@aws-sdk/credential-provider-env": "3.696.0",
- "@aws-sdk/credential-provider-http": "3.696.0",
- "@aws-sdk/credential-provider-ini": "3.699.0",
- "@aws-sdk/credential-provider-node": "3.699.0",
- "@aws-sdk/credential-provider-process": "3.696.0",
- "@aws-sdk/credential-provider-sso": "3.699.0",
- "@aws-sdk/credential-provider-web-identity": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/credential-provider-imds": "^3.2.6",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/client-cognito-identity": "3.712.0",
+ "@aws-sdk/client-sso": "3.712.0",
+ "@aws-sdk/client-sts": "3.712.0",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/credential-provider-cognito-identity": "3.712.0",
+ "@aws-sdk/credential-provider-env": "3.709.0",
+ "@aws-sdk/credential-provider-http": "3.709.0",
+ "@aws-sdk/credential-provider-ini": "3.712.0",
+ "@aws-sdk/credential-provider-node": "3.712.0",
+ "@aws-sdk/credential-provider-process": "3.709.0",
+ "@aws-sdk/credential-provider-sso": "3.712.0",
+ "@aws-sdk/credential-provider-web-identity": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -575,15 +575,15 @@
}
},
"node_modules/@aws-sdk/middleware-host-header": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.696.0.tgz",
- "integrity": "sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.709.0.tgz",
+ "integrity": "sha512-8gQYCYAaIw4lOCd5WYdf15Y/61MgRsAnrb2eiTl+icMlUOOzl8aOl5iDwm/Idp0oHZTflwxM4XSvGXO83PRWcw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -591,14 +591,14 @@
}
},
"node_modules/@aws-sdk/middleware-logger": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.696.0.tgz",
- "integrity": "sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.709.0.tgz",
+ "integrity": "sha512-jDoGSccXv9zebnpUoisjWd5u5ZPIalrmm6TjvPzZ8UqzQt3Beiz0tnQwmxQD6KRc7ADweWP5Ntiqzbw9xpVajg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -606,15 +606,15 @@
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.696.0.tgz",
- "integrity": "sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.709.0.tgz",
+ "integrity": "sha512-PObL/wLr4lkfbQ0yXUWaoCWu/jcwfwZzCjsUiXW/H6hW9b/00enZxmx7OhtJYaR6xmh/Lcx5wbhIoDCbzdv0tw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -622,18 +622,18 @@
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.696.0.tgz",
- "integrity": "sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.709.0.tgz",
+ "integrity": "sha512-ooc9ZJvgkjPhi9q05XwSfNTXkEBEIfL4hleo5rQBKwHG3aTHvwOM7LLzhdX56QZVa6sorPBp6fwULuRDSqiQHw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/core": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@aws-sdk/util-endpoints": "3.696.0",
- "@smithy/core": "^2.5.3",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/core": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@aws-sdk/util-endpoints": "3.709.0",
+ "@smithy/core": "^2.5.5",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -641,17 +641,17 @@
}
},
"node_modules/@aws-sdk/region-config-resolver": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.696.0.tgz",
- "integrity": "sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.709.0.tgz",
+ "integrity": "sha512-/NoCAMEVKAg3kBKOrNtgOfL+ECt6nrl+L7q2SyYmrcY4tVCmwuECVqewQaHc03fTnJijfKLccw0Fj+6wOCnB6w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -659,33 +659,33 @@
}
},
"node_modules/@aws-sdk/token-providers": {
- "version": "3.699.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.699.0.tgz",
- "integrity": "sha512-kuiEW9DWs7fNos/SM+y58HCPhcIzm1nEZLhe2/7/6+TvAYLuEWURYsbK48gzsxXlaJ2k/jGY3nIsA7RptbMOwA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.709.0.tgz",
+ "integrity": "sha512-q5Ar6k71nci43IbULFgC8a89d/3EHpmd7HvBzqVGRcHnoPwh8eZDBfbBXKH83NGwcS1qPSRYiDbVfeWPm4/1jA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/property-provider": "^3.1.9",
- "@smithy/shared-ini-file-loader": "^3.1.10",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
- "@aws-sdk/client-sso-oidc": "^3.699.0"
+ "@aws-sdk/client-sso-oidc": "^3.709.0"
}
},
"node_modules/@aws-sdk/types": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.696.0.tgz",
- "integrity": "sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.709.0.tgz",
+ "integrity": "sha512-ArtLTMxgjf13Kfu3gWH3Ez9Q5TkDdcRZUofpKH3pMGB/C6KAbeSCtIIDKfoRTUABzyGlPyCrZdnFjKyH+ypIpg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -693,15 +693,15 @@
}
},
"node_modules/@aws-sdk/util-endpoints": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.696.0.tgz",
- "integrity": "sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.709.0.tgz",
+ "integrity": "sha512-Mbc7AtL5WGCTKC16IGeUTz+sjpC3ptBda2t0CcK0kMVw3THDdcSq6ZlNKO747cNqdbwUvW34oHteUiHv4/z88Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
- "@smithy/util-endpoints": "^2.1.6",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-endpoints": "^2.1.7",
"tslib": "^2.6.2"
},
"engines": {
@@ -722,29 +722,29 @@
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.696.0.tgz",
- "integrity": "sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==",
+ "version": "3.709.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.709.0.tgz",
+ "integrity": "sha512-/rL2GasJzdTWUURCQKFldw2wqBtY4k4kCiA2tVZSKg3y4Ey7zO34SW8ebaeCE2/xoWOyLR2/etdKyphoo4Zrtg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/types": "3.696.0",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
- "version": "3.696.0",
- "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.696.0.tgz",
- "integrity": "sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==",
+ "version": "3.712.0",
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.712.0.tgz",
+ "integrity": "sha512-26X21bZ4FWsVpqs33uOXiB60TOWQdVlr7T7XONDFL/XN7GEpUJkWuuIB4PTok6VOmh1viYcdxZQqekXPuzXexQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@aws-sdk/middleware-user-agent": "3.696.0",
- "@aws-sdk/types": "3.696.0",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@aws-sdk/middleware-user-agent": "3.709.0",
+ "@aws-sdk/types": "3.709.0",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -770,13 +770,13 @@
}
},
"node_modules/@smithy/abort-controller": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.8.tgz",
- "integrity": "sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==",
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.9.tgz",
+ "integrity": "sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -784,16 +784,16 @@
}
},
"node_modules/@smithy/config-resolver": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.12.tgz",
- "integrity": "sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.13.tgz",
+ "integrity": "sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -801,18 +801,18 @@
}
},
"node_modules/@smithy/core": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.4.tgz",
- "integrity": "sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==",
+ "version": "2.5.5",
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.5.tgz",
+ "integrity": "sha512-G8G/sDDhXA7o0bOvkc7bgai6POuSld/+XhNnWAbpQTpLv2OZPvyqQ58tLPPlz0bSNsXktldDDREIv1LczFeNEw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-body-length-browser": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -821,16 +821,16 @@
}
},
"node_modules/@smithy/credential-provider-imds": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.7.tgz",
- "integrity": "sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==",
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.8.tgz",
+ "integrity": "sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -838,27 +838,27 @@
}
},
"node_modules/@smithy/fetch-http-handler": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.1.tgz",
- "integrity": "sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.2.tgz",
+ "integrity": "sha512-R7rU7Ae3ItU4rC0c5mB2sP5mJNbCfoDc8I5XlYjIZnquyUwec7fEo78F6DA3SmgJgkU1qTMcZJuGblxZsl10ZA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@smithy/hash-node": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.10.tgz",
- "integrity": "sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.11.tgz",
+ "integrity": "sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -868,13 +868,13 @@
}
},
"node_modules/@smithy/invalid-dependency": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.10.tgz",
- "integrity": "sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.11.tgz",
+ "integrity": "sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -892,14 +892,14 @@
}
},
"node_modules/@smithy/middleware-content-length": {
- "version": "3.0.12",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.12.tgz",
- "integrity": "sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==",
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.13.tgz",
+ "integrity": "sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -907,19 +907,19 @@
}
},
"node_modules/@smithy/middleware-endpoint": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.4.tgz",
- "integrity": "sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.5.tgz",
+ "integrity": "sha512-VhJNs/s/lyx4weiZdXSloBgoLoS8osV0dKIain8nGmx7of3QFKu5BSdEuk1z/U8x9iwes1i+XCiNusEvuK1ijg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-serde": "^3.0.10",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
- "@smithy/url-parser": "^3.0.10",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-serde": "^3.0.11",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
+ "@smithy/url-parser": "^3.0.11",
+ "@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
@@ -927,19 +927,19 @@
}
},
"node_modules/@smithy/middleware-retry": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.28.tgz",
- "integrity": "sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.30.tgz",
+ "integrity": "sha512-6323RL2BvAR3VQpTjHpa52kH/iSHyxd/G9ohb2MkBk2Ucu+oMtRXT8yi7KTSIS9nb58aupG6nO0OlXnQOAcvmQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
- "@smithy/util-middleware": "^3.0.10",
- "@smithy/util-retry": "^3.0.10",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-middleware": "^3.0.11",
+ "@smithy/util-retry": "^3.0.11",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
@@ -948,13 +948,13 @@
}
},
"node_modules/@smithy/middleware-serde": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.10.tgz",
- "integrity": "sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.11.tgz",
+ "integrity": "sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -962,13 +962,13 @@
}
},
"node_modules/@smithy/middleware-stack": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.10.tgz",
- "integrity": "sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.11.tgz",
+ "integrity": "sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -976,15 +976,15 @@
}
},
"node_modules/@smithy/node-config-provider": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.11.tgz",
- "integrity": "sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.12.tgz",
+ "integrity": "sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/shared-ini-file-loader": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/shared-ini-file-loader": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -992,16 +992,16 @@
}
},
"node_modules/@smithy/node-http-handler": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.1.tgz",
- "integrity": "sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.3.2.tgz",
+ "integrity": "sha512-t4ng1DAd527vlxvOfKFYEe6/QFBcsj7WpNlWTyjorwXXcKw3XlltBGbyHfSJ24QT84nF+agDha9tNYpzmSRZPA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/abort-controller": "^3.1.8",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/querystring-builder": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/abort-controller": "^3.1.9",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/querystring-builder": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1009,13 +1009,13 @@
}
},
"node_modules/@smithy/property-provider": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.10.tgz",
- "integrity": "sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==",
+ "version": "3.1.11",
+ "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.11.tgz",
+ "integrity": "sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1023,13 +1023,13 @@
}
},
"node_modules/@smithy/protocol-http": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.7.tgz",
- "integrity": "sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==",
+ "version": "4.1.8",
+ "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.8.tgz",
+ "integrity": "sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1037,13 +1037,13 @@
}
},
"node_modules/@smithy/querystring-builder": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.10.tgz",
- "integrity": "sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.11.tgz",
+ "integrity": "sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"@smithy/util-uri-escape": "^3.0.0",
"tslib": "^2.6.2"
},
@@ -1052,13 +1052,13 @@
}
},
"node_modules/@smithy/querystring-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.10.tgz",
- "integrity": "sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.11.tgz",
+ "integrity": "sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1066,26 +1066,26 @@
}
},
"node_modules/@smithy/service-error-classification": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.10.tgz",
- "integrity": "sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.11.tgz",
+ "integrity": "sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1"
+ "@smithy/types": "^3.7.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@smithy/shared-ini-file-loader": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.11.tgz",
- "integrity": "sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==",
+ "version": "3.1.12",
+ "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.12.tgz",
+ "integrity": "sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1093,17 +1093,17 @@
}
},
"node_modules/@smithy/signature-v4": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.3.tgz",
- "integrity": "sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==",
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.4.tgz",
+ "integrity": "sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@smithy/is-array-buffer": "^3.0.0",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
"@smithy/util-hex-encoding": "^3.0.0",
- "@smithy/util-middleware": "^3.0.10",
+ "@smithy/util-middleware": "^3.0.11",
"@smithy/util-uri-escape": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
@@ -1113,18 +1113,18 @@
}
},
"node_modules/@smithy/smithy-client": {
- "version": "3.4.5",
- "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.5.tgz",
- "integrity": "sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==",
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.5.0.tgz",
+ "integrity": "sha512-Y8FeOa7gbDfCWf7njrkoRATPa5eNLUEjlJS5z5rXatYuGkCb80LbHcu8AQR8qgAZZaNHCLyo2N+pxPsV7l+ivg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/core": "^2.5.4",
- "@smithy/middleware-endpoint": "^3.2.4",
- "@smithy/middleware-stack": "^3.0.10",
- "@smithy/protocol-http": "^4.1.7",
- "@smithy/types": "^3.7.1",
- "@smithy/util-stream": "^3.3.1",
+ "@smithy/core": "^2.5.5",
+ "@smithy/middleware-endpoint": "^3.2.5",
+ "@smithy/middleware-stack": "^3.0.11",
+ "@smithy/protocol-http": "^4.1.8",
+ "@smithy/types": "^3.7.2",
+ "@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1132,9 +1132,9 @@
}
},
"node_modules/@smithy/types": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.1.tgz",
- "integrity": "sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.7.2.tgz",
+ "integrity": "sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -1145,14 +1145,14 @@
}
},
"node_modules/@smithy/url-parser": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.10.tgz",
- "integrity": "sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.11.tgz",
+ "integrity": "sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/querystring-parser": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/querystring-parser": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
}
},
@@ -1222,15 +1222,15 @@
}
},
"node_modules/@smithy/util-defaults-mode-browser": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.28.tgz",
- "integrity": "sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.30.tgz",
+ "integrity": "sha512-nLuGmgfcr0gzm64pqF2UT4SGWVG8UGviAdayDlVzJPNa6Z4lqvpDzdRXmLxtOdEjVlTOEdpZ9dd3ZMMu488mzg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
},
@@ -1239,18 +1239,18 @@
}
},
"node_modules/@smithy/util-defaults-mode-node": {
- "version": "3.0.28",
- "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.28.tgz",
- "integrity": "sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==",
+ "version": "3.0.30",
+ "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.30.tgz",
+ "integrity": "sha512-OD63eWoH68vp75mYcfYyuVH+p7Li/mY4sYOROnauDrtObo1cS4uWfsy/zhOTW8F8ZPxQC1ZXZKVxoxvMGUv2Ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/config-resolver": "^3.0.12",
- "@smithy/credential-provider-imds": "^3.2.7",
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/property-provider": "^3.1.10",
- "@smithy/smithy-client": "^3.4.5",
- "@smithy/types": "^3.7.1",
+ "@smithy/config-resolver": "^3.0.13",
+ "@smithy/credential-provider-imds": "^3.2.8",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/property-provider": "^3.1.11",
+ "@smithy/smithy-client": "^3.5.0",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1258,14 +1258,14 @@
}
},
"node_modules/@smithy/util-endpoints": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.6.tgz",
- "integrity": "sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.7.tgz",
+ "integrity": "sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/node-config-provider": "^3.1.11",
- "@smithy/types": "^3.7.1",
+ "@smithy/node-config-provider": "^3.1.12",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1286,13 +1286,13 @@
}
},
"node_modules/@smithy/util-middleware": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.10.tgz",
- "integrity": "sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.11.tgz",
+ "integrity": "sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/types": "^3.7.1",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1300,14 +1300,14 @@
}
},
"node_modules/@smithy/util-retry": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.10.tgz",
- "integrity": "sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.11.tgz",
+ "integrity": "sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/service-error-classification": "^3.0.10",
- "@smithy/types": "^3.7.1",
+ "@smithy/service-error-classification": "^3.0.11",
+ "@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
@@ -1315,15 +1315,15 @@
}
},
"node_modules/@smithy/util-stream": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.1.tgz",
- "integrity": "sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.3.2.tgz",
+ "integrity": "sha512-sInAqdiVeisUGYAv/FrXpmJ0b4WTFmciTRqzhb7wVuem9BHvhIG7tpiYHLDWrl2stOokNZpTTGqz3mzB2qFwXg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "@smithy/fetch-http-handler": "^4.1.1",
- "@smithy/node-http-handler": "^3.3.1",
- "@smithy/types": "^3.7.1",
+ "@smithy/fetch-http-handler": "^4.1.2",
+ "@smithy/node-http-handler": "^3.3.2",
+ "@smithy/types": "^3.7.2",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-buffer-from": "^3.0.0",
"@smithy/util-hex-encoding": "^3.0.0",
@@ -1362,9 +1362,9 @@
}
},
"node_modules/@types/node": {
- "version": "22.10.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz",
- "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==",
+ "version": "22.10.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"