diff --git a/enjoy/package.json b/enjoy/package.json index dd395d12..ba70f41d 100644 --- a/enjoy/package.json +++ b/enjoy/package.json @@ -129,7 +129,7 @@ "dayjs": "^1.11.11", "decamelize": "^6.0.0", "decamelize-keys": "^2.0.1", - "echogarden": "^1.4.3", + "echogarden": "^1.4.4", "electron-context-menu": "^4.0.0", "electron-log": "^5.1.4", "electron-settings": "^4.0.4", diff --git a/enjoy/src/main/echogarden.ts b/enjoy/src/main/echogarden.ts index cbe78a85..ae8de742 100644 --- a/enjoy/src/main/echogarden.ts +++ b/enjoy/src/main/echogarden.ts @@ -100,6 +100,7 @@ class EchogardenWrapper { transcript: string, options: AlignmentOptions ) => { + logger.debug("echogarden-align:", transcript, options); try { return await this.align(input, transcript, options); } catch (err) { diff --git a/enjoy/src/renderer/components/medias/media-loading-modal.tsx b/enjoy/src/renderer/components/medias/media-loading-modal.tsx index 7d067667..90821369 100644 --- a/enjoy/src/renderer/components/medias/media-loading-modal.tsx +++ b/enjoy/src/renderer/components/medias/media-loading-modal.tsx @@ -34,7 +34,7 @@ export const MediaLoadingModal = () => { return ( - + {t("preparingAudio")} @@ -55,9 +55,7 @@ export const MediaLoadingModal = () => {
-
- {decodeError} -
+
{decodeError}
{t("failedToDecodeWaveform")}:{" "} {media?.src} @@ -97,12 +95,17 @@ export const MediaLoadingModal = () => {
{t("notTranscribedYet")} {decoded && ( - )}
diff --git a/enjoy/src/renderer/components/medias/media-transcription-form.tsx b/enjoy/src/renderer/components/medias/media-transcription-form.tsx index cf18e028..174c7c1c 100644 --- a/enjoy/src/renderer/components/medias/media-transcription-form.tsx +++ b/enjoy/src/renderer/components/medias/media-transcription-form.tsx @@ -57,7 +57,7 @@ export const TranscriptionForm = (props: { const handleSave = async () => { setSubmiting(true); try { - await generateTranscription(content); + await generateTranscription({ originalText: content }); setOpen(false); } catch (e) { toast.error(e.message); diff --git a/enjoy/src/renderer/components/medias/media-transcription.tsx b/enjoy/src/renderer/components/medias/media-transcription.tsx index 8af316c6..7418e3d3 100644 --- a/enjoy/src/renderer/components/medias/media-transcription.tsx +++ b/enjoy/src/renderer/components/medias/media-transcription.tsx @@ -144,7 +144,13 @@ export const MediaTranscription = () => { {t("cancel")} - generateTranscription("")}> + + generateTranscription({ + originalText: "", + }) + } + > {t("transcribe")} diff --git a/enjoy/src/renderer/components/messages/assistant-message.tsx b/enjoy/src/renderer/components/messages/assistant-message.tsx index fbfc90bd..9d2a4198 100644 --- a/enjoy/src/renderer/components/messages/assistant-message.tsx +++ b/enjoy/src/renderer/components/messages/assistant-message.tsx @@ -284,7 +284,11 @@ export const AssistantMessageComponent = (props: {
- setShadowing(value)}> + setShadowing(value)} + > void; + generateTranscription: (params?: { + originalText?: string; + language?: string; + }) => void; transcribing: boolean; transcribingProgress: number; transcriptionDraft: TranscriptionType["result"]; diff --git a/enjoy/src/renderer/hooks/use-transcribe.tsx b/enjoy/src/renderer/hooks/use-transcribe.tsx index 160da334..0e2a18fa 100644 --- a/enjoy/src/renderer/hooks/use-transcribe.tsx +++ b/enjoy/src/renderer/hooks/use-transcribe.tsx @@ -34,6 +34,7 @@ export const useTranscribe = () => { targetId?: string; targetType?: string; originalText?: string; + language?: string; } ): Promise<{ engine: string; @@ -42,7 +43,12 @@ export const useTranscribe = () => { originalText?: string; }> => { const url = await transcode(mediaSrc); - const { targetId, targetType, originalText } = params || {}; + const { + targetId, + targetType, + originalText, + language = "english", + } = params || {}; const blob = await (await fetch(url)).blob(); let result; @@ -75,7 +81,10 @@ export const useTranscribe = () => { const alignmentResult = await EnjoyApp.echogarden.align( new Uint8Array(await blob.arrayBuffer()), - transcript + transcript, + { + language, + } ); return { @@ -197,7 +206,7 @@ export const useTranscribe = () => { resolve({ engine: "azure", model: "whisper", - text: results.map((result) => result.DisplayText).join(' '), + text: results.map((result) => result.DisplayText).join(" "), }); }; diff --git a/enjoy/src/renderer/hooks/use-transcriptions.tsx b/enjoy/src/renderer/hooks/use-transcriptions.tsx index fe236ff3..41eb5039 100644 --- a/enjoy/src/renderer/hooks/use-transcriptions.tsx +++ b/enjoy/src/renderer/hooks/use-transcriptions.tsx @@ -8,7 +8,6 @@ import { import { toast } from "@renderer/components/ui"; import { TimelineEntry } from "echogarden/dist/utilities/Timeline.d.js"; import { MAGIC_TOKEN_REGEX, END_OF_SENTENCE_REGEX } from "@/constants"; -import { ca } from "@vidstack/react/types/vidstack-react"; export const useTranscriptions = (media: AudioType | VideoType) => { const { whisperConfig } = useContext(AISettingsProviderContext); @@ -53,7 +52,11 @@ export const useTranscriptions = (media: AudioType | VideoType) => { }); }; - const generateTranscription = async (originalText?: string) => { + const generateTranscription = async (params?: { + originalText?: string; + language?: string; + }) => { + let { originalText, language } = params || {}; if (originalText === undefined) { if (transcription?.targetId === media.id) { originalText = transcription.result?.originalText; @@ -72,6 +75,7 @@ export const useTranscriptions = (media: AudioType | VideoType) => { targetId: media.id, targetType: media.mediaType, originalText, + language, }); let timeline: TimelineEntry[] = []; diff --git a/yarn.lock b/yarn.lock index 39bd5ed2..9c6b8ec9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -354,53 +354,53 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-polly@npm:^3.574.0": - version: 3.574.0 - resolution: "@aws-sdk/client-polly@npm:3.574.0" +"@aws-sdk/client-polly@npm:^3.576.0": + version: 3.577.0 + resolution: "@aws-sdk/client-polly@npm:3.577.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sso-oidc": "npm:3.574.0" - "@aws-sdk/client-sts": "npm:3.574.0" - "@aws-sdk/core": "npm:3.572.0" - "@aws-sdk/credential-provider-node": "npm:3.572.0" - "@aws-sdk/middleware-host-header": "npm:3.567.0" - "@aws-sdk/middleware-logger": "npm:3.568.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.567.0" - "@aws-sdk/middleware-user-agent": "npm:3.572.0" - "@aws-sdk/region-config-resolver": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@aws-sdk/util-user-agent-browser": "npm:3.567.0" - "@aws-sdk/util-user-agent-node": "npm:3.568.0" - "@smithy/config-resolver": "npm:^2.2.0" - "@smithy/core": "npm:^1.4.2" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/hash-node": "npm:^2.2.0" - "@smithy/invalid-dependency": "npm:^2.2.0" - "@smithy/middleware-content-length": "npm:^2.2.0" - "@smithy/middleware-endpoint": "npm:^2.5.1" - "@smithy/middleware-retry": "npm:^2.3.1" - "@smithy/middleware-serde": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.2.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/url-parser": "npm:^2.2.0" - "@smithy/util-base64": "npm:^2.3.0" - "@smithy/util-body-length-browser": "npm:^2.2.0" - "@smithy/util-body-length-node": "npm:^2.3.0" - "@smithy/util-defaults-mode-browser": "npm:^2.2.1" - "@smithy/util-defaults-mode-node": "npm:^2.3.1" - "@smithy/util-endpoints": "npm:^1.2.0" - "@smithy/util-middleware": "npm:^2.2.0" - "@smithy/util-retry": "npm:^2.2.0" - "@smithy/util-stream": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@aws-sdk/client-sso-oidc": "npm:3.577.0" + "@aws-sdk/client-sts": "npm:3.577.0" + "@aws-sdk/core": "npm:3.576.0" + "@aws-sdk/credential-provider-node": "npm:3.577.0" + "@aws-sdk/middleware-host-header": "npm:3.577.0" + "@aws-sdk/middleware-logger": "npm:3.577.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.577.0" + "@aws-sdk/middleware-user-agent": "npm:3.577.0" + "@aws-sdk/region-config-resolver": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@aws-sdk/util-user-agent-browser": "npm:3.577.0" + "@aws-sdk/util-user-agent-node": "npm:3.577.0" + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/hash-node": "npm:^3.0.0" + "@smithy/invalid-dependency": "npm:^3.0.0" + "@smithy/middleware-content-length": "npm:^3.0.0" + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.0" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@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.0" + "@smithy/util-defaults-mode-node": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-retry": "npm:^3.0.0" + "@smithy/util-stream": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/9f5019cbff6802c4b21d0e6943c8094567e6ef1994c0d3a2076629fc8902ba4a69deba84f20eeaf2b3118100dffbf2cc031509e03625d867c8f5ab40260982a7 + checksum: 10c0/f7cd0ace4949d80ee7622e7d5b897421b602aad3c5b94ed93950bafb9b723a8c1589df860cd458ae010c2005218c9b29b7f558c7d7236f3ccb936d5d7e4e0ea5 languageName: node linkType: hard @@ -518,51 +518,51 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.574.0": - version: 3.574.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.574.0" +"@aws-sdk/client-sso-oidc@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.577.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sts": "npm:3.574.0" - "@aws-sdk/core": "npm:3.572.0" - "@aws-sdk/credential-provider-node": "npm:3.572.0" - "@aws-sdk/middleware-host-header": "npm:3.567.0" - "@aws-sdk/middleware-logger": "npm:3.568.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.567.0" - "@aws-sdk/middleware-user-agent": "npm:3.572.0" - "@aws-sdk/region-config-resolver": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@aws-sdk/util-user-agent-browser": "npm:3.567.0" - "@aws-sdk/util-user-agent-node": "npm:3.568.0" - "@smithy/config-resolver": "npm:^2.2.0" - "@smithy/core": "npm:^1.4.2" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/hash-node": "npm:^2.2.0" - "@smithy/invalid-dependency": "npm:^2.2.0" - "@smithy/middleware-content-length": "npm:^2.2.0" - "@smithy/middleware-endpoint": "npm:^2.5.1" - "@smithy/middleware-retry": "npm:^2.3.1" - "@smithy/middleware-serde": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.2.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/url-parser": "npm:^2.2.0" - "@smithy/util-base64": "npm:^2.3.0" - "@smithy/util-body-length-browser": "npm:^2.2.0" - "@smithy/util-body-length-node": "npm:^2.3.0" - "@smithy/util-defaults-mode-browser": "npm:^2.2.1" - "@smithy/util-defaults-mode-node": "npm:^2.3.1" - "@smithy/util-endpoints": "npm:^1.2.0" - "@smithy/util-middleware": "npm:^2.2.0" - "@smithy/util-retry": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@aws-sdk/client-sts": "npm:3.577.0" + "@aws-sdk/core": "npm:3.576.0" + "@aws-sdk/credential-provider-node": "npm:3.577.0" + "@aws-sdk/middleware-host-header": "npm:3.577.0" + "@aws-sdk/middleware-logger": "npm:3.577.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.577.0" + "@aws-sdk/middleware-user-agent": "npm:3.577.0" + "@aws-sdk/region-config-resolver": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@aws-sdk/util-user-agent-browser": "npm:3.577.0" + "@aws-sdk/util-user-agent-node": "npm:3.577.0" + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/hash-node": "npm:^3.0.0" + "@smithy/invalid-dependency": "npm:^3.0.0" + "@smithy/middleware-content-length": "npm:^3.0.0" + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.0" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@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.0" + "@smithy/util-defaults-mode-node": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-retry": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/b3f3bd0f7e953d4ddc0d59adaf9bb43db2a3ea3773503701cdf30a7c76e142ed528dd35d8d35f08ca64c3666c4d80f9f2ebd0effdcee94c59e8ec08341bb8935 + checksum: 10c0/b0e99a231ae7211210d98c221ff10dd5d4294e5e21ee8841135fbba55647c13fa4a8bc98b39c3635d62d0ca979ab922be974d3a06c69ceecba82acebcf13b557 languageName: node linkType: hard @@ -612,49 +612,49 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/client-sso@npm:3.572.0" +"@aws-sdk/client-sso@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/client-sso@npm:3.577.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/core": "npm:3.572.0" - "@aws-sdk/middleware-host-header": "npm:3.567.0" - "@aws-sdk/middleware-logger": "npm:3.568.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.567.0" - "@aws-sdk/middleware-user-agent": "npm:3.572.0" - "@aws-sdk/region-config-resolver": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@aws-sdk/util-user-agent-browser": "npm:3.567.0" - "@aws-sdk/util-user-agent-node": "npm:3.568.0" - "@smithy/config-resolver": "npm:^2.2.0" - "@smithy/core": "npm:^1.4.2" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/hash-node": "npm:^2.2.0" - "@smithy/invalid-dependency": "npm:^2.2.0" - "@smithy/middleware-content-length": "npm:^2.2.0" - "@smithy/middleware-endpoint": "npm:^2.5.1" - "@smithy/middleware-retry": "npm:^2.3.1" - "@smithy/middleware-serde": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.2.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/url-parser": "npm:^2.2.0" - "@smithy/util-base64": "npm:^2.3.0" - "@smithy/util-body-length-browser": "npm:^2.2.0" - "@smithy/util-body-length-node": "npm:^2.3.0" - "@smithy/util-defaults-mode-browser": "npm:^2.2.1" - "@smithy/util-defaults-mode-node": "npm:^2.3.1" - "@smithy/util-endpoints": "npm:^1.2.0" - "@smithy/util-middleware": "npm:^2.2.0" - "@smithy/util-retry": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@aws-sdk/core": "npm:3.576.0" + "@aws-sdk/middleware-host-header": "npm:3.577.0" + "@aws-sdk/middleware-logger": "npm:3.577.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.577.0" + "@aws-sdk/middleware-user-agent": "npm:3.577.0" + "@aws-sdk/region-config-resolver": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@aws-sdk/util-user-agent-browser": "npm:3.577.0" + "@aws-sdk/util-user-agent-node": "npm:3.577.0" + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/hash-node": "npm:^3.0.0" + "@smithy/invalid-dependency": "npm:^3.0.0" + "@smithy/middleware-content-length": "npm:^3.0.0" + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.0" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@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.0" + "@smithy/util-defaults-mode-node": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-retry": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/67f6dc097d320ba01aa48c9a74930f86f0bd2e3c377e43ba7213678542b20147f19b09ab389ff7d86f41923fa23bb035e5fd1b3bb20043094c6be51c8e1e0e11 + checksum: 10c0/bb5eeaf6975a325bff1fe7c40c98714c1ef5c58398b7d10777525955a0f31dae8396700919755fbc7b73dfc0a4e8ea946ecfd045c1cbdefe01fa04bb40b87349 languageName: node linkType: hard @@ -706,107 +706,107 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.574.0": - version: 3.574.0 - resolution: "@aws-sdk/client-sts@npm:3.574.0" +"@aws-sdk/client-sts@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/client-sts@npm:3.577.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sso-oidc": "npm:3.574.0" - "@aws-sdk/core": "npm:3.572.0" - "@aws-sdk/credential-provider-node": "npm:3.572.0" - "@aws-sdk/middleware-host-header": "npm:3.567.0" - "@aws-sdk/middleware-logger": "npm:3.568.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.567.0" - "@aws-sdk/middleware-user-agent": "npm:3.572.0" - "@aws-sdk/region-config-resolver": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@aws-sdk/util-user-agent-browser": "npm:3.567.0" - "@aws-sdk/util-user-agent-node": "npm:3.568.0" - "@smithy/config-resolver": "npm:^2.2.0" - "@smithy/core": "npm:^1.4.2" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/hash-node": "npm:^2.2.0" - "@smithy/invalid-dependency": "npm:^2.2.0" - "@smithy/middleware-content-length": "npm:^2.2.0" - "@smithy/middleware-endpoint": "npm:^2.5.1" - "@smithy/middleware-retry": "npm:^2.3.1" - "@smithy/middleware-serde": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.2.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/url-parser": "npm:^2.2.0" - "@smithy/util-base64": "npm:^2.3.0" - "@smithy/util-body-length-browser": "npm:^2.2.0" - "@smithy/util-body-length-node": "npm:^2.3.0" - "@smithy/util-defaults-mode-browser": "npm:^2.2.1" - "@smithy/util-defaults-mode-node": "npm:^2.3.1" - "@smithy/util-endpoints": "npm:^1.2.0" - "@smithy/util-middleware": "npm:^2.2.0" - "@smithy/util-retry": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@aws-sdk/client-sso-oidc": "npm:3.577.0" + "@aws-sdk/core": "npm:3.576.0" + "@aws-sdk/credential-provider-node": "npm:3.577.0" + "@aws-sdk/middleware-host-header": "npm:3.577.0" + "@aws-sdk/middleware-logger": "npm:3.577.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.577.0" + "@aws-sdk/middleware-user-agent": "npm:3.577.0" + "@aws-sdk/region-config-resolver": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@aws-sdk/util-user-agent-browser": "npm:3.577.0" + "@aws-sdk/util-user-agent-node": "npm:3.577.0" + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/hash-node": "npm:^3.0.0" + "@smithy/invalid-dependency": "npm:^3.0.0" + "@smithy/middleware-content-length": "npm:^3.0.0" + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.0" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@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.0" + "@smithy/util-defaults-mode-node": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-retry": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/1c51a5e1f48dee4b5aa94b8228ac6e523d0ca717e036d9b6cdbe0329d68dcb19ac616677958408e72a77206c49ec8a656a39c555bf3009126f21b5fecb988b95 + checksum: 10c0/ca71ceffa49cf78606eaf52a1a7058d4b5a1dc4341a7821dbf50b865d9b9a9631db5d2a8894955061c90bfc62cf3a20510054a0d41dcf13566839ea2bb8bb0a1 languageName: node linkType: hard -"@aws-sdk/client-transcribe-streaming@npm:^3.574.0": - version: 3.574.0 - resolution: "@aws-sdk/client-transcribe-streaming@npm:3.574.0" +"@aws-sdk/client-transcribe-streaming@npm:^3.576.0": + version: 3.577.0 + resolution: "@aws-sdk/client-transcribe-streaming@npm:3.577.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sso-oidc": "npm:3.574.0" - "@aws-sdk/client-sts": "npm:3.574.0" - "@aws-sdk/core": "npm:3.572.0" - "@aws-sdk/credential-provider-node": "npm:3.572.0" - "@aws-sdk/eventstream-handler-node": "npm:3.568.0" - "@aws-sdk/middleware-eventstream": "npm:3.569.0" - "@aws-sdk/middleware-host-header": "npm:3.567.0" - "@aws-sdk/middleware-logger": "npm:3.568.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.567.0" - "@aws-sdk/middleware-sdk-transcribe-streaming": "npm:3.569.0" - "@aws-sdk/middleware-signing": "npm:3.572.0" - "@aws-sdk/middleware-user-agent": "npm:3.572.0" - "@aws-sdk/middleware-websocket": "npm:3.572.0" - "@aws-sdk/region-config-resolver": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@aws-sdk/util-user-agent-browser": "npm:3.567.0" - "@aws-sdk/util-user-agent-node": "npm:3.568.0" - "@smithy/config-resolver": "npm:^2.2.0" - "@smithy/core": "npm:^1.4.2" - "@smithy/eventstream-serde-browser": "npm:^2.2.0" - "@smithy/eventstream-serde-config-resolver": "npm:^2.2.0" - "@smithy/eventstream-serde-node": "npm:^2.2.0" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/hash-node": "npm:^2.2.0" - "@smithy/invalid-dependency": "npm:^2.2.0" - "@smithy/middleware-content-length": "npm:^2.2.0" - "@smithy/middleware-endpoint": "npm:^2.5.1" - "@smithy/middleware-retry": "npm:^2.3.1" - "@smithy/middleware-serde": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.2.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/url-parser": "npm:^2.2.0" - "@smithy/util-base64": "npm:^2.3.0" - "@smithy/util-body-length-browser": "npm:^2.2.0" - "@smithy/util-body-length-node": "npm:^2.3.0" - "@smithy/util-defaults-mode-browser": "npm:^2.2.1" - "@smithy/util-defaults-mode-node": "npm:^2.3.1" - "@smithy/util-endpoints": "npm:^1.2.0" - "@smithy/util-retry": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@aws-sdk/client-sso-oidc": "npm:3.577.0" + "@aws-sdk/client-sts": "npm:3.577.0" + "@aws-sdk/core": "npm:3.576.0" + "@aws-sdk/credential-provider-node": "npm:3.577.0" + "@aws-sdk/eventstream-handler-node": "npm:3.577.0" + "@aws-sdk/middleware-eventstream": "npm:3.577.0" + "@aws-sdk/middleware-host-header": "npm:3.577.0" + "@aws-sdk/middleware-logger": "npm:3.577.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.577.0" + "@aws-sdk/middleware-sdk-transcribe-streaming": "npm:3.577.0" + "@aws-sdk/middleware-signing": "npm:3.577.0" + "@aws-sdk/middleware-user-agent": "npm:3.577.0" + "@aws-sdk/middleware-websocket": "npm:3.577.0" + "@aws-sdk/region-config-resolver": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@aws-sdk/util-user-agent-browser": "npm:3.577.0" + "@aws-sdk/util-user-agent-node": "npm:3.577.0" + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/eventstream-serde-browser": "npm:^3.0.0" + "@smithy/eventstream-serde-config-resolver": "npm:^3.0.0" + "@smithy/eventstream-serde-node": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/hash-node": "npm:^3.0.0" + "@smithy/invalid-dependency": "npm:^3.0.0" + "@smithy/middleware-content-length": "npm:^3.0.0" + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.0" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@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.0" + "@smithy/util-defaults-mode-node": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" + "@smithy/util-retry": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/8f4087842609364176d9e39c8b20a038981cbea50fec9f4e7b8e08ef1030becd4a69e0bbb5a2f0cc2fba19c1279a7f6149d2ddcbaddfabcedc96a62ffa633890 + checksum: 10c0/72859a65a09c6014ededa50d2943dffa3718a472ac9d6cfd5e2d68c914695c524b38d6ad39c65027cabf5a93f2d06ac8ca07eb5eaad28a83a7e9abdfd2efe29c languageName: node linkType: hard @@ -825,18 +825,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/core@npm:3.572.0" +"@aws-sdk/core@npm:3.576.0": + version: 3.576.0 + resolution: "@aws-sdk/core@npm:3.576.0" dependencies: - "@smithy/core": "npm:^1.4.2" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/signature-v4": "npm:^2.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" + "@smithy/core": "npm:^2.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/signature-v4": "npm:^3.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" fast-xml-parser: "npm:4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/c72d3d55f7647522db650f971e4ef14c33b9fd3a1fb3b32e8b1534073a8ec08e9f49aa948f6d149080d84470f289c51459cf6c436e7763485d04a29bbfef88a7 + checksum: 10c0/9065b5dde3e6432ca0bb7a59ae58aaf397fe5dbd131a324d6b06031081672ff95ee0c8d0247cccbb411a335e13cc57f386e0b5c6e0abfc4368482e0c06022b21 languageName: node linkType: hard @@ -852,15 +852,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.568.0" +"@aws-sdk/credential-provider-env@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/5eead9b30f37ee694a485aba951abc8e65f0a2e7c310f6e85215060daf4275f7a6a7216e86b94327faa7ba47c3457e3279c7aae0e7d34b8db8d2c6686472c543 + checksum: 10c0/1ba9837bc96bc182f852f1e486ce511eb1b79ff30087cbb6b03ed1dc8013c161c7138b89c5b46adfc8f26b5b87f0d1bd1b90740b80cff27ad5629e3b053aab76 languageName: node linkType: hard @@ -881,20 +881,20 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.568.0" +"@aws-sdk/credential-provider-http@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/node-http-handler": "npm:^2.5.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/smithy-client": "npm:^2.5.1" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-stream": "npm:^2.2.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-stream": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/24d1e16ac9deb12397d7a5c8d40b8fa975b6908ebc4c0c964003cbcc3db8a8aae21cfb4a954a5d8222ca7cd37faa45caca5ce911b16edd094f1c9761a481af55 + checksum: 10c0/029bc271a0a2ee44c0dd2e705f3ab9966bc32f91638629d256a3ddebdc32f3c8d860daf6bdb87b296d04d92a0d42e18937312bff0d53c1466e44ab434221963d languageName: node linkType: hard @@ -917,23 +917,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.572.0" +"@aws-sdk/credential-provider-ini@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.577.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.568.0" - "@aws-sdk/credential-provider-process": "npm:3.572.0" - "@aws-sdk/credential-provider-sso": "npm:3.572.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.568.0" - "@aws-sdk/types": "npm:3.567.0" - "@smithy/credential-provider-imds": "npm:^2.3.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/shared-ini-file-loader": "npm:^2.4.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/credential-provider-env": "npm:3.577.0" + "@aws-sdk/credential-provider-process": "npm:3.577.0" + "@aws-sdk/credential-provider-sso": "npm:3.577.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/credential-provider-imds": "npm:^3.0.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": 3.572.0 - checksum: 10c0/bf6f02bea3c753ceab4854d64c0f9a86c5d88a14e4f54091619a64eb95f1acef63f963482fb33d18bee2b9772ab3b8679252d6823faf05185a0471770bfa38ba + "@aws-sdk/client-sts": ^3.577.0 + checksum: 10c0/ea909638582fdfa1a25688f2190723134d89a88b912bdf062570d3c690a7ce82f8cd28dc5fcef9789ad9b8498171c3c3c54cf484c755c4add7d908645961768e languageName: node linkType: hard @@ -957,23 +957,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.572.0" +"@aws-sdk/credential-provider-node@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.577.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.568.0" - "@aws-sdk/credential-provider-http": "npm:3.568.0" - "@aws-sdk/credential-provider-ini": "npm:3.572.0" - "@aws-sdk/credential-provider-process": "npm:3.572.0" - "@aws-sdk/credential-provider-sso": "npm:3.572.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.568.0" - "@aws-sdk/types": "npm:3.567.0" - "@smithy/credential-provider-imds": "npm:^2.3.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/shared-ini-file-loader": "npm:^2.4.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/credential-provider-env": "npm:3.577.0" + "@aws-sdk/credential-provider-http": "npm:3.577.0" + "@aws-sdk/credential-provider-ini": "npm:3.577.0" + "@aws-sdk/credential-provider-process": "npm:3.577.0" + "@aws-sdk/credential-provider-sso": "npm:3.577.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/credential-provider-imds": "npm:^3.0.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/03edbb0bfdaf636d162e5aca4cb062280ba1497d3c6b71ef388074557e04e967b06fbfe641b65fe4b26b89d8526d2824cca8605f022a108065ad660f00a9a03b + checksum: 10c0/f472665c3eb64e7d470a4bab37c843fcefb1ad54b4b40d35506c43f95847b7aae9276fd9688ad5d0bc7d5cd371eae578cc2b1ab04dd19ab243164dbea5084b78 languageName: node linkType: hard @@ -990,16 +990,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.572.0" +"@aws-sdk/credential-provider-process@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/shared-ini-file-loader": "npm:^2.4.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/e1aa361c97e995891fc72a278151732d0fa0fd67b713a175de85f95b6fdb7e10ac5b165acc8b0d0aa30034f3ef06b3ee888fb3c78a4d9ad8a3cdbe22b894de2c + checksum: 10c0/07867d102a85846ff6f0cca8b5d28ac22f829ca10b9d799f4d437832e162992b06de0a81947866acc5d7e950210fc1a859d446732d4dfae1f4fb393eea6b5316 languageName: node linkType: hard @@ -1018,18 +1018,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.572.0" +"@aws-sdk/credential-provider-sso@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.577.0" dependencies: - "@aws-sdk/client-sso": "npm:3.572.0" - "@aws-sdk/token-providers": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/shared-ini-file-loader": "npm:^2.4.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/client-sso": "npm:3.577.0" + "@aws-sdk/token-providers": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/d95b58458b2fdcc3290749050eeaac2a0ffaa242770053f9ce055b6f620e607cbfe4046d7f5e14104fef431358002923eea9d7b2fc32cdccb6c530e331caac52 + checksum: 10c0/ac8d4752fb38ac2e422b03c5e26baa7c6a1b09764df9ff93bfdfdb424687fce2e5eb443cc7025457a75360593bd453e0a8a8cfd039da8e0dc62ab11c16bb281f languageName: node linkType: hard @@ -1046,29 +1046,29 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.568.0" +"@aws-sdk/credential-provider-web-identity@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.568.0 - checksum: 10c0/4d7e539c766875c2c5f73f3664f69d43b5eb5dee8a65419406192446e66932cb89036beca75be01f3d3f9bc613663128c87283b6408791c4652add5055f2f6ab + "@aws-sdk/client-sts": ^3.577.0 + checksum: 10c0/d8fa1f97f2d76b4b4e3bdcafb3d3962566524df1f22b181567d7ff5dae51eae6be557f56c7e99038ea4f3e9a19b7e57ab009997fb4ad6127dc576f2dfdd31707 languageName: node linkType: hard -"@aws-sdk/eventstream-handler-node@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/eventstream-handler-node@npm:3.568.0" +"@aws-sdk/eventstream-handler-node@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/eventstream-handler-node@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/eventstream-codec": "npm:^2.2.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/eventstream-codec": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/2ff811a64a7c595dc910581dd516f1027f23977a591b1bc368ea4719778ccd77e1c1b52dade28c2f9655fbc688234cef1ce515c8071ad5a3df57d2cc3edf5b80 + checksum: 10c0/8707528edb9a14752ac0ca3cb3f0d8d33669a5ad1c61b2ca94aaae91f6618325b91623a93bb577f98c194c873a9df91e062dc7fff5e2a2c430e4435f1e01608b languageName: node linkType: hard @@ -1104,15 +1104,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-eventstream@npm:3.569.0": - version: 3.569.0 - resolution: "@aws-sdk/middleware-eventstream@npm:3.569.0" +"@aws-sdk/middleware-eventstream@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-eventstream@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/c092a7a585cd35633d8d758952021a460ef2bc675e46e560a575dda2dbcc5d11335c8385ec42c3138a4a86d8339bc11ccec4268826e4824e2304b2e9fa5849ad + checksum: 10c0/dbc03c8bcdaa20834c5d6f05bccf4f8edd6362094f74ebac72196c71d4b2414988c0f3e4ce1587b2225208b040a59143854c02536fa92c2659d7d9306c1efc4a languageName: node linkType: hard @@ -1156,15 +1156,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.567.0": - version: 3.567.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.567.0" +"@aws-sdk/middleware-host-header@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/ad60e1a02054e7c29e63f9bc2ddc9374dd0d48b282910bd8d3e5ba06bd278b3a2c2d5ede620705e5ccc674641e4738379f6bd402817d2620f09f6949b2c10364 + checksum: 10c0/443e00eeab3d67c988d0102338e8625f72329d06340ce73723bbcd287a5bf435f9e32988e38c7f9b2e0cf56718a72653799bc06187e5cd8d3aeb44a9eb765a3c languageName: node linkType: hard @@ -1190,14 +1190,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/middleware-logger@npm:3.568.0" +"@aws-sdk/middleware-logger@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-logger@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/9ec1b71afaf1c6bd6c19c9da83cdacc10a4207233bfc896fe2fb634b104075aa4cdb3bd7ad114b70fdc795beca0e4aa05e7e94bcc9cec197faf9291191b5c2f4 + checksum: 10c0/398b7f45e591103a3a90388be4dedd0ca83b02133b5a49907f4f671cc1a3539e1af21da2df232cdc977a88a7fa3261af08e8875f25eff23f87588fb9899fd796 languageName: node linkType: hard @@ -1213,15 +1213,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.567.0": - version: 3.567.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.567.0" +"@aws-sdk/middleware-recursion-detection@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/d350d8ebb099ceae2d73e520cbe46d43eb4a85f1ac847158e7211a78e150a69313d8914e08569119f4ce88c8d95b3dd870aa6ea62ede0b6c66f7e34effb12f50 + checksum: 10c0/35e0958a806dd93911a58385b53ce36f724aa15bef8fcf674f80096a13bfa3aca3a80552016772db72577450c5206c324353ae71c6faa896ab6edf738cc743ad languageName: node linkType: hard @@ -1242,19 +1242,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.569.0": - version: 3.569.0 - resolution: "@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.569.0" +"@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-format-url": "npm:3.567.0" - "@smithy/eventstream-serde-browser": "npm:^2.2.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/signature-v4": "npm:^2.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-format-url": "npm:3.577.0" + "@smithy/eventstream-serde-browser": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/signature-v4": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/820374a5b14034ea09f3a4fc4e7b667457c4a4b0b6eb128e5a51d70d6e88ccb3054bf4b6268e6a316f7c48c0c9a6de380c3689c499debd49b79bf7b4cc3649af + checksum: 10c0/5048d279e68ddc93708920c404655e6c494f09070eaeec1c5bc28eec755086118208282be8703fb2c8da5d551a4e8d142091dca9d8d8e9d4dd4e9305a37133c0 languageName: node linkType: hard @@ -1273,18 +1273,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/middleware-signing@npm:3.572.0" +"@aws-sdk/middleware-signing@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-signing@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/signature-v4": "npm:^2.3.0" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-middleware": "npm:^2.2.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/signature-v4": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/169599369dc4b1da0f74287869d22dc8ccca77ed87692e4c2ae95e3f0b010d895fd2002ad1fa1e1f3f62121611ad1347d571e0ea9efb43753433e35adbd3127d + checksum: 10c0/065e9bc4b35831eabd8d1db3e46695869d94976a5fbaae2c80df6144adfe0158a16aabad68b53abd1a028ea8a1359fdd7bdd196e5669ce8c8ba5d227816e541a languageName: node linkType: hard @@ -1312,35 +1312,35 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.572.0" +"@aws-sdk/middleware-user-agent@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-endpoints": "npm:3.572.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-endpoints": "npm:3.577.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/759e2a311319f54eabf87ba7edeed464e4636ae24ff3e2e8543d36becdb247dafc803eeb7a28b36070ee2eb21388a7ebb9c1183a70e52d86deeae5ef09e6136a + checksum: 10c0/bcfe9a294b36e715de3116ad8c734599f7a35f1205812c94189ac2c44f10d7f263aa0bc1b1c54cd6df4e994509477d098394827cd788c3c390dfc3119b886fac languageName: node linkType: hard -"@aws-sdk/middleware-websocket@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/middleware-websocket@npm:3.572.0" +"@aws-sdk/middleware-websocket@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-websocket@npm:3.577.0" dependencies: - "@aws-sdk/middleware-signing": "npm:3.572.0" - "@aws-sdk/types": "npm:3.567.0" - "@aws-sdk/util-format-url": "npm:3.567.0" - "@smithy/eventstream-codec": "npm:^2.2.0" - "@smithy/eventstream-serde-browser": "npm:^2.2.0" - "@smithy/fetch-http-handler": "npm:^2.5.0" - "@smithy/protocol-http": "npm:^3.3.0" - "@smithy/signature-v4": "npm:^2.3.0" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-hex-encoding": "npm:^2.2.0" + "@aws-sdk/middleware-signing": "npm:3.577.0" + "@aws-sdk/types": "npm:3.577.0" + "@aws-sdk/util-format-url": "npm:3.577.0" + "@smithy/eventstream-codec": "npm:^3.0.0" + "@smithy/eventstream-serde-browser": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/signature-v4": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-hex-encoding": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/3586ce62a3ba4665c2054042b652cfce502d11a00698c8c58dcd7fded39559b8182dd9d78f0dfc3336e0e554b6f2e41e2bf23eb91a8adf611ee1d8df2e22d32d + checksum: 10c0/fa75f3ce13d409a8a88d0d34a30f33d51c3da7c573f7a75b7bde647bc70b059c76cdee1593f380ae08a8009963864053bc45cd3b25de8c940d25faa4b20bce88 languageName: node linkType: hard @@ -1358,17 +1358,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.572.0" +"@aws-sdk/region-config-resolver@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-config-provider": "npm:^2.3.0" - "@smithy/util-middleware": "npm:^2.2.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-config-provider": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/19b44e206afa8e07c7ab62f9b1a40df944662905e45ecfc501f90b9300133d3904f6ce4f1ad593a6221be444f1bfb18beb605cdf743353324fbf1b059a11441f + checksum: 10c0/4271d65f5f54c3c3acb3f72070470ead12b1bd12a5fbaf14f5e633da081fcb8ddef7a3a5ffa4c65f09f2a060f585a8f51895db23b71dbe4ba61b4a20f8ac9928 languageName: node linkType: hard @@ -1400,18 +1400,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/token-providers@npm:3.572.0" +"@aws-sdk/token-providers@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/token-providers@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/property-provider": "npm:^2.2.0" - "@smithy/shared-ini-file-loader": "npm:^2.4.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sso-oidc": 3.572.0 - checksum: 10c0/6f3863d3e6f1e7dd2282014fb669e8dbd69bbc7fa36ee01cbd305994266dc636783c44aa22da3eef303366f2bc10b24d14a2679ac30ffaaaf226a1a497fa3d90 + "@aws-sdk/client-sso-oidc": ^3.577.0 + checksum: 10c0/5d9fade10e1dcb66c4b4c97c21989bbbb71b6a01e1e865561f68c2c2a18f4d797f21f65d9e171aa0580feb9392e90b76ebee7af22c773e6f5ac65e8c11c656f1 languageName: node linkType: hard @@ -1435,13 +1435,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.567.0": - version: 3.567.0 - resolution: "@aws-sdk/types@npm:3.567.0" +"@aws-sdk/types@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/types@npm:3.577.0" dependencies: - "@smithy/types": "npm:^2.12.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/c034c4895e01f39891f9f2701f69f117f6ad0434f0a49d785ce1e26d43e1f2dae6a56235f0d3cfe0cfc6db23d01700afbf32875470af1ed3a9571b039883b106 + checksum: 10c0/ae31757b05c2445f52b3f3268d7e9cbae765cae24f088afb8f967c8e3a268b425794a8e99fab3e0428dc6491ccca99b6c57ab5ca69e2d1cc2878ec85ff9643f7 languageName: node linkType: hard @@ -1476,27 +1476,27 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.572.0": - version: 3.572.0 - resolution: "@aws-sdk/util-endpoints@npm:3.572.0" +"@aws-sdk/util-endpoints@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/util-endpoints@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-endpoints": "npm:^1.2.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-endpoints": "npm:^2.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/25d14d26783c693271c7c6e7da4432807b74d63b5da6cbad6a5eca16e75da2560cf77ded1ec5b50c1d80d35687b50968a00857d12db81cf899dab8a132b12632 + checksum: 10c0/8c5d6ef3e5b79a740e9990f5e03f6e0b9327d970e82fc9e73eabb6bfeda0e1f6bdb9c0bcaf58768572395621d6a067efd1092db31122d265887d4216b15d856c languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.567.0": - version: 3.567.0 - resolution: "@aws-sdk/util-format-url@npm:3.567.0" +"@aws-sdk/util-format-url@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/util-format-url@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/querystring-builder": "npm:^2.2.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/querystring-builder": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/a4c6748da9e999b3bacd59a1c1c0982b969905d3c8895fd79d8f24bc39844cb98ed4abfdadef069b3e1a0a563ba2db93e928b036afd51242389ed8ed02c4fbd5 + checksum: 10c0/cda36032aa7d3908ac17dd043b8af972c9b13f06ad8f2ea1c2bda6cb562734812da1c831a8d927c11503cb89bbc74de4c658f248f46bcd0abd2d7e96ad501ca8 languageName: node linkType: hard @@ -1521,15 +1521,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.567.0": - version: 3.567.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.567.0" +"@aws-sdk/util-user-agent-browser@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/types": "npm:^3.0.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/4143652ddf90e71c8933d35539174605c69a34d6e19fbe98acbdd9026647ed3bfdb1c79897da2580619c446c26bb0ab26a6b95b514c109db3c704880c9a01520 + checksum: 10c0/795db0f1b7d74f84db56775c609a65eeea94041d731fad1fb071d923d4b180c62c3fdf0e179e08adc11310f894245241584780c7e86bc338b768f6aa000a85f0 languageName: node linkType: hard @@ -1550,20 +1550,20 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.568.0" +"@aws-sdk/util-user-agent-node@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.577.0" dependencies: - "@aws-sdk/types": "npm:3.567.0" - "@smithy/node-config-provider": "npm:^2.3.0" - "@smithy/types": "npm:^2.12.0" + "@aws-sdk/types": "npm:3.577.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/b5ccc605b75c1e8f73ab29e704fd42c907ade45711b24a7c6303ccab698d1afa0a9ee817b0ea2cd5ffe42b2ac3149f28a6fdd97003158edd3d80e007f2ea2297 + checksum: 10c0/f45a7f346adc3ca9b4a2cf93fef00d639df81bfe0ba4cc5f869aabbce86a89c40a9510b30c525bbf62e6e19ebacfdd69dc0c44454daab9db61d670db15c98669 languageName: node linkType: hard @@ -5589,6 +5589,16 @@ __metadata: languageName: node linkType: hard +"@smithy/abort-controller@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/abort-controller@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/7582febcbac6cdca851a45925ce57e211f5f6eadbcb5f53ad9bd09a2ee52fe5cc8aa76b623e17e0a42afcd9504c532d0eb6bb7cc305035e2c67684ee56b8988b + languageName: node + linkType: hard + "@smithy/chunked-blob-reader-native@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/chunked-blob-reader-native@npm:2.2.0" @@ -5621,6 +5631,19 @@ __metadata: languageName: node linkType: hard +"@smithy/config-resolver@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/config-resolver@npm:3.0.0" + dependencies: + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-config-provider": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f8cf48624bb39939ddbed63d2c94aaf2759a02d81ebb616aa41258e8a390236e6a57ac888c055f76c8365cee67a3ab8e9af439d9f6d9275b0a39b77959fccad8 + languageName: node + linkType: hard + "@smithy/core@npm:^1.4.2": version: 1.4.2 resolution: "@smithy/core@npm:1.4.2" @@ -5637,6 +5660,22 @@ __metadata: languageName: node linkType: hard +"@smithy/core@npm:^2.0.0": + version: 2.0.1 + resolution: "@smithy/core@npm:2.0.1" + dependencies: + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-retry": "npm:^3.0.1" + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/smithy-client": "npm:^3.0.1" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/71a581f35bbd06ede752a2b687c05e9be4c10de5995497c8997f10e7def2501f025cc1c1fdd248155a9e36d4f130a86bf8572b04555c1a6c9724f3b81e0c9075 + languageName: node + linkType: hard + "@smithy/credential-provider-imds@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/credential-provider-imds@npm:2.3.0" @@ -5650,6 +5689,19 @@ __metadata: languageName: node linkType: hard +"@smithy/credential-provider-imds@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/credential-provider-imds@npm:3.0.0" + dependencies: + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/8e248eb7590107c1745dd0e9290c6ab04fed3f28d899d9c22350a8220ab0374387b0b8c62413ff56c9c2d3f7f3c4b20cfaf09f1014618dfd80086f65377c4e11 + languageName: node + linkType: hard + "@smithy/eventstream-codec@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/eventstream-codec@npm:2.2.0" @@ -5662,6 +5714,18 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-codec@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/eventstream-codec@npm:3.0.0" + dependencies: + "@aws-crypto/crc32": "npm:3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-hex-encoding": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/cdfa909fc142032d3a2727d1369c82177fe2d3176d0d0dee129774d457a17ad29527a262030e3c13e2df3aaf0d190d0fa2498b53cdbc0698b130e8c7734ccbef + languageName: node + linkType: hard + "@smithy/eventstream-serde-browser@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/eventstream-serde-browser@npm:2.2.0" @@ -5673,6 +5737,17 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-serde-browser@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/eventstream-serde-browser@npm:3.0.0" + dependencies: + "@smithy/eventstream-serde-universal": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/8dbf88161ef7e815eac37e7ef3bd81b8533f1816bac91b2d4cd54c8c299b095227293f7ee4f1d17f3858fa996237d0d2f1139cda86e9595e623f3b04cbfb22ac + languageName: node + linkType: hard + "@smithy/eventstream-serde-config-resolver@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/eventstream-serde-config-resolver@npm:2.2.0" @@ -5683,6 +5758,16 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-serde-config-resolver@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f9f8d7514b85ceb2f62ec2b3de0fc7be56e9c40242005a41b8b3eb3de28e3427603b927c0372ee835f4c6890ebdc6b3ece361395573f216840e5f74e11e9f12c + languageName: node + linkType: hard + "@smithy/eventstream-serde-node@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/eventstream-serde-node@npm:2.2.0" @@ -5694,6 +5779,17 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-serde-node@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/eventstream-serde-node@npm:3.0.0" + dependencies: + "@smithy/eventstream-serde-universal": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/2cae317324384767c4570396f2d8b84d748b8b388e7a842d1135d40ae396ddc5cd57a814d7eb80f524d6c5e40bc3664cc2c00ce079080c889f4a30d152410a93 + languageName: node + linkType: hard + "@smithy/eventstream-serde-universal@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/eventstream-serde-universal@npm:2.2.0" @@ -5705,6 +5801,17 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-serde-universal@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/eventstream-serde-universal@npm:3.0.0" + dependencies: + "@smithy/eventstream-codec": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/1cee8d4656e601831cea519706fa44ed21e5888924e1a2c272d331d59674410b6ed73baf14adc3ca842943947475e4a16a68e15ef1315d8371b25baa86bfa3a3 + languageName: node + linkType: hard + "@smithy/fetch-http-handler@npm:^2.5.0": version: 2.5.0 resolution: "@smithy/fetch-http-handler@npm:2.5.0" @@ -5718,6 +5825,19 @@ __metadata: languageName: node linkType: hard +"@smithy/fetch-http-handler@npm:^3.0.0, @smithy/fetch-http-handler@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/fetch-http-handler@npm:3.0.1" + dependencies: + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/querystring-builder": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-base64": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/84378648be8e5023cc1eccda66c516153a37183546318b083e5a998d2dcb4fcffbf85837be8b334331b6f80785c08f7e0e63168dc1b80dfddfdc4d58f3137490 + languageName: node + linkType: hard + "@smithy/hash-blob-browser@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/hash-blob-browser@npm:2.2.0" @@ -5742,6 +5862,18 @@ __metadata: languageName: node linkType: hard +"@smithy/hash-node@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/hash-node@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + "@smithy/util-buffer-from": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/3f3ab1afa4bef2ddc923c1d3ad7278621a222d68e59639367fa84597aedac84d1bd614769bed045b60fa5144cb821e192bddfdd5c4842321274207c4311e8b6a + languageName: node + linkType: hard + "@smithy/hash-stream-node@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/hash-stream-node@npm:2.2.0" @@ -5763,6 +5895,16 @@ __metadata: languageName: node linkType: hard +"@smithy/invalid-dependency@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/invalid-dependency@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f3dfba2caee6849607dc4f6b36a218a9d5091c83c7a440501c38f7fdc4171d58bc5358a5231a53b89a0c7f76ffe68c22645054461311c317bcf80f606d6d6d85 + languageName: node + linkType: hard + "@smithy/is-array-buffer@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/is-array-buffer@npm:2.2.0" @@ -5772,6 +5914,15 @@ __metadata: languageName: node linkType: hard +"@smithy/is-array-buffer@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/is-array-buffer@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/44710d94b9e6655ebc02169c149ea2bc5d5b9e509b6b39511cfe61bac571412290f4b9c743d61e395822f014021fcb709dbb533f2f717c1ac2d5a356696c22fd + languageName: node + linkType: hard + "@smithy/md5-js@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/md5-js@npm:2.2.0" @@ -5794,6 +5945,17 @@ __metadata: languageName: node linkType: hard +"@smithy/middleware-content-length@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-content-length@npm:3.0.0" + dependencies: + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b4310878d36c39ca56dc471467fd1d2500fbf50126032c7ec4ab41bb21cbb9f89de5afbf42083fa74605d37377d08350e3ecbc5e7202226237527455cc7453f4 + languageName: node + linkType: hard + "@smithy/middleware-endpoint@npm:^2.5.1": version: 2.5.1 resolution: "@smithy/middleware-endpoint@npm:2.5.1" @@ -5809,6 +5971,21 @@ __metadata: languageName: node linkType: hard +"@smithy/middleware-endpoint@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-endpoint@npm:3.0.0" + dependencies: + "@smithy/middleware-serde": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/url-parser": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/d604647cafe9b562893ae2de2f6224ea1090735be8929e4fe1328bbd838c828defb74a96d4c43b43440e7539d1dfee1db37424b8eab2cfb002b9ca54ba93471c + languageName: node + linkType: hard + "@smithy/middleware-retry@npm:^2.3.1": version: 2.3.1 resolution: "@smithy/middleware-retry@npm:2.3.1" @@ -5826,6 +6003,23 @@ __metadata: languageName: node linkType: hard +"@smithy/middleware-retry@npm:^3.0.0, @smithy/middleware-retry@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/middleware-retry@npm:3.0.1" + dependencies: + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/service-error-classification": "npm:^3.0.0" + "@smithy/smithy-client": "npm:^3.0.1" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-retry": "npm:^3.0.0" + tslib: "npm:^2.6.2" + uuid: "npm:^9.0.1" + checksum: 10c0/b2ae9635a4e81ef2ace07b4143ffe4b6b480eae16bec77a44baf03b69d30e2d1bbdd324bde940b67413c7da6b678fbb510bbbe3afa3c4bb910fb3a6fc470a152 + languageName: node + linkType: hard + "@smithy/middleware-serde@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/middleware-serde@npm:2.3.0" @@ -5836,6 +6030,16 @@ __metadata: languageName: node linkType: hard +"@smithy/middleware-serde@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-serde@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/66f78e261c05087d84287f917948fa992ec38376770ff96ce0cd7a27f116af560e82f1205e5a815a93dc54d08e44a2b2797a3c466099ce2d0ee2beb78840c9a9 + languageName: node + linkType: hard + "@smithy/middleware-stack@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/middleware-stack@npm:2.2.0" @@ -5846,6 +6050,16 @@ __metadata: languageName: node linkType: hard +"@smithy/middleware-stack@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-stack@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/7b9131d3fa1c42e57ca769b6adeb14268c00d480161b493b47bdf5864a267b09cac6b4240ecdc8a69e236d7a77a44024734d6b3f05d94f048c31a8fc2797a506 + languageName: node + linkType: hard + "@smithy/node-config-provider@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/node-config-provider@npm:2.3.0" @@ -5858,6 +6072,18 @@ __metadata: languageName: node linkType: hard +"@smithy/node-config-provider@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/node-config-provider@npm:3.0.0" + dependencies: + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/shared-ini-file-loader": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/0c6940e695a2a6d6cec945f0e7e5e74dd4eeb2810a543fa389c7bc73f16e5a5af37bd3f93a66ebb433c6e1779e4e1559162d57169848eab1f62b9188a8edb35d + languageName: node + linkType: hard + "@smithy/node-http-handler@npm:^2.5.0": version: 2.5.0 resolution: "@smithy/node-http-handler@npm:2.5.0" @@ -5871,6 +6097,19 @@ __metadata: languageName: node linkType: hard +"@smithy/node-http-handler@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/node-http-handler@npm:3.0.0" + dependencies: + "@smithy/abort-controller": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/querystring-builder": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/1f3009f785b6fc6e1bf8b0a249d728e979d9e8264b5cc070c5d43097573b1345df5133468bd16e1222e3c8b864506e26401e48c1b7b2e47426749ba0e0c0cb7c + languageName: node + linkType: hard + "@smithy/property-provider@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/property-provider@npm:2.2.0" @@ -5881,6 +6120,16 @@ __metadata: languageName: node linkType: hard +"@smithy/property-provider@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/property-provider@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f6446a9bcaa7ba0b3be0ba87ee5d7621b3fa49de2eec6abb5f4240babd0949644ab43e018212f7658d4fde1723a500ffd1f137f4fee5d4e57711c45ad410e19a + languageName: node + linkType: hard + "@smithy/protocol-http@npm:^3.3.0": version: 3.3.0 resolution: "@smithy/protocol-http@npm:3.3.0" @@ -5891,6 +6140,16 @@ __metadata: languageName: node linkType: hard +"@smithy/protocol-http@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/protocol-http@npm:4.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/c047f136afbdc8b50990537a73b8656c2756800557b358f81c3939148cd43281b50370a61eb284a2a215fd37e9702a6c2b79b307a1dda3685ec8dff522b146e1 + languageName: node + linkType: hard + "@smithy/querystring-builder@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/querystring-builder@npm:2.2.0" @@ -5902,6 +6161,17 @@ __metadata: languageName: node linkType: hard +"@smithy/querystring-builder@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/querystring-builder@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + "@smithy/util-uri-escape": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/985728a9226ea6b3bd0468c6e3a0d41e2622a7c194d2f787feff03ab88eb114edafd71668dd8e90f936ea8912616a7202250a3242a2b46b94e2d200c0b3b19c0 + languageName: node + linkType: hard + "@smithy/querystring-parser@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/querystring-parser@npm:2.2.0" @@ -5912,6 +6182,16 @@ __metadata: languageName: node linkType: hard +"@smithy/querystring-parser@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/querystring-parser@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/59a5f1676e439fd4ae6f5ef751fa660e234c9b9bdd4a2997581b94042dba299a67785c32f5fd3c321e3802cd774ee704d4e192620d5fa434312c0a1c16d9b4fe + languageName: node + linkType: hard + "@smithy/service-error-classification@npm:^2.1.5": version: 2.1.5 resolution: "@smithy/service-error-classification@npm:2.1.5" @@ -5921,6 +6201,15 @@ __metadata: languageName: node linkType: hard +"@smithy/service-error-classification@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/service-error-classification@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + checksum: 10c0/c63a9169a8f47c85ab290c8cdebe418cf74ea234ed919264cba64248cb5f8ef90118db5513ef7c624a560e4e2e950daa9107f0bbc18160616d3ec9f470e88c57 + languageName: node + linkType: hard + "@smithy/shared-ini-file-loader@npm:^2.4.0": version: 2.4.0 resolution: "@smithy/shared-ini-file-loader@npm:2.4.0" @@ -5931,6 +6220,16 @@ __metadata: languageName: node linkType: hard +"@smithy/shared-ini-file-loader@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/shared-ini-file-loader@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/d56a1db760f4c82e916639ace2ff6f39c2718ac1db876228282b51ae392cae75f69bf1f334e06d2a4500f7831fb6420fd161544199efe6bae1fd1d9408faf9b5 + languageName: node + linkType: hard + "@smithy/signature-v4@npm:^2.2.1": version: 2.2.1 resolution: "@smithy/signature-v4@npm:2.2.1" @@ -5946,18 +6245,18 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^2.3.0": - version: 2.3.0 - resolution: "@smithy/signature-v4@npm:2.3.0" +"@smithy/signature-v4@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/signature-v4@npm:3.0.0" dependencies: - "@smithy/is-array-buffer": "npm:^2.2.0" - "@smithy/types": "npm:^2.12.0" - "@smithy/util-hex-encoding": "npm:^2.2.0" - "@smithy/util-middleware": "npm:^2.2.0" - "@smithy/util-uri-escape": "npm:^2.2.0" - "@smithy/util-utf8": "npm:^2.3.0" + "@smithy/is-array-buffer": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-hex-encoding": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.0" + "@smithy/util-uri-escape": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/b8a0c312352a863a875e723098ae2dcedcd586cc323b4cb16a03ff056c3f9d2c09cefffccb19426a25a1450de8612af17ccecda025e47269c6f8c4c514640063 + checksum: 10c0/e655dfa6882fedee7ac43fdee6ed22af92baea777ad57a5c54600eba05563b989108ab60bfae661895221897fa987cf483bfecf7165be2fbdc04756d067817e0 languageName: node linkType: hard @@ -5975,6 +6274,20 @@ __metadata: languageName: node linkType: hard +"@smithy/smithy-client@npm:^3.0.0, @smithy/smithy-client@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/smithy-client@npm:3.0.1" + dependencies: + "@smithy/middleware-endpoint": "npm:^3.0.0" + "@smithy/middleware-stack": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^4.0.0" + "@smithy/types": "npm:^3.0.0" + "@smithy/util-stream": "npm:^3.0.1" + tslib: "npm:^2.6.2" + checksum: 10c0/fac5315460c3b033e105513b0ced4de10542863850c35c34076498abf17c90b392ccb06eb603109de91917ceb002e487072abc5116476c55ff6bf1d127691367 + languageName: node + linkType: hard + "@smithy/types@npm:^1.1.0": version: 1.2.0 resolution: "@smithy/types@npm:1.2.0" @@ -6002,6 +6315,15 @@ __metadata: languageName: node linkType: hard +"@smithy/types@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/types@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/9f6eefa4f715a8f0bfd79787f82156b4785baaa1524496abe9fc3db96c36f7c782fb962353601d8bd2bba3b449d999d48a09b2b25405bfcd7fb5e1d1c935f1fb + languageName: node + linkType: hard + "@smithy/url-parser@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/url-parser@npm:2.2.0" @@ -6013,6 +6335,17 @@ __metadata: languageName: node linkType: hard +"@smithy/url-parser@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/url-parser@npm:3.0.0" + dependencies: + "@smithy/querystring-parser": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/77aca0d0c6946bbdcbb6a21c98a72deac8e0ce4e97e029a9f0e28eded53edb5ad87dfbd199425f6efaf0253cb3886a1b877078491a9c5d62007053d56427a830 + languageName: node + linkType: hard + "@smithy/util-base64@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/util-base64@npm:2.3.0" @@ -6024,6 +6357,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-base64@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-base64@npm:3.0.0" + dependencies: + "@smithy/util-buffer-from": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/5c05c3505bd1ac4c1e04ec0e22ad1c9e0c61756945735861614f9e46146369a1a112dd0895602475822c18b8f1fe0cc3fb9e45c99a4e7fb03308969c673cf043 + languageName: node + linkType: hard + "@smithy/util-body-length-browser@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-body-length-browser@npm:2.2.0" @@ -6033,6 +6377,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-body-length-browser@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-body-length-browser@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/cfb595e814334fe7bb78e8381141cc7364f66bff0c1d672680f4abb99361ef66fbdb9468fa1dbabcd5753254b2b05c59c907fa9d600b36e6e4b8423eccf412f7 + languageName: node + linkType: hard + "@smithy/util-body-length-node@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/util-body-length-node@npm:2.3.0" @@ -6042,6 +6395,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-body-length-node@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-body-length-node@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/6f779848e7c81051364cf6e40ed61034a06fa8df3480398528baae54d9b69622abc7d068869e33dbe51fef2bbc6fda3f548ac59644a0f10545a54c87bc3a4391 + languageName: node + linkType: hard + "@smithy/util-buffer-from@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-buffer-from@npm:2.2.0" @@ -6052,6 +6414,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-buffer-from@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-buffer-from@npm:3.0.0" + dependencies: + "@smithy/is-array-buffer": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b10fb81ef34f95418f27c9123c2c1774e690dd447e8064184688c553156bdec46d2ba1b1ae3bad7edd2b58a5ef32ac569e1ad814b36e7ee05eba10526d329983 + languageName: node + linkType: hard + "@smithy/util-config-provider@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/util-config-provider@npm:2.3.0" @@ -6061,6 +6433,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-config-provider@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-config-provider@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/a2c25eac31223eddea306beff2bb3c32e8761f8cb50e8cb2a9d61417a5040e9565dc715a655787e99a37465fdd35bbd0668ff36e06043a5f6b7be48a76974792 + languageName: node + linkType: hard + "@smithy/util-defaults-mode-browser@npm:^2.2.1": version: 2.2.1 resolution: "@smithy/util-defaults-mode-browser@npm:2.2.1" @@ -6074,6 +6455,19 @@ __metadata: languageName: node linkType: hard +"@smithy/util-defaults-mode-browser@npm:^3.0.0": + version: 3.0.1 + resolution: "@smithy/util-defaults-mode-browser@npm:3.0.1" + dependencies: + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/smithy-client": "npm:^3.0.1" + "@smithy/types": "npm:^3.0.0" + bowser: "npm:^2.11.0" + tslib: "npm:^2.6.2" + checksum: 10c0/d2b62aba1bcdf03a776e0e64e26d03f2ca15441ac7c9cf366a55ed1d2c55376a2d4d2511777b706722917914efb78feece6d898e9e130d5e36c6a86c1c952497 + languageName: node + linkType: hard + "@smithy/util-defaults-mode-node@npm:^2.3.1": version: 2.3.1 resolution: "@smithy/util-defaults-mode-node@npm:2.3.1" @@ -6089,6 +6483,21 @@ __metadata: languageName: node linkType: hard +"@smithy/util-defaults-mode-node@npm:^3.0.0": + version: 3.0.1 + resolution: "@smithy/util-defaults-mode-node@npm:3.0.1" + dependencies: + "@smithy/config-resolver": "npm:^3.0.0" + "@smithy/credential-provider-imds": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/property-provider": "npm:^3.0.0" + "@smithy/smithy-client": "npm:^3.0.1" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f950dc66529e9f7b822d5ff944693f7b27d42ba9ab3645c532379dd2b19d771f3113d2b26c5720eeaab52b66ef50daa3e3ae9941fb4de30d62b9bb7a3687d261 + languageName: node + linkType: hard + "@smithy/util-endpoints@npm:^1.2.0": version: 1.2.0 resolution: "@smithy/util-endpoints@npm:1.2.0" @@ -6100,6 +6509,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-endpoints@npm:^2.0.0": + version: 2.0.0 + resolution: "@smithy/util-endpoints@npm:2.0.0" + dependencies: + "@smithy/node-config-provider": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/9cc0746fb7af795649929458ea57757955e592e504af7874c688d7c148e22a858d8d5cac10788b8c79f97e676f88764e8360dbeeff47d37b300d654bc31ce2da + languageName: node + linkType: hard + "@smithy/util-hex-encoding@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-hex-encoding@npm:2.2.0" @@ -6109,6 +6529,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-hex-encoding@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-hex-encoding@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/d2fa7270853cc8f22c4f4635c72bf52e303731a68a3999e3ea9da1d38b6bf08c0f884e7d20b65741e3bc68bb3821e1abd1c3406d7a3dce8fc02df019aea59162 + languageName: node + linkType: hard + "@smithy/util-middleware@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-middleware@npm:2.2.0" @@ -6119,6 +6548,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-middleware@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-middleware@npm:3.0.0" + dependencies: + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/033f914f85125c36f32bbacccb6afde28be12c31a55cf69ac8da46b935ff01107ca5a0f2f65787a4722389782ec63896f7381ce75a975f64a3ca08add6f10673 + languageName: node + linkType: hard + "@smithy/util-retry@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-retry@npm:2.2.0" @@ -6130,6 +6569,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-retry@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-retry@npm:3.0.0" + dependencies: + "@smithy/service-error-classification": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/d47673e44161bc316347cc54224a62b748433752644667f6076728b026a7e15ab26adfe169006ff3c69e7f1310bb945c2485485161be43222c6f052270e0fe3a + languageName: node + linkType: hard + "@smithy/util-stream@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-stream@npm:2.2.0" @@ -6146,6 +6596,22 @@ __metadata: languageName: node linkType: hard +"@smithy/util-stream@npm:^3.0.0, @smithy/util-stream@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/util-stream@npm:3.0.1" + dependencies: + "@smithy/fetch-http-handler": "npm:^3.0.1" + "@smithy/node-http-handler": "npm:^3.0.0" + "@smithy/types": "npm:^3.0.0" + "@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/a11f01afd89d20278740d71584d27ec7f8ee54776ac81038dfa0e4a665cb367d99594d7f1fc0708ee833f136e100350c24494a681aa39d418287b43e1b0ed3a3 + languageName: node + linkType: hard + "@smithy/util-uri-escape@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-uri-escape@npm:2.2.0" @@ -6155,6 +6621,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-uri-escape@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-uri-escape@npm:3.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/b8d831348412cfafd9300069e74a12e0075b5e786d7ef6a210ba4ab576001c2525653eec68b71dfe6d7aef71c52f547404c4f0345c0fb476a67277f9d44b1156 + languageName: node + linkType: hard + "@smithy/util-utf8@npm:^2.3.0": version: 2.3.0 resolution: "@smithy/util-utf8@npm:2.3.0" @@ -6165,6 +6640,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-utf8@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-utf8@npm:3.0.0" + dependencies: + "@smithy/util-buffer-from": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b568ed84b4770d2ae9b632eb85603765195a791f045af7f47df1369dc26b001056f4edf488b42ca1cd6d852d0155ad306a0d6531e912cb4e633c0d87abaa8899 + languageName: node + linkType: hard + "@smithy/util-waiter@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-waiter@npm:2.2.0" @@ -9866,12 +10351,12 @@ __metadata: languageName: node linkType: hard -"echogarden@npm:^1.4.3": - version: 1.4.3 - resolution: "echogarden@npm:1.4.3" +"echogarden@npm:^1.4.4": + version: 1.4.4 + resolution: "echogarden@npm:1.4.4" dependencies: - "@aws-sdk/client-polly": "npm:^3.574.0" - "@aws-sdk/client-transcribe-streaming": "npm:^3.574.0" + "@aws-sdk/client-polly": "npm:^3.576.0" + "@aws-sdk/client-transcribe-streaming": "npm:^3.576.0" "@echogarden/espeak-ng-emscripten": "npm:^0.1.2" "@echogarden/fasttext-wasm": "npm:^0.1.0" "@echogarden/flite-wasi": "npm:^0.1.1" @@ -9904,11 +10389,11 @@ __metadata: moving-median: "npm:^1.0.0" msgpack-lite: "npm:^0.1.26" onnxruntime-node: "npm:^1.17.3" - openai: "npm:^4.45.0" + openai: "npm:^4.47.1" sam-js: "npm:^0.2.1" strip-ansi: "npm:^7.1.0" tar: "npm:^7.1.0" - tiktoken: "npm:^1.0.14" + tiktoken: "npm:^1.0.15" tinyld: "npm:^1.3.4" ws: "npm:^8.17.0" wtf_wikipedia: "npm:^10.3.1" @@ -10279,7 +10764,7 @@ __metadata: dayjs: "npm:^1.11.11" decamelize: "npm:^6.0.0" decamelize-keys: "npm:^2.0.1" - echogarden: "npm:^1.4.3" + echogarden: "npm:^1.4.4" electron: "npm:^30.0.3" electron-context-menu: "npm:^4.0.0" electron-log: "npm:^5.1.4" @@ -15546,6 +16031,24 @@ __metadata: languageName: node linkType: hard +"openai@npm:^4.47.1": + version: 4.47.1 + resolution: "openai@npm:4.47.1" + dependencies: + "@types/node": "npm:^18.11.18" + "@types/node-fetch": "npm:^2.6.4" + abort-controller: "npm:^3.0.0" + agentkeepalive: "npm:^4.2.1" + form-data-encoder: "npm:1.7.2" + formdata-node: "npm:^4.3.2" + node-fetch: "npm:^2.6.7" + web-streams-polyfill: "npm:^3.2.1" + bin: + openai: bin/cli + checksum: 10c0/10f5c7cd388dca758a31ccfd572d0ff732324842bc41f8cda80db043ad59035dbb9f903d0273bc14d1565f680901b7d65993b5e4c27dcf5deee2235a544ac0e4 + languageName: node + linkType: hard + "openapi-types@npm:^12.1.3": version: 12.1.3 resolution: "openapi-types@npm:12.1.3" @@ -18175,10 +18678,10 @@ __metadata: languageName: node linkType: hard -"tiktoken@npm:^1.0.14": - version: 1.0.14 - resolution: "tiktoken@npm:1.0.14" - checksum: 10c0/2416d400f1e1c2e7fa57edb78cbc728348cd8eb2881a31324fd3db49a44254b935dbbe8c997149133f961223e04747d933a4261874dc64ec72c003fcfd329568 +"tiktoken@npm:^1.0.15": + version: 1.0.15 + resolution: "tiktoken@npm:1.0.15" + checksum: 10c0/b7cc8aab1cb4cb7ffe15ff8c5f245d93c2d7c0bd9f556f9c268a36a49f0d79f71ab677921c42882c81004b8dabc0535a8f111756e4fa2cb05a647622ce4918e0 languageName: node linkType: hard