;
+}>({ state: initialState, dispatch: () => {} });
+
+export const ChatProvider = ({ children }: { children: ReactNode }) => {
+ const [state, dispatch] = useReducer(chatReducer, initialState);
+
+ return {children};
+};
diff --git a/frontend/src/hocs/withUserId.tsx b/frontend/src/hocs/withUserId.tsx
new file mode 100644
index 00000000..db7a73c0
--- /dev/null
+++ b/frontend/src/hocs/withUserId.tsx
@@ -0,0 +1,9 @@
+import { ComponentType } from 'react';
+import { initializeUserId } from '@utils/id';
+
+export default function withUserId(WrappedComponent: ComponentType
) {
+ return function WithUserIdComponent(props: P) {
+ initializeUserId();
+ return ;
+ };
+}
diff --git a/frontend/src/index.css b/frontend/src/index.css
index 983a2933..3fed92de 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -1,3 +1,4 @@
+@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);
@font-face {
font-family: 'NanumGothic';
src: url('./assets/fonts/NanumGothic.woff2') format('woff2');
diff --git a/frontend/src/pages/ClientPage.tsx b/frontend/src/pages/ClientPage.tsx
index 9a9b34f8..12b333a8 100644
--- a/frontend/src/pages/ClientPage.tsx
+++ b/frontend/src/pages/ClientPage.tsx
@@ -9,7 +9,7 @@ export default function ClientPage() {
-
+
>
);
diff --git a/frontend/src/pages/HostPage.tsx b/frontend/src/pages/HostPage.tsx
index 643d2628..bc105c4d 100644
--- a/frontend/src/pages/HostPage.tsx
+++ b/frontend/src/pages/HostPage.tsx
@@ -8,7 +8,7 @@ export default function HostPage() {
-
+
>
);
diff --git a/frontend/src/pages/MainPage.tsx b/frontend/src/pages/MainPage.tsx
index 88e46b73..e8d20efb 100644
--- a/frontend/src/pages/MainPage.tsx
+++ b/frontend/src/pages/MainPage.tsx
@@ -1,6 +1,9 @@
-import { MainHeader, MainLiveSection, RecommendLive, ServiceBanner } from '@components/main';
import { styled } from 'styled-components';
+import Footer from '@common/Footer';
+import ServiceBanner from '@common/ServiceBanner';
+import { MainHeader, MainLiveSection, RecommendLive } from '@components/main';
+
export default function MainPage() {
return (
<>
@@ -10,6 +13,7 @@ export default function MainPage() {
+
>
);
diff --git a/frontend/src/type/chat.ts b/frontend/src/type/chat.ts
new file mode 100644
index 00000000..0041bbbc
--- /dev/null
+++ b/frontend/src/type/chat.ts
@@ -0,0 +1,24 @@
+export type ChattingTypes = 'normal' | 'question' | 'notice';
+
+// 기본 서버 응답 데이터
+export interface MessageReceiveData {
+ userId: string;
+ nickname: string;
+ color: string;
+ msg: string | null;
+ msgTime: Date;
+ msgType: ChattingTypes;
+ questionId?: number;
+ questionDone?: boolean;
+}
+
+export interface MessageSendData {
+ roomId: string;
+ userId: string;
+ questionId?: number;
+ msg?: string;
+}
+
+export interface ChatInitData {
+ questionList: MessageReceiveData[];
+}
diff --git a/frontend/src/type/hostInfo.ts b/frontend/src/type/hostInfo.ts
new file mode 100644
index 00000000..6581042f
--- /dev/null
+++ b/frontend/src/type/hostInfo.ts
@@ -0,0 +1,19 @@
+export interface HostInfo {
+ userId: string;
+ liveTitle: string;
+ hostName: string;
+ notice: string;
+ defaultThumbnailImageUrl: string;
+ category: string;
+ tags: string[];
+}
+
+export interface FormValues {
+ liveTitle: string;
+ category: string;
+ tag: string;
+ tags: string[];
+ notice: string;
+ hostName: string;
+ previewImage: string | null;
+}
diff --git a/frontend/src/type/live.ts b/frontend/src/type/live.ts
new file mode 100644
index 00000000..40d2c0ba
--- /dev/null
+++ b/frontend/src/type/live.ts
@@ -0,0 +1,27 @@
+type ChannelInfo = {
+ channelId: string | null;
+ channelName: string;
+};
+
+export interface MainLive {
+ id: number;
+ liveId: string;
+ liveTitle: string;
+ liveImageUrl: string;
+ category: string;
+ defaultThumbnailImageUrl: string;
+ concurrentUserCount: number;
+ channel: ChannelInfo;
+}
+
+export interface RecentLive extends MainLive {
+ tags: string[];
+ startDate: Date;
+ endDate: Date;
+}
+
+export interface ClientLive extends MainLive {
+ tags: string[];
+ startDate: Date;
+ endDate: Date;
+}
\ No newline at end of file
diff --git a/frontend/src/type/user.ts b/frontend/src/type/user.ts
new file mode 100644
index 00000000..c4cf20fb
--- /dev/null
+++ b/frontend/src/type/user.ts
@@ -0,0 +1 @@
+export type UserType = 'host' | 'client';
diff --git a/frontend/src/utils/convertToBase64.ts b/frontend/src/utils/convertToBase64.ts
new file mode 100644
index 00000000..89b63284
--- /dev/null
+++ b/frontend/src/utils/convertToBase64.ts
@@ -0,0 +1,14 @@
+export const convertToBase64 = (file: File): Promise => {
+ return new Promise((resolve, reject) => {
+ const reader = new FileReader();
+ reader.onload = () => {
+ if (typeof reader.result === 'string') {
+ resolve(reader.result);
+ } else {
+ reject(new Error('Failed to convert image to base64'));
+ }
+ };
+ reader.onerror = (error) => reject(error);
+ reader.readAsDataURL(file);
+ });
+};
diff --git a/frontend/src/utils/createSocket.ts b/frontend/src/utils/createSocket.ts
new file mode 100644
index 00000000..2130f9c9
--- /dev/null
+++ b/frontend/src/utils/createSocket.ts
@@ -0,0 +1,23 @@
+import { io, Socket } from 'socket.io-client';
+
+export const createSocket = (
+ url: string,
+ eventMap: Record void>,
+ initCallback?: (socket: Socket) => void
+): Socket => {
+ const socket = io(url);
+
+ socket.on('connect', () => {
+ console.log('Connected:', socket.id);
+ });
+
+ for (const [event, callback] of Object.entries(eventMap)) {
+ socket.on(event, callback);
+ }
+
+ if (initCallback) {
+ initCallback(socket);
+ }
+
+ return socket;
+};
diff --git a/frontend/src/utils/id.ts b/frontend/src/utils/id.ts
index 4d053947..222a8571 100644
--- a/frontend/src/utils/id.ts
+++ b/frontend/src/utils/id.ts
@@ -1,15 +1,14 @@
import { nanoid } from 'nanoid';
-const USER_ID_KEY = 'userId';
+const USER_ID_KEY = 'userId' as const;
-export const getStoredId = () => localStorage.getItem(USER_ID_KEY) ?? '';
+export const getStoredId = (): string => localStorage.getItem(USER_ID_KEY) ?? '';
export const setStoredId = (id: string): void => localStorage.setItem(USER_ID_KEY, id);
-export const getOrCreateId = () => {
+export const initializeUserId = () => {
const savedId = getStoredId();
- if (savedId) return savedId;
-
- const newId = nanoid();
- setStoredId(newId);
- return newId;
+ if (!savedId) {
+ const newId = nanoid();
+ setStoredId(newId);
+ }
};
diff --git a/frontend/src/utils/updateElapsedTime.ts b/frontend/src/utils/updateElapsedTime.ts
new file mode 100644
index 00000000..119b1d73
--- /dev/null
+++ b/frontend/src/utils/updateElapsedTime.ts
@@ -0,0 +1,8 @@
+export const updateElapsedTime = ({ startDateTime, now }: { startDateTime: number; now: number }) => {
+ const diffInSeconds = Math.floor((now - startDateTime) / 1000);
+ const hours = String(Math.floor(diffInSeconds / 3600)).padStart(2, '0');
+ const minutes = String(Math.floor((diffInSeconds % 3600) / 60)).padStart(2, '0');
+ const seconds = String(diffInSeconds % 60).padStart(2, '0');
+
+ return `${hours}:${minutes}:${seconds}`;
+};
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index 798d020a..e73e4506 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -19,7 +19,10 @@
"@styles/*": ["src/styles/*"],
"@type/*": ["src/type/*"],
"@apis/*": ["src/apis/*"],
- "@queries/*": ["src/apis/queries/*"]
+ "@queries/*": ["src/apis/queries/*"],
+ "@constants/*": ["src/constants/*"],
+ "@hocs/*": ["src/hocs/*"],
+ "@common/*": ["src/components/common/*"],
},
"types": ["vite/client"]
},
diff --git a/nginx/conf.d/chat.conf b/nginx/conf.d/chat.conf
new file mode 100644
index 00000000..978ab0b8
--- /dev/null
+++ b/nginx/conf.d/chat.conf
@@ -0,0 +1,11 @@
+server {
+ location /chat {
+ proxy_pass http://backend-chat-server:4000;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "Upgrade";
+ proxy_set_header Host $host;
+ proxy_cache_bypass $http_upgrade;
+ }
+}
+
diff --git a/yarn.lock b/yarn.lock
index 8af54d38..10a5bdff 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -155,613 +155,613 @@ __metadata:
linkType: hard
"@aws-sdk/client-s3@npm:^3.688.0":
- version: 3.691.0
- resolution: "@aws-sdk/client-s3@npm:3.691.0"
+ version: 3.696.0
+ resolution: "@aws-sdk/client-s3@npm:3.696.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.691.0"
- "@aws-sdk/client-sts": "npm:3.691.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/credential-provider-node": "npm:3.691.0"
- "@aws-sdk/middleware-bucket-endpoint": "npm:3.686.0"
- "@aws-sdk/middleware-expect-continue": "npm:3.686.0"
- "@aws-sdk/middleware-flexible-checksums": "npm:3.691.0"
- "@aws-sdk/middleware-host-header": "npm:3.686.0"
- "@aws-sdk/middleware-location-constraint": "npm:3.686.0"
- "@aws-sdk/middleware-logger": "npm:3.686.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
- "@aws-sdk/middleware-sdk-s3": "npm:3.691.0"
- "@aws-sdk/middleware-ssec": "npm:3.686.0"
- "@aws-sdk/middleware-user-agent": "npm:3.691.0"
- "@aws-sdk/region-config-resolver": "npm:3.686.0"
- "@aws-sdk/signature-v4-multi-region": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-endpoints": "npm:3.686.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.686.0"
- "@aws-sdk/util-user-agent-node": "npm:3.691.0"
- "@aws-sdk/xml-builder": "npm:3.686.0"
- "@smithy/config-resolver": "npm:^3.0.10"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/eventstream-serde-browser": "npm:^3.0.11"
- "@smithy/eventstream-serde-config-resolver": "npm:^3.0.8"
- "@smithy/eventstream-serde-node": "npm:^3.0.10"
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/hash-blob-browser": "npm:^3.1.7"
- "@smithy/hash-node": "npm:^3.0.8"
- "@smithy/hash-stream-node": "npm:^3.1.7"
- "@smithy/invalid-dependency": "npm:^3.0.8"
- "@smithy/md5-js": "npm:^3.0.8"
- "@smithy/middleware-content-length": "npm:^3.0.10"
- "@smithy/middleware-endpoint": "npm:^3.2.1"
- "@smithy/middleware-retry": "npm:^3.0.25"
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/middleware-stack": "npm:^3.0.8"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
+ "@aws-sdk/client-sso-oidc": "npm:3.696.0"
+ "@aws-sdk/client-sts": "npm:3.696.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.696.0"
+ "@aws-sdk/middleware-bucket-endpoint": "npm:3.696.0"
+ "@aws-sdk/middleware-expect-continue": "npm:3.696.0"
+ "@aws-sdk/middleware-flexible-checksums": "npm:3.696.0"
+ "@aws-sdk/middleware-host-header": "npm:3.696.0"
+ "@aws-sdk/middleware-location-constraint": "npm:3.696.0"
+ "@aws-sdk/middleware-logger": "npm:3.696.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
+ "@aws-sdk/middleware-sdk-s3": "npm:3.696.0"
+ "@aws-sdk/middleware-ssec": "npm:3.696.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.696.0"
+ "@aws-sdk/region-config-resolver": "npm:3.696.0"
+ "@aws-sdk/signature-v4-multi-region": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-endpoints": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.696.0"
+ "@aws-sdk/xml-builder": "npm:3.696.0"
+ "@smithy/config-resolver": "npm:^3.0.12"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/eventstream-serde-browser": "npm:^3.0.13"
+ "@smithy/eventstream-serde-config-resolver": "npm:^3.0.10"
+ "@smithy/eventstream-serde-node": "npm:^3.0.12"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/hash-blob-browser": "npm:^3.1.9"
+ "@smithy/hash-node": "npm:^3.0.10"
+ "@smithy/hash-stream-node": "npm:^3.1.9"
+ "@smithy/invalid-dependency": "npm:^3.0.10"
+ "@smithy/md5-js": "npm:^3.0.10"
+ "@smithy/middleware-content-length": "npm:^3.0.12"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/middleware-retry": "npm:^3.0.27"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/middleware-stack": "npm:^3.0.10"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^3.0.25"
- "@smithy/util-defaults-mode-node": "npm:^3.0.25"
- "@smithy/util-endpoints": "npm:^2.1.4"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-retry": "npm:^3.0.8"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.27"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.27"
+ "@smithy/util-endpoints": "npm:^2.1.6"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-retry": "npm:^3.0.10"
+ "@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
- "@smithy/util-waiter": "npm:^3.1.7"
+ "@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
- checksum: 10c0/492520450cd8a8573d25155c4ad87ea8f6c65a241ca5e25e13075b886056454722ddf19c122526b594887c813686177a991b994425c3bf21a2b26ddf2ced2ad3
+ checksum: 10c0/2718a4a041b951087c15f69c4b408daa0833f49ef29231ff944806605f349f6184cd64b228cc51b45d9568c18247e35b97f6defa0b27af5780041fc3eeb3a475
languageName: node
linkType: hard
-"@aws-sdk/client-sso-oidc@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/client-sso-oidc@npm:3.691.0"
+"@aws-sdk/client-sso-oidc@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/client-sso-oidc@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/credential-provider-node": "npm:3.691.0"
- "@aws-sdk/middleware-host-header": "npm:3.686.0"
- "@aws-sdk/middleware-logger": "npm:3.686.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
- "@aws-sdk/middleware-user-agent": "npm:3.691.0"
- "@aws-sdk/region-config-resolver": "npm:3.686.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-endpoints": "npm:3.686.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.686.0"
- "@aws-sdk/util-user-agent-node": "npm:3.691.0"
- "@smithy/config-resolver": "npm:^3.0.10"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/hash-node": "npm:^3.0.8"
- "@smithy/invalid-dependency": "npm:^3.0.8"
- "@smithy/middleware-content-length": "npm:^3.0.10"
- "@smithy/middleware-endpoint": "npm:^3.2.1"
- "@smithy/middleware-retry": "npm:^3.0.25"
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/middleware-stack": "npm:^3.0.8"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.696.0"
+ "@aws-sdk/middleware-host-header": "npm:3.696.0"
+ "@aws-sdk/middleware-logger": "npm:3.696.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.696.0"
+ "@aws-sdk/region-config-resolver": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-endpoints": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.696.0"
+ "@smithy/config-resolver": "npm:^3.0.12"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/hash-node": "npm:^3.0.10"
+ "@smithy/invalid-dependency": "npm:^3.0.10"
+ "@smithy/middleware-content-length": "npm:^3.0.12"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/middleware-retry": "npm:^3.0.27"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/middleware-stack": "npm:^3.0.10"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^3.0.25"
- "@smithy/util-defaults-mode-node": "npm:^3.0.25"
- "@smithy/util-endpoints": "npm:^2.1.4"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-retry": "npm:^3.0.8"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.27"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.27"
+ "@smithy/util-endpoints": "npm:^2.1.6"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.691.0
- checksum: 10c0/b76b6abf1ad087c2db97e191aefe765cd72c0ca1a261d04b2b9e5f39b8cfcbd4744f67d456e1ee8442ad851574ab56131b527a173f8f8c07465305096375d192
+ "@aws-sdk/client-sts": ^3.696.0
+ checksum: 10c0/b211e3790ed2ef6d4e2bde04306373bdecbf5a90ffa34a504813187ab536a2772084fced814a274d1b7785c805a6ac617ae94bb34b1a72eb975ec51d7a31b8a5
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/client-sso@npm:3.691.0"
+"@aws-sdk/client-sso@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/client-sso@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/middleware-host-header": "npm:3.686.0"
- "@aws-sdk/middleware-logger": "npm:3.686.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
- "@aws-sdk/middleware-user-agent": "npm:3.691.0"
- "@aws-sdk/region-config-resolver": "npm:3.686.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-endpoints": "npm:3.686.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.686.0"
- "@aws-sdk/util-user-agent-node": "npm:3.691.0"
- "@smithy/config-resolver": "npm:^3.0.10"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/hash-node": "npm:^3.0.8"
- "@smithy/invalid-dependency": "npm:^3.0.8"
- "@smithy/middleware-content-length": "npm:^3.0.10"
- "@smithy/middleware-endpoint": "npm:^3.2.1"
- "@smithy/middleware-retry": "npm:^3.0.25"
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/middleware-stack": "npm:^3.0.8"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/middleware-host-header": "npm:3.696.0"
+ "@aws-sdk/middleware-logger": "npm:3.696.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.696.0"
+ "@aws-sdk/region-config-resolver": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-endpoints": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.696.0"
+ "@smithy/config-resolver": "npm:^3.0.12"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/hash-node": "npm:^3.0.10"
+ "@smithy/invalid-dependency": "npm:^3.0.10"
+ "@smithy/middleware-content-length": "npm:^3.0.12"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/middleware-retry": "npm:^3.0.27"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/middleware-stack": "npm:^3.0.10"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^3.0.25"
- "@smithy/util-defaults-mode-node": "npm:^3.0.25"
- "@smithy/util-endpoints": "npm:^2.1.4"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-retry": "npm:^3.0.8"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.27"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.27"
+ "@smithy/util-endpoints": "npm:^2.1.6"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/a7e2ef22623bacbb8ad7e17127bfaf9b329b1b3f9b216117a9e32a457373c949776f47e0296a6ead686a1200c36b8ab74170ad6c7084da4c79d64ec58f3e66af
+ checksum: 10c0/e96c907c3385ea183181eb7dbdceb01c2b96a220f67bf6147b9a116aa197ceb2860fa54667405a7f60f365ee1c056b7039ff1ac236815894b675ee76c52862f3
languageName: node
linkType: hard
-"@aws-sdk/client-sts@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/client-sts@npm:3.691.0"
+"@aws-sdk/client-sts@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/client-sts@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/client-sso-oidc": "npm:3.691.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/credential-provider-node": "npm:3.691.0"
- "@aws-sdk/middleware-host-header": "npm:3.686.0"
- "@aws-sdk/middleware-logger": "npm:3.686.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
- "@aws-sdk/middleware-user-agent": "npm:3.691.0"
- "@aws-sdk/region-config-resolver": "npm:3.686.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-endpoints": "npm:3.686.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.686.0"
- "@aws-sdk/util-user-agent-node": "npm:3.691.0"
- "@smithy/config-resolver": "npm:^3.0.10"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/hash-node": "npm:^3.0.8"
- "@smithy/invalid-dependency": "npm:^3.0.8"
- "@smithy/middleware-content-length": "npm:^3.0.10"
- "@smithy/middleware-endpoint": "npm:^3.2.1"
- "@smithy/middleware-retry": "npm:^3.0.25"
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/middleware-stack": "npm:^3.0.8"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
+ "@aws-sdk/client-sso-oidc": "npm:3.696.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-node": "npm:3.696.0"
+ "@aws-sdk/middleware-host-header": "npm:3.696.0"
+ "@aws-sdk/middleware-logger": "npm:3.696.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.696.0"
+ "@aws-sdk/region-config-resolver": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-endpoints": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.696.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.696.0"
+ "@smithy/config-resolver": "npm:^3.0.12"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/hash-node": "npm:^3.0.10"
+ "@smithy/invalid-dependency": "npm:^3.0.10"
+ "@smithy/middleware-content-length": "npm:^3.0.12"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/middleware-retry": "npm:^3.0.27"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/middleware-stack": "npm:^3.0.10"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^3.0.25"
- "@smithy/util-defaults-mode-node": "npm:^3.0.25"
- "@smithy/util-endpoints": "npm:^2.1.4"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-retry": "npm:^3.0.8"
+ "@smithy/util-defaults-mode-browser": "npm:^3.0.27"
+ "@smithy/util-defaults-mode-node": "npm:^3.0.27"
+ "@smithy/util-endpoints": "npm:^2.1.6"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/97377c59ecaf0b8ad58e59eac64c27658e72893e91414361007f4801dbdf318996b60cbb35c6bbe9b9325fb6d0f31aefe325f45a0c1162877d101db5fc920400
+ checksum: 10c0/106f67f3e929485b060c02221cc0ad546035a6914ad47c38f99ba1ff3a97dd6b118d09a7bb2eb58d3a93ec5e28ac6d0ffe85ed5ede3a885c4da1c8b37c15680c
languageName: node
linkType: hard
-"@aws-sdk/core@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/core@npm:3.691.0"
+"@aws-sdk/core@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/core@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/signature-v4": "npm:^4.2.1"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-middleware": "npm:^3.0.8"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/signature-v4": "npm:^4.2.2"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-middleware": "npm:^3.0.10"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/0d2a8ba1b686af928e043762f0001b09b5f3056c96238cc9dea9e911de2ff7878be63399610c5c459d799e7c4e79aece35f8d4c124c660465c8b534c7f68b3aa
+ checksum: 10c0/4a96a3e29bf6e0dcd82d8160633eb4b8a488d821a8e59c1033c79a8e0d32b2f82e241e1cf94599f48836800549e342a410318b18e055851741ddf7d5d3ad4606
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-env@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-env@npm:3.691.0"
+"@aws-sdk/credential-provider-env@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-env@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/bb148e0c560880a65fc8721afba215ffb26c8577f2d48a917cc67045444abb46989636717497cee4eb670d0befa9c3f2a5154c808dc5df9addc1dd35fc3ea1a6
+ checksum: 10c0/e16987ca343f9dbae2560d0d016ca005f36b27fb094f8d32b99954d0a2874aa8230f924f2dab2a0e0aebc7ee9eda6881c5f6e928d89dc759f70a7658363e20be
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-http@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-http@npm:3.691.0"
+"@aws-sdk/credential-provider-http@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-http@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-stream": "npm:^3.3.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/c833c0d52ed0bcf80314094c25ca0d6f970b4ce4ed9d16d89776fce2b1375ff48bff53ea288a257ba7558959eee2ba2864832ceb3dd3f67cd2a7e1d56e50a4c0
+ checksum: 10c0/383dd45600b0edbcc52c8e1101485569e631fb218f1776bbd4971e43a54be0adef458cb096d06d944353675136d2043da588424c78fff1c4eeeaf5229eb6774d
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-ini@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.691.0"
+"@aws-sdk/credential-provider-ini@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/credential-provider-env": "npm:3.691.0"
- "@aws-sdk/credential-provider-http": "npm:3.691.0"
- "@aws-sdk/credential-provider-process": "npm:3.691.0"
- "@aws-sdk/credential-provider-sso": "npm:3.691.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/credential-provider-imds": "npm:^3.2.5"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/credential-provider-env": "npm:3.696.0"
+ "@aws-sdk/credential-provider-http": "npm:3.696.0"
+ "@aws-sdk/credential-provider-process": "npm:3.696.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.696.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/credential-provider-imds": "npm:^3.2.6"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.691.0
- checksum: 10c0/75e7afaa229837c6f71ceb814ad50147d73fba6016f656eaa02a6a24f570e5a99c65a5052520c98eb035c8e884dd6a0bbd72659d02c94c8664232d7c5c56505e
- languageName: node
- linkType: hard
-
-"@aws-sdk/credential-provider-node@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.691.0"
- dependencies:
- "@aws-sdk/credential-provider-env": "npm:3.691.0"
- "@aws-sdk/credential-provider-http": "npm:3.691.0"
- "@aws-sdk/credential-provider-ini": "npm:3.691.0"
- "@aws-sdk/credential-provider-process": "npm:3.691.0"
- "@aws-sdk/credential-provider-sso": "npm:3.691.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/credential-provider-imds": "npm:^3.2.5"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/client-sts": ^3.696.0
+ checksum: 10c0/9c96646d3e6645ddc079bb8b41532a80a9899b5a4c47d0f1304f8c096f6f8a6f7d35db25b56092004eb159a62dabe2f2daeb852db3fa19e37317e8a175b36ba5
+ languageName: node
+ linkType: hard
+
+"@aws-sdk/credential-provider-node@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.696.0"
+ dependencies:
+ "@aws-sdk/credential-provider-env": "npm:3.696.0"
+ "@aws-sdk/credential-provider-http": "npm:3.696.0"
+ "@aws-sdk/credential-provider-ini": "npm:3.696.0"
+ "@aws-sdk/credential-provider-process": "npm:3.696.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.696.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/credential-provider-imds": "npm:^3.2.6"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/764a3f9a802b63ed85c85351b2157f712452d18b23c1ffdc8bc39294a6602d7ba7cbf92d01508995d9a26a1a3887f1d83c04eaa9a9c09df28b4a5f54aa71fca4
+ checksum: 10c0/1b4803d175c4245bc5afb14fa86b8d43513d0bd86454216e08816e83787d922ad7131306f7965e34bd60543d802bc06d9b3b27c7287fa6efe9bdb21cc34f1962
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-process@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-process@npm:3.691.0"
+"@aws-sdk/credential-provider-process@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-process@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/d24915df3f0dcdfeb6ec7cc3574439d388e564ed25f292dda5ece1a8d77c3815ca2a357ee3dfbd50fd6be1f356dbf5a3f43ccff54b884c4dfc00a375b3054b61
+ checksum: 10c0/61741aa3d9cbbc88ea31bad7b7e8253aa4a0860eef215ff8d9a8196cdaa7ca8fa3bb438500c558abc9ce78b9490c540b12180acee21a7a9276491344931c5279
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.691.0"
+"@aws-sdk/credential-provider-sso@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.696.0"
dependencies:
- "@aws-sdk/client-sso": "npm:3.691.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/token-providers": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/client-sso": "npm:3.696.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/token-providers": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/24fe28cc03aefac668e7c777ed63e6247944dc2542f52533d48577f41fbe71972a34db3f2d4e9b22a2c6eb50c8318923c157fe55a0be9b7bf90cd7692c0c3815
+ checksum: 10c0/9f2ca87b98aa6f7f13b379b26eaf3f773e2337d3c08e623807eb00a28f433324bed494514caff7365ec0a7d19f140d9a8bf00e7a389666dc2e1a1bf5c87d20d6
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-web-identity@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/credential-provider-web-identity@npm:3.691.0"
+"@aws-sdk/credential-provider-web-identity@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/credential-provider-web-identity@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sts": ^3.691.0
- checksum: 10c0/ffaee5951d7296a96c315cb35036e1986b0b60ecfb28a868fde251a9c4976a794f49bd76f785403c2140332400e514f817c82253522937dc6cd5173e49e8bca8
+ "@aws-sdk/client-sts": ^3.696.0
+ checksum: 10c0/a983867c72a6c8a1fd397f8051f4b6e64f5cac1ff5afff1b2d00815096d6c819d9ad155f4724cb27ebe3c13714eeb22cc545533f4ccaaa63980308b8bef2fa4c
languageName: node
linkType: hard
-"@aws-sdk/middleware-bucket-endpoint@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.686.0"
+"@aws-sdk/middleware-bucket-endpoint@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-arn-parser": "npm:3.679.0"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-arn-parser": "npm:3.693.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/a443b0ad0aa7dd05927c6f20ab03bb0c2a4b97706c030ad476b234b891be67238b95cdcd04d255515667b46052ab33ef8047744ed25463b1e7d5b134ec1c3101
+ checksum: 10c0/2e8fd34f69466dee6884bd2501ad47b0815583ce92adebc0cd69537a084f56ec34760dcf34979a67faec70980dba3cde6fd6516576cc32b1d9f27e494d3ea62c
languageName: node
linkType: hard
-"@aws-sdk/middleware-expect-continue@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-expect-continue@npm:3.686.0"
+"@aws-sdk/middleware-expect-continue@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-expect-continue@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/153260b268faa8564d2c33737620af8770b857c8d1dcb7184da535d693bceec1314d89021032614c7ee4760710a6e69eb380b7af6a2f4dedcfb6641e3509b892
+ checksum: 10c0/1f91c500d44e2dcbf16434c40e4cf78a3c652b161bf4ccfcda03b94cd8b17d69d0058ee1932b6101643a8a2003487f1cc95e33a5972fe04366e86a3105fdfd24
languageName: node
linkType: hard
-"@aws-sdk/middleware-flexible-checksums@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.691.0"
+"@aws-sdk/middleware-flexible-checksums@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.696.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/d35ef428b82852b3e7cee013738f09daaaa8a78ff65c7228d3cdb0c41794246362d7e9f58ae48829641ac772daba28a9bad8dfaa91e8c9c6d916313320d4855c
+ checksum: 10c0/418935999ad1cabf547f71bb32d68374e75d92cf658b5470f6404d53103351bb6c66710946ff58dffeef7208bd6f7f3fc1a40d32286b5039f0af4c55a1f2db7b
languageName: node
linkType: hard
-"@aws-sdk/middleware-host-header@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-host-header@npm:3.686.0"
+"@aws-sdk/middleware-host-header@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-host-header@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/afc4151bf2425b3b0172f39fd9f29e48bd87038ec7f4e3389da4426f7fbfc394c8298eac30497a96f005b7dd3809ac49fff375f53969163e259587d15dd40d59
+ checksum: 10c0/793c61a6af5533872888d9ee1b6765e06bd9716a9b1e497fb53b39da0bdbde2c379601ddf29bd2120cc520241143bae7763691f476f81721c290ee4e71264b6e
languageName: node
linkType: hard
-"@aws-sdk/middleware-location-constraint@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-location-constraint@npm:3.686.0"
+"@aws-sdk/middleware-location-constraint@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-location-constraint@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/d093e18ebc54be70d6eb945fac15a7c1617cdc96e51c9afa037d6fb479ad2345592bc7b078d594246e71ab9a716415efb18bb993f240f02f9c4bd6ed9650baa3
+ checksum: 10c0/300cc6148da5f49ff7ce82987af746a2af6f0bdffb8f31a07fd60d39a24ca797c89874349215f46d59dd2b5ca312ff288a6a1584b95e713c265344129a0b88b7
languageName: node
linkType: hard
-"@aws-sdk/middleware-logger@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-logger@npm:3.686.0"
+"@aws-sdk/middleware-logger@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-logger@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/17edfe0781035c2678ae878db56652c4de0d3a719d7912b7ce1d6e3dccc2848543152cc617ebdacd6ac46c6cc5d1ead4e65e2606bf5fd7431c4606b0fac72adc
+ checksum: 10c0/978145de80cb21a59d525fe9611d78e513df506e29123c39d425dd7c77043f9b57f05f03edde33864d9494a7ce76b7e2a48ec38ee4cee213b470ff1cd11c229f
languageName: node
linkType: hard
-"@aws-sdk/middleware-recursion-detection@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-recursion-detection@npm:3.686.0"
+"@aws-sdk/middleware-recursion-detection@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-recursion-detection@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/0038b452d683b81ece9cbffdc5191a2eeef908bfefc41e87f61f96e177488255a5a03451e3c0f7b7afa319662d931b246fd319b46fee82b51b427f51228f1a8c
+ checksum: 10c0/20db668ef267c62134e241511a6a5a49cbcacbf4eb28eb8fede903086e38bdc3d6d5277f5faae4bb0b3a5123a2f1c116b219c3c48d4b8aa49c12e97707736d51
languageName: node
linkType: hard
-"@aws-sdk/middleware-sdk-s3@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/middleware-sdk-s3@npm:3.691.0"
+"@aws-sdk/middleware-sdk-s3@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-sdk-s3@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-arn-parser": "npm:3.679.0"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/signature-v4": "npm:^4.2.1"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-arn-parser": "npm:3.693.0"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/signature-v4": "npm:^4.2.2"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/c1b3c361ae8861503923d52744e8b53cf323bd5c49b5b82547bb8646e1bb2f815b794f993da3f159c20ccd2c2273c9bc826d6fd5e3acf1a59688ae8e56d45431
+ checksum: 10c0/1387b24256680f9d58c74db02fc32696a503d1d4299f8aaabf6b66350788105b7ae181880bd8a2dec39e3c735d98f41583dee673eab7f46c322d530b13ff51e9
languageName: node
linkType: hard
-"@aws-sdk/middleware-ssec@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/middleware-ssec@npm:3.686.0"
+"@aws-sdk/middleware-ssec@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-ssec@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/96851ec461ee6dc5c2e73612a0ab200f360d5c971d01c9e5ca045c53b2deeb9f3c184016f89cd94cf8db5785d4ab46543227b8e5953014ae0b2bc405347cf945
+ checksum: 10c0/5041d9d367d1b0daa897351b8d446e66929577b80a86e06af40ee5664c3f29cd5a35230d93d522e9acc23c15db4c4dfcc39a092e12a4be73061069b1a99d674a
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.691.0"
+"@aws-sdk/middleware-user-agent@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/middleware-user-agent@npm:3.696.0"
dependencies:
- "@aws-sdk/core": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@aws-sdk/util-endpoints": "npm:3.686.0"
- "@smithy/core": "npm:^2.5.1"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/core": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@aws-sdk/util-endpoints": "npm:3.696.0"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/71f263c14fad48693d5a98b2ab3b3b0af039aa717b096c2a0459dc0fb1a9b74057c70bb712b03122c159b143e7b551b78bf6f099b24c58429ae7ca2bf31bfff1
+ checksum: 10c0/3af4fc987d3a3cfa9036c67f60fb939a02d801ccb2781ea0be653896dfb34382c4c895a2e3ce2c48f2db547aea09d871217d77c814331251faf10b5a472974f7
languageName: node
linkType: hard
-"@aws-sdk/region-config-resolver@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/region-config-resolver@npm:3.686.0"
+"@aws-sdk/region-config-resolver@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/region-config-resolver@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^3.0.8"
+ "@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/0657085699a61cac3d84a1660e4b8396e928d2bb2e73c0968d1e924759be605383c4f5d12262ca1f28f28bdcd37900eee161a9b91225a3f98a13c8551f7a6cbc
+ checksum: 10c0/bc8765735dcd888a73336d1c0cac75fec0303446f2cd97c7818cec89d5d9f7e4b98705de1e751a47abbc3442d9237169dc967f175be27d9f828e65acb6c2d23a
languageName: node
linkType: hard
-"@aws-sdk/signature-v4-multi-region@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/signature-v4-multi-region@npm:3.691.0"
+"@aws-sdk/signature-v4-multi-region@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/signature-v4-multi-region@npm:3.696.0"
dependencies:
- "@aws-sdk/middleware-sdk-s3": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/signature-v4": "npm:^4.2.1"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/middleware-sdk-s3": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/signature-v4": "npm:^4.2.2"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/2ac52f38faa044a2409420ffae90ab1a70ae96061a274ea4692980037ab0d281956c46b414d6d7d496c70f4d5094b0728df1241f3ca0468f0fde0b1ef81c2c8b
+ checksum: 10c0/2d429b1ad202d4ff6e56671f8778d42b84a9bc6d03ac3db96bc332d11411cae461d78c7a76c0c9f597ac2c51fb88bf8db7071782fac85392350d09dfdaabbf15
languageName: node
linkType: hard
-"@aws-sdk/token-providers@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/token-providers@npm:3.691.0"
+"@aws-sdk/token-providers@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/token-providers@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/property-provider": "npm:^3.1.9"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
- "@aws-sdk/client-sso-oidc": ^3.691.0
- checksum: 10c0/2b2b33be73f89d93ef41638a3814f443173febb1687cd105e8d2e51bdb5533312396268248e67a9e79f4e56637df0a5015944cb2c7eb76a3aa441eaa73c81338
+ "@aws-sdk/client-sso-oidc": ^3.696.0
+ checksum: 10c0/a0ca737d13324acb54f65cfbab73ed46c43e4b209366d108daa5e4a102fc250ea4fa1df5df389e7b92e7146097b44e1703cec2514cb733879a9e35584cdd5b06
languageName: node
linkType: hard
-"@aws-sdk/types@npm:3.686.0, @aws-sdk/types@npm:^3.222.0":
- version: 3.686.0
- resolution: "@aws-sdk/types@npm:3.686.0"
+"@aws-sdk/types@npm:3.696.0, @aws-sdk/types@npm:^3.222.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/types@npm:3.696.0"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/926809c4ed1ca9948a4c4135b3b96ac30fe39438c130c8b1bd2ec47361fa81a094663eb9aa8df4db7841cd77bb5be8070bacddf21819404bcb9cd048d1eacec8
+ checksum: 10c0/3721939d5dd2a68fa4aee89d56b4817dd6c020721e2b2ea5b702968e7055826eb37e1924bc298007686304bf9bb6623bfec26b5cfd0663f2dba9d1b48437bb91
languageName: node
linkType: hard
-"@aws-sdk/util-arn-parser@npm:3.679.0":
- version: 3.679.0
- resolution: "@aws-sdk/util-arn-parser@npm:3.679.0"
+"@aws-sdk/util-arn-parser@npm:3.693.0":
+ version: 3.693.0
+ resolution: "@aws-sdk/util-arn-parser@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/401dc101c8c0c5057f8dc59d4a0acc06c6d81e35c4f37258c34d10be7148f5b6334c8dd6021224b897c7447f2a6650fa955e0c697bfb6f86dcfd55415b158544
+ checksum: 10c0/dd3ff41885f3c9c69043bf145d9e28ba5d18e71d3ffc5e97f3700fa4f9461d092d33d632eca00236f00e25ebcf39ed1a6900d7b39d2f592c83e38115890ad701
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/util-endpoints@npm:3.686.0"
+"@aws-sdk/util-endpoints@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/util-endpoints@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-endpoints": "npm:^2.1.4"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-endpoints": "npm:^2.1.6"
tslib: "npm:^2.6.2"
- checksum: 10c0/e9939316bc7555ea57b940d4e4a62f13bf774c1496dea9171cc7cabcd75449d2169a54f6cedfd7f8ef29e3bf047b9fce6df7f09c4092d3c9eee902865bfa45e3
+ checksum: 10c0/b32822b5f6924b8e3f88c7269afb216d07eccb338627a366ff3f94d98e7f5e4a9448dcf7c5ac97fc31fd0dfec5dfec52bbbeda65d84edd33fd509ed1dbfb1993
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
- version: 3.679.0
- resolution: "@aws-sdk/util-locate-window@npm:3.679.0"
+ version: 3.693.0
+ resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/86c9b39171fdc993822b3093a06c0bbc49ce5cd9a9c36462282b0c472b536a06760b301c1aa2e2698d7a9f661898f3c7fa6cce991ab728eaeb5f952191f53bc1
+ checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-browser@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/util-user-agent-browser@npm:3.686.0"
+"@aws-sdk/util-user-agent-browser@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/util-user-agent-browser@npm:3.696.0"
dependencies:
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/types": "npm:^3.7.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/e358e3a6e833985d8baa53f08718578337aa1635744bb6ea3976a8fb67d78d427985f95e873f7806db4c54f21a1fdfec5a019922dbe389b7a0cdd804fda51d3a
+ checksum: 10c0/e72e35b21e6945d8a3cc46f92a5a6509842fe5439c2b1628f72d1f0932398d4aae2648c8a1779e2936aa4f4720047344790dc533f334ae18b20a43443d4a7b93
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.691.0":
- version: 3.691.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.691.0"
+"@aws-sdk/util-user-agent-node@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/util-user-agent-node@npm:3.696.0"
dependencies:
- "@aws-sdk/middleware-user-agent": "npm:3.691.0"
- "@aws-sdk/types": "npm:3.686.0"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.696.0"
+ "@aws-sdk/types": "npm:3.696.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
- checksum: 10c0/d303279c7236fe85d1f7c98e78d04c2cd0896ef2c3aa32eafa3cd0e0728964a6aaadd71c09d3ae2789f04610a93d828a05688e6a1137458a1e612432e8d24918
+ checksum: 10c0/9dd7ef236ff13552f559d0e78bfffe424032dc4040306808542a2eedbe80801ae05389c415b770461b6b39a0b35cdbebf97e673e6f7132e05121708acee3db83
languageName: node
linkType: hard
-"@aws-sdk/xml-builder@npm:3.686.0":
- version: 3.686.0
- resolution: "@aws-sdk/xml-builder@npm:3.686.0"
+"@aws-sdk/xml-builder@npm:3.696.0":
+ version: 3.696.0
+ resolution: "@aws-sdk/xml-builder@npm:3.696.0"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/79e6af4cd4a464a792ac083a036c1bc2aa8e5799a646087bd5a06f68b35d8c58f6067fc135fc3cf3554e01bf89ae2ae0137798dcd1c872a2cb5e2ca2738731de
+ checksum: 10c0/7a628df60d55bbee0dafd1920b37e071c9c663ef8b3ef8e601a528185f0503d6b4da50350f636b1f09851f60314e12b28d16fa1239f40a6fb4866e9f6f829778
languageName: node
linkType: hard
@@ -1542,21 +1542,21 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/config-array@npm:^0.18.0":
- version: 0.18.0
- resolution: "@eslint/config-array@npm:0.18.0"
+"@eslint/config-array@npm:^0.19.0":
+ version: 0.19.0
+ resolution: "@eslint/config-array@npm:0.19.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
- checksum: 10c0/0234aeb3e6b052ad2402a647d0b4f8a6aa71524bafe1adad0b8db1dfe94d7f5f26d67c80f79bb37ac61361a1d4b14bb8fb475efe501de37263cf55eabb79868f
+ checksum: 10c0/def23c6c67a8f98dc88f1b87e17a5668e5028f5ab9459661aabfe08e08f2acd557474bbaf9ba227be0921ae4db232c62773dbb7739815f8415678eb8f592dbf5
languageName: node
linkType: hard
-"@eslint/core@npm:^0.7.0":
- version: 0.7.0
- resolution: "@eslint/core@npm:0.7.0"
- checksum: 10c0/3cdee8bc6cbb96ac6103d3ead42e59830019435839583c9eb352b94ed558bd78e7ffad5286dc710df21ec1e7bd8f52aa6574c62457a4dd0f01f3736fa4a7d87a
+"@eslint/core@npm:^0.9.0":
+ version: 0.9.0
+ resolution: "@eslint/core@npm:0.9.0"
+ checksum: 10c0/6d8e8e0991cef12314c49425d8d2d9394f5fb1a36753ff82df7c03185a4646cb7c8736cf26638a4a714782cedf4b23cfc17667d282d3e5965b3920a0e7ce20d4
languageName: node
linkType: hard
@@ -1577,9 +1577,9 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/eslintrc@npm:^3.1.0":
- version: 3.1.0
- resolution: "@eslint/eslintrc@npm:3.1.0"
+"@eslint/eslintrc@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "@eslint/eslintrc@npm:3.2.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
@@ -1590,7 +1590,7 @@ __metadata:
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
- checksum: 10c0/5b7332ed781edcfc98caa8dedbbb843abfb9bda2e86538529c843473f580e40c69eb894410eddc6702f487e9ee8f8cfa8df83213d43a8fdb549f23ce06699167
+ checksum: 10c0/43867a07ff9884d895d9855edba41acf325ef7664a8df41d957135a81a477ff4df4196f5f74dc3382627e5cc8b7ad6b815c2cea1b58f04a75aced7c43414ab8b
languageName: node
linkType: hard
@@ -1601,10 +1601,10 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/js@npm:9.14.0, @eslint/js@npm:^9.13.0, @eslint/js@npm:^9.14.0":
- version: 9.14.0
- resolution: "@eslint/js@npm:9.14.0"
- checksum: 10c0/a423dd435e10aa3b461599aa02f6cbadd4b5128cb122467ee4e2c798e7ca4f9bb1fce4dcea003b29b983090238cf120899c1af657cf86300b399e4f996b83ddc
+"@eslint/js@npm:9.15.0, @eslint/js@npm:^9.13.0, @eslint/js@npm:^9.14.0":
+ version: 9.15.0
+ resolution: "@eslint/js@npm:9.15.0"
+ checksum: 10c0/56552966ab1aa95332f70d0e006db5746b511c5f8b5e0c6a9b2d6764ff6d964e0b2622731877cbc4e3f0e74c5b39191290d5f48147be19175292575130d499ab
languageName: node
linkType: hard
@@ -1615,7 +1615,7 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/plugin-kit@npm:^0.2.0":
+"@eslint/plugin-kit@npm:^0.2.3":
version: 0.2.3
resolution: "@eslint/plugin-kit@npm:0.2.3"
dependencies:
@@ -1695,7 +1695,7 @@ __metadata:
languageName: node
linkType: hard
-"@humanwhocodes/retry@npm:^0.4.0":
+"@humanwhocodes/retry@npm:^0.4.1":
version: 0.4.1
resolution: "@humanwhocodes/retry@npm:0.4.1"
checksum: 10c0/be7bb6841c4c01d0b767d9bb1ec1c9359ee61421ce8ba66c249d035c5acdfd080f32d55a5c9e859cdd7868788b8935774f65b2caf24ec0b7bd7bf333791f063b
@@ -2082,8 +2082,8 @@ __metadata:
linkType: hard
"@nestjs/common@npm:^10.0.0":
- version: 10.4.7
- resolution: "@nestjs/common@npm:10.4.7"
+ version: 10.4.8
+ resolution: "@nestjs/common@npm:10.4.8"
dependencies:
iterare: "npm:1.2.1"
tslib: "npm:2.7.0"
@@ -2098,13 +2098,13 @@ __metadata:
optional: true
class-validator:
optional: true
- checksum: 10c0/c786d72a160a5cde0cbcce61fa96f34bd2b860adf92091b865c7d94682772217b328b3051a7f58988cdedf083c34258c42bc3309c9df5cf9a698e1fa94d9d54d
+ checksum: 10c0/742fbcf7c791f04c7beb3a81c22b3bac3650c0848295442c18746121fb883a7119ba4795bd696226621e5df3633aa63417bf867f8c55f16203aaf8d0b15f0a55
languageName: node
linkType: hard
"@nestjs/core@npm:^10.0.0":
- version: 10.4.7
- resolution: "@nestjs/core@npm:10.4.7"
+ version: 10.4.8
+ resolution: "@nestjs/core@npm:10.4.8"
dependencies:
"@nuxtjs/opencollective": "npm:0.3.2"
fast-safe-stringify: "npm:2.1.1"
@@ -2126,13 +2126,13 @@ __metadata:
optional: true
"@nestjs/websockets":
optional: true
- checksum: 10c0/34c1601bd09ef7ca56ec57a9e7a729480ffc5ea102bf60427e34ae3642e8a8baa475b3f425b9258c076d110c29aa5b0027acdfb8dca290ad49566cd97be20d60
+ checksum: 10c0/1ac652f9089ec82be8cb6ba86fc83dc228adaae516bee41f1f8dc7201551c8004e9555c3655c5d1bee933da99548ca6cda5523e8ceb1d3146e1c5963b11e041a
languageName: node
linkType: hard
"@nestjs/platform-express@npm:^10.0.0":
- version: 10.4.7
- resolution: "@nestjs/platform-express@npm:10.4.7"
+ version: 10.4.8
+ resolution: "@nestjs/platform-express@npm:10.4.8"
dependencies:
body-parser: "npm:1.20.3"
cors: "npm:2.8.5"
@@ -2142,7 +2142,7 @@ __metadata:
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/core": ^10.0.0
- checksum: 10c0/9796585840d5225fe6489cb36d6443c16cdcd61349c3f9cb9924acdeaf8e111e1b868c5699a1a4c17d5a45b356cf88e4ec5719e75abbc85407d20f342bd7b69d
+ checksum: 10c0/02bcdf13698157ab18febc43e0a17e9e11308963cd9b14974f05064a72df39df84264b6651f19004c5e72b9b30cb8283a8dab0c7cf921fd92eebf0596b9fd8dc
languageName: node
linkType: hard
@@ -2162,8 +2162,8 @@ __metadata:
linkType: hard
"@nestjs/testing@npm:^10.0.0":
- version: 10.4.7
- resolution: "@nestjs/testing@npm:10.4.7"
+ version: 10.4.8
+ resolution: "@nestjs/testing@npm:10.4.8"
dependencies:
tslib: "npm:2.7.0"
peerDependencies:
@@ -2176,7 +2176,7 @@ __metadata:
optional: true
"@nestjs/platform-express":
optional: true
- checksum: 10c0/8bd59a951e2513721bbd683225f1f834db3f40ef8fc1f77213b3c854acd042e5f012c43d81d71b477582f522ef248932b6579c273e9622c82eaa5652178a0ee1
+ checksum: 10c0/a51518514fb3ccab56e91aee54506cd0f8fdf88113ff58442c734473a65beffb75174c09c1dd0b70a35915a2d9b5b639f4ae0ecf2b9932647e3edab56c8e22dd
languageName: node
linkType: hard
@@ -2279,128 +2279,128 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/rollup-android-arm-eabi@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.26.0"
+"@rollup/rollup-android-arm-eabi@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.3"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@rollup/rollup-android-arm64@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-android-arm64@npm:4.26.0"
+"@rollup/rollup-android-arm64@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-android-arm64@npm:4.27.3"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-arm64@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-darwin-arm64@npm:4.26.0"
+"@rollup/rollup-darwin-arm64@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.27.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-x64@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-darwin-x64@npm:4.26.0"
+"@rollup/rollup-darwin-x64@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-darwin-x64@npm:4.27.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-arm64@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.26.0"
+"@rollup/rollup-freebsd-arm64@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.3"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-x64@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-freebsd-x64@npm:4.26.0"
+"@rollup/rollup-freebsd-x64@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.27.3"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-gnueabihf@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.26.0"
+"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-musleabihf@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.26.0"
+"@rollup/rollup-linux-arm-musleabihf@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.3"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-gnu@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.26.0"
+"@rollup/rollup-linux-arm64-gnu@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-musl@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.26.0"
+"@rollup/rollup-linux-arm64-musl@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-powerpc64le-gnu@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.26.0"
+"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-gnu@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.26.0"
+"@rollup/rollup-linux-riscv64-gnu@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.3"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-s390x-gnu@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.26.0"
+"@rollup/rollup-linux-s390x-gnu@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.3"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-gnu@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.26.0"
+"@rollup/rollup-linux-x64-gnu@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-musl@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.26.0"
+"@rollup/rollup-linux-x64-musl@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-win32-arm64-msvc@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.26.0"
+"@rollup/rollup-win32-arm64-msvc@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-win32-ia32-msvc@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.26.0"
+"@rollup/rollup-win32-ia32-msvc@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@rollup/rollup-win32-x64-msvc@npm:4.26.0":
- version: 4.26.0
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.26.0"
+"@rollup/rollup-win32-x64-msvc@npm:4.27.3":
+ version: 4.27.3
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -2437,13 +2437,13 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^3.1.6":
- version: 3.1.6
- resolution: "@smithy/abort-controller@npm:3.1.6"
+"@smithy/abort-controller@npm:^3.1.8":
+ version: 3.1.8
+ resolution: "@smithy/abort-controller@npm:3.1.8"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/9933c69a81223e9a6a864c9d1f7cc00b0788ac6637b57eea8390d2b6cb39a0b87a406d32a5052441b3e9fdef9812870676464349abb5b19d3ee0ea348e2f7b1d
+ checksum: 10c0/ba62148955592036502880ac68a3fd1d4b0b70e3ace36ef9f1d0f507287795875598e2b9823ab6cdf542dcdb9fe75b57872694fc4a8108f7ab71938426a1c89c
languageName: node
linkType: hard
@@ -2466,158 +2466,158 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^3.0.10":
- version: 3.0.10
- resolution: "@smithy/config-resolver@npm:3.0.10"
+"@smithy/config-resolver@npm:^3.0.12":
+ version: 3.0.12
+ resolution: "@smithy/config-resolver@npm:3.0.12"
dependencies:
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^3.0.8"
+ "@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/0c15dcc4d1d603c19ce01c7f0dcf2aa112edccfaf38a925554fbe61102e1ded9009d2cc799068bfd187eabef7fde95343596b5b970ae5750540531e7018b1333
+ checksum: 10c0/01686446680e1a0e98051034671813f2ea78664ee8a6b22811a12fb937c1ac5b67b63ab9a6ae5995c61991344fbacebc906189cd063512ef1c1bdfb6c491941d
languageName: node
linkType: hard
-"@smithy/core@npm:^2.5.1":
- version: 2.5.1
- resolution: "@smithy/core@npm:2.5.1"
+"@smithy/core@npm:^2.5.3":
+ version: 2.5.3
+ resolution: "@smithy/core@npm:2.5.3"
dependencies:
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-body-length-browser": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/26afd0bdcc15f493442cd86507c929aabfc4df6819a80707d3d57cfc46b72249e38725b33c44c161fe4194cca01613758838ebd198248fa0f0b711f3e6ac6406
+ checksum: 10c0/36064babd1a46163ac32b4819dac3a11da853286e9f388e5189098e984ec4c3cbb514ead6f73f0e3a619e22df4ad75146a690fa352f23657614dfeaefbded15a
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^3.2.5":
- version: 3.2.5
- resolution: "@smithy/credential-provider-imds@npm:3.2.5"
+"@smithy/credential-provider-imds@npm:^3.2.6, @smithy/credential-provider-imds@npm:^3.2.7":
+ version: 3.2.7
+ resolution: "@smithy/credential-provider-imds@npm:3.2.7"
dependencies:
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/property-provider": "npm:^3.1.10"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/b381167dec3cf3394ee36cd2ecf7c67e14f7b1eef2d5fd3ce57657682d2b1559d6750eec312bdc340d8a0064cc020ff575b344ff3f5eb2ea54dd7f1bed7b89c3
+ checksum: 10c0/c0f1d0c439f26d046ef130057ea1727cb06cab96054ed23202d6eb7eaec3e5d8ef96380b69fbdec505c569e5f2b56ed68ba8c687f47d7d99607c30e5f6e469c1
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^3.1.7":
- version: 3.1.7
- resolution: "@smithy/eventstream-codec@npm:3.1.7"
+"@smithy/eventstream-codec@npm:^3.1.9":
+ version: 3.1.9
+ resolution: "@smithy/eventstream-codec@npm:3.1.9"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-hex-encoding": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/6d3e93f5906501ea278c447285a1807bf0a5f2aee4683f6f1b3340e8a11e3c929b2c6389efa470c77eb03eea17824507f03224421768928d4ac5141a5b98eeff
+ checksum: 10c0/857761ffcf4cb6296dcb28763417b2e8f8ab2001f2fbf26ae169a6a57b4e095af380d81361ce1eddaacd664c99205071f1fb4ad4e6c4949022e7e86a6dd51590
languageName: node
linkType: hard
-"@smithy/eventstream-serde-browser@npm:^3.0.11":
- version: 3.0.11
- resolution: "@smithy/eventstream-serde-browser@npm:3.0.11"
+"@smithy/eventstream-serde-browser@npm:^3.0.13":
+ version: 3.0.13
+ resolution: "@smithy/eventstream-serde-browser@npm:3.0.13"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^3.0.10"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.12"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/d1e7007b5de4bff20f751d6751da74690c03dd4eb339055a5f4b0db6327f9d901f385f2ce100a8d3658df6714955b4403f013285294855c30dc78a50435fdf92
+ checksum: 10c0/ca3b37dbb3a4e8ea04e101c6555cc75b517544397b8d4daf5b6ba31ed38aa0ccb439d84b081e3660e9bcad7a9f9faa4e8fc006c145da6355635bcbd8fec80204
languageName: node
linkType: hard
-"@smithy/eventstream-serde-config-resolver@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.8"
+"@smithy/eventstream-serde-config-resolver@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/a18f5b7cfc6f9ab79d282138452b7475cafb354d2d6d9d6d8ae7815342537bd81f6e1423aa9cb77a6006d24d6a65ef7bdc47ea823f77d4b65f440e0eec708b7b
+ checksum: 10c0/0b5c4bc240ee092b2e5d968ceba54b7a1cd41a13dceb88fb7c4cb809debfa29b2b40addbdd19e4ca9ecd499f1947fbd06e2eeeb3e132f0b23250b37cef1a8903
languageName: node
linkType: hard
-"@smithy/eventstream-serde-node@npm:^3.0.10":
- version: 3.0.10
- resolution: "@smithy/eventstream-serde-node@npm:3.0.10"
+"@smithy/eventstream-serde-node@npm:^3.0.12":
+ version: 3.0.12
+ resolution: "@smithy/eventstream-serde-node@npm:3.0.12"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^3.0.10"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/eventstream-serde-universal": "npm:^3.0.12"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/d67feaa889473f85459061fda50ab4742cf25f8e93557a307d3c2990620a5c5893bce477ac1d747838672b7ae65d97856245f6bbe1379de9b90cd57cf6c83e2e
+ checksum: 10c0/7ec4b2d18992fd56be8fbd598ede7db1990512bfcc6f1a75b04dcd919d1aa328578c404ebde68779fd175259ee69044198ecd8c244d89e66e9cb05ffb9c14468
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^3.0.10":
- version: 3.0.10
- resolution: "@smithy/eventstream-serde-universal@npm:3.0.10"
+"@smithy/eventstream-serde-universal@npm:^3.0.12":
+ version: 3.0.12
+ resolution: "@smithy/eventstream-serde-universal@npm:3.0.12"
dependencies:
- "@smithy/eventstream-codec": "npm:^3.1.7"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/eventstream-codec": "npm:^3.1.9"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/5f3bd8751e6ed6c2c3ea6da54dd2ecd8906de8d2606e6fb9da5f0d0500c4b5d85a1a83837cc661bcc3a058b485459b12ddcc48810b12afd8d140cc76d2516346
+ checksum: 10c0/5247673c34cba51e9764503812e693dce9653b5c2341b02b9f500ff0ee00f3f47e7041ac10085b2ee916d340e24f6e346fa5a0fdc9820fd952bcc5d88f487178
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^4.0.0":
- version: 4.0.0
- resolution: "@smithy/fetch-http-handler@npm:4.0.0"
+"@smithy/fetch-http-handler@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "@smithy/fetch-http-handler@npm:4.1.1"
dependencies:
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/querystring-builder": "npm:^3.0.8"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/querystring-builder": "npm:^3.0.10"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-base64": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/82035ada9ca7cf40c897ac6e8ff0097fad46a857a46ccc2dbe353ec730dbbd1d5733c9e82a1b09f606c12c64add35a045d8c860e4fc780acbf06f9d3fae8d90c
+ checksum: 10c0/e6307dfdb621a5481e7b263e2ad0a6c4b54982504c0c1ed8e2cd12d0b9b09dd99d0a7e4ebff9d8f30f1935bae24945f44cef98eca42ad119e4f1f23507ebb081
languageName: node
linkType: hard
-"@smithy/hash-blob-browser@npm:^3.1.7":
- version: 3.1.7
- resolution: "@smithy/hash-blob-browser@npm:3.1.7"
+"@smithy/hash-blob-browser@npm:^3.1.9":
+ version: 3.1.9
+ resolution: "@smithy/hash-blob-browser@npm:3.1.9"
dependencies:
"@smithy/chunked-blob-reader": "npm:^4.0.0"
"@smithy/chunked-blob-reader-native": "npm:^3.0.1"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/fda71b16b2ffdb47dd75c4568c28a712703ce987e35c646f89860668ffb0cc38c15410b6319ce077e5dc5c3e4427af9e4620281a0a491a163e2bc23c507fe610
+ checksum: 10c0/728becc50fd2463b93b77b6bfadafeee280f5c01d3a92ec227233cc47c3005f563209d1d144b83461f46d6c8a0674bb458581f6a1627ff43826a4466a0860e40
languageName: node
linkType: hard
-"@smithy/hash-node@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/hash-node@npm:3.0.8"
+"@smithy/hash-node@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/hash-node@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-buffer-from": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/fa8fa82b830550de01e981e0265dad3d42802208c128cdd1b970c513726d6f29f030a52d7087e1fbee751011b6dcec479e592941252a7e47004418c8d605e1a4
+ checksum: 10c0/1134872f7c4ba2c35583bd0932bf0b8cb99f5f24e79235660a5e0e0914c1d587c0ee7d44d5d4a8c0ed0c77249fc3a154d28a994dc2f42e27cf212d2052a5d0bd
languageName: node
linkType: hard
-"@smithy/hash-stream-node@npm:^3.1.7":
- version: 3.1.7
- resolution: "@smithy/hash-stream-node@npm:3.1.7"
+"@smithy/hash-stream-node@npm:^3.1.9":
+ version: 3.1.9
+ resolution: "@smithy/hash-stream-node@npm:3.1.9"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/26f1a49f9fa5486fbca97034c171f36675cffdf2fe1039cfd918a83b63d9cbb1b0cdb7c399c21f1d914f3c4df5e16754b01a755b2eadaf51c519aa183ac71ea3
+ checksum: 10c0/de292bb7f70ed6f8fab73a9c0adcd0d659a5ecb46ade36e852a0402323715223c859b10e7344d31c16d59b9a4077626c666754421cfd5a04e17dc1a3e2a5490d
languageName: node
linkType: hard
-"@smithy/invalid-dependency@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/invalid-dependency@npm:3.0.8"
+"@smithy/invalid-dependency@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/invalid-dependency@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/7769ea3d6cc2530da1c6ecc6bcc90e7b6a2338d87465965f0845ad28be5d27c08516dc79ef77af2a002fe0329367fa8260399abb29676f3f37adf8c2cf2772c8
+ checksum: 10c0/98bae16110f3f895991c1bd0a4291d9c900380b159c6d50d7327bd5161469f63510209ea3b08cfb0a12a66dfd9de8a1dc1ac71708b68f97c06b4ee6a2cde60b7
languageName: node
linkType: hard
@@ -2639,214 +2639,214 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/md5-js@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/md5-js@npm:3.0.8"
+"@smithy/md5-js@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/md5-js@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/83654b7c65be77d3e170f63a5dab4b3d19bb518ca69691b0a9c257de8101a02e005bc2136074d6ab18d0a50cef746ea610527e3530c6e843b6b9529ed9b488f1
+ checksum: 10c0/ab0675b36cd48c76f0512ff5c87bc3e3e64288123ee37a493bc514fbcf48355eb8a9e5ed30efb9066286122dc6d3e5981b0f0f619929bb568d4b3d9023de4ccc
languageName: node
linkType: hard
-"@smithy/middleware-content-length@npm:^3.0.10":
- version: 3.0.10
- resolution: "@smithy/middleware-content-length@npm:3.0.10"
+"@smithy/middleware-content-length@npm:^3.0.12":
+ version: 3.0.12
+ resolution: "@smithy/middleware-content-length@npm:3.0.12"
dependencies:
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/2e7a6e36f39e1ce78ba3800979004a801fa93c7ef3b143e1c1b3ff64e4a2b92762e808ab75c2f7a1acc6133f4b301624dc08dc2354b37d5735e02ee4ccaddf78
+ checksum: 10c0/6d8db9bc97e3c09133ec9dc3114ca3e9ad3db5c234a2e109c3010e8661b488b08b8b2066bb2cd13da11d6ccffb9bbfbec1fa1552386d6e0d8d433b5041a6978b
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^3.2.1":
- version: 3.2.1
- resolution: "@smithy/middleware-endpoint@npm:3.2.1"
- dependencies:
- "@smithy/core": "npm:^2.5.1"
- "@smithy/middleware-serde": "npm:^3.0.8"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/url-parser": "npm:^3.0.8"
- "@smithy/util-middleware": "npm:^3.0.8"
+"@smithy/middleware-endpoint@npm:^3.2.3":
+ version: 3.2.3
+ resolution: "@smithy/middleware-endpoint@npm:3.2.3"
+ dependencies:
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/middleware-serde": "npm:^3.0.10"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/url-parser": "npm:^3.0.10"
+ "@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
- checksum: 10c0/d1d6406840262388a5845a29d9a2e956a2f3c42f0fb981cd34b95145a5a509bebd25b3e4fad73951b56ff71757d00f7e8ec23bc75c6362a97dacab114ecf9140
+ checksum: 10c0/95f8022ecf5144004b02cbe1da2e3ad1815c2e2e3df47d5b9958252455f0f20e7f44740cd426d5c95a5051f895c258ba5cbcfa4f4a2368306fa628d4e0c1045d
languageName: node
linkType: hard
-"@smithy/middleware-retry@npm:^3.0.25":
- version: 3.0.25
- resolution: "@smithy/middleware-retry@npm:3.0.25"
+"@smithy/middleware-retry@npm:^3.0.27":
+ version: 3.0.27
+ resolution: "@smithy/middleware-retry@npm:3.0.27"
dependencies:
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/service-error-classification": "npm:^3.0.8"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-middleware": "npm:^3.0.8"
- "@smithy/util-retry": "npm:^3.0.8"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/service-error-classification": "npm:^3.0.10"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-middleware": "npm:^3.0.10"
+ "@smithy/util-retry": "npm:^3.0.10"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
- checksum: 10c0/5ebb8ed29be344ab92db28fbe62f1887b6a9cf7c5029450454c1a384844cd4e28a99c4c381ca2466d848d545ee885c35f6c5b965bc7a90a9a20b301433caed37
+ checksum: 10c0/a6ce5a203a88bbee6400c7229a2fb15167b315af71c9ddf13f47b83353aded35c44603ff3c71d204273a1841460011f8e6cf53929fbe4cae022d27dbfc9263a4
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/middleware-serde@npm:3.0.8"
+"@smithy/middleware-serde@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/middleware-serde@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/b7cbf57955ab82cd5ddb07fcceecdf1fbd6a3f9479179d1014d34e88f2dd32c0ffd4fb631cbb7a05ef4635efab34b32141ea5526b388138f71589ba993560fb2
+ checksum: 10c0/407ddbbf856c54ba5592b76aeeadc5a09a679614e8eaac91b8d662b6bd7e9cf16b60190eb15254befd34311ac137260c00433ac9126a734c6c60a256e55c0e69
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/middleware-stack@npm:3.0.8"
+"@smithy/middleware-stack@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/middleware-stack@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/1a5248cdbe8d982e11fba679e9582cde8fa36093376d5076d2936e5be919866a7101089194087cda21a0b032857bf1ebca627d8e1c3e5d9519749fc5207692f5
+ checksum: 10c0/badcc1d275f7fd4957b6bce4e917060f971a4199e717cde7d3b4909be5d40e61c93328e2968e6885b4e8f7f5772e84ac743ddcc80031ab52efb47a3a3168beb0
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^3.1.9":
- version: 3.1.9
- resolution: "@smithy/node-config-provider@npm:3.1.9"
+"@smithy/node-config-provider@npm:^3.1.11":
+ version: 3.1.11
+ resolution: "@smithy/node-config-provider@npm:3.1.11"
dependencies:
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/shared-ini-file-loader": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/property-provider": "npm:^3.1.10"
+ "@smithy/shared-ini-file-loader": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/2ecd0385858f0ea818f7bef1e129e62fccd8a6ffa888f2f13286f8ffe1995f84e0e5040b7ed7b5235462ac795e9fc479ca5c5637b3bf30df2613baa6f4e718c9
+ checksum: 10c0/b80a6d3f96979696499b27155c3e075f139fa6be6a2ea9688735bd1802f22bb41be4545dac9ea4db51519d22c6fb469e5bfad9063e2fa2b8771130d2f2d611a7
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^3.2.5":
- version: 3.2.5
- resolution: "@smithy/node-http-handler@npm:3.2.5"
+"@smithy/node-http-handler@npm:^3.3.1":
+ version: 3.3.1
+ resolution: "@smithy/node-http-handler@npm:3.3.1"
dependencies:
- "@smithy/abort-controller": "npm:^3.1.6"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/querystring-builder": "npm:^3.0.8"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/abort-controller": "npm:^3.1.8"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/querystring-builder": "npm:^3.0.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/617b2f1c3fea4f8b549b481ec73ec2a7a404b8a8c8b47bfb8327626818f84ed94c1c5496084402a015705af715b5353a07d28ea0869ee6c877c4c8a9d29a10ab
+ checksum: 10c0/32bb521a6cc7692ee33a362256661dbdccedfe448f116595bf6870f5c4343e3152daf5f9ae0b43d4a888016ea9161375858046f141513fb1d6c61545572712fc
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^3.1.8":
- version: 3.1.8
- resolution: "@smithy/property-provider@npm:3.1.8"
+"@smithy/property-provider@npm:^3.1.10, @smithy/property-provider@npm:^3.1.9":
+ version: 3.1.10
+ resolution: "@smithy/property-provider@npm:3.1.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/383621a8cf8aafb4a30ecf105fb6d9546f75fac7134b9d9e91248ebacb035867047170cbe01d4ca8d60b62d1fb6287d4fb3a752a10fe9b33f9520a951d0bb72c
+ checksum: 10c0/8dfcf30565b00287fd3c5ad2784f5c820264251dc9d1ac7334a224e40eb3eac4762a6198961d3e261bbcc738fc0c7c88ebd1007761e994569342f339ff503e1e
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^4.1.5":
- version: 4.1.5
- resolution: "@smithy/protocol-http@npm:4.1.5"
+"@smithy/protocol-http@npm:^4.1.7":
+ version: 4.1.7
+ resolution: "@smithy/protocol-http@npm:4.1.7"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/f70bd473e3c79cd33a5e1f02a30251f3e4bfa127615f6032d980a483f8abed76555f525e55f0eb8b5ac7d33dd5f359498a3e96b98c646a09d83e2d68b1fa949a
+ checksum: 10c0/1d5bf3e3ae9b3c7b58934163f56364228a42d50dcc64c83855be846d46f4954ed36b1bc3d949cd24bb5da3787d9b787637cffa5e3fdbbe8e1932e05ea14eace6
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/querystring-builder@npm:3.0.8"
+"@smithy/querystring-builder@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/querystring-builder@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-uri-escape": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/d3bd7af1e291bca9ac7693f6d4bfd7ae196cb3c5b26895974029163b3b9a86c03b5533fd79f9dafca6250db80a1da7be33d7d2e87eb6bf7bcde61370ea612f7e
+ checksum: 10c0/3a95519ee41f195c3b56978803d50ba2b5b2ce46fc0de063442cdab347528cd0e3c3d5cd0361bc33ceeec1893198cb3246c201026c3917349e0fb908ca8c3fb0
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/querystring-parser@npm:3.0.8"
+"@smithy/querystring-parser@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/querystring-parser@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/8f5643f80e6146e849f239b912e555a4f146b0239da9de5f67fc99e5e2b97460ff4c54395417b14874409f071667bb1149f3ef5d1b1cc6288bbe04e21fc9bb7a
+ checksum: 10c0/e57c15087246e6a50348d557b670ded987ed5d88d4279a0a4896828d2be9fb2949f6b6c8656e5be45282c25cfa2fe62fe7fd9bd159ac30177f5b99181a5f4b74
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/service-error-classification@npm:3.0.8"
+"@smithy/service-error-classification@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/service-error-classification@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
- checksum: 10c0/30256b7b1e4ff877a555ae778954e535bd43cc5da9189ad265b9596a6414774d8a6924da42f5c87e9dfe837d44027cb22d26037c3bb3e6c64ff486c9b8b5ee53
+ "@smithy/types": "npm:^3.7.1"
+ checksum: 10c0/9b9d5e0436d168f6a3290edb008292e2cc28ec7d2d9227858aff7c9c70d732336b71898eb0cb7fa76ea04c0180ec3afaf7930c92e881efd4b91023d7d8919044
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^3.1.9":
- version: 3.1.9
- resolution: "@smithy/shared-ini-file-loader@npm:3.1.9"
+"@smithy/shared-ini-file-loader@npm:^3.1.10, @smithy/shared-ini-file-loader@npm:^3.1.11":
+ version: 3.1.11
+ resolution: "@smithy/shared-ini-file-loader@npm:3.1.11"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/0ca909741d634fa2ea5c53dc828347181495be431d5018b8cea468e30e5d7066b91bf39b0e182148b787ecadb0509c95e41338829b6de87d03c0f072fa436d8c
+ checksum: 10c0/7479713932f00a6b85380fa8012ad893bb61e7ea614976e0ab2898767ff7dc91bb1dd813a4ec72e4850d6b10296f11032cd5dd916970042be376c19d0d3954b6
languageName: node
linkType: hard
-"@smithy/signature-v4@npm:^4.2.1":
- version: 4.2.1
- resolution: "@smithy/signature-v4@npm:4.2.1"
+"@smithy/signature-v4@npm:^4.2.2":
+ version: 4.2.3
+ resolution: "@smithy/signature-v4@npm:4.2.3"
dependencies:
"@smithy/is-array-buffer": "npm:^3.0.0"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-hex-encoding": "npm:^3.0.0"
- "@smithy/util-middleware": "npm:^3.0.8"
+ "@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-uri-escape": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/c1dc0c4adc65c6019321cc15ca1f8b185bc682c80d6f3b3034653d523dd5da197db4f2fe892cdb3d0152b967eeee97cba085e45e4deed8035bcec23adfd6ee24
+ checksum: 10c0/7cecc9c73cb863e15c4517601a2a1e82b3728fbe174c533d807beb54f59f66792891c82955d874baa27640201d719b6ea63497b376e4c7cd09d5d52ea36fe3fc
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^3.4.2":
- version: 3.4.2
- resolution: "@smithy/smithy-client@npm:3.4.2"
+"@smithy/smithy-client@npm:^3.4.4":
+ version: 3.4.4
+ resolution: "@smithy/smithy-client@npm:3.4.4"
dependencies:
- "@smithy/core": "npm:^2.5.1"
- "@smithy/middleware-endpoint": "npm:^3.2.1"
- "@smithy/middleware-stack": "npm:^3.0.8"
- "@smithy/protocol-http": "npm:^4.1.5"
- "@smithy/types": "npm:^3.6.0"
- "@smithy/util-stream": "npm:^3.2.1"
+ "@smithy/core": "npm:^2.5.3"
+ "@smithy/middleware-endpoint": "npm:^3.2.3"
+ "@smithy/middleware-stack": "npm:^3.0.10"
+ "@smithy/protocol-http": "npm:^4.1.7"
+ "@smithy/types": "npm:^3.7.1"
+ "@smithy/util-stream": "npm:^3.3.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/f405aba8f3c831a3b6d2b4b0799c8de2e3216aec7b6045d79c41a4cb577368b179d6214bb4abfa345d1dd7c100ffa9a5ad04c04d128dfced587aa54fc1647f50
+ checksum: 10c0/3f47d2504ec02c0541b1ca73a4efed986922359e33c7746b2b31dc247cec1804d023fd8e24ff2f6efea809dddc94b447e016391dbb3bf40133ba5fe53884b3b2
languageName: node
linkType: hard
-"@smithy/types@npm:^3.6.0":
- version: 3.6.0
- resolution: "@smithy/types@npm:3.6.0"
+"@smithy/types@npm:^3.7.1":
+ version: 3.7.1
+ resolution: "@smithy/types@npm:3.7.1"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/de16293da6cf6f1aa4b2ee604df245ef33688d985f27b5dae3aa69e18ed5b17baa1bc1a42412f1454c50d09a1817c8a54e7d6261c90fee230e103ff91e55174a
+ checksum: 10c0/c82ad86087b6e0d2261f581a8cca1694a0af31458d7789ff5d8787973b4940a6d035082005dfc87857f266ee9cb512f7eb80535917e6dd6eb3d7d70c45d0f9aa
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/url-parser@npm:3.0.8"
+"@smithy/url-parser@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/url-parser@npm:3.0.10"
dependencies:
- "@smithy/querystring-parser": "npm:^3.0.8"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/querystring-parser": "npm:^3.0.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/da2abb72e58bf419a7f27f78a2f946a515dff363419056015a2fa5f62d18de9f51d355143c428d2411051264552ae4e0d746e943fcb0c6ae3758912294a6499d
+ checksum: 10c0/29c9d03ee86936ffb3bdcbb84ce14b7dacaadb2e61b5ed78ee91dfacb98e42048c70c718077347f0f39bce676168ba5fc1f1a8b19988f89f735c0b5e17cdc77a
languageName: node
linkType: hard
@@ -2908,42 +2908,42 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-browser@npm:^3.0.25":
- version: 3.0.25
- resolution: "@smithy/util-defaults-mode-browser@npm:3.0.25"
+"@smithy/util-defaults-mode-browser@npm:^3.0.27":
+ version: 3.0.27
+ resolution: "@smithy/util-defaults-mode-browser@npm:3.0.27"
dependencies:
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/property-provider": "npm:^3.1.10"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/725f1ee8f726177dd299cb3360c6b12f817defef917b9229cd5a9201a69dd29e07e1df24d90c3559b07b75bc7b90fbce74677ec9ff2ee8845e2d76c4e8c1a4fb
+ checksum: 10c0/e55d037eb48ca5b24d5132ae782ef0122f4aff0bb43115bdebd15e467beb12a94738faa0140b0ab5853addcc1ebab2fbf1c0c5b0c2e05ec6e0b740566056b36f
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-node@npm:^3.0.25":
- version: 3.0.25
- resolution: "@smithy/util-defaults-mode-node@npm:3.0.25"
+"@smithy/util-defaults-mode-node@npm:^3.0.27":
+ version: 3.0.27
+ resolution: "@smithy/util-defaults-mode-node@npm:3.0.27"
dependencies:
- "@smithy/config-resolver": "npm:^3.0.10"
- "@smithy/credential-provider-imds": "npm:^3.2.5"
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/property-provider": "npm:^3.1.8"
- "@smithy/smithy-client": "npm:^3.4.2"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/config-resolver": "npm:^3.0.12"
+ "@smithy/credential-provider-imds": "npm:^3.2.7"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/property-provider": "npm:^3.1.10"
+ "@smithy/smithy-client": "npm:^3.4.4"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/5fd1f18aafff469ff537e07568e2c329602fe99c31a45654c09a27bf4fa38b74652b3b4d43d3e3fd9c9dc8186f1401883b1d392bc71f2b0aa72479820edf0337
+ checksum: 10c0/79ceba444b36377ff93a94c9b269162907d74388ada4e94c87d2af715b76ed7d12aa274000862396762e2c57f205261f1490f93b8ecb6e031a4872fc823a0c86
languageName: node
linkType: hard
-"@smithy/util-endpoints@npm:^2.1.4":
- version: 2.1.4
- resolution: "@smithy/util-endpoints@npm:2.1.4"
+"@smithy/util-endpoints@npm:^2.1.6":
+ version: 2.1.6
+ resolution: "@smithy/util-endpoints@npm:2.1.6"
dependencies:
- "@smithy/node-config-provider": "npm:^3.1.9"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/node-config-provider": "npm:^3.1.11"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/8ef44b2ac241a5687c999f90e0aaf6f495cc46b0a604f82f44c927f7ce2f406dac53bb4030f4a83b5cf2fc5f1c73865f5ca9bea0db297e06d0fe089cb765ebae
+ checksum: 10c0/a1cd8cc912fb67ee07e6095990f3b237b2e53f73e493b2aaa85af904c4ce73ce739a68e4d3330a37b8c96cd00b6845205b836ee4ced97cf622413a34b913adc2
languageName: node
linkType: hard
@@ -2956,40 +2956,40 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/util-middleware@npm:3.0.8"
+"@smithy/util-middleware@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/util-middleware@npm:3.0.10"
dependencies:
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/b7deae724fade93a00745e64081e7e2dba6a5d86cae9fcfb171cdc117d6574e5a63c1a599dddcc3f3175a8f8821d92052f4b9ab64b3839cdf035ac17e57eede1
+ checksum: 10c0/01bbbd31044ab742985acac36aa61e240db16ed7dfa22b73779877eb5db0af14351883506fb34d2ee964598d72f4998d79409c271a62310647fb28faccd855a2
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^3.0.8":
- version: 3.0.8
- resolution: "@smithy/util-retry@npm:3.0.8"
+"@smithy/util-retry@npm:^3.0.10":
+ version: 3.0.10
+ resolution: "@smithy/util-retry@npm:3.0.10"
dependencies:
- "@smithy/service-error-classification": "npm:^3.0.8"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/service-error-classification": "npm:^3.0.10"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/1ca5fdf8f5827f7cb0dacd917ea2bd1d0a01fe54dc890654094867f6fc78f973f47f4e2e323f35e4951afa12924999527a386f5e271715ba86739dd8aabc72ce
+ checksum: 10c0/ac1dcfd2e4ea1a4f99a42447b7fd8e4ea21589dfd87e9bc6a7bdf1d26e1f93ec71aa4cfde5e024b00d9b713b889f9db20a8d81b9e3ccdbe6f72bedb6269f01b8
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^3.2.1":
- version: 3.2.1
- resolution: "@smithy/util-stream@npm:3.2.1"
+"@smithy/util-stream@npm:^3.3.1":
+ version: 3.3.1
+ resolution: "@smithy/util-stream@npm:3.3.1"
dependencies:
- "@smithy/fetch-http-handler": "npm:^4.0.0"
- "@smithy/node-http-handler": "npm:^3.2.5"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/fetch-http-handler": "npm:^4.1.1"
+ "@smithy/node-http-handler": "npm:^3.3.1"
+ "@smithy/types": "npm:^3.7.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-buffer-from": "npm:^3.0.0"
"@smithy/util-hex-encoding": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/7e73a764ab6fbaef6b266d6a0ad540e04bcd9065d55ead0efc41153e3cd34576e28a944df9176bee8ba84345a59c36625aaa83fa0f8336d2e31c98530c4519a1
+ checksum: 10c0/dafaf4448e69cd65eda2bc7c43a48e945905808f635397e290b4e19cff2705ab444f1798829ca48b9a9efe4b7e569180eb6275ca42d04ce5abcf2dc9443f9c67
languageName: node
linkType: hard
@@ -3022,14 +3022,21 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-waiter@npm:^3.1.7":
- version: 3.1.7
- resolution: "@smithy/util-waiter@npm:3.1.7"
+"@smithy/util-waiter@npm:^3.1.9":
+ version: 3.1.9
+ resolution: "@smithy/util-waiter@npm:3.1.9"
dependencies:
- "@smithy/abort-controller": "npm:^3.1.6"
- "@smithy/types": "npm:^3.6.0"
+ "@smithy/abort-controller": "npm:^3.1.8"
+ "@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/5394b180145af2d6020965c0f58157b137f3fcf5357de4334373bcb143a58190cffb5cdbc39d08b79968fd51a96b88c75da3bfeb7898bb231db7225ea26efe69
+ checksum: 10c0/c2e4b79412e26f70f4c63aebc519046a5a58a19f36bbc91702f402db5c8d1e065e081603f0db389682b1d84c1e67922c7f8d9921994a455532d4d093fff2f356
+ languageName: node
+ linkType: hard
+
+"@socket.io/component-emitter@npm:~3.1.0":
+ version: 3.1.2
+ resolution: "@socket.io/component-emitter@npm:3.1.2"
+ checksum: 10c0/c4242bad66f67e6f7b712733d25b43cbb9e19a595c8701c3ad99cbeb5901555f78b095e24852f862fffb43e96f1d8552e62def885ca82ae1bb05da3668fd87d7
languageName: node
linkType: hard
@@ -3169,21 +3176,21 @@ __metadata:
languageName: node
linkType: hard
-"@tanstack/query-core@npm:5.59.20":
- version: 5.59.20
- resolution: "@tanstack/query-core@npm:5.59.20"
- checksum: 10c0/c93a8d41e21db532e92c1c90916bec578729d32d1f39d655603b9e81a9d5aebc8588a4d6a75928e04d3ddc90e71a1f8dc066a61d0ba24108eaf60cc2ce024a2f
+"@tanstack/query-core@npm:5.60.6":
+ version: 5.60.6
+ resolution: "@tanstack/query-core@npm:5.60.6"
+ checksum: 10c0/3339c637b00b38b704dfdde26bc475e6d1b46d130b2b22383e73012e791c8747ebebb8c72dd645e214691fcdbd2f09138d7f5b61e5c1fe64955850ddbbe32e11
languageName: node
linkType: hard
"@tanstack/react-query@npm:^5.59.20":
- version: 5.60.2
- resolution: "@tanstack/react-query@npm:5.60.2"
+ version: 5.60.6
+ resolution: "@tanstack/react-query@npm:5.60.6"
dependencies:
- "@tanstack/query-core": "npm:5.59.20"
+ "@tanstack/query-core": "npm:5.60.6"
peerDependencies:
react: ^18 || ^19
- checksum: 10c0/be52cff84d3c38f2205816ef48f806d7a025d0daa6d92c08eedf4a0839782fbcf01ae2899ae2ae92f7b0c189254b1a8d6363791576950154d8dc7016bf81b4bf
+ checksum: 10c0/534a740315b18675f6573be2be5582fbc7b5fad435494f2ea5c3ebeb146aca7c0fc5d9874d2eb14d7780f0347f398414016c1632ac0e5e9ec43b9feecb426299
languageName: node
linkType: hard
@@ -3458,11 +3465,11 @@ __metadata:
linkType: hard
"@types/node@npm:*, @types/node@npm:^22.9.0":
- version: 22.9.0
- resolution: "@types/node@npm:22.9.0"
+ version: 22.9.1
+ resolution: "@types/node@npm:22.9.1"
dependencies:
undici-types: "npm:~6.19.8"
- checksum: 10c0/3f46cbe0a49bab4ba30494025e4c8a6e699b98ac922857aa1f0209ce11a1313ee46e6808b8f13fe5b8b960a9d7796b77c8d542ad4e9810e85ef897d5593b5d51
+ checksum: 10c0/ea489ae603aa8874e4e88980aab6f2dad09c755da779c88dd142983bfe9609803c89415ca7781f723072934066f63daf2b3339ef084a8ad1a8079cf3958be243
languageName: node
linkType: hard
@@ -3643,15 +3650,15 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:8.14.0, @typescript-eslint/eslint-plugin@npm:^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/eslint-plugin@npm:8.14.0"
+"@typescript-eslint/eslint-plugin@npm:8.15.0, @typescript-eslint/eslint-plugin@npm:^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.14.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.15.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.14.0"
- "@typescript-eslint/type-utils": "npm:8.14.0"
- "@typescript-eslint/utils": "npm:8.14.0"
- "@typescript-eslint/visitor-keys": "npm:8.14.0"
+ "@typescript-eslint/scope-manager": "npm:8.15.0"
+ "@typescript-eslint/type-utils": "npm:8.15.0"
+ "@typescript-eslint/utils": "npm:8.15.0"
+ "@typescript-eslint/visitor-keys": "npm:8.15.0"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.3.1"
natural-compare: "npm:^1.4.0"
@@ -3662,66 +3669,68 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/46c82eb45be82ffec0ab04728a5180691b1d17002c669864861a3044b6d2105a75ca23cc80d18721b40b5e7dff1eff4ed68a43d726e25d55f3e466a9fbeeb873
+ checksum: 10c0/90ef10cc7d37a81abec4f4a3ffdfc3a0da8e99d949e03c75437e96e8ab2e896e34b85ab64718690180a7712581031b8611c5d8e7666d6ed4d60b9ace834d58e3
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:8.14.0, @typescript-eslint/parser@npm:^8.0.0, @typescript-eslint/parser@npm:^8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/parser@npm:8.14.0"
+"@typescript-eslint/parser@npm:8.15.0, @typescript-eslint/parser@npm:^8.0.0, @typescript-eslint/parser@npm:^8.14.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/parser@npm:8.15.0"
dependencies:
- "@typescript-eslint/scope-manager": "npm:8.14.0"
- "@typescript-eslint/types": "npm:8.14.0"
- "@typescript-eslint/typescript-estree": "npm:8.14.0"
- "@typescript-eslint/visitor-keys": "npm:8.14.0"
+ "@typescript-eslint/scope-manager": "npm:8.15.0"
+ "@typescript-eslint/types": "npm:8.15.0"
+ "@typescript-eslint/typescript-estree": "npm:8.15.0"
+ "@typescript-eslint/visitor-keys": "npm:8.15.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/522b7afd25cd302c0510cc71985ba55ff92ecc5dbe3fc74a76fefea0169252fdd4b8cad6291fef05f63dfc173951af450dca20859c7f23e387b2e7410e8b97b1
+ checksum: 10c0/19c25aea0dc51faa758701a5319a89950fd30494d9d645db8ced84fb60714c5e7d4b51fc4ee8ccb07ddefec88c51ee307ee7e49addd6330ee8f3e7ee9ba329fc
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/scope-manager@npm:8.14.0"
+"@typescript-eslint/scope-manager@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/scope-manager@npm:8.15.0"
dependencies:
- "@typescript-eslint/types": "npm:8.14.0"
- "@typescript-eslint/visitor-keys": "npm:8.14.0"
- checksum: 10c0/1e1295c6f9febadf63559aad328b23d960510ce6b4c9f74e10d881c3858fa7f1db767cd1af5272d2fe7c9c5c7daebee71854e6f841e413e5d70af282f6616e26
+ "@typescript-eslint/types": "npm:8.15.0"
+ "@typescript-eslint/visitor-keys": "npm:8.15.0"
+ checksum: 10c0/c27dfdcea4100cc2d6fa967f857067cbc93155b55e648f9f10887a1b9372bb76cf864f7c804f3fa48d7868d9461cdef10bcea3dab7637d5337e8aa8042dc08b9
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/type-utils@npm:8.14.0"
+"@typescript-eslint/type-utils@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/type-utils@npm:8.15.0"
dependencies:
- "@typescript-eslint/typescript-estree": "npm:8.14.0"
- "@typescript-eslint/utils": "npm:8.14.0"
+ "@typescript-eslint/typescript-estree": "npm:8.15.0"
+ "@typescript-eslint/utils": "npm:8.15.0"
debug: "npm:^4.3.4"
ts-api-utils: "npm:^1.3.0"
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/42616a664b38ca418e13504247e5e1bad6ae85c045b48e5735ffab977d4bd58cc86fb9d2292bbb314fa408d78d4b0454c3a27dbf9f881f9921917a942825c806
+ checksum: 10c0/20f09c79c83b38a962cf7eff10d47a2c01bcc0bab7bf6d762594221cd89023ef8c7aec26751c47b524f53f5c8d38bba55a282529b3df82d5f5ab4350496316f9
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/types@npm:8.14.0"
- checksum: 10c0/7707f900e24e60e6780c5705f69627b7c0ef912cb3b095dfc8f4a0c84e866c66b1c4c10278cf99724560dc66985ec640750c4192786a09b853f9bb4c3ca5a7ce
+"@typescript-eslint/types@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/types@npm:8.15.0"
+ checksum: 10c0/84abc6fd954aff13822a76ac49efdcb90a55c0025c20eee5d8cebcfb68faff33b79bbc711ea524e0209cecd90c5ee3a5f92babc7083c081d3a383a0710264a41
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/typescript-estree@npm:8.14.0"
+"@typescript-eslint/typescript-estree@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/typescript-estree@npm:8.15.0"
dependencies:
- "@typescript-eslint/types": "npm:8.14.0"
- "@typescript-eslint/visitor-keys": "npm:8.14.0"
+ "@typescript-eslint/types": "npm:8.15.0"
+ "@typescript-eslint/visitor-keys": "npm:8.15.0"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.3.2"
is-glob: "npm:^4.0.3"
@@ -3731,31 +3740,34 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/5e890d22bd067095f871cf144907a8c302db5b5f014c58906ad58d7f23569951cba805042eac6844744e5abb0d3648c9cc221a91b0703da0a8d6345dc1f83e74
+ checksum: 10c0/3af5c129532db3575349571bbf64d32aeccc4f4df924ac447f5d8f6af8b387148df51965eb2c9b99991951d3dadef4f2509d7ce69bf34a2885d013c040762412
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/utils@npm:8.14.0"
+"@typescript-eslint/utils@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/utils@npm:8.15.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.4.0"
- "@typescript-eslint/scope-manager": "npm:8.14.0"
- "@typescript-eslint/types": "npm:8.14.0"
- "@typescript-eslint/typescript-estree": "npm:8.14.0"
+ "@typescript-eslint/scope-manager": "npm:8.15.0"
+ "@typescript-eslint/types": "npm:8.15.0"
+ "@typescript-eslint/typescript-estree": "npm:8.15.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- checksum: 10c0/1fcc2651d870832a799a5d1c85fc9421853508a006d6a6073c8316b012489dda77e123d13aea8f53eb9030a2da2c0eb273a6946a9941caa2519b99b33e89b720
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: 10c0/65743f51845a1f6fd2d21f66ca56182ba33e966716bdca73d30b7a67c294e47889c322de7d7b90ab0818296cd33c628e5eeeb03cec7ef2f76c47de7a453eeda2
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:8.14.0":
- version: 8.14.0
- resolution: "@typescript-eslint/visitor-keys@npm:8.14.0"
+"@typescript-eslint/visitor-keys@npm:8.15.0":
+ version: 8.15.0
+ resolution: "@typescript-eslint/visitor-keys@npm:8.15.0"
dependencies:
- "@typescript-eslint/types": "npm:8.14.0"
- eslint-visitor-keys: "npm:^3.4.3"
- checksum: 10c0/d0faf70ed9ecff5e36694bbb161a90bea6db59e0e79a7d4f264d67d565c12b13733d664b736b2730935f013c87ce3155cea954a533d28e99987681bc5f6259c3
+ "@typescript-eslint/types": "npm:8.15.0"
+ eslint-visitor-keys: "npm:^4.2.0"
+ checksum: 10c0/02a954c3752c4328482a884eb1da06ca8fb72ae78ef28f1d854b18f3779406ed47263af22321cf3f65a637ec7584e5f483e34a263b5c8cec60ec85aebc263574
languageName: node
linkType: hard
@@ -5163,14 +5175,14 @@ __metadata:
languageName: node
linkType: hard
-"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
- version: 7.0.5
- resolution: "cross-spawn@npm:7.0.5"
+"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3, cross-spawn@npm:^7.0.5":
+ version: 7.0.6
+ resolution: "cross-spawn@npm:7.0.6"
dependencies:
path-key: "npm:^3.1.0"
shebang-command: "npm:^2.0.0"
which: "npm:^2.0.1"
- checksum: 10c0/aa82ce7ac0814a27e6f2b738c5a7cf1fa21a3558a1e42df449fc96541ba3ba731e4d3ecffa4435348808a86212f287c6f20a1ee551ef1ff95d01cfec5f434944
+ checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1
languageName: node
linkType: hard
@@ -5248,7 +5260,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4":
+"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2":
version: 4.3.7
resolution: "debug@npm:4.3.7"
dependencies:
@@ -5467,9 +5479,9 @@ __metadata:
linkType: hard
"electron-to-chromium@npm:^1.5.41":
- version: 1.5.58
- resolution: "electron-to-chromium@npm:1.5.58"
- checksum: 10c0/a3f5544ef12a84a7046b297195d19937f396683be8f245e1569cb9a877afd59f3630c8de9bb07f57aee1e6cda564c1a80c7d0b2fd28effb70db1558ca4669996
+ version: 1.5.63
+ resolution: "electron-to-chromium@npm:1.5.63"
+ checksum: 10c0/fe1b175805309b04e5a2242c3168f22543e5369aed01fceedfe0f0eafe3931e8609d8a140e527394b314cfe64d581913aba6f1d3c72c23069c7d8241e5dfa4ef
languageName: node
linkType: hard
@@ -5526,6 +5538,26 @@ __metadata:
languageName: node
linkType: hard
+"engine.io-client@npm:~6.6.1":
+ version: 6.6.2
+ resolution: "engine.io-client@npm:6.6.2"
+ dependencies:
+ "@socket.io/component-emitter": "npm:~3.1.0"
+ debug: "npm:~4.3.1"
+ engine.io-parser: "npm:~5.2.1"
+ ws: "npm:~8.17.1"
+ xmlhttprequest-ssl: "npm:~2.1.1"
+ checksum: 10c0/a1a0995df1ce2425b43c7dd396cf4ef12d3ca85973b63e1b7bd3933d0292459e922d6be25d14013c9608dc7159ae1e10cd7005754b02bc42d40450381f691859
+ languageName: node
+ linkType: hard
+
+"engine.io-parser@npm:~5.2.1":
+ version: 5.2.3
+ resolution: "engine.io-parser@npm:5.2.3"
+ checksum: 10c0/ed4900d8dbef470ab3839ccf3bfa79ee518ea8277c7f1f2759e8c22a48f64e687ea5e474291394d0c94f84054749fd93f3ef0acb51fa2f5f234cc9d9d8e7c536
+ languageName: node
+ linkType: hard
+
"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.17.1, enhanced-resolve@npm:^5.7.0":
version: 5.17.1
resolution: "enhanced-resolve@npm:5.17.1"
@@ -5567,8 +5599,8 @@ __metadata:
linkType: hard
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3":
- version: 1.23.4
- resolution: "es-abstract@npm:1.23.4"
+ version: 1.23.5
+ resolution: "es-abstract@npm:1.23.5"
dependencies:
array-buffer-byte-length: "npm:^1.0.1"
arraybuffer.prototype.slice: "npm:^1.0.3"
@@ -5616,7 +5648,7 @@ __metadata:
typed-array-length: "npm:^1.0.6"
unbox-primitive: "npm:^1.0.2"
which-typed-array: "npm:^1.1.15"
- checksum: 10c0/70c56ec479d57e63387f561bb50c80587f4a52010868787e3d4b4f95301edf5ba98d70ffd0ba56eb4722c48c578870ff2a8825236a948cfa483f76015d134acb
+ checksum: 10c0/1f6f91da9cf7ee2c81652d57d3046621d598654d1d1b05c1578bafe5c4c2d3d69513901679bdca2de589f620666ec21de337e4935cec108a4ed0871d5ef04a5d
languageName: node
linkType: hard
@@ -6074,24 +6106,24 @@ __metadata:
linkType: hard
"eslint@npm:^9.13.0, eslint@npm:^9.14.0":
- version: 9.14.0
- resolution: "eslint@npm:9.14.0"
+ version: 9.15.0
+ resolution: "eslint@npm:9.15.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.2.0"
"@eslint-community/regexpp": "npm:^4.12.1"
- "@eslint/config-array": "npm:^0.18.0"
- "@eslint/core": "npm:^0.7.0"
- "@eslint/eslintrc": "npm:^3.1.0"
- "@eslint/js": "npm:9.14.0"
- "@eslint/plugin-kit": "npm:^0.2.0"
+ "@eslint/config-array": "npm:^0.19.0"
+ "@eslint/core": "npm:^0.9.0"
+ "@eslint/eslintrc": "npm:^3.2.0"
+ "@eslint/js": "npm:9.15.0"
+ "@eslint/plugin-kit": "npm:^0.2.3"
"@humanfs/node": "npm:^0.16.6"
"@humanwhocodes/module-importer": "npm:^1.0.1"
- "@humanwhocodes/retry": "npm:^0.4.0"
+ "@humanwhocodes/retry": "npm:^0.4.1"
"@types/estree": "npm:^1.0.6"
"@types/json-schema": "npm:^7.0.15"
ajv: "npm:^6.12.4"
chalk: "npm:^4.0.0"
- cross-spawn: "npm:^7.0.2"
+ cross-spawn: "npm:^7.0.5"
debug: "npm:^4.3.2"
escape-string-regexp: "npm:^4.0.0"
eslint-scope: "npm:^8.2.0"
@@ -6111,7 +6143,6 @@ __metadata:
minimatch: "npm:^3.1.2"
natural-compare: "npm:^1.4.0"
optionator: "npm:^0.9.3"
- text-table: "npm:^0.2.0"
peerDependencies:
jiti: "*"
peerDependenciesMeta:
@@ -6119,7 +6150,7 @@ __metadata:
optional: true
bin:
eslint: bin/eslint.js
- checksum: 10c0/e1cbf571b75519ad0b24c27e66a6575e57cab2671ef5296e7b345d9ac3adc1a549118dcc74a05b651a7a13a5e61ebb680be6a3e04a80e1f22eba1931921b5187
+ checksum: 10c0/d0d7606f36bfcccb1c3703d0a24df32067b207a616f17efe5fb1765a91d13f085afffc4fc97ecde4ab9c9f4edd64d9b4ce750e13ff7937a25074b24bee15b20f
languageName: node
linkType: hard
@@ -6495,9 +6526,9 @@ __metadata:
linkType: hard
"flatted@npm:^3.2.9":
- version: 3.3.1
- resolution: "flatted@npm:3.3.1"
- checksum: 10c0/324166b125ee07d4ca9bcf3a5f98d915d5db4f39d711fba640a3178b959919aae1f7cfd8aabcfef5826ed8aa8a2aa14cc85b2d7d18ff638ddf4ae3df39573eaf
+ version: 3.3.2
+ resolution: "flatted@npm:3.3.2"
+ checksum: 10c0/24cc735e74d593b6c767fe04f2ef369abe15b62f6906158079b9874bdb3ee5ae7110bb75042e70cd3f99d409d766f357caf78d5ecee9780206f5fdc5edbad334
languageName: node
linkType: hard
@@ -6582,6 +6613,26 @@ __metadata:
languageName: node
linkType: hard
+"framer-motion@npm:^11.11.17":
+ version: 11.11.17
+ resolution: "framer-motion@npm:11.11.17"
+ dependencies:
+ tslib: "npm:^2.4.0"
+ peerDependencies:
+ "@emotion/is-prop-valid": "*"
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ peerDependenciesMeta:
+ "@emotion/is-prop-valid":
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ checksum: 10c0/4ec88a568e636c5409a238668770a7d0237270b4b58fdf27d0cab1f9094a4fdd22d25d827a1bba51e52f01e9d2db65544b32a5feb8eff9a63c8798f2e64677d0
+ languageName: node
+ linkType: hard
+
"fresh@npm:0.5.2":
version: 0.5.2
resolution: "fresh@npm:0.5.2"
@@ -6608,12 +6659,15 @@ __metadata:
eslint-plugin-react: "npm:^7.37.2"
eslint-plugin-react-hooks: "npm:^5.0.0"
eslint-plugin-react-refresh: "npm:^0.4.14"
+ framer-motion: "npm:^11.11.17"
globals: "npm:^15.11.0"
hls.js: "npm:^1.5.17"
nanoid: "npm:^5.0.8"
react: "npm:^18.3.1"
react-dom: "npm:^18.3.1"
+ react-hook-form: "npm:^7.53.2"
react-router-dom: "npm:^6.27.0"
+ socket.io-client: "npm:^4.8.1"
styled-components: "npm:^6.1.13"
typescript: "npm:^5.6.3"
typescript-eslint: "npm:^8.11.0"
@@ -9487,7 +9541,7 @@ __metadata:
languageName: node
linkType: hard
-"qs@npm:6.13.0, qs@npm:^6.11.0":
+"qs@npm:6.13.0":
version: 6.13.0
resolution: "qs@npm:6.13.0"
dependencies:
@@ -9496,6 +9550,15 @@ __metadata:
languageName: node
linkType: hard
+"qs@npm:^6.11.0":
+ version: 6.13.1
+ resolution: "qs@npm:6.13.1"
+ dependencies:
+ side-channel: "npm:^1.0.6"
+ checksum: 10c0/5ef527c0d62ffca5501322f0832d800ddc78eeb00da3b906f1b260ca0492721f8cdc13ee4b8fd8ac314a6ec37b948798c7b603ccc167e954088df392092f160c
+ languageName: node
+ linkType: hard
+
"queue-microtask@npm:^1.2.2":
version: 1.2.3
resolution: "queue-microtask@npm:1.2.3"
@@ -9550,6 +9613,15 @@ __metadata:
languageName: node
linkType: hard
+"react-hook-form@npm:^7.53.2":
+ version: 7.53.2
+ resolution: "react-hook-form@npm:7.53.2"
+ peerDependencies:
+ react: ^16.8.0 || ^17 || ^18 || ^19
+ checksum: 10c0/18336d8e8798a70dcd0af703a0becca2d5dbf82a7b7a3ca334ae0e1f26410490bc3ef2ea51adcf790bb1e7006ed7a763fd00d664e398f71225b23529a7ccf0bf
+ languageName: node
+ linkType: hard
+
"react-is@npm:^16.13.1, react-is@npm:^16.7.0":
version: 16.13.1
resolution: "react-is@npm:16.13.1"
@@ -9835,27 +9907,27 @@ __metadata:
linkType: hard
"rollup@npm:^4.20.0":
- version: 4.26.0
- resolution: "rollup@npm:4.26.0"
- dependencies:
- "@rollup/rollup-android-arm-eabi": "npm:4.26.0"
- "@rollup/rollup-android-arm64": "npm:4.26.0"
- "@rollup/rollup-darwin-arm64": "npm:4.26.0"
- "@rollup/rollup-darwin-x64": "npm:4.26.0"
- "@rollup/rollup-freebsd-arm64": "npm:4.26.0"
- "@rollup/rollup-freebsd-x64": "npm:4.26.0"
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.26.0"
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.26.0"
- "@rollup/rollup-linux-arm64-gnu": "npm:4.26.0"
- "@rollup/rollup-linux-arm64-musl": "npm:4.26.0"
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.26.0"
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.26.0"
- "@rollup/rollup-linux-s390x-gnu": "npm:4.26.0"
- "@rollup/rollup-linux-x64-gnu": "npm:4.26.0"
- "@rollup/rollup-linux-x64-musl": "npm:4.26.0"
- "@rollup/rollup-win32-arm64-msvc": "npm:4.26.0"
- "@rollup/rollup-win32-ia32-msvc": "npm:4.26.0"
- "@rollup/rollup-win32-x64-msvc": "npm:4.26.0"
+ version: 4.27.3
+ resolution: "rollup@npm:4.27.3"
+ dependencies:
+ "@rollup/rollup-android-arm-eabi": "npm:4.27.3"
+ "@rollup/rollup-android-arm64": "npm:4.27.3"
+ "@rollup/rollup-darwin-arm64": "npm:4.27.3"
+ "@rollup/rollup-darwin-x64": "npm:4.27.3"
+ "@rollup/rollup-freebsd-arm64": "npm:4.27.3"
+ "@rollup/rollup-freebsd-x64": "npm:4.27.3"
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.3"
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.27.3"
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.27.3"
+ "@rollup/rollup-linux-arm64-musl": "npm:4.27.3"
+ "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.3"
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.27.3"
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.27.3"
+ "@rollup/rollup-linux-x64-gnu": "npm:4.27.3"
+ "@rollup/rollup-linux-x64-musl": "npm:4.27.3"
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.27.3"
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.27.3"
+ "@rollup/rollup-win32-x64-msvc": "npm:4.27.3"
"@types/estree": "npm:1.0.6"
fsevents: "npm:~2.3.2"
dependenciesMeta:
@@ -9899,7 +9971,7 @@ __metadata:
optional: true
bin:
rollup: dist/bin/rollup
- checksum: 10c0/a4375787b95bc3b55d38bbb8dec5f6a63862b08369b9562a2d38efadd400ca42a79406b8f09670a0deb0cc9cd72cca1c0be317302190d1f7feff597003d951bc
+ checksum: 10c0/789885d3f852ed7ca45bed14194a2ac7a2cf16b6b62b54f691c79e27d5557d31a2d612d3680c26c527a1957e0bd6811806ddd765e0dae589404cf24544ff2838
languageName: node
linkType: hard
@@ -10218,6 +10290,28 @@ __metadata:
languageName: node
linkType: hard
+"socket.io-client@npm:^4.8.1":
+ version: 4.8.1
+ resolution: "socket.io-client@npm:4.8.1"
+ dependencies:
+ "@socket.io/component-emitter": "npm:~3.1.0"
+ debug: "npm:~4.3.2"
+ engine.io-client: "npm:~6.6.1"
+ socket.io-parser: "npm:~4.2.4"
+ checksum: 10c0/544c49cc8cc77118ef68b758a8a580c8e680a5909cae05c566d2cc07ec6cd6720a4f5b7e985489bf2a8391749177a5437ac30b8afbdf30b9da6402687ad51c86
+ languageName: node
+ linkType: hard
+
+"socket.io-parser@npm:~4.2.4":
+ version: 4.2.4
+ resolution: "socket.io-parser@npm:4.2.4"
+ dependencies:
+ "@socket.io/component-emitter": "npm:~3.1.0"
+ debug: "npm:~4.3.1"
+ checksum: 10c0/9383b30358fde4a801ea4ec5e6860915c0389a091321f1c1f41506618b5cf7cd685d0a31c587467a0c4ee99ef98c2b99fb87911f9dfb329716c43b587f29ca48
+ languageName: node
+ linkType: hard
+
"socks-proxy-agent@npm:^8.0.3":
version: 8.0.4
resolution: "socks-proxy-agent@npm:8.0.4"
@@ -11041,16 +11135,18 @@ __metadata:
linkType: hard
"typescript-eslint@npm:^8.11.0, typescript-eslint@npm:^8.14.0":
- version: 8.14.0
- resolution: "typescript-eslint@npm:8.14.0"
+ version: 8.15.0
+ resolution: "typescript-eslint@npm:8.15.0"
dependencies:
- "@typescript-eslint/eslint-plugin": "npm:8.14.0"
- "@typescript-eslint/parser": "npm:8.14.0"
- "@typescript-eslint/utils": "npm:8.14.0"
+ "@typescript-eslint/eslint-plugin": "npm:8.15.0"
+ "@typescript-eslint/parser": "npm:8.15.0"
+ "@typescript-eslint/utils": "npm:8.15.0"
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/b9c2f32139d3df52057bfb80d4663fd5e440ccd0da75d92fe91582fe5216213e7012ef691e7d91c75e402e373b9aded6b128b005aaeeae32d7b9d7b39732bcc7
+ checksum: 10c0/589aebf0d0b9b79db1cd0b7c2ea08c6b5727c1db095d39077d070c332066c7d549a0eb2ef60b0d41619720c317c1955236c5c8ee6320bc7c6ae475add7223b55
languageName: node
linkType: hard
@@ -11228,8 +11324,8 @@ __metadata:
linkType: hard
"vite-tsconfig-paths@npm:^5.1.0":
- version: 5.1.2
- resolution: "vite-tsconfig-paths@npm:5.1.2"
+ version: 5.1.3
+ resolution: "vite-tsconfig-paths@npm:5.1.3"
dependencies:
debug: "npm:^4.1.1"
globrex: "npm:^0.1.2"
@@ -11239,7 +11335,7 @@ __metadata:
peerDependenciesMeta:
vite:
optional: true
- checksum: 10c0/7db445b6b1f48e7b89f39f5eb8cf4ea645994f581fcc7c9fac721e0c36f8203c0770007ec27825caa6e2566e3127b2b1bfe8be28ca05cd0e9fb67a2943dcdec5
+ checksum: 10c0/fb7480efa31fd50439f4a12c91bc953e5cc09d69fdc7eeb6ffff7cc796bc2c1f2c617c3abfdcbf5d7414848076cea9deb60bc002142f93b6e3131e5458760710
languageName: node
linkType: hard
@@ -11541,6 +11637,28 @@ __metadata:
languageName: node
linkType: hard
+"ws@npm:~8.17.1":
+ version: 8.17.1
+ resolution: "ws@npm:8.17.1"
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ">=5.0.2"
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ checksum: 10c0/f4a49064afae4500be772abdc2211c8518f39e1c959640457dcee15d4488628620625c783902a52af2dd02f68558da2868fd06e6fd0e67ebcd09e6881b1b5bfe
+ languageName: node
+ linkType: hard
+
+"xmlhttprequest-ssl@npm:~2.1.1":
+ version: 2.1.2
+ resolution: "xmlhttprequest-ssl@npm:2.1.2"
+ checksum: 10c0/70d60869323e823f473a238f78fd108437edbc3690ecd5859c39c83217080090a18899b272e515769c0d1f518cc64cbed6b6995b23fdd7ba13b297d530b6e631
+ languageName: node
+ linkType: hard
+
"xtend@npm:^4.0.0":
version: 4.0.2
resolution: "xtend@npm:4.0.2"